/* Compatibility */
/* Reset */
*, *:before, *:after {
  box-sizing: border-box;
}

* {
  line-height: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  font: 17px/100% sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

pre, code, tt {
  font: 1em/1.5em "Andale Mono", "Lucida Console", monospace;
}

h1, h2, h3, h4, h5, h6, b, strong {
  font-weight: bold;
  margin: 0;
  padding: 0;
}

em, i, dfn {
  font-style: italic;
}

dfn {
  font-weight: bold;
}

p, code, pre, kbd {
  margin: 0 0 2.5em 0;
}

blockquote {
  margin: 0 1.5em 1.5em 1.5em;
}

cite {
  font-style: italic;
}

li ul, li ol {
  margin: 0;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0 0 1.5em 0;
}

dl dt {
  font-weight: bold;
}

dd {
  margin-left: 1.5em;
}

table {
  width: 100%;
}

th {
  font-weight: bold;
}

th, td, caption {
  padding: 4px 10px 4px 5px;
}

tfoot {
  font-style: italic;
}

sup, sub {
  line-height: 0;
}

abbr, acronym {
  border-bottom: 1px dotted;
}

address {
  margin: 0 0 1.5em;
  font-style: italic;
}

del {
  text-decoration: line-through;
}

pre {
  margin: 0 0 1.5em;
  white-space: pre;
}

p {
  margin: 0 0 1.5em;
}

img, svg {
  max-width: 100%;
  vertical-align: middle;
}

button {
  border: none;
}

/* Helpers */
.clearfix,
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.flex {
  display: flex !important;
}

.inlineflex {
  display: inline-flex !important;
}

.flex.flex-column, .inlineflex.flex-column {
  flex-direction: column;
}
.flex.flex-row, .inlineflex.flex-row {
  flex-direction: row;
}
.flex.justify-content-start, .inlineflex.justify-content-start {
  justify-content: flex-start;
}
.flex.justify-content-center, .inlineflex.justify-content-center {
  justify-content: center;
}
.flex.justify-content-end, .inlineflex.justify-content-end {
  justify-content: flex-end;
}
.flex.justify-content-around, .inlineflex.justify-content-around {
  justify-content: space-around;
}
.flex.justify-content-between, .inlineflex.justify-content-between {
  justify-content: space-between;
}
.flex.justify-content-evenly, .inlineflex.justify-content-evenly {
  justify-content: space-evenly;
}
.flex.align-items-start, .inlineflex.align-items-start {
  align-items: flex-start;
}
.flex.align-items-end, .inlineflex.align-items-end {
  align-items: flex-end;
}
.flex.align-items-center, .inlineflex.align-items-center {
  align-items: center;
}
.flex.align-items-stretch, .inlineflex.align-items-stretch {
  align-items: stretch;
}
.flex.align-items-baseline, .inlineflex.align-items-baseline {
  align-items: baseline;
}
.flex.flex-wrap, .inlineflex.flex-wrap {
  flex-wrap: wrap;
}

.flex1 {
  flex: 1 !important;
}

.flex2 {
  flex: 2 !important;
}

.flex3 {
  flex: 3 !important;
}

.flex4 {
  flex: 4 !important;
}

.flex5 {
  flex: 5 !important;
}

.flex6 {
  flex: 6 !important;
}

.flex7 {
  flex: 7 !important;
}

.flex8 {
  flex: 8 !important;
}

.flex9 {
  flex: 9 !important;
}

.flex10 {
  flex: 10 !important;
}

.flex11 {
  flex: 11 !important;
}

.flex12 {
  flex: 12 !important;
}

.ul {
  list-style: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
}

.vmiddle {
  vertical-align: middle;
}

.vtop {
  vertical-align: top;
}

.wfull {
  width: 100%;
}

.whalf {
  width: 50%;
}

.hfull {
  height: 100%;
}

.hhalf {
  height: 50%;
}

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

.fleft {
  float: left;
}

.fright {
  float: right;
}

.tleft {
  text-align: left;
}

.tright {
  text-align: right;
}

.tcenter {
  text-align: center;
}

.tjustify {
  text-align: justify;
}

.dblock {
  display: block !important;
}

.diblock {
  display: inline-block !important;
}

.dtable {
  display: table;
}

.dcell {
  display: table-cell;
  vertical-align: middle;
}

.dmiddle {
  display: table;
  width: 100%;
}
.dmiddle > * {
  display: table-cell;
  vertical-align: middle;
}

.dnone, .hide {
  display: none;
}

.vhidden {
  visibility: hidden;
}

.aleft {
  position: absolute;
  left: 0;
}

.abottom {
  position: absolute;
  bottom: 0;
}

.atop {
  position: absolute;
  top: 0;
}

.aright {
  position: absolute;
  right: 0;
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
  z-index: 100;
}

.absolute {
  position: absolute;
}

.cover {
  background: no-repeat center;
  background-size: cover;
}

.bg-fixed {
  background-attachment: fixed;
}

.overflow {
  overflow: hidden;
}

.overflowauto {
  overflow: auto;
}

.overflowinitial {
  overflow: initial !important;
}

.bold {
  font-weight: 700;
}

.fnormal {
  font-weight: 400 !important;
}

.light {
  font-weight: 300;
}

.italic {
  font-style: italic;
  font-weight: normal;
}

.underline {
  text-decoration: underline !important;
}

.caps {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.lheightspaced {
  line-height: 1.5;
}

.lheightcondensed {
  line-height: 1.15;
}

.comma + .comma:before {
  content: ", ";
  margin-left: -3px;
}

.disk {
  border-radius: 100px;
  overflow: hidden;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nowrap {
  white-space: nowrap;
}

.objposcenter {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: none;
     object-fit: none;
}

.objfitcover {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Effects */
.halfa-in1 {
  transition: 0.5s;
  opacity: 0.8;
}

.halfa-in2 {
  transition: 0.5s;
  opacity: 0.6;
}

.halfa-in3 {
  transition: 0.5s;
  opacity: 0.4;
}

.halfa-in1:hover, .halfa-in2:hover, .halfa-in3:hover {
  opacity: 1;
}

.halfa-out1, .halfa-out2, .halfa-out3 {
  transition: 0.5s;
  opacity: 1;
}

.halfa-out1:hover {
  opacity: 0.8;
}

.halfa-out2:hover {
  opacity: 0.6;
}

.halfa-out3:hover {
  opacity: 0.4;
}

.hzoom-out {
  transition: 0.5s;
  transform: scale(1);
}

.hzoom-out:hover {
  transform: scale(1.1);
}

.hzoom-in {
  transition: 0.5s;
  transform: scale(1.1);
}

.hzoom-in:hover {
  transform: scale(1);
}

.hdisabled {
  cursor: not-allowed;
}

.pointer {
  cursor: pointer;
}

.hunderline {
  text-decoration: none;
}
.hunderline:hover {
  text-decoration: underline;
}

/* Font Sizes */
.fbigger10 {
  font-size: 110% !important;
}

.fsmaller10 {
  font-size: 90% !important;
}

.fbigger20 {
  font-size: 120% !important;
}

.fsmaller20 {
  font-size: 80% !important;
}

.fbigger30 {
  font-size: 130% !important;
}

.fsmaller30 {
  font-size: 70% !important;
}

.fbigger40 {
  font-size: 140% !important;
}

.fsmaller40 {
  font-size: 60% !important;
}

.fbigger50 {
  font-size: 150% !important;
}

.fsmaller50 {
  font-size: 50% !important;
}

.fbigger60 {
  font-size: 160% !important;
}

.fsmaller60 {
  font-size: 40% !important;
}

.fbigger70 {
  font-size: 170% !important;
}

.fsmaller70 {
  font-size: 30% !important;
}

.fbigger80 {
  font-size: 180% !important;
}

.fsmaller80 {
  font-size: 20% !important;
}

.fbigger90 {
  font-size: 190% !important;
}

.fsmaller90 {
  font-size: 10% !important;
}

.m0 {
  margin: 0 !important;
}

.mtop0 {
  margin-top: 0 !important;
}

.mbottom0 {
  margin-bottom: 0 !important;
}

.mright0 {
  margin-right: 0 !important;
}

.mleft0 {
  margin-left: 0 !important;
}

.p5 {
  padding: 5px !important;
}

.ph5 {
  padding-left: 5px;
  padding-right: 5px !important;
}

.pv5 {
  padding-top: 5px;
  padding-bottom: 5px !important;
}

.m5 {
  margin: 5px !important;
}

.mh5 {
  margin-left: 5px;
  margin-right: 5px !important;
}

.mv5 {
  margin-top: 5px;
  margin-bottom: 5px !important;
}

.mtop5 {
  margin-top: 5px !important;
}

.mright5 {
  margin-right: 5px !important;
}

.mbottom5 {
  margin-bottom: 5px !important;
}

.mleft5 {
  margin-left: 5px !important;
}

.ptop5 {
  padding-top: 5px !important;
}

.pright5 {
  padding-right: 5px !important;
}

.pbottom5 {
  padding-bottom: 5px !important;
}

.pleft5 {
  padding-left: 5px !important;
}

.bradius2 {
  border-radius: 2px !important;
}

.p10 {
  padding: 10px !important;
}

.ph10 {
  padding-left: 10px;
  padding-right: 10px !important;
}

.pv10 {
  padding-top: 10px;
  padding-bottom: 10px !important;
}

.m10 {
  margin: 10px !important;
}

.mh10 {
  margin-left: 10px;
  margin-right: 10px !important;
}

.mv10 {
  margin-top: 10px;
  margin-bottom: 10px !important;
}

.mtop10 {
  margin-top: 10px !important;
}

.mright10 {
  margin-right: 10px !important;
}

.mbottom10 {
  margin-bottom: 10px !important;
}

.mleft10 {
  margin-left: 10px !important;
}

.ptop10 {
  padding-top: 10px !important;
}

.pright10 {
  padding-right: 10px !important;
}

.pbottom10 {
  padding-bottom: 10px !important;
}

.pleft10 {
  padding-left: 10px !important;
}

.bradius4 {
  border-radius: 4px !important;
}

.p15 {
  padding: 15px !important;
}

.ph15 {
  padding-left: 15px;
  padding-right: 15px !important;
}

.pv15 {
  padding-top: 15px;
  padding-bottom: 15px !important;
}

.m15 {
  margin: 15px !important;
}

.mh15 {
  margin-left: 15px;
  margin-right: 15px !important;
}

.mv15 {
  margin-top: 15px;
  margin-bottom: 15px !important;
}

.mtop15 {
  margin-top: 15px !important;
}

.mright15 {
  margin-right: 15px !important;
}

.mbottom15 {
  margin-bottom: 15px !important;
}

.mleft15 {
  margin-left: 15px !important;
}

.ptop15 {
  padding-top: 15px !important;
}

.pright15 {
  padding-right: 15px !important;
}

.pbottom15 {
  padding-bottom: 15px !important;
}

.pleft15 {
  padding-left: 15px !important;
}

.bradius6 {
  border-radius: 6px !important;
}

.p20 {
  padding: 20px !important;
}

.ph20 {
  padding-left: 20px;
  padding-right: 20px !important;
}

.pv20 {
  padding-top: 20px;
  padding-bottom: 20px !important;
}

.m20 {
  margin: 20px !important;
}

.mh20 {
  margin-left: 20px;
  margin-right: 20px !important;
}

.mv20 {
  margin-top: 20px;
  margin-bottom: 20px !important;
}

.mtop20 {
  margin-top: 20px !important;
}

.mright20 {
  margin-right: 20px !important;
}

.mbottom20 {
  margin-bottom: 20px !important;
}

.mleft20 {
  margin-left: 20px !important;
}

.ptop20 {
  padding-top: 20px !important;
}

.pright20 {
  padding-right: 20px !important;
}

.pbottom20 {
  padding-bottom: 20px !important;
}

.pleft20 {
  padding-left: 20px !important;
}

.bradius8 {
  border-radius: 8px !important;
}

.p25 {
  padding: 25px !important;
}

.ph25 {
  padding-left: 25px;
  padding-right: 25px !important;
}

.pv25 {
  padding-top: 25px;
  padding-bottom: 25px !important;
}

.m25 {
  margin: 25px !important;
}

.mh25 {
  margin-left: 25px;
  margin-right: 25px !important;
}

.mv25 {
  margin-top: 25px;
  margin-bottom: 25px !important;
}

.mtop25 {
  margin-top: 25px !important;
}

.mright25 {
  margin-right: 25px !important;
}

.mbottom25 {
  margin-bottom: 25px !important;
}

.mleft25 {
  margin-left: 25px !important;
}

.ptop25 {
  padding-top: 25px !important;
}

.pright25 {
  padding-right: 25px !important;
}

.pbottom25 {
  padding-bottom: 25px !important;
}

.pleft25 {
  padding-left: 25px !important;
}

.bradius10 {
  border-radius: 10px !important;
}

.p30 {
  padding: 30px !important;
}

.ph30 {
  padding-left: 30px;
  padding-right: 30px !important;
}

.pv30 {
  padding-top: 30px;
  padding-bottom: 30px !important;
}

.m30 {
  margin: 30px !important;
}

.mh30 {
  margin-left: 30px;
  margin-right: 30px !important;
}

.mv30 {
  margin-top: 30px;
  margin-bottom: 30px !important;
}

.mtop30 {
  margin-top: 30px !important;
}

.mright30 {
  margin-right: 30px !important;
}

.mbottom30 {
  margin-bottom: 30px !important;
}

.mleft30 {
  margin-left: 30px !important;
}

.ptop30 {
  padding-top: 30px !important;
}

.pright30 {
  padding-right: 30px !important;
}

.pbottom30 {
  padding-bottom: 30px !important;
}

.pleft30 {
  padding-left: 30px !important;
}

.bradius12 {
  border-radius: 12px !important;
}

.p35 {
  padding: 35px !important;
}

.ph35 {
  padding-left: 35px;
  padding-right: 35px !important;
}

.pv35 {
  padding-top: 35px;
  padding-bottom: 35px !important;
}

.m35 {
  margin: 35px !important;
}

.mh35 {
  margin-left: 35px;
  margin-right: 35px !important;
}

.mv35 {
  margin-top: 35px;
  margin-bottom: 35px !important;
}

.mtop35 {
  margin-top: 35px !important;
}

.mright35 {
  margin-right: 35px !important;
}

.mbottom35 {
  margin-bottom: 35px !important;
}

.mleft35 {
  margin-left: 35px !important;
}

.ptop35 {
  padding-top: 35px !important;
}

.pright35 {
  padding-right: 35px !important;
}

.pbottom35 {
  padding-bottom: 35px !important;
}

.pleft35 {
  padding-left: 35px !important;
}

.bradius14 {
  border-radius: 14px !important;
}

.p40 {
  padding: 40px !important;
}

.ph40 {
  padding-left: 40px;
  padding-right: 40px !important;
}

.pv40 {
  padding-top: 40px;
  padding-bottom: 40px !important;
}

.m40 {
  margin: 40px !important;
}

.mh40 {
  margin-left: 40px;
  margin-right: 40px !important;
}

.mv40 {
  margin-top: 40px;
  margin-bottom: 40px !important;
}

.mtop40 {
  margin-top: 40px !important;
}

.mright40 {
  margin-right: 40px !important;
}

.mbottom40 {
  margin-bottom: 40px !important;
}

.mleft40 {
  margin-left: 40px !important;
}

.ptop40 {
  padding-top: 40px !important;
}

.pright40 {
  padding-right: 40px !important;
}

.pbottom40 {
  padding-bottom: 40px !important;
}

.pleft40 {
  padding-left: 40px !important;
}

.bradius16 {
  border-radius: 16px !important;
}

.p45 {
  padding: 45px !important;
}

.ph45 {
  padding-left: 45px;
  padding-right: 45px !important;
}

.pv45 {
  padding-top: 45px;
  padding-bottom: 45px !important;
}

.m45 {
  margin: 45px !important;
}

.mh45 {
  margin-left: 45px;
  margin-right: 45px !important;
}

.mv45 {
  margin-top: 45px;
  margin-bottom: 45px !important;
}

.mtop45 {
  margin-top: 45px !important;
}

.mright45 {
  margin-right: 45px !important;
}

.mbottom45 {
  margin-bottom: 45px !important;
}

.mleft45 {
  margin-left: 45px !important;
}

.ptop45 {
  padding-top: 45px !important;
}

.pright45 {
  padding-right: 45px !important;
}

.pbottom45 {
  padding-bottom: 45px !important;
}

.pleft45 {
  padding-left: 45px !important;
}

.bradius18 {
  border-radius: 18px !important;
}

.p50 {
  padding: 50px !important;
}

.ph50 {
  padding-left: 50px;
  padding-right: 50px !important;
}

.pv50 {
  padding-top: 50px;
  padding-bottom: 50px !important;
}

.m50 {
  margin: 50px !important;
}

.mh50 {
  margin-left: 50px;
  margin-right: 50px !important;
}

.mv50 {
  margin-top: 50px;
  margin-bottom: 50px !important;
}

.mtop50 {
  margin-top: 50px !important;
}

.mright50 {
  margin-right: 50px !important;
}

.mbottom50 {
  margin-bottom: 50px !important;
}

.mleft50 {
  margin-left: 50px !important;
}

.ptop50 {
  padding-top: 50px !important;
}

.pright50 {
  padding-right: 50px !important;
}

.pbottom50 {
  padding-bottom: 50px !important;
}

.pleft50 {
  padding-left: 50px !important;
}

.bradius20 {
  border-radius: 20px !important;
}

.p55 {
  padding: 55px !important;
}

.ph55 {
  padding-left: 55px;
  padding-right: 55px !important;
}

.pv55 {
  padding-top: 55px;
  padding-bottom: 55px !important;
}

.m55 {
  margin: 55px !important;
}

.mh55 {
  margin-left: 55px;
  margin-right: 55px !important;
}

.mv55 {
  margin-top: 55px;
  margin-bottom: 55px !important;
}

.mtop55 {
  margin-top: 55px !important;
}

.mright55 {
  margin-right: 55px !important;
}

.mbottom55 {
  margin-bottom: 55px !important;
}

.mleft55 {
  margin-left: 55px !important;
}

.ptop55 {
  padding-top: 55px !important;
}

.pright55 {
  padding-right: 55px !important;
}

.pbottom55 {
  padding-bottom: 55px !important;
}

.pleft55 {
  padding-left: 55px !important;
}

.bradius22 {
  border-radius: 22px !important;
}

.p60 {
  padding: 60px !important;
}

.ph60 {
  padding-left: 60px;
  padding-right: 60px !important;
}

.pv60 {
  padding-top: 60px;
  padding-bottom: 60px !important;
}

.m60 {
  margin: 60px !important;
}

.mh60 {
  margin-left: 60px;
  margin-right: 60px !important;
}

.mv60 {
  margin-top: 60px;
  margin-bottom: 60px !important;
}

.mtop60 {
  margin-top: 60px !important;
}

.mright60 {
  margin-right: 60px !important;
}

.mbottom60 {
  margin-bottom: 60px !important;
}

.mleft60 {
  margin-left: 60px !important;
}

.ptop60 {
  padding-top: 60px !important;
}

.pright60 {
  padding-right: 60px !important;
}

.pbottom60 {
  padding-bottom: 60px !important;
}

.pleft60 {
  padding-left: 60px !important;
}

.bradius24 {
  border-radius: 24px !important;
}

.p65 {
  padding: 65px !important;
}

.ph65 {
  padding-left: 65px;
  padding-right: 65px !important;
}

.pv65 {
  padding-top: 65px;
  padding-bottom: 65px !important;
}

.m65 {
  margin: 65px !important;
}

.mh65 {
  margin-left: 65px;
  margin-right: 65px !important;
}

.mv65 {
  margin-top: 65px;
  margin-bottom: 65px !important;
}

.mtop65 {
  margin-top: 65px !important;
}

.mright65 {
  margin-right: 65px !important;
}

.mbottom65 {
  margin-bottom: 65px !important;
}

.mleft65 {
  margin-left: 65px !important;
}

.ptop65 {
  padding-top: 65px !important;
}

.pright65 {
  padding-right: 65px !important;
}

.pbottom65 {
  padding-bottom: 65px !important;
}

.pleft65 {
  padding-left: 65px !important;
}

.bradius26 {
  border-radius: 26px !important;
}

.p70 {
  padding: 70px !important;
}

.ph70 {
  padding-left: 70px;
  padding-right: 70px !important;
}

.pv70 {
  padding-top: 70px;
  padding-bottom: 70px !important;
}

.m70 {
  margin: 70px !important;
}

.mh70 {
  margin-left: 70px;
  margin-right: 70px !important;
}

.mv70 {
  margin-top: 70px;
  margin-bottom: 70px !important;
}

.mtop70 {
  margin-top: 70px !important;
}

.mright70 {
  margin-right: 70px !important;
}

.mbottom70 {
  margin-bottom: 70px !important;
}

.mleft70 {
  margin-left: 70px !important;
}

.ptop70 {
  padding-top: 70px !important;
}

.pright70 {
  padding-right: 70px !important;
}

.pbottom70 {
  padding-bottom: 70px !important;
}

.pleft70 {
  padding-left: 70px !important;
}

.bradius28 {
  border-radius: 28px !important;
}

.p75 {
  padding: 75px !important;
}

.ph75 {
  padding-left: 75px;
  padding-right: 75px !important;
}

.pv75 {
  padding-top: 75px;
  padding-bottom: 75px !important;
}

.m75 {
  margin: 75px !important;
}

.mh75 {
  margin-left: 75px;
  margin-right: 75px !important;
}

.mv75 {
  margin-top: 75px;
  margin-bottom: 75px !important;
}

.mtop75 {
  margin-top: 75px !important;
}

.mright75 {
  margin-right: 75px !important;
}

.mbottom75 {
  margin-bottom: 75px !important;
}

.mleft75 {
  margin-left: 75px !important;
}

.ptop75 {
  padding-top: 75px !important;
}

.pright75 {
  padding-right: 75px !important;
}

.pbottom75 {
  padding-bottom: 75px !important;
}

.pleft75 {
  padding-left: 75px !important;
}

.bradius30 {
  border-radius: 30px !important;
}

.p80 {
  padding: 80px !important;
}

.ph80 {
  padding-left: 80px;
  padding-right: 80px !important;
}

.pv80 {
  padding-top: 80px;
  padding-bottom: 80px !important;
}

.m80 {
  margin: 80px !important;
}

.mh80 {
  margin-left: 80px;
  margin-right: 80px !important;
}

.mv80 {
  margin-top: 80px;
  margin-bottom: 80px !important;
}

.mtop80 {
  margin-top: 80px !important;
}

.mright80 {
  margin-right: 80px !important;
}

.mbottom80 {
  margin-bottom: 80px !important;
}

.mleft80 {
  margin-left: 80px !important;
}

.ptop80 {
  padding-top: 80px !important;
}

.pright80 {
  padding-right: 80px !important;
}

.pbottom80 {
  padding-bottom: 80px !important;
}

.pleft80 {
  padding-left: 80px !important;
}

.bradius32 {
  border-radius: 32px !important;
}

.p85 {
  padding: 85px !important;
}

.ph85 {
  padding-left: 85px;
  padding-right: 85px !important;
}

.pv85 {
  padding-top: 85px;
  padding-bottom: 85px !important;
}

.m85 {
  margin: 85px !important;
}

.mh85 {
  margin-left: 85px;
  margin-right: 85px !important;
}

.mv85 {
  margin-top: 85px;
  margin-bottom: 85px !important;
}

.mtop85 {
  margin-top: 85px !important;
}

.mright85 {
  margin-right: 85px !important;
}

.mbottom85 {
  margin-bottom: 85px !important;
}

.mleft85 {
  margin-left: 85px !important;
}

.ptop85 {
  padding-top: 85px !important;
}

.pright85 {
  padding-right: 85px !important;
}

.pbottom85 {
  padding-bottom: 85px !important;
}

.pleft85 {
  padding-left: 85px !important;
}

.bradius34 {
  border-radius: 34px !important;
}

.p90 {
  padding: 90px !important;
}

.ph90 {
  padding-left: 90px;
  padding-right: 90px !important;
}

.pv90 {
  padding-top: 90px;
  padding-bottom: 90px !important;
}

.m90 {
  margin: 90px !important;
}

.mh90 {
  margin-left: 90px;
  margin-right: 90px !important;
}

.mv90 {
  margin-top: 90px;
  margin-bottom: 90px !important;
}

.mtop90 {
  margin-top: 90px !important;
}

.mright90 {
  margin-right: 90px !important;
}

.mbottom90 {
  margin-bottom: 90px !important;
}

.mleft90 {
  margin-left: 90px !important;
}

.ptop90 {
  padding-top: 90px !important;
}

.pright90 {
  padding-right: 90px !important;
}

.pbottom90 {
  padding-bottom: 90px !important;
}

.pleft90 {
  padding-left: 90px !important;
}

.bradius36 {
  border-radius: 36px !important;
}

.p95 {
  padding: 95px !important;
}

.ph95 {
  padding-left: 95px;
  padding-right: 95px !important;
}

.pv95 {
  padding-top: 95px;
  padding-bottom: 95px !important;
}

.m95 {
  margin: 95px !important;
}

.mh95 {
  margin-left: 95px;
  margin-right: 95px !important;
}

.mv95 {
  margin-top: 95px;
  margin-bottom: 95px !important;
}

.mtop95 {
  margin-top: 95px !important;
}

.mright95 {
  margin-right: 95px !important;
}

.mbottom95 {
  margin-bottom: 95px !important;
}

.mleft95 {
  margin-left: 95px !important;
}

.ptop95 {
  padding-top: 95px !important;
}

.pright95 {
  padding-right: 95px !important;
}

.pbottom95 {
  padding-bottom: 95px !important;
}

.pleft95 {
  padding-left: 95px !important;
}

.bradius38 {
  border-radius: 38px !important;
}

.p100 {
  padding: 100px !important;
}

.ph100 {
  padding-left: 100px;
  padding-right: 100px !important;
}

.pv100 {
  padding-top: 100px;
  padding-bottom: 100px !important;
}

.m100 {
  margin: 100px !important;
}

.mh100 {
  margin-left: 100px;
  margin-right: 100px !important;
}

.mv100 {
  margin-top: 100px;
  margin-bottom: 100px !important;
}

.mtop100 {
  margin-top: 100px !important;
}

.mright100 {
  margin-right: 100px !important;
}

.mbottom100 {
  margin-bottom: 100px !important;
}

.mleft100 {
  margin-left: 100px !important;
}

.ptop100 {
  padding-top: 100px !important;
}

.pright100 {
  padding-right: 100px !important;
}

.pbottom100 {
  padding-bottom: 100px !important;
}

.pleft100 {
  padding-left: 100px !important;
}

.bradius40 {
  border-radius: 40px !important;
}

.w25 {
  width: 25px !important;
}

.h25 {
  height: 25px !important;
}

.w50 {
  width: 50px !important;
}

.h50 {
  height: 50px !important;
}

.w75 {
  width: 75px !important;
}

.h75 {
  height: 75px !important;
}

.w100 {
  width: 100px !important;
}

.h100 {
  height: 100px !important;
}

.w125 {
  width: 125px !important;
}

.h125 {
  height: 125px !important;
}

.w150 {
  width: 150px !important;
}

.h150 {
  height: 150px !important;
}

.w175 {
  width: 175px !important;
}

.h175 {
  height: 175px !important;
}

.w200 {
  width: 200px !important;
}

.h200 {
  height: 200px !important;
}

.w225 {
  width: 225px !important;
}

.h225 {
  height: 225px !important;
}

.w250 {
  width: 250px !important;
}

.h250 {
  height: 250px !important;
}

.w275 {
  width: 275px !important;
}

.h275 {
  height: 275px !important;
}

.w300 {
  width: 300px !important;
}

.h300 {
  height: 300px !important;
}

.w325 {
  width: 325px !important;
}

.h325 {
  height: 325px !important;
}

.w350 {
  width: 350px !important;
}

.h350 {
  height: 350px !important;
}

.w375 {
  width: 375px !important;
}

.h375 {
  height: 375px !important;
}

.w400 {
  width: 400px !important;
}

.h400 {
  height: 400px !important;
}

.w425 {
  width: 425px !important;
}

.h425 {
  height: 425px !important;
}

.w450 {
  width: 450px !important;
}

.h450 {
  height: 450px !important;
}

.w475 {
  width: 475px !important;
}

.h475 {
  height: 475px !important;
}

.w500 {
  width: 500px !important;
}

.h500 {
  height: 500px !important;
}

.w525 {
  width: 525px !important;
}

.h525 {
  height: 525px !important;
}

.w550 {
  width: 550px !important;
}

.h550 {
  height: 550px !important;
}

.w575 {
  width: 575px !important;
}

.h575 {
  height: 575px !important;
}

.w600 {
  width: 600px !important;
}

.h600 {
  height: 600px !important;
}

.w625 {
  width: 625px !important;
}

.h625 {
  height: 625px !important;
}

.w650 {
  width: 650px !important;
}

.h650 {
  height: 650px !important;
}

.w675 {
  width: 675px !important;
}

.h675 {
  height: 675px !important;
}

.w700 {
  width: 700px !important;
}

.h700 {
  height: 700px !important;
}

.w725 {
  width: 725px !important;
}

.h725 {
  height: 725px !important;
}

.w750 {
  width: 750px !important;
}

.h750 {
  height: 750px !important;
}

.w775 {
  width: 775px !important;
}

.h775 {
  height: 775px !important;
}

.w800 {
  width: 800px !important;
}

.h800 {
  height: 800px !important;
}

.w825 {
  width: 825px !important;
}

.h825 {
  height: 825px !important;
}

.w850 {
  width: 850px !important;
}

.h850 {
  height: 850px !important;
}

.w875 {
  width: 875px !important;
}

.h875 {
  height: 875px !important;
}

.w900 {
  width: 900px !important;
}

.h900 {
  height: 900px !important;
}

.w925 {
  width: 925px !important;
}

.h925 {
  height: 925px !important;
}

.w950 {
  width: 950px !important;
}

.h950 {
  height: 950px !important;
}

.w975 {
  width: 975px !important;
}

.h975 {
  height: 975px !important;
}

.w1000 {
  width: 1000px !important;
}

.h1000 {
  height: 1000px !important;
}

.w15 {
  width: 15px !important;
}

.wauto {
  width: auto !important;
}

.minw-reset {
  min-width: initial !important;
}

.minh-reset {
  min-height: initial !important;
}

.svg-container > svg {
  width: 100%;
  height: 100%;
}
.svg-container.svg-fill-lightgray > svg path {
  fill: #a0a0a0;
}

/* Grid */
.wmax {
  width: 100%;
  max-width: 1280px;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
  .visible-xs-block {
    display: block !important;
  }
  .visible-xs-inline {
    display: inline !important;
  }
  .visible-xs-inline-block {
    display: inline-block !important;
  }
  .hidden-xs {
    display: none !important;
  }
  .bg-hidden-xs {
    background: none !important;
  }
  .bg-right-xs {
    background-position: right !important;
  }
  .p0-xs {
    padding: 0 !important;
  }
  .ph0-xs {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
  .visible-sm-block {
    display: block !important;
  }
  .visible-sm-inline {
    display: inline !important;
  }
  .visible-sm-inline-block {
    display: inline-block !important;
  }
  .hidden-sm {
    display: none !important;
  }
  .bg-hidden-sm {
    background: none !important;
  }
  .p0-sm {
    padding: 0 !important;
  }
  .ph0-sm {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
  .visible-md-block {
    display: block !important;
  }
  .visible-md-inline {
    display: inline !important;
  }
  .visible-md-inline-block {
    display: inline-block !important;
  }
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1281px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
  .visible-lg-block {
    display: block !important;
  }
  .visible-lg-inline {
    display: inline !important;
  }
  .visible-lg-inline-block {
    display: inline-block !important;
  }
  .hidden-lg {
    display: none !important;
  }
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
  .visible-print-block {
    display: block !important;
  }
  .visible-print-inline {
    display: inline !important;
  }
  .visible-print-inline-block {
    display: inline-block !important;
  }
  .hidden-print {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

.visible-print-block {
  display: none !important;
}

.visible-print-inline {
  display: none !important;
}

.visible-print-inline-block {
  display: none !important;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container {
    width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 992px;
  }
}
@media (min-width: 1280px) {
  .container {
    width: 1280px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.col, .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-fifth, .col-sm-fifth, .col-md-fifth, .col-lg-fifth {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-fifth {
  float: left;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-pull-1 {
  right: 8.3333333333%;
}

.col-xs-push-1 {
  left: 8.3333333333%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-pull-2 {
  right: 16.6666666667%;
}

.col-xs-push-2 {
  left: 16.6666666667%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-pull-4 {
  right: 33.3333333333%;
}

.col-xs-push-4 {
  left: 33.3333333333%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-pull-5 {
  right: 41.6666666667%;
}

.col-xs-push-5 {
  left: 41.6666666667%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-pull-7 {
  right: 58.3333333333%;
}

.col-xs-push-7 {
  left: 58.3333333333%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-pull-8 {
  right: 66.6666666667%;
}

.col-xs-push-8 {
  left: 66.6666666667%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-pull-10 {
  right: 83.3333333333%;
}

.col-xs-push-10 {
  left: 83.3333333333%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-pull-11 {
  right: 91.6666666667%;
}

.col-xs-push-11 {
  left: 91.6666666667%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-fifth {
  width: 20%;
}

.col-xs-tright {
  text-align: right;
}

.col-xs-tleft {
  text-align: left;
}

.col-xs-tcenter {
  text-align: center;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-0 {
  margin-left: 0;
}

@media (min-width: 768px) {
  .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-fifth {
    float: left;
  }
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-fifth {
    width: 20%;
  }
  .col-sm-tright {
    text-align: right;
  }
  .col-sm-tleft {
    text-align: left;
  }
  .col-sm-tcenter {
    text-align: center;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-fifth {
    float: left;
  }
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-fifth {
    width: 20%;
  }
  .col-md-tright {
    text-align: right;
  }
  .col-md-tleft {
    text-align: left;
  }
  .col-md-tcenter {
    text-align: center;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1281px) {
  .col, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-fifth {
    float: left;
  }
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-fifth {
    width: 20%;
  }
  .col-lg-tright {
    text-align: right;
  }
  .col-lg-tleft {
    text-align: left;
  }
  .col-lg-tcenter {
    text-align: center;
  }
}
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
