/*
 *  Copyright 2015 Adobe Systems Incorporated
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-size: 0.875em;
    line-height: 1.2;
    background-color: #d3d3d3;
    font-size:12px;
    font-weight:bold;
}

a {
    text-decoration: none;
    color:white;

}
a:hover {
    text-decoration:none;
    color:red;
}

img {
    vertical-align: top;
}

/* =buttons 
------------------------- */
.btn-default {
  background: #FF2B00;
  border-radius: 0;
  color: #fff;
  /*text-transform: uppercase;*/
  font-size: 10px;
  border-color: #f15c41;
  text-shadow: none;
  -moz-transition: background .3s;
       transition: background .3s;
}
.btn-default:hover {
  background: #f15c41;
  color: #fff;
}

/* =Basic Grid
----------------------------------------------------------------------------- */
.grid-100, .full, .width-100 {
  width: 100%;
}

.grid-95, .width-95 {
  width: 95%;
}

.grid-90, .width-90 {
  width: 90%;
}

.grid-85, .width-85 {
  width: 85%;
}

.grid-80, .width-80 {
  width: 80%;
}

.grid-75, .width-75 {
  width: 75%;
}

.grid-70, .width-70 {
  width: 70%;
}

.grid-66, .width-66 {
  width: 66.6%;
}

.grid-65, .width-65 {
  width: 65%;
}

.grid-60, .width-60 {
  width: 60%;
}

.grid-55, .width-55 {
  width: 55%;
}

.grid-50, .half, .width-50 {
  width: 50%;
}

.grid-45, .width-45 {
  width: 45%;
}

.grid-40, .width-40 {
  width: 40%;
}

.grid-35, .width-35 {
  width: 35%;
}

.grid-30, .width-30 {
  width: 30%;
}

.grid-33, .third, .width-33 {
  width: 33.33%;
}

.grid-25, .width-25 {
  width: 25%;
}

.grid-20, .width-20 {
  width: 20%;
}

.grid-15, .width-15 {
  width: 15%;
}

.grid-10, .width-10 {
  width: 10%;
}

.grid-5, .width-5 {
  width: 5%;
}

/* =Rows & Padding
----------------------------------------------------------------------------- */
.pad-r {
  padding-right: 25px;
}

.pad-l {
  padding-left: 25px;
}

.pad-r-l {
  padding-right: 25px;
  padding-left: 25px;
}

.pad-all {
  padding: 25px;
}

/* =Media Queries
----------------------------------------------------------------------------- */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .container {
    width: 100%;
  }

  .mobile-full {
    width: 100%;
  }

  .mobile-half {
    width: 50%;
  }

  .mobile-third {
    width: 33.33%;
  }

  .mobile-twothird {
    width: 66.66%;
  }

  .no-mobile {
    display: none !important;
  }

  .show-mobile {
    display: block !important;
  }

  .mobile-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  .tablet-full {
    width: 100%;
  }

  .tablet-half {
    width: 50%;
  }

  .tablet-third {
    width: 33.33%;
  }

  .tablet-twothird {
    width: 66.66%;
  }

  .no-tablet {
    display: none !important;
  }

  .show-tablet {
    display: block !important;
  }
}
.no-desktop {
  display: none;
}

@media only screen and (min-width: 992px) {
.home-info-text-right{
      width: 66.66666667%;
    float: right;
        }
}

/* =General site helper classes
----------------------------------------------------------------------------- */
.left {
  float: left !important;
}

.right {
  float: right !important;
}

.center {
  text-align: center;
}

.sml-up {
  font-size: 11px;
  text-transform: uppercase;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
  *zoom: 1;
}

.clear-pad {
  padding: 0 !important;
}

.clear-pad-top {
  padding-top: 0 !important;
}

.clear-pad-bot {
  padding-bottom: 0 !important;
}

.clear-margin {
  margin: 0 !important;
}

.em-small {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: gray;
  font-style: italic;
}

.ta-right {
  text-align: right;
}

.ta-left {
  text-align: left;
}

.pos-r {
  position: relative;
}

.va-top {
  vertical-align: top;
}

.va-mid {
  vertical-align: middle;
}

.va-bot {
  vertical-align: bottom;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.dib {
  display: inline-block;
}

.nowrap {
  white-space: nowrap;
}

/* =Padding 
----------------- */
.pic-bot-margin {
  margin-bottom: 30px;
}

/* =Horizontal Rules 
----------------- */
hr {
  margin: 0;
  background: #cccccc;
  height: 1px;
  border: 0px;

}
hr.dashed {
  border-top: 1px dashed #cccccc;
  background: transparent !important;
}

/* =Image Sizing
----------------- */
.i10 {
  width: 10%;
}

.i20 {
  width: 20%;
}

.i30 {
  width: 30%;
}

.i40 {
  width: 40%;
}

.i50 {
  width: 50%;
}

.i60 {
  width: 60%;
}

.i70 {
  width: 70%;
}

.i80 {
  width: 80%;
}

.i90 {
  width: 90%;
}

.i100 {
  width: 100%;
}

/* =CSS text truncation base class
----------------------------------- */
.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =Headings
-------------------- */
h1 {
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 48px;
  text-transform: uppercase;
  color: #B8B8B8;
}

h2 {
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 32px;
}

h4 {
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}

h5 {
  font-size: 15px;
}

.wrap {
  *zoom: 1;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2000;
}

.wrap:before, .wrap:after {
  content: " ";
  display: table;
}

.wrap:after {
  clear: both;
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .wrap {
    width: 700px;
  }
}
@media screen and (max-width: 767px) {
  .wrap {
    padding: 0;
    width: 100%;
  }

  .wrap .countries {
    padding: 0 2%;
  }
}
.wrap .countries a {
  padding: 0 3px;
}

.wrap .left {
  display: block;
  float: left;
  margin-right: 1.26582%;
  width: 68.35443%;
  padding-right: 40px;
}

.wrap .left:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .wrap .left {
    padding: 0;
  }

  .wrap .left.post {
    float: none;
    padding: 0 20px;
    width: 100%;
  }
}
.wrap .right {
  display: block;
  float: left;
  width: 24.05063%;
  margin-left: 6.32911%;
}

.wrap .right:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .wrap .right.post {
    float: none;
    width: 100%;
  }

  .wrap .right {
    margin-left: 0;
  }
}
.wrap .right .widget {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .wrap .right .widget {
    margin-bottom: 0;
  }
}
.wrap .right h3 {
  margin-top: 22px;
}

@media screen and (max-width: 767px) {
  .wrap .right ul {
    padding: 0 2%;
  }
}
.wrap .right li {
  height: 20px;
  padding: 10px 0 30px 0;
  border-bottom: 1px solid #ccc;
}

.wrap .right li a {
  color: #474848;
  display: block;
  padding: 0px 30px;
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .wrap .right li a {
    font-size: 12px;
  }
}
.wrap .right li a:hover {
  color: #FF2B00;
}

.wrap .right img {
  width: 100%;
}

.wrap .left, .wrap .right {
  position: relative;
}

@media screen and (max-width: 767px) {
  .wrap .left, .wrap .right {
    float: none;
    width: 100%;
  }
}
.wrap .loading {
  display: block;
  margin: 0 auto;
}

/** Region Drop Down **/
/*--- country drop down ---*/
#country-list {
  background: url("clientlib-site/resources/images/xsubmenu-bg.png");
  background-color: #393a3a;
  display: none;
  padding-top: 20px;
  padding-bottom: 50px; }
  #country-list.version2 {
    position: absolute;
    width: 100%;
    z-index: 4000; }
  #country-list .wrap {
    background: url("clientlib-site/resources/images/xcountry-background.png") no-repeat top center;
    background-position-y: 60px;
    position: relative; 
	}
  #country-list .country {
    font-size: 13px; }
  #country-list .country-list-title {
    background: none;
    font-family: Lucida, Arial, "Lucida Grande", sans-serif;
    font-size: 20px;
    font-weight: normal;
    line-height: 23px;
    margin-bottom: 20px;
    margin-top: 0;
    padding-left: 0; }
  #country-list .close-menu {
    position: absolute;   
    bottom: -25px;
    left: 50%;
    background: transparent url("clientlib-site/resources/images/xclose_triangle.png") no-repeat center top;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 11px;
    height: 8px;
    margin-left: -12px;
    padding-top: 10px;
    width: 25px; }
  .menu-top { 
    top: 25px;
    }
  #country-list p,
  #country-list a,
  #country-list .country {
    color: white; }
  #country-list a {
    font-size: 11px;
    font-weight: lighter;
    line-height: 25px;
    padding: 0px 3px; }
    @media screen and (max-width: 767px) {
      #country-list a {
        font-size: 13px;
        padding: 10px; } }
    #country-list a:hover {
      color: #FF2B00;
      text-decoration: underline; }
  #country-list ul {
    list-style-type: none;
    float: left;
    margin-top: 0;
    padding-left: 10px;
    }
  #country-list li {
    background: transparent url("clientlib-site/resources/images/xsquare_bullet.png") no-repeat left 9px;
    color: #c6c6c6;
    line-height: 22px;
    padding-left: 10px;
	margin: 0 0 0 15px;} 
  #country-list li.regionname{
   	background: transparent url("clientlib-site/resources/images/xorange_arrow.png") no-repeat left center !important;
    font-size: 13px;
    font-weight: bold;
    margin: 15px 0 0px 0px;
    padding-left: 10px !important;   
    color: white !important; }
    @media screen and (max-width: 767px) {
      #country-list li {
        float: none;
        margin: 0; } }
  #country-list p {
    background: transparent url("clientlib-site/resources/images/xorange_arrow.png") no-repeat left center;
    font-size: 13px;
    font-weight: bold;
    margin: 15px 0 0px 0;
    padding-left: 10px; }
    #country-list p a {
      font-size: 13px; }
  #country-list .col {
    float: left;
    margin-right: 10px;
    /*width: 150%;*/ }
#country-list .col ul {
    max-width: 230px;
}
    #country-list .col.first {
      margin-left: 0; }
    #country-list .col.last p {
      background: transparent url("clientlib-site/resources/images/xorange_arrow.png") no-repeat 0 10px; }
	.countrylist {
    background: transparent url("clientlib-site/resources/images/xorange_arrow.png") no-repeat left center;
    font-size: 13px;
    font-weight: bold;
    margin: 15px 0 0px 0;
        padding-left: 10px; !important}
    @media screen and (min-width: 768px) and (max-width: 959px) {
      #country-list .col {
        margin-left: 0;
        width: 130px; }
        #country-list .col.first {
          margin-left: 0; } }
    @media screen and (max-width: 767px) {
      #country-list .col {
        float: none;
        margin: 0;
        width: 100%; }
        #country-list .col ul {
          display: none; } }

/** Top Nav **/
#top-nav {
  overflow: hidden;
  background: white;
}
#top-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  #top-nav {
    margin-bottom: 20px;
  }
}
#top-nav ul {
  float: left;
  margin-right: 0;
}

@media screen and (min-width: 480px) and (max-width: 767px) {
  #top-nav ul {
    padding: 0;
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  #top-nav ul {
    padding: 0;
    width: 100%;
  }
}
#top-nav li {
  float: left;
}

@media screen and (min-width: 480px) and (max-width: 767px) {
  #top-nav li {
    background: #ececec;
    border: none;
    text-align: right;
    width: 25%;
  }
}
@media screen and (max-width: 479px) {
  #top-nav li {
    background: #ececec;
    border-right: 1px solid #ccc;
    float: left;
    height: 45px;
    text-align: center;
    width: 25%;
  }
}
#top-nav a {
  color: #474848;
  display: block;
  font-size: 10px;
  padding: 6px 9px;
  position: relative;
  border-left: 1px solid #ececec;
}
#top-nav a.first {
  padding-left: 0;
  border-left: 0;
}

@media screen and (min-width: 480px) and (max-width: 767px) {
  #top-nav a {
    margin-right: 10px;
    padding: 10px 0;
  }
}
#top-nav a:hover {
  text-decoration: none;
}

#top-nav a#country {
  background: transparent url(clientlib-site/resources/images/country-icon.png) no-repeat left center;
  margin-left: 10px;
  padding-left: 40px;
  padding-right: 15px;
}

@media screen and (max-width: 767px) {
  #top-nav a#country {
    padding-right: 0;
  }
}
@media screen and (max-width: 479px) {
  #top-nav a#country {
    color: transparent;
    background-position: 15px 10px;
    font-size: 0;
    height: 45px;
    line-height: 0;
  }
}
@media screen and (max-width: 340px) {
  #top-nav a#country {
    background-position: 10px 10px;
  }
}
#top-nav .triangleUp {
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 3.5px;
  border-bottom-color: #474848;
  display: block;
  position: absolute;
  right: 5px;
  top: 11px;
}

@media screen and (max-width: 767px) {
  #top-nav .triangleUp {
    display: none;
  }
}
#top-nav .triangleDown {
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 3.5px;
  border-top-color: #474848;
  display: block;
  position: absolute;
  right: 5px;
  top: 14px;
}

@media screen and (max-width: 767px) {
  #top-nav .triangleDown {
    display: none;
  }
}
#top-nav form {
  border-left: 1px #ececec solid;
  float: right;
  padding: 3px 10px;
  width: 120px;
}

@media screen and (max-width: 767px) {
  #top-nav form {
    display: none;
  }
}
#search {
  background: transparent;
  border: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  padding: 3px 0px 3px 0px;
  outline: none;
  color: #474848;
  width: 79px;
}

#search::-webkit-input-placeholder {
  color: #474848;
}

#search:-moz-placeholder {
  /* Firefox 18- */
  color: #474848;
}

#search::-moz-placeholder {
  /* Firefox 19+ */
  color: #474848;
}

#search:-ms-input-placeholder {
  color: #474848;
}

@media screen and (max-width: 767px) {
  #search {
    font-size: 15px;
  }
}
#searchbutton {
  background: transparent url(clientlib-site/resources/images/searchbutton.png) no-repeat center right;
  border: none;
  height: 17px;
  padding: 0;
  text-indent: -999999px;
  width: 17px;
}

@media screen and (max-width: 767px) {
  #searchbutton {
    float: right;
  }

  #search, #searchbutton {
    margin: 5px;
  }
}
@media screen and (max-width: 340px) {
  #search, #searchbutton {
    margin: 0;
  }
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {

  background: url(clientlib-site/resources/images/bg.png) repeat-x #515353;
/*  font-family: 'Roboto', Arial, Helvetica, sans-serif;*/
  font-size: 12px;
  font-weight:bold;
}
    .main-wrap .new {
    background-color: white;
    margin: 0px;
} 

/* =Header 
----------------------------------------------------------------------------- */
.header {
  background: #FF2B00;
  height: 140px;
  margin-bottom: 12px;
}
.header .row {
  margin-left: 0;
  margin-right: 0;
}

.hdr-logo { 
  margin: 55px 0 0px 40px;
}

.hdrlarge-logo {
	margin: 0px 0 0px 40px;
}

/* =Utility Navigation 
------------------------- */
.util-nav {
  border-left: 1px solid #f15c41;
  border-right: 1px solid #f15c41;
  border-bottom: 1px solid #f15c41;
  margin: 0 5px 0 0;
  width: auto;
  float: right;
}

.util-nav-without-search {
  border-left: 1px solid #f15c41;
  border-right: 1px solid #f15c41;
  border-bottom: 1px solid #f15c41;
  margin: 0 30px 0 193px;
  width: 429px;
}
.util-nav-without-login {
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    margin: 0px 30px 1px 135px;
    width: 487px;
}
.util-nav-without-contactus {                         
    border-left: 1px solid #f15c41;
    border-right: 1px solid #f15c41;
    border-bottom: 1px solid #f15c41;
    margin: 0 30px 0 179px;
    width: 446px;
}
.util-nav-without-literature {                         
    border-left: 1px solid #f15c41;
    border-right: 1px solid #f15c41;
    border-bottom: 1px solid #f15c41;
    margin: 0 30px 0 174px;
    width: 451px;
}    
.util-nav-without-three-tab {                         
    border-left: 1px solid #f15c41;
    border-right: 1px solid #f15c41;
    border-bottom: 1px solid #f15c41;
    margin: 0px 30px 0px 366px;
    width: 257px;
}

/* =Navigation 
------------------------- */
.main-wrap .navbar .container {
  width: auto;
}

.navbar {
 /* margin: 35px -50px 0 0; */
    margin: 35px 2px 0 0; 
}
.navbar-nav {
  float: right;
}
.navbar-nav li:first-child{
    border: none;
}
.navbar-nav li {
 /* height: 77px; */
 /* position: relative; */
 /* max-width: 115px; */
    width: 115px;
    border-left: 1px solid #ececec;
}
.navbar-nav li.expanded, .navbar-nav li.expanding {
  background: #fff;
}
.navbar-nav li.expanded a, .navbar-nav li.expanding a {
  color: #FF2B00;
  background: transparent;
  border-left: 1px solid #fff;
}
.navbar-nav li.expanded ul li a, .navbar-nav li.expanding ul li a {
  border-left: none;
  color: #000;
}
.navbar-nav li.active {
  border-bottom: 6px solid #fff;
}
.navbar-nav li.last {
  margin: 0 10px 0 35px;
}
.navbar-nav li ul {
  list-style-type: none;
  margin: 0;
  padding: 10px 40px 10px 0;
  position: absolute;
  z-index: 15;
  background: #fff;
  display: none;
  width: 250px;
  left: 0px;
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.3);
}
.navbar-nav li ul.last {
  right: 0;
  left: auto;
  width: 248px;
}
.navbar-nav li ul li {
  width: 100%;
  padding: 0 0 0 40px;
  -moz-transition: background .3s;
       transition: background .3s;
  color: #000;
  height: auto;
}
.navbar-nav li ul li.active {
  background: #FF2B00;
  border-bottom: 1px solid #FF2B00;
}
.navbar-nav li ul li.active a {
  color: #fff;
  background: transparent;
  border-bottom: 1px solid #FF2B00;
}
.navbar-nav li ul li:hover {
  background: #FF2B00;
  color: #fff;
}
.navbar-nav li ul li:hover a {
  text-decoration: none;
  border-bottom: 1px solid #FF2B00;
  background: transparent;
  color: #fff;
}
.navbar-nav li ul li:last-child a {
  border-bottom: none;
}
.navbar-nav li ul a {
  display: inline-block;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #cccccc;
  color: #000;
  font-weight: 600;
  font-size: 13px;
  width: 100%;
  -moz-transition: color, background .15s;
       transition: color, background .15s;
  background: transparent;
}

.nav > li > a {      
  padding: 5px 15px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  color: #fff;
  text-transform: uppercase;
  /* border-left: 1px solid #ececec; */
  -moz-transition: background, border, color .3s;
  transition: background, border, color .3s;
}
.nav > li > a:hover {
  background: #FF2B00;
  color: #fff;
}

.nav > li.expanded > a:hover, .nav > li.expanding > a:hover {
  background: #fff;
  color: #FF2B00;
}

.navbar-toggle {
  position: absolute; 
  z-index: 50;
  background: rgba(0, 0, 0, 0.1);
  right: -10px;
  top: 25px;
}

.icon-bar {
  background: #fff;
}

/* =Blog Items 
------------------------- */
.blog-items .row {
  margin-left: 0;
  margin-right: 0;
}
.blog-items a .blog-post-content {
  color: #666666;
}

.blog-post {
  padding-left: 0;
  padding-right: 0;
}
.blog-post h4 {
  line-height: 20px;
  color: #666666;
  margin: 0 0 5px;
}

.blog-date {
  font-size: 10px;
  text-transform: uppercase;
  color: #666666;
  margin: 0 0 10px 0;
}

.blog-post-content {
  background: #fff;
  border-bottom: 8px solid #FF2B00;
  margin: 0 15px 0 0;
  padding: 45px;
}
.blog-post-content h4 {
  margin-bottom: 20px;
  color: #333;
}
.blog-post-content.last {
  margin: 0;
}

/* =Shortcut Items 
------------------------- */
.shortcut-items {
  margin: 12px 0;
}
.shortcut-items .row {
  margin-left: 0;
  margin-right: 0;
}

.shortcut-item {
  padding-left: 0;
  padding-right: 0;
}
.shortcut-item a:hover {
  text-decoration: none;
}
.shortcut-item a:hover img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.shortcut-thumb {
  margin: 0 12px 0 0;
  height: 148px;
  overflow: hidden;
}
.shortcut-thumb img {
  width: 100%;
  -moz-transition-property: -moz-transform,opacity;
  transition-property: -webkit-transform,opacity;
  transition-property: transform,opacity;
  -moz-transition-duration: 250ms;
  transition-duration: 250ms;
  -moz-transition-timing-function: cubic-bezier(0.32, 0.29, 0.49, 0.98);
  transition-timing-function: cubic-bezier(0.32, 0.29, 0.49, 0.98);
  -moz-transition-delay: 0;
  transition-delay: 0;
}
.shortcut-thumb.last {
  margin: 0;
}

.shortcut-headline {
  margin: 0 12px 0 0;
  background: #1c1d1d;
  padding: 20px;
  min-height: 80px;
  min-height: 40px\9;
}
.shortcut-headline h4 {
  line-height: 20px;
  color: #fff;
  margin: 0;
}
.shortcut-headline h4:after {
  content: "";
  background: url(clientlib-site/resources/images/arrow-sm.png) no-repeat 0 0;
  width: 10px;
  height: 9px;
  display: inline-block;
  margin: 0 0 1px 5px;
}
.shortcut-headline.last {
  margin: 0;
}

/* =Home Info
------------------------- */
.home-info {
  background: #343535;
  color: #b3b3b3;
  padding: 67px 40px;
  position: relative;
  font-size: 14px;
}
.home-info h4 {
  color: #fff;
}
.home-info .home-info-pic {
  position: absolute;
  bottom: 0;
  right: 60px;
}

.home-info .home-info-pic-left {
  position: absolute;
  bottom: 0;
  left: 60px;
}



/* =Internal Pages 
----------------------------------------------------------------------------- */
/* =Internal Hero 
------------------------- */
.hero-internal {
  position: relative;
  height: 215px;
  /*overflow: hidden;*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-internal .breadcrumbs {
  position: absolute;
  z-index: 10;
  top: 15px;
  left: 40px;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
}
.hero-internal .breadcrumbs a {
  color: #fff;
}
.hero-internal h1 {
  position: absolute;
  z-index: 10;
  color: #fff;
  text-transform: uppercase;
  top: 45px;
  left: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 69%;
}
.hero-internal h1.textright{
    left: 244px;
    text-align: right;
}
.hero-internal .btn-share {
  display: inline-block;
  position: absolute;
  z-index: 10;
  top: 90px;
  right: 60px;
  border: 1px solid #fff;
  text-transform: uppercase;
  background: none;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  text-decoration: none;
  line-height: 1.2;
  width: 11%;
}
.hero-internal .btn-share.btnright {          
  left: 60px;
}
.hero-internal .btn-share:after {
  content: "\25BC";
  font-size: 7px;
  margin: 0 0 0 5px;
}
.hero-internal .btn-share-right:after {
  content: "\25BC";
  font-size: 7px;
  margin: 0 0 0 5px;
}
.hero-internal .btn-share:hover, .hero-internal .btn-share.expanded, .btn-share-right:hover, .btn-share-right.expanded {
  text-decoration: none;
  background: #fff;
  color: #FF2B00;
}
.hero-internal .btn-share.expanded, .btn-share-right.expanded {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.hero-internal .share-buttons {
  display: none;
  position: absolute;
  top: 115px;
  right: 60px;
  width: 205px;
  z-index: 11;
  background-color: #fff;
  padding: 0 6px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.hero-internal .share-buttons.btnright{
  left: 60px;
  border-top-left-radius: 0px;
  border-top-right-radius: 3px; 
}
.hero-internal .share-buttons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-internal .share-buttons ul li {
  float: left;
}
.hero-internal .share-buttons ul li img {
  margin: 10px 9px;
  width: 30px;
  height: 30px;
}

.hero-pic {
  width: 100%;
  position: absolute;
  z-index: 5;
}

h1.hero-internal-right{
    position: absolute;
    z-index: 10;
    color: #fff;
    text-transform: uppercase;
    top: 25px;
    text-align:right;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    width: 69%;
    left: 240px !important;
}

.btn-share-right {
    display: inline-block;
    position: absolute;
    z-index: 10;
    top: 180px;
    right: 60px;
    border: 1px solid #fff;
    text-transform: uppercase;
    background: none;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    text-decoration: none;
    line-height: 1.2;
    width: 11%;
}

/* =Body Content
------------------------- */
.body-content-landing {
  background: #fff;
  padding: 40px 60px;
}
.body-content-landing hr {
  margin: 40px 0;
}
.body-content-landing a .landing-col h4 {
  color: black;
}
.body-content-landing a .landing-col p {
  color: #666666;
}
.body-content-landing a:hover {
  text-decoration: none;
}

.landing-col h4:after {
  content: "";
  background: url(clientlib-site/resources/images/arrow-dark-sm.png) no-repeat 0 0;
  width: 10px;
  height: 9px;
  display: inline-block;
  margin: 0 0 1px 5px;
}

.body-content {
  background: #fff;
  padding: 40px 60px 40px 0;
}
.body-content .content {
  padding: 5px 0 0 30px;
}
.body-content .content ul li {
  margin-bottom: 8px;
}
.body-content h2 {
  color: #FF2B00;
}
.body-content h4 {
  font-weight: 600;
  color: #333;
  margin-top: 30px;
}
.body-content hr {
  margin: 30px 0;
}
.body-content p {
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 20px;
}
.body-content p.first {
  margin-top: 30px;
}
.body-content ul li {
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 300;
}
.title-pic {
  width: 100%;
  margin: 20px 0 10px;
}
.btn-contact, .btn-video {
  border-top: 1px solid #FF2B00;
  display: inline-block;
  margin: 75px 0 0px;
  padding: 15px 0 15px 20px;
  width: 100%;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  word-wrap: break-word;
}
.btn-video {
  margin-top: 0;
  /*border-bottom: 1px solid #FF2B00;*/
}
.link-label{
    vertical-align:middle;
    display:inline-block;
    width:68%;
}
.link-label:after ,.text-link:after{
    content: "\279C"; 
}
.leftsidecallouts {
    border-bottom: 1px solid #FF2B00;
}
.body-content img.iconwithtext{
    vertical-align : middle;
    width : 30%;
}

/* =Side Nav 
------------------------- */
.side-nav h4 {
  margin: 0 0 0 40px;
  color: #FF2B00;
}
.side-nav hr {
  margin: 15px 0;
  background: #FF2B00;
}
.side-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.side-nav ul li {
  width: 100%;
  padding: 0 0 0 40px;
  -moz-transition: background .3s;
       transition: background .3s;
}
.side-nav ul li:hover {
  background: #FF2B00;
}
.side-nav ul li:hover a {
  color: #fff;
}
.side-nav ul li.active {
  background: #FF2B00;
}
.side-nav ul li.active a {
  color: #fff;
}
.side-nav ul li:last-child a {
  border-bottom: none;
}
.side-nav ul a {
  display: inline-block;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #cccccc;
  color: #000;
  font-weight: 600;
  font-size: 13px;
  width: 100%;
  -moz-transition: color .3s;
       transition: color .3s;
}
.side-nav ul a:hover {
  text-decoration: none;
}

/* =Blog / News 
------------------------- */
.thumb-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.thumb-list li {
  border-bottom: 1px solid #cccccc;
  padding: 40px 0;
}
.thumb-list li:first-child {
  padding-top: 0;
}
.thumb-list li:last-child {
  border-bottom: none;
}
.thumb-list h4 {
  margin: 10px 0 5px 0;
}
.thumb-list .date {
  font-size: 10px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  color: #4d4d4d;
}
.thumb-list .abstract {
  color: #4d4d4d;
  margin: 0 0 10px 0;
  font-size: 12px;
}

/* =Footer 
----------------------------------------------------------------------------- */
.footer-top {
  margin: 40px 0;
  padding: 0 0 20px 0;
  color: #fff;
  border-bottom: 1px solid #333333;
}
.footer-top .row {
  margin-left: 0;
  margin-right: 0;
}

.tb {
  margin: 20px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
  font-size: 11px;
}

.footer-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer-list li {
  margin: 0 0 5px 0;
}
.footer-list a {
  color: #fff;
}

.footer-icon {
  margin: 15px 0 0 8px;
}

.footer-bot {
  font-size: 11px;
  color: #fff;
}
.footer-bot a {
  color: #fff;
}
.footer-bot .row {
  margin-left: 0;
  margin-right: 0;
}

.footer-icons {
  margin: 5px 0 20px;
}

.ir-logo {
  width: 150px;
}

.footer-triangle {
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 4px;
  border-left-color: white;
  display: inline-block;
  margin: 0 3px 0 5px;
}

.tr-logo-footer {
  width: 100%;
}

.footer-logo {
  margin-right: 5px;
}

/* =Utility 
----------------------------------------------------------------------------- */
.grow {
  -moz-transition: all .1s ease-out;
       transition: all .1s ease-out;
}

.grow:hover {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.theme-dropdown .dropdown-menu {
  position: static;
  display: block;
  margin-bottom: 20px;
}

.theme-showcase > p > .btn {
  margin: 5px 0;
}

/* =Homepage Slideshow 
----------------------------------------------------------------------------- */
.hero-home {
  position: relative;
  width: 100%;
  height: 460px;
  top: 0;
  left: 0;
  display: block;
  margin: 0 0 12px 0;
}
.hero-home > .slide {
  visibility: hidden;
}
.hero-home > .slide:first-child {
  visibility: visible;
}

.hero-headline {
  position: absolute;
  z-index: 5;
  top: 125px;
  left: 60px;
  width: 50%;
}
.hero-headline h1, .hero-headline h1 a {
  color: #fff;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  font-size: 55px;
  font-weight: 600;
  text-transform: uppercase;
}
.hero-headline h1 a:hover {
  color: #FF2B00;
  text-decoration: none;
}
.hero-headline h1:after {
  content: "";
  background: url(clientlib-site/resources/images/arrow-lrg.png) no-repeat 0 0;
  width: 29px;
  height: 26px;
  display: inline-block;
  margin: 0 0 5px 15px;
}
.hero-headline a:hover {
  text-decoration: none;
  color: #FF2B00;
}

.slide-pic {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.royalSlider {
  width: 100%;
}
.royalSlider .rsNav {
  position: absolute;
  bottom: 30px;
  left: 40px;
  height: 10px;
  width: 80%;
  z-index: 10;
  background: transparent;
  text-align: left;
}
.royalSlider .rsNav .rsBullet {
  background: #fff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  float: left;
  margin: 0 15px 0 0;
  padding: 0;
}
.royalSlider .rsNav .rsBullet.rsNavSelected {
  background: #FF2B00;
}
.royalSlider .rsNav .rsBullet span {
  display: inline;
  width: 0;
  height: 0;
  border: none;
  background: transparent;
}
.royalSlider .rsArrow {
  width: 34px;
}
.royalSlider .rsArrow .rsArrowIcn {
  margin: 0;
  width: 25px;
  height: 65px;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 43%;
  z-index: 10;
  display: inline-block;
  -moz-transition: background .5s;
       transition: background .5s;
}
.royalSlider .rsArrow .rsArrowIcn:hover {
  background: rgba(123, 186, 75, 0.6);
}
.royalSlider .rsArrow.rsArrowLeft .rsArrowIcn {
  background-image: url(clientlib-site/resources/images/arrow-slide-left.svg);
  background-repeat: no-repeat;
  background-position: 40% 47% !important;
  left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.royalSlider .rsArrow.rsArrowRight .rsArrowIcn {
  background-image: url(clientlib-site/resources/images/arrow-slide-right.svg);
  background-repeat: no-repeat;
  background-position: 57% 47% !important;
  left: auto;
  right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Media Queries - using Bootstrap default Media Queries */
/* Extra small devices (phones, less than 768px) */
@media (max-width: 767px) {
  .container {
    padding-right: 0;
    padding-left: 0;
  }

  /* =Header 
  ----------------------------------------------------------------------------- */
  .header {
    height: 100px;
  }

  .hdr-logo, .hdrlarge-logo {
    width: 200px;
    margin: 25px 0 0px 0px;
  }


  /* =Homepage Slideshow 
  ----------------------------------------------------------------------------- */
  .hero-headline {
    position: absolute;
    z-index: 5;
    top: 13%;
    left: 40px;
    width: 75%;
  }
  .hero-headline h1 {
    font-size: 1.5em;
    line-height: 1.2em;
  }
  .hero-headline h1 a {
    font-size: 1.5em;
    line-height: 1.2em;
  }
  .hero-headline h1:after {
    content: "";
    background: none;
    width: 0;
    height: 0;
  }

  .royalSlider .rsArrow {
    display: none !important;
  }
  .royalSlider .rsArrow:hover {
    display: none !important;
  }

  /* =Body Content 
  ------------------------- */
  .body-content-landing {
    padding: 40px 30px;
  }
  .body-content-landing hr {
    display: none;
  }

  .body-content {
    padding: 20px 30px 40px 0;
  }

  /* =Blog Items 
  ------------------------- */
  .blog-post-content {
    margin: 0;
  }
  .blog-post-content.last {
    margin-top: 10px;
  }

  /* =Home Info
  ------------------------- */
  .home-info-pic {
    display: none;
  }

  .home-info-pic-left{
    display: none;
    }



  /* =Internal Pages 
  ----------------------------------------------------------------------------- */
  .landing-col:first-child {
    margin-bottom: 40px;
  }
  .landing-col h4 {
    margin-top: 25px;
  }

  /* =Internal Hero 
  ------------------------- */
  .hero-internal {
    overflow: hidden;
  }
  .hero-internal h1 {
    font-size: 24px;
    left: 40px;
    top: 70px;
  }
  .hero-internal .btn-share {
    display: none;
  }

  .navbar, .large.navbar{
    position: absolute;
    top: -108px;
    right: 0px;
    z-index: 50;
    width: 100%;
  }
  .navbar ul {
    width: 100%;
    background: #6faa41;
  }
  .navbar ul li {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #cccccc;
  }
  .navbar ul li a {
    padding: 15px 25px;
  }
  .navbar ul li.last {
    margin: 0;
  }
  .navbar ul li.active {
    border-bottom: 1px solid #cccccc;
  }
  .navbar ul li ul li.active {
    background: #e6e6e6;
    border-bottom: 1px solid #cccccc;
  }
  .navbar ul li ul li.active a {
    color: #000;
    border-bottom: none;
  }
  .navbar ul li ul li.active a:hover {
    background: none;
    border-bottom: none;
  }
  .navbar ul li ul li.active:hover {
    border-bottom: 1px solid #cccccc;
    background: none;
  }
  .navbar ul li ul li:hover {
    background: none;
  }
  .navbar ul li ul li:hover a {
    background: none;
    border-bottom: none;
    color: #000;
  }

  .navbar-collapse {
    position: absolute;
    top: 114px;
    left: 15px;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .navbar-nav {
    margin: 0;
    padding: 0;
  }
  .navbar-nav li.active ul {
    display: block;
    position: relative;
    width: 100%;
    padding: 0;
  }
  .navbar-nav li.active ul a {
    border-bottom: 0;
  }

  /* =Side Nav 
  ------------------------- */
  .side-nav {
    display: none;
  }

  /* =Shortcut Items 
  ------------------------- */
  .sm-last {
    margin-right: 0;
  }

  .shortcut-items .col-xs-6, .shortcut-items .col-sm-6 {
    margin-bottom: 10px;
  }

  .shortcut-thumb {
    height: 95px;
  }

  /* =Footer 
  ----------------------------------------------------------------------------- */
  .footer-list {
    margin-top: 40px;
  }
}
/* ------ End Media Query ----- */
@media (min-width: 768px) {
  .blog-post-content {
    min-height: 264px;
    min-height: 174px\9;
  }
}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 959px) {
  .wrapper .rwd-break {
    display: none;
    /* Removes force breaks in headlines */
  }
  .wrapper .container {
    min-width: 95%;
    padding-right: 0;
    padding-left: 0;
  }

  .container {
    min-width: 95%;
    padding-right: 0;
    padding-left: 0;
  }

  /* =Homepage Slideshow 
  ----------------------------------------------------------------------------- */
  .hero-headline {
    top: 75px;
    width: 65%;
  }
  .hero-headline h1 {
    color: #fff;
    font-size: 35px;
  }
  .hero-headline h1:after {
    content: "";
    background: url(clientlib-site/resources/images/arrow-lrg.png) no-repeat 0 0;
    width: 29px;
    height: 26px;
    display: inline-block;
    margin: 0 0 0px 15px;
  }

  /* =Navigation 
  ------------------------- */
  .navbar {
    margin: 62px 0 0 0;
  }

  .nav > li a {
    font-size: 13px;
  }

  .util-nav {
    display: none;
  }

  /* =Internal Hero 
  ------------------------- */
  .hero-internal h1 {
    font-size: 40px;
  }

  /* =Body Content
  ------------------------- */
  .body-content {
    padding: 40px 70px 40px 40px;
  }

  /* =Side Nav 
  ------------------------- */
  .side-nav {
    display: none;
  }

  /* =Shortcut Items 
  ------------------------- */
  .sm-last {
    margin-right: 0;
  }

  .shortcut-items .col-xs-6, .shortcut-items .col-sm-6 {
    margin-bottom: 10px;
  }

  /* =Internal Pages 
  ----------------------------------------------------------------------------- */
  .landing-col h4 {
    margin-top: 25px;
  }

  /* =Footer 
  ----------------------------------------------------------------------------- */
  .footer-list {
    margin-top: 40px;
  }
}
/* ------ End Media Query ----- */
/* Weird in between Media Query to accommodate Bootstraps default MQ */
@media (min-width: 960px) and (max-width: 991px) {
  .wrapper .rwd-break {
    display: none;
    /* Removes force breaks in headlines */
  }
  .wrapper .container {
    min-width: 95%;
    padding-right: 0;
    padding-left: 0;
  }

  .container {
    min-width: 95%;
    padding-right: 0;
    padding-left: 0;
  }

  /* =Homepage Slideshow 
  ----------------------------------------------------------------------------- */
  .hero-headline {
    top: 75px;
  }
  .hero-headline h1 {
    color: #fff;
    font-size: 35px;
  }
  .hero-headline h1:after {
    content: "";
    background: url(clientlib-site/resources/images/arrow-lrg.png) no-repeat 0 0;
    width: 29px;
    height: 26px;
    display: inline-block;
    margin: 0 0 0px 15px;
  }

  /* =Navigation 
  ------------------------- */
  .navbar {
    margin: 62px 0 0 0;
  }

  .nav > li a {
    font-size: 13px;
  }

  /* =Internal Hero 
  ------------------------- */
  .hero-internal h1 {
    font-size: 40px;
  }

  /* =Body Content
  ------------------------- */
  .body-content {
    padding: 40px 70px 40px 40px;
  }

  /* =Side Nav 
  ------------------------- */
  .side-nav {
    display: none;
  }

  /* =Shortcut Items 
  ------------------------- */
  .sm-last {
    margin-right: 0;
  }

  .shortcut-items .col-xs-6, .shortcut-items .col-sm-6 {
    margin-bottom: 10px;
  }

  /* =Internal Pages 
  ----------------------------------------------------------------------------- */
  .landing-col h4 {
    margin-top: 25px;
  }
}
/* ------ End Media Query ----- */
/* Medium devices (desktops, 992px and up) */
@media (min-width: 960px) {
  .wrapper {
    min-width: 960px;
    padding-right: 0;
    padding-left: 0;
  }

  .container {
    width: 960px;
    padding-right: 0;
    padding-left: 0;
  }
}

p> span.first{ 
    margin-top: 30px;
    display: inline-block;
}
/* ------ End Media Query ----- */
.rte-btn-default {
  background: #FF2B00;
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  border-color: #f15c41;
  text-shadow: none;
  -moz-transition: background .3s;
       transition: background .3s;
}
.rte-btn-default:hover {
  background: #f15c41;
  color: #fff;
}

  a:hover {
    color: #FF2B00;
    text-decoration:none;
}

.body-content img {
	width: 100%;
}

}


/* Side Bar Additional Info Component CSS */

.sidebaradditionalinfo .widget{
	margin-bottom: 60px;
}
.cta-box{
	position: relative;
    padding: 0px !important;
    margin-bottom: 60px;
}
.cta-box img{	
    float: none;
    width: 100%;
    display: block;
    margin-right: 10px;
    border-bottom: 5px solid transparent;
}
.cta-box div {
    position: absolute;
    bottom: 5px;
    left: 0px;
    width: 100%;
    background: transparent url("clientlib-site/resources/images/darkGrey80.png") repeat top left;
    color: white;
    padding: 5px 10px;
    margin-right: 10px;    
} 
.cta-box:hover{
    border-bottom: 5px solid #FF2B00
}
.cta-box a:hover img {
    border-bottom: 5px #FF2B00 solid;
}
.categories a{
    position: relative;
    text-indent: 10px;
}
.categories .triangleRight{
	height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 4px;
    border-left-color: #FF2B00;
    display: block;
    position: absolute;
    left: 0;
    top: 3px;
}
.sidebarinfo h3{
    margin-top: 22px;
    border-bottom: 1px solid #FF2B00;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    color: #FF2B00;
}
.sidebaradditionalinfo div{ 
	padding-left: 5px;
    padding-right: 5px;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
}
.sidebaradditionalinfo ul{
    height: auto;
    margin-bottom: 15px;
    overflow: hidden;
    padding-bottom: 15px;
}
.sidebaradditionalinfo ul li{ 
    height: 20px;
    padding: 10px 0 30px 0;
    border-bottom: 1px solid #FF2B00;
}       
.sidebaradditionalinfo ul li a{
    font-size: 12px;
    line-height: 14px;
    text-indent: 0;
    color: #474848;
    display: block;
    padding: 0px 5px;
    position: relative;
    text-indent: 10px;
    border-bottom : 0px !important;
} 
.sidebaradditionalinfo ul li:hover a{
     color: #FF2B00 !important; 
     text-decoration: underline !important;
}
.sidebaradditionalinfo ul li:hover {
      background-color:	#fff;
}
.richtextandimage, .richtextandvideo {
    background-color: white;
    padding: 15px;]
}
.par .richtextandimage img {
    max-width: 100%;
}

.cq-colctrl-lt0-c0, .cq-colctrl-lt0-c1 {
    width: 50%;
    float: left;
}
.cq-colctrl-lt1-c0, .cq-colctrl-lt1-c1, .cq-colctrl-lt1-c2 {
    width: 33%;
    float: left;
}
@media screen and (max-width: 767px) {
    .cq-colctrl-lt0-c0, .cq-colctrl-lt0-c1 {
        width: 100%;
        float: left;
    }
    .cq-colctrl-lt1-c0, .cq-colctrl-lt1-c1, .cq-colctrl-lt1-c2 {
        width: 100%;
        float: left;
    }

}
.global-container {
	background: white;

}

*/@-ms-viewport {
	width: device-width
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-ms-overflow-style: scrollbar
}

*,
:after,
:before {
	-webkit-box-sizing: inherit;
	box-sizing: inherit
}

.container {
	width: 100%;

	margin-right: auto;
	margin-left: auto
}

@media (min-width:576px) {
	.container {
		max-width: 576px
	}
}

@media (min-width:768px) {
	.container {
		max-width: 768px
	}
}

@media (min-width:992px) {
	.container {
		max-width: 992px
	}
}

@media (min-width:1280px) {
	.container {
		max-width: 1280px
	}
}

.container-fluid {
	width: 100%;
	padding-right: 10px;
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto
}

.row {

padding-left: 0px !important;
padding-right: 0px !important; 
margin:0px !important; "

    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px
}

.no-gutters {
	margin-right: 0;
	margin-left: 0
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
	padding-right: 0;
	padding-left: 0
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 10px;
	padding-left: 10px
}

.col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%
}

.col-auto {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: none
}

.col-1,
.col-auto {
	-webkit-box-flex: 0
}

.col-1 {
	-ms-flex: 0 0 8.33333%;
	flex: 0 0 8.33333%;
	max-width: 8.33333%
}

.col-2 {
	-ms-flex: 0 0 16.66667%;
	flex: 0 0 16.66667%;
	max-width: 16.66667%
}

.col-2,
.col-3 {
	-webkit-box-flex: 0
}

.col-3 {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%
}

.col-4 {
	-ms-flex: 0 0 33.33333%;
	flex: 0 0 33.33333%;
	max-width: 33.33333%
}

.col-4,
.col-5 {
	-webkit-box-flex: 0
}

.col-5 {
	-ms-flex: 0 0 41.66667%;
	flex: 0 0 41.66667%;
	max-width: 41.66667%
}

.col-6 {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%
}

.col-6,
.col-7 {
	-webkit-box-flex: 0
}

.col-7 {
	-ms-flex: 0 0 58.33333%;
	flex: 0 0 58.33333%;
	max-width: 58.33333%
}

.col-8 {
	-ms-flex: 0 0 66.66667%;
	flex: 0 0 66.66667%;
	max-width: 66.66667%
}

.col-8,
.col-9 {
	-webkit-box-flex: 0
}

.col-9 {
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%
}

.col-10 {
	-ms-flex: 0 0 83.33333%;
	flex: 0 0 83.33333%;
	max-width: 83.33333%
}

.col-10,
.col-11 {
	-webkit-box-flex: 0
}

.col-11 {
	-ms-flex: 0 0 91.66667%;
	flex: 0 0 91.66667%;
	max-width: 91.66667%
}

.col-12 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%
}

.order-first {
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1
}

.order-last {
	-webkit-box-ordinal-group: 14;
	-ms-flex-order: 13;
	order: 13
}

.order-0 {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0
}

.order-1 {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1
}

.order-2 {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2
}

.order-3 {
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3
}

.order-4 {
	-webkit-box-ordinal-group: 5;
	-ms-flex-order: 4;
	order: 4
}

.order-5 {
	-webkit-box-ordinal-group: 6;
	-ms-flex-order: 5;
	order: 5
}

.order-6 {
	-webkit-box-ordinal-group: 7;
	-ms-flex-order: 6;
	order: 6
}

.order-7 {
	-webkit-box-ordinal-group: 8;
	-ms-flex-order: 7;
	order: 7
}

.order-8 {
	-webkit-box-ordinal-group: 9;
	-ms-flex-order: 8;
	order: 8
}

.order-9 {
	-webkit-box-ordinal-group: 10;
	-ms-flex-order: 9;
	order: 9
}

.order-10 {
	-webkit-box-ordinal-group: 11;
	-ms-flex-order: 10;
	order: 10
}

.order-11 {
	-webkit-box-ordinal-group: 12;
	-ms-flex-order: 11;
	order: 11
}

.order-12 {
	-webkit-box-ordinal-group: 13;
	-ms-flex-order: 12;
	order: 12
}

.offset-1 {
	margin-left: 8.33333%
}

.offset-2 {
	margin-left: 16.66667%
}

.offset-3 {
	margin-left: 25%
}

.offset-4 {
	margin-left: 33.33333%
}

.offset-5 {
	margin-left: 41.66667%
}

.offset-6 {
	margin-left: 50%
}

.offset-7 {
	margin-left: 58.33333%
}

.offset-8 {
	margin-left: 66.66667%
}

.offset-9 {
	margin-left: 75%
}

.offset-10 {
	margin-left: 83.33333%
}

.offset-11 {
	margin-left: 91.66667%
}

@media (min-width:576px) {
	.col-sm {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%
	}
	.col-sm-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none
	}
	.col-sm-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333%;
		flex: 0 0 8.33333%;
		max-width: 8.33333%
	}
	.col-sm-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%
	}
	.col-sm-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%
	}
	.col-sm-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%
	}
	.col-sm-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%
	}
	.col-sm-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}
	.col-sm-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%
	}
	.col-sm-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%
	}
	.col-sm-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}
	.col-sm-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%
	}
	.col-sm-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%
	}
	.col-sm-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}
	.order-sm-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1
	}
	.order-sm-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13
	}
	.order-sm-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0
	}
	.order-sm-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}
	.order-sm-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	.order-sm-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}
	.order-sm-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	.order-sm-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5
	}
	.order-sm-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6
	}
	.order-sm-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7
	}
	.order-sm-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8
	}
	.order-sm-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9
	}
	.order-sm-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10
	}
	.order-sm-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11
	}
	.order-sm-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12
	}
	.offset-sm-0 {
		margin-left: 0
	}
	.offset-sm-1 {
		margin-left: 8.33333%
	}
	.offset-sm-2 {
		margin-left: 16.66667%
	}
	.offset-sm-3 {
		margin-left: 25%
	}
	.offset-sm-4 {
		margin-left: 33.33333%
	}
	.offset-sm-5 {
		margin-left: 41.66667%
	}
	.offset-sm-6 {
		margin-left: 50%
	}
	.offset-sm-7 {
		margin-left: 58.33333%
	}
	.offset-sm-8 {
		margin-left: 66.66667%
	}
	.offset-sm-9 {
		margin-left: 75%
	}
	.offset-sm-10 {
		margin-left: 83.33333%
	}
	.offset-sm-11 {
		margin-left: 91.66667%
	}
}

@media (min-width:768px) {
	.col-md {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%
	}
	.col-md-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none
	}
	.col-md-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333%;
		flex: 0 0 8.33333%;
		max-width: 8.33333%
	}
	.col-md-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%
	}
	.col-md-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%
	}
	.col-md-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%
	}
	.col-md-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%
	}
	.col-md-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}
	.col-md-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%
	}
	.col-md-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%
	}
	.col-md-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}
	.col-md-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%
	}
	.col-md-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%
	}
	.col-md-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}
	.order-md-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1
	}
	.order-md-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13
	}
	.order-md-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0
	}
	.order-md-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}
	.order-md-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	.order-md-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}
	.order-md-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	.order-md-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5
	}
	.order-md-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6
	}
	.order-md-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7
	}
	.order-md-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8
	}
	.order-md-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9
	}
	.order-md-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10
	}
	.order-md-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11
	}
	.order-md-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12
	}
	.offset-md-0 {
		margin-left: 0
	}
	.offset-md-1 {
		margin-left: 8.33333%
	}
	.offset-md-2 {
		margin-left: 16.66667%
	}
	.offset-md-3 {
		margin-left: 25%
	}
	.offset-md-4 {
		margin-left: 33.33333%
	}
	.offset-md-5 {
		margin-left: 41.66667%
	}
	.offset-md-6 {
		margin-left: 50%
	}
	.offset-md-7 {
		margin-left: 58.33333%
	}
	.offset-md-8 {
		margin-left: 66.66667%
	}
	.offset-md-9 {
		margin-left: 75%
	}
	.offset-md-10 {
		margin-left: 83.33333%
	}
	.offset-md-11 {
		margin-left: 91.66667%
	}
}

@media (min-width:992px) {
	.col-lg {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%
	}
	.col-lg-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none
	}
	.col-lg-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333%;
		flex: 0 0 8.33333%;
		max-width: 8.33333%
	}
	.col-lg-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%
	}
	.col-lg-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%
	}
	.col-lg-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%
	}
	.col-lg-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%
	}
	.col-lg-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}
	.col-lg-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%
	}
	.col-lg-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%
	}
	.col-lg-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}
	.col-lg-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%
	}
	.col-lg-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%
	}
	.col-lg-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}
	.order-lg-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1
	}
	.order-lg-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13
	}
	.order-lg-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0
	}
	.order-lg-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}
	.order-lg-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	.order-lg-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}
	.order-lg-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	.order-lg-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5
	}
	.order-lg-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6
	}
	.order-lg-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7
	}
	.order-lg-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8
	}
	.order-lg-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9
	}
	.order-lg-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10
	}
	.order-lg-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11
	}
	.order-lg-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12
	}
	.offset-lg-0 {
		margin-left: 0
	}
	.offset-lg-1 {
		margin-left: 8.33333%
	}
	.offset-lg-2 {
		margin-left: 16.66667%
	}
	.offset-lg-3 {
		margin-left: 25%
	}
	.offset-lg-4 {
		margin-left: 33.33333%
	}
	.offset-lg-5 {
		margin-left: 41.66667%
	}
	.offset-lg-6 {
		margin-left: 50%
	}
	.offset-lg-7 {
		margin-left: 58.33333%
	}
	.offset-lg-8 {
		margin-left: 66.66667%
	}
	.offset-lg-9 {
		margin-left: 75%
	}
	.offset-lg-10 {
		margin-left: 83.33333%
	}
	.offset-lg-11 {
		margin-left: 91.66667%
	}
}

@media (min-width:1280px) {
	.col-xl {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%
	}
	.col-xl-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none
	}
	.col-xl-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333%;
		flex: 0 0 8.33333%;
		max-width: 8.33333%
	}
	.col-xl-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%
	}
	.col-xl-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%
	}
	.col-xl-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%
	}
	.col-xl-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%
	}
	.col-xl-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}
	.col-xl-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%
	}
	.col-xl-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%
	}
	.col-xl-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}
	.col-xl-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%
	}
	.col-xl-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%
	}
	.col-xl-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}
	.order-xl-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1
	}
	.order-xl-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13
	}
	.order-xl-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0
	}
	.order-xl-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}
	.order-xl-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}
	.order-xl-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}
	.order-xl-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}
	.order-xl-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5
	}
	.order-xl-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6
	}
	.order-xl-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7
	}
	.order-xl-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8
	}
	.order-xl-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9
	}
	.order-xl-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10
	}
	.order-xl-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11
	}
	.order-xl-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12
	}
	.offset-xl-0 {
		margin-left: 0
	}
	.offset-xl-1 {
		margin-left: 8.33333%
	}
	.offset-xl-2 {
		margin-left: 16.66667%
	}
	.offset-xl-3 {
		margin-left: 25%
	}
	.offset-xl-4 {
		margin-left: 33.33333%
	}
	.offset-xl-5 {
		margin-left: 41.66667%
	}
	.offset-xl-6 {
		margin-left: 50%
	}
	.offset-xl-7 {
		margin-left: 58.33333%
	}
	.offset-xl-8 {
		margin-left: 66.66667%
	}
	.offset-xl-9 {
		margin-left: 75%
	}
	.offset-xl-10 {
		margin-left: 83.33333%
	}
	.offset-xl-11 {
		margin-left: 91.66667%
	}
}

.d-none {
	display: none!important
}

.d-inline {
	display: inline!important
}

.d-inline-block {
	display: inline-block!important
}

.d-block {
	display: block!important
}

.d-table {
	display: table!important
}

.d-table-row {
	display: table-row!important
}

.d-table-cell {
	display: table-cell!important
}

.d-flex {
	display: -webkit-box!important;
	display: -ms-flexbox!important;
	display: flex!important
}

.d-inline-flex {
	display: -webkit-inline-box!important;
	display: -ms-inline-flexbox!important;
	display: inline-flex!important
}

@media (min-width:576px) {
	.d-sm-none {
		display: none!important
	}
	.d-sm-inline {
		display: inline!important
	}
	.d-sm-inline-block {
		display: inline-block!important
	}
	.d-sm-block {
		display: block!important
	}
	.d-sm-table {
		display: table!important
	}
	.d-sm-table-row {
		display: table-row!important
	}
	.d-sm-table-cell {
		display: table-cell!important
	}
	.d-sm-flex {
		display: -webkit-box!important;
		display: -ms-flexbox!important;
		display: flex!important
	}
	.d-sm-inline-flex {
		display: -webkit-inline-box!important;
		display: -ms-inline-flexbox!important;
		display: inline-flex!important
	}
}

@media (min-width:768px) {
	.d-md-none {
		display: none!important
	}
	.d-md-inline {
		display: inline!important
	}
	.d-md-inline-block {
		display: inline-block!important
	}
	.d-md-block {
		display: block!important
	}
	.d-md-table {
		display: table!important
	}
	.d-md-table-row {
		display: table-row!important
	}
	.d-md-table-cell {
		display: table-cell!important
	}
	.d-md-flex {
		display: -webkit-box!important;
		display: -ms-flexbox!important;
		display: flex!important
	}
	.d-md-inline-flex {
		display: -webkit-inline-box!important;
		display: -ms-inline-flexbox!important;
		display: inline-flex!important
	}
}

@media (min-width:992px) {
	.d-lg-none {
		display: none!important
	}
	.d-lg-inline {
		display: inline!important
	}
	.d-lg-inline-block {
		display: inline-block!important
	}
	.d-lg-block {
		display: block!important
	}
	.d-lg-table {
		display: table!important
	}
	.d-lg-table-row {
		display: table-row!important
	}
	.d-lg-table-cell {
		display: table-cell!important
	}
	.d-lg-flex {
		display: -webkit-box!important;
		display: -ms-flexbox!important;
		display: flex!important
	}
	.d-lg-inline-flex {
		display: -webkit-inline-box!important;
		display: -ms-inline-flexbox!important;
		display: inline-flex!important
	}
}

@media (min-width:1280px) {
	.d-xl-none {
		display: none!important
	}
	.d-xl-inline {
		display: inline!important
	}
	.d-xl-inline-block {
		display: inline-block!important
	}
	.d-xl-block {
		display: block!important
	}
	.d-xl-table {
		display: table!important
	}
	.d-xl-table-row {
		display: table-row!important
	}
	.d-xl-table-cell {
		display: table-cell!important
	}
	.d-xl-flex {
		display: -webkit-box!important;
		display: -ms-flexbox!important;
		display: flex!important
	}
	.d-xl-inline-flex {
		display: -webkit-inline-box!important;
		display: -ms-inline-flexbox!important;
		display: inline-flex!important
	}
}

@media print {
	.d-print-none {
		display: none!important
	}
	.d-print-inline {
		display: inline!important
	}
	.d-print-inline-block {
		display: inline-block!important
	}
	.d-print-block {
		display: block!important
	}
	.d-print-table {
		display: table!important
	}
	.d-print-table-row {
		display: table-row!important
	}
	.d-print-table-cell {
		display: table-cell!important
	}
	.d-print-flex {
		display: -webkit-box!important;
		display: -ms-flexbox!important;
		display: flex!important
	}
	.d-print-inline-flex {
		display: -webkit-inline-box!important;
		display: -ms-inline-flexbox!important;
		display: inline-flex!important
	}
}

.flex-row {
	-webkit-box-orient: horizontal!important;
	-ms-flex-direction: row!important;
	flex-direction: row!important
}

.flex-column,
.flex-row {
	-webkit-box-direction: normal!important
}

.flex-column {
	-webkit-box-orient: vertical!important;
	-ms-flex-direction: column!important;
	flex-direction: column!important
}

.flex-row-reverse {
	-webkit-box-orient: horizontal!important;
	-ms-flex-direction: row-reverse!important;
	flex-direction: row-reverse!important
}

.flex-column-reverse,
.flex-row-reverse {
	-webkit-box-direction: reverse!important
}

.flex-column-reverse {
	-webkit-box-orient: vertical!important;
	-ms-flex-direction: column-reverse!important;
	flex-direction: column-reverse!important
}

.flex-wrap {
	-ms-flex-wrap: wrap!important;
	flex-wrap: wrap!important
}

.flex-nowrap {
	-ms-flex-wrap: nowrap!important;
	flex-wrap: nowrap!important
}

.flex-wrap-reverse {
	-ms-flex-wrap: wrap-reverse!important;
	flex-wrap: wrap-reverse!important
}

.flex-fill {
	-webkit-box-flex: 1!important;
	-ms-flex: 1 1 auto!important;
	flex: 1 1 auto!important
}

.flex-grow-0 {
	-webkit-box-flex: 0!important;
	-ms-flex-positive: 0!important;
	flex-grow: 0!important
}

.flex-grow-1 {
	-webkit-box-flex: 1!important;
	-ms-flex-positive: 1!important;
	flex-grow: 1!important
}

.flex-shrink-0 {
	-ms-flex-negative: 0!important;
	flex-shrink: 0!important
}

.flex-shrink-1 {
	-ms-flex-negative: 1!important;
	flex-shrink: 1!important
}

.justify-content-start {
	-webkit-box-pack: start!important;
	-ms-flex-pack: start!important;
	justify-content: flex-start!important
}

.justify-content-end {
	-webkit-box-pack: end!important;
	-ms-flex-pack: end!important;
	justify-content: flex-end!important
}

.justify-content-center {
	-webkit-box-pack: center!important;
	-ms-flex-pack: center!important;
	justify-content: center!important
}

.justify-content-between {
	-webkit-box-pack: justify!important;
	-ms-flex-pack: justify!important;
	justify-content: space-between!important
}

.justify-content-around {
	-ms-flex-pack: distribute!important;
	justify-content: space-around!important
}

.align-items-start {
	-webkit-box-align: start!important;
	-ms-flex-align: start!important;
	align-items: flex-start!important
}

.align-items-end {
	-webkit-box-align: end!important;
	-ms-flex-align: end!important;
	align-items: flex-end!important
}

.align-items-center {
	-webkit-box-align: center!important;
	-ms-flex-align: center!important;
	align-items: center!important
}

.align-items-baseline {
	-webkit-box-align: baseline!important;
	-ms-flex-align: baseline!important;
	align-items: baseline!important
}

.align-items-stretch {
	-webkit-box-align: stretch!important;
	-ms-flex-align: stretch!important;
	align-items: stretch!important
}

.align-content-start {
	-ms-flex-line-pack: start!important;
	align-content: flex-start!important
}

.align-content-end {
	-ms-flex-line-pack: end!important;
	align-content: flex-end!important
}

.align-content-center {
	-ms-flex-line-pack: center!important;
	align-content: center!important
}

.align-content-between {
	-ms-flex-line-pack: justify!important;
	align-content: space-between!important
}

.align-content-around {
	-ms-flex-line-pack: distribute!important;
	align-content: space-around!important
}

.align-content-stretch {
	-ms-flex-line-pack: stretch!important;
	align-content: stretch!important
}

.align-self-auto {
	-ms-flex-item-align: auto!important;
	align-self: auto!important
}

.align-self-start {
	-ms-flex-item-align: start!important;
	align-self: flex-start!important
}

.align-self-end {
	-ms-flex-item-align: end!important;
	align-self: flex-end!important
}

.align-self-center {
	-ms-flex-item-align: center!important;
	align-self: center!important
}

.align-self-baseline {
	-ms-flex-item-align: baseline!important;
	align-self: baseline!important
}

.align-self-stretch {
	-ms-flex-item-align: stretch!important;
	align-self: stretch!important
}

@media (min-width:576px) {
	.flex-sm-row {
		-webkit-box-orient: horizontal!important;
		-ms-flex-direction: row!important;
		flex-direction: row!important
	}
	.flex-sm-column,
	.flex-sm-row {
		-webkit-box-direction: normal!important
	}
	.flex-sm-column {
		-webkit-box-orient: vertical!important;
		-ms-flex-direction: column!important;
		flex-direction: column!important
	}
	.flex-sm-row-reverse {
		-webkit-box-orient: horizontal!important;
		-webkit-box-direction: reverse!important;
		-ms-flex-direction: row-reverse!important;
		flex-direction: row-reverse!important
	}
	.flex-sm-column-reverse {
		-webkit-box-orient: vertical!important;
		-webkit-box-direction: reverse!important;
		-ms-flex-direction: column-reverse!important;
		flex-direction: column-reverse!important
	}
	.flex-sm-wrap {
		-ms-flex-wrap: wrap!important;
		flex-wrap: wrap!important
	}
	.flex-sm-nowrap {
		-ms-flex-wrap: nowrap!important;
		flex-wrap: nowrap!important
	}
	.flex-sm-wrap-reverse {
		-ms-flex-wrap: wrap-reverse!important;
		flex-wrap: wrap-reverse!important
	}
	.flex-sm-fill {
		-webkit-box-flex: 1!important;
		-ms-flex: 1 1 auto!important;
		flex: 1 1 auto!important
	}
	.flex-sm-grow-0 {
		-webkit-box-flex: 0!important;
		-ms-flex-positive: 0!important;
		flex-grow: 0!important
	}
	.flex-sm-grow-1 {
		-webkit-box-flex: 1!important;
		-ms-flex-positive: 1!important;
		flex-grow: 1!important
	}
	.flex-sm-shrink-0 {
		-ms-flex-negative: 0!important;
		flex-shrink: 0!important
	}
	.flex-sm-shrink-1 {
		-ms-flex-negative: 1!important;
		flex-shrink: 1!important
	}
	.justify-content-sm-start {
		-webkit-box-pack: start!important;
		-ms-flex-pack: start!important;
		justify-content: flex-start!important
	}
	.justify-content-sm-end {
		-webkit-box-pack: end!important;
		-ms-flex-pack: end!important;
		justify-content: flex-end!important
	}
	.justify-content-sm-center {
		-webkit-box-pack: center!important;
		-ms-flex-pack: center!important;
		justify-content: center!important
	}
	.justify-content-sm-between {
		-webkit-box-pack: justify!important;
		-ms-flex-pack: justify!important;
		justify-content: space-between!important
	}
	.justify-content-sm-around {
		-ms-flex-pack: distribute!important;
		justify-content: space-around!important
	}
	.align-items-sm-start {
		-webkit-box-align: start!important;
		-ms-flex-align: start!important;
		align-items: flex-start!important
	}
	.align-items-sm-end {
		-webkit-box-align: end!important;
		-ms-flex-align: end!important;
		align-items: flex-end!important
	}
	.align-items-sm-center {
		-webkit-box-align: center!important;
		-ms-flex-align: center!important;
		align-items: center!important
	}
	.align-items-sm-baseline {
		-webkit-box-align: baseline!important;
		-ms-flex-align: baseline!important;
		align-items: baseline!important
	}
	.align-items-sm-stretch {
		-webkit-box-align: stretch!important;
		-ms-flex-align: stretch!important;
		align-items: stretch!important
	}
	.align-content-sm-start {
		-ms-flex-line-pack: start!important;
		align-content: flex-start!important
	}
	.align-content-sm-end {
		-ms-flex-line-pack: end!important;
		align-content: flex-end!important
	}
	.align-content-sm-center {
		-ms-flex-line-pack: center!important;
		align-content: center!important
	}
	.align-content-sm-between {
		-ms-flex-line-pack: justify!important;
		align-content: space-between!important
	}
	.align-content-sm-around {
		-ms-flex-line-pack: distribute!important;
		align-content: space-around!important
	}
	.align-content-sm-stretch {
		-ms-flex-line-pack: stretch!important;
		align-content: stretch!important
	}
	.align-self-sm-auto {
		-ms-flex-item-align: auto!important;
		align-self: auto!important
	}
	.align-self-sm-start {
		-ms-flex-item-align: start!important;
		align-self: flex-start!important
	}
	.align-self-sm-end {
		-ms-flex-item-align: end!important;
		align-self: flex-end!important
	}
	.align-self-sm-center {
		-ms-flex-item-align: center!important;
		align-self: center!important
	}
	.align-self-sm-baseline {
		-ms-flex-item-align: baseline!important;
		align-self: baseline!important
	}
	.align-self-sm-stretch {
		-ms-flex-item-align: stretch!important;
		align-self: stretch!important
	}
}

@media (min-width:768px) {
	.flex-md-row {
		-webkit-box-orient: horizontal!important;
		-ms-flex-direction: row!important;
		flex-direction: row!important
	}
	.flex-md-column,
	.flex-md-row {
		-webkit-box-direction: normal!important
	}
	.flex-md-column {
		-webkit-box-orient: vertical!important;
		-ms-flex-direction: column!important;
		flex-direction: column!important
	}
	.flex-md-row-reverse {
		-webkit-box-orient: horizontal!important;
		-webkit-box-direction: reverse!important;
		-ms-flex-direction: row-reverse!important;
		flex-direction: row-reverse!important
	}
	.flex-md-column-reverse {
		-webkit-box-orient: vertical!important;
		-webkit-box-direction: reverse!important;
		-ms-flex-direction: column-reverse!important;
		flex-direction: column-reverse!important
	}
	.flex-md-wrap {
		-ms-flex-wrap: wrap!important;
		flex-wrap: wrap!important
	}
	.flex-md-nowrap {
		-ms-flex-wrap: nowrap!important;
		flex-wrap: nowrap!important
	}
	.flex-md-wrap-reverse {
		-ms-flex-wrap: wrap-reverse!important;
		flex-wrap: wrap-reverse!important
	}
	.flex-md-fill {
		-webkit-box-flex: 1!important;
		-ms-flex: 1 1 auto!important;
		flex: 1 1 auto!important
	}
	.flex-md-grow-0 {
		-webkit-box-flex: 0!important;
		-ms-flex-positive: 0!important;
		flex-grow: 0!important
	}
	.flex-md-grow-1 {
		-webkit-box-flex: 1!important;
		-ms-flex-positive: 1!important;
		flex-grow: 1!important
	}
	.flex-md-shrink-0 {
		-ms-flex-negative: 0!important;
		flex-shrink: 0!important
	}
	.flex-md-shrink-1 {
		-ms-flex-negative: 1!important;
		flex-shrink: 1!important
	}
	.justify-content-md-start {
		-webkit-box-pack: start!important;
		-ms-flex-pack: start!important;
		justify-content: flex-start!important
	}
	.justify-content-md-end {
		-webkit-box-pack: end!important;
		-ms-flex-pack: end!important;
		justify-content: flex-end!important
	}
	.justify-content-md-center {
		-webkit-box-pack: center!important;
		-ms-flex-pack: center!important;
		justify-content: center!important
	}
	.justify-content-md-between {
		-webkit-box-pack: justify!important;
		-ms-flex-pack: justify!important;
		justify-content: space-between!important
	}
	.justify-content-md-around {
		-ms-flex-pack: distribute!important;
		justify-content: space-around!important
	}
	.align-items-md-start {
		-webkit-box-align: start!important;
		-ms-flex-align: start!important;
		align-items: flex-start!important
	}
	.align-items-md-end {
		-webkit-box-align: end!important;
		-ms-flex-align: end!important;
		align-items: flex-end!important
	}
	.align-items-md-center {
		-webkit-box-align: center!important;
		-ms-flex-align: center!important;
		align-items: center!important
	}
	.align-items-md-baseline {
		-webkit-box-align: baseline!important;
		-ms-flex-align: baseline!important;
		align-items: baseline!important
	}
	.align-items-md-stretch {
		-webkit-box-align: stretch!important;
		-ms-flex-align: stretch!important;
		align-items: stretch!important
	}
	.align-content-md-start {
		-ms-flex-line-pack: start!important;
		align-content: flex-start!important
	}
	.align-content-md-end {
		-ms-flex-line-pack: end!important;
		align-content: flex-end!important
	}
	.align-content-md-center {
		-ms-flex-line-pack: center!important;
		align-content: center!important
	}
	.align-content-md-between {
		-ms-flex-line-pack: justify!important;
		align-content: space-between!important
	}
	.align-content-md-around {
		-ms-flex-line-pack: distribute!important;
		align-content: space-around!important
	}
	.align-content-md-stretch {
		-ms-flex-line-pack: stretch!important;
		align-content: stretch!important
	}
	.align-self-md-auto {
		-ms-flex-item-align: auto!important;
		align-self: auto!important
	}
	.align-self-md-start {
		-ms-flex-item-align: start!important;
		align-self: flex-start!important
	}
	.align-self-md-end {
		-ms-flex-item-align: end!important;
		align-self: flex-end!important
	}
	.align-self-md-center {
		-ms-flex-item-align: center!important;
		align-self: center!important
	}
	.align-self-md-baseline {
		-ms-flex-item-align: baseline!important;
		align-self: baseline!important
	}
	.align-self-md-stretch {
		-ms-flex-item-align: stretch!important;
		align-self: stretch!important
	}
}

@media (min-width:992px) {
	.flex-lg-row {
		-webkit-box-orient: horizontal!important;
		-ms-flex-direction: row!important;
		flex-direction: row!important
	}
	.flex-lg-column,
	.flex-lg-row {
		-webkit-box-direction: normal!important
	}
	.flex-lg-column {
		-webkit-box-orient: vertical!important;
		-ms-flex-direction: column!important;
		flex-direction: column!important
	}
	.flex-lg-row-reverse {
		-webkit-box-orient: horizontal!important;
		-webkit-box-direction: reverse!important;
		-ms-flex-direction: row-reverse!important;
		flex-direction: row-reverse!important
	}
	.flex-lg-column-reverse {
		-webkit-box-orient: vertical!important;
		-webkit-box-direction: reverse!important;
		-ms-flex-direction: column-reverse!important;
		flex-direction: column-reverse!important
	}
	.flex-lg-wrap {
		-ms-flex-wrap: wrap!important;
		flex-wrap: wrap!important
	}
	.flex-lg-nowrap {
		-ms-flex-wrap: nowrap!important;
		flex-wrap: nowrap!important
	}
	.flex-lg-wrap-reverse {
		-ms-flex-wrap: wrap-reverse!important;
		flex-wrap: wrap-reverse!important
	}
	.flex-lg-fill {
		-webkit-box-flex: 1!important;
		-ms-flex: 1 1 auto!important;
		flex: 1 1 auto!important
	}
	.flex-lg-grow-0 {
		-webkit-box-flex: 0!important;
		-ms-flex-positive: 0!important;
		flex-grow: 0!important
	}
	.flex-lg-grow-1 {
		-webkit-box-flex: 1!important;
		-ms-flex-positive: 1!important;
		flex-grow: 1!important
	}
	.flex-lg-shrink-0 {
		-ms-flex-negative: 0!important;
		flex-shrink: 0!important
	}
	.flex-lg-shrink-1 {
		-ms-flex-negative: 1!important;
		flex-shrink: 1!important
	}
	.justify-content-lg-start {
		-webkit-box-pack: start!important;
		-ms-flex-pack: start!important;
		justify-content: flex-start!important
	}
	.justify-content-lg-end {
		-webkit-box-pack: end!important;
		-ms-flex-pack: end!important;
		justify-content: flex-end!important
	}
	.justify-content-lg-center {
		-webkit-box-pack: center!important;
		-ms-flex-pack: center!important;
		justify-content: center!important
	}
	.justify-content-lg-between {
		-webkit-box-pack: justify!important;
		-ms-flex-pack: justify!important;
		justify-content: space-between!important
	}
	.justify-content-lg-around {
		-ms-flex-pack: distribute!important;
		justify-content: space-around!important
	}
	.align-items-lg-start {
		-webkit-box-align: start!important;
		-ms-flex-align: start!important;
		align-items: flex-start!important
	}
	.align-items-lg-end {
		-webkit-box-align: end!important;
		-ms-flex-align: end!important;
		align-items: flex-end!important
	}
	.align-items-lg-center {
		-webkit-box-align: center!important;
		-ms-flex-align: center!important;
		align-items: center!important
	}
	.align-items-lg-baseline {
		-webkit-box-align: baseline!important;
		-ms-flex-align: baseline!important;
		align-items: baseline!important
	}
	.align-items-lg-stretch {
		-webkit-box-align: stretch!important;
		-ms-flex-align: stretch!important;
		align-items: stretch!important
	}
	.align-content-lg-start {
		-ms-flex-line-pack: start!important;
		align-content: flex-start!important
	}
	.align-content-lg-end {
		-ms-flex-line-pack: end!important;
		align-content: flex-end!important
	}
	.align-content-lg-center {
		-ms-flex-line-pack: center!important;
		align-content: center!important
	}
	.align-content-lg-between {
		-ms-flex-line-pack: justify!important;
		align-content: space-between!important
	}
	.align-content-lg-around {
		-ms-flex-line-pack: distribute!important;
		align-content: space-around!important
	}
	.align-content-lg-stretch {
		-ms-flex-line-pack: stretch!important;
		align-content: stretch!important
	}
	.align-self-lg-auto {
		-ms-flex-item-align: auto!important;
		align-self: auto!important
	}
	.align-self-lg-start {
		-ms-flex-item-align: start!important;
		align-self: flex-start!important
	}
	.align-self-lg-end {
		-ms-flex-item-align: end!important;
		align-self: flex-end!important
	}
	.align-self-lg-center {
		-ms-flex-item-align: center!important;
		align-self: center!important
	}
	.align-self-lg-baseline {
		-ms-flex-item-align: baseline!important;
		align-self: baseline!important
	}
	.align-self-lg-stretch {
		-ms-flex-item-align: stretch!important;
		align-self: stretch!important
	}
}

@media (min-width:1280px) {
	.flex-xl-row {
		-webkit-box-orient: horizontal!important;
		-ms-flex-direction: row!important;
		flex-direction: row!important
	}
	.flex-xl-column,
	.flex-xl-row {
		-webkit-box-direction: normal!important
	}
	.flex-xl-column {
		-webkit-box-orient: vertical!important;
		-ms-flex-direction: column!important;
		flex-direction: column!important
	}
	.flex-xl-row-reverse {
		-webkit-box-orient: horizontal!important;
		-webkit-box-direction: reverse!important;
		-ms-flex-direction: row-reverse!important;
		flex-direction: row-reverse!important
	}
	.flex-xl-column-reverse {
		-webkit-box-orient: vertical!important;
		-webkit-box-direction: reverse!important;
		-ms-flex-direction: column-reverse!important;
		flex-direction: column-reverse!important
	}
	.flex-xl-wrap {
		-ms-flex-wrap: wrap!important;
		flex-wrap: wrap!important
	}
	.flex-xl-nowrap {
		-ms-flex-wrap: nowrap!important;
		flex-wrap: nowrap!important
	}
	.flex-xl-wrap-reverse {
		-ms-flex-wrap: wrap-reverse!important;
		flex-wrap: wrap-reverse!important
	}
	.flex-xl-fill {
		-webkit-box-flex: 1!important;
		-ms-flex: 1 1 auto!important;
		flex: 1 1 auto!important
	}
	.flex-xl-grow-0 {
		-webkit-box-flex: 0!important;
		-ms-flex-positive: 0!important;
		flex-grow: 0!important
	}
	.flex-xl-grow-1 {
		-webkit-box-flex: 1!important;
		-ms-flex-positive: 1!important;
		flex-grow: 1!important
	}
	.flex-xl-shrink-0 {
		-ms-flex-negative: 0!important;
		flex-shrink: 0!important
	}
	.flex-xl-shrink-1 {
		-ms-flex-negative: 1!important;
		flex-shrink: 1!important
	}
	.justify-content-xl-start {
		-webkit-box-pack: start!important;
		-ms-flex-pack: start!important;
		justify-content: flex-start!important
	}
	.justify-content-xl-end {
		-webkit-box-pack: end!important;
		-ms-flex-pack: end!important;
		justify-content: flex-end!important
	}
	.justify-content-xl-center {
		-webkit-box-pack: center!important;
		-ms-flex-pack: center!important;
		justify-content: center!important
	}
	.justify-content-xl-between {
		-webkit-box-pack: justify!important;
		-ms-flex-pack: justify!important;
		justify-content: space-between!important
	}
	.justify-content-xl-around {
		-ms-flex-pack: distribute!important;
		justify-content: space-around!important
	}
	.align-items-xl-start {
		-webkit-box-align: start!important;
		-ms-flex-align: start!important;
		align-items: flex-start!important
	}
	.align-items-xl-end {
		-webkit-box-align: end!important;
		-ms-flex-align: end!important;
		align-items: flex-end!important
	}
	.align-items-xl-center {
		-webkit-box-align: center!important;
		-ms-flex-align: center!important;
		align-items: center!important
	}
	.align-items-xl-baseline {
		-webkit-box-align: baseline!important;
		-ms-flex-align: baseline!important;
		align-items: baseline!important
	}
	.align-items-xl-stretch {
		-webkit-box-align: stretch!important;
		-ms-flex-align: stretch!important;
		align-items: stretch!important
	}
	.align-content-xl-start {
		-ms-flex-line-pack: start!important;
		align-content: flex-start!important
	}
	.align-content-xl-end {
		-ms-flex-line-pack: end!important;
		align-content: flex-end!important
	}
	.align-content-xl-center {
		-ms-flex-line-pack: center!important;
		align-content: center!important
	}
	.align-content-xl-between {
		-ms-flex-line-pack: justify!important;
		align-content: space-between!important
	}
	.align-content-xl-around {
		-ms-flex-line-pack: distribute!important;
		align-content: space-around!important
	}
	.align-content-xl-stretch {
		-ms-flex-line-pack: stretch!important;
		align-content: stretch!important
	}
	.align-self-xl-auto {
		-ms-flex-item-align: auto!important;
		align-self: auto!important
	}
	.align-self-xl-start {
		-ms-flex-item-align: start!important;
		align-self: flex-start!important
	}
	.align-self-xl-end {
		-ms-flex-item-align: end!important;
		align-self: flex-end!important
	}
	.align-self-xl-center {
		-ms-flex-item-align: center!important;
		align-self: center!important
	}
	.align-self-xl-baseline {
		-ms-flex-item-align: baseline!important;
		align-self: baseline!important
	}
	.align-self-xl-stretch {
		-ms-flex-item-align: stretch!important;
		align-self: stretch!important
	}
}

.w-25 {
	width: 25%!important
}

.w-50 {
	width: 50%!important
}

.w-75 {
	width: 75%!important
}

.w-100 {
	width: 100%!important
}

.w-auto {
	width: auto!important
}

.h-25 {
	height: 25%!important
}

.h-50 {
	height: 50%!important
}

.h-75 {
	height: 75%!important
}

.h-100 {
	height: 100%!important
}

.h-auto {
	height: auto!important
}

.mw-100 {
	max-width: 100%!important
}

.mh-100 {
	max-height: 100%!important
}

.m-0 {
	margin: 0!important
}

.mt-0,
.my-0 {
	margin-top: 0!important
}

.mr-0,
.mx-0 {
	margin-right: 0!important
}

.mb-0,
.my-0 {
	margin-bottom: 0!important
}

.ml-0,
.mx-0 {
	margin-left: 0!important
}

.m-1 {
	margin: 4px!important;
	margin: .25rem!important
}

.mt-1,
.my-1 {
	margin-top: 4px!important;
	margin-top: .25rem!important
}

.mr-1,
.mx-1 {
	margin-right: 4px!important;
	margin-right: .25rem!important
}

.mb-1,
.my-1 {
	margin-bottom: 4px!important;
	margin-bottom: .25rem!important
}

.ml-1,
.mx-1 {
	margin-left: 4px!important;
	margin-left: .25rem!important
}

.m-2 {
	margin: 8px!important;
	margin: .5rem!important
}

.mt-2,
.my-2 {
	margin-top: 8px!important;
	margin-top: .5rem!important
}

.mr-2,
.mx-2 {
	margin-right: 8px!important;
	margin-right: .5rem!important
}

.mb-2,
.my-2 {
	margin-bottom: 8px!important;
	margin-bottom: .5rem!important
}

.ml-2,
.mx-2 {
	margin-left: 8px!important;
	margin-left: .5rem!important
}

.m-3 {
	margin: 16px!important;
	margin: 1rem!important
}

.mt-3,
.my-3 {
	margin-top: 16px!important;
	margin-top: 1rem!important
}

.mr-3,
.mx-3 {
	margin-right: 16px!important;
	margin-right: 1rem!important
}

.mb-3,
.my-3 {
	margin-bottom: 16px!important;
	margin-bottom: 1rem!important
}

.ml-3,
.mx-3 {
	margin-left: 16px!important;
	margin-left: 1rem!important
}

.m-4 {
	margin: 24px!important;
	margin: 1.5rem!important
}

.mt-4,
.my-4 {
	margin-top: 24px!important;
	margin-top: 1.5rem!important
}

.mr-4,
.mx-4 {
	margin-right: 24px!important;
	margin-right: 1.5rem!important
}

.mb-4,
.my-4 {
	margin-bottom: 24px!important;
	margin-bottom: 1.5rem!important
}

.ml-4,
.mx-4 {
	margin-left: 24px!important;
	margin-left: 1.5rem!important
}

.m-5 {
	margin: 48px!important;
	margin: 3rem!important
}

.mt-5,
.my-5 {
	margin-top: 48px!important;
	margin-top: 3rem!important
}

.mr-5,
.mx-5 {
	margin-right: 48px!important;
	margin-right: 3rem!important
}

.mb-5,
.my-5 {
	margin-bottom: 48px!important;
	margin-bottom: 3rem!important
}

.ml-5,
.mx-5 {
	margin-left: 48px!important;
	margin-left: 3rem!important
}

.p-0 {
	padding: 0!important
}

.pt-0,
.py-0 {
	padding-top: 0!important
}

.pr-0,
.px-0 {
	padding-right: 0!important
}

.pb-0,
.py-0 {
	padding-bottom: 0!important
}

.pl-0,
.px-0 {
	padding-left: 0!important
}

.p-1 {
	padding: 4px!important;
	padding: .25rem!important
}

.pt-1,
.py-1 {
	padding-top: 4px!important;
	padding-top: .25rem!important
}

.pr-1,
.px-1 {
	padding-right: 4px!important;
	padding-right: .25rem!important
}

.pb-1,
.py-1 {
	padding-bottom: 4px!important;
	padding-bottom: .25rem!important
}

.pl-1,
.px-1 {
	padding-left: 4px!important;
	padding-left: .25rem!important
}

.p-2 {
	padding: 8px!important;
	padding: .5rem!important
}

.pt-2,
.py-2 {
	padding-top: 8px!important;
	padding-top: .5rem!important
}

.pr-2,
.px-2 {
	padding-right: 8px!important;
	padding-right: .5rem!important
}

.pb-2,
.py-2 {
	padding-bottom: 8px!important;
	padding-bottom: .5rem!important
}

.pl-2,
.px-2 {
	padding-left: 8px!important;
	padding-left: .5rem!important
}

.p-3 {
	padding: 16px!important;
	padding: 1rem!important
}

.pt-3,
.py-3 {
	padding-top: 16px!important;
	padding-top: 1rem!important
}

.pr-3,
.px-3 {
	padding-right: 16px!important;
	padding-right: 1rem!important
}

.pb-3,
.py-3 {
	padding-bottom: 16px!important;
	padding-bottom: 1rem!important
}

.pl-3,
.px-3 {
	padding-left: 16px!important;
	padding-left: 1rem!important
}

.p-4 {
	padding: 24px!important;
	padding: 1.5rem!important
}

.pt-4,
.py-4 {
	padding-top: 24px!important;
	padding-top: 1.5rem!important
}

.pr-4,
.px-4 {
	padding-right: 24px!important;
	padding-right: 1.5rem!important
}

.pb-4,
.py-4 {
	padding-bottom: 24px!important;
	padding-bottom: 1.5rem!important
}

.pl-4,
.px-4 {
	padding-left: 24px!important;
	padding-left: 1.5rem!important
}

.p-5 {
	padding: 48px!important;
	padding: 3rem!important
}

.pt-5,
.py-5 {
	padding-top: 48px!important;
	padding-top: 3rem!important
}

.pr-5,
.px-5 {
	padding-right: 48px!important;
	padding-right: 3rem!important
}

.pb-5,
.py-5 {
	padding-bottom: 48px!important;
	padding-bottom: 3rem!important
}

.pl-5,
.px-5 {
	padding-left: 48px!important;
	padding-left: 3rem!important
}

.m-auto {
	margin: auto!important
}

.mt-auto,
.my-auto {
	margin-top: auto!important
}

.mr-auto,
.mx-auto {
	margin-right: auto!important
}

.mb-auto,
.my-auto {
	margin-bottom: auto!important
}

.ml-auto,
.mx-auto {
	margin-left: auto!important
}

@media (min-width:576px) {
	.m-sm-0 {
		margin: 0!important
	}
	.mt-sm-0,
	.my-sm-0 {
		margin-top: 0!important
	}
	.mr-sm-0,
	.mx-sm-0 {
		margin-right: 0!important
	}
	.mb-sm-0,
	.my-sm-0 {
		margin-bottom: 0!important
	}
	.ml-sm-0,
	.mx-sm-0 {
		margin-left: 0!important
	}
	.m-sm-1 {
		margin: .25rem!important
	}
	.mt-sm-1,
	.my-sm-1 {
		margin-top: .25rem!important
	}
	.mr-sm-1,
	.mx-sm-1 {
		margin-right: .25rem!important
	}
	.mb-sm-1,
	.my-sm-1 {
		margin-bottom: .25rem!important
	}
	.ml-sm-1,
	.mx-sm-1 {
		margin-left: .25rem!important
	}
	.m-sm-2 {
		margin: .5rem!important
	}
	.mt-sm-2,
	.my-sm-2 {
		margin-top: .5rem!important
	}
	.mr-sm-2,
	.mx-sm-2 {
		margin-right: .5rem!important
	}
	.mb-sm-2,
	.my-sm-2 {
		margin-bottom: .5rem!important
	}
	.ml-sm-2,
	.mx-sm-2 {
		margin-left: .5rem!important
	}
	.m-sm-3 {
		margin: 1rem!important
	}
	.mt-sm-3,
	.my-sm-3 {
		margin-top: 1rem!important
	}
	.mr-sm-3,
	.mx-sm-3 {
		margin-right: 1rem!important
	}
	.mb-sm-3,
	.my-sm-3 {
		margin-bottom: 1rem!important
	}
	.ml-sm-3,
	.mx-sm-3 {
		margin-left: 1rem!important
	}
	.m-sm-4 {
		margin: 1.5rem!important
	}
	.mt-sm-4,
	.my-sm-4 {
		margin-top: 1.5rem!important
	}
	.mr-sm-4,
	.mx-sm-4 {
		margin-right: 1.5rem!important
	}
	.mb-sm-4,
	.my-sm-4 {
		margin-bottom: 1.5rem!important
	}
	.ml-sm-4,
	.mx-sm-4 {
		margin-left: 1.5rem!important
	}
	.m-sm-5 {
		margin: 3rem!important
	}
	.mt-sm-5,
	.my-sm-5 {
		margin-top: 3rem!important
	}
	.mr-sm-5,
	.mx-sm-5 {
		margin-right: 3rem!important
	}
	.mb-sm-5,
	.my-sm-5 {
		margin-bottom: 3rem!important
	}
	.ml-sm-5,
	.mx-sm-5 {
		margin-left: 3rem!important
	}
	.p-sm-0 {
		padding: 0!important
	}
	.pt-sm-0,
	.py-sm-0 {
		padding-top: 0!important
	}
	.pr-sm-0,
	.px-sm-0 {
		padding-right: 0!important
	}
	.pb-sm-0,
	.py-sm-0 {
		padding-bottom: 0!important
	}
	.pl-sm-0,
	.px-sm-0 {
		padding-left: 0!important
	}
	.p-sm-1 {
		padding: .25rem!important
	}
	.pt-sm-1,
	.py-sm-1 {
		padding-top: .25rem!important
	}
	.pr-sm-1,
	.px-sm-1 {
		padding-right: .25rem!important
	}
	.pb-sm-1,
	.py-sm-1 {
		padding-bottom: .25rem!important
	}
	.pl-sm-1,
	.px-sm-1 {
		padding-left: .25rem!important
	}
	.p-sm-2 {
		padding: .5rem!important
	}
	.pt-sm-2,
	.py-sm-2 {
		padding-top: .5rem!important
	}
	.pr-sm-2,
	.px-sm-2 {
		padding-right: .5rem!important
	}
	.pb-sm-2,
	.py-sm-2 {
		padding-bottom: .5rem!important
	}
	.pl-sm-2,
	.px-sm-2 {
		padding-left: .5rem!important
	}
	.p-sm-3 {
		padding: 1rem!important
	}
	.pt-sm-3,
	.py-sm-3 {
		padding-top: 1rem!important
	}
	.pr-sm-3,
	.px-sm-3 {
		padding-right: 1rem!important
	}
	.pb-sm-3,
	.py-sm-3 {
		padding-bottom: 1rem!important
	}
	.pl-sm-3,
	.px-sm-3 {
		padding-left: 1rem!important
	}
	.p-sm-4 {
		padding: 1.5rem!important
	}
	.pt-sm-4,
	.py-sm-4 {
		padding-top: 1.5rem!important
	}
	.pr-sm-4,
	.px-sm-4 {
		padding-right: 1.5rem!important
	}
	.pb-sm-4,
	.py-sm-4 {
		padding-bottom: 1.5rem!important
	}
	.pl-sm-4,
	.px-sm-4 {
		padding-left: 1.5rem!important
	}
	.p-sm-5 {
		padding: 3rem!important
	}
	.pt-sm-5,
	.py-sm-5 {
		padding-top: 3rem!important
	}
	.pr-sm-5,
	.px-sm-5 {
		padding-right: 3rem!important
	}
	.pb-sm-5,
	.py-sm-5 {
		padding-bottom: 3rem!important
	}
	.pl-sm-5,
	.px-sm-5 {
		padding-left: 3rem!important
	}
	.m-sm-auto {
		margin: auto!important
	}
	.mt-sm-auto,
	.my-sm-auto {
		margin-top: auto!important
	}
	.mr-sm-auto,
	.mx-sm-auto {
		margin-right: auto!important
	}
	.mb-sm-auto,
	.my-sm-auto {
		margin-bottom: auto!important
	}
	.ml-sm-auto,
	.mx-sm-auto {
		margin-left: auto!important
	}
}

@media (min-width:768px) {
	.m-md-0 {
		margin: 0!important
	}
	.mt-md-0,
	.my-md-0 {
		margin-top: 0!important
	}
	.mr-md-0,
	.mx-md-0 {
		margin-right: 0!important
	}
	.mb-md-0,
	.my-md-0 {
		margin-bottom: 0!important
	}
	.ml-md-0,
	.mx-md-0 {
		margin-left: 0!important
	}
	.m-md-1 {
		margin: .25rem!important
	}
	.mt-md-1,
	.my-md-1 {
		margin-top: .25rem!important
	}
	.mr-md-1,
	.mx-md-1 {
		margin-right: .25rem!important
	}
	.mb-md-1,
	.my-md-1 {
		margin-bottom: .25rem!important
	}
	.ml-md-1,
	.mx-md-1 {
		margin-left: .25rem!important
	}
	.m-md-2 {
		margin: .5rem!important
	}
	.mt-md-2,
	.my-md-2 {
		margin-top: .5rem!important
	}
	.mr-md-2,
	.mx-md-2 {
		margin-right: .5rem!important
	}
	.mb-md-2,
	.my-md-2 {
		margin-bottom: .5rem!important
	}
	.ml-md-2,
	.mx-md-2 {
		margin-left: .5rem!important
	}
	.m-md-3 {
		margin: 1rem!important
	}
	.mt-md-3,
	.my-md-3 {
		margin-top: 1rem!important
	}
	.mr-md-3,
	.mx-md-3 {
		margin-right: 1rem!important
	}
	.mb-md-3,
	.my-md-3 {
		margin-bottom: 1rem!important
	}
	.ml-md-3,
	.mx-md-3 {
		margin-left: 1rem!important
	}
	.m-md-4 {
		margin: 1.5rem!important
	}
	.mt-md-4,
	.my-md-4 {
		margin-top: 1.5rem!important
	}
	.mr-md-4,
	.mx-md-4 {
		margin-right: 1.5rem!important
	}
	.mb-md-4,
	.my-md-4 {
		margin-bottom: 1.5rem!important
	}
	.ml-md-4,
	.mx-md-4 {
		margin-left: 1.5rem!important
	}
	.m-md-5 {
		margin: 3rem!important
	}
	.mt-md-5,
	.my-md-5 {
		margin-top: 3rem!important
	}
	.mr-md-5,
	.mx-md-5 {
		margin-right: 3rem!important
	}
	.mb-md-5,
	.my-md-5 {
		margin-bottom: 3rem!important
	}
	.ml-md-5,
	.mx-md-5 {
		margin-left: 3rem!important
	}
	.p-md-0 {
		padding: 0!important
	}
	.pt-md-0,
	.py-md-0 {
		padding-top: 0!important
	}
	.pr-md-0,
	.px-md-0 {
		padding-right: 0!important
	}
	.pb-md-0,
	.py-md-0 {
		padding-bottom: 0!important
	}
	.pl-md-0,
	.px-md-0 {
		padding-left: 0!important
	}
	.p-md-1 {
		padding: .25rem!important
	}
	.pt-md-1,
	.py-md-1 {
		padding-top: .25rem!important
	}
	.pr-md-1,
	.px-md-1 {
		padding-right: .25rem!important
	}
	.pb-md-1,
	.py-md-1 {
		padding-bottom: .25rem!important
	}
	.pl-md-1,
	.px-md-1 {
		padding-left: .25rem!important
	}
	.p-md-2 {
		padding: .5rem!important
	}
	.pt-md-2,
	.py-md-2 {
		padding-top: .5rem!important
	}
	.pr-md-2,
	.px-md-2 {
		padding-right: .5rem!important
	}
	.pb-md-2,
	.py-md-2 {
		padding-bottom: .5rem!important
	}
	.pl-md-2,
	.px-md-2 {
		padding-left: .5rem!important
	}
	.p-md-3 {
		padding: 1rem!important
	}
	.pt-md-3,
	.py-md-3 {
		padding-top: 1rem!important
	}
	.pr-md-3,
	.px-md-3 {
		padding-right: 1rem!important
	}
	.pb-md-3,
	.py-md-3 {
		padding-bottom: 1rem!important
	}
	.pl-md-3,
	.px-md-3 {
		padding-left: 1rem!important
	}
	.p-md-4 {
		padding: 1.5rem!important
	}
	.pt-md-4,
	.py-md-4 {
		padding-top: 1.5rem!important
	}
	.pr-md-4,
	.px-md-4 {
		padding-right: 1.5rem!important
	}
	.pb-md-4,
	.py-md-4 {
		padding-bottom: 1.5rem!important
	}
	.pl-md-4,
	.px-md-4 {
		padding-left: 1.5rem!important
	}
	.p-md-5 {
		padding: 3rem!important
	}
	.pt-md-5,
	.py-md-5 {
		padding-top: 3rem!important
	}
	.pr-md-5,
	.px-md-5 {
		padding-right: 3rem!important
	}
	.pb-md-5,
	.py-md-5 {
		padding-bottom: 3rem!important
	}
	.pl-md-5,
	.px-md-5 {
		padding-left: 3rem!important
	}
	.m-md-auto {
		margin: auto!important
	}
	.mt-md-auto,
	.my-md-auto {
		margin-top: auto!important
	}
	.mr-md-auto,
	.mx-md-auto {
		margin-right: auto!important
	}
	.mb-md-auto,
	.my-md-auto {
		margin-bottom: auto!important
	}
	.ml-md-auto,
	.mx-md-auto {
		margin-left: auto!important
	}
}

@media (min-width:992px) {
	.m-lg-0 {
		margin: 0!important
	}
	.mt-lg-0,
	.my-lg-0 {
		margin-top: 0!important
	}
	.mr-lg-0,
	.mx-lg-0 {
		margin-right: 0!important
	}
	.mb-lg-0,
	.my-lg-0 {
		margin-bottom: 0!important
	}
	.ml-lg-0,
	.mx-lg-0 {
		margin-left: 0!important
	}
	.m-lg-1 {
		margin: .25rem!important
	}
	.mt-lg-1,
	.my-lg-1 {
		margin-top: .25rem!important
	}
	.mr-lg-1,
	.mx-lg-1 {
		margin-right: .25rem!important
	}
	.mb-lg-1,
	.my-lg-1 {
		margin-bottom: .25rem!important
	}
	.ml-lg-1,
	.mx-lg-1 {
		margin-left: .25rem!important
	}
	.m-lg-2 {
		margin: .5rem!important
	}
	.mt-lg-2,
	.my-lg-2 {
		margin-top: .5rem!important
	}
	.mr-lg-2,
	.mx-lg-2 {
		margin-right: .5rem!important
	}
	.mb-lg-2,
	.my-lg-2 {
		margin-bottom: .5rem!important
	}
	.ml-lg-2,
	.mx-lg-2 {
		margin-left: .5rem!important
	}
	.m-lg-3 {
		margin: 1rem!important
	}
	.mt-lg-3,
	.my-lg-3 {
		margin-top: 1rem!important
	}
	.mr-lg-3,
	.mx-lg-3 {
		margin-right: 1rem!important
	}
	.mb-lg-3,
	.my-lg-3 {
		margin-bottom: 1rem!important
	}
	.ml-lg-3,
	.mx-lg-3 {
		margin-left: 1rem!important
	}
	.m-lg-4 {
		margin: 1.5rem!important
	}
	.mt-lg-4,
	.my-lg-4 {
		margin-top: 1.5rem!important
	}
	.mr-lg-4,
	.mx-lg-4 {
		margin-right: 1.5rem!important
	}
	.mb-lg-4,
	.my-lg-4 {
		margin-bottom: 1.5rem!important
	}
	.ml-lg-4,
	.mx-lg-4 {
		margin-left: 1.5rem!important
	}
	.m-lg-5 {
		margin: 3rem!important
	}
	.mt-lg-5,
	.my-lg-5 {
		margin-top: 3rem!important
	}
	.mr-lg-5,
	.mx-lg-5 {
		margin-right: 3rem!important
	}
	.mb-lg-5,
	.my-lg-5 {
		margin-bottom: 3rem!important
	}
	.ml-lg-5,
	.mx-lg-5 {
		margin-left: 3rem!important
	}
	.p-lg-0 {
		padding: 0!important
	}
	.pt-lg-0,
	.py-lg-0 {
		padding-top: 0!important
	}
	.pr-lg-0,
	.px-lg-0 {
		padding-right: 0!important
	}
	.pb-lg-0,
	.py-lg-0 {
		padding-bottom: 0!important
	}
	.pl-lg-0,
	.px-lg-0 {
		padding-left: 0!important
	}
	.p-lg-1 {
		padding: .25rem!important
	}
	.pt-lg-1,
	.py-lg-1 {
		padding-top: .25rem!important
	}
	.pr-lg-1,
	.px-lg-1 {
		padding-right: .25rem!important
	}
	.pb-lg-1,
	.py-lg-1 {
		padding-bottom: .25rem!important
	}
	.pl-lg-1,
	.px-lg-1 {
		padding-left: .25rem!important
	}
	.p-lg-2 {
		padding: .5rem!important
	}
	.pt-lg-2,
	.py-lg-2 {
		padding-top: .5rem!important
	}
	.pr-lg-2,
	.px-lg-2 {
		padding-right: .5rem!important
	}
	.pb-lg-2,
	.py-lg-2 {
		padding-bottom: .5rem!important
	}
	.pl-lg-2,
	.px-lg-2 {
		padding-left: .5rem!important
	}
	.p-lg-3 {
		padding: 1rem!important
	}
	.pt-lg-3,
	.py-lg-3 {
		padding-top: 1rem!important
	}
	.pr-lg-3,
	.px-lg-3 {
		padding-right: 1rem!important
	}
	.pb-lg-3,
	.py-lg-3 {
		padding-bottom: 1rem!important
	}
	.pl-lg-3,
	.px-lg-3 {
		padding-left: 1rem!important
	}
	.p-lg-4 {
		padding: 1.5rem!important
	}
	.pt-lg-4,
	.py-lg-4 {
		padding-top: 1.5rem!important
	}
	.pr-lg-4,
	.px-lg-4 {
		padding-right: 1.5rem!important
	}
	.pb-lg-4,
	.py-lg-4 {
		padding-bottom: 1.5rem!important
	}
	.pl-lg-4,
	.px-lg-4 {
		padding-left: 1.5rem!important
	}
	.p-lg-5 {
		padding: 3rem!important
	}
	.pt-lg-5,
	.py-lg-5 {
		padding-top: 3rem!important
	}
	.pr-lg-5,
	.px-lg-5 {
		padding-right: 3rem!important
	}
	.pb-lg-5,
	.py-lg-5 {
		padding-bottom: 3rem!important
	}
	.pl-lg-5,
	.px-lg-5 {
		padding-left: 3rem!important
	}
	.m-lg-auto {
		margin: auto!important
	}
	.mt-lg-auto,
	.my-lg-auto {
		margin-top: auto!important
	}
	.mr-lg-auto,
	.mx-lg-auto {
		margin-right: auto!important
	}
	.mb-lg-auto,
	.my-lg-auto {
		margin-bottom: auto!important
	}
	.ml-lg-auto,
	.mx-lg-auto {
		margin-left: auto!important
	}
}

@media (min-width:1280px) {
	.m-xl-0 {
		margin: 0!important
	}
	.mt-xl-0,
	.my-xl-0 {
		margin-top: 0!important
	}
	.mr-xl-0,
	.mx-xl-0 {
		margin-right: 0!important
	}
	.mb-xl-0,
	.my-xl-0 {
		margin-bottom: 0!important
	}
	.ml-xl-0,
	.mx-xl-0 {
		margin-left: 0!important
	}
	.m-xl-1 {
		margin: .25rem!important
	}
	.mt-xl-1,
	.my-xl-1 {
		margin-top: .25rem!important
	}
	.mr-xl-1,
	.mx-xl-1 {
		margin-right: .25rem!important
	}
	.mb-xl-1,
	.my-xl-1 {
		margin-bottom: .25rem!important
	}
	.ml-xl-1,
	.mx-xl-1 {
		margin-left: .25rem!important
	}
	.m-xl-2 {
		margin: .5rem!important
	}
	.mt-xl-2,
	.my-xl-2 {
		margin-top: .5rem!important
	}
	.mr-xl-2,
	.mx-xl-2 {
		margin-right: .5rem!important
	}
	.mb-xl-2,
	.my-xl-2 {
		margin-bottom: .5rem!important
	}
	.ml-xl-2,
	.mx-xl-2 {
		margin-left: .5rem!important
	}
	.m-xl-3 {
		margin: 1rem!important
	}
	.mt-xl-3,
	.my-xl-3 {
		margin-top: 1rem!important
	}
	.mr-xl-3,
	.mx-xl-3 {
		margin-right: 1rem!important
	}
	.mb-xl-3,
	.my-xl-3 {
		margin-bottom: 1rem!important
	}
	.ml-xl-3,
	.mx-xl-3 {
		margin-left: 1rem!important
	}
	.m-xl-4 {
		margin: 1.5rem!important
	}
	.mt-xl-4,
	.my-xl-4 {
		margin-top: 1.5rem!important
	}
	.mr-xl-4,
	.mx-xl-4 {
		margin-right: 1.5rem!important
	}
	.mb-xl-4,
	.my-xl-4 {
		margin-bottom: 1.5rem!important
	}
	.ml-xl-4,
	.mx-xl-4 {
		margin-left: 1.5rem!important
	}
	.m-xl-5 {
		margin: 3rem!important
	}
	.mt-xl-5,
	.my-xl-5 {
		margin-top: 3rem!important
	}
	.mr-xl-5,
	.mx-xl-5 {
		margin-right: 3rem!important
	}
	.mb-xl-5,
	.my-xl-5 {
		margin-bottom: 3rem!important
	}
	.ml-xl-5,
	.mx-xl-5 {
		margin-left: 3rem!important
	}
	.p-xl-0 {
		padding: 0!important
	}
	.pt-xl-0,
	.py-xl-0 {
		padding-top: 0!important
	}
	.pr-xl-0,
	.px-xl-0 {
		padding-right: 0!important
	}
	.pb-xl-0,
	.py-xl-0 {
		padding-bottom: 0!important
	}
	.pl-xl-0,
	.px-xl-0 {
		padding-left: 0!important
	}
	.p-xl-1 {
		padding: .25rem!important
	}
	.pt-xl-1,
	.py-xl-1 {
		padding-top: .25rem!important
	}
	.pr-xl-1,
	.px-xl-1 {
		padding-right: .25rem!important
	}
	.pb-xl-1,
	.py-xl-1 {
		padding-bottom: .25rem!important
	}
	.pl-xl-1,
	.px-xl-1 {
		padding-left: .25rem!important
	}
	.p-xl-2 {
		padding: .5rem!important
	}
	.pt-xl-2,
	.py-xl-2 {
		padding-top: .5rem!important
	}
	.pr-xl-2,
	.px-xl-2 {
		padding-right: .5rem!important
	}
	.pb-xl-2,
	.py-xl-2 {
		padding-bottom: .5rem!important
	}
	.pl-xl-2,
	.px-xl-2 {
		padding-left: .5rem!important
	}
	.p-xl-3 {
		padding: 1rem!important
	}
	.pt-xl-3,
	.py-xl-3 {
		padding-top: 1rem!important
	}
	.pr-xl-3,
	.px-xl-3 {
		padding-right: 1rem!important
	}
	.pb-xl-3,
	.py-xl-3 {
		padding-bottom: 1rem!important
	}
	.pl-xl-3,
	.px-xl-3 {
		padding-left: 1rem!important
	}
	.p-xl-4 {
		padding: 1.5rem!important
	}
	.pt-xl-4,
	.py-xl-4 {
		padding-top: 1.5rem!important
	}
	.pr-xl-4,
	.px-xl-4 {
		padding-right: 1.5rem!important
	}
	.pb-xl-4,
	.py-xl-4 {
		padding-bottom: 1.5rem!important
	}
	.pl-xl-4,
	.px-xl-4 {
		padding-left: 1.5rem!important
	}
	.p-xl-5 {
		padding: 3rem!important
	}
	.pt-xl-5,
	.py-xl-5 {
		padding-top: 3rem!important
	}
	.pr-xl-5,
	.px-xl-5 {
		padding-right: 3rem!important
	}
	.pb-xl-5,
	.py-xl-5 {
		padding-bottom: 3rem!important
	}
	.pl-xl-5,
	.px-xl-5 {
		padding-left: 3rem!important
	}
	.m-xl-auto {
		margin: auto!important
	}
	.mt-xl-auto,
	.my-xl-auto {
		margin-top: auto!important
	}
	.mr-xl-auto,
	.mx-xl-auto {
		margin-right: auto!important
	}
	.mb-xl-auto,
	.my-xl-auto {
		margin-bottom: auto!important
	}
	.ml-xl-auto,
	.mx-xl-auto {
		margin-left: auto!important
	}
}

.visible {
	visibility: visible!important
}

.invisible {
	visibility: hidden!important
}

html {
	font-family: OpenSans, -apple-system, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	word-spacing: 1px;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased
}

*,
:after,
:before,
html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

*,
:after,
:before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0
}

::-webkit-input-placeholder {
	color: #bebebe
}

::-moz-placeholder {
	color: #bebebe
}

:-ms-input-placeholder {
	color: #bebebe
}

:-moz-placeholder {
	color: #bebebe
}

.bg-steel-blue {
	background-color: #4883b5!important
}

.bg-pomegranate {
	background-color: #f93822!important
}

.bg-thunderbird {
	background-color: #bb2919!important
}

.bg-white {
	background-color: #fff!important
}

.bg-white-sand {
	background-color: #f6f6f6!important
}

.bg-mercury {
	background-color: #e5e5e5!important
}

.bg-alto {
	background-color: #d8d8d8!important
}

.bg-silver {
	background-color: #bebebe!important
}

.bg-dove-gray {
	background-color: #616161!important
}

.bg-mine-shaft {
	background-color: #3f3f3f!important
}

.bg-black {
	background-color: #000!important
}

.border {
	border: 1px solid
}

.border-steel-blue {
	border-color: #4883b5!important
}

.border-pomegranate {
	border-color: #f93822!important
}

.border-thunderbird {
	border-color: #bb2919!important
}

.border-white {
	border-color: #fff!important
}

.border-white-sand {
	border-color: #f6f6f6!important
}

.border-mercury {
	border-color: #e5e5e5!important
}

.border-alto {
	border-color: #d8d8d8!important
}

.border-silver {
	border-color: #bebebe!important
}

.border-dove-gray {
	border-color: #616161!important
}

.border-mine-shaft {
	border-color: #3f3f3f!important
}

.border-black {
	border-color: #000!important
}

.clr-steel-blue {
	color: #4883b5!important
}

.clr-pomegranate {
	color: #f93822!important
}

.clr-thunderbird {
	color: #bb2919!important
}

.clr-white {
	color: #fff
}

.clr-white-sand {
	color: #f6f6f6!important
}

.clr-mercury {
	color: #e5e5e5!important
}

.clr-alto {
	color: #d8d8d8!important
}

.clr-silver {
	color: #bebebe!important
}

.clr-dove-gray {
	color: #616161!important
}

.clr-mine-shaft {
	color: #3f3f3f!important
}

.clr-black {
	color: #000!important
}

.display-b {
	display: block
}

.display-ib {
	display: inline-block
}

.d-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.d-inline-flex {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex
}

.flex-row {
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row
}

.flex-row,
.flex-row-reverse {
	-webkit-box-orient: horizontal
}

.flex-row-reverse {
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse
}

.flex-col {
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.flex-col,
.flex-col-rev {
	-webkit-box-orient: vertical
}

.flex-col-rev {
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse
}

.flex-wrap-nowrap {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap
}

.flex-wrap-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.flex-wrap-rev {
	-ms-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse
}

.justify-c-flex-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.justify-c-flex-start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.justify-c-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.justify-c-space-around {
	-ms-flex-pack: distribute;
	justify-content: space-around
}

.justify-c-space-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.align-i-flex-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.align-i-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.align-i-flex-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end
}

.align-i-stretch {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch
}

.align-i-baseline {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline
}

.flex-grow-0 {
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0
}

.flex-grow-1 {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1
}

.flex-shrink-0 {
	-ms-flex-negative: 0;
	flex-shrink: 0
}

.flex-shrink-1 {
	-ms-flex-negative: 1;
	flex-shrink: 1
}

.flex-basis-auto {
	-ms-flex-preferred-size: auto;
	flex-basis: auto
}

.flex-basis-0 {
	-ms-flex-preferred-size: 0;
	flex-basis: 0
}

.flex-all {
	-ms-flex: 1 0 auto;
	flex: 1 0 auto
}

.flex-1,
.flex-all {
	-webkit-box-flex: 1
}

.flex-1 {
	-ms-flex: 1;
	flex: 1
}

.align-self-auto {
	-ms-flex-item-align: auto;
	align-self: auto
}

.align-self-flex-start {
	-ms-flex-item-align: start;
	align-self: flex-start
}

.align-self-center {
	-ms-flex-item-align: center;
	align-self: center
}

.align-self-flex-end {
	-ms-flex-item-align: end;
	align-self: flex-end
}

.align-self-stretch {
	-ms-flex-item-align: stretch;
	align-self: stretch
}

.align-self-baseline {
	-ms-flex-item-align: baseline;
	align-self: baseline
}

.order-1 {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1
}

.order-2 {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2
}

.order-3 {
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3
}

.order-4 {
	-webkit-box-ordinal-group: 5;
	-ms-flex-order: 4;
	order: 4
}

.global-container {
	padding: 10px 0
}

@media only screen and (min-width:992px) {
	.global-container {
		padding: 0px 0px 50px 0px;
	}
}

@media only screen and (max-width:992px) {
	.responsive-grid-px-0 {
		padding-left: 0;
		padding-right: 0
	}
}

@media only screen and (max-width:992px) {
	.responsive-grid-mb {
		margin-bottom: 10px
	}
}

@media only screen and (max-width:992px) {
	.responsive-grid-ma {
		margin: 10px
	}
}

[class*=" icon-"],
[class^=icon-] {
	color: #676767;
	font-family: icomoon!important;
	speak: none;
	font-style: normal;
	font-weight: 400;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.icon--red-round {
	background: #f63a2e;
	background: radial-gradient(ellipse at center, #f63a2e 0, #bd1d1b 84%, #bd1d1b 100%);
	border-radius: 50%;
	color: #fff;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	height: 45px;
	position: relative;
	width: 45px
}

@media only screen and (min-width:768px) {
	.icon--red-round {
		height: 50px;
		width: 50px
	}
}

.icon--red-round:before {
	font-size: 20px;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-35%, -50%);
	transform: translate(-35%, -50%)
}

@media only screen and (min-width:768px) {
	.icon--red-round:before {
		font-size: 22px;
		-webkit-transform: translate(-30%, -50%);
		transform: translate(-30%, -50%)
	}
}

.icon-close:before {
	content: "\E900"
}

.icon-247-clock:before {
	content: "\E992"
}

.icon-calendar-schedule:before {
	content: "\E993"
}

.icon-call:before {
	content: "\E994"
}

.icon-charter-member:before {
	content: "\E995"
}

.icon-checkmark-active:before {
	content: "\E996"
}

.icon-checkmark-inactive:before {
	content: "\E997"
}

.icon-emergency-247-combo:before {
	content: "\E998"
}

.icon-emergency:before {
	content: "\E999"
}

.icon-facebook:before {
	content: "\E99A"
}

.icon-financing:before {
	content: "\E99B"
}

.icon-geolocate-inactive-grey:before {
	content: "\E99C"
}

.icon-hamburger-menu:before {
	content: "\E99D"
}

.icon-location:before {
	content: "\E99E"
}

.icon-nate-certified-home:before {
	content: "\E99F"
}

.icon-newsroom:before {
	content: "\E9A0"
}

.icon-nexia-diagnostics:before {
	content: "\E9A1"
}

.icon-nexia-installer:before {
	content: "\E9A2"
}

.icon-next:before {
	content: "\E9A3"
}

.icon-search:before {
	content: "\E9A4"
}

.icon-star:before {
	content: "\E9A5"
}

.icon-twitter:before {
	content: "\E9A6"
}

.icon-youtube:before {
	content: "\E9A7"
}

.margin-all-0 {
	margin: 0
}

.margin-all-1 {
	margin: 5px
}

.margin-all-2 {
	margin: 10px
}

.margin-all-3 {
	margin: 20px
}

.margin-all-4 {
	margin: 40px
}

.margin-all-5 {
	margin: 60px
}

.margin-all-6 {
	margin: 70px
}

.margin-all-7 {
	margin: 80px
}

.margin-b-0 {
	margin-bottom: 0
}

.margin-b-1 {
	margin-bottom: 5px
}

.margin-b-2 {
	margin-bottom: 7px
}

.margin-b-3 {
	margin-bottom: 20px
}

.margin-b-4 {
	margin-bottom: 40px
}

.margin-b-5 {
	margin-bottom: 60px
}

.margin-b-6 {
	margin-bottom: 70px
}

.margin-b-7 {
	margin-bottom: 80px
}

.margin-l-0 {
	margin-left: 0
}

.margin-l-1 {
	margin-left: 5px
}

.margin-l-2 {
	margin-left: 10px
}

.margin-l-3 {
	margin-left: 20px
}

.margin-l-4 {
	margin-left: 40px
}

.margin-l-5 {
	margin-left: 60px
}

.margin-l-6 {
	margin-left: 70px
}

.margin-l-7 {
	margin-left: 80px
}

.margin-r-0 {
	margin-right: 0
}

.margin-r-1 {
	margin-right: 5px
}

.margin-r-2 {
	margin-right: 10px
}

.margin-r-3 {
	margin-right: 20px
}

.margin-r-4 {
	margin-right: 40px
}

.margin-r-5 {
	margin-right: 60px
}

.margin-r-6 {
	margin-right: 70px
}

.margin-r-7 {
	margin-right: 80px
}

.margin-t-0 {
	margin-top: 0
}

.margin-t-1 {
	margin-top: 5px
}

.margin-t-2 {
	margin-top: 10px
}

.margin-t-3 {
	margin-top: 20px
}

.margin-t-4 {
	margin-top: 40px
}

.margin-t-5 {
	margin-top: 60px
}

.margin-t-6 {
	margin-top: 70px
}

.margin-t-7 {
	margin-top: 80px
}

.padding-a-0 {
	padding: 0
}

.padding-a-1 {
	padding: 5px
}

.padding-a-2 {
	padding: 10px
}

.padding-a-3 {
	padding: 20px
}

.padding-a-4 {
	padding: 40px
}

.padding-a-5 {
	padding: 60px
}

.padding-a-6 {
	padding: 70px
}

.padding-a-7 {
	padding: 80px
}

.padding-b-0 {
	padding-bottom: 0
}

.padding-b-1 {
	padding-bottom: 5px
}

.padding-b-2 {
	padding-bottom: 10px
}

.padding-b-3 {
	padding-bottom: 20px
}

.padding-b-4 {
	padding-bottom: 40px
}

.padding-b-5 {
	padding-bottom: 60px
}

.padding-b-6 {
	padding-bottom: 70px
}

.padding-b-7 {
	padding-bottom: 80px
}

.padding-l-0 {
	padding-left: 0
}

.padding-l-1 {
	padding-left: 5px
}

.padding-l-2 {
	padding-left: 10px
}

.padding-l-3 {
	padding-left: 20px
}

.padding-l-4 {
	padding-left: 40px
}

.padding-l-5 {
	padding-left: 60px
}

.padding-l-6 {
	padding-left: 70px
}

.padding-l-7 {
	padding-left: 80px
}

.padding-r-0 {
	padding-right: 0
}

.padding-r-1 {
	padding-right: 5px
}

.padding-r-2 {
	padding-right: 10px
}

.padding-r-3 {
	padding-right: 20px
}

.padding-r-4 {
	padding-right: 40px
}

.padding-r-5 {
	padding-right: 60px
}

.padding-r-6 {
	padding-right: 70px
}

.padding-r-7 {
	padding-right: 80px
}

.padding-t-0 {
	padding-top: 0
}

.padding-t-1 {
	padding-top: 5px
}

.padding-t-2 {
	padding-top: 10px
}

.padding-t-3 {
	padding-top: 20px
}

.padding-t-4 {
	padding-top: 40px
}

.padding-t-5 {
	padding-top: 60px
}

.padding-t-6 {
	padding-top: 70px
}

.padding-t-7 {
	padding-top: 80px
}

.headline-xxs {
	font-size: 14px
}

.headline-xs,
.headline-xxs {
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase
}

.headline-xs {
	font-size: 16px
}

.headline-sm {
	font-size: 18px
}

.headline-md,
.headline-sm {
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase
}

.headline-md {
	font-size: 20px
}

.headline-lg {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase
}

@media only screen and (min-width:768px) {
	.headline-lg {
		font-size: 24px;
		letter-spacing: 2px
	}
}

.headline-xl {
	font-size: 28px
}

.headline-xl,
.headline-xxl {
	font-weight: 800;
	letter-spacing: 6px;
	text-transform: uppercase
}

.headline-xxl {
	font-size: 30px
}

@media only screen and (min-width:768px) {
	.headline-xxl {
		font-size: 36px
	}
}

.headline-light-md {
	font-size: 24px;
	font-weight: 300
}

.headline-light-lg {
	font-size: 30px;
	font-weight: 300
}

.headline-light-xl {
	font-family: OpenSansLight;
	font-size: 34px;
	font-weight: 300
}

.type-xs {
	font-size: 11px
}

.type-sm {
	font-size: 12px
}

.type-md {
	font-size: 14px
}

.type-lg {
	font-size: 16px
}

.type-xl {
	font-size: 18px
}

.fw-300 {
	font-weight: 300
}

.fw-n {
	font-weight: 400
}

.fw-600 {
	font-weight: 600
}

.fw-700 {
	font-weight: 700
}

.fw-800 {
	font-weight: 800
}

.text-align-l {
	text-align: left
}

.text-align-c {
	text-align: center
}

.text-align-r {
	text-align: right
}

.text-transform-n {
	text-transform: none
}

.text-transform-l {
	text-transform: lowercase
}

.text-transform-u {
	text-transform: uppercase
}

.zindex-1 {
	z-index: 1
}

.zindex-5 {
	z-index: 5
}

.zindex-10 {
	z-index: 10
}

.zindex-20 {
	z-index: 20
}

.nuxt-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	width: 0;
	-webkit-transition: width .2s, opacity .4s;
	transition: width .2s, opacity .4s;
	opacity: 1;
	background-color: #efc14e;
	z-index: 999999
}

.index-nav__bar {
	background-color: #3f3f3f;
	height: 45px;
	position: relative
}

.index-nav__bar .container,
.index-nav__bar .row {
	height: 100%
}

.index-nav__bar .col {
	position: inherit
}

.index-nav__bar .icon {
	width: 20px
}

.index-nav__bar .icon:hover {
	cursor: pointer
}

.index-nav__menu {
	max-height: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 45px;
	-webkit-transition: all .8s ease;
	transition: all .8s ease;
	white-space: nowrap;
	width: 100%;
	z-index: 1
}

@media only screen and (min-width:992px) {
	.index-nav__menu {
		white-space: normal
	}
}

.index-nav__menu--is-active {
	background: red;
	max-height: 3800px;
	overflow: auto
}

.index-nav__logo .icon {
	margin-right: 10px
}

.index-nav__logo .icon:before {
	color: #f93822;
	font-size: 16px
}

.index-nav__menu .icon:before,
.index-nav__menu .index-nav__logo {
	font-size: 18px
}

.index-nav__menu .menu__lower .index-nav__logo {
	background: #fff;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 25px 10px 30px 0;
	position: -webkit-sticky;
	position: sticky;
	top: 0
}

@media only screen and (min-width:992px) {
	.index-nav__menu .menu__lower .index-nav__logo {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		font-size: 24px;
		padding: 25px 0 10px;
		position: relative;
		top: auto
	}
	.index-nav__menu .menu__lower .index-nav__logo .icon {
		margin-right: 30px
	}
	.index-nav__menu .menu__lower .index-nav__logo .icon:before {
		font-size: 24px
	}
}

@media only screen and (min-width:992px) {
	.index-nav__main--mobile {
		display: none
	}
}

.index-nav__main--desktop {
	display: none
}

@media only screen and (min-width:992px) {
	.index-nav__main--desktop {
		display: block
	}
}

.index-nav__main .button {
	color: #fff;
	display: block;
	padding-right: 10px;
	text-align: right
}

@media only screen and (min-width:992px) {
	.index-nav__main .button {
		display: inline-block
	}
}

.index-nav__main .button:hover {
	color: #f93822
}

.index-nav__main .button:nth-child(2) {
	padding: 20px 10px 20px 0
}

@media only screen and (min-width:992px) {
	.index-nav__main .button:nth-child(2) {
		padding: 0 40px 0 30px
	}
}

@media only screen and (min-width:992px) {
	.index-nav__main .button:nth-child(3) {
		padding: 0 60px 0 0
	}
}

.button {
	background-color: transparent;
	border: 0;
	text-decoration: none;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	outline: 0
}

.button:hover {
	cursor: pointer
}

.button--md {
	font-size: 16px;
	padding: 14px
}

.button--lg {
	font-size: 18px;
	padding: 16px
}

.button--sm {
	font-size: 14px;
	padding: 12px
}

.button--primary {
	background-color: #f93822;
	border: 1px solid #f93822;
	border-radius: 2px;
	color: #fff
}

.button--primary:hover {
	background-color: #f93822;
	border-color: #f93822;
	color: #fff
}

.button--alt {
	background-color: transparent;
	border: 1px solid #3f3f3f;
	border-radius: 4px;
	color: #3f3f3f
}

.button--alt:hover {
	background-color: inherit;
	border-color: #000;
	color: #3f3f3f
}

.button--tel {
	background-color: #f93822;
	border: 1px solid #f93822;
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	padding: 4px
}

.button--tel i {
	background-color: #bb2919;
	padding: 8px
}

.button--tel i:before {
	color: #fff;
	font-size: 18px
}

.button--tel span {
	font-family: OpenSansBold;
	font-size: 16px
}

.button--tel .tel__padding {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 0 24px;
	text-align: center
}

@media only screen and (min-width:768px) {
	.button--tel {
		background-color: transparent;
		border-width: 2px;
		color: #3f3f3f;
		font-size: 30px;
		padding: 0
	}
	.button--tel:hover {
		background-color: inherit;
		color: inherit
	}
	.button--tel:hover i {
		background-color: #f93822
	}
	.button--tel i {
		background-color: #f93822;
		padding: 10px 16px 12px
	}
	.button--tel i:before {
		font-size: 24px
	}
	.button--tel span {
		display: none
	}
	.button--tel .tel__padding {
		padding: 0 18px
	}
}

.content-box .button {
	background: rgba(15, 17, 19, .6);
	border-color: #fff;
	color: #fff;
	margin: 14px 0 0;
	min-width: 240px
}

@media only screen and (min-width:768px) {
	.content-box .button {
		min-width: auto
	}
	.content-box .button+.button {
		margin-left: 18px
	}
}

.content-box .button:hover {
	background-color: #f93822;
	border-color: #f93822;
	color: inherit
}

.index-nav__menu .menu__lower .container,
.index-nav__menu .menu__upper .container {
	-webkit-animation-delay: .1s;
	animation-delay: .1s;
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-name: navHide-data-v-45a99b9b;
	animation-name: navHide-data-v-45a99b9b;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.index-nav__menu .menu__upper {
	background-color: #000;
	padding: 20px 0;
	text-align: right
}

@media only screen and (min-width:992px) {
	.index-nav__menu .menu__upper {
		display: none
	}
}

.index-nav__menu .menu__lower {
	background-color: #fff;
	display: block;
	padding-bottom: 30px
}

@media only screen and (min-width:992px) {
	.index-nav__menu .menu__lower {
		padding-bottom: 185px
	}
}

.index-nav__menu .menu__col {
	padding: 0 10px 0 0
}

.index-nav__menu .menu__col+.menu__col {
	padding: 30px 10px 0 0
}

@media only screen and (min-width:992px) {
	.index-nav__menu .menu__col {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding-top: 10px;
		width: 25%
	}
}

.index-nav__menu .menu__category+.menu__category {
	padding-top: 30px
}

.index-nav__menu .menu__category__label {
	margin-bottom: 30px;
	margin-top: 10px;
	text-align: right
}

@media only screen and (min-width:992px) {
	.index-nav__menu .menu__category__label {
		margin-bottom: 40px;
		margin-top: 0;
		text-align: left
	}
}

.index-nav__menu .menu__category__link {
	text-align: right
}

@media only screen and (min-width:992px) {
	.index-nav__menu .menu__category__link {
		text-align: left
	}
}

.index-nav__menu .menu__category__link+.menu__category__link {
	margin-top: 20px
}

.index-nav__menu .menu__category__links .button {
	color: #000;
	font-size: 12px;
	font-weight: 700;
	padding: 10px 0;
	text-align: right
}

.index-nav__menu .menu__category__links .button:hover {
	color: #f93822
}

.index-nav__menu--is-active .menu__lower .container,
.index-nav__menu--is-active .menu__upper .container {
	opacity: 0;
	-webkit-animation-delay: 0;
	animation-delay: 0;
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-name: navShow-data-v-45a99b9b;
	animation-name: navShow-data-v-45a99b9b;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

@-webkit-keyframes navShow-data-v-45a99b9b {
	0% {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

@keyframes navShow-data-v-45a99b9b {
	0% {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

@-webkit-keyframes navHide-data-v-45a99b9b {
	0% {
		opacity: 1
	}
	to {
		opacity: 0
	}
}

@keyframes navHide-data-v-45a99b9b {
	0% {
		opacity: 1
	}
	to {
		opacity: 0
	}
}

.content-box {
	height: 100%;
	padding: 12px;
	position: relative
}

.content-box:hover .content-box__bordered:before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1)
}

.content-box__background {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%
}

.content-box__background--mobile {
	visibility: visible
}

@media only screen and (min-width:768px) {
	.content-box__background--mobile {
		visibility: hidden
	}
}

.content-box__background--desktop {
	visibility: hidden
}

@media only screen and (min-width:768px) {
	.content-box__background--desktop {
		visibility: visible
	}
}

.content-box__bordered {
	height: 100%;
	position: relative;
	padding: 30px 12px
}

@media only screen and (min-width:1280px) {
	.content-box__bordered {
		padding: 60px 12px
	}
}

.content-box__bordered:before {
	border: 1px solid #f93822;
	content: "";
	height: 95%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 10px;
	-webkit-transform: scale(.95);
	transform: scale(.95);
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	-webkit-transform-origin: center;
	transform-origin: center;
	width: 100%
}

.content-box__logo img {
	height: 68px;
	width: 150px
}

.content-box__slot {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

@media only screen and (min-width:768px) {
	.content-box__slot {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}

.content-box__title span {
	background: rgba(15, 17, 19, .6);
	display: inline-block;
	padding: 20px 10px
}

@media only screen and (min-width:768px) {
	.content-box__title span {
		padding: 20px 40px
	}
}

.index-footer {
	padding: 35px 0
}

.index-footer .button {
	color: #fff
}

.index-footer .button:hover {
	color: #f93822
}

.index-footer__col {
	padding: 0 0 40px
}

@media only screen and (min-width:992px) {
	.index-footer__col:first-child {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 70%;
		flex: 0 0 70%
	}
}

.index-footer__list {
	margin-right: 50px
}

.index-footer__list .button {
	display: block;
	font-size: 14px;
	font-weight: 700
}

.index-footer__upper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

@media only screen and (min-width:992px) {
	.index-footer__upper {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row
	}
}

.index-footer__lower {
	font-size: 12px
}

.index-footer__lower .button:before {
	background-color: #fff;
	content: "";
	display: inline-block;
	height: 10px;
	margin: 10px;
	width: 1px;
	vertical-align: middle
}
.marginright15px{
           margin-right:15px;
}
content-box__title headline-xxl span >.heading-font {
	font-family:OpenSans,-apple-system,Roboto,Arial,sans-serif;
    font-weight:800 !important;
    border:solid red 1px;
}
body {
  /*background: #333333 !important;*/  
}
.header {
    margin-bottom: 0px;
    background: #333333;
    height:50px;
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 960px) {

  .container {
    width: 100%;
  }
    /*.header {
      margin-bottom: 1px;
    }*/

    #middleContent {
      padding-top: 0px !important;
    }
	.container_style{
		margin-block:15px;
        padding-bottom:3px;
    }
}
@media (max-width: 960px) and (min-width: 768px) {
.container {
    min-width: 100%;   
    }
    /*.header{
        margin-bottom:0px;
        }*/
        #middleContent{
            padding-top:0px !important;;
        }
	.container_style{
		margin-block:10px;
        padding-bottom:75px;
    }
}
@media (max-width: 767px){
	/*.header {
        margin-bottom:0px;
        }*/
       #header .headerhide_mobile{
           display:none;
        }
	.container_style{
		margin-block:10px;
    	padding-bottom:3px;
    }
}

/* Footer Styles */
#footer {
	margin-bottom: 40px;
    background: #333333;
}	
	#footer ul{
		overflow: hidden;
		margin: 0 auto;
	}
		#footer li {
			float: left;
			color:#CACACA;
    		list-style-type: none;

		}	
			#footer li a {
				text-decoration: none;
				color: #cacaca;
				font: normal 11px/100% 'Arial', Sans-Serif;
			}
			#footer li span {
				color: #cacaca;
				font: normal 11px/100% 'Arial', Sans-Serif;
				border-right: 1px solid #cacaca;
				padding: 0 10px;
			}
	
	#footer table {
		width: 540px;
		margin: 0 auto;
	}
		#footer td {
			color: #cacaca;
			font: normal 11px/100% 'Arial', Sans-Serif;
			vertical-align: middle;
		}
	#firstListFooter {
        padding-top: 25px;
		width: 760px;
		margin:0px auto 5px;
		overflow: hidden;
	}
	#secondListFooter {
		width: 445px;
		margin: 0 auto 20px;
		overflow: hidden;
	}
	#thirdListFooter {
		width: 545px;
		margin: 0 auto;
		color: #cacaca;
		font: normal 11px/100% 'Arial', Sans-Serif;
		overflow: hidden;
	}
	#firstListFooter ul, #secondListFooter ul, #thirdListFooter ul { float: left;}
    #thirdListFooter ul { padding-left: 5px;}
	#thirdListFooter p {
		color: #cacaca;
		font: normal 11px/100% 'Arial', Sans-Serif;
		float: left;
		padding: 7px 15px 0 0;
	}
	#thirdListFooter li { padding: 0 7px 0 0; }
	#footer li span.first { padding-left: 0; }
	#footer li.last.noBorder span { border-right: none; padding-right: 0; }
	
	#footerMessage{
		color: #cacaca;
		font: normal 11px/100% 'Arial', Sans-Serif;
		margin-bottom: 20px;	
        text-align:center;
        padding-left: 50px;
	}
	#footer li.first span { padding-left: 0; }

@media only screen and  (max-width: 340px)  {
	#thirdListFooter li {
		padding: 0 3px 0 0;
	}
}

@media only screen and (max-width: 768px)  and (min-width: 640px){
    #secondListFooter {width: 100%;	font: 12px/100% "Arial",sans-serif;}	
    #footer {width:96%;float: left;padding: 25px 2%;margin: 0;}
    #firstListFooter { width:96% }
}

@media only screen and (max-width: 640px){
    #firstListFooter { width:96% }
}

@media only screen and (max-width: 640px){
#footer {
    width: 96%;
    float: left;
    padding: 25px 2%;
    margin: 0;
}
}

/* Header Styles */
#headerWrapper {
	width: 80%;
	margin: 0 auto;
        /*padding-top: 30px;*/
}

#header {
	position: relative;
	overflow: hidden;
	padding-bottom: 22px;
}	
	#header > a {
			float:left;
			padding-top: 25px;
		}
	@media (max-width: 768px){
		#header > a {
			display: none;
		}
	}
	#header > p {
		position: absolute;
		top:10px; right: 0;
		color: #FFF;
		font: normal 11px/100% 'Myriad Pro', Sans-Serif;
	}
		#header > p > a {
			color: #f14e23;
			text-decoration: none;
			font: normal 11px/100% 'Myriad Pro', Sans-Serif;
		}
			#header > p > a:hover {
				text-decoration: underline;
			}
	#header > form {
		position: relative;
		float: right;
		margin-top: 60px;
		width: 195px;
		height: 32px;
	}
		.inputFieldSearch {
			padding: 0px 5px;
			background-color: #FFF;
			color: #6D6D6D;
			font: normal 10px/21px 'F_Book_BT', Helvetica, sans-serif;
			border: 1px solid #d2d1d1;
			position: absolute;
			line-height: 1;
			height: 21px; width: 100px;
		}
		.goButton {
			background-color: #f14e23;
			color: white;
			font: bold 10px/22px 'F_Book_BT', Helvetica, sans-serif;
			height: 22px; 
			cursor: pointer;
			position: absolute;
			right: 0;
			padding: 0 7px;
			border: 0px;
			-webkit-appearance: none;
		}
		.roundedElement {
			-moz-border-radius: 4px;
			-ms-border-radius: 4px;
			-webkit-border-radius: 4px;
			-o-border-radius: 4px;
			border-radius: 4px;
		}
