.noty_layout_mixin, #noty_layout__top, #noty_layout__topLeft, #noty_layout__topCenter, #noty_layout__topRight, #noty_layout__bottom, #noty_layout__bottomLeft, #noty_layout__bottomCenter, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight {
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: 9999999;
  -webkit-transform: translateZ(0) scale(1, 1);
          transform: translateZ(0) scale(1, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  filter: blur(0);
  -webkit-filter: blur(0);
  max-width: 90%; }

#noty_layout__top {
  top: 0;
  left: 5%;
  width: 90%; }

#noty_layout__topLeft {
  top: 20px;
  left: 20px;
  width: 325px; }

#noty_layout__topCenter {
  top: 5%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
          transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__topRight {
  top: 20px;
  right: 20px;
  width: 325px; }

#noty_layout__bottom {
  bottom: 0;
  left: 5%;
  width: 90%; }

#noty_layout__bottomLeft {
  bottom: 20px;
  left: 20px;
  width: 325px; }

#noty_layout__bottomCenter {
  bottom: 5%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
          transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__bottomRight {
  bottom: 20px;
  right: 20px;
  width: 325px; }

#noty_layout__center {
  top: 50%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px), -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
          transform: translate(calc(-50% - .5px), calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__centerLeft {
  top: 50%;
  left: 20px;
  width: 325px;
  -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
          transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__centerRight {
  top: 50%;
  right: 20px;
  width: 325px;
  -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
          transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }

.noty_progressbar {
  display: none; }

.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #646464;
  opacity: 0.2;
  filter: alpha(opacity=10); }

.noty_bar {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0) scale(1, 1);
      transform: translate(0, 0) scale(1, 1);
  -webkit-font-smoothing: subpixel-antialiased;
  overflow: hidden; }

.noty_effects_open {
  opacity: 0;
  -webkit-transform: translate(50%);
      -ms-transform: translate(50%);
          transform: translate(50%);
  -webkit-animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
          animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.noty_effects_close {
  -webkit-animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
          animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.noty_fix_effects_height {
  -webkit-animation: noty_anim_height 75ms ease-out;
          animation: noty_anim_height 75ms ease-out; }

.noty_close_with_click {
  cursor: pointer; }

.noty_close_button {
  position: absolute;
  top: 2px;
  right: 2px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out; }

.noty_close_button:hover {
  background-color: rgba(0, 0, 0, 0.1); }

.noty_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 10000;
  opacity: .3;
  left: 0;
  top: 0; }

.noty_modal.noty_modal_open {
  opacity: 0;
  -webkit-animation: noty_modal_in .3s ease-out;
          animation: noty_modal_in .3s ease-out; }

.noty_modal.noty_modal_close {
  -webkit-animation: noty_modal_out .3s ease-out;
          animation: noty_modal_out .3s ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

@-webkit-keyframes noty_modal_in {
  100% {
    opacity: .3; } }

@keyframes noty_modal_in {
  100% {
    opacity: .3; } }

@-webkit-keyframes noty_modal_out {
  100% {
    opacity: 0; } }

@keyframes noty_modal_out {
  100% {
    opacity: 0; } }

@keyframes noty_modal_out {
  100% {
    opacity: 0; } }

@-webkit-keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1; } }

@keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1; } }

@-webkit-keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
            transform: translate(50%);
    opacity: 0; } }

@keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
            transform: translate(50%);
    opacity: 0; } }

@-webkit-keyframes noty_anim_height {
  100% {
    height: 0; } }

@keyframes noty_anim_height {
  100% {
    height: 0; } }

.noty_theme__relax.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative; }
  .noty_theme__relax.noty_bar .noty_body {
    padding: 10px; }
  .noty_theme__relax.noty_bar .noty_buttons {
    border-top: 1px solid #e7e7e7;
    padding: 5px 10px; }

.noty_theme__relax.noty_type__alert,
.noty_theme__relax.noty_type__notification {
  background-color: #fff;
  border: 1px solid #dedede;
  color: #444; }

.noty_theme__relax.noty_type__warning {
  background-color: #FFEAA8;
  border: 1px solid #FFC237;
  color: #826200; }
  .noty_theme__relax.noty_type__warning .noty_buttons {
    border-color: #dfaa30; }

.noty_theme__relax.noty_type__error {
  background-color: #FF8181;
  border: 1px solid #e25353;
  color: #FFF; }
  .noty_theme__relax.noty_type__error .noty_buttons {
    border-color: darkred; }

.noty_theme__relax.noty_type__info,
.noty_theme__relax.noty_type__information {
  background-color: #78C5E7;
  border: 1px solid #3badd6;
  color: #FFF; }
  .noty_theme__relax.noty_type__info .noty_buttons,
  .noty_theme__relax.noty_type__information .noty_buttons {
    border-color: #0B90C4; }

.noty_theme__relax.noty_type__success {
  background-color: #BCF5BC;
  border: 1px solid #7cdd77;
  color: darkgreen; }
  .noty_theme__relax.noty_type__success .noty_buttons {
    border-color: #50C24E; }

.noty_theme__metroui.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.298039) 0 0 5px 0; }
  .noty_theme__metroui.noty_bar .noty_progressbar {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #000;
    opacity: 0.2;
    filter: alpha(opacity=20); }
  .noty_theme__metroui.noty_bar .noty_body {
    padding: 1.25em;
    font-size: 14px; }
  .noty_theme__metroui.noty_bar .noty_buttons {
    padding: 0 10px .5em 10px; }

.noty_theme__metroui.noty_type__alert,
.noty_theme__metroui.noty_type__notification {
  background-color: #fff;
  color: #1d1d1d; }

.noty_theme__metroui.noty_type__warning {
  background-color: #FA6800;
  color: #fff; }

.noty_theme__metroui.noty_type__error {
  background-color: #CE352C;
  color: #FFF; }

.noty_theme__metroui.noty_type__info,
.noty_theme__metroui.noty_type__information {
  background-color: #1BA1E2;
  color: #FFF; }

.noty_theme__metroui.noty_type__success {
  background-color: #60A917;
  color: #fff; }

.noty_theme__mint.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative; }
  .noty_theme__mint.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px; }
  .noty_theme__mint.noty_bar .noty_buttons {
    padding: 10px; }

.noty_theme__mint.noty_type__alert,
.noty_theme__mint.noty_type__notification {
  background-color: #fff;
  border-bottom: 1px solid #D1D1D1;
  color: #2F2F2F; }

.noty_theme__mint.noty_type__warning {
  background-color: #FFAE42;
  border-bottom: 1px solid #E89F3C;
  color: #fff; }

.noty_theme__mint.noty_type__error {
  background-color: #DE636F;
  border-bottom: 1px solid #CA5A65;
  color: #fff; }

.noty_theme__mint.noty_type__info,
.noty_theme__mint.noty_type__information {
  background-color: #7F7EFF;
  border-bottom: 1px solid #7473E8;
  color: #fff; }

.noty_theme__mint.noty_type__success {
  background-color: #AFC765;
  border-bottom: 1px solid #A0B55C;
  color: #fff; }

.noty_theme__sunset.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative; }
  .noty_theme__sunset.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
  .noty_theme__sunset.noty_bar .noty_buttons {
    padding: 10px; }

.noty_theme__sunset.noty_type__alert,
.noty_theme__sunset.noty_type__notification {
  background-color: #073B4C;
  color: #fff; }
  .noty_theme__sunset.noty_type__alert .noty_progressbar,
  .noty_theme__sunset.noty_type__notification .noty_progressbar {
    background-color: #fff; }

.noty_theme__sunset.noty_type__warning {
  background-color: #FFD166;
  color: #fff; }

.noty_theme__sunset.noty_type__error {
  background-color: #EF476F;
  color: #fff; }
  .noty_theme__sunset.noty_type__error .noty_progressbar {
    opacity: .4; }

.noty_theme__sunset.noty_type__info,
.noty_theme__sunset.noty_type__information {
  background-color: #118AB2;
  color: #fff; }
  .noty_theme__sunset.noty_type__info .noty_progressbar,
  .noty_theme__sunset.noty_type__information .noty_progressbar {
    opacity: .6; }

.noty_theme__sunset.noty_type__success {
  background-color: #06D6A0;
  color: #fff; }

.noty_theme__bootstrap-v3.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  border-radius: 4px; }
  .noty_theme__bootstrap-v3.noty_bar .noty_body {
    padding: 15px; }
  .noty_theme__bootstrap-v3.noty_bar .noty_buttons {
    padding: 10px; }
  .noty_theme__bootstrap-v3.noty_bar .noty_close_button {
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
    background: transparent; }
  .noty_theme__bootstrap-v3.noty_bar .noty_close_button:hover {
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5; }

.noty_theme__bootstrap-v3.noty_type__alert,
.noty_theme__bootstrap-v3.noty_type__notification {
  background-color: #fff;
  color: inherit; }

.noty_theme__bootstrap-v3.noty_type__warning {
  background-color: #fcf8e3;
  color: #8a6d3b;
  border-color: #faebcc; }

.noty_theme__bootstrap-v3.noty_type__error {
  background-color: #f2dede;
  color: #a94442;
  border-color: #ebccd1; }

.noty_theme__bootstrap-v3.noty_type__info,
.noty_theme__bootstrap-v3.noty_type__information {
  background-color: #d9edf7;
  color: #31708f;
  border-color: #bce8f1; }

.noty_theme__bootstrap-v3.noty_type__success {
  background-color: #dff0d8;
  color: #3c763d;
  border-color: #d6e9c6; }

.noty_theme__bootstrap-v4.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  border-radius: .25rem; }
  .noty_theme__bootstrap-v4.noty_bar .noty_body {
    padding: .75rem 1.25rem; }
  .noty_theme__bootstrap-v4.noty_bar .noty_buttons {
    padding: 10px; }
  .noty_theme__bootstrap-v4.noty_bar .noty_close_button {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .5;
    background: transparent; }
  .noty_theme__bootstrap-v4.noty_bar .noty_close_button:hover {
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .75; }

.noty_theme__bootstrap-v4.noty_type__alert,
.noty_theme__bootstrap-v4.noty_type__notification {
  background-color: #fff;
  color: inherit; }

.noty_theme__bootstrap-v4.noty_type__warning {
  background-color: #fcf8e3;
  color: #8a6d3b;
  border-color: #faebcc; }

.noty_theme__bootstrap-v4.noty_type__error {
  background-color: #f2dede;
  color: #a94442;
  border-color: #ebccd1; }

.noty_theme__bootstrap-v4.noty_type__info,
.noty_theme__bootstrap-v4.noty_type__information {
  background-color: #d9edf7;
  color: #31708f;
  border-color: #bce8f1; }

.noty_theme__bootstrap-v4.noty_type__success {
  background-color: #dff0d8;
  color: #3c763d;
  border-color: #d6e9c6; }

.noty_theme__semanticui.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  font-size: 1em;
  border-radius: .28571429rem;
  box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 0 0 0 transparent; }
  .noty_theme__semanticui.noty_bar .noty_body {
    padding: 1em 1.5em;
    line-height: 1.4285em; }
  .noty_theme__semanticui.noty_bar .noty_buttons {
    padding: 10px; }

.noty_theme__semanticui.noty_type__alert,
.noty_theme__semanticui.noty_type__notification {
  background-color: #f8f8f9;
  color: rgba(0, 0, 0, 0.87); }

.noty_theme__semanticui.noty_type__warning {
  background-color: #fffaf3;
  color: #573a08;
  box-shadow: 0 0 0 1px #c9ba9b inset, 0 0 0 0 transparent; }

.noty_theme__semanticui.noty_type__error {
  background-color: #fff6f6;
  color: #9f3a38;
  box-shadow: 0 0 0 1px #e0b4b4 inset, 0 0 0 0 transparent; }

.noty_theme__semanticui.noty_type__info,
.noty_theme__semanticui.noty_type__information {
  background-color: #f8ffff;
  color: #276f86;
  box-shadow: 0 0 0 1px #a9d5de inset, 0 0 0 0 transparent; }

.noty_theme__semanticui.noty_type__success {
  background-color: #fcfff5;
  color: #2c662d;
  box-shadow: 0 0 0 1px #a3c293 inset, 0 0 0 0 transparent; }

.noty_theme__nest.noty_bar {
  margin: 0 0 15px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.098039) 5px 4px 10px 0; }
  .noty_theme__nest.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
  .noty_theme__nest.noty_bar .noty_buttons {
    padding: 10px; }

.noty_layout .noty_theme__nest.noty_bar {
  z-index: 5; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(2) {
  position: absolute;
  top: 0;
  margin-top: 4px;
  margin-right: -4px;
  margin-left: 4px;
  z-index: 4;
  width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(3) {
  position: absolute;
  top: 0;
  margin-top: 8px;
  margin-right: -8px;
  margin-left: 8px;
  z-index: 3;
  width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(4) {
  position: absolute;
  top: 0;
  margin-top: 12px;
  margin-right: -12px;
  margin-left: 12px;
  z-index: 2;
  width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(5) {
  position: absolute;
  top: 0;
  margin-top: 16px;
  margin-right: -16px;
  margin-left: 16px;
  z-index: 1;
  width: 100%; }

.noty_layout .noty_theme__nest.noty_bar:nth-child(n+6) {
  position: absolute;
  top: 0;
  margin-top: 20px;
  margin-right: -20px;
  margin-left: 20px;
  z-index: -1;
  width: 100%; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(2),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(2) {
  margin-top: 4px;
  margin-left: -4px;
  margin-right: 4px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(3),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(3) {
  margin-top: 8px;
  margin-left: -8px;
  margin-right: 8px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(4),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(4) {
  margin-top: 12px;
  margin-left: -12px;
  margin-right: 12px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(5),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(5) {
  margin-top: 16px;
  margin-left: -16px;
  margin-right: 16px; }

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(n+6),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(n+6) {
  margin-top: 20px;
  margin-left: -20px;
  margin-right: 20px; }

.noty_theme__nest.noty_type__alert,
.noty_theme__nest.noty_type__notification {
  background-color: #073B4C;
  color: #fff; }
  .noty_theme__nest.noty_type__alert .noty_progressbar,
  .noty_theme__nest.noty_type__notification .noty_progressbar {
    background-color: #fff; }

.noty_theme__nest.noty_type__warning {
  background-color: #FFD166;
  color: #fff; }

.noty_theme__nest.noty_type__error {
  background-color: #EF476F;
  color: #fff; }
  .noty_theme__nest.noty_type__error .noty_progressbar {
    opacity: .4; }

.noty_theme__nest.noty_type__info,
.noty_theme__nest.noty_type__information {
  background-color: #118AB2;
  color: #fff; }
  .noty_theme__nest.noty_type__info .noty_progressbar,
  .noty_theme__nest.noty_type__information .noty_progressbar {
    opacity: .6; }

.noty_theme__nest.noty_type__success {
  background-color: #06D6A0;
  color: #fff; }

.noty_theme__light.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative; }
  .noty_theme__light.noty_bar .noty_body {
    padding: 10px; }
  .noty_theme__light.noty_bar .noty_buttons {
    border-top: 1px solid #e7e7e7;
    padding: 5px 10px; }

.noty_theme__light.noty_type__alert,
.noty_theme__light.noty_type__notification {
  background-color: #fff;
  border: 1px solid #dedede;
  color: #444; }

.noty_theme__light.noty_type__warning {
  background-color: #FFEAA8;
  border: 1px solid #FFC237;
  color: #826200; }
  .noty_theme__light.noty_type__warning .noty_buttons {
    border-color: #dfaa30; }

.noty_theme__light.noty_type__error {
  background-color: #ED7000;
  border: 1px solid #e25353;
  color: #FFF; }
  .noty_theme__light.noty_type__error .noty_buttons {
    border-color: darkred; }

.noty_theme__light.noty_type__info,
.noty_theme__light.noty_type__information {
  background-color: #78C5E7;
  border: 1px solid #3badd6;
  color: #FFF; }
  .noty_theme__light.noty_type__info .noty_buttons,
  .noty_theme__light.noty_type__information .noty_buttons {
    border-color: #0B90C4; }

.noty_theme__light.noty_type__success {
  background-color: #57C880;
  border: 1px solid #7cdd77;
  color: darkgreen; }
  .noty_theme__light.noty_type__success .noty_buttons {
    border-color: #50C24E; }

/*!
 * Bootstrap v4.5.3 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}.row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.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%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-ms-flex-order:-1;order:-1}.order-last{-ms-flex-order:13;order:13}.order-0{-ms-flex-order:0;order:0}.order-1{-ms-flex-order:1;order:1}.order-2{-ms-flex-order:2;order:2}.order-3{-ms-flex-order:3;order:3}.order-4{-ms-flex-order:4;order:4}.order-5{-ms-flex-order:5;order:5}.order-6{-ms-flex-order:6;order:6}.order-7{-ms-flex-order:7;order:7}.order-8{-ms-flex-order:8;order:8}.order-9{-ms-flex-order:9;order:9}.order-10{-ms-flex-order:10;order:10}.order-11{-ms-flex-order:11;order:11}.order-12{-ms-flex-order:12;order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-sm-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-ms-flex-order:-1;order:-1}.order-sm-last{-ms-flex-order:13;order:13}.order-sm-0{-ms-flex-order:0;order:0}.order-sm-1{-ms-flex-order:1;order:1}.order-sm-2{-ms-flex-order:2;order:2}.order-sm-3{-ms-flex-order:3;order:3}.order-sm-4{-ms-flex-order:4;order:4}.order-sm-5{-ms-flex-order:5;order:5}.order-sm-6{-ms-flex-order:6;order:6}.order-sm-7{-ms-flex-order:7;order:7}.order-sm-8{-ms-flex-order:8;order:8}.order-sm-9{-ms-flex-order:9;order:9}.order-sm-10{-ms-flex-order:10;order:10}.order-sm-11{-ms-flex-order:11;order:11}.order-sm-12{-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-md-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-ms-flex-order:-1;order:-1}.order-md-last{-ms-flex-order:13;order:13}.order-md-0{-ms-flex-order:0;order:0}.order-md-1{-ms-flex-order:1;order:1}.order-md-2{-ms-flex-order:2;order:2}.order-md-3{-ms-flex-order:3;order:3}.order-md-4{-ms-flex-order:4;order:4}.order-md-5{-ms-flex-order:5;order:5}.order-md-6{-ms-flex-order:6;order:6}.order-md-7{-ms-flex-order:7;order:7}.order-md-8{-ms-flex-order:8;order:8}.order-md-9{-ms-flex-order:9;order:9}.order-md-10{-ms-flex-order:10;order:10}.order-md-11{-ms-flex-order:11;order:11}.order-md-12{-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-lg-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-ms-flex-order:-1;order:-1}.order-lg-last{-ms-flex-order:13;order:13}.order-lg-0{-ms-flex-order:0;order:0}.order-lg-1{-ms-flex-order:1;order:1}.order-lg-2{-ms-flex-order:2;order:2}.order-lg-3{-ms-flex-order:3;order:3}.order-lg-4{-ms-flex-order:4;order:4}.order-lg-5{-ms-flex-order:5;order:5}.order-lg-6{-ms-flex-order:6;order:6}.order-lg-7{-ms-flex-order:7;order:7}.order-lg-8{-ms-flex-order:8;order:8}.order-lg-9{-ms-flex-order:9;order:9}.order-lg-10{-ms-flex-order:10;order:10}.order-lg-11{-ms-flex-order:11;order:11}.order-lg-12{-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.row-cols-xl-4>*{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-ms-flex-order:-1;order:-1}.order-xl-last{-ms-flex-order:13;order:13}.order-xl-0{-ms-flex-order:0;order:0}.order-xl-1{-ms-flex-order:1;order:1}.order-xl-2{-ms-flex-order:2;order:2}.order-xl-3{-ms-flex-order:3;order:3}.order-xl-4{-ms-flex-order:4;order:4}.order-xl-5{-ms-flex-order:5;order:5}.order-xl-6{-ms-flex-order:6;order:6}.order-xl-7{-ms-flex-order:7;order:7}.order-xl-8{-ms-flex-order:8;order:8}.order-xl-9{-ms-flex-order:9;order:9}.order-xl-10{-ms-flex-order:10;order:10}.order-xl-11{-ms-flex-order:11;order:11}.order-xl-12{-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-borderless tbody+tbody,.table-borderless td,.table-borderless th,.table-borderless thead th{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-primary tbody+tbody,.table-primary td,.table-primary th,.table-primary thead th{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-secondary tbody+tbody,.table-secondary td,.table-secondary th,.table-secondary thead th{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-success tbody+tbody,.table-success td,.table-success th,.table-success thead th{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-info tbody+tbody,.table-info td,.table-info th,.table-info thead th{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-warning tbody+tbody,.table-warning td,.table-warning th,.table-warning thead th{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-danger tbody+tbody,.table-danger td,.table-danger th,.table-danger thead th{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-light tbody+tbody,.table-light td,.table-light th,.table-light thead th{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark td,.table-dark th,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control:-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[multiple],select.form-control[size]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-valid,.was-validated .custom-select:valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-valid:focus,.was-validated .custom-select:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{border-color:#28a745}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.custom-select.is-invalid,.was-validated .custom-select:invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.custom-select.is-invalid:focus,.was-validated .custom-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{border-color:#dc3545}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-ms-flexbox;display:flex;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .custom-select,.form-inline .input-group{width:auto}.form-inline .form-check{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#0069d9;border-color:#0062cc;box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,143,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{color:#fff;background-color:#5a6268;border-color:#545b62;box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(130,138,145,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#138496;border-color:#117a8b;box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(58,176,195,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link.focus,.btn-link:focus{text-decoration:underline}.btn-link.disabled,.btn-link:disabled{color:#6c757d;pointer-events:none}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropdown,.dropleft,.dropright,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-toolbar{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-ms-flex-direction:column;flex-direction:column;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control,.input-group>.form-control-plaintext{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control,.input-group>.form-control-plaintext+.custom-file,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.form-control{margin-left:-1px}.input-group>.custom-file .custom-file-input:focus~.custom-file-label,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:-ms-flexbox;display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn:focus,.input-group-prepend .btn:focus{z-index:3}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group-lg>.custom-select,.input-group-lg>.form-control:not(textarea){height:calc(1.5em + 1rem + 2px)}.input-group-lg>.custom-select,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.custom-select,.input-group-sm>.form-control:not(textarea){height:calc(1.5em + .5rem + 2px)}.input-group-sm>.custom-select,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-transform .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:disabled~.custom-file-label,.custom-file-input[disabled]~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{-moz-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-ms-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media (prefers-reduced-motion:reduce){.custom-range::-ms-thumb{-ms-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item,.nav-fill>.nav-link{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-lg,.navbar .container-md,.navbar .container-sm,.navbar .container-xl{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-ms-flex-positive:1;flex-grow:1;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-md,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-ms-flex-flow:row nowrap;flex-flow:row nowrap;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-lg,.navbar-expand>.container-md,.navbar-expand>.container-sm,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-ms-flexbox!important;display:flex!important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item{display:-ms-flexbox;display:flex}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:focus,a.badge:hover{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:focus,a.badge-primary:hover{color:#fff;background-color:#0062cc}a.badge-primary.focus,a.badge-primary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:focus,a.badge-secondary:hover{color:#fff;background-color:#545b62}a.badge-secondary.focus,a.badge-secondary:focus{outline:0;box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:focus,a.badge-success:hover{color:#fff;background-color:#1e7e34}a.badge-success.focus,a.badge-success:focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:focus,a.badge-info:hover{color:#fff;background-color:#117a8b}a.badge-info.focus,a.badge-info:focus{outline:0;box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:focus,a.badge-warning:hover{color:#212529;background-color:#d39e00}a.badge-warning.focus,a.badge-warning:focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:focus,a.badge-danger:hover{color:#fff;background-color:#bd2130}a.badge-danger.focus,a.badge-danger:focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:focus,a.badge-light:hover{color:#212529;background-color:#dae0e5}a.badge-light.focus,a.badge-light:focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:focus,a.badge-dark:hover{color:#fff;background-color:#1d2124}a.badge-dark.focus,a.badge-dark:focus{outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start}.media-body{-ms-flex:1;flex:1}.list-group{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):focus,.close:not(:disabled):not(.disabled):hover{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-50px);transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-footer,.modal-dialog-scrollable .modal-header{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top]>.arrow,.bs-popover-top>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=top]>.arrow::before,.bs-popover-top>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top]>.arrow::after,.bs-popover-top>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right]>.arrow,.bs-popover-right>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right]>.arrow::before,.bs-popover-right>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right]>.arrow::after,.bs-popover-right>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom]>.arrow,.bs-popover-bottom>.arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[x-placement^=bottom]>.arrow::before,.bs-popover-bottom>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom]>.arrow::after,.bs-popover-bottom>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left]>.arrow,.bs-popover-left>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left]>.arrow::before,.bs-popover-left>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left]>.arrow::after,.bs-popover-left>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left){-webkit-transform:translateX(100%);transform:translateX(100%)}.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right){-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.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:-ms-flexbox!important;display:flex!important}.d-inline-flex{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:-ms-flexbox!important;display:flex!important}.d-sm-inline-flex{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:-ms-flexbox!important;display:flex!important}.d-md-inline-flex{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:-ms-flexbox!important;display:flex!important}.d-lg-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}@media (min-width:1200px){.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:-ms-flexbox!important;display:flex!important}.d-xl-inline-flex{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:-ms-flexbox!important;display:flex!important}.d-print-inline-flex{display:-ms-inline-flexbox!important;display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-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{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-grow-1{-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{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-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{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-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{-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-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{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-sm-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-sm-grow-1{-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{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-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{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-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{-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-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{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-md-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-md-grow-1{-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{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-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{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-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{-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-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{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-lg-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-lg-grow-1{-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{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-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{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-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:1200px){.flex-xl-row{-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-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{-ms-flex:1 1 auto!important;flex:1 1 auto!important}.flex-xl-grow-0{-ms-flex-positive:0!important;flex-grow:0!important}.flex-xl-grow-1{-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{-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-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{-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-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}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;-ms-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!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}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!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:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{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:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-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-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-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-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-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-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-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:1200px){.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-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-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}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0056b3!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#494f54!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#19692c!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#0f6674!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#ba8b00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#a71d2a!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;word-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark tbody+tbody,.table-dark td,.table-dark th,.table-dark thead th{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}
/*!
 * Font Awesome Icon Picker
 * https://itsjavi.com/fontawesome-iconpicker/
 *
 * Originally written by (c) 2016 Javi Aguilar
 * Licensed under the MIT License
 * https://github.com/itsjavi/fontawesome-iconpicker/blob/master/LICENSE
 *
 */.iconpicker-popover.popover{position:absolute;top:0;left:0;display:none;max-width:none;padding:1px;text-align:left;width:216px;background:#f7f7f7}.iconpicker-popover.popover.top,.iconpicker-popover.popover.topLeftCorner,.iconpicker-popover.popover.topLeft,.iconpicker-popover.popover.topRight,.iconpicker-popover.popover.topRightCorner{margin-top:-10px}.iconpicker-popover.popover.right,.iconpicker-popover.popover.rightTop,.iconpicker-popover.popover.rightBottom{margin-left:10px}.iconpicker-popover.popover.bottom,.iconpicker-popover.popover.bottomRightCorner,.iconpicker-popover.popover.bottomRight,.iconpicker-popover.popover.bottomLeft,.iconpicker-popover.popover.bottomLeftCorner{margin-top:10px}.iconpicker-popover.popover.left,.iconpicker-popover.popover.leftBottom,.iconpicker-popover.popover.leftTop{margin-left:-10px}.iconpicker-popover.popover.inline{margin:0 0 12px 0;position:relative;display:inline-block;opacity:1;top:auto;left:auto;bottom:auto;right:auto;max-width:100%;box-shadow:none;z-index:auto;vertical-align:top}.iconpicker-popover.popover.inline>.arrow{display:none}.dropdown-menu .iconpicker-popover.inline{margin:0;border:none}.dropdown-menu.iconpicker-container{padding:0}.iconpicker-popover.popover .popover-title{padding:12px;font-size:13px;line-height:15px;border-bottom:1px solid #ebebeb;background-color:#f7f7f7}.iconpicker-popover.popover .popover-title input[type=search].iconpicker-search{margin:0 0 2px 0}.iconpicker-popover.popover .popover-title-text~input[type=search].iconpicker-search{margin-top:12px}.iconpicker-popover.popover .popover-content{padding:0px;text-align:center}.iconpicker-popover .popover-footer{float:none;clear:both;padding:12px;text-align:right;margin:0;border-top:1px solid #ebebeb;background-color:#f7f7f7}.iconpicker-popover .popover-footer:before,.iconpicker-popover .popover-footer:after{content:" ";display:table}.iconpicker-popover .popover-footer:after{clear:both}.iconpicker-popover .popover-footer .iconpicker-btn{margin-left:10px}.iconpicker-popover .popover-footer input[type=search].iconpicker-search{margin-bottom:12px}.iconpicker-popover.popover>.arrow,.iconpicker-popover.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.iconpicker-popover.popover>.arrow{border-width:11px}.iconpicker-popover.popover>.arrow:after{border-width:10px;content:""}.iconpicker-popover.popover.top>.arrow,.iconpicker-popover.popover.topLeft>.arrow,.iconpicker-popover.popover.topRight>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.iconpicker-popover.popover.top>.arrow:after,.iconpicker-popover.popover.topLeft>.arrow:after,.iconpicker-popover.popover.topRight>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.iconpicker-popover.popover.topLeft>.arrow{left:8px;margin-left:0}.iconpicker-popover.popover.topRight>.arrow{left:auto;right:8px;margin-left:0}.iconpicker-popover.popover.right>.arrow,.iconpicker-popover.popover.rightTop>.arrow,.iconpicker-popover.popover.rightBottom>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.iconpicker-popover.popover.right>.arrow:after,.iconpicker-popover.popover.rightTop>.arrow:after,.iconpicker-popover.popover.rightBottom>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.iconpicker-popover.popover.rightTop>.arrow{top:auto;bottom:8px;margin-top:0}.iconpicker-popover.popover.rightBottom>.arrow{top:8px;margin-top:0}.iconpicker-popover.popover.bottom>.arrow,.iconpicker-popover.popover.bottomRight>.arrow,.iconpicker-popover.popover.bottomLeft>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.iconpicker-popover.popover.bottom>.arrow:after,.iconpicker-popover.popover.bottomRight>.arrow:after,.iconpicker-popover.popover.bottomLeft>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.iconpicker-popover.popover.bottomLeft>.arrow{left:8px;margin-left:0}.iconpicker-popover.popover.bottomRight>.arrow{left:auto;right:8px;margin-left:0}.iconpicker-popover.popover.left>.arrow,.iconpicker-popover.popover.leftBottom>.arrow,.iconpicker-popover.popover.leftTop>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.iconpicker-popover.popover.left>.arrow:after,.iconpicker-popover.popover.leftBottom>.arrow:after,.iconpicker-popover.popover.leftTop>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.iconpicker-popover.popover.leftBottom>.arrow{top:8px;margin-top:0}.iconpicker-popover.popover.leftTop>.arrow{top:auto;bottom:8px;margin-top:0}.iconpicker{position:relative;text-align:left;text-shadow:none;line-height:0;display:block;margin:0;overflow:hidden}.iconpicker *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;position:relative}.iconpicker:before,.iconpicker:after{content:" ";display:table}.iconpicker:after{clear:both}.iconpicker .iconpicker-items{position:relative;clear:both;float:none;padding:12px 0 0 12px;background:#fff;margin:0;overflow:hidden;overflow-y:auto;min-height:49px;max-height:246px}.iconpicker .iconpicker-items:before,.iconpicker .iconpicker-items:after{content:" ";display:table}.iconpicker .iconpicker-items:after{clear:both}.iconpicker .iconpicker-item{float:left;width:14px;height:14px;padding:12px;margin:0 12px 12px 0;text-align:center;cursor:pointer;border-radius:3px;font-size:14px;box-shadow:0 0 0 1px #ddd;color:inherit}.iconpicker .iconpicker-item:hover:not(.iconpicker-selected){background-color:#eee}.iconpicker .iconpicker-item.iconpicker-selected{box-shadow:none;color:#fff}.iconpicker-component{cursor:pointer}
/*! jQuery UI - v1.11.3 - 2015-02-12
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;min-height:0;font-size:100%}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-dialog{overflow:hidden;position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:none}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{position:relative;margin:0;padding:3px 1em 3px .4em;cursor:pointer;min-height:0;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-button{display:inline-block;overflow:hidden;position:relative;text-decoration:none;cursor:pointer}.ui-selectmenu-button span.ui-icon{right:0.5em;left:auto;margin-top:-8px;position:absolute;top:50%}.ui-selectmenu-button span.ui-selectmenu-text{text-align:left;padding:0.4em 2.1em 0.4em 1em;display:block;line-height:1.4;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#454545;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#2b2b2b;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_444444_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_777777_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_555555_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_ffffff_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_777620_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cc0000_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:0 0 0 0;padding:5px;background:#666;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px}
/*!
 * Bootstrap-select v1.13.14 (https://developer.snapappointments.com/bootstrap-select)
 *
 * Copyright 2012-2020 SnapAppointments, LLC
 * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
 */@-webkit-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@-o-keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}@keyframes bs-notify-fadeOut{0%{opacity:.9}100%{opacity:0}}.bootstrap-select>select.bs-select-hidden,select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select{width:220px\0;vertical-align:middle}.bootstrap-select>.dropdown-toggle{position:relative;width:100%;text-align:right;white-space:nowrap;display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.bootstrap-select>.dropdown-toggle:after{margin-top:-1px}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover{color:rgba(255,255,255,.5)}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none;z-index:0!important}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2!important}.bootstrap-select.is-invalid .dropdown-toggle,.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle,.was-validated .bootstrap-select select:invalid+.dropdown-toggle{border-color:#b94a48}.bootstrap-select.is-valid .dropdown-toggle,.was-validated .bootstrap-select select:valid+.dropdown-toggle{border-color:#28a745}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus,.bootstrap-select>select.mobile-device:focus+.dropdown-toggle{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none;height:auto}:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{float:none;z-index:auto}.form-inline .bootstrap-select,.form-inline .bootstrap-select.form-control:not([class*=col-]){width:auto}.bootstrap-select:not(.input-group-btn),.bootstrap-select[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.dropdown-menu-right,.bootstrap-select[class*=col-].dropdown-menu-right,.row .bootstrap-select[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select,.form-horizontal .bootstrap-select,.form-inline .bootstrap-select{margin-bottom:0}.form-group-lg .bootstrap-select.form-control,.form-group-sm .bootstrap-select.form-control{padding:0}.form-group-lg .bootstrap-select.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-lg .dropdown-toggle,.bootstrap-select.form-control-sm .dropdown-toggle{font-size:inherit;line-height:inherit;border-radius:inherit}.bootstrap-select.form-control-sm .dropdown-toggle{padding:.25rem .5rem}.bootstrap-select.form-control-lg .dropdown-toggle{padding:.5rem 1rem}.form-inline .bootstrap-select .form-control{width:100%}.bootstrap-select.disabled,.bootstrap-select>.disabled{cursor:not-allowed}.bootstrap-select.disabled:focus,.bootstrap-select>.disabled:focus{outline:0!important}.bootstrap-select.bs-container{position:absolute;top:0;left:0;height:0!important;padding:0!important}.bootstrap-select.bs-container .dropdown-menu{z-index:1060}.bootstrap-select .dropdown-toggle .filter-option{position:static;top:0;left:0;float:left;height:100%;width:100%;text-align:left;overflow:hidden;-webkit-box-flex:0;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto}.bs3.bootstrap-select .dropdown-toggle .filter-option{padding-right:inherit}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option{position:absolute;padding-top:inherit;padding-bottom:inherit;padding-left:inherit;float:none}.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner{padding-right:inherit}.bootstrap-select .dropdown-toggle .filter-option-inner-inner{overflow:hidden}.bootstrap-select .dropdown-toggle .filter-expand{width:0!important;float:left;opacity:0!important;overflow:hidden}.bootstrap-select .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.input-group .bootstrap-select.form-control .dropdown-toggle{border-radius:inherit}.bootstrap-select[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select .dropdown-menu{min-width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu>.inner:focus{outline:0!important}.bootstrap-select .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.bootstrap-select .dropdown-menu li{position:relative}.bootstrap-select .dropdown-menu li.active small{color:rgba(255,255,255,.5)!important}.bootstrap-select .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select .dropdown-menu li a{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.bootstrap-select .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select .dropdown-menu li a span.check-mark{display:none}.bootstrap-select .dropdown-menu li a span.text{display:inline-block}.bootstrap-select .dropdown-menu li small{padding-left:.5em}.bootstrap-select .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-select .dropdown-menu .notify.fadeOut{-webkit-animation:.3s linear 750ms forwards bs-notify-fadeOut;-o-animation:.3s linear 750ms forwards bs-notify-fadeOut;animation:.3s linear 750ms forwards bs-notify-fadeOut}.bootstrap-select .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.fit-width .dropdown-toggle .filter-option{position:static;display:inline;padding:0}.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner{display:inline}.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before{content:'\00a0'}.bootstrap-select.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark{position:absolute;display:inline-block;right:15px;top:5px}.bootstrap-select.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select .bs-ok-default:after{content:'';display:block;width:.5em;height:1em;border-style:solid;border-width:0 .26em .26em 0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before{bottom:auto;top:-4px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after{bottom:auto;top:-4px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}
table.dataTable{clear:both;margin-top:6px !important;margin-bottom:6px !important;max-width:none !important;border-collapse:separate !important}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}div.dataTables_wrapper div.dataTables_length label{font-weight:normal;text-align:left;white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{width:75px;display:inline-block}div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter label{font-weight:normal;white-space:nowrap;text-align:left}div.dataTables_wrapper div.dataTables_filter input{margin-left:0.5em;display:inline-block;width:auto}div.dataTables_wrapper div.dataTables_info{padding-top:8px;white-space:nowrap}div.dataTables_wrapper div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:1em 0}table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc,table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>td.sorting{padding-right:30px}table.dataTable thead>tr>th:active,table.dataTable thead>tr>td:active{outline:none}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;position:relative}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{position:absolute;bottom:8px;right:8px;display:block;font-family:'Glyphicons Halflings';opacity:0.5}table.dataTable thead .sorting:after{opacity:0.2;content:"\e150"}table.dataTable thead .sorting_asc:after{content:"\e155"}table.dataTable thead .sorting_desc:after{content:"\e156"}table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{color:#eee}div.dataTables_scrollHead table.dataTable{margin-bottom:0 !important}div.dataTables_scrollBody table{border-top:none;margin-top:0 !important;margin-bottom:0 !important}div.dataTables_scrollBody table thead .sorting:after,div.dataTables_scrollBody table thead .sorting_asc:after,div.dataTables_scrollBody table thead .sorting_desc:after{display:none}div.dataTables_scrollBody table tbody tr:first-child th,div.dataTables_scrollBody table tbody tr:first-child td{border-top:none}div.dataTables_scrollFoot table{margin-top:0 !important;border-top:none}@media screen and (max-width: 767px){div.dataTables_wrapper div.dataTables_length,div.dataTables_wrapper div.dataTables_filter,div.dataTables_wrapper div.dataTables_info,div.dataTables_wrapper div.dataTables_paginate{text-align:center}}table.dataTable.table-condensed>thead>tr>th{padding-right:20px}table.dataTable.table-condensed .sorting:after,table.dataTable.table-condensed .sorting_asc:after,table.dataTable.table-condensed .sorting_desc:after{top:6px;right:6px}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-left-width:0}table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable td:last-child{border-right-width:0}table.table-bordered.dataTable tbody th,table.table-bordered.dataTable tbody td{border-bottom-width:0}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}div.table-responsive>div.dataTables_wrapper>div.row{margin:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:first-child{padding-left:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:last-child{padding-right:0}

table.fixedHeader-floating{position:fixed !important;background-color:white}table.fixedHeader-floating.no-footer{border-bottom-width:0}table.fixedHeader-locked{position:absolute !important;background-color:white}@media print{table.fixedHeader-floating{display:none}}

div.DTS{display:block !important}div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS div.DTS_Loading{z-index:1}div.DTS div.dataTables_scrollBody{background:repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, #fff 10px, #fff 20px)}div.DTS div.dataTables_scrollBody table{z-index:2}div.DTS div.dataTables_paginate,div.DTS div.dataTables_length{display:none}

table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259c4;z-index:201}

@keyframes dtb-spinner{100%{transform:rotate(360deg)}}@-o-keyframes dtb-spinner{100%{-o-transform:rotate(360deg);transform:rotate(360deg)}}@-ms-keyframes dtb-spinner{100%{-ms-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes dtb-spinner{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes dtb-spinner{100%{-moz-transform:rotate(360deg);transform:rotate(360deg)}}div.dt-button-info{position:fixed;top:50%;left:50%;width:400px;margin-top:-100px;margin-left:-200px;background-color:white;border:2px solid #111;box-shadow:3px 3px 8px rgba(0,0,0,0.3);border-radius:3px;text-align:center;z-index:21}div.dt-button-info h2{padding:0.5em;margin:0;font-weight:normal;border-bottom:1px solid #ddd;background-color:#f3f3f3}div.dt-button-info>div{padding:1em}button.dt-button,div.dt-button,a.dt-button{position:relative;display:inline-block;box-sizing:border-box;margin-right:0.333em;padding:0.5em 1em;border:1px solid #999;border-radius:2px;cursor:pointer;font-size:0.88em;color:black;white-space:nowrap;overflow:hidden;background-color:#e9e9e9;background-image:-webkit-linear-gradient(top, #fff 0%, #e9e9e9 100%);background-image:-moz-linear-gradient(top, #fff 0%, #e9e9e9 100%);background-image:-ms-linear-gradient(top, #fff 0%, #e9e9e9 100%);background-image:-o-linear-gradient(top, #fff 0%, #e9e9e9 100%);background-image:linear-gradient(to bottom, #fff 0%, #e9e9e9 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='white', EndColorStr='#e9e9e9');-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-decoration:none;outline:none}button.dt-button.disabled,div.dt-button.disabled,a.dt-button.disabled{color:#999;border:1px solid #d0d0d0;cursor:default;background-color:#f9f9f9;background-image:-webkit-linear-gradient(top, #fff 0%, #f9f9f9 100%);background-image:-moz-linear-gradient(top, #fff 0%, #f9f9f9 100%);background-image:-ms-linear-gradient(top, #fff 0%, #f9f9f9 100%);background-image:-o-linear-gradient(top, #fff 0%, #f9f9f9 100%);background-image:linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='white', EndColorStr='#f9f9f9')}button.dt-button:active:not(.disabled),button.dt-button.active:not(.disabled),div.dt-button:active:not(.disabled),div.dt-button.active:not(.disabled),a.dt-button:active:not(.disabled),a.dt-button.active:not(.disabled){background-color:#e2e2e2;background-image:-webkit-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);background-image:-moz-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);background-image:-ms-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);background-image:-o-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);background-image:linear-gradient(to bottom, #f3f3f3 0%, #e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f3f3f3', EndColorStr='#e2e2e2');box-shadow:inset 1px 1px 3px #999999}button.dt-button:active:not(.disabled):hover:not(.disabled),button.dt-button.active:not(.disabled):hover:not(.disabled),div.dt-button:active:not(.disabled):hover:not(.disabled),div.dt-button.active:not(.disabled):hover:not(.disabled),a.dt-button:active:not(.disabled):hover:not(.disabled),a.dt-button.active:not(.disabled):hover:not(.disabled){box-shadow:inset 1px 1px 3px #999999;background-color:#cccccc;background-image:-webkit-linear-gradient(top, #eaeaea 0%, #ccc 100%);background-image:-moz-linear-gradient(top, #eaeaea 0%, #ccc 100%);background-image:-ms-linear-gradient(top, #eaeaea 0%, #ccc 100%);background-image:-o-linear-gradient(top, #eaeaea 0%, #ccc 100%);background-image:linear-gradient(to bottom, #eaeaea 0%, #ccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#eaeaea', EndColorStr='#cccccc')}button.dt-button:hover,div.dt-button:hover,a.dt-button:hover{text-decoration:none}button.dt-button:hover:not(.disabled),div.dt-button:hover:not(.disabled),a.dt-button:hover:not(.disabled){border:1px solid #666;background-color:#e0e0e0;background-image:-webkit-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);background-image:-moz-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);background-image:-ms-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);background-image:-o-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);background-image:linear-gradient(to bottom, #f9f9f9 0%, #e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f9f9f9', EndColorStr='#e0e0e0')}button.dt-button:focus:not(.disabled),div.dt-button:focus:not(.disabled),a.dt-button:focus:not(.disabled){border:1px solid #426c9e;text-shadow:0 1px 0 #c4def1;outline:none;background-color:#79ace9;background-image:-webkit-linear-gradient(top, #bddef4 0%, #79ace9 100%);background-image:-moz-linear-gradient(top, #bddef4 0%, #79ace9 100%);background-image:-ms-linear-gradient(top, #bddef4 0%, #79ace9 100%);background-image:-o-linear-gradient(top, #bddef4 0%, #79ace9 100%);background-image:linear-gradient(to bottom, #bddef4 0%, #79ace9 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#bddef4', EndColorStr='#79ace9')}.dt-button embed{outline:none}div.dt-buttons{position:relative;float:left}div.dt-buttons.buttons-right{float:right}div.dt-button-collection{position:absolute;top:0;left:0;width:150px;margin-top:3px;padding:8px 8px 4px 8px;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.4);background-color:white;overflow:hidden;z-index:2002;border-radius:5px;box-shadow:3px 3px 5px rgba(0,0,0,0.3);z-index:2002;-webkit-column-gap:8px;-moz-column-gap:8px;-ms-column-gap:8px;-o-column-gap:8px;column-gap:8px}div.dt-button-collection button.dt-button,div.dt-button-collection div.dt-button,div.dt-button-collection a.dt-button{position:relative;left:0;right:0;display:block;float:none;margin-bottom:4px;margin-right:0}div.dt-button-collection button.dt-button:active:not(.disabled),div.dt-button-collection button.dt-button.active:not(.disabled),div.dt-button-collection div.dt-button:active:not(.disabled),div.dt-button-collection div.dt-button.active:not(.disabled),div.dt-button-collection a.dt-button:active:not(.disabled),div.dt-button-collection a.dt-button.active:not(.disabled){background-color:#dadada;background-image:-webkit-linear-gradient(top, #f0f0f0 0%, #dadada 100%);background-image:-moz-linear-gradient(top, #f0f0f0 0%, #dadada 100%);background-image:-ms-linear-gradient(top, #f0f0f0 0%, #dadada 100%);background-image:-o-linear-gradient(top, #f0f0f0 0%, #dadada 100%);background-image:linear-gradient(to bottom, #f0f0f0 0%, #dadada 100%);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f0f0f0', EndColorStr='#dadada');box-shadow:inset 1px 1px 3px #666}div.dt-button-collection.fixed{position:fixed;top:50%;left:50%;margin-left:-75px;border-radius:0}div.dt-button-collection.fixed.two-column{margin-left:-150px}div.dt-button-collection.fixed.three-column{margin-left:-225px}div.dt-button-collection.fixed.four-column{margin-left:-300px}div.dt-button-collection>*{-webkit-column-break-inside:avoid;break-inside:avoid}div.dt-button-collection.two-column{width:300px;padding-bottom:1px;-webkit-column-count:2;-moz-column-count:2;-ms-column-count:2;-o-column-count:2;column-count:2}div.dt-button-collection.three-column{width:450px;padding-bottom:1px;-webkit-column-count:3;-moz-column-count:3;-ms-column-count:3;-o-column-count:3;column-count:3}div.dt-button-collection.four-column{width:600px;padding-bottom:1px;-webkit-column-count:4;-moz-column-count:4;-ms-column-count:4;-o-column-count:4;column-count:4}div.dt-button-background{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.7);background:-ms-radial-gradient(center, ellipse farthest-corner, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);background:-moz-radial-gradient(center, ellipse farthest-corner, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);background:-o-radial-gradient(center, ellipse farthest-corner, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);background:-webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0,0,0,0.3)), color-stop(1, rgba(0,0,0,0.7)));background:-webkit-radial-gradient(center, ellipse farthest-corner, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);background:radial-gradient(ellipse farthest-corner at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);z-index:2001}@media screen and (max-width: 640px){div.dt-buttons{float:none !important;text-align:center}}button.dt-button.processing,div.dt-button.processing,a.dt-button.processing{color:rgba(0,0,0,0.2)}button.dt-button.processing:after,div.dt-button.processing:after,a.dt-button.processing:after{position:absolute;top:50%;left:50%;width:16px;height:16px;margin:-8px 0 0 -8px;box-sizing:border-box;display:block;content:' ';border:2px solid #282828;border-radius:50%;border-left-color:transparent;border-right-color:transparent;animation:dtb-spinner 1500ms infinite linear;-o-animation:dtb-spinner 1500ms infinite linear;-ms-animation:dtb-spinner 1500ms infinite linear;-webkit-animation:dtb-spinner 1500ms infinite linear;-moz-animation:dtb-spinner 1500ms infinite linear}

table.dataTable tr.dtrg-group td{background-color:#e0e0e0}table.dataTable tr.dtrg-group.dtrg-level-0 td{font-weight:bold}table.dataTable tr.dtrg-group.dtrg-level-1 td,table.dataTable tr.dtrg-group.dtrg-level-2 td{background-color:#f0f0f0;padding-top:0.25em;padding-bottom:0.25em;padding-left:2em;font-size:0.9em}table.dataTable tr.dtrg-group.dtrg-level-2 td{background-color:#f3f3f3}

/*!
 * Datepicker for Bootstrap v1.9.0 (https://github.com/uxsolutions/bootstrap-datepicker)
 *
 * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 */

 .datepicker{padding:4px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;direction:ltr}.datepicker-inline{width:220px}.datepicker-rtl{direction:rtl}.datepicker-rtl.dropdown-menu{left:auto}.datepicker-rtl table tr td span{float:right}.datepicker-dropdown{top:0;left:0}.datepicker-dropdown:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #999;border-top:0;border-bottom-color:rgba(0,0,0,.2);position:absolute}.datepicker-dropdown:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;border-top:0;position:absolute}.datepicker-dropdown.datepicker-orient-left:before{left:6px}.datepicker-dropdown.datepicker-orient-left:after{left:7px}.datepicker-dropdown.datepicker-orient-right:before{right:6px}.datepicker-dropdown.datepicker-orient-right:after{right:7px}.datepicker-dropdown.datepicker-orient-bottom:before{top:-7px}.datepicker-dropdown.datepicker-orient-bottom:after{top:-6px}.datepicker-dropdown.datepicker-orient-top:before{bottom:-7px;border-bottom:0;border-top:7px solid #999}.datepicker-dropdown.datepicker-orient-top:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff}.datepicker table{margin:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.datepicker td,.datepicker th{text-align:center;width: 20px;height: 20px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;border:none;line-height: 24px;padding: 0;margin: 0;}.table-striped .datepicker table tr td,.table-striped .datepicker table tr th{background-color:transparent}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#eee;cursor:pointer}.datepicker table tr td.new,.datepicker table tr td.old{color:#999}.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover{background:0 0;color:#999;cursor:default}.datepicker table tr td.highlighted{background:#d9edf7;border-radius:0}.datepicker table tr td.today,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today:hover{background: #c0daf8;background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#000;}.datepicker table tr td.today.active,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled.disabled,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover.disabled,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today.disabled:hover:hover,.datepicker table tr td.today.disabled:hover[disabled],.datepicker table tr td.today.disabled[disabled],.datepicker table tr td.today:active,.datepicker table tr td.today:hover,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover.disabled,.datepicker table tr td.today:hover:active,.datepicker table tr td.today:hover:hover,.datepicker table tr td.today:hover[disabled],.datepicker table tr td.today[disabled]{background-color: #c0daf8;}.datepicker table tr td.today.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today:active,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover:active{background-color:#fbf069\9}.datepicker table tr td.today:hover:hover{color:#000}.datepicker table tr td.today.active:hover{color:#fff}.datepicker table tr td.range,.datepicker table tr td.range.disabled,.datepicker table tr td.range.disabled:hover,.datepicker table tr td.range:hover{background:#eee;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.datepicker table tr td.range.today,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today:hover{background-color:#f3d17a;background-image:-moz-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-ms-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f3c17a),to(#f3e97a));background-image:-webkit-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:-o-linear-gradient(to bottom,#f3c17a,#f3e97a);background-image:linear-gradient(to bottom,#f3c17a,#f3e97a);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);border-color:#f3e97a #f3e97a #edde34;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled.disabled,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover.disabled,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today.disabled:hover:hover,.datepicker table tr td.range.today.disabled:hover[disabled],.datepicker table tr td.range.today.disabled[disabled],.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover.disabled,.datepicker table tr td.range.today:hover:active,.datepicker table tr td.range.today:hover:hover,.datepicker table tr td.range.today:hover[disabled],.datepicker table tr td.range.today[disabled]{background-color:#f3e97a}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover:active{background-color:#efe24b\9}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{background-color:#9e9e9e;background-image:-moz-linear-gradient(to bottom,#b3b3b3,grey);background-image:-ms-linear-gradient(to bottom,#b3b3b3,grey);background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3b3b3),to(grey));background-image:-webkit-linear-gradient(to bottom,#b3b3b3,grey);background-image:-o-linear-gradient(to bottom,#b3b3b3,grey);background-image:linear-gradient(to bottom,#b3b3b3,grey);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);border-color:grey grey #595959;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled.disabled,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover.disabled,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected.disabled:hover:hover,.datepicker table tr td.selected.disabled:hover[disabled],.datepicker table tr td.selected.disabled[disabled],.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover.disabled,.datepicker table tr td.selected:hover:active,.datepicker table tr td.selected:hover:hover,.datepicker table tr td.selected:hover[disabled],.datepicker table tr td.selected[disabled]{background-color:grey}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover:active{background-color:#666\9}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{color:#fff;text-shadow: 0 -1px 0 rgba(0,0,0,.25);}.datepicker table tr td.active.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled.disabled,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover.disabled,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.disabled:hover:hover,.datepicker table tr td.active.disabled:hover[disabled],.datepicker table tr td.active.disabled[disabled],.datepicker table tr td.active:active,.datepicker table tr td.active:hover,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover.disabled,.datepicker table tr td.active:hover:active,.datepicker table tr td.active:hover:hover,.datepicker table tr td.active:hover[disabled],.datepicker table tr td.active[disabled]{background-color: #263950;}.datepicker table tr td.active.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active:active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover:active{background-color:#039\9}.datepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.datepicker table tr td span.focused,.datepicker table tr td span:hover{background:#eee}.datepicker table tr td span.disabled,.datepicker table tr td span.disabled:hover{background:0 0;color:#999;cursor:default}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background-color:#006dcc;background-image:-moz-linear-gradient(to bottom,#08c,#04c);background-image:-ms-linear-gradient(to bottom,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(to bottom,#08c,#04c);background-image:-o-linear-gradient(to bottom,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#08c', endColorstr='#0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled.disabled,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover.disabled,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active.disabled:hover[disabled],.datepicker table tr td span.active.disabled[disabled],.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover.disabled,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active:hover:hover,.datepicker table tr td span.active:hover[disabled],.datepicker table tr td span.active[disabled]{background-color:#04c}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover:active{background-color:#039\9}.datepicker table tr td span.new,.datepicker table tr td span.old{color:#999}.datepicker .datepicker-switch{width:145px}.datepicker .datepicker-switch,.datepicker .next,.datepicker .prev,.datepicker tfoot tr th{cursor:pointer}.datepicker .datepicker-switch:hover,.datepicker .next:hover,.datepicker .prev:hover,.datepicker tfoot tr th:hover{background:#eee}.datepicker .next.disabled,.datepicker .prev.disabled{visibility:hidden}.datepicker .cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle}.input-append.date .add-on,.input-prepend.date .add-on{cursor:pointer}.input-append.date .add-on i,.input-prepend.date .add-on i{margin-top:3px}.input-daterange input{text-align:center}.input-daterange input:first-child{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-daterange input:last-child{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.input-daterange .add-on{display:inline-block;width:auto;min-width:16px;height:18px;padding:4px 5px;font-weight:400;line-height:18px;text-align:center;text-shadow:0 1px 0 #fff;vertical-align:middle;background-color:#eee;border:1px solid #ccc;margin-left:-5px;margin-right:-5px}
.daterangepicker {
    position: absolute;
    color: inherit;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 278px;
    max-width: none;
    padding: 0;
    margin-top: 7px;
    top: 100px;
    left: 20px;
    z-index: 3001;
    display: none;
    font-family: arial;
    font-size: 15px;
    line-height: 1em;
  }

  .daterangepicker:before, .daterangepicker:after {
    position: absolute;
    display: inline-block;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
  }

  .daterangepicker:before {
    top: -7px;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #ccc;
  }

  .daterangepicker:after {
    top: -6px;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
  }

  .daterangepicker.opensleft:before {
    right: 9px;
  }

  .daterangepicker.opensleft:after {
    right: 10px;
  }

  .daterangepicker.openscenter:before {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .daterangepicker.openscenter:after {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .daterangepicker.opensright:before {
    left: 9px;
  }

  .daterangepicker.opensright:after {
    left: 10px;
  }

  .daterangepicker.drop-up {
    margin-top: -7px;
  }

  .daterangepicker.drop-up:before {
    top: initial;
    bottom: -7px;
    border-bottom: initial;
    border-top: 7px solid #ccc;
  }

  .daterangepicker.drop-up:after {
    top: initial;
    bottom: -6px;
    border-bottom: initial;
    border-top: 6px solid #fff;
  }

  .daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
    float: none;
  }

  .daterangepicker.single .drp-selected {
    display: none;
  }

  .daterangepicker.show-calendar .drp-calendar {
    display: block;
  }

  .daterangepicker.show-calendar .drp-buttons {
    display: block;
  }

  .daterangepicker.auto-apply .drp-buttons {
    display: none;
  }

  .daterangepicker .drp-calendar {
    display: none;
    max-width: 270px;
  }

  .daterangepicker .drp-calendar.left {
    padding: 8px 0 8px 8px;
  }

  .daterangepicker .drp-calendar.right {
    padding: 8px;
  }

  .daterangepicker .drp-calendar.single .calendar-table {
    border: none;
  }

  .daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
    color: #fff;
    border: solid black;
    border-width: 0 2px 2px 0;
    border-radius: 0;
    display: inline-block;
    padding: 3px;
  }

  .daterangepicker .calendar-table .next span {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }

  .daterangepicker .calendar-table .prev span {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  }

  .daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    min-width: 32px;
    width: 32px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
  }

  .daterangepicker .calendar-table {
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: #fff;
  }

  .daterangepicker .calendar-table table {
    width: 100%;
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse;
  }

  .daterangepicker td.available:hover, .daterangepicker th.available:hover {
    background-color: #eee;
    border-color: transparent;
    color: inherit;
  }

  .daterangepicker td.week, .daterangepicker th.week {
    font-size: 80%;
    color: #ccc;
  }

  .daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
    background-color: #fff;
    border-color: transparent;
    color: #999;
  }

  .daterangepicker td.in-range {
    background-color: #ebf4f8;
    border-color: transparent;
    color: #000;
    border-radius: 0;
  }

  .daterangepicker td.start-date {
    border-radius: 4px 0 0 4px;
  }

  .daterangepicker td.end-date {
    border-radius: 0 4px 4px 0;
  }

  .daterangepicker td.start-date.end-date {
    border-radius: 4px;
  }

  .daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #357ebd;
    border-color: transparent;
    color: #fff;
  }

  .daterangepicker th.month {
    width: auto;
  }

  .daterangepicker td.disabled, .daterangepicker option.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through;
  }

  .daterangepicker select.monthselect, .daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px;
    height: auto;
    margin: 0;
    cursor: default;
  }

  .daterangepicker select.monthselect {
    margin-right: 2%;
    width: 56%;
  }

  .daterangepicker select.yearselect {
    width: 40%;
  }

  .daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
    width: 50px;
    margin: 0 auto;
    background: #eee;
    border: 1px solid #eee;
    padding: 2px;
    outline: 0;
    font-size: 12px;
  }

  .daterangepicker .calendar-time {
    text-align: center;
    margin: 4px auto 0 auto;
    line-height: 30px;
    position: relative;
  }

  .daterangepicker .calendar-time select.disabled {
    color: #ccc;
    cursor: not-allowed;
  }

  .daterangepicker .drp-buttons {
    clear: both;
    text-align: right;
    padding: 8px;
    border-top: 1px solid #ddd;
    display: none;
    line-height: 12px;
    vertical-align: middle;
  }

  .daterangepicker .drp-selected {
    display: inline-block;
    font-size: 12px;
    padding-right: 8px;
  }

  .daterangepicker .drp-buttons .btn {
    margin-left: 8px;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
  }

  .daterangepicker.show-ranges.single.rtl .drp-calendar.left {
    border-right: 1px solid #ddd;
  }

  .daterangepicker.show-ranges.single.ltr .drp-calendar.left {
    border-left: 1px solid #ddd;
  }

  .daterangepicker.show-ranges.rtl .drp-calendar.right {
    border-right: 1px solid #ddd;
  }

  .daterangepicker.show-ranges.ltr .drp-calendar.left {
    border-left: 1px solid #ddd;
  }

  .daterangepicker .ranges {
    float: none;
    text-align: left;
    margin: 0;
  }

  .daterangepicker.show-calendar .ranges {
    margin-top: 8px;
  }

  .daterangepicker .ranges ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  .daterangepicker .ranges li {
    font-size: 12px;
    padding: 8px 12px;
    cursor: pointer;
  }

  .daterangepicker .ranges li:hover {
    background-color: #eee;
  }

  .daterangepicker .ranges li.active {
    background-color: #08c;
    color: #fff;
  }

  /*  Larger Screen Styling */
  @media (min-width: 564px) {
    .daterangepicker {
      width: auto;
    }

    .daterangepicker .ranges ul {
      width: 140px;
    }

    .daterangepicker.single .ranges ul {
      width: 100%;
    }

    .daterangepicker.single .drp-calendar.left {
      clear: none;
    }

    .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
      float: left;
    }

    .daterangepicker {
      direction: ltr;
      text-align: left;
    }

    .daterangepicker .drp-calendar.left {
      clear: left;
      margin-right: 0;
    }

    .daterangepicker .drp-calendar.left .calendar-table {
      border-right: none;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }

    .daterangepicker .drp-calendar.right {
      margin-left: 0;
    }

    .daterangepicker .drp-calendar.right .calendar-table {
      border-left: none;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }

    .daterangepicker .drp-calendar.left .calendar-table {
      padding-right: 8px;
    }

    .daterangepicker .ranges, .daterangepicker .drp-calendar {
      float: left;
    }
  }

  @media (min-width: 730px) {
    .daterangepicker .ranges {
      width: auto;
    }

    .daterangepicker .ranges {
      float: left;
    }

    .daterangepicker.rtl .ranges {
      float: right;
    }

    .daterangepicker .drp-calendar.left {
      clear: none !important;
    }
  }

/*! Forked From Cooltipz.css Optimized to work with BS4 */
:root {
    --tooltipcss-bg-color: #1f1f1f;
    --tooltipcss-border-width: 0;
    --tooltipcss-border-style: solid;
    --tooltipcss-border-color: #1f1f1f;
    --tooltipcss-text-color: #fff;
    --tooltipcss-font-size: 0.75rem;
    --tooltipcss-font-family: verdana, geneva, tahoma, var(--tooltipcss-fontawesome, Arial), sans-serif;
    --tooltipcss-slide: 6px;
    --tooltipcss-border-radius: 0.125rem;
    --tooltipcss-timing: 120ms;
    --tooltipcss-cursor: pointer;
    --tooltipcss-small: 6.25rem;
    --tooltipcss-medium: 12.5rem;
    --tooltipcss-large: 18.75rem;
    --tooltipcss-arrow-size: 0.3125rem;
    --tooltipcss-arrow-offset: 0px;
    --tooltipcss-delay-show: 0s;
    --tooltipcss-delay-hide: 0s
}

[aria-label][class*=tooltipcss].tooltipcss--bottom-left:before,
[aria-label][class*=tooltipcss].tooltipcss--bottom-right:before,
[aria-label][class*=tooltipcss].tooltipcss--bottom:before,
[aria-label][class*=tooltipcss].tooltipcss--left:before,
[aria-label][class*=tooltipcss].tooltipcss--right:before,
[aria-label][class*=tooltipcss].tooltipcss--top-left:before,
[aria-label][class*=tooltipcss].tooltipcss--top-right:before,
[aria-label][class*=tooltipcss].tooltipcss--top:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom:before,
[aria-label][data-tooltipcss-dir].tooltipcss--left:before,
[aria-label][data-tooltipcss-dir].tooltipcss--right:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top]:before {
    border: var(--tooltipcss-arrow-size, .3125rem) solid transparent;
    height: 0;
    width: 0
}

@media(forced-colors:active) {

    [aria-label][class*=tooltipcss].tooltipcss--bottom-left:before,
    [aria-label][class*=tooltipcss].tooltipcss--bottom-right:before,
    [aria-label][class*=tooltipcss].tooltipcss--bottom:before,
    [aria-label][class*=tooltipcss].tooltipcss--left:before,
    [aria-label][class*=tooltipcss].tooltipcss--right:before,
    [aria-label][class*=tooltipcss].tooltipcss--top-left:before,
    [aria-label][class*=tooltipcss].tooltipcss--top-right:before,
    [aria-label][class*=tooltipcss].tooltipcss--top:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left]:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right]:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom]:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=left]:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=right]:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left]:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right]:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=top]:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--bottom-left:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--bottom-right:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--bottom:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--left:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--right:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--top-left:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--top-right:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--top:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left]:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right]:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom]:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left]:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right]:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left]:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right]:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top]:before {
        border-color: Canvas;
        -webkit-filter: none !important;
        filter: none !important
    }
}

[aria-label][class*=tooltipcss].tooltipcss--top-left:before,
[aria-label][class*=tooltipcss].tooltipcss--top-right:before,
[aria-label][class*=tooltipcss].tooltipcss--top:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top]:before {
    border-top-color: var(--tooltipcss-border-color, #1f1f1f);
    -webkit-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .3));
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .3))
}

@media(forced-colors:active) {

    [aria-label][class*=tooltipcss].tooltipcss--top-left:before,
    [aria-label][class*=tooltipcss].tooltipcss--top-right:before,
    [aria-label][class*=tooltipcss].tooltipcss--top:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left]:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right]:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=top]:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--top-left:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--top-right:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--top:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left]:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right]:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top]:before {
        border-top-color: CanvasText
    }
}

[aria-label][class*=tooltipcss].tooltipcss--bottom-left:before,
[aria-label][class*=tooltipcss].tooltipcss--bottom-right:before,
[aria-label][class*=tooltipcss].tooltipcss--bottom:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom]:before {
    border-bottom-color: var(--tooltipcss-border-color, #1f1f1f);
    -webkit-filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, .3));
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, .3))
}

@media(forced-colors:active) {

    [aria-label][class*=tooltipcss].tooltipcss--bottom-left:before,
    [aria-label][class*=tooltipcss].tooltipcss--bottom-right:before,
    [aria-label][class*=tooltipcss].tooltipcss--bottom:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left]:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right]:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom]:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--bottom-left:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--bottom-right:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--bottom:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left]:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right]:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom]:before {
        border-bottom-color: CanvasText
    }
}

[aria-label][class*=tooltipcss].tooltipcss--right:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--right:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right]:before {
    border-right-color: var(--tooltipcss-border-color, #1f1f1f);
    -webkit-filter: drop-shadow(-1px 0 1px rgba(0, 0, 0, .3));
    filter: drop-shadow(-1px 0 1px rgba(0, 0, 0, .3))
}

@media(forced-colors:active) {

    [aria-label][class*=tooltipcss].tooltipcss--right:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=right]:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--right:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right]:before {
        border-right-color: CanvasText
    }
}

[aria-label][class*=tooltipcss].tooltipcss--left:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--left:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left]:before {
    border-left-color: var(--tooltipcss-border-color, #1f1f1f);
    -webkit-filter: drop-shadow(1px 0 1px rgba(0, 0, 0, .3));
    filter: drop-shadow(1px 0 1px rgba(0, 0, 0, .3))
}

@media(forced-colors:active) {

    [aria-label][class*=tooltipcss].tooltipcss--left:before,
    [aria-label][class*=tooltipcss][data-tooltipcss-dir=left]:before,
    [aria-label][data-tooltipcss-dir].tooltipcss--left:before,
    [aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left]:before {
        border-left-color: CanvasText
    }
}

[aria-label][class*=tooltipcss].tooltipcss--fit:after,
[aria-label][class*=tooltipcss].tooltipcss--large:after,
[aria-label][class*=tooltipcss].tooltipcss--medium:after,
[aria-label][class*=tooltipcss].tooltipcss--small:after,
[aria-label][class*=tooltipcss][data-tooltipcss-size=fit]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-size=large]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-size=medium]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-size=small]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--fit:after,
[aria-label][data-tooltipcss-dir].tooltipcss--large:after,
[aria-label][data-tooltipcss-dir].tooltipcss--medium:after,
[aria-label][data-tooltipcss-dir].tooltipcss--small:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-size=fit]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-size=large]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-size=medium]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-size=small]:after {
    white-space: normal;
    word-wrap: break-word
}

[aria-label][class*=tooltipcss],
[aria-label][data-tooltipcss-dir] {
    cursor: var(--tooltipcss-cursor, pointer);
    position: relative
}

[aria-label][class*=tooltipcss]:after,
[aria-label][data-tooltipcss-dir]:after {
    background-color: var(--tooltipcss-bg-color, #1f1f1f);
    border: var(--tooltipcss-border-width, 0) var(--tooltipcss-border-style, solid) var(--tooltipcss-border-color, #1f1f1f);
    border-radius: var(--tooltipcss-border-radius, .125rem);
    -webkit-box-shadow: 0 0 .1875rem rgba(0, 0, 0, .3);
    box-shadow: 0 0 .1875rem rgba(0, 0, 0, .3);
    color: var(--tooltipcss-text-color, #fff);
    content: attr(aria-label);
    font-family: var(--tooltipcss-font-family, verdana, geneva, tahoma, var(--tooltipcss-fontawesome, Arial), sans-serif);
    font-size: var(--tooltipcss-font-size, .75rem);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    font-weight: 400;
    padding: .5em 1em;
    text-indent: 0;
    text-shadow: none;
    white-space: nowrap;
    z-index: 10
}

@media(forced-colors:active) {

    [aria-label][class*=tooltipcss]:after,
    [aria-label][data-tooltipcss-dir]:after {
        border: 1px solid CanvasText;
        color: CanvasText
    }
}

[aria-label][class*=tooltipcss]:before,
[aria-label][data-tooltipcss-dir]:before {
    content: "";
    z-index: 11
}

[aria-label][class*=tooltipcss]:after,
[aria-label][class*=tooltipcss]:before,
[aria-label][data-tooltipcss-dir]:after,
[aria-label][data-tooltipcss-dir]:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    -webkit-transition-delay: var(--tooltipcss-delay-hide, 0s);
    transition-delay: var(--tooltipcss-delay-hide, 0s);
    -webkit-transition: all var(--tooltipcss-timing, .12s) ease-out var(--tooltipcss-timing, .12s);
    transition: all var(--tooltipcss-timing, .12s) ease-out var(--tooltipcss-timing, .12s)
}

@media(prefers-reduced-motion:reduce) {

    [aria-label][class*=tooltipcss]:after,
    [aria-label][class*=tooltipcss]:before,
    [aria-label][data-tooltipcss-dir]:after,
    [aria-label][data-tooltipcss-dir]:before {
        -webkit-transition: none;
        transition: none
    }
}

[aria-label][class*=tooltipcss].tooltipcss--visible:after,
[aria-label][class*=tooltipcss].tooltipcss--visible:before,
[aria-label][class*=tooltipcss]:focus:after,
[aria-label][class*=tooltipcss]:focus:before,
[aria-label][class*=tooltipcss]:hover:after,
[aria-label][class*=tooltipcss]:hover:before,
[aria-label][class*=tooltipcss][data-tooltipcss-visible]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir].tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir]:focus:after,
[aria-label][data-tooltipcss-dir]:focus:before,
[aria-label][data-tooltipcss-dir]:hover:after,
[aria-label][data-tooltipcss-dir]:hover:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-visible]:before {
    opacity: 1;
    -webkit-transition-delay: var(--tooltipcss-delay-show, 0s);
    transition-delay: var(--tooltipcss-delay-show, 0s)
}

[aria-label][class*=tooltipcss].tooltipcss--top:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top]:after {
    margin-bottom: calc(var(--tooltipcss-arrow-size, .3125rem)*2);
    -webkit-transform: translate(-50%, var(--tooltipcss-slide, 6px));
    transform: translate(-50%, var(--tooltipcss-slide, 6px))
}

[aria-label][class*=tooltipcss].tooltipcss--top:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top]:before {
    -webkit-transform: translate(calc(-50% + var(--tooltipcss-arrow-offset, 0px)), var(--tooltipcss-slide, 6px));
    transform: translate(calc(-50% + var(--tooltipcss-arrow-offset, 0px)), var(--tooltipcss-slide, 6px))
}

[aria-label][class*=tooltipcss].tooltipcss--top:after,
[aria-label][class*=tooltipcss].tooltipcss--top:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top]:before {
    bottom: calc(100% - var(--tooltipcss-arrow-size, .3125rem)/2);
    left: 50%;
    -webkit-transform-origin: top;
    transform-origin: top
}

[aria-label][class*=tooltipcss].tooltipcss--top.tooltipcss--visible:before,
[aria-label][class*=tooltipcss].tooltipcss--top:focus:before,
[aria-label][class*=tooltipcss].tooltipcss--top:hover:before,
[aria-label][class*=tooltipcss].tooltipcss--top[data-tooltipcss-visible]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top].tooltipcss--visible:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top]:focus:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top]:hover:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top][data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top.tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top:focus:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top:hover:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top[data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top].tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top]:focus:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top]:hover:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top][data-tooltipcss-visible]:before {
    -webkit-transform: translate(calc(-50% + var(--tooltipcss-arrow-offset, 0px)));
    transform: translate(calc(-50% + var(--tooltipcss-arrow-offset, 0px)))
}

[aria-label][class*=tooltipcss].tooltipcss--top.tooltipcss--visible:after,
[aria-label][class*=tooltipcss].tooltipcss--top:focus:after,
[aria-label][class*=tooltipcss].tooltipcss--top:hover:after,
[aria-label][class*=tooltipcss].tooltipcss--top[data-tooltipcss-visible]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top].tooltipcss--visible:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top]:focus:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top]:hover:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top][data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top.tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top:focus:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top:hover:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top[data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top].tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top]:focus:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top]:hover:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top][data-tooltipcss-visible]:after {
    -webkit-transform: translate(-50%);
    transform: translate(-50%)
}

[aria-label][class*=tooltipcss].tooltipcss--top-left:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left]:after {
    left: 0;
    margin-bottom: calc(var(--tooltipcss-arrow-size, .3125rem)*2);
    -webkit-transform: translateY(var(--tooltipcss-slide, 6px));
    transform: translateY(var(--tooltipcss-slide, 6px))
}

[aria-label][class*=tooltipcss].tooltipcss--top-left:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left]:before {
    left: calc(var(--tooltipcss-arrow-size, .3125rem)/2);
    -webkit-transform: translate(var(--tooltipcss-arrow-offset, 0), var(--tooltipcss-slide, 6px));
    transform: translate(var(--tooltipcss-arrow-offset, 0), var(--tooltipcss-slide, 6px))
}

[aria-label][class*=tooltipcss].tooltipcss--top-left:after,
[aria-label][class*=tooltipcss].tooltipcss--top-left:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left]:before {
    bottom: calc(100% - var(--tooltipcss-arrow-size, .3125rem)/2);
    -webkit-transform-origin: top;
    transform-origin: top
}

[aria-label][class*=tooltipcss].tooltipcss--top-left.tooltipcss--visible:before,
[aria-label][class*=tooltipcss].tooltipcss--top-left:focus:before,
[aria-label][class*=tooltipcss].tooltipcss--top-left:hover:before,
[aria-label][class*=tooltipcss].tooltipcss--top-left[data-tooltipcss-visible]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left].tooltipcss--visible:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left]:focus:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left]:hover:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left][data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left.tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left:focus:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left:hover:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left[data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left].tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left]:focus:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left]:hover:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left][data-tooltipcss-visible]:before {
    -webkit-transform: translate(var(--tooltipcss-arrow-offset, 0));
    transform: translate(var(--tooltipcss-arrow-offset, 0))
}

[aria-label][class*=tooltipcss].tooltipcss--top-left.tooltipcss--visible:after,
[aria-label][class*=tooltipcss].tooltipcss--top-left:focus:after,
[aria-label][class*=tooltipcss].tooltipcss--top-left:hover:after,
[aria-label][class*=tooltipcss].tooltipcss--top-left[data-tooltipcss-visible]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left].tooltipcss--visible:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left]:focus:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left]:hover:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-left][data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left.tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left:focus:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left:hover:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top-left[data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left].tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left]:focus:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left]:hover:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-left][data-tooltipcss-visible]:after {
    -webkit-transform: translate(0);
    transform: translate(0)
}

[aria-label][class*=tooltipcss].tooltipcss--top-right:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right]:after {
    margin-bottom: calc(var(--tooltipcss-arrow-size, .3125rem)*2);
    right: 0;
    -webkit-transform: translateY(var(--tooltipcss-slide, 6px));
    transform: translateY(var(--tooltipcss-slide, 6px))
}

[aria-label][class*=tooltipcss].tooltipcss--top-right:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right]:before {
    right: calc(var(--tooltipcss-arrow-size, .3125rem)/2);
    -webkit-transform: translate(var(--tooltipcss-arrow-offset, 0), var(--tooltipcss-slide, 6px));
    transform: translate(var(--tooltipcss-arrow-offset, 0), var(--tooltipcss-slide, 6px))
}

[aria-label][class*=tooltipcss].tooltipcss--top-right:after,
[aria-label][class*=tooltipcss].tooltipcss--top-right:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right]:before {
    bottom: calc(100% - var(--tooltipcss-arrow-size, .3125rem)/2);
    -webkit-transform-origin: top;
    transform-origin: top
}

[aria-label][class*=tooltipcss].tooltipcss--top-right.tooltipcss--visible:before,
[aria-label][class*=tooltipcss].tooltipcss--top-right:focus:before,
[aria-label][class*=tooltipcss].tooltipcss--top-right:hover:before,
[aria-label][class*=tooltipcss].tooltipcss--top-right[data-tooltipcss-visible]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right].tooltipcss--visible:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right]:focus:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right]:hover:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right][data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right.tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right:focus:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right:hover:before,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right[data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right].tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right]:focus:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right]:hover:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right][data-tooltipcss-visible]:before {
    -webkit-transform: translate(var(--tooltipcss-arrow-offset, 0));
    transform: translate(var(--tooltipcss-arrow-offset, 0))
}

[aria-label][class*=tooltipcss].tooltipcss--top-right.tooltipcss--visible:after,
[aria-label][class*=tooltipcss].tooltipcss--top-right:focus:after,
[aria-label][class*=tooltipcss].tooltipcss--top-right:hover:after,
[aria-label][class*=tooltipcss].tooltipcss--top-right[data-tooltipcss-visible]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right].tooltipcss--visible:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right]:focus:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right]:hover:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=top-right][data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right.tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right:focus:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right:hover:after,
[aria-label][data-tooltipcss-dir].tooltipcss--top-right[data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right].tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right]:focus:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right]:hover:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=top-right][data-tooltipcss-visible]:after {
    -webkit-transform: translate(0);
    transform: translate(0)
}

[aria-label][class*=tooltipcss].tooltipcss--bottom:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom]:after {
    margin-top: calc(var(--tooltipcss-arrow-size, .3125rem)*2);
    -webkit-transform: translate(-50%, calc(var(--tooltipcss-slide, 6px)*-1));
    transform: translate(-50%, calc(var(--tooltipcss-slide, 6px)*-1))
}

[aria-label][class*=tooltipcss].tooltipcss--bottom:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom]:before {
    -webkit-transform: translate(calc(-50% + var(--tooltipcss-arrow-offset, 0px)), calc(var(--tooltipcss-slide, 6px)*-1));
    transform: translate(calc(-50% + var(--tooltipcss-arrow-offset, 0px)), calc(var(--tooltipcss-slide, 6px)*-1))
}

[aria-label][class*=tooltipcss].tooltipcss--bottom:after,
[aria-label][class*=tooltipcss].tooltipcss--bottom:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom]:before {
    left: 50%;
    top: calc(100% - var(--tooltipcss-arrow-size, .3125rem)/2);
    -webkit-transform-origin: bottom;
    transform-origin: bottom
}

[aria-label][class*=tooltipcss].tooltipcss--bottom.tooltipcss--visible:before,
[aria-label][class*=tooltipcss].tooltipcss--bottom:focus:before,
[aria-label][class*=tooltipcss].tooltipcss--bottom:hover:before,
[aria-label][class*=tooltipcss].tooltipcss--bottom[data-tooltipcss-visible]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom].tooltipcss--visible:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom]:focus:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom]:hover:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom][data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom.tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom:focus:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom:hover:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom[data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom].tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom]:focus:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom]:hover:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom][data-tooltipcss-visible]:before {
    -webkit-transform: translate(calc(-50% + var(--tooltipcss-arrow-offset, 0px)));
    transform: translate(calc(-50% + var(--tooltipcss-arrow-offset, 0px)))
}

[aria-label][class*=tooltipcss].tooltipcss--bottom.tooltipcss--visible:after,
[aria-label][class*=tooltipcss].tooltipcss--bottom:focus:after,
[aria-label][class*=tooltipcss].tooltipcss--bottom:hover:after,
[aria-label][class*=tooltipcss].tooltipcss--bottom[data-tooltipcss-visible]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom].tooltipcss--visible:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom]:focus:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom]:hover:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom][data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom.tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom:focus:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom:hover:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom[data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom].tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom]:focus:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom]:hover:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom][data-tooltipcss-visible]:after {
    -webkit-transform: translate(-50%);
    transform: translate(-50%)
}

[aria-label][class*=tooltipcss].tooltipcss--bottom-left:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left]:after {
    left: 0;
    margin-top: calc(var(--tooltipcss-arrow-size, .3125rem)*2);
    -webkit-transform: translateY(calc(var(--tooltipcss-slide, 6px)*-1));
    transform: translateY(calc(var(--tooltipcss-slide, 6px)*-1))
}

[aria-label][class*=tooltipcss].tooltipcss--bottom-left:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left]:before {
    left: calc(var(--tooltipcss-arrow-size, .3125rem)/2);
    -webkit-transform: translate(var(--tooltipcss-arrow-offset, 0), calc(var(--tooltipcss-slide, 6px)*-1));
    transform: translate(var(--tooltipcss-arrow-offset, 0), calc(var(--tooltipcss-slide, 6px)*-1))
}

[aria-label][class*=tooltipcss].tooltipcss--bottom-left:after,
[aria-label][class*=tooltipcss].tooltipcss--bottom-left:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left]:before {
    top: calc(100% - var(--tooltipcss-arrow-size, .3125rem)/2);
    -webkit-transform-origin: bottom;
    transform-origin: bottom
}

[aria-label][class*=tooltipcss].tooltipcss--bottom-left.tooltipcss--visible:before,
[aria-label][class*=tooltipcss].tooltipcss--bottom-left:focus:before,
[aria-label][class*=tooltipcss].tooltipcss--bottom-left:hover:before,
[aria-label][class*=tooltipcss].tooltipcss--bottom-left[data-tooltipcss-visible]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left].tooltipcss--visible:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left]:focus:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left]:hover:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left][data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left.tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left:focus:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left:hover:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left[data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left].tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left]:focus:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left]:hover:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left][data-tooltipcss-visible]:before {
    -webkit-transform: translate(var(--tooltipcss-arrow-offset, 0));
    transform: translate(var(--tooltipcss-arrow-offset, 0))
}

[aria-label][class*=tooltipcss].tooltipcss--bottom-left.tooltipcss--visible:after,
[aria-label][class*=tooltipcss].tooltipcss--bottom-left:focus:after,
[aria-label][class*=tooltipcss].tooltipcss--bottom-left:hover:after,
[aria-label][class*=tooltipcss].tooltipcss--bottom-left[data-tooltipcss-visible]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left].tooltipcss--visible:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left]:focus:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left]:hover:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-left][data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left.tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left:focus:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left:hover:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-left[data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left].tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left]:focus:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left]:hover:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-left][data-tooltipcss-visible]:after {
    -webkit-transform: translate(0);
    transform: translate(0)
}

[aria-label][class*=tooltipcss].tooltipcss--bottom-right:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right]:after {
    margin-top: calc(var(--tooltipcss-arrow-size, .3125rem)*2);
    right: 0;
    -webkit-transform: translateY(calc(var(--tooltipcss-slide, 6px)*-1));
    transform: translateY(calc(var(--tooltipcss-slide, 6px)*-1))
}

[aria-label][class*=tooltipcss].tooltipcss--bottom-right:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right]:before {
    right: calc(var(--tooltipcss-arrow-size, .3125rem)/2);
    -webkit-transform: translate(var(--tooltipcss-arrow-offset, 0), calc(var(--tooltipcss-slide, 6px)*-1));
    transform: translate(var(--tooltipcss-arrow-offset, 0), calc(var(--tooltipcss-slide, 6px)*-1))
}

[aria-label][class*=tooltipcss].tooltipcss--bottom-right:after,
[aria-label][class*=tooltipcss].tooltipcss--bottom-right:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right]:before {
    top: calc(100% - var(--tooltipcss-arrow-size, .3125rem)/2);
    -webkit-transform-origin: bottom;
    transform-origin: bottom
}

[aria-label][class*=tooltipcss].tooltipcss--bottom-right.tooltipcss--visible:before,
[aria-label][class*=tooltipcss].tooltipcss--bottom-right:focus:before,
[aria-label][class*=tooltipcss].tooltipcss--bottom-right:hover:before,
[aria-label][class*=tooltipcss].tooltipcss--bottom-right[data-tooltipcss-visible]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right].tooltipcss--visible:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right]:focus:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right]:hover:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right][data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right.tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right:focus:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right:hover:before,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right[data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right].tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right]:focus:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right]:hover:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right][data-tooltipcss-visible]:before {
    -webkit-transform: translate(var(--tooltipcss-arrow-offset, 0));
    transform: translate(var(--tooltipcss-arrow-offset, 0))
}

[aria-label][class*=tooltipcss].tooltipcss--bottom-right.tooltipcss--visible:after,
[aria-label][class*=tooltipcss].tooltipcss--bottom-right:focus:after,
[aria-label][class*=tooltipcss].tooltipcss--bottom-right:hover:after,
[aria-label][class*=tooltipcss].tooltipcss--bottom-right[data-tooltipcss-visible]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right].tooltipcss--visible:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right]:focus:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right]:hover:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=bottom-right][data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right.tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right:focus:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right:hover:after,
[aria-label][data-tooltipcss-dir].tooltipcss--bottom-right[data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right].tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right]:focus:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right]:hover:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=bottom-right][data-tooltipcss-visible]:after {
    -webkit-transform: translate(0);
    transform: translate(0)
}

[aria-label][class*=tooltipcss].tooltipcss--left:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--left:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left]:after {
    margin-right: calc(var(--tooltipcss-arrow-size, .3125rem)*2);
    -webkit-transform: translate(var(--tooltipcss-slide, 6px), -50%);
    transform: translate(var(--tooltipcss-slide, 6px), -50%)
}

[aria-label][class*=tooltipcss].tooltipcss--left:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--left:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left]:before {
    -webkit-transform: translate(var(--tooltipcss-slide, 6px), calc(-50% + var(--tooltipcss-arrow-offset, 0px)));
    transform: translate(var(--tooltipcss-slide, 6px), calc(-50% + var(--tooltipcss-arrow-offset, 0px)))
}

[aria-label][class*=tooltipcss].tooltipcss--left:after,
[aria-label][class*=tooltipcss].tooltipcss--left:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--left:after,
[aria-label][data-tooltipcss-dir].tooltipcss--left:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left]:before {
    right: calc(100% - var(--tooltipcss-arrow-size, .3125rem)/2);
    top: 50%;
    -webkit-transform-origin: left;
    transform-origin: left
}

[aria-label][class*=tooltipcss].tooltipcss--left.tooltipcss--visible:before,
[aria-label][class*=tooltipcss].tooltipcss--left:focus:before,
[aria-label][class*=tooltipcss].tooltipcss--left:hover:before,
[aria-label][class*=tooltipcss].tooltipcss--left[data-tooltipcss-visible]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left].tooltipcss--visible:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left]:focus:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left]:hover:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left][data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--left.tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir].tooltipcss--left:focus:before,
[aria-label][data-tooltipcss-dir].tooltipcss--left:hover:before,
[aria-label][data-tooltipcss-dir].tooltipcss--left[data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left].tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left]:focus:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left]:hover:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left][data-tooltipcss-visible]:before {
    -webkit-transform: translateY(calc(-50% + var(--tooltipcss-arrow-offset, 0px)));
    transform: translateY(calc(-50% + var(--tooltipcss-arrow-offset, 0px)))
}

[aria-label][class*=tooltipcss].tooltipcss--left.tooltipcss--visible:after,
[aria-label][class*=tooltipcss].tooltipcss--left:focus:after,
[aria-label][class*=tooltipcss].tooltipcss--left:hover:after,
[aria-label][class*=tooltipcss].tooltipcss--left[data-tooltipcss-visible]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left].tooltipcss--visible:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left]:focus:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left]:hover:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=left][data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--left.tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir].tooltipcss--left:focus:after,
[aria-label][data-tooltipcss-dir].tooltipcss--left:hover:after,
[aria-label][data-tooltipcss-dir].tooltipcss--left[data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left].tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left]:focus:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left]:hover:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=left][data-tooltipcss-visible]:after {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

[aria-label][class*=tooltipcss].tooltipcss--right:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--right:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right]:after {
    margin-left: calc(var(--tooltipcss-arrow-size, .3125rem)*2);
    -webkit-transform: translate(calc(var(--tooltipcss-slide, 6px)*-1), -50%);
    transform: translate(calc(var(--tooltipcss-slide, 6px)*-1), -50%)
}

[aria-label][class*=tooltipcss].tooltipcss--right:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--right:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right]:before {
    -webkit-transform: translate(calc(var(--tooltipcss-slide, 6px)*-1), calc(-50% + var(--tooltipcss-arrow-offset, 0px)));
    transform: translate(calc(var(--tooltipcss-slide, 6px)*-1), calc(-50% + var(--tooltipcss-arrow-offset, 0px)))
}

[aria-label][class*=tooltipcss].tooltipcss--right:after,
[aria-label][class*=tooltipcss].tooltipcss--right:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--right:after,
[aria-label][data-tooltipcss-dir].tooltipcss--right:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right]:before {
    left: calc(100% - var(--tooltipcss-arrow-size, .3125rem)/2);
    top: 50%;
    -webkit-transform-origin: right;
    transform-origin: right
}

[aria-label][class*=tooltipcss].tooltipcss--right.tooltipcss--visible:before,
[aria-label][class*=tooltipcss].tooltipcss--right:focus:before,
[aria-label][class*=tooltipcss].tooltipcss--right:hover:before,
[aria-label][class*=tooltipcss].tooltipcss--right[data-tooltipcss-visible]:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right].tooltipcss--visible:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right]:focus:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right]:hover:before,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right][data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--right.tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir].tooltipcss--right:focus:before,
[aria-label][data-tooltipcss-dir].tooltipcss--right:hover:before,
[aria-label][data-tooltipcss-dir].tooltipcss--right[data-tooltipcss-visible]:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right].tooltipcss--visible:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right]:focus:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right]:hover:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right][data-tooltipcss-visible]:before {
    -webkit-transform: translateY(calc(-50% + var(--tooltipcss-arrow-offset, 0px)));
    transform: translateY(calc(-50% + var(--tooltipcss-arrow-offset, 0px)))
}

[aria-label][class*=tooltipcss].tooltipcss--right.tooltipcss--visible:after,
[aria-label][class*=tooltipcss].tooltipcss--right:focus:after,
[aria-label][class*=tooltipcss].tooltipcss--right:hover:after,
[aria-label][class*=tooltipcss].tooltipcss--right[data-tooltipcss-visible]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right].tooltipcss--visible:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right]:focus:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right]:hover:after,
[aria-label][class*=tooltipcss][data-tooltipcss-dir=right][data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--right.tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir].tooltipcss--right:focus:after,
[aria-label][data-tooltipcss-dir].tooltipcss--right:hover:after,
[aria-label][data-tooltipcss-dir].tooltipcss--right[data-tooltipcss-visible]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right].tooltipcss--visible:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right]:focus:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right]:hover:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-dir=right][data-tooltipcss-visible]:after {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

[aria-label][class*=tooltipcss].tooltipcss--fit:after,
[aria-label][class*=tooltipcss][data-tooltipcss-size=fit]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--fit:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-size=fit]:after {
    width: 100%
}

[aria-label][class*=tooltipcss].tooltipcss--small:after,
[aria-label][class*=tooltipcss][data-tooltipcss-size=small]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--small:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-size=small]:after {
    width: var(--tooltipcss-small, 6.25rem)
}

[aria-label][class*=tooltipcss].tooltipcss--medium:after,
[aria-label][class*=tooltipcss][data-tooltipcss-size=medium]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--medium:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-size=medium]:after {
    width: var(--tooltipcss-medium, 12.5rem)
}

[aria-label][class*=tooltipcss].tooltipcss--large:after,
[aria-label][class*=tooltipcss][data-tooltipcss-size=large]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--large:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-size=large]:after {
    width: var(--tooltipcss-large, 18.75rem)
}

[aria-label][class*=tooltipcss].tooltipcss--custom:after,
[aria-label][class*=tooltipcss][data-tooltipcss-size=custom]:after,
[aria-label][data-tooltipcss-dir].tooltipcss--custom:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-size=custom]:after {
    white-space: pre;
    word-wrap: break-word
}

[aria-label][class*=tooltipcss].tooltipcss--static:after,
[aria-label][class*=tooltipcss].tooltipcss--static:before,
[aria-label][class*=tooltipcss][data-tooltipcss-static]:after,
[aria-label][class*=tooltipcss][data-tooltipcss-static]:before,
[aria-label][data-tooltipcss-dir].tooltipcss--static:after,
[aria-label][data-tooltipcss-dir].tooltipcss--static:before,
[aria-label][data-tooltipcss-dir][data-tooltipcss-static]:after,
[aria-label][data-tooltipcss-dir][data-tooltipcss-static]:before {
    -webkit-transition: none;
    transition: none
}

[aria-label=""][class*=tooltipcss]:after,
[aria-label=""][class*=tooltipcss]:before,
[aria-label=""][data-tooltipcss-dir]:after,
[aria-label=""][data-tooltipcss-dir]:before {
    display: none
}
/* [class*=tooltipcss] {
    position: relative;
}
[class*=tooltipcss]:after {
    border: 5px solid transparent;
    border-top: 5px solid #1f1f1f;
    bottom: 27.5px;
    box-sizing: border-box;
    color: #fff;
    content: "";
    cursor: pointer;
    display: block;
    filter: drop-shadow(rgba(0, 0, 0, 0.3) 0 1px 1px);
    font: 400 13px Arial, Helvetica, sans-serif;
    height: 10px;
    left: 269.149px;
    line-height: 20px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    text-align: center;
    transform-origin: 5px 0;
    transition: all 0.12s ease-out 0.12s;
    width: 10px;
    z-index: 11;
    -webkit-tap-highlight-color: transparent;
}
[class*=tooltipcss]:hover:after {
    opacity: 1;
}
[class*=tooltipcss] span.text {
    background-color: #1f1f1f;
    border: 0 solid #1f1f1f;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 0 3px;
    bottom: 27.5px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: block;
    height: auto;
    left: 0px;
    bottom: 0px;
    line-height: 20px;
    margin-bottom: 10px;
    opacity: 0;
    padding: 6px 12px;
    pointer-events: none;
    position: absolute;
    text-align: center;
    transform: matrix(1, 0, 0, 1, -27.0095, 0);
    transform-origin: 27.0096px 0;
    transition: all 0.12s ease-out;
    white-space: nowrap;
    width: 64px;
    z-index: 10;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}
[class*=tooltipcss]:hover span.text {
    opacity: 0;
} */

/*!@preserve
 * Updated by Ali Hassan on 2026-06-16
 */
.bootstrap-datetimepicker-widget .btn[data-action=clear]::after,
.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after,
.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after,
.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after,
.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after,
.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after,
.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after,
.bootstrap-datetimepicker-widget .btn[data-action=today]::after,
.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after,
.bootstrap-datetimepicker-widget .picker-switch::after,
.bootstrap-datetimepicker-widget table th.next::after,
.bootstrap-datetimepicker-widget table th.prev::after,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

body.tempusdominus-bootstrap-datetimepicker-widget-day-click,
body.tempusdominus-bootstrap-datetimepicker-widget-day-click * {
    cursor: pointer !important
}

body.tempusdominus-bootstrap-datetimepicker-widget-day-click {
    position: relative !important
}

.tempusdominus-bootstrap-datetimepicker-widget-day-click-glass-panel {
    position: absolute;
    z-index: 999999999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer !important
}

.bootstrap-datetimepicker-widget .datepicker-days tbody td {
    cursor: pointer
}

.bootstrap-datetimepicker-widget {
    list-style: none
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    display: block;
    margin: 2px 0;
    padding: 4px;
    width: 14rem
}

.bootstrap-datetimepicker-widget.dropdown-menu.tempusdominus-bootstrap-datetimepicker-widget-with-feather-icons {
    width: 16rem
}

.bootstrap-datetimepicker-widget.dropdown-menu.tempusdominus-bootstrap-datetimepicker-widget-with-calendar-weeks {
    width: 16rem
}

.bootstrap-datetimepicker-widget.dropdown-menu.tempusdominus-bootstrap-datetimepicker-widget-with-calendar-weeks.tempusdominus-bootstrap-datetimepicker-widget-with-feather-icons {
    width: 17rem
}

@media (min-width:576px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em
    }
}

@media (min-width:768px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em
    }
}

@media (min-width:992px) {
    .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
        width: 38em
    }
}

.bootstrap-datetimepicker-widget.dropdown-menu:after,
.bootstrap-datetimepicker-widget.dropdown-menu:before {
    content: "";
    display: inline-block;
    position: absolute
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-bottom-color: rgba(0, 0, 0, .2);
    top: -7px;
    left: 7px
}

.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    top: -6px;
    left: 8px
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #ccc;
    border-top-color: rgba(0, 0, 0, .2);
    bottom: -7px;
    left: 6px
}

.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    bottom: -6px;
    left: 7px
}

.bootstrap-datetimepicker-widget.dropdown-menu.float-right:before {
    left: auto;
    right: 6px
}

.bootstrap-datetimepicker-widget.dropdown-menu.float-right:after {
    left: auto;
    right: 7px
}

.bootstrap-datetimepicker-widget.dropdown-menu.wider {
    width: 16rem
}

.bootstrap-datetimepicker-widget .list-unstyled {
    margin: 0
}

.bootstrap-datetimepicker-widget a[data-action] {
    padding: 6px 0
}

.bootstrap-datetimepicker-widget a[data-action]:active {
    box-shadow: none
}

.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
    width: 54px;
    font-weight: 700;
    font-size: 1.2em;
    margin: 0
}

.bootstrap-datetimepicker-widget button[data-action] {
    padding: 6px
}

.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod] {
    text-align: center;
    font-family: Arial, sans-serif, -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    width: 38px;
    height: 38px
}

.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after {
    content: "Increment Hours"
}

.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after {
    content: "Increment Minutes"
}

.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after {
    content: "Decrement Hours"
}

.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after {
    content: "Decrement Minutes"
}

.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after {
    content: "Show Hours"
}

.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after {
    content: "Show Minutes"
}

.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after {
    content: "Toggle AM/PM"
}

.bootstrap-datetimepicker-widget .btn[data-action=clear]::after {
    content: "Clear the picker"
}

.bootstrap-datetimepicker-widget .btn[data-action=today]::after {
    content: "Set the date to today"
}

.bootstrap-datetimepicker-widget .picker-switch {
    text-align: center
}

.bootstrap-datetimepicker-widget .picker-switch::after {
    content: "Toggle Date and Time Screens"
}

.bootstrap-datetimepicker-widget .picker-switch td {
    padding: 0;
    margin: 0;
    height: auto;
    width: auto;
    line-height: inherit
}

.bootstrap-datetimepicker-widget .picker-switch td span {
    line-height: 2.5;
    height: 2.5em;
    width: 100%
}

.bootstrap-datetimepicker-widget .picker-switch.picker-switch-with-feathers-icons td span {
    line-height: 2.8;
    height: 2.8em
}

.bootstrap-datetimepicker-widget table {
    width: 100%;
    margin: 0
}

.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
    text-align: center;
    border-radius: .25rem
}

.bootstrap-datetimepicker-widget table th {
    height: 20px;
    line-height: 20px;
    width: 20px
}

.bootstrap-datetimepicker-widget table th.picker-switch {
    width: 145px
}

.bootstrap-datetimepicker-widget table th.disabled,
.bootstrap-datetimepicker-widget table th.disabled:hover {
    background: 0 0;
    color: #6c757d;
    cursor: not-allowed
}

.bootstrap-datetimepicker-widget table th.prev::after {
    content: "Previous Month"
}

.bootstrap-datetimepicker-widget table th.next::after {
    content: "Next Month"
}

.bootstrap-datetimepicker-widget table thead tr:first-child th {
    cursor: pointer
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
    background: #e9ecef
}

.bootstrap-datetimepicker-widget table td {
    height: 54px;
    line-height: 54px;
    width: 54px
}

.bootstrap-datetimepicker-widget table td.cw {
    font-size: .8em;
    height: 20px;
    line-height: 20px;
    color: #6c757d;
    cursor: default
}

.bootstrap-datetimepicker-widget table td.day {
    height: 20px;
    line-height: 20px;
    width: 20px
}

.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover {
    background: #e9ecef;
    cursor: pointer
}

.bootstrap-datetimepicker-widget table td.new,
.bootstrap-datetimepicker-widget table td.old {
    color: #6c757d
}

.bootstrap-datetimepicker-widget table td.today {
    position: relative
}

.bootstrap-datetimepicker-widget table td.today:before {
    content: "";
    display: inline-block;
    border: solid transparent;
    border-width: 0 0 7px 7px;
    border-bottom-color: #007bff;
    border-top-color: rgba(0, 0, 0, .2);
    position: absolute;
    bottom: 4px;
    right: 4px
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background-color: #007bff;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.bootstrap-datetimepicker-widget table td.active.today:before {
    border-bottom-color: #fff
}

.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
    background: 0 0;
    color: #6c757d;
    cursor: not-allowed
}

.bootstrap-datetimepicker-widget table td span {
    display: inline-block;
    width: 54px;
    height: 54px;
    line-height: 54px;
    margin-top: 2px;
    margin-bottom: 2px;
    cursor: pointer;
    border-radius: .25rem
}

.bootstrap-datetimepicker-widget table td span:hover {
    background: #e9ecef
}

.bootstrap-datetimepicker-widget table td span.active {
    background-color: #007bff;
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.bootstrap-datetimepicker-widget table td span.old {
    color: #6c757d
}

.bootstrap-datetimepicker-widget table td span.disabled,
.bootstrap-datetimepicker-widget table td span.disabled:hover {
    background: 0 0;
    color: #6c757d;
    cursor: not-allowed
}

.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
    height: 27px;
    line-height: 27px
}

.bootstrap-datetimepicker-widget .timepicker .timepicker-picker a.btn {
    color: #007bff;
    color: var(--blue, #007bff)
}

.bootstrap-datetimepicker-widget .timepicker .timepicker-picker a.btn:hover {
    color: #0056b3
}

.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementHours],
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementMinutes],
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementSeconds],
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementHours],
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementMinutes],
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementSeconds],
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showHours],
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showMinutes],
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showSeconds],
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=togglePeriod],
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.day,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.hour,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.minute,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.second {
    pointer-events: none;
    cursor: default
}

.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementHours]:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementMinutes]:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=decrementSeconds]:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementHours]:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementMinutes]:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=incrementSeconds]:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showHours]:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showMinutes]:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=showSeconds]:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td [data-action=togglePeriod]:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.day:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.hour:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.minute:hover,
.bootstrap-datetimepicker-widget.bootstrap-datetimepicker-widget-readonly table td.second:hover {
    background: 0 0
}

.input-group [data-toggle=datetimepicker] {
    cursor: pointer
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src:  url('/build/fonts/fontawesome-webfont.eot?v=4.7.0');
  src:  url('/build/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),
        url('/build/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
        url('/build/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
        url('/build/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),
        url('/build/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.filter-panel-bg .x_panel {
    background: transparent;
    border: 0;
}

.filter-panel-bg .panel {
    border: 1px solid #232323;
    margin: 0px;
    padding-bottom: 20px;
}

.filter-panel-bg .x_title.blue {
    background: #fff;
    border: 1px solid #000;
    padding: 0px 10px;
}

.filter-panel-bg .chela-action-bg {
    background: #fff;
    padding: 10px;
}

.filter-panel-bg .chela-action-bg button {
    margin-bottom: 0px;
}

.chela-other-btn .selPkrBg button {
    background: #2b4059;
    color: #ffffff;
}

.monthly-updated-notes table tr td {
    padding: 0px;
}

body.control-flow table.fixedHeader-floating {
    overflow: hidden;
}

label.status_filter_label .heading-text {
    margin: 01px 0 0 0;
}

.heading-text .check-all {
    /*padding: 0px 30px 0 95px;*/
    font-size: 14px;
    position: relative;
    top: 0px;
    font-weight: lighter;
}

.scroll_desktop_main~table.fixedHeader-floating {
    display: none;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}



.checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    /*background-color: #eee;*/
    border: 1px solid #ccc;
    /*z-index: 9;*/
}

.container input:checked~.checkmark {
    background-color: #8ab0e1;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked~.checkmark:after {
    display: block;
}

.container .checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.order-style .sm-width {
    max-width: 100%;
}

.order-style .orderNote .bootstrap-select button,
.payNote .bootstrap-select button,
.seminarNote .bootstrap-select button {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f2f2f2+0,fcfcfc+100 */
    background: rgb(242, 242, 242);
    /* Old browsers */
    background: -moz-linear-gradient(left, rgba(242, 242, 242, 1) 0%, rgba(252, 252, 252, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(242, 242, 242, 1) 0%, rgba(252, 252, 252, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(242, 242, 242, 1) 0%, rgba(252, 252, 252, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#fcfcfc', GradientType=1);
    /* IE6-9 */
    border-radius: 10px;
    border: 1px solid #cccccc;
    padding: 0px 30px 0px 13px;
}

.orderNote .form-control,
.payNote .form-control,
.seminarNote .form-control {
    background: transparent;
}

.order-style .form-group {
    margin-bottom: 25px;
}

.order-style table .form-group {
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
}

hr {
    width: 100%;
    border-bottom: 3px;
}

.fulltext {
    width: 100%;
    min-height: 150px;
}

.table-responsive {
    padding: 0px;
}

.grey-bg {
    background: #f7f7f7;
    float: left;
    width: 100%;
    padding: 20px 20px 0 20px;
}

.grey-bg~.filter_section {
    padding-bottom: 0px;
    margin-bottom: 15px;
}



.cancel {
    background: #888888;
    color: #fff;
}

.cancel:hover {
    background: #585858;
}



.scroll_desktop_width {
    width: 200%;
}

.scroll_desktop_main {
    overflow: auto;
    float: left;
    width: 100%;
    position: relative;
    /*z-index: 99;*/
}


.scroll_desktop_main.desktop_hidden {
    overflow-y: hidden;
}

.x_title h2,
table.tile_info td p {
    white-space: nowrap;
    text-overflow: ellipsis
}

.site_title,
.x_title h2,
table.tile_info td p {
    text-overflow: ellipsis
}

.detail a,
.expand,
.jqstooltip,
.paging_full_numbers a:hover,
.site_title:focus,
.site_title:hover,
a,
a:focus,
a:hover {
    text-decoration: none
}

.byline,
.main_menu .fa {
    -webkit-font-smoothing: antialiased
}

.daterangepicker .ranges li {
    color: #73879C
}

.daterangepicker .ranges li.active,
.daterangepicker .ranges li:hover {
    background: #536A7F;
    border: 1px solid #536A7F;
    color: #fff
}

.daterangepicker .input-mini {
    background-color: #eee;
    border: 1px solid #ccc;
    box-shadow: none !important
}

.daterangepicker .input-mini.active {
    border: 1px solid #ccc
}

.daterangepicker select.ampmselect,
.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.monthselect,
.daterangepicker select.secondselect,
.daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px;
    margin: 0;
    cursor: default;
    height: 30px;
    border: 1px solid #ADB2B5;
    line-height: 30px;
    border-radius: 0 !important
}

.daterangepicker select.monthselect {
    margin-right: 2%
}

.daterangepicker td.in-range {
    background: #E4E7EA;
    color: #73879C
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #536A7F;
    color: #fff
}

.daterangepicker th.available:hover {
    background: #eee;
    color: #34495E
}

.daterangepicker:after,
.daterangepicker:before {
    content: none
}

.daterangepicker .calendar.single {
    margin: 0 0 4px;
    display: table;
}

.daterangepicker .calendar.single .calendar-table {
    width: 100%
        /*224px*/
    ;
    padding: 0 0 4px;
}

.daterangepicker .calendar.single .calendar-table thead tr:first-child th {
    padding: 8px 5px
}

.daterangepicker .calendar.single .calendar-table thead th {
    border-radius: 0
}

.daterangepicker.picker_1 {
    color: #fff;
    background: #34495E
}

.daterangepicker.picker_1 .calendar-table {
    background: #34495E
}

.daterangepicker.picker_1 .calendar-table thead tr {
    background: #213345
}

.daterangepicker.picker_1 .calendar-table thead tr:first-child {
    background: #1ABB9C
}

.daterangepicker.picker_1 .calendar-table td.off {
    background: #34495E;
    color: #999
}

.daterangepicker.picker_1 .calendar-table td.available:hover {
    color: #34495E
}

.daterangepicker.picker_2 .calendar-table thead tr {
    color: #1ABB9C
}

.daterangepicker.picker_2 .calendar-table thead tr:first-child {
    color: #73879C
}

.daterangepicker.picker_3 .calendar-table thead tr:first-child {
    color: #fff;
    background: #1ABB9C
}

.daterangepicker.picker_4 .calendar-table thead tr:first-child {
    color: #fff;
    background: #34495E
}

.daterangepicker.picker_4 .calendar-table td,
.daterangepicker.picker_4 .calendar-table td.off {
    background: #ECF0F1;
    border: 1px solid #fff;
    border-radius: 0
}

.daterangepicker.picker_4 .calendar-table td.active {
    background: #34495E
}

.calendar-exibit .show-calendar {
    float: none;
    display: block;
    position: relative;
    background-color: #fff;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, .15);
    overflow: hidden
}

.calendar-exibit .show-calendar .calendar {
    margin: 0 0 4px
}

.calendar-exibit .show-calendar.picker_1 {
    background: #34495E
}

.calendar-exibit .calendar-table {
    padding: 0 0 4px
}

.left_col {
    background: #c0dafa;
    width: 100%;

}





.overflow_hidden,
.sidebar-widget,
.site_title,
.tile,
.weather-days .col-sm-2,
.x_title h2,
table.tile_info td p {
    overflow: hidden
}



.site_title i {
    border: 1px solid #EAEAEA;
    padding: 5px 6px;
    border-radius: 50%
}



.menu_section {
    margin-bottom: 35px
}

.menu_section h3 {
    padding-left: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 0;
    margin-top: 0;
    text-shadow: 1px 1px #000
}

.menu_section>ul {
    margin-top: 0px
}

.profile_pic {
    width: 35%;
    float: left
}

.img-circle.profile_img {
    width: 70%;
    background: #fff;
    margin-left: 15%;
    z-index: 1000;
    position: inherit;
    margin-top: 20px;
    border: 1px solid rgba(52, 73, 94, .44);
    padding: 4px
}

.profile_info span {
    color: #ffffff;
    margin-top: 0px;
    font-weight: 100;
}

.profile_info h2 {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    font-weight: 100;
    margin-bottom: 0px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.19);
}

.profile.img_2 {
    text-align: center
}

.profile.img_2 .profile_pic {
    width: 100%
}

.profile.img_2 .profile_pic .img-circle.profile_img {
    width: 50%;
    margin: 10px 0 0
}

.profile.img_2 .profile_info {
    padding: 15px 10px 0;
    width: 100%;
    margin-bottom: 10px;
    float: left
}

.main_menu span.fa {
    float: right;
    text-align: center;
    margin-top: 5px;
    font-size: 10px;
    min-width: inherit;
    color: #c0dafa;
}



.nav_menu {
    float: left;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #BED9FA), color-stop(1, #77A3D9));
    background-image: -o-linear-gradient(bottom, #BED9FA 0%, #77A3D9 100%);
    background-image: -moz-linear-gradient(bottom, #BED9FA 0%, #77A3D9 100%);
    background-image: -webkit-linear-gradient(bottom, #BED9FA 0%, #77A3D9 100%);
    background-image: -ms-linear-gradient(bottom, #BED9FA 0%, #77A3D9 100%);
    background-image: linear-gradient(to bottom, #BED9FA 0%, #77A3D9 100%);
    border-bottom: 1px solid #D9DEE4;
    margin-bottom: 10px;
    width: 100%;
    position: relative;
    padding: 5px 0px;
}

body .container.body .right_col {
    background: #e8eff8;
}

.nav_title {
    width: 100%;
    height: 67px;
    float: left;
    background-image: linear-gradient(to bottom, #BED9FA 0%, #77A3D9 100%);
    border-radius: 0;
    padding: 12px 10px;
    border-right: 2px solid #6f8aac;
}


.left_col .mCSB_scrollTools {
    width: 6px
}

.left_col .mCSB_dragger {
    max-height: 400px !important
}


.border {
    border: 1px solid #aaa;
}

span.border {
    padding: 5px;
    border-radius: 3px;
}

.main_container {
    width: 100%;
    padding: 0
}



.main_container .top_nav {
    display: block;
    margin-left: 290px;
}

.no-padding {
    padding: 0 !important
}

.page-title {
    width: 100%;
    height: 65px;
    padding: 10px 0
}

.page-title .title_left {
    width: 45%;
    float: left;
    display: block
}

.page-title .title_left h3 {
    margin: 9px 0
}

.page-title .title_right {
    width: 55%;
    float: left;
    display: block
}

.page-title .title_right .pull-right {
    margin: 10px 0
}

.fixed_height_320 {
    height: 320px
}

.fixed_height_390 {
    height: 390px
}

.fixed_height_200 {
    height: 200px
}

table.no-margin .progress {
    margin-bottom: 0
}

.main_content {
    padding: 10px 20px
}

.grid_slider .col-md-6 {
    padding: 0 40px
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
    margin-top: 10px;
    margin-bottom: 10px
}

a {
    color: #5A738E
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
:active,
:focus,
:visited,
a,
a:active,
a:focus,
a:visited {
    outline: 0
}

.navbar {
    margin-bottom: 0
}

.navbar-header {
    background: #34495E
}

.navbar-right {
    margin-right: 0
}

.top_nav .navbar-right {
    margin: 0;
    width: 70%;
    float: right
}

.top_nav .navbar-right li {
    float: right;
}

.top_nav .dropdown-menu li {
    width: 100%;
    border-bottom: 1px solid #fff;
}

.top_nav .dropdown-menu li a {
    width: 100%;
    padding: 8px 21px;
    color: #ffffff;
    text-align: right;
}

.top_nav li a i {
    font-size: 15px
}

.navbar-static-top {
    position: fixed;
    top: 0;
    width: 100%
}

.sidebar-header {
    border-bottom: 0;
    margin-top: 46px
}

.sidebar-header:first-of-type {
    margin-top: 0
}


.navbar-brand,
.navbar-nav>li>a,
.site_title {
    color: #ECF0F1;
    margin-left: 0 !important
}



.navbar-brand,
.navbar-nav>li>a {
    font-weight: 500;
    line-height: 32px
}

.site_title {
    font-weight: 400;
    font-size: 22px;
    width: 100%;
    line-height: 0;
    display: block;
    height: 48px;
    margin: 0;
    padding-left: 0;
    margin-bottom: 7px;
}



.top_search {
    padding: 0
}

.top_search .form-control {
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .075);
    border-radius: 25px 0 0 25px;
    padding-left: 20px;
    border: 1px solid rgba(221, 226, 232, .49)
}

.top_search .form-control:focus {
    border: 1px solid rgba(221, 226, 232, .49);
    border-right: 0
}

.top_search .input-group-btn button {
    border-radius: 0 25px 25px 0;
    border: 1px solid rgba(221, 226, 232, .49);
    border-left: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    color: #93A2B2;
    margin-bottom: 0 !important
}

.tiles,
.top_tiles {
    margin-bottom: 0
}

.toggle {
    float: left;
    margin: 0;
    padding-top: 9px;
    width: 70px
}

.toggle a {
    padding: 15px 15px 0;
    margin: 0;
    cursor: pointer
}

.toggle a i {
    font-size: 36px;
}



.panel_toolbox {
    float: right;
    min-width: 70px
}

.panel_toolbox>li {
    float: left;
    cursor: pointer
}

.panel_toolbox>li>a {
    padding: 5px;
    color: #C5C7CB;
}

.panel_toolbox>li>a:hover {
    background: #F5F7FA
}

.line_30 {
    line-height: 30px
}

.main_menu_side {
    padding: 0
}

footer {
    background: #263950;
    display: block;
    position: relative;
    padding: 20px 0px;
    line-height: 0px;
}

.copyright a {
    text-align: center;
    color: #fff;
}

.copyright {
    text-align: center;
    color: #fff;
}

.footer_fixed footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%
}

.degrees:after,
.x_content,
.x_panel {
    position: relative
}

.tile-stats.sparkline {
    padding: 10px;
    text-align: center
}

.jqstooltip {
    background: #34495E;
    width: 30px;
    height: 22px !important
}

.tooltip {
    display: block !important
}

.tiles {
    border-top: 1px solid #ccc;
    margin-top: 15px;
    padding-top: 5px
}

.top_tiles .tile h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 3px 0 7px;
    font-weight: 700
}

article.media {
    width: 100%
}

#integration-list {
    width: 100%;
    margin: 0 auto;
    display: table
}

#integration-list ul {
    padding: 0;
    margin: 20px 0;
    color: #555
}

#integration-list ul>li {
    list-style: none;
    border-top: 1px solid #ddd;
    display: block;
    padding: 15px;
    overflow: hidden
}

#integration-list ul:last-child {
    border-bottom: 1px solid #ddd
}

#integration-list ul>li:hover {
    background: #efefef
}

.expand {
    display: block;
    color: #555;
    cursor: pointer
}

.expand h2 {
    width: 85%;
    float: left
}

h2 {
    font-size: 16px;
    font-weight: bold;
}

#left,
#right {
    display: table
}

#sup {
    display: table-cell;
    vertical-align: middle;
    width: 80%
}

.detail a {
    color: #C0392B;
    border: 1px solid #C0392B;
    padding: 6px 10px 5px;
    font-size: 13px;
    margin-right: 7px
}

.detail {
    margin: 10px 0;
    display: none;
    line-height: 22px;
    height: 150px
}

.detail span {
    margin: 0
}

.right-arrow {
    width: 10px;
    float: right;
    font-weight: 700;
    font-size: 20px
}

.accordion .panel {
    margin-bottom: 5px;
    border-radius: 0;
    border-bottom: 1px solid #efefef
}

.x_panel,
.x_title {
    margin-bottom: 10px
}

.accordion .panel-heading {
    background: #F2F5F7;
    padding: 13px;
    width: 100%;
    display: block
}

.accordion .panel:hover {
    background: #F2F5F7
}

.top_nav .dropdown-menu li a:hover {
    color: #fff;
    background: #263950;
}

.attributes_table.table-striped>tbody>tr:nth-of-type(odd),
.entries_table.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #ececec;
}

.x_panel {
    width: 100%;
    display: inline-block;
    background: #fff;
    border: 1px solid #E6E9ED;
    /* -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    column-break-inside: avoid; */
    opacity: 1;
    transition: all .2s ease;
}

.scoll-half .table-condensed>tbody>tr>td {
    padding: 5px 10px;
    color: #232323;
    font-size: 15px;

}

.scoll-half {
    overflow: auto;
    max-height: 238px;
}

.x_title {
    border-bottom: 2px solid #E6E9ED;
    padding: 1px 5px 6px
}

.x_title .filter {
    width: 40%;
    float: right
}

.x_content,
table.tile td ul li a,
table.tile_info {
    width: 100%
}

.x_title h2 small {
    margin-left: 10px
}

.x_title span {
    color: #BDBDBD
}

.x_content {
    padding: 15px;
    float: left;
    clear: both;
    margin-top: 0px;
}

.x_content h4 {
    font-size: 24px;
    font-weight: 500;
    font-family: Arial, sans-serif;
}

legend {
    padding-bottom: 7px
}

.demo-placeholder {
    height: 280px
}

.profile_details:nth-child(3n) {
    clear: both
}

.profile_details .profile_view {
    display: inline-block;
    padding: 10px 0 0;
    background: #fff
}

.profile_details .profile_view .divider {
    border-top: 1px solid #e5e5e5;
    padding-top: 5px;
    margin-top: 5px
}

.profile_details .profile_view .ratings {
    margin-bottom: 0;
    text-align: left;
    font-size: 16px
}

.profile_details .profile_view .bottom {
    background: #F2F5F7;
    padding: 9px 0;
    border-top: 1px solid #E6E9ED
}

.profile_details .profile_view .left {
    margin-top: 20px
}

.profile_details .profile_view .left p {
    margin-bottom: 3px
}

.profile_details .profile_view .right {
    margin-top: 0;
    padding: 10px
}

.profile_details .profile_view .img-circle {
    border: 1px solid #E6E9ED;
    padding: 2px
}

.profile_details .profile_view h2 {
    margin: 5px 0
}

.profile_details .profile_view .brief {
    margin: 0;
    font-weight: 300
}

.profile_details .profile_left {
    background: #fff
}

.error-number {
    font-size: 90px;
    line-height: 90px;
    margin: 20px 0
}

.col-middle {
    margin-top: 5%
}

.mid_center {
    width: 370px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 20px
}

h3.degrees {
    font-size: 22px;
    font-weight: 400;
    text-align: center
}

.degrees:after {
    content: "o";
    top: -12px;
    font-size: 13px;
    font-weight: 300
}

.daily-weather .day {
    font-size: 14px;
    border-top: 2px solid rgba(115, 135, 156, .36);
    text-align: center;
    border-bottom: 2px solid rgba(115, 135, 156, .36);
    padding: 5px 0
}

.weather-days .col-sm-2 {
    width: 16.66666667%
}

.weather .row {
    margin-bottom: 0
}

.bulk-actions {
    display: none
}

table.countries_list {
    width: 100%
}

table.countries_list td {
    padding: 0 10px;
    line-height: 30px;
    border-top: 1px solid #eee
}

.dataTables_paginate a {
    padding: 6px 9px;
    background: #ddd;
    border-color: #ddd !important
}

.paging_full_numbers a.paginate_active {
    background-color: rgba(38, 185, 154, .59);
    border-color: rgba(38, 185, 154, .59) !important
}

a.DTTT_button,
button.DTTT_button,
div.DTTT_button {
    border: 1px solid #E7E7E7;
    background: #E7E7E7;
    box-shadow: none !important
}

table.jambo_table {
    border: 1px solid rgba(221, 221, 221, .78)
}

table.jambo_table thead {
    background: rgba(52, 73, 94, .94);
    color: #ECF0F1
}

table.jambo_table tbody tr:hover td {
    background: rgba(38, 185, 154, .07);
    border-top: 1px solid rgba(38, 185, 154, .11);
    border-bottom: 1px solid rgba(38, 185, 154, .11)
}

table.jambo_table tbody tr.selected {
    background: rgba(38, 185, 154, .16)
}

table.jambo_table tbody tr.selected td {
    border-top: 1px solid rgba(38, 185, 154, .4);
    border-bottom: 1px solid rgba(38, 185, 154, .4)
}

#listingTable_wrapper {
    position: relative;
    clear: both;
    width: 100%;
    /*overflow: auto;
    height: 80vh;*/
}

.dataTables_wrapper {
    position: relative;
    clear: both;
    zoom: 1
}

.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 30px;
    margin-left: -125px;
    margin-top: -15px;
    padding: 14px 0 2px;
    border: 1px solid #ddd;
    text-align: center;
    color: #999;
    font-size: 14px;
    background-color: #fff
}

td.details,
td.group {
    background-color: #d1cfd0
}

.dataTables_length {
    width: 40%;
    float: left
}

.dataTables_filter {
    width: 50%;
    float: right;
    text-align: right
}

.dataTables_info {
    width: 100%;
    float: left;
    padding-bottom: 8px;
    border-bottom: 1px #eee solid;
}

/*.dataTables_empty,*/
table.display td.center {
    text-align: center
}

table.dataTable td.focus,
table.dataTable th.focus {
    outline: #1ABB9C solid 2px;
    outline-offset: -1px
}

.paging_full_numbers a:active,
table.display thead td:active,
table.display thead th:active {
    outline: 0
}

table.display {
    margin: 0 auto;
    clear: both;
    width: 100%
}

table.display thead th {
    padding: 8px 18px 8px 10px;
    border-bottom: 1px solid #000;
    font-weight: 700;
    cursor: pointer
}

table.display tfoot th {
    padding: 3px 18px 3px 10px;
    border-top: 1px solid #000;
    font-weight: 700
}

table.display tr.heading2 td {
    border-bottom: 1px solid #aaa
}

table.display td {
    padding: 3px 10px
}

.dataTables_scroll {
    clear: both
}

.dataTables_scrollBody {
    -webkit-overflow-scrolling: touch;
    max-height: 65vh;
}

.top .dataTables_info {
    float: none
}

.clear {
    clear: both
}

tfoot input {
    margin: .5em 0;
    width: 100%;
    color: #444
}

tfoot input.search_init {
    color: #999
}

td.group {
    border-bottom: 2px solid #A19B9E;
    border-top: 2px solid #A19B9E
}

td.details {
    border: 2px solid #A19B9E
}

.example_alt_pagination div.dataTables_info {
    width: 40%
}

.paging_full_numbers {
    width: 400px;
    height: 22px;
    line-height: 22px
}

.paging_full_numbers a.paginate_active,
.paging_full_numbers a.paginate_button {
    border: 1px solid #aaa;
    border-radius: 5px;
    padding: 2px 5px;
    margin: 0 3px;
    cursor: pointer
}

.paging_full_numbers a.paginate_button {
    background-color: #ddd
}

.paging_full_numbers a.paginate_button:hover {
    background-color: #ccc;
    text-decoration: none !important
}

.login_content .btn-default:hover,
.login_content a,
.tagsinput span.tag a,
.tile-stats>.dash-box-footer,
.tile:hover,
.view a.info,
span.tag {
    text-decoration: none
}

table.display tr.even.row_selected td {
    background-color: #B0BED9
}

table.display tr.odd.row_selected td {
    background-color: #9FAFD1
}

div.box {
    height: 100px;
    padding: 10px;
    overflow: auto;
    border: 1px solid #8080FF;
    background-color: #E5E5FF
}

ul.msg_list li {
    background: #f7f7f7;
    padding: 5px;
    display: -ms-flexbox;
    display: flex;
    margin: 6px 6px 0;
    width: 96% !important
}

ul.msg_list li:last-child {
    margin-bottom: 6px;
    padding: 10px
}

ul.msg_list li a {
    padding: 3px 5px !important
}

ul.msg_list li a .image img {
    border-radius: 2px;
    -webkit-border-radius: 2px;
    float: left;
    margin-right: 10px;
    width: 11%
}

ul.msg_list li a .time {
    font-size: 11px;
    font-style: italic;
    font-weight: 700;
    position: absolute;
    right: 35px
}

ul.msg_list li a .message {
    display: block;
    font-size: 11px
}

.dropdown-menu.msg_list span {
    white-space: normal
}

.tile_count .tile_stats_count,
ul.quick-list li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.open>ul.dropdown-menu.top {
    display: block;
}

ul.dropdown-menu.top {
    box-shadow: none;
    display: none;
    float: left;
    font-size: 12px;
    left: 0;
    list-style: none;
    padding: 0;
    position: absolute;
    text-shadow: none;
    top: 100%;
    z-index: 9998;
    border: 0px solid #D9DEE4;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-top: 0px;
    margin-right: 5px;
    min-width: 118px;
    background: #263950d6;
}

.navbar-nav .open .dropdown-menu {
    position: absolute;
    background: #fff;
    margin-top: 0;
    border: 1px solid #D9DEE4;
    box-shadow: none;
    right: 0;
    left: auto;
    width: 220px
}

.navbar-nav .open .dropdown-menu.msg_list {
    width: 300px
}

.info-number .badge {
    font-size: 10px;
    font-weight: 400;
    line-height: 13px;
    padding: 2px 6px;
    position: absolute;
    right: 2px;
    top: 8px
}

ul.to_do {
    padding: 0
}

ul.to_do li {
    background: #f3f3f3;
    border-radius: 3px;
    position: relative;
    padding: 7px;
    margin-bottom: 5px;
    list-style: none
}

ul.to_do p {
    margin: 0
}

.dashboard-widget {
    background: #f6f6f6;
    border-top: 5px solid #79C3DF;
    border-radius: 3px;
    padding: 5px 10px 10px
}

.dashboard-widget .dashboard-widget-title {
    font-weight: 400;
    border-bottom: 1px solid #c1cdcd;
    margin: 0 0 10px;
    padding-bottom: 5px;
    padding-left: 40px;
    line-height: 30px
}

.dashboard-widget .dashboard-widget-title i {
    font-size: 100%;
    margin-left: -35px;
    margin-right: 10px;
    color: #33a1c9;
    padding: 3px 6px;
    border: 1px solid #abd9ea;
    border-radius: 5px;
    background: #fff
}

ul.quick-list {
    width: 45%;
    padding-left: 0;
    display: inline-block
}

ul.quick-list li {
    padding-left: 10px;
    list-style: none;
    margin: 0;
    padding-bottom: 6px;
    padding-top: 4px
}

ul.quick-list li i {
    padding-right: 10px;
    color: #757679
}

.dashboard-widget-content {
    padding-top: 9px
}

.dashboard-widget-content .sidebar-widget {
    width: 50%;
    vertical-align: top;
    background: #fff;
    border: 1px solid #abd9ea;
    border-radius: 5px;
    text-align: center;
    float: right;
    padding: 2px;
    margin-top: 10px
}

.widget_summary {
    width: 100%;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.widget_summary .w_left {
    float: left;
    text-align: left
}

.widget_summary .w_center {
    float: left
}

.widget_summary .w_right {
    float: left;
    text-align: right
}

.widget_summary .w_right span {
    font-size: 20px
}

.w_20 {
    width: 20%
}

.w_25 {
    width: 25%
}

.w_55 {
    width: 55%
}

h5.graph_title {
    text-align: left;
    margin-left: 10px
}

h5.graph_title i {
    margin-right: 10px;
    font-size: 17px
}

span.right {
    float: right;
    font-size: 14px !important
}

.tile_info a {
    text-overflow: ellipsis
}

.sidebar-footer {
    bottom: 0;
    clear: both;
    display: block;
    padding: 5px 0 0;
    position: fixed;
    width: 230px;
    background: #2A3F54;
    z-index: 999
}

.sidebar-footer a {
    padding: 7px 0 3px;
    text-align: center;
    width: 25%;
    font-size: 17px;
    display: block;
    float: left;
    background: #172D44;
    cursor: pointer
}

.sidebar-footer a:hover {
    background: #425567
}

.tile_count {
    margin-bottom: 20px;
    margin-top: 20px
}

.tile_count .tile_stats_count {
    border-bottom: 1px solid #D9DEE4;
    padding: 0 10px 0 20px;
    position: relative
}

.tile_count .tile_stats_count:before {
    content: "";
    position: absolute;
    left: 0;
    height: 65px;
    border-left: 2px solid #ADB2B5;
    margin-top: 10px
}

.tile_count .tile_stats_count .count {
    font-size: 30px;
    line-height: 47px;
    font-weight: 600
}

.tile_count .tile_stats_count .count_bottom i {
    width: 12px
}

.dashboard_graph {
    background: #fff;
    padding: 7px 10px
}

.dashboard_graph .col-md-3,
.dashboard_graph .col-md-9 {
    padding: 0
}

a.user-profile {
    color: #5E6974 !important
}

.user-profile img {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    margin-right: 10px
}

ul.top_profiles {
    height: 330px;
    width: 100%
}

ul.top_profiles li {
    margin: 0;
    padding: 3px 5px
}

ul.top_profiles li:nth-child(odd) {
    background-color: #eee
}

.media .profile_thumb {
    border: 1px solid;
    width: 50px;
    height: 50px;
    margin: 5px 10px 5px 0;
    border-radius: 50%;
    padding: 9px 12px
}

.media .profile_thumb i {
    font-size: 30px
}

.media .date {
    background: #ccc;
    width: 52px;
    margin-right: 10px;
    border-radius: 10px;
    padding: 5px
}

.media .date .day,
.media .date .month {
    margin: 0;
    text-align: center;
    color: #fff
}

.media .date .day {
    font-size: 27px;
    line-height: 27px;
    font-weight: 700
}

.event .media-body a.title {
    font-weight: 700
}

.event .media-body p {
    margin-bottom: 0
}

h4.graph_title {
    margin: 7px;
    text-align: center
}

.fontawesome-icon-list .fa-hover a:hover {
    background-color: #ddd;
    color: #fff;
    text-decoration: none
}

.fontawesome-icon-list .fa-hover a {
    display: block;
    line-height: 32px;
    height: 32px;
    padding-left: 10px;
    border-radius: 4px
}

.fontawesome-icon-list .fa-hover a:hover .fa {
    font-size: 28px;
    vertical-align: -6px
}

.fontawesome-icon-list .fa-hover a .fa {
    width: 32px;
    font-size: 16px;
    display: inline-block;
    text-align: right;
    margin-right: 10px
}

.main_menu .fa {
    width: 26px;
    opacity: .99;
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    -moz-osx-font-smoothing: grayscale
}

.tile-stats {
    position: relative;
    display: block;
    margin-bottom: 12px;
    border: 1px solid #E4E4E4;
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 5px;
    background-clip: padding-box;
    -moz-border-radius: 5px;
    -moz-background-clip: padding;
    border-radius: 5px;
    background: #FFF;
    transition: all .3s ease-in-out
}

.tile-stats:hover .icon i {
    animation-name: transformAnimation;
    animation-duration: .5s;
    animation-iteration-count: 1;
    color: rgba(58, 58, 58, .41);
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    -webkit-animation-name: transformAnimation;
    -webkit-animation-duration: .5s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-name: transformAnimation;
    -moz-animation-duration: .5s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease;
    -moz-animation-fill-mode: forwards
}

.tile-stats .icon {
    width: 20px;
    height: 20px;
    color: #BAB8B8;
    position: absolute;
    right: 53px;
    top: 22px;
    z-index: 1
}

.tile-stats .icon i {
    margin: 0;
    font-size: 60px;
    line-height: 0;
    vertical-align: bottom;
    padding: 0
}

.tile-stats .count {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.65857
}

.tile-stats .count,
.tile-stats h3,
.tile-stats p {
    position: relative;
    margin: 0 0 0 10px;
    z-index: 5;
    padding: 0
}

.tile-stats h3 {
    color: #BAB8B8
}

.tile-stats p {
    margin-top: 5px;
    font-size: 12px
}

.tile-stats>.dash-box-footer {
    position: relative;
    text-align: center;
    margin-top: 5px;
    padding: 3px 0;
    color: #fff;
    color: rgba(255, 255, 255, .8);
    display: block;
    z-index: 10;
    background: rgba(0, 0, 0, .1)
}

.tile-stats>.dash-box-footer:hover {
    color: #fff;
    background: rgba(0, 0, 0, .15)
}

table.tile_info {
    padding: 10px 15px
}

table.tile_info span.right {
    margin-right: 0;
    float: right;
    position: absolute;
    right: 4%
}

.tile_header {
    border-bottom: transparent;
    padding: 7px 15px;
    margin-bottom: 15px;
    background: #E7E7E7
}

.tile_head h4 {
    margin-top: 0;
    margin-bottom: 5px
}

.tiles-bottom {
    padding: 5px 10px;
    margin-top: 10px;
    background: rgba(194, 194, 194, .3);
    text-align: left
}

a.star {
    color: #428bca !important
}

.mail_content {
    background: #FFF;
    border-radius: 4px;
    margin-top: 20px;
    min-height: 500px;
    padding: 10px 11px;
    width: 100%
}

.list-btn-mail {
    margin-bottom: 15px
}

.list-btn-mail.active {
    border-bottom: 1px solid #39B3D7;
    padding: 0 0 14px
}

.list-btn-mail>i {
    float: left;
    font-size: 18px;
    font-style: normal;
    width: 33px
}

.list-btn-mail>.cn {
    background: #39B3D7;
    border-radius: 12px;
    color: #FFF;
    float: right;
    font-style: normal;
    padding: 0 5px
}

.byline,
.view p {
    font-style: italic
}

.button-mail {
    margin: 0 0 15px;
    text-align: left;
    width: 100%
}

.btn-group .btn,
.btn-group-vertical .btn {
    margin-bottom: 0;
    margin-right: 0;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: #000;
}


.mail_list_column,
.mail_view {
    border-left: 1px solid #DBDBDB
}

.mail_list {
    width: 100%;
    border-bottom: 1px solid #DBDBDB;
    margin-bottom: 2px;
    display: inline-block
}

.mail_list .left {
    width: 5%;
    float: left;
    margin-right: 3%
}

.mail_list .right {
    width: 90%;
    float: left
}

.mail_list h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px
}

.mail_list h3 small {
    float: right;
    color: #ADABAB;
    font-size: 11px;
    line-height: 20px
}

.mail_list .badge {
    padding: 3px 6px;
    font-size: 8px;
    background: #BAB7B7
}

.mail_heading h4 {
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-top: 20px
}

.attachment {
    margin-top: 30px
}

.attachment ul {
    width: 100%;
    list-style: none;
    padding-left: 0;
    display: inline-block;
    margin-bottom: 30px
}

.attachment ul li {
    float: left;
    width: 150px;
    margin-right: 10px;
    margin-bottom: 10px
}

.attachment ul li img {
    height: 150px;
    border: 1px solid #ddd;
    padding: 5px;
    margin-bottom: 10px
}

.attachment ul li span {
    float: right
}

.attachment .file-name {
    float: left
}

.attachment .links {
    width: 100%;
    display: inline-block
}

.compose {
    padding: 0;
    position: fixed;
    bottom: 0;
    right: 0;
    background: #fff;
    border: 1px solid #D9DEE4;
    border-right: 0;
    border-bottom: 0;
    border-top-left-radius: 5px;
    z-index: 9999;
    display: none
}

.compose .compose-header {
    padding: 5px;
    background: #169F85;
    color: #fff;
    border-top-left-radius: 5px
}

.compose .compose-header .close {
    text-shadow: 0 1px 0 #fff;
    line-height: .8
}

.compose .compose-body .editor.btn-toolbar {
    margin: 0
}

.compose .compose-body .editor-wrapper {
    height: 100%;
    min-height: 50px;
    max-height: 180px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    overflow: auto
}

.compose .compose-footer {
    padding: 10px
}

.editor.btn-toolbar {
    zoom: 1;
    background: #F7F7F7;
    margin: 5px 2px;
    padding: 3px 0;
    border: 1px solid #EFEFEF
}

.padding-bottom-24 {
    padding-bottom: 24px;
}

.input-group {
    margin-bottom: 10px
}

.ln_solid {
    border-top: 1px solid #e5e5e5;
    color: #fff;
    background-color: #fff;
    height: 1px;
    margin: 20px 0
}

span.section {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5
}

.form-control:focus {
    border-color: #b4bac4;
    box-shadow: none !important;
    color: #041b32;
  }

legend {
    font-size: 18px;
    color: inherit
}

.form-horizontal .form-group {
    margin-right: 0;
    margin-left: 0
}

.form-control-feedback {
    margin-top: 8px;
    height: 23px;
    color: #bbb;
    line-height: 24px;
    font-size: 15px
}

.form-control-feedback.left {
    border-right: 1px solid #ccc;
    left: 13px
}

.form-control-feedback.right {
    border-left: 1px solid #ccc;
    right: 13px
}

.form-control.has-feedback-left {
    padding-left: 45px
}

.form-control.has-feedback-right {
    padding-right: 45px
}

.validate {
    margin-top: 10px
}

.invalid-form-error-message {
    margin-top: 10px;
    padding: 5px
}

.invalid-form-error-message.filled {
    border-left: 2px solid #E74C3C
}

p.parsley-success {
    color: #468847;
    background-color: #DFF0D8;
    border: 1px solid #D6E9C6
}

p.parsley-error {
    color: #B94A48;
    background-color: #F2DEDE;
    border: 1px solid #EED3D7
}

ul.parsley-errors-list {
    list-style: none;
    color: #E74C3C;
    padding-left: 0
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
    background: #FAEDEC;
    border: 1px solid #E85445
}

.btn-group .parsley-errors-list {
    display: none
}

.bad input,
.bad select,
.bad textarea {
    border: 1px solid #CE5454;
    box-shadow: 0 0 4px -2px #CE5454;
    position: relative;
    left: 0;
    animation: .7s 1 shake linear;
    -webkit-animation: .7s 1 shake linear
}

.item .alert {
    float: left;
    margin: 0 0 0 20px;
    padding: 3px 10px;
    color: #FFF;
    border-radius: 3px 4px 4px 3px;
    background-color: #CE5454;
    max-width: 170px;
    white-space: pre;
    position: relative;
    left: -15px;
    opacity: 0;
    z-index: 1;
    transition: .15s ease-out
}

.item .alert::after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    border-color: transparent #CE5454 transparent transparent;
    border-style: solid;
    border-width: 11px 7px;
    position: absolute;
    left: -13px;
    top: 1px
}

.item.bad .alert {
    left: 0;
    opacity: 1
}

.inl-bl {
    display: inline-block
}

.well .markup {
    background: #fff;
    color: #777;
    position: relative;
    padding: 45px 15px 15px;
    margin: 15px 0 0;
    border-radius: 0 0 4px 4px;
    box-shadow: none
}

.well .markup::after {
    content: "Example";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 12px;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px
}

.autocomplete-suggestions {
    border: 1px solid #e4e4e4;
    background: #F4F4F4;
    cursor: default;
    overflow: auto
}

.autocomplete-suggestion {
    padding: 2px 5px;
    font-size: 1.2em;
    white-space: nowrap;
    overflow: hidden
}

.autocomplete-selected {
    background: #f0f0f0
}

.autocomplete-suggestions strong {
    color: #39f;
    font-weight: bolder
}

a.btn-danger,
a.btn-primary,
a.btn-success,
a.btn-warning {
    color: #fff
}

.btn-success {
    background: #26B99A;
    border: 1px solid #169F85
}

.btn-success.active,
.btn-success:active,
.btn-success:focus,
.btn-success:hover,
.open .dropdown-toggle.btn-success {
    background: #169F85
}

.btn-dark {
    color: #E9EDEF;
    background-color: #4B5F71;
    border-color: #364B5F
}

.btn-dark.active,
.btn-dark:active,
.btn-dark:focus,
.btn-dark:hover,
.open .dropdown-toggle.btn-dark {
    color: #FFF;
    background-color: #394D5F;
    border-color: #394D5F
}

.btn-round {
    border-radius: 30px
}

.btn.btn-app {
    position: relative;
    padding: 15px 5px;
    margin: 0 0 10px 10px;
    min-width: 80px;
    height: 60px;
    box-shadow: none;
    border-radius: 0;
    text-align: center;
    color: #666;
    border: 1px solid #ddd;
    background-color: #fafafa;
    font-size: 12px
}

.btn.btn-app>.fa,
.btn.btn-app>.glyphicon,
.btn.btn-app>.ion {
    font-size: 20px;
    display: block
}

.btn.btn-app:hover {
    background: #f4f4f4;
    color: #444;
    border-color: #aaa
}

.btn.btn-app:active,
.btn.btn-app:focus {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn.btn-app>.badge {
    position: absolute;
    top: -3px;
    right: -10px;
    font-size: 10px;
    font-weight: 400
}

textarea {
    padding: 10px;
    vertical-align: top;
    width: 200px
}

textarea:focus {
    outline-style: solid;
    outline-width: 2px
}

.btn_ {
    display: inline-block;
    padding: 3px 9px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #333;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
    background-color: #f5f5f5;
    background-image: linear-gradient(to bottom, #fff, #e6e6e6);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    border: 1px solid #ccc;
    border-bottom-color: #b3b3b3;
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05)
}

.bs-glyphicons {
    margin: 0 -10px 20px;
    overflow: hidden
}

.bs-glyphicons-list {
    padding-left: 0;
    list-style: none
}

.bs-glyphicons li {
    float: left;
    width: 25%;
    height: 115px;
    padding: 10px;
    font-size: 10px;
    line-height: 1.4;
    text-align: center;
    background-color: #f9f9f9;
    border: 1px solid #fff
}

.bs-glyphicons .glyphicon {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 24px
}

.bs-glyphicons .glyphicon-class {
    display: block;
    text-align: center;
    word-wrap: break-word
}

.bs-glyphicons li:hover {
    color: #fff;
    background-color: #1ABB9C
}

.tagsinput {
    border: 1px solid #CCC;
    background: #FFF;
    padding: 6px 6px 0;
    width: 300px;
    overflow-y: auto
}

span.tag {
    border-radius: 2px;
    display: block;
    float: left;
    padding: 5px 9px;
    background: #1ABB9C;
    color: #F1F6F7;
    margin-right: 5px;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: helvetica
}

span.tag a {
    color: #F1F6F7 !important
}

.tagsinput span.tag a {
    font-weight: 700;
    color: #82ad2b;
    font-size: 11px
}

.tagsinput input {
    width: 80px;
    margin: 0;
    font-family: helvetica;
    font-size: 13px;
    border: 1px solid transparent;
    padding: 3px;
    background: 0 0;
    color: #000;
    outline: 0
}

.tagsinput div {
    display: block;
    float: left
}

.social-body,
.social-sidebar,
ul.bar_tabs.right li {
    float: right
}

.tags_clear {
    clear: both;
    width: 100%;
    height: 0
}

.not_valid {
    background: #FBD8DB;
    color: #90111A !important
}

ul.bar_tabs {
    overflow: visible;
    background: #fff;
    height: 25px;
    margin: 0px 0 10px 0;
    padding-left: 14px;
    position: relative;
    z-index: 1;
    width: 100%;
    border-bottom: 2px solid #c0dafa;
}

ul.bar_tabs>li a {
    background: #F5F7FA;
    margin: 0;
    border-top-right-radius: 0
}

ul.bar_tabs>li a:hover {
    border: 1px solid transparent
}

ul.bar_tabs.right {
    padding-right: 14px
}

a:focus {
    outline: 0
}

ul.timeline li {
    position: relative;
    border-bottom: 1px solid #e8e8e8;
    clear: both
}

.timeline .block {
    margin: 0 0 0 105px;
    border-left: 3px solid #e8e8e8;
    overflow: visible;
    padding: 10px 15px
}

.timeline.widget {
    min-width: 0;
    max-width: inherit
}

.timeline.widget .block {
    margin-left: 5px
}

.timeline .tags {
    position: absolute;
    top: 15px;
    left: 0;
    width: 84px
}

.timeline .tag {
    display: block;
    height: 30px;
    font-size: 13px;
    padding: 8px
}

.timeline .tag span {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis
}

.tag {
    line-height: 1;
    background: #1ABB9C;
    color: #fff !important
}

.tag:after {
    content: " ";
    height: 30px;
    width: 0;
    position: absolute;
    left: 100%;
    top: 0;
    margin: 0;
    pointer-events: none;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 11px solid #1ABB9C
}

.timeline h2.title {
    position: relative;
    font-size: 16px;
    margin: 0
}

.timeline h2.title:before {
    content: "";
    position: absolute;
    left: -23px;
    top: 3px;
    display: block;
    width: 14px;
    height: 14px;
    border: 3px solid #d2d3d2;
    border-radius: 14px;
    background: #f9f9f9
}

.timeline .byline {
    padding: .25em 0
}

.byline {
    font-size: .9375em;
    line-height: 1.3;
    color: #aab6aa
}

ul.social li {
    border: 0
}

.social-sidebar {
    background: #EDEDED;
    width: 22%
}

.social-body {
    border: 1px solid #ccc;
    width: 78%
}

.thumb img {
    width: 50px;
    height: 50px;
    border-radius: 50%
}

.chat .thumb img {
    width: 27px;
    height: 27px;
    border-radius: 50%
}

.chat .status {
    float: left;
    margin: 16px 0 0 -16px;
    font-size: 14px;
    font-weight: 700;
    width: 12px;
    height: 12px;
    display: block;
    border: 2px solid #FFF;
    z-index: 12312;
    border-radius: 50%
}

.chart,
.percent {
    display: inline-block
}

.chat .status.online {
    background: #1ABB9C
}

.chat .status.away {
    background: #F39C12
}

.chat .status.offline {
    background: #ccc
}

.chat .media-body {
    padding-top: 5px
}

.dashboard_graph .x_title {
    padding: 5px 5px 7px
}

.dashboard_graph .x_title h3 {
    margin: 0;
    font-weight: 400
}

.chart {
    position: relative;
    width: 110px;
    height: 110px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center
}

.chart canvas {
    position: absolute;
    top: 0;
    left: 0
}

.percent {
    line-height: 110px;
    z-index: 2;
    font-size: 18px
}

.percent:after {
    content: '%';
    margin-left: .1em;
    font-size: .8em
}

.angular {
    margin-top: 100px
}

.angular .chart {
    margin-top: 0
}

.widget {
    min-width: 250px;
    max-width: 310px
}

.widget_tally_box .btn-group button {
    text-align: center;
    color: inherit;
    font-weight: 500;
    background-color: #f5f5f5;
    border: 1px solid #e7e7e7
}

ul.widget_tally,
ul.widget_tally li {
    width: 100%
}

ul.widget_tally li {
    padding: 2px 10px 4px;
    border-bottom: 1px solid #ECECEC
}

ul.widget_tally .month {
    width: 70%;
    float: left
}

ul.widget_tally .count {
    width: 30%;
    float: left;
    text-align: right
}

.pie_bg {
    border-bottom: 1px solid rgba(101, 204, 182, .16);
    border-radius: 4px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    padding-bottom: 10px;
    box-shadow: 0 4px 6px -6px #222
}

.widget_tally_box .flex {
    display: -ms-flexbox;
    display: flex
}

ul.widget_profile_box {
    width: 100%;
    height: 42px;
    padding: 3px;
    background: #ececec;
    margin-top: 40px;
    margin-left: 1px
}

ul.widget_profile_box li:first-child {
    width: 25%;
    float: left
}

ul.widget_profile_box li:first-child a {
    float: left
}

ul.widget_profile_box li:last-child {
    width: 25%;
    float: right
}

ul.widget_profile_box li:last-child a {
    float: right
}

ul.widget_profile_box li a {
    font-size: 22px;
    text-align: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(52, 73, 94, .44);
    display: block;
    border-radius: 50%;
    padding: 0
}

ul.widget_profile_box li a:hover {
    color: #1ABB9C;
    border: 1px solid #26b99a
}

ul.widget_profile_box li .profile_img {
    width: 85px;
    height: 85px;
    margin: -28px 0 0
}

.widget_tally_box p,
.widget_tally_box span {
    text-align: center
}

.widget_tally_box .name {
    text-align: center;
    margin: 25px
}

.widget_tally_box .name_title {
    text-align: center;
    margin: 5px
}

.widget_tally_box ul.legend {
    margin: 0
}

.widget_tally_box ul.legend p,
.widget_tally_box ul.legend span {
    text-align: left
}

.widget_tally_box ul.legend li .icon {
    font-size: 20px;
    float: left;
    width: 14px
}

.widget_tally_box ul.legend li .name {
    font-size: 14px;
    margin: 5px 0 0 14px;
    text-overflow: ellipsis;
    float: left
}

.widget_tally_box ul.legend p {
    display: inline-block;
    margin: 0
}

.widget_tally_box ul.verticle_bars li {
    height: 140px;
    width: 23%
}

.widget .verticle_bars li .progress.vertical.progress_wide {
    width: 65%
}

ul.count2 {
    width: 100%;
    margin-left: 1px;
    border: 1px solid #ddd;
    border-left: 0;
    border-right: 0;
    padding: 10px 0
}

ul.count2 li {
    width: 30%;
    text-align: center
}

ul.count2 li h3 {
    font-weight: 400;
    margin: 0
}

ul.count2 li span {
    font-weight: 300
}

.divider {
    border-bottom: 1px solid #ddd;
    margin: 10px
}

.divider-dashed {
    border-top: 1px dashed #e7eaec;
    background-color: #fff;
    height: 1px;
    margin: 10px 0
}

ul.messages {
    padding: 0;
    list-style: none
}

.tasks li,
ul.messages li {
    border-bottom: 1px dotted #e6e6e6;
    padding: 8px 0
}

img.avatar,
ul.messages li img.avatar {
    height: 32px;
    width: 32px;
    float: left;
    border-radius: 2px;
    padding: 2px;
    background: #f7f7f7;
    border: 1px solid #e6e6e6
}

ul.messages li .message_date {
    float: right;
    text-align: right
}

ul.messages li .message_wrapper {
    margin-left: 50px;
    margin-right: 40px
}

ul.messages li .message_wrapper h4.heading {
    font-weight: 600;
    margin: 0 0 10px;
    cursor: pointer;
    line-height: 100%
}

ul.messages li .message_wrapper blockquote {
    padding: 0 10px;
    margin: 0;
    border-left: 5px solid #eee
}

ul.user_data li {
    margin-bottom: 6px
}

ul.user_data li p {
    margin-bottom: 0
}

ul.user_data li .progress {
    width: 90%
}

.project_progress .progress {
    margin-bottom: 3px;
    margin-top: 5px
}

.projects .list-inline {
    margin: 0
}

.profile_title {
    background: #F5F7FA;
    border: 0;
    padding: 7px 0;
    display: -ms-flexbox;
    display: flex
}

ul.stats-overview {
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 10px;
    margin-bottom: 10px
}

ul.stats-overview li {
    display: inline-block;
    text-align: center;
    padding: 0 15px;
    width: 30%;
    font-size: 14px;
    border-right: 1px solid #e8e8e8
}

ul.stats-overview li:last-child {
    border-right: 0
}

ul.stats-overview li .name {
    font-size: 12px
}

ul.stats-overview li .value {
    font-size: 14px;
    font-weight: 700;
    display: block
}

ul.stats-overview li:first-child {
    padding-left: 0
}

ul.project_files li {
    margin-bottom: 5px
}

ul.project_files li a i {
    width: 20px
}

.project_detail p {
    margin-bottom: 10px
}

.project_detail p.title {
    font-weight: 700;
    margin-bottom: 0
}

.avatar img {
    border-radius: 50%;
    max-width: 45px
}

.pricing {
    background: #fff
}

.pricing .title {
    background: #1ABB9C;
    height: 110px;
    color: #fff;
    padding: 15px 0 0;
    text-align: center
}

.pricing .title h2 {
    text-transform: capitalize;
    font-size: 18px;
    border-radius: 5px 5px 0 0;
    margin: 0;
    font-weight: 400
}

.notifications a,
.tabbed_notifications h2,
.view .tools,
.view a.info {
    text-transform: uppercase
}

.pricing .title h1 {
    font-size: 30px;
    margin: 12px
}

.pricing .title span {
    background: rgba(51, 51, 51, .28);
    padding: 2px 5px
}

.pricing_features {
    background: #FAFAFA;
    padding: 20px 15px;
    min-height: 230px;
    font-size: 13.5px
}

.pricing_features ul li {
    margin-top: 10px
}

.pricing_footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    text-align: center;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.pricing_footer p {
    font-size: 13px;
    padding: 10px 0 2px;
    display: block
}

.ui-ribbon-container {
    position: relative
}

.ui-ribbon-container .ui-ribbon-wrapper {
    position: absolute;
    overflow: hidden;
    width: 85px;
    height: 88px;
    top: -3px;
    right: -3px
}

.ui-ribbon-container.ui-ribbon-primary .ui-ribbon {
    background-color: #5b90bf
}

.ui-ribbon-container .ui-ribbon {
    position: relative;
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    transform: rotate(45deg);
    padding: 7px 0;
    left: -5px;
    top: 15px;
    width: 120px;
    line-height: 20px;
    background-color: #555;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3)
}

.ui-ribbon-container.ui-ribbon-primary .ui-ribbon:after,
.ui-ribbon-container.ui-ribbon-primary .ui-ribbon:before {
    border-top: 2px solid #5b90bf
}

.ui-ribbon-container .ui-ribbon:before {
    left: 0;
    bottom: -1px;
    right: 0
}

.ui-ribbon-container .ui-ribbon:after,
.ui-ribbon-container .ui-ribbon:before {
    position: absolute;
    content: " ";
    line-height: 0;
    border-top: 2px solid #555;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent
}

.thumbnail .image {
    height: 120px;
    overflow: hidden
}

.caption {
    padding: 9px 5px;
    background: #F7F7F7
}

.caption p {
    margin-bottom: 5px
}

.thumbnail {
    height: 190px;
    overflow: hidden
}

.view {
    overflow: hidden;
    position: relative;
    text-align: center;
    box-shadow: 1px 1px 2px #e6e6e6;
    cursor: default
}

.dropdown-menu a,
.voiceBtn {
    cursor: pointer
}

.view .content,
.view .mask {
    position: absolute;
    width: 100%;
    overflow: hidden;
    top: 0;
    left: 0
}

.sideways,
.view .tools,
.view img,
.view p {
    position: relative
}

.view img {
    display: block
}

.view .tools {
    color: #fff;
    text-align: center;
    font-size: 17px;
    padding: 3px;
    background: rgba(0, 0, 0, .35);
    margin: 43px 0 0
}

.mask.no-caption .tools {
    margin: 90px 0 0
}

.view .tools a {
    display: inline-block;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    padding: 0 4px
}

.view p {
    font-family: Georgia, serif;
    font-size: 12px;
    color: #fff;
    padding: 10px 20px 20px;
    text-align: center
}

.view a.info {
    display: inline-block;
    padding: 7px 14px;
    background: #000;
    color: #fff;
    box-shadow: 0 0 1px #000
}

.view-first img {
    transition: all .2s linear
}

.view-first .mask {
    opacity: 0;
    background-color: rgba(0, 0, 0, .5);
    transition: all .4s ease-in-out
}

.view-first .tools {
    transform: translateY(-100px);
    opacity: 0;
    transition: all .2s ease-in-out
}

.view-first p {
    transform: translateY(100px);
    opacity: 0;
    transition: all .2s linear
}

.view-first:hover img {
    transform: scale(1.1)
}

.view-first:hover .mask {
    opacity: 1
}

.view-first:hover .tools,
.view-first:hover p {
    opacity: 1;
    transform: translateY(0)
}

.view-first:hover p {
    transition-delay: .1s
}

.form-group.has-feedback span {
    display: block !important
}

.input-group-btn .btn {
    margin-bottom: 0
}

.input-group.date .input-group-addon {
    border-radius: 0px;
    background-color: #ffff !important
}

/*! * bootstrap-vertical-tabs - v1.2.1 * https://dbtek.github.io/bootstrap-vertical-tabs * 2014-11-07 * Copyright (c) 2014 Ä°smail Demirbilek * License: MIT */
.tabs-left,
.tabs-right {
    border-bottom: none;
    padding-top: 2px
}

.tabs-left {
    border-right: 1px solid #F7F7F7
}

.tabs-right {
    border-left: 1px solid #F7F7F7
}

.tabs-left>li,
.tabs-right>li {
    float: none;
    margin-bottom: 2px
}

.tabs-left>li {
    margin-right: -1px
}

.tabs-left>li>a,
.tabs-right>li>a {
    margin-right: 0;
    background: #F7F7F7;
    overflow: hidden;
    text-overflow: ellipsis
}

.tabs-right>li {
    margin-left: -1px
}

.tabs-left>li.active>a,
.tabs-left>li.active>a:focus,
.tabs-left>li.active>a:hover {
    border-bottom-color: #F7F7F7;
    border-right-color: transparent
}

.tabs-right>li.active>a,
.tabs-right>li.active>a:focus,
.tabs-right>li.active>a:hover {
    border-bottom: 1px solid #F7F7F7;
    border-left-color: transparent
}

.tabs-left>li>a {
    border-radius: 4px 0 0 4px;
    display: block
}

.tabs-right>li>a {
    border-radius: 0 4px 4px 0
}

.sideways {
    margin-top: 50px;
    border: none
}

.sideways>li {
    height: 20px;
    width: 120px;
    margin-bottom: 100px
}

.sideways>li>a {
    border-bottom: 1px solid #ddd;
    border-right-color: transparent;
    text-align: center;
    border-radius: 4px 4px 0 0
}

.sideways>li.active>a,
.sideways>li.active>a:focus,
.sideways>li.active>a:hover {
    border-bottom-color: transparent;
    border-right-color: #ddd;
    border-left-color: #ddd
}

.sideways.tabs-left {
    left: -50px
}

.sideways.tabs-right {
    right: -50px
}

.sideways.tabs-right>li {
    transform: rotate(90deg)
}

.sideways.tabs-left>li {
    transform: rotate(-90deg)
}

.morris-hover {
    position: absolute;
    z-index: 1000
}

.morris-hover.morris-default-style {
    padding: 6px;
    color: #666;
    background: rgba(243, 242, 243, .8);
    border: 2px solid rgba(195, 194, 196, .8);
    font-family: sans-serif;
    font-size: 12px;
    text-align: center
}

.morris-hover.morris-default-style .morris-hover-row-label {
    font-weight: 700;
    margin: .25em 0
}

.morris-hover.morris-default-style .morris-hover-point {
    white-space: nowrap;
    margin: .1em 0
}

.price {
    font-size: 40px;
    font-weight: 400;
    color: #26B99A;
    margin: 0
}

.prod_title {
    border-bottom: 1px solid #DFDFDF;
    padding-bottom: 5px;
    margin: 30px 0;
    font-size: 20px;
    font-weight: 400
}

.product-image img {
    width: 90%
}

.prod_color li {
    margin: 0 10px
}

.prod_color li p {
    margin-bottom: 0
}

.prod_size li {
    padding: 0
}

.prod_color .color {
    width: 25px;
    height: 25px;
    border: 2px solid rgba(51, 51, 51, .28);
    padding: 2px;
    border-radius: 50px
}

.product_gallery a {
    width: 100px;
    height: 100px;
    float: left;
    margin: 10px;
    border: 1px solid #e5e5e5
}

.product_gallery a img {
    width: 100%;
    margin-top: 15px
}

.product_price {
    margin: 20px 0;
    padding: 5px 10px;
    background-color: #FFF;
    text-align: left;
    border: 2px dashed #E0E0E0
}

.price-tax {
    font-size: 18px
}

.product_social {
    margin: 20px 0
}

.product_social ul li a i {
    font-size: 35px
}

.login {
    background: #F7F7F7
}

.login .fa-paw {
    font-size: 26px
}

a.hiddenanchor {
    display: none
}

.login_wrapper {
    right: 0;
    margin: 5% auto 0;
    max-width: 414px;
    position: relative;
}


.login_form,
.registration_form {
    position: absolute;
    top: 0;
    width: 100%
}

.registration_form {
    z-index: 21;
    opacity: 0;
    width: 100%
}

.login_form {
    z-index: 22
}

#signin:target~.login_wrapper .login_form,
#signup:target~.login_wrapper .registration_form {
    z-index: 22;
    animation-name: fadeInLeft;
    animation-delay: .1s
}

#signin:target~.login_wrapper .registration_form,
#signup:target~.login_wrapper .login_form {
    animation-name: fadeOutLeft
}

.animate {
    -webkit-animation-duration: .5s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-duration: .5s;
    -moz-animation-timing-function: ease;
    -moz-animation-fill-mode: both;
    -o-animation-duration: .5s;
    -o-animation-timing-function: ease;
    -o-animation-fill-mode: both;
    -ms-animation-duration: .5s;
    -ms-animation-timing-function: ease;
    -ms-animation-fill-mode: both;
    animation-duration: .5s;
    animation-timing-function: ease;
    animation-fill-mode: both
}

.login_box {
    padding: 20px;
    margin: auto
}

.alignleft {
    margin-right: 15px
}

.alignright {
    float: right;
    margin-left: 15px
}

.clearfix:after, form:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.login_content {
    margin: 35px 0 0;
    position: relative;
    text-align: center;
    background: #bdd8f8;
    padding: 20px 30px;
    color: #000;
    box-shadow: 0px 2px 3px 2px #0000003b;
    border-radius: 6px;
    padding-bottom: 0px;
}

.login_content a:hover {
    text-decoration: underline
}

.login_content h1 {
    line-height: 20px;
    margin: 10px 0 30px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    color: black;
}

.login_content form input[type=text],
.login_content form input[type=email],
.login_content form input[type=password] {
    border-radius: 3px;
    -ms-box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0, 0, 0, .08) inset;
    -o-box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0, 0, 0, .08) inset;
    box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0, 0, 0, .08) inset;
    border: 1px solid #1a1d2d;
    color: #777;
    width: 100%;
    padding: 12px 12px;
    margin-bottom: 8px;
    height: auto;
}

.login_content h1:before {
    background: #7e7e7e;
    background: linear-gradient(right, #7e7e7e 0, #fff 100%);
    left: 0
}

.login_content form {
    margin: 20px 0;
    position: relative
}

.login_content form input[type=text],
.login_content form input[type=email],
.login_content form input[type=password] {
    border-radius: 3px;
    -ms-box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0, 0, 0, .08) inset;
    -o-box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0, 0, 0, .08) inset;
    box-shadow: 0 1px 0 #fff, 0 -2px 5px rgba(0, 0, 0, .08) inset;
    border: 1px solid #c8c8c8;
    color: #777;
    margin: 0 0 20px;
    width: 100%
}

.login_content form input[type=text]:focus,
.login_content form input[type=email]:focus,
.login_content form input[type=password]:focus {
    -ms-box-shadow: 0 0 2px #ed1c24 inset;
    -o-box-shadow: 0 0 2px #ed1c24 inset;
    box-shadow: 0 0 2px #1a1d2d inset;
    background-color: #fff;
    border: 1px solid #1a1d2d;
    outline: 0
}

.login_page_center .login_section {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.login_page_center .login_section .form.login_form {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 414px;
    height: 337px;
}
.login_page_center .login_section .form.login_form .login_content {
  margin-top: 0;
}


#username {
    background-position: 10px 10px !important
}

#password {
    background-position: 10px -53px !important
}

.login_content form div a {
    font-size: 15px;
    margin: 10px 15px 0 0;
    color: #000000;
}

.reset_pass {
    margin-top: 10px !important
}

.login_content div .reset_pass {
    margin-top: 13px;
    margin-right: 39px;
    float: right
}

.separator {
    border-top: 1px solid #D8D8D8;
    margin-top: 10px;
    padding-top: 10px
}

.button {
    background: #f7f9fa;
    background: linear-gradient(top, #f7f9fa 0, #f0f0f0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f9fa', endColorstr='#f0f0f0', GradientType=0);
    -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
    -o-box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
    border-radius: 0 0 5px 5px;
    border-top: 1px solid #CFD5D9;
    padding: 15px 0
}

#content form .submit,
.login_content form input[type=submit] {
    float: left;
    margin-left: 38px
}

.button a {
    background: url(http://cssdeck.com/uploads/media/items/8/8bcLQqF.png) 0 -112px no-repeat;
    color: #7E7E7E;
    font-size: 17px;
    padding: 2px 0 2px 40px;
    text-decoration: none;
    transition: all .3s ease
}

.button a:hover {
    background-position: 0 -135px;
    color: #00aeef
}

header {
    width: 100%
}

#nprogress .bar {
    background: #1ABB9C
}

#nprogress .peg {
    box-shadow: 0 0 10px #1ABB9C, 0 0 5px #1ABB9C
}

#nprogress .spinner-icon {
    border-top-color: #1ABB9C;
    border-left-color: #1ABB9C
}

.editor-wrapper {
    min-height: 250px;
    background-color: #fff;
    border-collapse: separate;
    border: 1px solid #ccc;
    padding: 4px;
    box-sizing: content-box;
    box-shadow: rgba(0, 0, 0, .07451) 0 1px 1px 0 inset;
    overflow: scroll;
    outline: 0;
    border-radius: 3px
}

.voiceBtn {
    width: 20px;
    color: transparent;
    background-color: transparent;
    transform: scale(2, 2);
    -webkit-transform: scale(2, 2);
    -moz-transform: scale(2, 2);
    border: transparent;
    box-shadow: none;
    -webkit-box-shadow: none
}

div[data-role=editor-toolbar] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0;
    min-height: 38px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #73879C;
    padding-top: 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding-top: 3px
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-top: 2px;
    border: none;
    border-radius: 0;
    padding: 3px 5px
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #ccc
}

.switchery {
    width: 32px;
    height: 20px
}

.switchery>small {
    width: 20px;
    height: 20px
}

fieldset {
    border: none;
    margin: 0;
    padding: 0
}

.cropper .img-container,
.cropper .img-preview {
    background-color: #f7f7f7;
    width: 100%;
    text-align: center
}

.cropper .img-container {
    min-height: 200px;
    max-height: 516px;
    margin-bottom: 20px
}

.cropper .docs-data>.input-group,
.cropper .docs-toggles>.btn,
.cropper .docs-toggles>.btn-group,
.cropper .docs-toggles>.dropdown,
.cropper .img-preview {
    margin-bottom: 10px
}

.cropper .docs-preview {
    margin-right: -15px
}

.cropper .img-preview {
    float: left;
    margin-right: 10px;
    overflow: hidden
}

.cropper .preview-lg {
    width: 263px;
    height: 148px
}

.cropper .preview-md {
    width: 139px;
    height: 78px
}

.cropper .preview-sm {
    width: 69px;
    height: 39px
}

.cropper .preview-xs {
    width: 35px;
    height: 20px;
    margin-right: 0
}

.cropper .docs-data>.input-group>label {
    min-width: 80px
}

.cropper .docs-data>.input-group>span {
    min-width: 50px
}

.cropper .docs-buttons>.btn,
.cropper .docs-buttons>.btn-group,
.cropper .docs-buttons>.form-control {
    margin-right: 5px;
    margin-bottom: 10px
}

.cropper .docs-tooltip {
    display: block;
    margin: -6px -12px;
    padding: 6px 12px
}

.cropper .docs-tooltip>.icon {
    margin: 0 -3px;
    vertical-align: top
}

.cropper .tooltip-inner {
    white-space: normal
}

.cropper .btn-toggle .tooltip-inner,
.cropper .btn-upload .tooltip-inner {
    white-space: nowrap
}

.cropper .btn-toggle {
    padding: 6px
}

.cropper .btn-toggle>.docs-tooltip {
    margin: -6px;
    padding: 6px
}

.cropper .docs-options .dropdown-menu {
    width: 100%
}

.cropper .docs-options .dropdown-menu>li {
    padding: 3px 20px
}

.cropper .docs-options .dropdown-menu>li:hover {
    background-color: #f7f7f7
}

.cropper .docs-options .dropdown-menu>li>label {
    display: block
}



.cropper .docs-cropped canvas {
    max-width: 100%
}

.form_wizard .stepContainer {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    border: 0 solid #CCC;
    overflow-x: hidden
}

.wizard_horizontal ul.wizard_steps {
    display: table;
    list-style: none;
    position: relative;
    width: 100%;
    margin: 0 0 20px
}

.wizard_horizontal ul.wizard_steps li {
    display: table-cell;
    text-align: center
}

.wizard_horizontal ul.wizard_steps li a,
.wizard_horizontal ul.wizard_steps li:hover {
    display: block;
    position: relative;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;
    color: #666
}

.wizard_horizontal ul.wizard_steps li a:before {
    content: "";
    position: absolute;
    height: 4px;
    background: #ccc;
    top: 20px;
    width: 100%;
    z-index: 4;
    left: 0
}

.wizard_horizontal ul.wizard_steps li a.disabled .step_no {
    background: #ccc
}

.wizard_horizontal ul.wizard_steps li a .step_no {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100px;
    display: block;
    margin: 0 auto 5px;
    font-size: 16px;
    text-align: center;
    position: relative;
    z-index: 5
}

.step_no,
.wizard_horizontal ul.wizard_steps li a.selected:before {
    background: #34495E;
    color: #fff
}

.wizard_horizontal ul.wizard_steps li a.done .step_no,
.wizard_horizontal ul.wizard_steps li a.done:before {
    background: #1ABB9C;
    color: #fff
}

.wizard_horizontal ul.wizard_steps li:first-child a:before {
    left: 50%
}

.wizard_horizontal ul.wizard_steps li:last-child a:before {
    right: 50%;
    width: 50%;
    left: auto
}

.wizard_verticle .stepContainer {
    width: 80%;
    float: left;
    padding: 0 10px
}

.actionBar {
    width: 100%;
    border-top: 1px solid #ddd;
    padding: 10px 5px;
    text-align: right;
    margin-top: 10px
}

.actionBar .buttonDisabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .65;
    filter: alpha(opacity=65);
    box-shadow: none
}

.actionBar a {
    margin: 0 3px
}

.wizard_verticle .wizard_content {
    width: 80%;
    float: left;
    padding-left: 20px
}

.wizard_verticle ul.wizard_steps {
    display: table;
    list-style: none;
    position: relative;
    width: 20%;
    float: left;
    margin: 0 0 20px
}

.wizard_verticle ul.wizard_steps li {
    display: list-item;
    text-align: center
}

.wizard_verticle ul.wizard_steps li a {
    height: 80px
}

.wizard_verticle ul.wizard_steps li a:first-child {
    margin-top: 20px
}

.wizard_verticle ul.wizard_steps li a,
.wizard_verticle ul.wizard_steps li:hover {
    display: block;
    position: relative;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;
    color: #666
}

.wizard_verticle ul.wizard_steps li a:before {
    content: "";
    position: absolute;
    height: 100%;
    background: #ccc;
    top: 20px;
    width: 4px;
    z-index: 4;
    left: 49%
}

.wizard_verticle ul.wizard_steps li a.disabled .step_no {
    background: #ccc
}

.wizard_verticle ul.wizard_steps li a .step_no {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100px;
    display: block;
    margin: 0 auto 5px;
    font-size: 16px;
    text-align: center;
    position: relative;
    z-index: 5
}

.step_no,
.wizard_verticle ul.wizard_steps li a.selected:before {
    background: #34495E;
    color: #fff
}

.wizard_verticle ul.wizard_steps li a.done .step_no,
.wizard_verticle ul.wizard_steps li a.done:before {
    background: #1ABB9C;
    color: #fff
}

.wizard_verticle ul.wizard_steps li:first-child a:before {
    left: 49%
}

.wizard_verticle ul.wizard_steps li:last-child a:before {
    left: 49%;
    left: auto;
    width: 0
}

.form_wizard .loader,
.form_wizard .msgBox {
    display: none
}

.progress {
    border-radius: 0
}

.progress_summary .progress {
    margin: 5px 0 12px !important
}

.progress_summary .row {
    margin-bottom: 5px
}

.progress_summary .row .col-xs-2 {
    padding: 0
}

.progress_summary .data span,
.progress_summary .more_info span {
    text-align: right;
    float: right
}

.progress_summary p {
    margin-bottom: 3px;
    width: 100%
}

.progress_title .left {
    float: left;
    text-align: left
}

.progress_title .right {
    float: right;
    text-align: right;
    font-weight: 300
}

.progress.progress_sm {
    border-radius: 0;
    margin-bottom: 18px
}

.dashboard_graph p {
    margin: 0 0 4px
}

ul.verticle_bars {
    width: 100%
}

ul.verticle_bars li {
    width: 23%;
    height: 200px;
    margin: 0
}

.progress.vertical.progress_wide {
    width: 35px
}


.ui-pnotify.dark .ui-pnotify-container {
    color: #E9EDEF;
    background-color: rgba(52, 73, 94, .88);
    border-color: rgba(52, 73, 94, .88)
}

.custom-notifications {
    position: fixed;
    margin: 15px;
    right: 0;
    float: right;
    width: 400px;
    z-index: 4000;
    bottom: 0
}

ul.notifications {
    float: right;
    display: block;
    margin-bottom: 7px;
    padding: 0;
    width: 100%
}

.notifications li {
    float: right;
    margin: 3px;
    width: 36px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, .3)
}

.notifications li:last-child {
    margin-left: 0
}

.notifications a {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 9px 8px
}

.tabbed_notifications .text {
    padding: 5px 15px;
    height: 140px;
    border-radius: 7px;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, .3)
}

.tabbed_notifications div p {
    display: inline-block
}

.tabbed_notifications h2 {
    font-weight: 700;
    width: 80%;
    float: left;
    height: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block
}

.tabbed_notifications .close {
    padding: 5px;
    color: #E9EDEF;
    float: right;
    opacity: 1
}

.fc-state-default {
    background: #f5f5f5;
    color: #73879C
}

.fc-state-active,
.fc-state-down {
    color: #333;
    background: #ccc
}

.dropzone {
    min-height: 300px;
    border: 1px solid #e5e5e5
}

.main_menu .label {
    line-height: 11px;
    margin-top: 4px
}


.login-header {
    background-image: linear-gradient(rgb(190, 217, 250) 0%, rgb(119, 163, 217) 100%);
    padding: 15px;
}

.login_logo {
    text-align: center;
}

.login_logo a {
    height: auto;
    border-right: 0px;
}

.login_footer {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #C0DBFB), color-stop(1, #9FC2EC));
    background-image: -o-linear-gradient(bottom, #C0DBFB 0%, #9FC2EC 100%);
    background-image: -moz-linear-gradient(bottom, #C0DBFB 0%, #9FC2EC 100%);
    background-image: -webkit-linear-gradient(bottom, #C0DBFB 0%, #9FC2EC 100%);
    background-image: -ms-linear-gradient(bottom, #C0DBFB 0%, #9FC2EC 100%);
    background-image: linear-gradient(to bottom, #C0DBFB 0%, #9FC2EC 100%);
    padding: 20px 0px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.login_content .btn.btn-default.submit:hover {
    background: #1d0346;
}

p.change_link {
    font-size: 16px;
    color: #1a1d2d;
}

.login_content .btn.btn-default.submit {
    background: #1a1d2d;
    border: 0px;
    color: #fff;
    padding: 12px 40px;
    font-size: 20px;
    border-radius: 0;
    font-style: normal;
    text-transform: uppercase;
    width: 100%;
    margin-top: 2px;
    border-radius: 4px;
}

p.change_link a {
    font-style: normal;
    font-weight: 600;
}

.login {
    background: #e6edf7;
}

/* Chrome/Opera/Safari */
/*::-webkit-input-placeholder {
    color: #272727;
}*/

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

/* IE 10+ */
/*:-ms-input-placeholder {
    color: #272727;
}*/

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


img.logo {
    height: 48px;
}

.nav-sm img.logo {
    mix-blend-mode: multiply;
    filter: saturate(0) brightness(1.2);
}

.login img.logo {
    height: 73px;
}


.adm-log-bar {
    float: right;
    padding: 9px 0px;
    margin-right: 15px;
    margin-top: 2px;
}

button.btn.btn-primary.dropdown-toggle {
    background: #d4e7fd;
    border: 0px;
    padding: 7px 38px 7px 13px;
    border-radius: 0px;
    position: relative;
    width: 118px;
    text-align: left;
    color: #263950;
    border: 1px solid #263950;
    margin-bottom: 0px;
}



span.fa.fa-angle-down.dd-down {
    position: absolute;
    background: #263950;
    top: 0px;
    right: -1px;
    padding: 10.5px 7px;
    color: #fff;
    padding-right: 7px;
}

.login_logo img.logo {
    width: auto;
}

.login_footer a {
    color: #1a1d2d;
    font-size: 16px;
}

.login_footer a:hover {
    color: #003373;
}

.profile.clearfix {
    background: #263950;
    padding: 30px 12px;
    height: 78px;
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #ffffff;
    border-radius: 4px;
    color: #545454;
}

.breadcrumb ol {
    padding: 3px 0px;
    margin-bottom: 0;
    list-style: none;
}

.breadcrumb li {
    float: left;
}

.x_title.blue {
    border-bottom: 0px solid #E6E9ED;
    padding: 10px 15px;
    background-image: -webkit-gradient(linear, right bottom, left bottom, color-stop(0, #273A51), color-stop(1, #3C5777));
    background-image: -o-linear-gradient(left, #273A51 0%, #3C5777 100%);
    background-image: -moz-linear-gradient(left, #273A51 0%, #3C5777 100%);
    background-image: -webkit-linear-gradient(left, #273A51 0%, #3C5777 100%);
    background-image: -ms-linear-gradient(left, #273A51 0%, #3C5777 100%);
    background-image: linear-gradient(to left, #273A51 0%, #3C5777 100%);
    margin-bottom: 0px;
    color: #fff;
}

.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}

.breadcrumb .fa {
    font-size: 16px;
    margin-right: 10px;
    line-height: 22px;
    height: 22px;
    margin: 0;
}
.breadcrumb span {
    font-size: 14px;
    line-height: 20px;
}

.breadcrumb li a:hover {
    color: #88b0e1;
}

.breadcrumb li a,
.breadcrumb li span {
    color: #232323;
}

.x_title.fa_main .fa {
    /* float: left;
    position: relative;
    width: 26px;
    top: 7px; */
    font-size: 18px;
    display: inline;
    font-size: 18px;
    display: inline-block;
    margin: 5px;
}

.top-border {
    border-top: 1px solid #ccc;
    padding-top: 10px;
}

.panel_toolbox>li {
    float: right;
    cursor: pointer;
}

.panel_toolbox>li>a:hover {
    background: none;
    color: #85aedf;
}


::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #999999;
}

.scoll-half .label {
    display: inline;
    padding: 6px 13px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    background: #c2dcfb;
    color: #263950;
    font-size: 14px;
}





.tile_count .tile_stats_count span {
    font-size: 12px
}

div#example_length {
    display: none;
}

div#example_2_length {
    display: none;
}

div#example_3_length {
    display: none;
}

div.dataTables_wrapper div.dataTables_filter {
    text-align: right;
    display: none;
}

div.dataTables_wrapper div.dataTables_length {
    display: none;
}

.text-yellow {
    color: #ffc600;
}

.text-red {
    color: #d71e23;
}

.text-green {
    color: #33910b;
}

.text-blue {
    color: #47a6ff;
}

.search_container .fa-search {
    position: absolute;
    top: calc(50% - 8px);
    right: 12px;
    color: #232323;
}

.filter_section_left {
    float: left;
    padding-bottom: 15px;
}

.filter_section_right {
    float: right;
    padding-bottom: 15px;
}



.nopadding {
    padding-right: 0px;
    padding-left: 0px;
}

.status label.control-label {
    font-size: 15px;
    float: left;
    margin-right: 0px;
}

.control-info .status_drop button label {
    color: #232323;
    font-size: 15px;
    font-weight: 400;
    padding: 0px 0px 0px 0px;
    line-height: 0;
}

.control-info .status_drop button label {
    margin-right: 8px;
    text-align: left;
}

.control-info .status_drop ul li a label {
    color: #232323;
    width: 100%;
}

.control-info .status_drop ul li a label {
    color: #232323;
    width: 100%;
    line-height: initial;
}

.control-info .status_drop ul li a label .fa {
    padding-right: 5px;
}

.control-info .status_drop ul li a:hover label {
    color: initial;
}

.width-change ul.dropdown-menu {
    min-width: 204px;
}

.status .dropdown-menu>li>a {
    display: block;
    padding: 4px 10px;
    clear: both;
    font-weight: 400;
    line-height: initial;
    white-space: nowrap;
    width: 100%;
}

.status .dropdown-menu>li>a label {
    color: #fff;
}

.status .dropdown-menu>li>a:hove label {
    color: #262626;
}

.attributes_table th,
.entries_table th {
    background: #263950;
    color: #fff;
    font-size: 13px;
    border: 1px solid #334e6e;
    font-weight: 600;
    vertical-align: middle;
}

.attributes_table span.control-info,
.entries_table span.control-info {
    float: right;
}

.attributes_table button#menu1,
.entries_table button#menu1 {
    height: 20px;
    padding: 0px 5px;
    line-height: 0;
}

.attributes_table a._tooltip .entries_table a._tooltip {
    position: relative;
    top: 4px;
    padding: 0px 1px;
}

.attributes_table td,
.entries_table td {
    font-size: 15px;
    vertical-align: middle;
    color: #232323;
}

.attributes_table .fa.fa-close,
.entries_table .fa.fa-close {
    color: #cd0000;
    font-size: 16px;
}


div#example_info {
    display: none;
}

div#example_2_info {
    display: none;
}

div#example_3_info {
    display: none;
}

.attributes_table .fa.fa-circle.colorread,
.entries_table .fa.fa-circle.colorread {
    color: #dd0000;
    font-size: 15px;
}

.flied-sec label {
    font-weight: 500;
    position: relative;
    top: 10px;
    color: #515151;
}

.flied-sec {
    border-bottom: 1px dotted #4d4c4c2e;
    height: 50px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.database_not .scoll-half .table-condensed>tbody>tr>td {
    padding: 12px 22px;
    color: #232323;
    font-size: 15px;
    vertical-align: middle;
    line-height: 16px;
}


.dropdown.status_drop.table button#menu1 {
    margin-bottom: 0;
}

.dropdown.status_drop.table ul.dropdown-menu {
    min-width: 100%;
    margin-top: 0px;
    padding: 0px;
    border-radius: 0px;
    background: #fff;
    display: none;
}

.dropdown.status_drop.table .dropdown-menu>li>a {
    display: block;
    padding: 4px;
    clear: both;
    font-weight: 400;
    line-height: initial;
    color: #333;
    white-space: nowrap;
    text-align: center;
}

.spe-wid {
    position: relative;
    left: 0px;
    top: 0px;
}


.dataTables_paginate a {
    padding: 6px 12px;
    background: #c0dafa;
    border-color: #fff;
    border-radius: 30px;
    color: #fff;
}

div#example_paginate {
    display: table;
    margin: 0 auto;
    float: none;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

div#example_3_paginate {
    display: none;
}

div#example_2_paginate {
    display: none;


}

li.paginate_button.active a {
    background: #263950;
}

.search_containerf {
    padding-right: 0;
}

.add_attrib label {
    font-weight: 400;
    color: #000;
    position: relative;
    top: -3px;
}


.dropdown.status_drop.table:hover .dropdown-menu {
    display: block;
}



.x_content h4 {
    font-size: 24px;
    font-weight: 500;
    color: #232323;

}



.close {
    float: right;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    color: #313131;
    text-shadow: none;
    filter: alpha(opacity=20);
    opacity: 1.2;
    position: relative;
    top: 3px;
}



.go-top,
.go-end,
.go-top-table,
.go-end-table {
    right: 13px;
    text-decoration: none;
    color: white;
    background-color: rgb(153, 153, 153);
    font-size: 12px;
    padding: 5px 8px;
    display: none;
    text-align: center;
    border-radius: 2px;
    z-index: 99999;
}

.go-top {
    position: fixed;
    top: 70px;
}

.go-end {
    position: fixed;
    bottom: 50px;
}

.go-top-table {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.go-end-table {
    position: absolute;
    top: 30px;
    right: 0px;
}

.go-top .fa,
.go-end .fa {
    font-size: 20px;
}

.go-top:hover,
.go-end:hover,
.go-top-table:hover,
.go-end-table:hover {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
}





button#multiselect_Add_rightAll,
button#multiselect_Save_rightAll {
    background: #2a3f57;
    color: #fff;
}

button#multiselect_Add_rightSelected,
button#multiselect_Save_rightSelected {
    background: #2a3f57;
    color: #fff;
}

button#multiselect_Add_leftSelected,
button#multiselect_Save_leftSelected {
    background: #2a3f57;
    color: #fff;
}

button#multiselect_Add_leftAll,
button#multiselect_Save_leftAll {
    background: #2a3f57;
    color: #fff;
}

button#multiselect_Add_move_up,
button#multiselect_Save_move_up {
    background: #2a3f57;
    color: #fff;
}

button#multiselect_Add_move_down,
button#multiselect_Save_move_down {
    background: #2a3f57;
    color: #fff;
}

button.btn.btn-block:hover {
    background: #213144;
}

.panel {
    margin-bottom: 20px;
    background-color: #c0dafa;
    border: 0px solid transparent;
    border-radius: 0px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}


label.status_filter_label {
    float: none;
    font-weight: 400;
    display: block;
}


.record .status label.label.label-status {
    font-size: 14px;
}

.record {
    margin-top: 18px;
}

.record_requireds {
    margin-bottom: 10px;
    border-bottom: 1px dotted #ccc;
}

.record .form-control {
    padding: 6px 5px;
    font-size: 15px;
}






.record.right {
    background: rgba(192, 218, 250, 0.68);
    margin: 9px 0px;
    float: right;
    padding: 20px 3px 10px 3px;
    border-radius: 6px;
}

.record.right hr.clearfix {
    border-top: 1px dotted #b9b9b9;
    clear: both;
    position: relative;
    top: 8px;
}

.record.right .checkmark {
    background-color: #fff;
    left: 0px;
}

.btn-primary {
    color: #fff;
    background-color: #2b4059;
    border-color: #2b4058;
}

.full_button {
    background: #d6e7fc;
    padding: 10px 10px;
    border-radius: 6px;
}

.under_construction {
    display: table;
    margin: 0 auto;
    width: 36%;
}

.modal_fild.multiple_selec button.btn.btn-default {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
    position: relative;
    font-size: 14px;
}

.modal_fild.multiple_selec span.caret {
    float: right;
    position: relative;
    top: 10px;
}

.modal_fild.multiple_selec ul.dropdown-menu {
    margin-top: 0px;
    border-radius: 0px;
    width: 93%;
    position: absolute;
    margin-left: 10px;
    margin-right: 10px;
}

.modal_fild.multiple_selec ul.dropdown-menu li {
    border-bottom: 1px dotted #ccc;
}

.modal_fild.multiple_selec ul.dropdown-menu li a {
    padding: 3px 15px;
}



div.example_custom1_paginate {
    display: table;
    /*margin: 0 auto;*/
    /* float: none; */
    margin-top: 20px;
    margin-bottom: 20px;
}

/*member listing*/


.delet_popup {
    text-align: center;
}


/*member listing*/

.Permission_add_fild label.control-label {
    width: 100%;
}

.Permission_add_fild label {
    width: 50%;
    float: left;
    position: relative;
}

.Permission_add_fild input {
    width: 98%;
    padding: 8px 10px;
}

.Permission_add_fild a.remove-attr {
    color: #fff;
    font-size: 17px;
    background: #790000;
    padding: 7px 8px;
    position: absolute;
    right: 3px;
}

a.add-new-attr {
    background: #c0dafa;
    color: #151515;
    padding: 11px 10px;
    position: relative;
    top: 8px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
}

a.add-new-attr .fa {
    margin-right: 7px;
    background: #6992c3;
    padding: 6px 7px;
    color: #252525;
    font-size: 12px;
    border-radius: 6px;
}

.menu_page label.control-label {
    font-weight: 400;
    color: #000;
    text-transform: capitalize;
    font-size: 14px;
}

.menu_page select {
    padding: 6px 6px;
}

.menu_page ol {
    list-style: none;
    padding: 0px 15px;
}

ol.menu-sortable {
    padding: 0px;
    margin-bottom: 0px;
}

ol.menu-sortable li .x_panel {
    margin-bottom: 0px;
}

.menu_page button:hover not:bs-placeholder {
    background: #223246;
    color: #fff;
}

.menu_page button not:bs-placeholder {
    background: #395372;
    color: #fff;
    border: 0px;
}

.x_title.blue.fa_main.menu {
    color: white;
    padding: 6px 12px;
    background: #2D435C;
    border: 0px solid #273b52;
}

.x_title.blue.fa_main.menu i.fa.fa-chevron-up {
    color: white;
}

.x_title.blue.fa_main.menu .fa.fa-chevron-down {
    color: white;
}

hr.menu_hr {
    clear: both;
    margin-bottom: 7px;
    border-color: #283c532b;
}

span.checkmark.radio {
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 100%;
}

.Labels_box {
    margin-bottom: 10px;
    border: 1px dotted #b9b8b8;
    padding-left: 0;
    padding-right: 0;
}

.Labels_box h3 {
    text-align: center;
    font-weight: 400;
    background: #c0dafa91;
    margin-top: 0px;
    color: #131111;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.Labels_box_button .btn-primary {
    color: #fff;
    background-color: #2b4059;
    border-color: #2b4058;
    margin-right: 0px;
    padding: 8px 29px;
    width: auto;
    margin: 1px;
    margin-bottom: 8px;
}

a.edit-menu-item i.fa.fa-edit {
    font-size: 14px;
    float: none;
    color: white;
    width: auto;
    top: 4px;
    vertical-align: middle;
    line-height: 20px;
    display: inline-block;
}


.dropdown.status_drop.Print.table .dropdown-menu li .label {
    color: #000;
    font-weight: normal;
}

.dropdown.status_drop.Print.table .dropdown-menu li a {

    border-bottom: 1px solid #000;
    font-size: 13px;
    padding: 3px 4px;
}

.dt-buttons .buttons-pdf,
.dt-buttons .buttons-print,
.dt-buttons .PhpDocxPdf {
    display: none;
}

div.dt-buttons {
    display: flex;
}

.dt-button-collection {
    max-height: 250px;
    min-width: 250px;
    overflow: auto;
}


.dt-button.buttons-columnVisibility.active {
    background: #D6E0EC;
}

#RolesGrid {
    width: 100%;
}

#PermsGrid {
    width: 100%;
}

/* member listing */

.delet_popup h3 {
    color: #3c3b3b;
    font-size: 17px;

    font-weight: 400;
}

.delet_popup h2 {
    color: #3c3b3b;
    font-size: 17px;


}

.delet_popup h1 {
    color: #3c3b3b;
    font-size: 20px;

    font-weight: 600;
}

.delet_popup {
    text-align: center;
}

.member_profile b,
strong {
    font-weight: 600;
}





a.pagination_input input {
    width: 75px;
    border: 0;
    padding: 1px 6px;
    color: #000;
    font-size: 12px;
}





h2.table_head {
    margin-bottom: 0px;
    background: #263950;
    color: #fff;
    padding: 10px 10px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-bottom: 0px;
}

tr.markpopup-back_dark {
    background-color: #bbd9ff;
}

tr.markpopup-back_light {
    background-color: #d6e7fc;
}



.more_detail_butt {
    float: left;

}

.more_detail_butt button {
    padding: 5px 16px;
    background: #888;
    color: #fff;
}

.more_detail_butt button:hover {
    background: #5f5f5f;
}

p.construction {
    font-size: 20px;
    text-transform: uppercase;
    color: #0e8800;
}



button.btn.btn-primary.Clear {
    width: 33%;
    padding: 5px 16px;
    background: #bd0000;
}

button.btn.btn-primary.Search {
    width: 33%;
    padding: 5px 16px;
}

button.btn.btn-primary.New {
    width: 26%;
    margin-right: 0px;
    padding: 5px 16px;
}

.Generna_sec {
    padding: 0px 9px;
}

.form-group:after {
    content: "";
    display: block;
    clear: both;
}

/*
 Data Table empty data message to left align
*/

/* div.dataTables_scrollBody table thead .sorting:after,
div.dataTables_scrollBody table thead .sorting_asc:after,
div.dataTables_scrollBody table thead .sorting_desc:after {
    display: none;
    visibility: hidden;
} */

.scroll_desktop_width td.dataTables_empty,
td.dataTables_empty {
    text-align: left;
    background-color: #ffffff;
}

ul.ui-autocomplete {
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 150px;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
    border-radius: 3px;
    border: 1px solid #ccc;
}


/*
table {
    border-collapse: collapse;
}

thead {
    display: block;
    overflow: auto;
}

tbody {
    display: block;
    height: 300px;
    overflow: auto;
}

th,td {
    text-align: left;
    vertical-align: top;
}*/

button#remove {
    border-radius: 0px;
    margin-top: 2px;
    padding: 2px 5px;
    font-size: 15px;
    float: left;
}

button#clone {
    border-radius: 0px;
    margin-top: 2px;
    padding: 2.0px 4px;
    font-size: 15px;
    float: left;
}

/*td span#ml{*/
/*margin-left: 12px;*/
/*}*/

.mce-branding.mce-widget.mce-label.mce-flow-layout-item.mce-last {
    display: none;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    border: none;
}

/* Orders Create -- Mz*/
.narrowPadding div[class^='col'] {
    padding-left: 3px;
    padding-right: 3px;
}


/* Mtfz */
table.table th.plusSignTh,
table.table td.minusSignTd {
    cursor: pointer;
    /* background: #fff; */
}

/* enables scrolling in jquery ui auto complete results */
.ui-autocomplete {
    max-height: 100px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
}

.disabledInherit {
    background-color: inherit;
    cursor: not-allowed;
    height: 34px;
}

small.text-muted {
    background-color: #f4c676;
    border-radius: 10px;
    padding: 1px 8px;
    margin-left: 5px;
    color: #b30505;
}



/* Custom Errors Style --- END */

.btn.btn-radius {
    border-radius: 15px;
}

/* select picker dropdown css overwrite */
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    padding-right: 0px;
    padding-left: 05px;
}

.pay-sat1-pr-cs,
.pay-sat2-pr-cs,
.pay-sun-pr-cs {
    width: 25px;
    padding-left: 2px;
    padding-right: 0;
    display: inline-block;
    margin-left: -1px;
    text-align: center;
}

td .select-inv-items-all {
    margin-right: 6px;
}

.text-darkblue {
    color: #24074e;
}

.hr-blue {
    border-bottom: 1px solid #6d9fdf;
}

.text-blue {
    color: #0266c8;
}

.text-center-v {
    vertical-align: middle;
}

.table .col_blank {
    border: 0 transparent solid;
    background-color: white;
    padding-right: 0;
}

.table .col_blank:before {
    content: '';
    width: 100%;
    position: absolute;
    top: -1px;
    height: 2px;
    background: white;
    left: 0;
}

.table .col_blank:after {
    content: '';
    width: 100%;
    position: absolute;
    bottom: -1px;
    height: 2px;
    background: white;
    left: 0;
}

#listingTable .ap_comparison_col_blank,
.dataTables_scrollHead .ap_comparison_col_blank {
    border: 0 transparent solid;
    border-left: 1px solid #2b4059;
    border-right: 1px solid #2b4059;
    background-color: white;
    padding-right: 0;
    position: relative;
}

#listingTable .ap_comparison_col_blank:before,
.dataTables_scrollHead .ap_comparison_col_blank:before {
    content: '';
    width: 100%;
    position: absolute;
    top: -1px;
    height: 2px;
    background: white;
    left: 0;
}

#listingTable .ap_comparison_col_blank:after {
    content: '';
    width: 100%;
    position: absolute;
    bottom: -1px;
    height: 2px;
    background: white;
    left: 0;
}

.dt-button.buttons-columnVisibility,
.dt-button.buttons-columnVisibility.active,
.dt-button.buttons-collection.buttons-colvis,
.dt-button.dt-custom {
    background: #2b4059;
    border-color: #2b4058;
    color: #fff;
    border-radius: 4px;
    font-size: var(--font-normal-size);
    /* text-transform: capitalize; */
}

.dt-button.buttons-columnVisibility {
    background: #abbacc;
}

.dt-button.buttons-columnVisibility.active {
    background: #2b4059;
}

.selectAllInvoicesTH {
    cursor: pointer;
}

.comma:not(:last-of-type):after {
    content: ",";
}

/* loading withing input field */
.mz-input-loading {
    position: relative;
}

.mz-input-loading label.ahcss-radio a > i,
.mz-input-loading label.ahcss-check a > i {
    position: absolute;
    top: calc(50% - 2px);
    left: -1px;
    z-index: 9;
}

.mz-input-loading > i,
.mz-input-loading a > i {
    position: absolute;
    top: calc(50% - 6px);
    right: 6px;
    z-index: 9;
    height: 13px;
    font-size: 12px;
}

.mz-lw-search {
    position: relative;
}

.mz-lw-search-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the search items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

/* LiveWire Component Search Box*/
.mz-lw-search ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: auto;
    max-height: 165px;
}

.mz-lw-search-items li {
    color: #000000;
    padding: 5px 5px 5px 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 0.5px solid #d4d4d4;
    line-height: 16px;
}

.mz-lw-search-items li:hover {
    background-color: #c0dafa;
}

.mz-lw-search-items li.mz-lw-search-active {
    background-color: #c0dafa;
}

.mz-lw-search-items .badge {
    background-color: var(--color-warning);
    border-radius: 10px;
    padding: 3px 10px;
}

/* LiveWire Component Search Box -- END*/

/* Mtfz --- END*/

table.paySeminarCreateTbl td input[type=checkbox],
table.paySeminarCreateTbl td input[type=radio] {
    margin-left: 4px;
}

/*-------- Arsalan Usman [ 7-9-2018 ] -------*/
.btn-group.bootstrap-select.form-control {
    margin: 0px;
    padding: 0px;
    border: 0px;
    box-shadow: none;
}

/*.btn{
    padding: 5.2px 16px;
}*/

.arramgementsClass .Record label {
    padding-top: 5px;
}

.arramgementsClass .Record input {
    height: 30px;
}

.record-pagination {
    display: block;
    margin: 0 auto;
    padding: 15px 0 0 0px;
    line-height: 20px;
}

.record-pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.record-pagination ul li {
    line-height: initial;
    padding: 0px 5px;
}

.record-pagination ul li input.form-control {
    width: 100px;
    text-align: center;
    height: 30px;
}

.record-pagination ul li p {
    line-height: initial;
    margin: 0;
}
.record-pagination ul li .faWithStyle {
    font-size: 25px;
    color: #5a7390;
    line-height: initial;
}

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

.table>tbody>tr>td.text-left {
    text-align: left;
}

/*-------- Arsalan Usman [ 7-9-2018 ] End --------*/
/*-------- Arsalan Usman [ 7-10-2018 ] --------*/
.pad25 {
    padding: 25px;
}

.padbt20 {
    padding-bottom: 20px;
}

.padt10 {
    padding-top: 10px;
}

.btn-border {
    background: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0px 1px 1px #ccc;
    padding: 6px 15px;
}

.form-group.checkbox-adjust.pull-left {
    padding: 0px 4px;
}

.post-check input[type=checkbox] {
    position: relative;
    top: 8px;
}

.orderNote button.btn.btn-primary.dropdown-toggle,
.payNote button.btn.btn-primary.dropdown-toggle,
.seminarNote button.btn.btn-primary.dropdown-toggle {
    width: 100%;
    padding: 6px 12px;
    background: #fff;
    border-radius: 0px;
    color: #999;
}

/*-------- Arsalan Usman [ 7-10-2018 ] End --------*/
/*-------- Arsalan Usman [ 7-11-2018 ] End --------*/
a.close-pre-order i {
    border: 1px solid #ccc;
    padding: 8px 14px;
}

tr.gray td {
    background: #ccc;
}

.order-style table .form-group {
    margin-bottom: 0;
}

table.table .form-group span.fa.fa-plus.text-success {
    padding: 0px;
}

.scoll-full-width>div:first-child[class^='col'] {
    padding-left: 0px;
}

.scoll-full-width>.col-md-12.col-sm-12.col-xs-12 {
    padding: 0px;
}

label {
    font-weight: 400;
    line-height: 1;
}


table.fixedHeader-floating {
    position: fixed;
    background-color: white
}

table.fixedHeader-floating.no-footer {
    border-bottom-width: 0
}

table.fixedHeader-locked {
    position: absolute;
    background-color: white
}

@media print {
    table.fixedHeader-floating {
        display: none
    }
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #98bce8;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*.scroll_desktop_main::after {*/
/*content: '';*/
/*position: absolute;*/
/*top: 103px;*/
/*width: 55px;*/
/*height: 80%;*/
/*left: -15px;*/
/*bottom: -13px; */
/*display: block;*/
/*background-repeat: repeat-y;*/
/*z-index: 99999;*/
/*background-image: url(../../images/bg_left.jpg); */
/*}*/


/*.scroll_desktop_main::before {*/
/*content: '';*/
/*position: absolute;*/
/*top: 64px;*/
/*width: 55px;*/
/*height: 80%;*/
/*right: -15px;*/
/*bottom: -13px; */
/*display: block;*/
/*background-repeat: repeat-y;*/
/*z-index: 99999;*/
/*background-image: url(../../images/bg_right.jpg); */
/*}*/

/* menu header via data attribute */
.data-title:before {
    content: attr(data-menutitle);
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: #DDD;
    padding: 2px;

    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
}

.data-title :first-child {
    margin-top: 20px;
}

div#filter-panel {
    position: absolute;
    z-index: 999;
    left: 40px;
    right: 40px;
    top: 58px;
}

.input-readonly {
    background-color: #FFF;
}

.seq_select_width button {
    min-width: 100%;
    max-width: 150px;
}

.overflow_hidden {
    overflow: hidden;
}

.line_height_21 {
    line-height: 21px;
}

/* Rizwan */
.enter-tx-data .numberOnly {
    display: block;
    ;
    margin: 0 auto;
}

.modify-tx {
    margin: 0;
}

.item-name.open .dropdown-menu {
    max-width: 100%;
}

/* Zeeshan */
#divS {
    display: none;
}

/*Adeel*/
table th.sml1 {
    width: 140px;

}

table th.sml2 {
    width: 114px;

}


.in_td_ed {
    display: none;
    width: 100%;
}


.custom_close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    float: right;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    color: #313131;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: 1.2;
    position: relative;
    top: 3px;
}


.chela-other-btn .bootstrap-select.btn-group:not(.input-group-btn),
.chela-other-btn .bootstrap-select.btn-group[class*=col-] {
    width: auto;
}

.relative {
    position: relative;
}

.relative label span.checkmark {
    background: #fff;
    top: 5px;
    left: 32px;
}

.max-width-473 {
    max-width: 473px;
    float: right;
}

@media print {

    .print_table_breif {
        font-family: "Times New Roman";
    }

    .print_table_breif,
    td {
        font-family: "Times New Roman";
        font-size: 16px;
    }

    .print_table_breif,
    h5 {
        font-family: "Times New Roman";
        font-size: 34px;
        font-weight: 200;
    }

    /*----------------------------*/
    .print_table_full {
        font-family: "Times New Roman";
        padding: 200px;
    }

    .print_table_full,
    td {
        font-family: "Times New Roman";
        font-size: 16px;
    }

    .print_table_full,
    h5 {
        font-family: "Times New Roman";
        font-size: 34px;
        font-weight: 200;
    }

}

#inventory_count_form .table>tbody>tr>td {
    font-family: arial;
}

#inv_counts table#EntriesGrid thead tr th.sorting_disabled:nth-child(1) {
    width: 8%;
}

#inv_counts table#EntriesGrid thead tr th.sorting_disabled:nth-child(2) {
    width: 64%;
}



@media screen and (max-width: 1000px) {
    ul.bar_tabs>li a {
        padding: 10px 6px;
    }
}

@media screen and (max-width: 830px) {
    ul.bar_tabs {
        padding-left: 0px;
    }
}

.mce-tinymce.mce-container iframe {
    height: 170px;
}


/* Styling By Haris */
.fixedHeader-floating {
    left: 340px;
}

.seq_head th {
    padding: 10px 0;
}

.inner-modal-body {
    padding: 0 10px;
    box-sizing: border-box;
}

.dropdown-menu {
    font-size: var(--font-normal-size);

}

.total_price {
    color: #fe1515;
    font-weight: 600;
    display: inline-block;
    margin-left: 100px;
}

/* AH Checkbox and Radio buttons */

label.ahcss-check,
label.ahcss-radio {
    display: inline;
    padding-left: 20px;
    padding-right: 0px;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    vertical-align: middle;
}

label.ahcss-check input[type="checkbox"]:disabled,
label.ahcss-radio input[type="radio"]:disabled {
    background: var(--color-white);
}

label.ahcss-check input[type="checkbox"],
label.ahcss-radio input[type="radio"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
    border: 1px solid var(--color-gray);
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 14px;
    height: 14px;
    z-index: 1;
    outline: 0;
    top: -3px;
    left: 0px;
    border-radius: 0px;
}

label.ahcss-radio input[type="radio"] {
    border-radius: 15px;
}

label.ahcss-check input[type="checkbox"]:checked,
label.ahcss-radio input[type="radio"]:checked {
    background-color: #8fafde;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA0NDIuNTMzIDQ0Mi41MzMiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ0Mi41MzMgNDQyLjUzMzsiIHhtbDpzcGFjZT0icHJlc2VydmUiIGNsYXNzPSIiPjxnPjxnPjxwYXRoIGQ9Ik00MzQuNTM5LDk4LjQ5OWwtMzguODI4LTM4LjgyOGMtNS4zMjQtNS4zMjgtMTEuNzk5LTcuOTkzLTE5LjQxLTcuOTkzYy03LjYxOCwwLTE0LjA5MywyLjY2NS0xOS40MTcsNy45OTNMMTY5LjU5LDI0Ny4yNDggICBsLTgzLjkzOS04NC4yMjVjLTUuMzMtNS4zMy0xMS44MDEtNy45OTItMTkuNDEyLTcuOTkyYy03LjYxNiwwLTE0LjA4NywyLjY2Mi0xOS40MTcsNy45OTJMNy45OTQsMjAxLjg1MiAgIEMyLjY2NCwyMDcuMTgxLDAsMjEzLjY1NCwwLDIyMS4yNjljMCw3LjYwOSwyLjY2NCwxNC4wODgsNy45OTQsMTkuNDE2bDEwMy4zNTEsMTAzLjM0OWwzOC44MzEsMzguODI4ICAgYzUuMzI3LDUuMzMyLDExLjgsNy45OTQsMTkuNDE0LDcuOTk0YzcuNjExLDAsMTQuMDg0LTIuNjY5LDE5LjQxNC03Ljk5NGwzOC44My0zOC44MjhMNDM0LjUzOSwxMzcuMzMgICBjNS4zMjUtNS4zMyw3Ljk5NC0xMS44MDIsNy45OTQtMTkuNDE3QzQ0Mi41MzcsMTEwLjMwMiw0MzkuODY0LDEwMy44MjksNDM0LjUzOSw5OC40OTl6IiBkYXRhLW9yaWdpbmFsPSIjMDAwMDAwIiBjbGFzcz0iYWN0aXZlLXBhdGgiIGRhdGEtb2xkX2NvbG9yPSIjMDAwMDAwIiBmaWxsPSIjRkZGRkZGIi8+PC9nPjwvZz4gPC9zdmc+);
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #8fafde;
    background-size: 8px;
    display: block;
}

/* AH Checkbox and Radio buttons --- END */
/* Checkbox Module Class */

input[type='checkbox'].check-custom,
input[type='radio'].check-custom {
    position: absolute;
    top: auto;
    width: 0px;
    height: 0px;
    overflow: hidden;
    display: hidden;
    opacity: 0;
    outline: none;
}

input[type='checkbox'].check-custom~.text,
input[type='radio'].check-custom~.text {
    margin-left: 5px;
    margin-right: 5px;
}

input[type='checkbox'].check-custom~.checkmark:after,
input[type='radio'].check-custom~.checkmark:after {
    display: none;
}

input[type='checkbox'].check-custom~.check-toggle,
input[type='radio'].check-custom~.check-toggle,
input[type='checkbox'].check-custom~.checkmark,
input[type='radio'].check-custom~.checkmark {
    width: 16px;
    height: 16px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border: 2px solid #cccccc;
    cursor: pointer;
    border-radius: 0%;
    margin-top: -3px;
    margin-right: -3px;
}

input[type='checkbox'].check-custom~.check-toggle,
input[type='radio'].check-custom~.check-toggle,
input[type='checkbox'].check-custom~.checkmark,
input[type='radio'].check-custom~.checkmark {
    background: white;
    outline: none;
    border: 1px solid #cccccc;
}

input[type="radio"].check-custom.disabled~.check-toggle,
input[type="radio"].check-custom[disabled]~.check-toggle,
input[type="radio"].check-custom.disabled~.checkmark,
input[type="radio"].check-custom[disabled]~.checkmark {
    background: #90afde;
}

input[type='checkbox'].check-custom~.check-toggle:hover,
input[type='radio'].check-custom~.check-toggle:hover,
input[type='checkbox'].check-custom~.checkmark:hover,
input[type='radio'].check-custom~.checkmark:hover {
    background: #90afde;
}

input[type='checkbox'].check-custom:focus~.check-toggle,
input[type='radio'].check-custom:focus~.check-toggle,
input[type='checkbox'].check-custom:focus~.checkmark,
input[type='radio'].check-custom:focus~.checkmark {
    border-color: #90afde;
    box-shadow: 0 0 0 1px #1262a6;
}

input[type='checkbox'].check-custom:checked~.check-toggle,
input[type='radio'].check-custom:checked~.check-toggle,
input[type='checkbox'].check-custom:checked~.checkmark,
input[type='radio'].check-custom:checked~.checkmark {
    background: #90afde url(../img/check-mark-xxl.png) center no-repeat;
    border-color: #90afde;
    background-size: 8px;
}

input[type='checkbox'].check-custom.small:checked~.check-toggle,
input[type='radio'].check-custom.small:checked~.check-toggle,
input[type='checkbox'].check-custom.small:checked~.checkmark,
input[type='radio'].check-custom.small:checked~.checkmark {
    background-size: 5px;
}

input[type='checkbox'].check-custom.small~.check-toggle,
input[type='radio'].check-custom.small~.check-toggle,
input[type='checkbox'].check-custom.small~.checkmark,
input[type='radio'].check-custom.small~.checkmark {
    width: 13px;
    height: 13px;
}

input[type='checkbox'].check-custom.large:checked~.check-toggle,
input[type='radio'].check-custom.large:checked~.check-toggle,
input[type='checkbox'].check-custom.large:checked~.checkmark,
input[type='radio'].check-custom.large:checked~.checkmark {
    background-size: 12px;
}

input[type='checkbox'].check-custom.large~.check-toggle,
input[type='radio'].check-custom.large~.check-toggle,
input[type='checkbox'].check-custom.large~.checkmark,
input[type='radio'].check-custom.large~.checkmark {
    width: 22px;
    height: 22px;
}

@media print {

    input[type='checkbox'].check-custom,
    input[type='radio'].check-custom {
        width: 18px;
        height: 18px;
        display: initial;
        position: initial;
        opacity: 1;
    }

    input[type='checkbox'].check-custom~.check-toggle,
    input[type='radio'].check-custom~.check-toggle,
    input[type='checkbox'].check-custom~.checkmark,
    input[type='radio'].check-custom~.checkmark {
        display: none;
    }

}

/* Checkbox Module END */

/* Asterisk */

.asterisk-left::before {
    content: "*";
    position: relative;
    top: 0px;
    font-size: 20px;
    color: red;
    height: 5px;
    line-height: 5px;
    padding-right: 2px;
    padding-left: 2px;
}

.asterisk::after,
.asterisk-right::after {
    content: "*";
    position: relative;
    top: 0px;
    font-size: 20px;
    color: red;
    height: 5px;
    line-height: 5px;
    padding-right: 2px;
    padding-left: 2px;
}

/* Asterisk */

.fa.fa-user-circle-o {
    color: #003373;
}

.transferSeminarTable .width-100px .col-xs-12 {
    width: 100%;
    padding: 0px 10px;
}

.transferSeminarTable .width-100px .checkbox {
    padding-left: 12px;
    padding-right: 12px;
}

.fa.fa-trash, .fa.fa-trash-o{
    cursor: pointer;
}

.input-icons i {
    position: absolute;
}
.password_icon {
    padding: 15px;
    margin-left : 35%;
    /*min-width: 90%;*/
    z-index: 1;
}


/****Global***/

html {
    scroll-behavior: smooth;
}

body {
    color: #000;
    background: #c0dafa;
    font-family: arial;
    font-size: var(--font-normal-size);
    font-weight: 400;
    line-height: 16px;
}


.x_title h2 {
    margin:7px 0 0px 0;
    float: left;
    display: block;
    margin-right: 11px;
    font-size:18px;
    font-weight: normal;
}

.fa_main h2{
    margin: 6px 10px 0 0;
    color: #fff;
}

.filter_section_left h1 {
    color: #2b4059;
    font-size: 18px;
    margin-bottom: 4px;
    margin-top: 6px;
    font-weight:bold;
}

button.dropdown-toggle {
    border-radius:0px;
}

input[type=button], button[type=button], a.btn, button[type=submit], .button.btn {
    border-radius: 4px;
    margin-left: 3px;
    margin-right: 3px;
}
button:first-child {
    margin-left: 0px;
}
button:last-child {
    margin-right: 0px;
}
button:only-child {
    margin-left: 3px;
    margin-right: 3px;
}


.add-btn {
    margin-right: 10px;
}


input.chela_mailing_change ~ span{
    top: -3px;
}

.change-sequence-btn {
    margin-left:10px;
    margin-right: 0px;
}

.delivery-method-text {
    line-height:33px;
}

.check-p, .check-e, .delivery-method-text  {margin-right:10px;}
.check-p label, .check-e label {
    padding-top:6px;
}

button.dropdown-toggle select option:hover, .dropdown-menu>.active>a, .dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover, ul.ui-autocomplete li:hover div  {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
    border:0px;
}

.ui-menu .ui-menu-item {
    width:100%;
}

li div.ui-state-active {
    color: #262626;
    text-decoration: none;;
    background-color: #cfe6fc;;
    border:0px;;
}

.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th {
    vertical-align: middle;
}

/****Global end***/

form {
    margin-bottom:0px;
}

.dropdown-toggle {
    padding:6.3px;
}

.modal-body {
    position: relative;
    padding: 15px;
    width: 100%;
    float: left;
}

.no-padding-left {padding-left:0px;}

.status .dropdown.status_drop {
    float: right;
}

.action-wrapper {
    width:100%;
}
.action-wrapper .pull-left:not(:last-child),
.adm-log-bar .pull-right:not(:first-child)
{
    /*margin-right: 10px;*/
}

.inventroy-count-wrap {
    float:left;
    margin-right: 10px;
}

.inventroy-count-wrap label.control-label {
    padding: 7px 0 0 0px;
    margin-left: 8px;
}

.inventroy-count-wrap .status_drop button {
    margin-left:10px;
    padding: 8px;
}

.inventroy-count-wrap .status_drop button span.caret {
    line-height:0px;
}

.status-wrap {
    float: left;
    margin-left: 5px;
    margin-right: 5px;
}

.status-wrap .status_drop button{
    background-color: #fff;
    min-width: 60px;
    padding-right: 22px;
    line-height: 1;
    height: 32px;
}
.status_drop {
    display:inline-block;
    width: initial;
}
.control-info .status_drop button label {
    width: 100%;
}

.status-wrap label.control-label {
    margin-left: 10px;
    margin-right: 10px;
}

td .status_drop button {
    background-color:transparent;
    border-color: #ccc;
    margin: 0px;
    border: 1px solid #ccc;
    padding: 5px;
    height: initial;
    line-height: initial;
}

td .status_drop .dropdown-menu>li>a:focus, td .status_drop .dropdown-menu>li>a:hover {
    background-color:transparent;
}

.filter-btn-wrapper {
    float:left;
}

.modal-footer {
    padding: 0;
    text-align: right;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
    margin-top: 20px;
    width: 100%;
    float: left;
}

ul.bar_tabs>li{
    border:1px solid #E6E9ED;
    color:#333;
    margin-top:-21.5px;
    margin-left:8px;
    background:#fff;
    border-bottom:none;
    border-radius:4px 4px 0 0
}

ul.bar_tabs>li.active{
    border-right:6px solid #D3D6DA;
    border-top:0;
}

.large ul.bar_tabs>li.active, .ul.bar_tabs>li.active {
    margin-top: -20px;
}

.record ul.bar_tabs>li.active {
    border-right: 6px solid #D3D6DA;
    border-top: 0;
    position: relative;
    top: 1px;
}


.heading-text{
    font-size: 15px;
}

.search-wrapper {
    position: relative;
}

.search_container input {
    color: #232323;
    font-size: 15px;
    font-weight: 400;
    line-height:32px;
    border-radius: 4px;
    padding-right: 30px;
}

li.collapse-link i.fa.fa-chevron-down {
    top:5px;
    position:relative;
}

.panel_toolbox>li>a {
    padding: 5px;
    color: #fff;
}

.modal-content {
    border: 0px solid rgba(0,0,0,.2);
    border-radius: 0;
    float: left;
    width: 100%;
}

.table {
    margin-bottom:0px;
}


.modal-footer button {
    float:left;
}

.filter-panel-bg .panel_toolbox>li>a {
    color: #000;
    font-size: 14px;
    top: 2px;
    position: relative;
}

.label {
    font-size:100%;
}

.dropdown.status_drop.table label.label.label-status {
    padding: 0px 0px 0px 0px;
    position: relative;

}

.filter-panel-bg .x_title.fa_main .panel_toolbox li a {
    position:relative;
    left:8px;
    top:1px;
}

/* Creating Issue in Chela Filters */
/* .filter-panel-bg .x_title.fa_main .panel_toolbox li .fa.fa-chevron-down {
    float: right;
    position: relative;
    font-size: 12px;
    width: 18px;
    top: 3px;
    left: 5px;
}

.filter-panel-bg .x_title.fa_main .panel_toolbox li .fa.fa-chevron-up {
    float: right;
    position: relative;
    font-size: 12px;
    width: 18px;
    top: 1px;
    left: 5px;
} */

.x_title.fa_main .panel_toolbox li a {
    position: relative;
    left: 0px;
}

.x_title.fa_main .panel_toolbox li .fa.fa-chevron-down {
    float: right;
    position: relative;
    font-size: 12px;
    width: 18px;
    top: 0px;
    left: 0px;
}

.x_title.fa_main .panel_toolbox li .fa.fa-chevron-up {
    float: right;
    position: relative;
    font-size: 12px;
    width: 18px;
    top: 0px;
    left: 0px;
}


.advance_filter .col-md-3:nth-child(4n-7) {
    clear: both;
}

.advance_filter label.status_filter_label {
    padding:2px 0 0 31px;
    font-size: 15px;

}

.advance_filter .status_filter {
    margin: 5px 0;
}

.status_filter_label .text-right {
    position: relative;
    top: 2px;
    right: -20px;
}


/*****Custom Radio Buttons****/

label.radiobox_main input {
    opacity: 0;
    cursor: pointer;
}

.checkmark-radio {
    position: absolute;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 50%;
    z-index:999;
    border: 1px solid #ccc;
    left: 0;
}

.container input:checked ~ .checkmark-radio {
    background-color: #8ab0e1;
}

.checkmark-radio:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark-radio:after {
    display: block;
}

.container .checkmark-radio:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

label.radiobox_main {
    width: 25px;
    height: 25px;
    position: relative;
    display: inline-block;
    padding:0px;
}

.radiobox_main ~ .status_filter_label {
    padding: 0 0px 0 0px;
    display: inline-block;
    position: relative;
    top: -12px;
    right: -3px;
}

#confirm_discourse_sequence_change_form label.radiobox_main {
    margin-top: 0px;
}

/* table.dataTable thead tr th:last-child {
    width:100px;
} */

.example-actions a {
    top: 2px;
    position: relative;
}

a._tooltip {
    font-size: 16px !important;
    top: 1px;
    position: relative;
    margin-right: 3px;
    margin-left: 3px;
    padding: 3px;
}

td a._tooltip i.fa-edit {
    position:relative;
    top: 1px;
}

td a._tooltip i.fa-trash {
    position:relative;
}

.balance-wrap {
    margin:14px 0 12px 0;
}

.balance-wrap span {
    margin-left: 6px;
    padding:5px;
}

.border-blue table tbody tr td, .border-blue table thead tr th {
    border:1px solid #fff;
}

.chela-other-btn .bootstrap-select > button.btn.btn-light,
.chela-other-btn .bootstrap-select > button.btn.btn-light:hover {
    color: #fff !important;
    background-color: #2b4059;
    border-color: #2b4058;
}

.chela-other-btn .selPkrBg button {
    border-radius: 4px;
    margin-right:0px;
}

.margin-right-10 {
    margin-right: 8px;
    margin-top: 6px;
}

.padding-top-68 {
    padding-top: 68px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-top-40 {
    padding-top: 40px;
}


#myTabContent .relative label span.checkmark {
    left:0px;
}

.filter-panel-bg .x_title h2 {
    color: #000;
    font-size: 15px;
}

/*.filter_panel {*/
    /*position: relative;*/
    /*top: 10px;*/
/*}*/

.filter_panel label.status_filter_label {
    position:relative;
    /*width: 45px;*/
}

.filter_panel .status_filter_label .text-right {
    position: absolute;
    right: -10px;
    font-size: 13px;
    top:4px;
}

input[readonly].totalRec {
    background:#fff;
}

.required {
    margin-right: 05px;
    color: red;
}

.staric{
    color: red;
}
.btn-cancel{
    color:#fff;
    background: #5d5d5d;
    margin-right:10px;
}

.btn-cancel:active, .btn-cancel:focus {
    color:#fff;
}

.btn-cancel:hover{
    color:#fff;
    background: #1d1d1d;
}

#customErrorModal .modal-content button.btn-cancel {
    margin-right:0px;
}

button.saveBtn {
    float:left;
    margin-left: 10px;
}

button.ok {
    float:right;
}

.chela-other-btn .print_labels_option {
    margin-right: 5px;
}

.chela-other-btn .btn_email_list {
    margin-left: 5px;
}

.bootstrap-select button{
    border-radius:0px;
}


.add_attrib button.btn.btn-default {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
    width: 100%;
    color: #232323;
    border: 1px solid lightgray;
}
button.btn.btn-default:focus {
    color: #FFFFFF;
}

.add_attrib {
    float: left;
    margin-left: 3px;
    margin-right: 3px;
}

.x_title span.count {
    background: #c0dbfb;
    border-radius: 6px;
    padding: 3px;
    color: #334a65;
    font-size: 12px;
    margin-top: 5px;
    float: left;
    width: 32px;
    height: 21px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    line-height: 16px;
}
.top_nav .nav_menu {
    height:68px;
}

.modal-footer button.btn.btn-default.saveBtn {
    float:none;
}

.modal-footer button.btn.btn-default.cencel {
    margin-right:0px;
}

.filter-panel .cencel,.filter-panel .btn-cancel {
    float:right;
    margin:0px;
}

.btn-info {
    color: #fff;
    background-color: #2d628d;
    border-color: #2d628d;
}

span.dollar-sign {
    padding: 0 5px 0 0;
    margin: 0px;
    font-size: 1em;
    line-height: 1;
}

button.form-control {
    border-radius: 4px;
}

.padding-right-8{
    padding-right:8px;
}

td a.edit_entry i.fa-edit {
    top: 0px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.status_drop ul.max-200{
    min-width:178px;
}

.modal-dialog .filter_section {
    margin:0px;
    border:0px;
    padding:0px 0px 10px 0;
}

.modal-body label.radiobox_main {
    margin-top:4px;
}

#Donations .balance-wrap {
    padding:0px;
}

.balance-wrap #dues_next_amount {
    margin-right:6px;
}

.savePaymentBtns .btn {
    margin-right:10px;
}

/*table thead tr th {
    width:30px;
}*/

.bootstrap-select .dropdown-toggle:focus {
    outline:0px;
    outline-offset: -2px;
}
.btn.btn-default,
a.btn-default {
    border: 1px solid gainsboro;
}
.btn.btn-default.btn-primary {
    border: 1px solid transparent;
}
.btn-default.focus, .btn-default:focus {
    border-color:#ccc;
}

.filter-heading-text {
    color: #2b4059;
    font-size: 16pt;
    margin-bottom: 0;
    font-weight: bold;
    display:inline-block;
}

.form-group input, button.dropdown-toggle, button.dropdown-toggle span  {
    color:#767676;
}

.selPkrBg button.dropdown-toggle span.filter-option{
    color: #fff;
}

.selPkrBg button.dropdown-toggle span.bs-caret span.caret{
    color: #fff;
}

.dropdown-menu>li>a {
    color: var(--color-black);
}

.dropdown-menu>li>a:hover label{
    color:#fff;
}

.payNeedChelaPin table tbody td div.row div.col-md-4 div.pull-left {
    width:100%;
    float:none;
}

/****Payment and order****/

/* th.payCreateRowAdd {
    width:;
}

th.paySeminarCreateRowAdd {
    width:;
} */

/*This will work for firefox*/
@-moz-document url-prefix() {
    th.paySeminarCreateRowAdd {
        width:40px;
    }
}

.toppadding-2-label {
    padding-top:2px;
}

th.paySeminarCreateRowAdd ~ th:nth-child(5){
    width:140px;
}

.input-wrap ingput {
    width: 27px;
    margin: 0px;
}

.width-100px {
    width:92px;
    display: inline-block;
}

.orderCreateTbl thead th:first-child.orderCreateRowAdd {
    background-color: inherit;
    border: /*1px solid*/ #ddd;
}

/****Payment and order closed****/

.modal-body .review_add .checkmark {
    display: block;
}

.bootstrap-select>.dropdown-toggle {
    /* line-height:32px; */
}

.order-listing table {
    width:100%;
}

.list-by-radio-style .status_filter, .list-by-radio-style label.radiobox_main {margin-top:0px; padding:0px; }

.padding-right-3 {    padding-right: 3px;}
.no-padding-right {padding-right:0px;}
.padding-left-7 {    padding-left: 7px;}
.padding-right-0 {padding-right:0px;}
.margin-right-10 {margin-right:10px;}
.chela-main-right-fixed > div:nth-child(even){    padding-right:15px }
.menu-padding-left {padding-left:15px;}
li.menu-item-ctn .fa_main h2 {margin-top:1px;     font-size: var(--font-normal-size);}
.add-menu h2 {margin:7px 0 6px 0;}
.add-menu-dropdown .x_title.blue.fa_main.menu {padding:10px 12px;}
.add-menu-dropdown ul.panel_toolbox li a {left:0px;     float: left;    padding: 0px 0px 0 0px;}
.add-menu-dropdown  .x_title.blue.fa_main.menu .fa.fa-chevron-down, .add-menu-dropdown .x_title.blue.fa_main.menu i.fa.fa-chevron-up {    top: 4px;    left: 8px;}
.menu-h2 h2 {margin:5px 10px 0px 0;}
.menu-h2 i.fa { top:4px;}
.menu-h2 a.collapse-link i {top:2px;}

.gotop {
    position: fixed;
    bottom: 40px;
    right: 10px;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.67);
    font-size: 12px;
    padding: 1em;
    display: none;
    text-align: center;
    border-radius: 2px;
    z-index: 99999;
}
.gotop .fa {
    font-size: 20px;
}
.gotop:hover {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.gobottom {
    position: fixed;
    top: 40px;
    right: 10px;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.67);
    font-size: 12px;
    padding: 1em;
    display: none;
    text-align: center;
    border-radius: 2px;
    z-index: 99999;
}
.gobottom .fa {
    font-size: 20px;
}
.gobottom:hover {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
}

/* Mtfz */
.payTypeNotes {
    margin: 5px;
}

.error_main {
    text-align: center;
}

.error_main .error_icon_main {
    font-size:100px;
}

.for_eorr h1 {
    color: #f4c676;
    font-size: 100px;
}

.for_eorr {
    text-align: center;
}

.placeholder-center::-webkit-input-placeholder {
    text-align: center;
}

.placeholder-center::-moz-placeholder { /* Firefox 19+ */
    text-align: center;
}

.placeholder-center:-ms-input-placeholder {
    text-align: center;
}

.anet-batches-transactions .panel-body {
    background-color: white;
    padding: 0;
}

.anet-trans-page-view {
    cursor: pointer;
}

/* Mtfz -- End*/


.chela-letter-listing-checkbox span.status_filter {
    margin-top: 3px;
    margin-bottom: 3px;
    float: left;
    width: 100%;
}


.chela-letter-listing-radio label.radiobox_main .checkmark-radio {
    border:1px solid #d1d3d2;
}

.chela-letter-listing-radio label.radiobox_main {    margin:0px; }
table.blue-thead thead {  background: #2b4059;    color: #fff;    font-size: 15px;    border: 1px solid #334e6e;    vertical-align: middle; }
a.print-icon i.fa{ top: 3px;}
table.blue-thead thead tr td {    padding:5px 22px;}
.modal-content, .datepicker-days{position: relative; z-index: 10000;}
.blue-bg {background:#eeefee;     border: 1px solid #fcfcfc;}
.blue-bg ~ .x_content h3 {font-size:18px;}
.blue-bg h2, .blue-bg .panel_toolbox li a {color:#4a4a4a;}
#EntriesGrid_wrapper table, .scroll_desktop_width {
    width:100%;
}
#widthauto {width:500px;}
.todoListContainer tbody tr{
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}
.ui-progressbar {
    position: relative;
    margin-bottom: 20px;
}
.ui-progressbar .progress-label {
    position: absolute;
    left: 50%;
    top: 4px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #fff;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option{width:100%;}

.init-strip{text-align: left; padding: 0px 10px; background:#e8eff9; color:#000; font-weight: 500; font-size:15px;}

/*Ade CSS*/
.nowrap{white-space: nowrap;}

/*****************************************NEW CLASSES************************************/
.main_heading_line {
    margin-top:0;
    margin-bottom: 15px;
    border-color:#ccc ;
}
.fixedHeader-floating {
    left: 340px;
}

.form_control_padding{
    padding: 6px 12px;
}
.datepicker.dropdown-menu {
    font-size:15px;
    padding: 5px;
}
.seq_hold_cmpt_tm {margin-top: 63px;}
/*****************************************RVT CLASSES************************************/
.seq_chk_row {margin-top: 20px;position: relative;right: 6px;margin-bottom: -10px;}
.seq_chk_box{top: 6px;position:absolute;;left:43px;}

.printing_result {color:#fff;}

.print_result_color button.dropdown-toggle span {
    color: #fff;
}

.printing_result button{
    color: #fff;
    background-color: #2b4059;
    border-color: #2b4058;
}

.printing_result button:hover{
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}
.indexing_important {z-index: 999;}
.rmvSeqIteminsert {margin:3px 0 0 0;}

.display_flex_wrap {display: flex;flex-wrap: wrap;}
.panel_toolbox .fa-chevron-down {
    position:relative;
    top:4px;
}
.panel_toolbox .fa-chevron-up:before {
    position:relative;
    top:2px;
}
.order-table td {
    padding-bottom: 15px;
}

@media screen And (max-width: 1440px) {
    .advance_filter .status_filter {
        height:60px;
    }
}
@media screen And (max-width: 1700px) {

}

/*
html_templates css starts here
 */

.table.table-gray thead th {
    background: #2b4059;
    color: #fff;
    font-size: 15px;
    border: 1px solid #334e6e;
    padding-right: 22px;
    font-weight: 600;
    vertical-align: middle;
}

.table.table-gray tbody td {
    background: #ececec;
}

.table.table-gray tbody td {
    vertical-align: top;
}

.table.table-gray tbody td.has-border-top {
    border-top-width: 1px;
}

.table.table-gray tbody td.has-border-bottom {
    border-bottom-width: 1px;
}

.table.table-gray tbody td.has-border-right {
    border-right-width: 1px;
}

.table.table-gray tbody td.has-border-left {
    border-left-width: 1px;
}

/*
.datepicker {
    text-align: center;
}

.datepicker::-webkit-input-placeholder {
    color: #eaeaea;
    font-size: 18px;
}

.datepicker::-moz-placeholder {
    color: #eaeaea;
    font-size: 18px;
}

.datepicker::-ms-input-placeholder {
    color: #eaeaea;
    font-size: 18px;
}
*/

label {
    font-size: var(--font-normal-size);
}

.fancy-container {
    margin: 10px 0;
}

.fancy-container label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.fancy-container:first-child {
    margin-top: 0;
}

.fancy-element {
    display: none;
}

.fancy-element + span {
    width: 22px;
    height: 22px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: white;
    /*border-radius: 3px;*/
    margin-right: 10px;
}

.fancy-element + span i {
    -webkit-transition: opacity ease 0.1s;
    transition: opacity ease 0.1s;
    opacity: 0;
    color: white;
    font-size: 12px;
}

.fancy-element[type='radio'] + span {
    border-radius: 120px;
}

.fancy-element:checked + span {
    background: #90afde;
}

.fancy-element:checked + span i {
    opacity: 1;
}

.has-margin-top {
    margin-top: 5px;
}

.has-margin-bottom {
    margin-bottom: 5px;
}

.has-margin-left {
    margin-left: 5px;
}

.has-margin-right {
    margin-right: 5px;
}

.small-input {
    margin-right: 10px;
    width: 50px;
}

/** New Designs 12/04 **/
.deposit-name-field-number {
    width: 50px;
}

.deposit-name-field {
    width: 100px;
}

.deposit-date {
    width: 210px;
    text-align: left;
}

.deposit-name-field-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.deposit-name-field-container + label {
    padding-left: 10px;
}

.deposit-name-field-container .deposit-name-field-container {
    width: 210px;
}

.deposit-name-field-container label {
    margin-bottom: 0;
}

.deposits-button {
    margin: 5px 10px;
    background-color: #2b4159;
    min-width: 200px;
}

.deposits-button.disabled {
    background: gray;
    border-color: gray;
    color: white;
}

.mt-0 {
    margin-top: 0;
}

.p-0 {
    padding: 0;
}

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

.d-flex-space {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

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

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

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

.deposits-table {
    border: 1px solid black;
    padding: 15px;
    background-color: #d6e7fb;
}

.deposits-title-table {
    padding-top: 5px;
    padding-bottom: 20px;
}

.deposits-title-table h4 {
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}

.summary-table {
    width: 100%;
}

.summary-table thead tr:first-child {
    padding: 8px 0;
}

.summary-table thead tr:first-child th {
    padding: 8px 0;
}

/* .summary-table tr:nth-child(2) td {
    padding-top: 16px;
} */

.summary-table tr td {
    color: #0e52a3;
    font-weight: bold;
    padding: 4px 0;
}

.datepicker-width {
    width: 100%;
}

.button-dropdown-width {
    max-width: 260px;
}

@media screen and (max-width: 1600px) {
    .button-dropdown-width {
        width: 90%;
    }
}

@media screen and (max-width: 1400px) {
    .button-dropdown-width {
        width: 100%;
    }
}

.deposits-dropdown .form-control {
    height: 30px;
    border-radius: 0;
    padding: 0 10px;
}

.deposits-dropdown .form-control label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-width: calc(100% - 20px);
    margin: 0;
}

.deposits-dropdown .dropdown-menu {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    width: 100%;
    max-width: 260px;
}

@media screen and (max-width: 1600px) {
    .deposits-dropdown .dropdown-menu {
        width: 90%;
    }
}

@media screen and (max-width: 1400px) {
    .deposits-dropdown .dropdown-menu {
        width: 100%;
    }
}

.deposits-dropdown .dropdown-menu li a {
    background: #263950e6;
    padding: 4px 10px;
    border-bottom: 1px solid white;
    color: white;
}

.deposits-dropdown .dropdown-menu li a label {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 15px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.deposits-dropdown .dropdown-menu li:last-child a {
    border-bottom: 0;
}

.deposits-dropdown .dropdown-menu li:hover a {
    color: #767676;
    text-decoration: none;
    background-color: #f5f5f5;
}

.deposits-container input[type="text"] {
    border: 1px solid #ccc;
}

.deposits-container table.table-striped {
    margin-bottom: 0;
}

/* .deposits-container table.table-striped td:not(:last-child),
.deposits-container table.table-striped th:not(:last-child) {
    text-align: left;
} */

.deposits-container table.table-striped td,
.deposits-container table.table-striped th {
    padding: 10px 8px;
}

.deposits-container .scroll_desktop_main {
    /*max-height: 400px;*/
}

.deposits-container .scroll_desktop_main::before, .deposits-container .scroll_desktop_main::after {
    display: none;
}

.cross-checkbox {
    margin: 0;
}

.cross-checkbox input {
    display: none;
}

.cross-checkbox span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    background: white;
    border: 1px solid #ccc;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.cross-checkbox input:checked + span::after {
    content: "X";
}


/* Added by Josue 21/03, fonts weren't showing so i local include */
/*
.datepicker {
    border-radius: 0px;
}
*/

.pace {
    -webkit-pointer-events: none;
    pointer-events: none;

    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    background: #263950;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}
.input-sm {
    font-size:15px;
}
.form-control {
    font-size: var(--font-normal-size);
}
.wickedpicker__title {
    font-size: var(--font-normal-size);
    padding:10px 0;
}
.wickedpicker__controls__control, .wickedpicker__controls__control--separator {
    font-size: var(--font-normal-size);
}
.input-sm::-webkit-input-placeholder {
    color: lightgray;
}

.input-sm::-moz-placeholder {
    color: #767676;
}

.input-sm::-ms-input-placeholder {
    color: #767676;
}
#from_date2,#to_date2,#from_date,#to_date,
#from_time2,#to_time2,#from_time,#to_time {
    text-align: center;
}
.inventory_count_table tr th{
    background-color: transparent;
    border:none;
    font-weight:100;
    color:#000;
    padding: 10px 0;
}

.modal-top{
    position: fixed;
    right: 6%;
    background: black;
    bottom: 10%;
    color: white;
    position: fixed;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.67);
    font-size: 12px;
    padding: 1em;
    display: none;
    text-align: center;
    border-radius: 2px;
    z-index: 99999;
  }

  .modal-bot{
    position: fixed;
    right: 6%;
    background: black;
    top: 29%;
    color: white;
    position: fixed;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.67);
    font-size: 12px;
    padding: 1em;
    display: none;
    text-align: center;
    border-radius: 2px;
    z-index: 99999;
  }

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #fff;
    opacity: 1;
    color: #000000;
}

input[disabled], input[readonly], textarea, select{
    background-color: #fff;
    opacity: 1;
    color: #000000;
}

.form-group input, button.dropdown-toggle, button.dropdown-toggle span {
    color: #000000;
    opacity: 1;
}

.bootstrap-select.disabled .dropdown-toggle .caret {
    display: none;
}

.lwDtStateAction.bootstrap-select .btn.dropdown-toggle {
    height: 25px;
    padding: 0;
    border-radius: 4px;
    background-color: transparent;
}
.lwDtStateAction.bootstrap-select .dropdown-toggle .caret {
    right: 4px;
}
.lwDtStateAction.bootstrap-select .btn.dropdown-toggle .filter-option .fa {
    margin-left: 0;
}
.lwDtStateAction.bootstrap-select .dropdown-menu {
    padding: 0;
}
.lwDtStateAction.bootstrap-select .dropdown-menu > li > a {
    padding: 4px 8px !important;
}
.filterByState.bootstrap-select .btn.dropdown-toggle {
    border-radius: 4px;
}
.filterByState.bootstrap-select .dropdown-menu > li > a {
    padding: 3px 10px;
}
.filterByState.bootstrap-select .btn.dropdown-toggle .filter-option {
    margin-left: 0;
}
.filterByState.bootstrap-select .btn.dropdown-toggle .filter-option .fa {
    margin-left: 0;
}

.col-0 {
  width: 0%;
  flex-basis: 0%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-0 {
  width: 0%;
}

.col-1 {
  width: 8.3333333333%;
  flex-basis: 8.3333333333%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
  flex-basis: 16.6666666667%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
  flex-basis: 25%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
  flex-basis: 33.3333333333%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
  flex-basis: 41.6666666667%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
  flex-basis: 50%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
  flex-basis: 58.3333333333%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
  flex-basis: 66.6666666667%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
  flex-basis: 75%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
  flex-basis: 83.3333333333%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
  flex-basis: 91.6666666667%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
  flex-basis: 100%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-12 {
  width: 100%;
}

.col-0s {
  width: 0%;
  flex-basis: 0%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-0, .no-gutter .col-0s {
  padding-right: 0%;
  padding-left: 0%;
}

.col-1s {
  width: 4.1666666667%;
  flex-basis: 4.1666666667%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-1, .no-gutter .col-1s {
  padding-right: 4.1666666667%;
  padding-left: 4.1666666667%;
}

.col-2s {
  width: 8.3333333333%;
  flex-basis: 8.3333333333%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-2, .no-gutter .col-2s {
  padding-right: 8.3333333333%;
  padding-left: 8.3333333333%;
}

.col-3s {
  width: 12.5%;
  flex-basis: 12.5%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-3, .no-gutter .col-3s {
  padding-right: 12.5%;
  padding-left: 12.5%;
}

.col-4s {
  width: 16.6666666667%;
  flex-basis: 16.6666666667%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-4, .no-gutter .col-4s {
  padding-right: 16.6666666667%;
  padding-left: 16.6666666667%;
}

.col-5s {
  width: 20.8333333333%;
  flex-basis: 20.8333333333%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-5, .no-gutter .col-5s {
  padding-right: 20.8333333333%;
  padding-left: 20.8333333333%;
}

.col-6s {
  width: 25%;
  flex-basis: 25%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-6, .no-gutter .col-6s {
  padding-right: 25%;
  padding-left: 25%;
}

.col-7s {
  width: 29.1666666667%;
  flex-basis: 29.1666666667%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-7, .no-gutter .col-7s {
  padding-right: 29.1666666667%;
  padding-left: 29.1666666667%;
}

.col-8s {
  width: 33.3333333333%;
  flex-basis: 33.3333333333%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-8, .no-gutter .col-8s {
  padding-right: 33.3333333333%;
  padding-left: 33.3333333333%;
}

.col-9s {
  width: 37.5%;
  flex-basis: 37.5%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-9, .no-gutter .col-9s {
  padding-right: 37.5%;
  padding-left: 37.5%;
}

.col-10s {
  width: 41.6666666667%;
  flex-basis: 41.6666666667%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-10, .no-gutter .col-10s {
  padding-right: 41.6666666667%;
  padding-left: 41.6666666667%;
}

.col-11s {
  width: 45.8333333333%;
  flex-basis: 45.8333333333%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-11, .no-gutter .col-11s {
  padding-right: 45.8333333333%;
  padding-left: 45.8333333333%;
}

.col-12s {
  width: 50%;
  flex-basis: 50%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-12, .no-gutter .col-12s {
  padding-right: 50%;
  padding-left: 50%;
}

.col-13s {
  width: 54.1666666667%;
  flex-basis: 54.1666666667%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-13, .no-gutter .col-13s {
  padding-right: 54.1666666667%;
  padding-left: 54.1666666667%;
}

.col-14s {
  width: 58.3333333333%;
  flex-basis: 58.3333333333%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-14, .no-gutter .col-14s {
  padding-right: 58.3333333333%;
  padding-left: 58.3333333333%;
}

.col-15s {
  width: 62.5%;
  flex-basis: 62.5%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-15, .no-gutter .col-15s {
  padding-right: 62.5%;
  padding-left: 62.5%;
}

.col-16s {
  width: 66.6666666667%;
  flex-basis: 66.6666666667%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-16, .no-gutter .col-16s {
  padding-right: 66.6666666667%;
  padding-left: 66.6666666667%;
}

.col-17s {
  width: 70.8333333333%;
  flex-basis: 70.8333333333%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-17, .no-gutter .col-17s {
  padding-right: 70.8333333333%;
  padding-left: 70.8333333333%;
}

.col-18s {
  width: 75%;
  flex-basis: 75%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-18, .no-gutter .col-18s {
  padding-right: 75%;
  padding-left: 75%;
}

.col-19s {
  width: 79.1666666667%;
  flex-basis: 79.1666666667%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-19, .no-gutter .col-19s {
  padding-right: 79.1666666667%;
  padding-left: 79.1666666667%;
}

.col-20s {
  width: 83.3333333333%;
  flex-basis: 83.3333333333%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-20, .no-gutter .col-20s {
  padding-right: 83.3333333333%;
  padding-left: 83.3333333333%;
}

.col-21s {
  width: 87.5%;
  flex-basis: 87.5%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-21, .no-gutter .col-21s {
  padding-right: 87.5%;
  padding-left: 87.5%;
}

.col-22s {
  width: 91.6666666667%;
  flex-basis: 91.6666666667%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-22, .no-gutter .col-22s {
  padding-right: 91.6666666667%;
  padding-left: 91.6666666667%;
}

.col-23s {
  width: 95.8333333333%;
  flex-basis: 95.8333333333%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-23, .no-gutter .col-23s {
  padding-right: 95.8333333333%;
  padding-left: 95.8333333333%;
}

.col-24s {
  width: 100%;
  flex-basis: 100%;
  padding-right: 1%;
  padding-left: 1%;
}

.no-gutter .col-24, .no-gutter .col-24s {
  padding-right: 100%;
  padding-left: 100%;
}

.col-0p {
  width: 0%;
  flex-basis: 0%;
}

.w-0 {
  width: 0%;
  flex-basis: 0%;
}

.h-0 {
  height: 0%;
  flex-basis: 0%;
}

.wi-0 {
  width: 0% !important;
  flex-basis: 0% !important;
}

.hi-0 {
  height: 0% !important;
  flex-basis: 0% !important;
}

.col-1p {
  width: 1%;
  flex-basis: 1%;
}

.w-1 {
  width: 1%;
  flex-basis: 1%;
}

.h-1 {
  height: 1%;
  flex-basis: 1%;
}

.wi-1 {
  width: 1% !important;
  flex-basis: 1% !important;
}

.hi-1 {
  height: 1% !important;
  flex-basis: 1% !important;
}

.col-2p {
  width: 2%;
  flex-basis: 2%;
}

.w-2 {
  width: 2%;
  flex-basis: 2%;
}

.h-2 {
  height: 2%;
  flex-basis: 2%;
}

.wi-2 {
  width: 2% !important;
  flex-basis: 2% !important;
}

.hi-2 {
  height: 2% !important;
  flex-basis: 2% !important;
}

.col-3p {
  width: 3%;
  flex-basis: 3%;
}

.w-3 {
  width: 3%;
  flex-basis: 3%;
}

.h-3 {
  height: 3%;
  flex-basis: 3%;
}

.wi-3 {
  width: 3% !important;
  flex-basis: 3% !important;
}

.hi-3 {
  height: 3% !important;
  flex-basis: 3% !important;
}

.col-4p {
  width: 4%;
  flex-basis: 4%;
}

.w-4 {
  width: 4%;
  flex-basis: 4%;
}

.h-4 {
  height: 4%;
  flex-basis: 4%;
}

.wi-4 {
  width: 4% !important;
  flex-basis: 4% !important;
}

.hi-4 {
  height: 4% !important;
  flex-basis: 4% !important;
}

.col-5p {
  width: 5%;
  flex-basis: 5%;
}

.w-5 {
  width: 5%;
  flex-basis: 5%;
}

.h-5 {
  height: 5%;
  flex-basis: 5%;
}

.wi-5 {
  width: 5% !important;
  flex-basis: 5% !important;
}

.hi-5 {
  height: 5% !important;
  flex-basis: 5% !important;
}

.col-6p {
  width: 6%;
  flex-basis: 6%;
}

.w-6 {
  width: 6%;
  flex-basis: 6%;
}

.h-6 {
  height: 6%;
  flex-basis: 6%;
}

.wi-6 {
  width: 6% !important;
  flex-basis: 6% !important;
}

.hi-6 {
  height: 6% !important;
  flex-basis: 6% !important;
}

.col-7p {
  width: 7%;
  flex-basis: 7%;
}

.w-7 {
  width: 7%;
  flex-basis: 7%;
}

.h-7 {
  height: 7%;
  flex-basis: 7%;
}

.wi-7 {
  width: 7% !important;
  flex-basis: 7% !important;
}

.hi-7 {
  height: 7% !important;
  flex-basis: 7% !important;
}

.col-8p {
  width: 8%;
  flex-basis: 8%;
}

.w-8 {
  width: 8%;
  flex-basis: 8%;
}

.h-8 {
  height: 8%;
  flex-basis: 8%;
}

.wi-8 {
  width: 8% !important;
  flex-basis: 8% !important;
}

.hi-8 {
  height: 8% !important;
  flex-basis: 8% !important;
}

.col-9p {
  width: 9%;
  flex-basis: 9%;
}

.w-9 {
  width: 9%;
  flex-basis: 9%;
}

.h-9 {
  height: 9%;
  flex-basis: 9%;
}

.wi-9 {
  width: 9% !important;
  flex-basis: 9% !important;
}

.hi-9 {
  height: 9% !important;
  flex-basis: 9% !important;
}

.col-10p {
  width: 10%;
  flex-basis: 10%;
}

.w-10 {
  width: 10%;
  flex-basis: 10%;
}

.h-10 {
  height: 10%;
  flex-basis: 10%;
}

.wi-10 {
  width: 10% !important;
  flex-basis: 10% !important;
}

.hi-10 {
  height: 10% !important;
  flex-basis: 10% !important;
}

.col-11p {
  width: 11%;
  flex-basis: 11%;
}

.w-11 {
  width: 11%;
  flex-basis: 11%;
}

.h-11 {
  height: 11%;
  flex-basis: 11%;
}

.wi-11 {
  width: 11% !important;
  flex-basis: 11% !important;
}

.hi-11 {
  height: 11% !important;
  flex-basis: 11% !important;
}

.col-12p {
  width: 12%;
  flex-basis: 12%;
}

.w-12 {
  width: 12%;
  flex-basis: 12%;
}

.h-12 {
  height: 12%;
  flex-basis: 12%;
}

.wi-12 {
  width: 12% !important;
  flex-basis: 12% !important;
}

.hi-12 {
  height: 12% !important;
  flex-basis: 12% !important;
}

.col-13p {
  width: 13%;
  flex-basis: 13%;
}

.w-13 {
  width: 13%;
  flex-basis: 13%;
}

.h-13 {
  height: 13%;
  flex-basis: 13%;
}

.wi-13 {
  width: 13% !important;
  flex-basis: 13% !important;
}

.hi-13 {
  height: 13% !important;
  flex-basis: 13% !important;
}

.col-14p {
  width: 14%;
  flex-basis: 14%;
}

.w-14 {
  width: 14%;
  flex-basis: 14%;
}

.h-14 {
  height: 14%;
  flex-basis: 14%;
}

.wi-14 {
  width: 14% !important;
  flex-basis: 14% !important;
}

.hi-14 {
  height: 14% !important;
  flex-basis: 14% !important;
}

.col-15p {
  width: 15%;
  flex-basis: 15%;
}

.w-15 {
  width: 15%;
  flex-basis: 15%;
}

.h-15 {
  height: 15%;
  flex-basis: 15%;
}

.wi-15 {
  width: 15% !important;
  flex-basis: 15% !important;
}

.hi-15 {
  height: 15% !important;
  flex-basis: 15% !important;
}

.col-16p {
  width: 16%;
  flex-basis: 16%;
}

.w-16 {
  width: 16%;
  flex-basis: 16%;
}

.h-16 {
  height: 16%;
  flex-basis: 16%;
}

.wi-16 {
  width: 16% !important;
  flex-basis: 16% !important;
}

.hi-16 {
  height: 16% !important;
  flex-basis: 16% !important;
}

.col-17p {
  width: 17%;
  flex-basis: 17%;
}

.w-17 {
  width: 17%;
  flex-basis: 17%;
}

.h-17 {
  height: 17%;
  flex-basis: 17%;
}

.wi-17 {
  width: 17% !important;
  flex-basis: 17% !important;
}

.hi-17 {
  height: 17% !important;
  flex-basis: 17% !important;
}

.col-18p {
  width: 18%;
  flex-basis: 18%;
}

.w-18 {
  width: 18%;
  flex-basis: 18%;
}

.h-18 {
  height: 18%;
  flex-basis: 18%;
}

.wi-18 {
  width: 18% !important;
  flex-basis: 18% !important;
}

.hi-18 {
  height: 18% !important;
  flex-basis: 18% !important;
}

.col-19p {
  width: 19%;
  flex-basis: 19%;
}

.w-19 {
  width: 19%;
  flex-basis: 19%;
}

.h-19 {
  height: 19%;
  flex-basis: 19%;
}

.wi-19 {
  width: 19% !important;
  flex-basis: 19% !important;
}

.hi-19 {
  height: 19% !important;
  flex-basis: 19% !important;
}

.col-20p {
  width: 20%;
  flex-basis: 20%;
}

.w-20 {
  width: 20%;
  flex-basis: 20%;
}

.h-20 {
  height: 20%;
  flex-basis: 20%;
}

.wi-20 {
  width: 20% !important;
  flex-basis: 20% !important;
}

.hi-20 {
  height: 20% !important;
  flex-basis: 20% !important;
}

.col-21p {
  width: 21%;
  flex-basis: 21%;
}

.w-21 {
  width: 21%;
  flex-basis: 21%;
}

.h-21 {
  height: 21%;
  flex-basis: 21%;
}

.wi-21 {
  width: 21% !important;
  flex-basis: 21% !important;
}

.hi-21 {
  height: 21% !important;
  flex-basis: 21% !important;
}

.col-22p {
  width: 22%;
  flex-basis: 22%;
}

.w-22 {
  width: 22%;
  flex-basis: 22%;
}

.h-22 {
  height: 22%;
  flex-basis: 22%;
}

.wi-22 {
  width: 22% !important;
  flex-basis: 22% !important;
}

.hi-22 {
  height: 22% !important;
  flex-basis: 22% !important;
}

.col-23p {
  width: 23%;
  flex-basis: 23%;
}

.w-23 {
  width: 23%;
  flex-basis: 23%;
}

.h-23 {
  height: 23%;
  flex-basis: 23%;
}

.wi-23 {
  width: 23% !important;
  flex-basis: 23% !important;
}

.hi-23 {
  height: 23% !important;
  flex-basis: 23% !important;
}

.col-24p {
  width: 24%;
  flex-basis: 24%;
}

.w-24 {
  width: 24%;
  flex-basis: 24%;
}

.h-24 {
  height: 24%;
  flex-basis: 24%;
}

.wi-24 {
  width: 24% !important;
  flex-basis: 24% !important;
}

.hi-24 {
  height: 24% !important;
  flex-basis: 24% !important;
}

.col-25p {
  width: 25%;
  flex-basis: 25%;
}

.w-25 {
  width: 25%;
  flex-basis: 25%;
}

.h-25 {
  height: 25%;
  flex-basis: 25%;
}

.wi-25 {
  width: 25% !important;
  flex-basis: 25% !important;
}

.hi-25 {
  height: 25% !important;
  flex-basis: 25% !important;
}

.col-26p {
  width: 26%;
  flex-basis: 26%;
}

.w-26 {
  width: 26%;
  flex-basis: 26%;
}

.h-26 {
  height: 26%;
  flex-basis: 26%;
}

.wi-26 {
  width: 26% !important;
  flex-basis: 26% !important;
}

.hi-26 {
  height: 26% !important;
  flex-basis: 26% !important;
}

.col-27p {
  width: 27%;
  flex-basis: 27%;
}

.w-27 {
  width: 27%;
  flex-basis: 27%;
}

.h-27 {
  height: 27%;
  flex-basis: 27%;
}

.wi-27 {
  width: 27% !important;
  flex-basis: 27% !important;
}

.hi-27 {
  height: 27% !important;
  flex-basis: 27% !important;
}

.col-28p {
  width: 28%;
  flex-basis: 28%;
}

.w-28 {
  width: 28%;
  flex-basis: 28%;
}

.h-28 {
  height: 28%;
  flex-basis: 28%;
}

.wi-28 {
  width: 28% !important;
  flex-basis: 28% !important;
}

.hi-28 {
  height: 28% !important;
  flex-basis: 28% !important;
}

.col-29p {
  width: 29%;
  flex-basis: 29%;
}

.w-29 {
  width: 29%;
  flex-basis: 29%;
}

.h-29 {
  height: 29%;
  flex-basis: 29%;
}

.wi-29 {
  width: 29% !important;
  flex-basis: 29% !important;
}

.hi-29 {
  height: 29% !important;
  flex-basis: 29% !important;
}

.col-30p {
  width: 30%;
  flex-basis: 30%;
}

.w-30 {
  width: 30%;
  flex-basis: 30%;
}

.h-30 {
  height: 30%;
  flex-basis: 30%;
}

.wi-30 {
  width: 30% !important;
  flex-basis: 30% !important;
}

.hi-30 {
  height: 30% !important;
  flex-basis: 30% !important;
}

.col-31p {
  width: 31%;
  flex-basis: 31%;
}

.w-31 {
  width: 31%;
  flex-basis: 31%;
}

.h-31 {
  height: 31%;
  flex-basis: 31%;
}

.wi-31 {
  width: 31% !important;
  flex-basis: 31% !important;
}

.hi-31 {
  height: 31% !important;
  flex-basis: 31% !important;
}

.col-32p {
  width: 32%;
  flex-basis: 32%;
}

.w-32 {
  width: 32%;
  flex-basis: 32%;
}

.h-32 {
  height: 32%;
  flex-basis: 32%;
}

.wi-32 {
  width: 32% !important;
  flex-basis: 32% !important;
}

.hi-32 {
  height: 32% !important;
  flex-basis: 32% !important;
}

.col-33p {
  width: 33%;
  flex-basis: 33%;
}

.w-33 {
  width: 33%;
  flex-basis: 33%;
}

.h-33 {
  height: 33%;
  flex-basis: 33%;
}

.wi-33 {
  width: 33% !important;
  flex-basis: 33% !important;
}

.hi-33 {
  height: 33% !important;
  flex-basis: 33% !important;
}

.col-34p {
  width: 34%;
  flex-basis: 34%;
}

.w-34 {
  width: 34%;
  flex-basis: 34%;
}

.h-34 {
  height: 34%;
  flex-basis: 34%;
}

.wi-34 {
  width: 34% !important;
  flex-basis: 34% !important;
}

.hi-34 {
  height: 34% !important;
  flex-basis: 34% !important;
}

.col-35p {
  width: 35%;
  flex-basis: 35%;
}

.w-35 {
  width: 35%;
  flex-basis: 35%;
}

.h-35 {
  height: 35%;
  flex-basis: 35%;
}

.wi-35 {
  width: 35% !important;
  flex-basis: 35% !important;
}

.hi-35 {
  height: 35% !important;
  flex-basis: 35% !important;
}

.col-36p {
  width: 36%;
  flex-basis: 36%;
}

.w-36 {
  width: 36%;
  flex-basis: 36%;
}

.h-36 {
  height: 36%;
  flex-basis: 36%;
}

.wi-36 {
  width: 36% !important;
  flex-basis: 36% !important;
}

.hi-36 {
  height: 36% !important;
  flex-basis: 36% !important;
}

.col-37p {
  width: 37%;
  flex-basis: 37%;
}

.w-37 {
  width: 37%;
  flex-basis: 37%;
}

.h-37 {
  height: 37%;
  flex-basis: 37%;
}

.wi-37 {
  width: 37% !important;
  flex-basis: 37% !important;
}

.hi-37 {
  height: 37% !important;
  flex-basis: 37% !important;
}

.col-38p {
  width: 38%;
  flex-basis: 38%;
}

.w-38 {
  width: 38%;
  flex-basis: 38%;
}

.h-38 {
  height: 38%;
  flex-basis: 38%;
}

.wi-38 {
  width: 38% !important;
  flex-basis: 38% !important;
}

.hi-38 {
  height: 38% !important;
  flex-basis: 38% !important;
}

.col-39p {
  width: 39%;
  flex-basis: 39%;
}

.w-39 {
  width: 39%;
  flex-basis: 39%;
}

.h-39 {
  height: 39%;
  flex-basis: 39%;
}

.wi-39 {
  width: 39% !important;
  flex-basis: 39% !important;
}

.hi-39 {
  height: 39% !important;
  flex-basis: 39% !important;
}

.col-40p {
  width: 40%;
  flex-basis: 40%;
}

.w-40 {
  width: 40%;
  flex-basis: 40%;
}

.h-40 {
  height: 40%;
  flex-basis: 40%;
}

.wi-40 {
  width: 40% !important;
  flex-basis: 40% !important;
}

.hi-40 {
  height: 40% !important;
  flex-basis: 40% !important;
}

.col-41p {
  width: 41%;
  flex-basis: 41%;
}

.w-41 {
  width: 41%;
  flex-basis: 41%;
}

.h-41 {
  height: 41%;
  flex-basis: 41%;
}

.wi-41 {
  width: 41% !important;
  flex-basis: 41% !important;
}

.hi-41 {
  height: 41% !important;
  flex-basis: 41% !important;
}

.col-42p {
  width: 42%;
  flex-basis: 42%;
}

.w-42 {
  width: 42%;
  flex-basis: 42%;
}

.h-42 {
  height: 42%;
  flex-basis: 42%;
}

.wi-42 {
  width: 42% !important;
  flex-basis: 42% !important;
}

.hi-42 {
  height: 42% !important;
  flex-basis: 42% !important;
}

.col-43p {
  width: 43%;
  flex-basis: 43%;
}

.w-43 {
  width: 43%;
  flex-basis: 43%;
}

.h-43 {
  height: 43%;
  flex-basis: 43%;
}

.wi-43 {
  width: 43% !important;
  flex-basis: 43% !important;
}

.hi-43 {
  height: 43% !important;
  flex-basis: 43% !important;
}

.col-44p {
  width: 44%;
  flex-basis: 44%;
}

.w-44 {
  width: 44%;
  flex-basis: 44%;
}

.h-44 {
  height: 44%;
  flex-basis: 44%;
}

.wi-44 {
  width: 44% !important;
  flex-basis: 44% !important;
}

.hi-44 {
  height: 44% !important;
  flex-basis: 44% !important;
}

.col-45p {
  width: 45%;
  flex-basis: 45%;
}

.w-45 {
  width: 45%;
  flex-basis: 45%;
}

.h-45 {
  height: 45%;
  flex-basis: 45%;
}

.wi-45 {
  width: 45% !important;
  flex-basis: 45% !important;
}

.hi-45 {
  height: 45% !important;
  flex-basis: 45% !important;
}

.col-46p {
  width: 46%;
  flex-basis: 46%;
}

.w-46 {
  width: 46%;
  flex-basis: 46%;
}

.h-46 {
  height: 46%;
  flex-basis: 46%;
}

.wi-46 {
  width: 46% !important;
  flex-basis: 46% !important;
}

.hi-46 {
  height: 46% !important;
  flex-basis: 46% !important;
}

.col-47p {
  width: 47%;
  flex-basis: 47%;
}

.w-47 {
  width: 47%;
  flex-basis: 47%;
}

.h-47 {
  height: 47%;
  flex-basis: 47%;
}

.wi-47 {
  width: 47% !important;
  flex-basis: 47% !important;
}

.hi-47 {
  height: 47% !important;
  flex-basis: 47% !important;
}

.col-48p {
  width: 48%;
  flex-basis: 48%;
}

.w-48 {
  width: 48%;
  flex-basis: 48%;
}

.h-48 {
  height: 48%;
  flex-basis: 48%;
}

.wi-48 {
  width: 48% !important;
  flex-basis: 48% !important;
}

.hi-48 {
  height: 48% !important;
  flex-basis: 48% !important;
}

.col-49p {
  width: 49%;
  flex-basis: 49%;
}

.w-49 {
  width: 49%;
  flex-basis: 49%;
}

.h-49 {
  height: 49%;
  flex-basis: 49%;
}

.wi-49 {
  width: 49% !important;
  flex-basis: 49% !important;
}

.hi-49 {
  height: 49% !important;
  flex-basis: 49% !important;
}

.col-50p {
  width: 50%;
  flex-basis: 50%;
}

.w-50 {
  width: 50%;
  flex-basis: 50%;
}

.h-50 {
  height: 50%;
  flex-basis: 50%;
}

.wi-50 {
  width: 50% !important;
  flex-basis: 50% !important;
}

.hi-50 {
  height: 50% !important;
  flex-basis: 50% !important;
}

.col-51p {
  width: 51%;
  flex-basis: 51%;
}

.w-51 {
  width: 51%;
  flex-basis: 51%;
}

.h-51 {
  height: 51%;
  flex-basis: 51%;
}

.wi-51 {
  width: 51% !important;
  flex-basis: 51% !important;
}

.hi-51 {
  height: 51% !important;
  flex-basis: 51% !important;
}

.col-52p {
  width: 52%;
  flex-basis: 52%;
}

.w-52 {
  width: 52%;
  flex-basis: 52%;
}

.h-52 {
  height: 52%;
  flex-basis: 52%;
}

.wi-52 {
  width: 52% !important;
  flex-basis: 52% !important;
}

.hi-52 {
  height: 52% !important;
  flex-basis: 52% !important;
}

.col-53p {
  width: 53%;
  flex-basis: 53%;
}

.w-53 {
  width: 53%;
  flex-basis: 53%;
}

.h-53 {
  height: 53%;
  flex-basis: 53%;
}

.wi-53 {
  width: 53% !important;
  flex-basis: 53% !important;
}

.hi-53 {
  height: 53% !important;
  flex-basis: 53% !important;
}

.col-54p {
  width: 54%;
  flex-basis: 54%;
}

.w-54 {
  width: 54%;
  flex-basis: 54%;
}

.h-54 {
  height: 54%;
  flex-basis: 54%;
}

.wi-54 {
  width: 54% !important;
  flex-basis: 54% !important;
}

.hi-54 {
  height: 54% !important;
  flex-basis: 54% !important;
}

.col-55p {
  width: 55%;
  flex-basis: 55%;
}

.w-55 {
  width: 55%;
  flex-basis: 55%;
}

.h-55 {
  height: 55%;
  flex-basis: 55%;
}

.wi-55 {
  width: 55% !important;
  flex-basis: 55% !important;
}

.hi-55 {
  height: 55% !important;
  flex-basis: 55% !important;
}

.col-56p {
  width: 56%;
  flex-basis: 56%;
}

.w-56 {
  width: 56%;
  flex-basis: 56%;
}

.h-56 {
  height: 56%;
  flex-basis: 56%;
}

.wi-56 {
  width: 56% !important;
  flex-basis: 56% !important;
}

.hi-56 {
  height: 56% !important;
  flex-basis: 56% !important;
}

.col-57p {
  width: 57%;
  flex-basis: 57%;
}

.w-57 {
  width: 57%;
  flex-basis: 57%;
}

.h-57 {
  height: 57%;
  flex-basis: 57%;
}

.wi-57 {
  width: 57% !important;
  flex-basis: 57% !important;
}

.hi-57 {
  height: 57% !important;
  flex-basis: 57% !important;
}

.col-58p {
  width: 58%;
  flex-basis: 58%;
}

.w-58 {
  width: 58%;
  flex-basis: 58%;
}

.h-58 {
  height: 58%;
  flex-basis: 58%;
}

.wi-58 {
  width: 58% !important;
  flex-basis: 58% !important;
}

.hi-58 {
  height: 58% !important;
  flex-basis: 58% !important;
}

.col-59p {
  width: 59%;
  flex-basis: 59%;
}

.w-59 {
  width: 59%;
  flex-basis: 59%;
}

.h-59 {
  height: 59%;
  flex-basis: 59%;
}

.wi-59 {
  width: 59% !important;
  flex-basis: 59% !important;
}

.hi-59 {
  height: 59% !important;
  flex-basis: 59% !important;
}

.col-60p {
  width: 60%;
  flex-basis: 60%;
}

.w-60 {
  width: 60%;
  flex-basis: 60%;
}

.h-60 {
  height: 60%;
  flex-basis: 60%;
}

.wi-60 {
  width: 60% !important;
  flex-basis: 60% !important;
}

.hi-60 {
  height: 60% !important;
  flex-basis: 60% !important;
}

.col-61p {
  width: 61%;
  flex-basis: 61%;
}

.w-61 {
  width: 61%;
  flex-basis: 61%;
}

.h-61 {
  height: 61%;
  flex-basis: 61%;
}

.wi-61 {
  width: 61% !important;
  flex-basis: 61% !important;
}

.hi-61 {
  height: 61% !important;
  flex-basis: 61% !important;
}

.col-62p {
  width: 62%;
  flex-basis: 62%;
}

.w-62 {
  width: 62%;
  flex-basis: 62%;
}

.h-62 {
  height: 62%;
  flex-basis: 62%;
}

.wi-62 {
  width: 62% !important;
  flex-basis: 62% !important;
}

.hi-62 {
  height: 62% !important;
  flex-basis: 62% !important;
}

.col-63p {
  width: 63%;
  flex-basis: 63%;
}

.w-63 {
  width: 63%;
  flex-basis: 63%;
}

.h-63 {
  height: 63%;
  flex-basis: 63%;
}

.wi-63 {
  width: 63% !important;
  flex-basis: 63% !important;
}

.hi-63 {
  height: 63% !important;
  flex-basis: 63% !important;
}

.col-64p {
  width: 64%;
  flex-basis: 64%;
}

.w-64 {
  width: 64%;
  flex-basis: 64%;
}

.h-64 {
  height: 64%;
  flex-basis: 64%;
}

.wi-64 {
  width: 64% !important;
  flex-basis: 64% !important;
}

.hi-64 {
  height: 64% !important;
  flex-basis: 64% !important;
}

.col-65p {
  width: 65%;
  flex-basis: 65%;
}

.w-65 {
  width: 65%;
  flex-basis: 65%;
}

.h-65 {
  height: 65%;
  flex-basis: 65%;
}

.wi-65 {
  width: 65% !important;
  flex-basis: 65% !important;
}

.hi-65 {
  height: 65% !important;
  flex-basis: 65% !important;
}

.col-66p {
  width: 66%;
  flex-basis: 66%;
}

.w-66 {
  width: 66%;
  flex-basis: 66%;
}

.h-66 {
  height: 66%;
  flex-basis: 66%;
}

.wi-66 {
  width: 66% !important;
  flex-basis: 66% !important;
}

.hi-66 {
  height: 66% !important;
  flex-basis: 66% !important;
}

.col-67p {
  width: 67%;
  flex-basis: 67%;
}

.w-67 {
  width: 67%;
  flex-basis: 67%;
}

.h-67 {
  height: 67%;
  flex-basis: 67%;
}

.wi-67 {
  width: 67% !important;
  flex-basis: 67% !important;
}

.hi-67 {
  height: 67% !important;
  flex-basis: 67% !important;
}

.col-68p {
  width: 68%;
  flex-basis: 68%;
}

.w-68 {
  width: 68%;
  flex-basis: 68%;
}

.h-68 {
  height: 68%;
  flex-basis: 68%;
}

.wi-68 {
  width: 68% !important;
  flex-basis: 68% !important;
}

.hi-68 {
  height: 68% !important;
  flex-basis: 68% !important;
}

.col-69p {
  width: 69%;
  flex-basis: 69%;
}

.w-69 {
  width: 69%;
  flex-basis: 69%;
}

.h-69 {
  height: 69%;
  flex-basis: 69%;
}

.wi-69 {
  width: 69% !important;
  flex-basis: 69% !important;
}

.hi-69 {
  height: 69% !important;
  flex-basis: 69% !important;
}

.col-70p {
  width: 70%;
  flex-basis: 70%;
}

.w-70 {
  width: 70%;
  flex-basis: 70%;
}

.h-70 {
  height: 70%;
  flex-basis: 70%;
}

.wi-70 {
  width: 70% !important;
  flex-basis: 70% !important;
}

.hi-70 {
  height: 70% !important;
  flex-basis: 70% !important;
}

.col-71p {
  width: 71%;
  flex-basis: 71%;
}

.w-71 {
  width: 71%;
  flex-basis: 71%;
}

.h-71 {
  height: 71%;
  flex-basis: 71%;
}

.wi-71 {
  width: 71% !important;
  flex-basis: 71% !important;
}

.hi-71 {
  height: 71% !important;
  flex-basis: 71% !important;
}

.col-72p {
  width: 72%;
  flex-basis: 72%;
}

.w-72 {
  width: 72%;
  flex-basis: 72%;
}

.h-72 {
  height: 72%;
  flex-basis: 72%;
}

.wi-72 {
  width: 72% !important;
  flex-basis: 72% !important;
}

.hi-72 {
  height: 72% !important;
  flex-basis: 72% !important;
}

.col-73p {
  width: 73%;
  flex-basis: 73%;
}

.w-73 {
  width: 73%;
  flex-basis: 73%;
}

.h-73 {
  height: 73%;
  flex-basis: 73%;
}

.wi-73 {
  width: 73% !important;
  flex-basis: 73% !important;
}

.hi-73 {
  height: 73% !important;
  flex-basis: 73% !important;
}

.col-74p {
  width: 74%;
  flex-basis: 74%;
}

.w-74 {
  width: 74%;
  flex-basis: 74%;
}

.h-74 {
  height: 74%;
  flex-basis: 74%;
}

.wi-74 {
  width: 74% !important;
  flex-basis: 74% !important;
}

.hi-74 {
  height: 74% !important;
  flex-basis: 74% !important;
}

.col-75p {
  width: 75%;
  flex-basis: 75%;
}

.w-75 {
  width: 75%;
  flex-basis: 75%;
}

.h-75 {
  height: 75%;
  flex-basis: 75%;
}

.wi-75 {
  width: 75% !important;
  flex-basis: 75% !important;
}

.hi-75 {
  height: 75% !important;
  flex-basis: 75% !important;
}

.col-76p {
  width: 76%;
  flex-basis: 76%;
}

.w-76 {
  width: 76%;
  flex-basis: 76%;
}

.h-76 {
  height: 76%;
  flex-basis: 76%;
}

.wi-76 {
  width: 76% !important;
  flex-basis: 76% !important;
}

.hi-76 {
  height: 76% !important;
  flex-basis: 76% !important;
}

.col-77p {
  width: 77%;
  flex-basis: 77%;
}

.w-77 {
  width: 77%;
  flex-basis: 77%;
}

.h-77 {
  height: 77%;
  flex-basis: 77%;
}

.wi-77 {
  width: 77% !important;
  flex-basis: 77% !important;
}

.hi-77 {
  height: 77% !important;
  flex-basis: 77% !important;
}

.col-78p {
  width: 78%;
  flex-basis: 78%;
}

.w-78 {
  width: 78%;
  flex-basis: 78%;
}

.h-78 {
  height: 78%;
  flex-basis: 78%;
}

.wi-78 {
  width: 78% !important;
  flex-basis: 78% !important;
}

.hi-78 {
  height: 78% !important;
  flex-basis: 78% !important;
}

.col-79p {
  width: 79%;
  flex-basis: 79%;
}

.w-79 {
  width: 79%;
  flex-basis: 79%;
}

.h-79 {
  height: 79%;
  flex-basis: 79%;
}

.wi-79 {
  width: 79% !important;
  flex-basis: 79% !important;
}

.hi-79 {
  height: 79% !important;
  flex-basis: 79% !important;
}

.col-80p {
  width: 80%;
  flex-basis: 80%;
}

.w-80 {
  width: 80%;
  flex-basis: 80%;
}

.h-80 {
  height: 80%;
  flex-basis: 80%;
}

.wi-80 {
  width: 80% !important;
  flex-basis: 80% !important;
}

.hi-80 {
  height: 80% !important;
  flex-basis: 80% !important;
}

.col-81p {
  width: 81%;
  flex-basis: 81%;
}

.w-81 {
  width: 81%;
  flex-basis: 81%;
}

.h-81 {
  height: 81%;
  flex-basis: 81%;
}

.wi-81 {
  width: 81% !important;
  flex-basis: 81% !important;
}

.hi-81 {
  height: 81% !important;
  flex-basis: 81% !important;
}

.col-82p {
  width: 82%;
  flex-basis: 82%;
}

.w-82 {
  width: 82%;
  flex-basis: 82%;
}

.h-82 {
  height: 82%;
  flex-basis: 82%;
}

.wi-82 {
  width: 82% !important;
  flex-basis: 82% !important;
}

.hi-82 {
  height: 82% !important;
  flex-basis: 82% !important;
}

.col-83p {
  width: 83%;
  flex-basis: 83%;
}

.w-83 {
  width: 83%;
  flex-basis: 83%;
}

.h-83 {
  height: 83%;
  flex-basis: 83%;
}

.wi-83 {
  width: 83% !important;
  flex-basis: 83% !important;
}

.hi-83 {
  height: 83% !important;
  flex-basis: 83% !important;
}

.col-84p {
  width: 84%;
  flex-basis: 84%;
}

.w-84 {
  width: 84%;
  flex-basis: 84%;
}

.h-84 {
  height: 84%;
  flex-basis: 84%;
}

.wi-84 {
  width: 84% !important;
  flex-basis: 84% !important;
}

.hi-84 {
  height: 84% !important;
  flex-basis: 84% !important;
}

.col-85p {
  width: 85%;
  flex-basis: 85%;
}

.w-85 {
  width: 85%;
  flex-basis: 85%;
}

.h-85 {
  height: 85%;
  flex-basis: 85%;
}

.wi-85 {
  width: 85% !important;
  flex-basis: 85% !important;
}

.hi-85 {
  height: 85% !important;
  flex-basis: 85% !important;
}

.col-86p {
  width: 86%;
  flex-basis: 86%;
}

.w-86 {
  width: 86%;
  flex-basis: 86%;
}

.h-86 {
  height: 86%;
  flex-basis: 86%;
}

.wi-86 {
  width: 86% !important;
  flex-basis: 86% !important;
}

.hi-86 {
  height: 86% !important;
  flex-basis: 86% !important;
}

.col-87p {
  width: 87%;
  flex-basis: 87%;
}

.w-87 {
  width: 87%;
  flex-basis: 87%;
}

.h-87 {
  height: 87%;
  flex-basis: 87%;
}

.wi-87 {
  width: 87% !important;
  flex-basis: 87% !important;
}

.hi-87 {
  height: 87% !important;
  flex-basis: 87% !important;
}

.col-88p {
  width: 88%;
  flex-basis: 88%;
}

.w-88 {
  width: 88%;
  flex-basis: 88%;
}

.h-88 {
  height: 88%;
  flex-basis: 88%;
}

.wi-88 {
  width: 88% !important;
  flex-basis: 88% !important;
}

.hi-88 {
  height: 88% !important;
  flex-basis: 88% !important;
}

.col-89p {
  width: 89%;
  flex-basis: 89%;
}

.w-89 {
  width: 89%;
  flex-basis: 89%;
}

.h-89 {
  height: 89%;
  flex-basis: 89%;
}

.wi-89 {
  width: 89% !important;
  flex-basis: 89% !important;
}

.hi-89 {
  height: 89% !important;
  flex-basis: 89% !important;
}

.col-90p {
  width: 90%;
  flex-basis: 90%;
}

.w-90 {
  width: 90%;
  flex-basis: 90%;
}

.h-90 {
  height: 90%;
  flex-basis: 90%;
}

.wi-90 {
  width: 90% !important;
  flex-basis: 90% !important;
}

.hi-90 {
  height: 90% !important;
  flex-basis: 90% !important;
}

.col-91p {
  width: 91%;
  flex-basis: 91%;
}

.w-91 {
  width: 91%;
  flex-basis: 91%;
}

.h-91 {
  height: 91%;
  flex-basis: 91%;
}

.wi-91 {
  width: 91% !important;
  flex-basis: 91% !important;
}

.hi-91 {
  height: 91% !important;
  flex-basis: 91% !important;
}

.col-92p {
  width: 92%;
  flex-basis: 92%;
}

.w-92 {
  width: 92%;
  flex-basis: 92%;
}

.h-92 {
  height: 92%;
  flex-basis: 92%;
}

.wi-92 {
  width: 92% !important;
  flex-basis: 92% !important;
}

.hi-92 {
  height: 92% !important;
  flex-basis: 92% !important;
}

.col-93p {
  width: 93%;
  flex-basis: 93%;
}

.w-93 {
  width: 93%;
  flex-basis: 93%;
}

.h-93 {
  height: 93%;
  flex-basis: 93%;
}

.wi-93 {
  width: 93% !important;
  flex-basis: 93% !important;
}

.hi-93 {
  height: 93% !important;
  flex-basis: 93% !important;
}

.col-94p {
  width: 94%;
  flex-basis: 94%;
}

.w-94 {
  width: 94%;
  flex-basis: 94%;
}

.h-94 {
  height: 94%;
  flex-basis: 94%;
}

.wi-94 {
  width: 94% !important;
  flex-basis: 94% !important;
}

.hi-94 {
  height: 94% !important;
  flex-basis: 94% !important;
}

.col-95p {
  width: 95%;
  flex-basis: 95%;
}

.w-95 {
  width: 95%;
  flex-basis: 95%;
}

.h-95 {
  height: 95%;
  flex-basis: 95%;
}

.wi-95 {
  width: 95% !important;
  flex-basis: 95% !important;
}

.hi-95 {
  height: 95% !important;
  flex-basis: 95% !important;
}

.col-96p {
  width: 96%;
  flex-basis: 96%;
}

.w-96 {
  width: 96%;
  flex-basis: 96%;
}

.h-96 {
  height: 96%;
  flex-basis: 96%;
}

.wi-96 {
  width: 96% !important;
  flex-basis: 96% !important;
}

.hi-96 {
  height: 96% !important;
  flex-basis: 96% !important;
}

.col-97p {
  width: 97%;
  flex-basis: 97%;
}

.w-97 {
  width: 97%;
  flex-basis: 97%;
}

.h-97 {
  height: 97%;
  flex-basis: 97%;
}

.wi-97 {
  width: 97% !important;
  flex-basis: 97% !important;
}

.hi-97 {
  height: 97% !important;
  flex-basis: 97% !important;
}

.col-98p {
  width: 98%;
  flex-basis: 98%;
}

.w-98 {
  width: 98%;
  flex-basis: 98%;
}

.h-98 {
  height: 98%;
  flex-basis: 98%;
}

.wi-98 {
  width: 98% !important;
  flex-basis: 98% !important;
}

.hi-98 {
  height: 98% !important;
  flex-basis: 98% !important;
}

.col-99p {
  width: 99%;
  flex-basis: 99%;
}

.w-99 {
  width: 99%;
  flex-basis: 99%;
}

.h-99 {
  height: 99%;
  flex-basis: 99%;
}

.wi-99 {
  width: 99% !important;
  flex-basis: 99% !important;
}

.hi-99 {
  height: 99% !important;
  flex-basis: 99% !important;
}

.col-100p {
  width: 100%;
  flex-basis: 100%;
}

.w-100 {
  width: 100%;
  flex-basis: 100%;
}

.h-100 {
  height: 100%;
  flex-basis: 100%;
}

.wi-100 {
  width: 100% !important;
  flex-basis: 100% !important;
}

.hi-100 {
  height: 100% !important;
  flex-basis: 100% !important;
}

.m-0px {
  margin: 0px;
}

.mt-0px {
  margin-top: 0px;
}

.mb-0px {
  margin-bottom: 0px;
}

.ml-0px {
  margin-left: 0px;
}

.mr-0px {
  margin-right: 0px;
}

.mt--0px {
  margin-top: -0px;
}

.mb--0px {
  margin-bottom: -0px;
}

.ml--0px {
  margin-left: -0px;
}

.mr--0px {
  margin-right: -0px;
}

.my-0px {
  margin-top: 0px;
  margin-bottom: 0px;
}

.mx-0px {
  margin-left: 0px;
  margin-right: 0px;
}

.mi-0px {
  margin: 0px !important;
}

.mti-0px {
  margin-top: 0px !important;
}

.mbi-0px {
  margin-bottom: 0px !important;
}

.mli-0px {
  margin-left: 0px !important;
}

.mri-0px {
  margin-right: 0px !important;
}

.mti--0px {
  margin-top: -0px !important;
}

.mbi--0px {
  margin-bottom: -0px !important;
}

.mli--0px {
  margin-left: -0px !important;
}

.mri--0px {
  margin-right: -0px !important;
}

.myi-0px {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.mxi-0px {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.p-0px {
  padding: 0px;
}

.pt-0px {
  padding-top: 0px;
}

.pb-0px {
  padding-bottom: 0px;
}

.pl-0px {
  padding-left: 0px;
}

.pr-0px {
  padding-right: 0px;
}

.py-0px {
  padding-top: 0px;
  padding-bottom: 0px;
}

.px-0px {
  padding-left: 0px;
  padding-right: 0px;
}

.pi-0px {
  padding: 0px !important;
}

.pti-0px {
  padding-top: 0px !important;
}

.pbi-0px {
  padding-bottom: 0px !important;
}

.pli-0px {
  padding-left: 0px !important;
}

.pri-0px {
  padding-right: 0px !important;
}

.pyi-0px {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.pxi-0px {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

tr.p-0px > td {
  padding: 0px;
}

tr.pt-0px > td {
  padding-top: 0px;
}

tr.pb-0px > td {
  padding-bottom: 0px;
}

tr.pl-0px > td {
  padding-left: 0px;
}

tr.pr-0px > td {
  padding-right: 0px;
}

tr.py-0px > td {
  padding-top: 0px;
  padding-bottom: 0px;
}

tr.px-0px > td {
  padding-left: 0px;
  padding-right: 0px;
}

tr.pi-0px > td {
  padding: 0px !important;
}

tr.pti-0px > td {
  padding-top: 0px !important;
}

tr.pbi-0px > td {
  padding-bottom: 0px !important;
}

tr.pli-0px > td {
  padding-left: 0px !important;
}

tr.pri-0px > td {
  padding-right: 0px !important;
}

tr.pyi-0px > td {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

tr.pxi-0px > td {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

tr.pxi-0px > td {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.m-1px {
  margin: 1px;
}

.mt-1px {
  margin-top: 1px;
}

.mb-1px {
  margin-bottom: 1px;
}

.ml-1px {
  margin-left: 1px;
}

.mr-1px {
  margin-right: 1px;
}

.mt--1px {
  margin-top: -1px;
}

.mb--1px {
  margin-bottom: -1px;
}

.ml--1px {
  margin-left: -1px;
}

.mr--1px {
  margin-right: -1px;
}

.my-1px {
  margin-top: 1px;
  margin-bottom: 1px;
}

.mx-1px {
  margin-left: 1px;
  margin-right: 1px;
}

.mi-1px {
  margin: 1px !important;
}

.mti-1px {
  margin-top: 1px !important;
}

.mbi-1px {
  margin-bottom: 1px !important;
}

.mli-1px {
  margin-left: 1px !important;
}

.mri-1px {
  margin-right: 1px !important;
}

.mti--1px {
  margin-top: -1px !important;
}

.mbi--1px {
  margin-bottom: -1px !important;
}

.mli--1px {
  margin-left: -1px !important;
}

.mri--1px {
  margin-right: -1px !important;
}

.myi-1px {
  margin-top: 1px !important;
  margin-bottom: 1px !important;
}

.mxi-1px {
  margin-left: 1px !important;
  margin-right: 1px !important;
}

.p-1px {
  padding: 1px;
}

.pt-1px {
  padding-top: 1px;
}

.pb-1px {
  padding-bottom: 1px;
}

.pl-1px {
  padding-left: 1px;
}

.pr-1px {
  padding-right: 1px;
}

.py-1px {
  padding-top: 1px;
  padding-bottom: 1px;
}

.px-1px {
  padding-left: 1px;
  padding-right: 1px;
}

.pi-1px {
  padding: 1px !important;
}

.pti-1px {
  padding-top: 1px !important;
}

.pbi-1px {
  padding-bottom: 1px !important;
}

.pli-1px {
  padding-left: 1px !important;
}

.pri-1px {
  padding-right: 1px !important;
}

.pyi-1px {
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}

.pxi-1px {
  padding-left: 1px !important;
  padding-right: 1px !important;
}

tr.p-1px > td {
  padding: 1px;
}

tr.pt-1px > td {
  padding-top: 1px;
}

tr.pb-1px > td {
  padding-bottom: 1px;
}

tr.pl-1px > td {
  padding-left: 1px;
}

tr.pr-1px > td {
  padding-right: 1px;
}

tr.py-1px > td {
  padding-top: 1px;
  padding-bottom: 1px;
}

tr.px-1px > td {
  padding-left: 1px;
  padding-right: 1px;
}

tr.pi-1px > td {
  padding: 1px !important;
}

tr.pti-1px > td {
  padding-top: 1px !important;
}

tr.pbi-1px > td {
  padding-bottom: 1px !important;
}

tr.pli-1px > td {
  padding-left: 1px !important;
}

tr.pri-1px > td {
  padding-right: 1px !important;
}

tr.pyi-1px > td {
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}

tr.pxi-1px > td {
  padding-left: 1px !important;
  padding-right: 1px !important;
}

tr.pxi-1px > td {
  padding-left: 1px !important;
  padding-right: 1px !important;
}

.m-2px {
  margin: 2px;
}

.mt-2px {
  margin-top: 2px;
}

.mb-2px {
  margin-bottom: 2px;
}

.ml-2px {
  margin-left: 2px;
}

.mr-2px {
  margin-right: 2px;
}

.mt--2px {
  margin-top: -2px;
}

.mb--2px {
  margin-bottom: -2px;
}

.ml--2px {
  margin-left: -2px;
}

.mr--2px {
  margin-right: -2px;
}

.my-2px {
  margin-top: 2px;
  margin-bottom: 2px;
}

.mx-2px {
  margin-left: 2px;
  margin-right: 2px;
}

.mi-2px {
  margin: 2px !important;
}

.mti-2px {
  margin-top: 2px !important;
}

.mbi-2px {
  margin-bottom: 2px !important;
}

.mli-2px {
  margin-left: 2px !important;
}

.mri-2px {
  margin-right: 2px !important;
}

.mti--2px {
  margin-top: -2px !important;
}

.mbi--2px {
  margin-bottom: -2px !important;
}

.mli--2px {
  margin-left: -2px !important;
}

.mri--2px {
  margin-right: -2px !important;
}

.myi-2px {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}

.mxi-2px {
  margin-left: 2px !important;
  margin-right: 2px !important;
}

.p-2px {
  padding: 2px;
}

.pt-2px {
  padding-top: 2px;
}

.pb-2px {
  padding-bottom: 2px;
}

.pl-2px {
  padding-left: 2px;
}

.pr-2px {
  padding-right: 2px;
}

.py-2px {
  padding-top: 2px;
  padding-bottom: 2px;
}

.px-2px {
  padding-left: 2px;
  padding-right: 2px;
}

.pi-2px {
  padding: 2px !important;
}

.pti-2px {
  padding-top: 2px !important;
}

.pbi-2px {
  padding-bottom: 2px !important;
}

.pli-2px {
  padding-left: 2px !important;
}

.pri-2px {
  padding-right: 2px !important;
}

.pyi-2px {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

.pxi-2px {
  padding-left: 2px !important;
  padding-right: 2px !important;
}

tr.p-2px > td {
  padding: 2px;
}

tr.pt-2px > td {
  padding-top: 2px;
}

tr.pb-2px > td {
  padding-bottom: 2px;
}

tr.pl-2px > td {
  padding-left: 2px;
}

tr.pr-2px > td {
  padding-right: 2px;
}

tr.py-2px > td {
  padding-top: 2px;
  padding-bottom: 2px;
}

tr.px-2px > td {
  padding-left: 2px;
  padding-right: 2px;
}

tr.pi-2px > td {
  padding: 2px !important;
}

tr.pti-2px > td {
  padding-top: 2px !important;
}

tr.pbi-2px > td {
  padding-bottom: 2px !important;
}

tr.pli-2px > td {
  padding-left: 2px !important;
}

tr.pri-2px > td {
  padding-right: 2px !important;
}

tr.pyi-2px > td {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

tr.pxi-2px > td {
  padding-left: 2px !important;
  padding-right: 2px !important;
}

tr.pxi-2px > td {
  padding-left: 2px !important;
  padding-right: 2px !important;
}

.m-3px {
  margin: 3px;
}

.mt-3px {
  margin-top: 3px;
}

.mb-3px {
  margin-bottom: 3px;
}

.ml-3px {
  margin-left: 3px;
}

.mr-3px {
  margin-right: 3px;
}

.mt--3px {
  margin-top: -3px;
}

.mb--3px {
  margin-bottom: -3px;
}

.ml--3px {
  margin-left: -3px;
}

.mr--3px {
  margin-right: -3px;
}

.my-3px {
  margin-top: 3px;
  margin-bottom: 3px;
}

.mx-3px {
  margin-left: 3px;
  margin-right: 3px;
}

.mi-3px {
  margin: 3px !important;
}

.mti-3px {
  margin-top: 3px !important;
}

.mbi-3px {
  margin-bottom: 3px !important;
}

.mli-3px {
  margin-left: 3px !important;
}

.mri-3px {
  margin-right: 3px !important;
}

.mti--3px {
  margin-top: -3px !important;
}

.mbi--3px {
  margin-bottom: -3px !important;
}

.mli--3px {
  margin-left: -3px !important;
}

.mri--3px {
  margin-right: -3px !important;
}

.myi-3px {
  margin-top: 3px !important;
  margin-bottom: 3px !important;
}

.mxi-3px {
  margin-left: 3px !important;
  margin-right: 3px !important;
}

.p-3px {
  padding: 3px;
}

.pt-3px {
  padding-top: 3px;
}

.pb-3px {
  padding-bottom: 3px;
}

.pl-3px {
  padding-left: 3px;
}

.pr-3px {
  padding-right: 3px;
}

.py-3px {
  padding-top: 3px;
  padding-bottom: 3px;
}

.px-3px {
  padding-left: 3px;
  padding-right: 3px;
}

.pi-3px {
  padding: 3px !important;
}

.pti-3px {
  padding-top: 3px !important;
}

.pbi-3px {
  padding-bottom: 3px !important;
}

.pli-3px {
  padding-left: 3px !important;
}

.pri-3px {
  padding-right: 3px !important;
}

.pyi-3px {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}

.pxi-3px {
  padding-left: 3px !important;
  padding-right: 3px !important;
}

tr.p-3px > td {
  padding: 3px;
}

tr.pt-3px > td {
  padding-top: 3px;
}

tr.pb-3px > td {
  padding-bottom: 3px;
}

tr.pl-3px > td {
  padding-left: 3px;
}

tr.pr-3px > td {
  padding-right: 3px;
}

tr.py-3px > td {
  padding-top: 3px;
  padding-bottom: 3px;
}

tr.px-3px > td {
  padding-left: 3px;
  padding-right: 3px;
}

tr.pi-3px > td {
  padding: 3px !important;
}

tr.pti-3px > td {
  padding-top: 3px !important;
}

tr.pbi-3px > td {
  padding-bottom: 3px !important;
}

tr.pli-3px > td {
  padding-left: 3px !important;
}

tr.pri-3px > td {
  padding-right: 3px !important;
}

tr.pyi-3px > td {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}

tr.pxi-3px > td {
  padding-left: 3px !important;
  padding-right: 3px !important;
}

tr.pxi-3px > td {
  padding-left: 3px !important;
  padding-right: 3px !important;
}

.m-4px {
  margin: 4px;
}

.mt-4px {
  margin-top: 4px;
}

.mb-4px {
  margin-bottom: 4px;
}

.ml-4px {
  margin-left: 4px;
}

.mr-4px {
  margin-right: 4px;
}

.mt--4px {
  margin-top: -4px;
}

.mb--4px {
  margin-bottom: -4px;
}

.ml--4px {
  margin-left: -4px;
}

.mr--4px {
  margin-right: -4px;
}

.my-4px {
  margin-top: 4px;
  margin-bottom: 4px;
}

.mx-4px {
  margin-left: 4px;
  margin-right: 4px;
}

.mi-4px {
  margin: 4px !important;
}

.mti-4px {
  margin-top: 4px !important;
}

.mbi-4px {
  margin-bottom: 4px !important;
}

.mli-4px {
  margin-left: 4px !important;
}

.mri-4px {
  margin-right: 4px !important;
}

.mti--4px {
  margin-top: -4px !important;
}

.mbi--4px {
  margin-bottom: -4px !important;
}

.mli--4px {
  margin-left: -4px !important;
}

.mri--4px {
  margin-right: -4px !important;
}

.myi-4px {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.mxi-4px {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.p-4px {
  padding: 4px;
}

.pt-4px {
  padding-top: 4px;
}

.pb-4px {
  padding-bottom: 4px;
}

.pl-4px {
  padding-left: 4px;
}

.pr-4px {
  padding-right: 4px;
}

.py-4px {
  padding-top: 4px;
  padding-bottom: 4px;
}

.px-4px {
  padding-left: 4px;
  padding-right: 4px;
}

.pi-4px {
  padding: 4px !important;
}

.pti-4px {
  padding-top: 4px !important;
}

.pbi-4px {
  padding-bottom: 4px !important;
}

.pli-4px {
  padding-left: 4px !important;
}

.pri-4px {
  padding-right: 4px !important;
}

.pyi-4px {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.pxi-4px {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

tr.p-4px > td {
  padding: 4px;
}

tr.pt-4px > td {
  padding-top: 4px;
}

tr.pb-4px > td {
  padding-bottom: 4px;
}

tr.pl-4px > td {
  padding-left: 4px;
}

tr.pr-4px > td {
  padding-right: 4px;
}

tr.py-4px > td {
  padding-top: 4px;
  padding-bottom: 4px;
}

tr.px-4px > td {
  padding-left: 4px;
  padding-right: 4px;
}

tr.pi-4px > td {
  padding: 4px !important;
}

tr.pti-4px > td {
  padding-top: 4px !important;
}

tr.pbi-4px > td {
  padding-bottom: 4px !important;
}

tr.pli-4px > td {
  padding-left: 4px !important;
}

tr.pri-4px > td {
  padding-right: 4px !important;
}

tr.pyi-4px > td {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

tr.pxi-4px > td {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

tr.pxi-4px > td {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.m-5px {
  margin: 5px;
}

.mt-5px {
  margin-top: 5px;
}

.mb-5px {
  margin-bottom: 5px;
}

.ml-5px {
  margin-left: 5px;
}

.mr-5px {
  margin-right: 5px;
}

.mt--5px {
  margin-top: -5px;
}

.mb--5px {
  margin-bottom: -5px;
}

.ml--5px {
  margin-left: -5px;
}

.mr--5px {
  margin-right: -5px;
}

.my-5px {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mx-5px {
  margin-left: 5px;
  margin-right: 5px;
}

.mi-5px {
  margin: 5px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-5px {
  padding: 5px;
}

.pt-5px {
  padding-top: 5px;
}

.pb-5px {
  padding-bottom: 5px;
}

.pl-5px {
  padding-left: 5px;
}

.pr-5px {
  padding-right: 5px;
}

.py-5px {
  padding-top: 5px;
  padding-bottom: 5px;
}

.px-5px {
  padding-left: 5px;
  padding-right: 5px;
}

.pi-5px {
  padding: 5px !important;
}

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

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

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

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

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

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

tr.p-5px > td {
  padding: 5px;
}

tr.pt-5px > td {
  padding-top: 5px;
}

tr.pb-5px > td {
  padding-bottom: 5px;
}

tr.pl-5px > td {
  padding-left: 5px;
}

tr.pr-5px > td {
  padding-right: 5px;
}

tr.py-5px > td {
  padding-top: 5px;
  padding-bottom: 5px;
}

tr.px-5px > td {
  padding-left: 5px;
  padding-right: 5px;
}

tr.pi-5px > td {
  padding: 5px !important;
}

tr.pti-5px > td {
  padding-top: 5px !important;
}

tr.pbi-5px > td {
  padding-bottom: 5px !important;
}

tr.pli-5px > td {
  padding-left: 5px !important;
}

tr.pri-5px > td {
  padding-right: 5px !important;
}

tr.pyi-5px > td {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

tr.pxi-5px > td {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

tr.pxi-5px > td {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.m-6px {
  margin: 6px;
}

.mt-6px {
  margin-top: 6px;
}

.mb-6px {
  margin-bottom: 6px;
}

.ml-6px {
  margin-left: 6px;
}

.mr-6px {
  margin-right: 6px;
}

.mt--6px {
  margin-top: -6px;
}

.mb--6px {
  margin-bottom: -6px;
}

.ml--6px {
  margin-left: -6px;
}

.mr--6px {
  margin-right: -6px;
}

.my-6px {
  margin-top: 6px;
  margin-bottom: 6px;
}

.mx-6px {
  margin-left: 6px;
  margin-right: 6px;
}

.mi-6px {
  margin: 6px !important;
}

.mti-6px {
  margin-top: 6px !important;
}

.mbi-6px {
  margin-bottom: 6px !important;
}

.mli-6px {
  margin-left: 6px !important;
}

.mri-6px {
  margin-right: 6px !important;
}

.mti--6px {
  margin-top: -6px !important;
}

.mbi--6px {
  margin-bottom: -6px !important;
}

.mli--6px {
  margin-left: -6px !important;
}

.mri--6px {
  margin-right: -6px !important;
}

.myi-6px {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

.mxi-6px {
  margin-left: 6px !important;
  margin-right: 6px !important;
}

.p-6px {
  padding: 6px;
}

.pt-6px {
  padding-top: 6px;
}

.pb-6px {
  padding-bottom: 6px;
}

.pl-6px {
  padding-left: 6px;
}

.pr-6px {
  padding-right: 6px;
}

.py-6px {
  padding-top: 6px;
  padding-bottom: 6px;
}

.px-6px {
  padding-left: 6px;
  padding-right: 6px;
}

.pi-6px {
  padding: 6px !important;
}

.pti-6px {
  padding-top: 6px !important;
}

.pbi-6px {
  padding-bottom: 6px !important;
}

.pli-6px {
  padding-left: 6px !important;
}

.pri-6px {
  padding-right: 6px !important;
}

.pyi-6px {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.pxi-6px {
  padding-left: 6px !important;
  padding-right: 6px !important;
}

tr.p-6px > td {
  padding: 6px;
}

tr.pt-6px > td {
  padding-top: 6px;
}

tr.pb-6px > td {
  padding-bottom: 6px;
}

tr.pl-6px > td {
  padding-left: 6px;
}

tr.pr-6px > td {
  padding-right: 6px;
}

tr.py-6px > td {
  padding-top: 6px;
  padding-bottom: 6px;
}

tr.px-6px > td {
  padding-left: 6px;
  padding-right: 6px;
}

tr.pi-6px > td {
  padding: 6px !important;
}

tr.pti-6px > td {
  padding-top: 6px !important;
}

tr.pbi-6px > td {
  padding-bottom: 6px !important;
}

tr.pli-6px > td {
  padding-left: 6px !important;
}

tr.pri-6px > td {
  padding-right: 6px !important;
}

tr.pyi-6px > td {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

tr.pxi-6px > td {
  padding-left: 6px !important;
  padding-right: 6px !important;
}

tr.pxi-6px > td {
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.m-7px {
  margin: 7px;
}

.mt-7px {
  margin-top: 7px;
}

.mb-7px {
  margin-bottom: 7px;
}

.ml-7px {
  margin-left: 7px;
}

.mr-7px {
  margin-right: 7px;
}

.mt--7px {
  margin-top: -7px;
}

.mb--7px {
  margin-bottom: -7px;
}

.ml--7px {
  margin-left: -7px;
}

.mr--7px {
  margin-right: -7px;
}

.my-7px {
  margin-top: 7px;
  margin-bottom: 7px;
}

.mx-7px {
  margin-left: 7px;
  margin-right: 7px;
}

.mi-7px {
  margin: 7px !important;
}

.mti-7px {
  margin-top: 7px !important;
}

.mbi-7px {
  margin-bottom: 7px !important;
}

.mli-7px {
  margin-left: 7px !important;
}

.mri-7px {
  margin-right: 7px !important;
}

.mti--7px {
  margin-top: -7px !important;
}

.mbi--7px {
  margin-bottom: -7px !important;
}

.mli--7px {
  margin-left: -7px !important;
}

.mri--7px {
  margin-right: -7px !important;
}

.myi-7px {
  margin-top: 7px !important;
  margin-bottom: 7px !important;
}

.mxi-7px {
  margin-left: 7px !important;
  margin-right: 7px !important;
}

.p-7px {
  padding: 7px;
}

.pt-7px {
  padding-top: 7px;
}

.pb-7px {
  padding-bottom: 7px;
}

.pl-7px {
  padding-left: 7px;
}

.pr-7px {
  padding-right: 7px;
}

.py-7px {
  padding-top: 7px;
  padding-bottom: 7px;
}

.px-7px {
  padding-left: 7px;
  padding-right: 7px;
}

.pi-7px {
  padding: 7px !important;
}

.pti-7px {
  padding-top: 7px !important;
}

.pbi-7px {
  padding-bottom: 7px !important;
}

.pli-7px {
  padding-left: 7px !important;
}

.pri-7px {
  padding-right: 7px !important;
}

.pyi-7px {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

.pxi-7px {
  padding-left: 7px !important;
  padding-right: 7px !important;
}

tr.p-7px > td {
  padding: 7px;
}

tr.pt-7px > td {
  padding-top: 7px;
}

tr.pb-7px > td {
  padding-bottom: 7px;
}

tr.pl-7px > td {
  padding-left: 7px;
}

tr.pr-7px > td {
  padding-right: 7px;
}

tr.py-7px > td {
  padding-top: 7px;
  padding-bottom: 7px;
}

tr.px-7px > td {
  padding-left: 7px;
  padding-right: 7px;
}

tr.pi-7px > td {
  padding: 7px !important;
}

tr.pti-7px > td {
  padding-top: 7px !important;
}

tr.pbi-7px > td {
  padding-bottom: 7px !important;
}

tr.pli-7px > td {
  padding-left: 7px !important;
}

tr.pri-7px > td {
  padding-right: 7px !important;
}

tr.pyi-7px > td {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

tr.pxi-7px > td {
  padding-left: 7px !important;
  padding-right: 7px !important;
}

tr.pxi-7px > td {
  padding-left: 7px !important;
  padding-right: 7px !important;
}

.m-8px {
  margin: 8px;
}

.mt-8px {
  margin-top: 8px;
}

.mb-8px {
  margin-bottom: 8px;
}

.ml-8px {
  margin-left: 8px;
}

.mr-8px {
  margin-right: 8px;
}

.mt--8px {
  margin-top: -8px;
}

.mb--8px {
  margin-bottom: -8px;
}

.ml--8px {
  margin-left: -8px;
}

.mr--8px {
  margin-right: -8px;
}

.my-8px {
  margin-top: 8px;
  margin-bottom: 8px;
}

.mx-8px {
  margin-left: 8px;
  margin-right: 8px;
}

.mi-8px {
  margin: 8px !important;
}

.mti-8px {
  margin-top: 8px !important;
}

.mbi-8px {
  margin-bottom: 8px !important;
}

.mli-8px {
  margin-left: 8px !important;
}

.mri-8px {
  margin-right: 8px !important;
}

.mti--8px {
  margin-top: -8px !important;
}

.mbi--8px {
  margin-bottom: -8px !important;
}

.mli--8px {
  margin-left: -8px !important;
}

.mri--8px {
  margin-right: -8px !important;
}

.myi-8px {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.mxi-8px {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.p-8px {
  padding: 8px;
}

.pt-8px {
  padding-top: 8px;
}

.pb-8px {
  padding-bottom: 8px;
}

.pl-8px {
  padding-left: 8px;
}

.pr-8px {
  padding-right: 8px;
}

.py-8px {
  padding-top: 8px;
  padding-bottom: 8px;
}

.px-8px {
  padding-left: 8px;
  padding-right: 8px;
}

.pi-8px {
  padding: 8px !important;
}

.pti-8px {
  padding-top: 8px !important;
}

.pbi-8px {
  padding-bottom: 8px !important;
}

.pli-8px {
  padding-left: 8px !important;
}

.pri-8px {
  padding-right: 8px !important;
}

.pyi-8px {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.pxi-8px {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

tr.p-8px > td {
  padding: 8px;
}

tr.pt-8px > td {
  padding-top: 8px;
}

tr.pb-8px > td {
  padding-bottom: 8px;
}

tr.pl-8px > td {
  padding-left: 8px;
}

tr.pr-8px > td {
  padding-right: 8px;
}

tr.py-8px > td {
  padding-top: 8px;
  padding-bottom: 8px;
}

tr.px-8px > td {
  padding-left: 8px;
  padding-right: 8px;
}

tr.pi-8px > td {
  padding: 8px !important;
}

tr.pti-8px > td {
  padding-top: 8px !important;
}

tr.pbi-8px > td {
  padding-bottom: 8px !important;
}

tr.pli-8px > td {
  padding-left: 8px !important;
}

tr.pri-8px > td {
  padding-right: 8px !important;
}

tr.pyi-8px > td {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

tr.pxi-8px > td {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

tr.pxi-8px > td {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.m-9px {
  margin: 9px;
}

.mt-9px {
  margin-top: 9px;
}

.mb-9px {
  margin-bottom: 9px;
}

.ml-9px {
  margin-left: 9px;
}

.mr-9px {
  margin-right: 9px;
}

.mt--9px {
  margin-top: -9px;
}

.mb--9px {
  margin-bottom: -9px;
}

.ml--9px {
  margin-left: -9px;
}

.mr--9px {
  margin-right: -9px;
}

.my-9px {
  margin-top: 9px;
  margin-bottom: 9px;
}

.mx-9px {
  margin-left: 9px;
  margin-right: 9px;
}

.mi-9px {
  margin: 9px !important;
}

.mti-9px {
  margin-top: 9px !important;
}

.mbi-9px {
  margin-bottom: 9px !important;
}

.mli-9px {
  margin-left: 9px !important;
}

.mri-9px {
  margin-right: 9px !important;
}

.mti--9px {
  margin-top: -9px !important;
}

.mbi--9px {
  margin-bottom: -9px !important;
}

.mli--9px {
  margin-left: -9px !important;
}

.mri--9px {
  margin-right: -9px !important;
}

.myi-9px {
  margin-top: 9px !important;
  margin-bottom: 9px !important;
}

.mxi-9px {
  margin-left: 9px !important;
  margin-right: 9px !important;
}

.p-9px {
  padding: 9px;
}

.pt-9px {
  padding-top: 9px;
}

.pb-9px {
  padding-bottom: 9px;
}

.pl-9px {
  padding-left: 9px;
}

.pr-9px {
  padding-right: 9px;
}

.py-9px {
  padding-top: 9px;
  padding-bottom: 9px;
}

.px-9px {
  padding-left: 9px;
  padding-right: 9px;
}

.pi-9px {
  padding: 9px !important;
}

.pti-9px {
  padding-top: 9px !important;
}

.pbi-9px {
  padding-bottom: 9px !important;
}

.pli-9px {
  padding-left: 9px !important;
}

.pri-9px {
  padding-right: 9px !important;
}

.pyi-9px {
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}

.pxi-9px {
  padding-left: 9px !important;
  padding-right: 9px !important;
}

tr.p-9px > td {
  padding: 9px;
}

tr.pt-9px > td {
  padding-top: 9px;
}

tr.pb-9px > td {
  padding-bottom: 9px;
}

tr.pl-9px > td {
  padding-left: 9px;
}

tr.pr-9px > td {
  padding-right: 9px;
}

tr.py-9px > td {
  padding-top: 9px;
  padding-bottom: 9px;
}

tr.px-9px > td {
  padding-left: 9px;
  padding-right: 9px;
}

tr.pi-9px > td {
  padding: 9px !important;
}

tr.pti-9px > td {
  padding-top: 9px !important;
}

tr.pbi-9px > td {
  padding-bottom: 9px !important;
}

tr.pli-9px > td {
  padding-left: 9px !important;
}

tr.pri-9px > td {
  padding-right: 9px !important;
}

tr.pyi-9px > td {
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}

tr.pxi-9px > td {
  padding-left: 9px !important;
  padding-right: 9px !important;
}

tr.pxi-9px > td {
  padding-left: 9px !important;
  padding-right: 9px !important;
}

.m-10px {
  margin: 10px;
}

.mt-10px {
  margin-top: 10px;
}

.mb-10px {
  margin-bottom: 10px;
}

.ml-10px {
  margin-left: 10px;
}

.mr-10px {
  margin-right: 10px;
}

.mt--10px {
  margin-top: -10px;
}

.mb--10px {
  margin-bottom: -10px;
}

.ml--10px {
  margin-left: -10px;
}

.mr--10px {
  margin-right: -10px;
}

.my-10px {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mx-10px {
  margin-left: 10px;
  margin-right: 10px;
}

.mi-10px {
  margin: 10px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-10px {
  padding: 10px;
}

.pt-10px {
  padding-top: 10px;
}

.pb-10px {
  padding-bottom: 10px;
}

.pl-10px {
  padding-left: 10px;
}

.pr-10px {
  padding-right: 10px;
}

.py-10px {
  padding-top: 10px;
  padding-bottom: 10px;
}

.px-10px {
  padding-left: 10px;
  padding-right: 10px;
}

.pi-10px {
  padding: 10px !important;
}

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

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

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

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

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

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

tr.p-10px > td {
  padding: 10px;
}

tr.pt-10px > td {
  padding-top: 10px;
}

tr.pb-10px > td {
  padding-bottom: 10px;
}

tr.pl-10px > td {
  padding-left: 10px;
}

tr.pr-10px > td {
  padding-right: 10px;
}

tr.py-10px > td {
  padding-top: 10px;
  padding-bottom: 10px;
}

tr.px-10px > td {
  padding-left: 10px;
  padding-right: 10px;
}

tr.pi-10px > td {
  padding: 10px !important;
}

tr.pti-10px > td {
  padding-top: 10px !important;
}

tr.pbi-10px > td {
  padding-bottom: 10px !important;
}

tr.pli-10px > td {
  padding-left: 10px !important;
}

tr.pri-10px > td {
  padding-right: 10px !important;
}

tr.pyi-10px > td {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

tr.pxi-10px > td {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

tr.pxi-10px > td {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.m-11px {
  margin: 11px;
}

.mt-11px {
  margin-top: 11px;
}

.mb-11px {
  margin-bottom: 11px;
}

.ml-11px {
  margin-left: 11px;
}

.mr-11px {
  margin-right: 11px;
}

.mt--11px {
  margin-top: -11px;
}

.mb--11px {
  margin-bottom: -11px;
}

.ml--11px {
  margin-left: -11px;
}

.mr--11px {
  margin-right: -11px;
}

.my-11px {
  margin-top: 11px;
  margin-bottom: 11px;
}

.mx-11px {
  margin-left: 11px;
  margin-right: 11px;
}

.mi-11px {
  margin: 11px !important;
}

.mti-11px {
  margin-top: 11px !important;
}

.mbi-11px {
  margin-bottom: 11px !important;
}

.mli-11px {
  margin-left: 11px !important;
}

.mri-11px {
  margin-right: 11px !important;
}

.mti--11px {
  margin-top: -11px !important;
}

.mbi--11px {
  margin-bottom: -11px !important;
}

.mli--11px {
  margin-left: -11px !important;
}

.mri--11px {
  margin-right: -11px !important;
}

.myi-11px {
  margin-top: 11px !important;
  margin-bottom: 11px !important;
}

.mxi-11px {
  margin-left: 11px !important;
  margin-right: 11px !important;
}

.p-11px {
  padding: 11px;
}

.pt-11px {
  padding-top: 11px;
}

.pb-11px {
  padding-bottom: 11px;
}

.pl-11px {
  padding-left: 11px;
}

.pr-11px {
  padding-right: 11px;
}

.py-11px {
  padding-top: 11px;
  padding-bottom: 11px;
}

.px-11px {
  padding-left: 11px;
  padding-right: 11px;
}

.pi-11px {
  padding: 11px !important;
}

.pti-11px {
  padding-top: 11px !important;
}

.pbi-11px {
  padding-bottom: 11px !important;
}

.pli-11px {
  padding-left: 11px !important;
}

.pri-11px {
  padding-right: 11px !important;
}

.pyi-11px {
  padding-top: 11px !important;
  padding-bottom: 11px !important;
}

.pxi-11px {
  padding-left: 11px !important;
  padding-right: 11px !important;
}

tr.p-11px > td {
  padding: 11px;
}

tr.pt-11px > td {
  padding-top: 11px;
}

tr.pb-11px > td {
  padding-bottom: 11px;
}

tr.pl-11px > td {
  padding-left: 11px;
}

tr.pr-11px > td {
  padding-right: 11px;
}

tr.py-11px > td {
  padding-top: 11px;
  padding-bottom: 11px;
}

tr.px-11px > td {
  padding-left: 11px;
  padding-right: 11px;
}

tr.pi-11px > td {
  padding: 11px !important;
}

tr.pti-11px > td {
  padding-top: 11px !important;
}

tr.pbi-11px > td {
  padding-bottom: 11px !important;
}

tr.pli-11px > td {
  padding-left: 11px !important;
}

tr.pri-11px > td {
  padding-right: 11px !important;
}

tr.pyi-11px > td {
  padding-top: 11px !important;
  padding-bottom: 11px !important;
}

tr.pxi-11px > td {
  padding-left: 11px !important;
  padding-right: 11px !important;
}

tr.pxi-11px > td {
  padding-left: 11px !important;
  padding-right: 11px !important;
}

.m-12px {
  margin: 12px;
}

.mt-12px {
  margin-top: 12px;
}

.mb-12px {
  margin-bottom: 12px;
}

.ml-12px {
  margin-left: 12px;
}

.mr-12px {
  margin-right: 12px;
}

.mt--12px {
  margin-top: -12px;
}

.mb--12px {
  margin-bottom: -12px;
}

.ml--12px {
  margin-left: -12px;
}

.mr--12px {
  margin-right: -12px;
}

.my-12px {
  margin-top: 12px;
  margin-bottom: 12px;
}

.mx-12px {
  margin-left: 12px;
  margin-right: 12px;
}

.mi-12px {
  margin: 12px !important;
}

.mti-12px {
  margin-top: 12px !important;
}

.mbi-12px {
  margin-bottom: 12px !important;
}

.mli-12px {
  margin-left: 12px !important;
}

.mri-12px {
  margin-right: 12px !important;
}

.mti--12px {
  margin-top: -12px !important;
}

.mbi--12px {
  margin-bottom: -12px !important;
}

.mli--12px {
  margin-left: -12px !important;
}

.mri--12px {
  margin-right: -12px !important;
}

.myi-12px {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.mxi-12px {
  margin-left: 12px !important;
  margin-right: 12px !important;
}

.p-12px {
  padding: 12px;
}

.pt-12px {
  padding-top: 12px;
}

.pb-12px {
  padding-bottom: 12px;
}

.pl-12px {
  padding-left: 12px;
}

.pr-12px {
  padding-right: 12px;
}

.py-12px {
  padding-top: 12px;
  padding-bottom: 12px;
}

.px-12px {
  padding-left: 12px;
  padding-right: 12px;
}

.pi-12px {
  padding: 12px !important;
}

.pti-12px {
  padding-top: 12px !important;
}

.pbi-12px {
  padding-bottom: 12px !important;
}

.pli-12px {
  padding-left: 12px !important;
}

.pri-12px {
  padding-right: 12px !important;
}

.pyi-12px {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.pxi-12px {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

tr.p-12px > td {
  padding: 12px;
}

tr.pt-12px > td {
  padding-top: 12px;
}

tr.pb-12px > td {
  padding-bottom: 12px;
}

tr.pl-12px > td {
  padding-left: 12px;
}

tr.pr-12px > td {
  padding-right: 12px;
}

tr.py-12px > td {
  padding-top: 12px;
  padding-bottom: 12px;
}

tr.px-12px > td {
  padding-left: 12px;
  padding-right: 12px;
}

tr.pi-12px > td {
  padding: 12px !important;
}

tr.pti-12px > td {
  padding-top: 12px !important;
}

tr.pbi-12px > td {
  padding-bottom: 12px !important;
}

tr.pli-12px > td {
  padding-left: 12px !important;
}

tr.pri-12px > td {
  padding-right: 12px !important;
}

tr.pyi-12px > td {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

tr.pxi-12px > td {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

tr.pxi-12px > td {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.m-13px {
  margin: 13px;
}

.mt-13px {
  margin-top: 13px;
}

.mb-13px {
  margin-bottom: 13px;
}

.ml-13px {
  margin-left: 13px;
}

.mr-13px {
  margin-right: 13px;
}

.mt--13px {
  margin-top: -13px;
}

.mb--13px {
  margin-bottom: -13px;
}

.ml--13px {
  margin-left: -13px;
}

.mr--13px {
  margin-right: -13px;
}

.my-13px {
  margin-top: 13px;
  margin-bottom: 13px;
}

.mx-13px {
  margin-left: 13px;
  margin-right: 13px;
}

.mi-13px {
  margin: 13px !important;
}

.mti-13px {
  margin-top: 13px !important;
}

.mbi-13px {
  margin-bottom: 13px !important;
}

.mli-13px {
  margin-left: 13px !important;
}

.mri-13px {
  margin-right: 13px !important;
}

.mti--13px {
  margin-top: -13px !important;
}

.mbi--13px {
  margin-bottom: -13px !important;
}

.mli--13px {
  margin-left: -13px !important;
}

.mri--13px {
  margin-right: -13px !important;
}

.myi-13px {
  margin-top: 13px !important;
  margin-bottom: 13px !important;
}

.mxi-13px {
  margin-left: 13px !important;
  margin-right: 13px !important;
}

.p-13px {
  padding: 13px;
}

.pt-13px {
  padding-top: 13px;
}

.pb-13px {
  padding-bottom: 13px;
}

.pl-13px {
  padding-left: 13px;
}

.pr-13px {
  padding-right: 13px;
}

.py-13px {
  padding-top: 13px;
  padding-bottom: 13px;
}

.px-13px {
  padding-left: 13px;
  padding-right: 13px;
}

.pi-13px {
  padding: 13px !important;
}

.pti-13px {
  padding-top: 13px !important;
}

.pbi-13px {
  padding-bottom: 13px !important;
}

.pli-13px {
  padding-left: 13px !important;
}

.pri-13px {
  padding-right: 13px !important;
}

.pyi-13px {
  padding-top: 13px !important;
  padding-bottom: 13px !important;
}

.pxi-13px {
  padding-left: 13px !important;
  padding-right: 13px !important;
}

tr.p-13px > td {
  padding: 13px;
}

tr.pt-13px > td {
  padding-top: 13px;
}

tr.pb-13px > td {
  padding-bottom: 13px;
}

tr.pl-13px > td {
  padding-left: 13px;
}

tr.pr-13px > td {
  padding-right: 13px;
}

tr.py-13px > td {
  padding-top: 13px;
  padding-bottom: 13px;
}

tr.px-13px > td {
  padding-left: 13px;
  padding-right: 13px;
}

tr.pi-13px > td {
  padding: 13px !important;
}

tr.pti-13px > td {
  padding-top: 13px !important;
}

tr.pbi-13px > td {
  padding-bottom: 13px !important;
}

tr.pli-13px > td {
  padding-left: 13px !important;
}

tr.pri-13px > td {
  padding-right: 13px !important;
}

tr.pyi-13px > td {
  padding-top: 13px !important;
  padding-bottom: 13px !important;
}

tr.pxi-13px > td {
  padding-left: 13px !important;
  padding-right: 13px !important;
}

tr.pxi-13px > td {
  padding-left: 13px !important;
  padding-right: 13px !important;
}

.m-14px {
  margin: 14px;
}

.mt-14px {
  margin-top: 14px;
}

.mb-14px {
  margin-bottom: 14px;
}

.ml-14px {
  margin-left: 14px;
}

.mr-14px {
  margin-right: 14px;
}

.mt--14px {
  margin-top: -14px;
}

.mb--14px {
  margin-bottom: -14px;
}

.ml--14px {
  margin-left: -14px;
}

.mr--14px {
  margin-right: -14px;
}

.my-14px {
  margin-top: 14px;
  margin-bottom: 14px;
}

.mx-14px {
  margin-left: 14px;
  margin-right: 14px;
}

.mi-14px {
  margin: 14px !important;
}

.mti-14px {
  margin-top: 14px !important;
}

.mbi-14px {
  margin-bottom: 14px !important;
}

.mli-14px {
  margin-left: 14px !important;
}

.mri-14px {
  margin-right: 14px !important;
}

.mti--14px {
  margin-top: -14px !important;
}

.mbi--14px {
  margin-bottom: -14px !important;
}

.mli--14px {
  margin-left: -14px !important;
}

.mri--14px {
  margin-right: -14px !important;
}

.myi-14px {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
}

.mxi-14px {
  margin-left: 14px !important;
  margin-right: 14px !important;
}

.p-14px {
  padding: 14px;
}

.pt-14px {
  padding-top: 14px;
}

.pb-14px {
  padding-bottom: 14px;
}

.pl-14px {
  padding-left: 14px;
}

.pr-14px {
  padding-right: 14px;
}

.py-14px {
  padding-top: 14px;
  padding-bottom: 14px;
}

.px-14px {
  padding-left: 14px;
  padding-right: 14px;
}

.pi-14px {
  padding: 14px !important;
}

.pti-14px {
  padding-top: 14px !important;
}

.pbi-14px {
  padding-bottom: 14px !important;
}

.pli-14px {
  padding-left: 14px !important;
}

.pri-14px {
  padding-right: 14px !important;
}

.pyi-14px {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

.pxi-14px {
  padding-left: 14px !important;
  padding-right: 14px !important;
}

tr.p-14px > td {
  padding: 14px;
}

tr.pt-14px > td {
  padding-top: 14px;
}

tr.pb-14px > td {
  padding-bottom: 14px;
}

tr.pl-14px > td {
  padding-left: 14px;
}

tr.pr-14px > td {
  padding-right: 14px;
}

tr.py-14px > td {
  padding-top: 14px;
  padding-bottom: 14px;
}

tr.px-14px > td {
  padding-left: 14px;
  padding-right: 14px;
}

tr.pi-14px > td {
  padding: 14px !important;
}

tr.pti-14px > td {
  padding-top: 14px !important;
}

tr.pbi-14px > td {
  padding-bottom: 14px !important;
}

tr.pli-14px > td {
  padding-left: 14px !important;
}

tr.pri-14px > td {
  padding-right: 14px !important;
}

tr.pyi-14px > td {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

tr.pxi-14px > td {
  padding-left: 14px !important;
  padding-right: 14px !important;
}

tr.pxi-14px > td {
  padding-left: 14px !important;
  padding-right: 14px !important;
}

.m-15px {
  margin: 15px;
}

.mt-15px {
  margin-top: 15px;
}

.mb-15px {
  margin-bottom: 15px;
}

.ml-15px {
  margin-left: 15px;
}

.mr-15px {
  margin-right: 15px;
}

.mt--15px {
  margin-top: -15px;
}

.mb--15px {
  margin-bottom: -15px;
}

.ml--15px {
  margin-left: -15px;
}

.mr--15px {
  margin-right: -15px;
}

.my-15px {
  margin-top: 15px;
  margin-bottom: 15px;
}

.mx-15px {
  margin-left: 15px;
  margin-right: 15px;
}

.mi-15px {
  margin: 15px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-15px {
  padding: 15px;
}

.pt-15px {
  padding-top: 15px;
}

.pb-15px {
  padding-bottom: 15px;
}

.pl-15px {
  padding-left: 15px;
}

.pr-15px {
  padding-right: 15px;
}

.py-15px {
  padding-top: 15px;
  padding-bottom: 15px;
}

.px-15px {
  padding-left: 15px;
  padding-right: 15px;
}

.pi-15px {
  padding: 15px !important;
}

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

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

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

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

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

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

tr.p-15px > td {
  padding: 15px;
}

tr.pt-15px > td {
  padding-top: 15px;
}

tr.pb-15px > td {
  padding-bottom: 15px;
}

tr.pl-15px > td {
  padding-left: 15px;
}

tr.pr-15px > td {
  padding-right: 15px;
}

tr.py-15px > td {
  padding-top: 15px;
  padding-bottom: 15px;
}

tr.px-15px > td {
  padding-left: 15px;
  padding-right: 15px;
}

tr.pi-15px > td {
  padding: 15px !important;
}

tr.pti-15px > td {
  padding-top: 15px !important;
}

tr.pbi-15px > td {
  padding-bottom: 15px !important;
}

tr.pli-15px > td {
  padding-left: 15px !important;
}

tr.pri-15px > td {
  padding-right: 15px !important;
}

tr.pyi-15px > td {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

tr.pxi-15px > td {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

tr.pxi-15px > td {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.m-16px {
  margin: 16px;
}

.mt-16px {
  margin-top: 16px;
}

.mb-16px {
  margin-bottom: 16px;
}

.ml-16px {
  margin-left: 16px;
}

.mr-16px {
  margin-right: 16px;
}

.mt--16px {
  margin-top: -16px;
}

.mb--16px {
  margin-bottom: -16px;
}

.ml--16px {
  margin-left: -16px;
}

.mr--16px {
  margin-right: -16px;
}

.my-16px {
  margin-top: 16px;
  margin-bottom: 16px;
}

.mx-16px {
  margin-left: 16px;
  margin-right: 16px;
}

.mi-16px {
  margin: 16px !important;
}

.mti-16px {
  margin-top: 16px !important;
}

.mbi-16px {
  margin-bottom: 16px !important;
}

.mli-16px {
  margin-left: 16px !important;
}

.mri-16px {
  margin-right: 16px !important;
}

.mti--16px {
  margin-top: -16px !important;
}

.mbi--16px {
  margin-bottom: -16px !important;
}

.mli--16px {
  margin-left: -16px !important;
}

.mri--16px {
  margin-right: -16px !important;
}

.myi-16px {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.mxi-16px {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.p-16px {
  padding: 16px;
}

.pt-16px {
  padding-top: 16px;
}

.pb-16px {
  padding-bottom: 16px;
}

.pl-16px {
  padding-left: 16px;
}

.pr-16px {
  padding-right: 16px;
}

.py-16px {
  padding-top: 16px;
  padding-bottom: 16px;
}

.px-16px {
  padding-left: 16px;
  padding-right: 16px;
}

.pi-16px {
  padding: 16px !important;
}

.pti-16px {
  padding-top: 16px !important;
}

.pbi-16px {
  padding-bottom: 16px !important;
}

.pli-16px {
  padding-left: 16px !important;
}

.pri-16px {
  padding-right: 16px !important;
}

.pyi-16px {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.pxi-16px {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

tr.p-16px > td {
  padding: 16px;
}

tr.pt-16px > td {
  padding-top: 16px;
}

tr.pb-16px > td {
  padding-bottom: 16px;
}

tr.pl-16px > td {
  padding-left: 16px;
}

tr.pr-16px > td {
  padding-right: 16px;
}

tr.py-16px > td {
  padding-top: 16px;
  padding-bottom: 16px;
}

tr.px-16px > td {
  padding-left: 16px;
  padding-right: 16px;
}

tr.pi-16px > td {
  padding: 16px !important;
}

tr.pti-16px > td {
  padding-top: 16px !important;
}

tr.pbi-16px > td {
  padding-bottom: 16px !important;
}

tr.pli-16px > td {
  padding-left: 16px !important;
}

tr.pri-16px > td {
  padding-right: 16px !important;
}

tr.pyi-16px > td {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

tr.pxi-16px > td {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

tr.pxi-16px > td {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.m-17px {
  margin: 17px;
}

.mt-17px {
  margin-top: 17px;
}

.mb-17px {
  margin-bottom: 17px;
}

.ml-17px {
  margin-left: 17px;
}

.mr-17px {
  margin-right: 17px;
}

.mt--17px {
  margin-top: -17px;
}

.mb--17px {
  margin-bottom: -17px;
}

.ml--17px {
  margin-left: -17px;
}

.mr--17px {
  margin-right: -17px;
}

.my-17px {
  margin-top: 17px;
  margin-bottom: 17px;
}

.mx-17px {
  margin-left: 17px;
  margin-right: 17px;
}

.mi-17px {
  margin: 17px !important;
}

.mti-17px {
  margin-top: 17px !important;
}

.mbi-17px {
  margin-bottom: 17px !important;
}

.mli-17px {
  margin-left: 17px !important;
}

.mri-17px {
  margin-right: 17px !important;
}

.mti--17px {
  margin-top: -17px !important;
}

.mbi--17px {
  margin-bottom: -17px !important;
}

.mli--17px {
  margin-left: -17px !important;
}

.mri--17px {
  margin-right: -17px !important;
}

.myi-17px {
  margin-top: 17px !important;
  margin-bottom: 17px !important;
}

.mxi-17px {
  margin-left: 17px !important;
  margin-right: 17px !important;
}

.p-17px {
  padding: 17px;
}

.pt-17px {
  padding-top: 17px;
}

.pb-17px {
  padding-bottom: 17px;
}

.pl-17px {
  padding-left: 17px;
}

.pr-17px {
  padding-right: 17px;
}

.py-17px {
  padding-top: 17px;
  padding-bottom: 17px;
}

.px-17px {
  padding-left: 17px;
  padding-right: 17px;
}

.pi-17px {
  padding: 17px !important;
}

.pti-17px {
  padding-top: 17px !important;
}

.pbi-17px {
  padding-bottom: 17px !important;
}

.pli-17px {
  padding-left: 17px !important;
}

.pri-17px {
  padding-right: 17px !important;
}

.pyi-17px {
  padding-top: 17px !important;
  padding-bottom: 17px !important;
}

.pxi-17px {
  padding-left: 17px !important;
  padding-right: 17px !important;
}

tr.p-17px > td {
  padding: 17px;
}

tr.pt-17px > td {
  padding-top: 17px;
}

tr.pb-17px > td {
  padding-bottom: 17px;
}

tr.pl-17px > td {
  padding-left: 17px;
}

tr.pr-17px > td {
  padding-right: 17px;
}

tr.py-17px > td {
  padding-top: 17px;
  padding-bottom: 17px;
}

tr.px-17px > td {
  padding-left: 17px;
  padding-right: 17px;
}

tr.pi-17px > td {
  padding: 17px !important;
}

tr.pti-17px > td {
  padding-top: 17px !important;
}

tr.pbi-17px > td {
  padding-bottom: 17px !important;
}

tr.pli-17px > td {
  padding-left: 17px !important;
}

tr.pri-17px > td {
  padding-right: 17px !important;
}

tr.pyi-17px > td {
  padding-top: 17px !important;
  padding-bottom: 17px !important;
}

tr.pxi-17px > td {
  padding-left: 17px !important;
  padding-right: 17px !important;
}

tr.pxi-17px > td {
  padding-left: 17px !important;
  padding-right: 17px !important;
}

.m-18px {
  margin: 18px;
}

.mt-18px {
  margin-top: 18px;
}

.mb-18px {
  margin-bottom: 18px;
}

.ml-18px {
  margin-left: 18px;
}

.mr-18px {
  margin-right: 18px;
}

.mt--18px {
  margin-top: -18px;
}

.mb--18px {
  margin-bottom: -18px;
}

.ml--18px {
  margin-left: -18px;
}

.mr--18px {
  margin-right: -18px;
}

.my-18px {
  margin-top: 18px;
  margin-bottom: 18px;
}

.mx-18px {
  margin-left: 18px;
  margin-right: 18px;
}

.mi-18px {
  margin: 18px !important;
}

.mti-18px {
  margin-top: 18px !important;
}

.mbi-18px {
  margin-bottom: 18px !important;
}

.mli-18px {
  margin-left: 18px !important;
}

.mri-18px {
  margin-right: 18px !important;
}

.mti--18px {
  margin-top: -18px !important;
}

.mbi--18px {
  margin-bottom: -18px !important;
}

.mli--18px {
  margin-left: -18px !important;
}

.mri--18px {
  margin-right: -18px !important;
}

.myi-18px {
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}

.mxi-18px {
  margin-left: 18px !important;
  margin-right: 18px !important;
}

.p-18px {
  padding: 18px;
}

.pt-18px {
  padding-top: 18px;
}

.pb-18px {
  padding-bottom: 18px;
}

.pl-18px {
  padding-left: 18px;
}

.pr-18px {
  padding-right: 18px;
}

.py-18px {
  padding-top: 18px;
  padding-bottom: 18px;
}

.px-18px {
  padding-left: 18px;
  padding-right: 18px;
}

.pi-18px {
  padding: 18px !important;
}

.pti-18px {
  padding-top: 18px !important;
}

.pbi-18px {
  padding-bottom: 18px !important;
}

.pli-18px {
  padding-left: 18px !important;
}

.pri-18px {
  padding-right: 18px !important;
}

.pyi-18px {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.pxi-18px {
  padding-left: 18px !important;
  padding-right: 18px !important;
}

tr.p-18px > td {
  padding: 18px;
}

tr.pt-18px > td {
  padding-top: 18px;
}

tr.pb-18px > td {
  padding-bottom: 18px;
}

tr.pl-18px > td {
  padding-left: 18px;
}

tr.pr-18px > td {
  padding-right: 18px;
}

tr.py-18px > td {
  padding-top: 18px;
  padding-bottom: 18px;
}

tr.px-18px > td {
  padding-left: 18px;
  padding-right: 18px;
}

tr.pi-18px > td {
  padding: 18px !important;
}

tr.pti-18px > td {
  padding-top: 18px !important;
}

tr.pbi-18px > td {
  padding-bottom: 18px !important;
}

tr.pli-18px > td {
  padding-left: 18px !important;
}

tr.pri-18px > td {
  padding-right: 18px !important;
}

tr.pyi-18px > td {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

tr.pxi-18px > td {
  padding-left: 18px !important;
  padding-right: 18px !important;
}

tr.pxi-18px > td {
  padding-left: 18px !important;
  padding-right: 18px !important;
}

.m-19px {
  margin: 19px;
}

.mt-19px {
  margin-top: 19px;
}

.mb-19px {
  margin-bottom: 19px;
}

.ml-19px {
  margin-left: 19px;
}

.mr-19px {
  margin-right: 19px;
}

.mt--19px {
  margin-top: -19px;
}

.mb--19px {
  margin-bottom: -19px;
}

.ml--19px {
  margin-left: -19px;
}

.mr--19px {
  margin-right: -19px;
}

.my-19px {
  margin-top: 19px;
  margin-bottom: 19px;
}

.mx-19px {
  margin-left: 19px;
  margin-right: 19px;
}

.mi-19px {
  margin: 19px !important;
}

.mti-19px {
  margin-top: 19px !important;
}

.mbi-19px {
  margin-bottom: 19px !important;
}

.mli-19px {
  margin-left: 19px !important;
}

.mri-19px {
  margin-right: 19px !important;
}

.mti--19px {
  margin-top: -19px !important;
}

.mbi--19px {
  margin-bottom: -19px !important;
}

.mli--19px {
  margin-left: -19px !important;
}

.mri--19px {
  margin-right: -19px !important;
}

.myi-19px {
  margin-top: 19px !important;
  margin-bottom: 19px !important;
}

.mxi-19px {
  margin-left: 19px !important;
  margin-right: 19px !important;
}

.p-19px {
  padding: 19px;
}

.pt-19px {
  padding-top: 19px;
}

.pb-19px {
  padding-bottom: 19px;
}

.pl-19px {
  padding-left: 19px;
}

.pr-19px {
  padding-right: 19px;
}

.py-19px {
  padding-top: 19px;
  padding-bottom: 19px;
}

.px-19px {
  padding-left: 19px;
  padding-right: 19px;
}

.pi-19px {
  padding: 19px !important;
}

.pti-19px {
  padding-top: 19px !important;
}

.pbi-19px {
  padding-bottom: 19px !important;
}

.pli-19px {
  padding-left: 19px !important;
}

.pri-19px {
  padding-right: 19px !important;
}

.pyi-19px {
  padding-top: 19px !important;
  padding-bottom: 19px !important;
}

.pxi-19px {
  padding-left: 19px !important;
  padding-right: 19px !important;
}

tr.p-19px > td {
  padding: 19px;
}

tr.pt-19px > td {
  padding-top: 19px;
}

tr.pb-19px > td {
  padding-bottom: 19px;
}

tr.pl-19px > td {
  padding-left: 19px;
}

tr.pr-19px > td {
  padding-right: 19px;
}

tr.py-19px > td {
  padding-top: 19px;
  padding-bottom: 19px;
}

tr.px-19px > td {
  padding-left: 19px;
  padding-right: 19px;
}

tr.pi-19px > td {
  padding: 19px !important;
}

tr.pti-19px > td {
  padding-top: 19px !important;
}

tr.pbi-19px > td {
  padding-bottom: 19px !important;
}

tr.pli-19px > td {
  padding-left: 19px !important;
}

tr.pri-19px > td {
  padding-right: 19px !important;
}

tr.pyi-19px > td {
  padding-top: 19px !important;
  padding-bottom: 19px !important;
}

tr.pxi-19px > td {
  padding-left: 19px !important;
  padding-right: 19px !important;
}

tr.pxi-19px > td {
  padding-left: 19px !important;
  padding-right: 19px !important;
}

.m-20px {
  margin: 20px;
}

.mt-20px {
  margin-top: 20px;
}

.mb-20px {
  margin-bottom: 20px;
}

.ml-20px {
  margin-left: 20px;
}

.mr-20px {
  margin-right: 20px;
}

.mt--20px {
  margin-top: -20px;
}

.mb--20px {
  margin-bottom: -20px;
}

.ml--20px {
  margin-left: -20px;
}

.mr--20px {
  margin-right: -20px;
}

.my-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mx-20px {
  margin-left: 20px;
  margin-right: 20px;
}

.mi-20px {
  margin: 20px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-20px {
  padding: 20px;
}

.pt-20px {
  padding-top: 20px;
}

.pb-20px {
  padding-bottom: 20px;
}

.pl-20px {
  padding-left: 20px;
}

.pr-20px {
  padding-right: 20px;
}

.py-20px {
  padding-top: 20px;
  padding-bottom: 20px;
}

.px-20px {
  padding-left: 20px;
  padding-right: 20px;
}

.pi-20px {
  padding: 20px !important;
}

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

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

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

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

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

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

tr.p-20px > td {
  padding: 20px;
}

tr.pt-20px > td {
  padding-top: 20px;
}

tr.pb-20px > td {
  padding-bottom: 20px;
}

tr.pl-20px > td {
  padding-left: 20px;
}

tr.pr-20px > td {
  padding-right: 20px;
}

tr.py-20px > td {
  padding-top: 20px;
  padding-bottom: 20px;
}

tr.px-20px > td {
  padding-left: 20px;
  padding-right: 20px;
}

tr.pi-20px > td {
  padding: 20px !important;
}

tr.pti-20px > td {
  padding-top: 20px !important;
}

tr.pbi-20px > td {
  padding-bottom: 20px !important;
}

tr.pli-20px > td {
  padding-left: 20px !important;
}

tr.pri-20px > td {
  padding-right: 20px !important;
}

tr.pyi-20px > td {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

tr.pxi-20px > td {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

tr.pxi-20px > td {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.m-21px {
  margin: 21px;
}

.mt-21px {
  margin-top: 21px;
}

.mb-21px {
  margin-bottom: 21px;
}

.ml-21px {
  margin-left: 21px;
}

.mr-21px {
  margin-right: 21px;
}

.mt--21px {
  margin-top: -21px;
}

.mb--21px {
  margin-bottom: -21px;
}

.ml--21px {
  margin-left: -21px;
}

.mr--21px {
  margin-right: -21px;
}

.my-21px {
  margin-top: 21px;
  margin-bottom: 21px;
}

.mx-21px {
  margin-left: 21px;
  margin-right: 21px;
}

.mi-21px {
  margin: 21px !important;
}

.mti-21px {
  margin-top: 21px !important;
}

.mbi-21px {
  margin-bottom: 21px !important;
}

.mli-21px {
  margin-left: 21px !important;
}

.mri-21px {
  margin-right: 21px !important;
}

.mti--21px {
  margin-top: -21px !important;
}

.mbi--21px {
  margin-bottom: -21px !important;
}

.mli--21px {
  margin-left: -21px !important;
}

.mri--21px {
  margin-right: -21px !important;
}

.myi-21px {
  margin-top: 21px !important;
  margin-bottom: 21px !important;
}

.mxi-21px {
  margin-left: 21px !important;
  margin-right: 21px !important;
}

.p-21px {
  padding: 21px;
}

.pt-21px {
  padding-top: 21px;
}

.pb-21px {
  padding-bottom: 21px;
}

.pl-21px {
  padding-left: 21px;
}

.pr-21px {
  padding-right: 21px;
}

.py-21px {
  padding-top: 21px;
  padding-bottom: 21px;
}

.px-21px {
  padding-left: 21px;
  padding-right: 21px;
}

.pi-21px {
  padding: 21px !important;
}

.pti-21px {
  padding-top: 21px !important;
}

.pbi-21px {
  padding-bottom: 21px !important;
}

.pli-21px {
  padding-left: 21px !important;
}

.pri-21px {
  padding-right: 21px !important;
}

.pyi-21px {
  padding-top: 21px !important;
  padding-bottom: 21px !important;
}

.pxi-21px {
  padding-left: 21px !important;
  padding-right: 21px !important;
}

tr.p-21px > td {
  padding: 21px;
}

tr.pt-21px > td {
  padding-top: 21px;
}

tr.pb-21px > td {
  padding-bottom: 21px;
}

tr.pl-21px > td {
  padding-left: 21px;
}

tr.pr-21px > td {
  padding-right: 21px;
}

tr.py-21px > td {
  padding-top: 21px;
  padding-bottom: 21px;
}

tr.px-21px > td {
  padding-left: 21px;
  padding-right: 21px;
}

tr.pi-21px > td {
  padding: 21px !important;
}

tr.pti-21px > td {
  padding-top: 21px !important;
}

tr.pbi-21px > td {
  padding-bottom: 21px !important;
}

tr.pli-21px > td {
  padding-left: 21px !important;
}

tr.pri-21px > td {
  padding-right: 21px !important;
}

tr.pyi-21px > td {
  padding-top: 21px !important;
  padding-bottom: 21px !important;
}

tr.pxi-21px > td {
  padding-left: 21px !important;
  padding-right: 21px !important;
}

tr.pxi-21px > td {
  padding-left: 21px !important;
  padding-right: 21px !important;
}

.m-22px {
  margin: 22px;
}

.mt-22px {
  margin-top: 22px;
}

.mb-22px {
  margin-bottom: 22px;
}

.ml-22px {
  margin-left: 22px;
}

.mr-22px {
  margin-right: 22px;
}

.mt--22px {
  margin-top: -22px;
}

.mb--22px {
  margin-bottom: -22px;
}

.ml--22px {
  margin-left: -22px;
}

.mr--22px {
  margin-right: -22px;
}

.my-22px {
  margin-top: 22px;
  margin-bottom: 22px;
}

.mx-22px {
  margin-left: 22px;
  margin-right: 22px;
}

.mi-22px {
  margin: 22px !important;
}

.mti-22px {
  margin-top: 22px !important;
}

.mbi-22px {
  margin-bottom: 22px !important;
}

.mli-22px {
  margin-left: 22px !important;
}

.mri-22px {
  margin-right: 22px !important;
}

.mti--22px {
  margin-top: -22px !important;
}

.mbi--22px {
  margin-bottom: -22px !important;
}

.mli--22px {
  margin-left: -22px !important;
}

.mri--22px {
  margin-right: -22px !important;
}

.myi-22px {
  margin-top: 22px !important;
  margin-bottom: 22px !important;
}

.mxi-22px {
  margin-left: 22px !important;
  margin-right: 22px !important;
}

.p-22px {
  padding: 22px;
}

.pt-22px {
  padding-top: 22px;
}

.pb-22px {
  padding-bottom: 22px;
}

.pl-22px {
  padding-left: 22px;
}

.pr-22px {
  padding-right: 22px;
}

.py-22px {
  padding-top: 22px;
  padding-bottom: 22px;
}

.px-22px {
  padding-left: 22px;
  padding-right: 22px;
}

.pi-22px {
  padding: 22px !important;
}

.pti-22px {
  padding-top: 22px !important;
}

.pbi-22px {
  padding-bottom: 22px !important;
}

.pli-22px {
  padding-left: 22px !important;
}

.pri-22px {
  padding-right: 22px !important;
}

.pyi-22px {
  padding-top: 22px !important;
  padding-bottom: 22px !important;
}

.pxi-22px {
  padding-left: 22px !important;
  padding-right: 22px !important;
}

tr.p-22px > td {
  padding: 22px;
}

tr.pt-22px > td {
  padding-top: 22px;
}

tr.pb-22px > td {
  padding-bottom: 22px;
}

tr.pl-22px > td {
  padding-left: 22px;
}

tr.pr-22px > td {
  padding-right: 22px;
}

tr.py-22px > td {
  padding-top: 22px;
  padding-bottom: 22px;
}

tr.px-22px > td {
  padding-left: 22px;
  padding-right: 22px;
}

tr.pi-22px > td {
  padding: 22px !important;
}

tr.pti-22px > td {
  padding-top: 22px !important;
}

tr.pbi-22px > td {
  padding-bottom: 22px !important;
}

tr.pli-22px > td {
  padding-left: 22px !important;
}

tr.pri-22px > td {
  padding-right: 22px !important;
}

tr.pyi-22px > td {
  padding-top: 22px !important;
  padding-bottom: 22px !important;
}

tr.pxi-22px > td {
  padding-left: 22px !important;
  padding-right: 22px !important;
}

tr.pxi-22px > td {
  padding-left: 22px !important;
  padding-right: 22px !important;
}

.m-23px {
  margin: 23px;
}

.mt-23px {
  margin-top: 23px;
}

.mb-23px {
  margin-bottom: 23px;
}

.ml-23px {
  margin-left: 23px;
}

.mr-23px {
  margin-right: 23px;
}

.mt--23px {
  margin-top: -23px;
}

.mb--23px {
  margin-bottom: -23px;
}

.ml--23px {
  margin-left: -23px;
}

.mr--23px {
  margin-right: -23px;
}

.my-23px {
  margin-top: 23px;
  margin-bottom: 23px;
}

.mx-23px {
  margin-left: 23px;
  margin-right: 23px;
}

.mi-23px {
  margin: 23px !important;
}

.mti-23px {
  margin-top: 23px !important;
}

.mbi-23px {
  margin-bottom: 23px !important;
}

.mli-23px {
  margin-left: 23px !important;
}

.mri-23px {
  margin-right: 23px !important;
}

.mti--23px {
  margin-top: -23px !important;
}

.mbi--23px {
  margin-bottom: -23px !important;
}

.mli--23px {
  margin-left: -23px !important;
}

.mri--23px {
  margin-right: -23px !important;
}

.myi-23px {
  margin-top: 23px !important;
  margin-bottom: 23px !important;
}

.mxi-23px {
  margin-left: 23px !important;
  margin-right: 23px !important;
}

.p-23px {
  padding: 23px;
}

.pt-23px {
  padding-top: 23px;
}

.pb-23px {
  padding-bottom: 23px;
}

.pl-23px {
  padding-left: 23px;
}

.pr-23px {
  padding-right: 23px;
}

.py-23px {
  padding-top: 23px;
  padding-bottom: 23px;
}

.px-23px {
  padding-left: 23px;
  padding-right: 23px;
}

.pi-23px {
  padding: 23px !important;
}

.pti-23px {
  padding-top: 23px !important;
}

.pbi-23px {
  padding-bottom: 23px !important;
}

.pli-23px {
  padding-left: 23px !important;
}

.pri-23px {
  padding-right: 23px !important;
}

.pyi-23px {
  padding-top: 23px !important;
  padding-bottom: 23px !important;
}

.pxi-23px {
  padding-left: 23px !important;
  padding-right: 23px !important;
}

tr.p-23px > td {
  padding: 23px;
}

tr.pt-23px > td {
  padding-top: 23px;
}

tr.pb-23px > td {
  padding-bottom: 23px;
}

tr.pl-23px > td {
  padding-left: 23px;
}

tr.pr-23px > td {
  padding-right: 23px;
}

tr.py-23px > td {
  padding-top: 23px;
  padding-bottom: 23px;
}

tr.px-23px > td {
  padding-left: 23px;
  padding-right: 23px;
}

tr.pi-23px > td {
  padding: 23px !important;
}

tr.pti-23px > td {
  padding-top: 23px !important;
}

tr.pbi-23px > td {
  padding-bottom: 23px !important;
}

tr.pli-23px > td {
  padding-left: 23px !important;
}

tr.pri-23px > td {
  padding-right: 23px !important;
}

tr.pyi-23px > td {
  padding-top: 23px !important;
  padding-bottom: 23px !important;
}

tr.pxi-23px > td {
  padding-left: 23px !important;
  padding-right: 23px !important;
}

tr.pxi-23px > td {
  padding-left: 23px !important;
  padding-right: 23px !important;
}

.m-24px {
  margin: 24px;
}

.mt-24px {
  margin-top: 24px;
}

.mb-24px {
  margin-bottom: 24px;
}

.ml-24px {
  margin-left: 24px;
}

.mr-24px {
  margin-right: 24px;
}

.mt--24px {
  margin-top: -24px;
}

.mb--24px {
  margin-bottom: -24px;
}

.ml--24px {
  margin-left: -24px;
}

.mr--24px {
  margin-right: -24px;
}

.my-24px {
  margin-top: 24px;
  margin-bottom: 24px;
}

.mx-24px {
  margin-left: 24px;
  margin-right: 24px;
}

.mi-24px {
  margin: 24px !important;
}

.mti-24px {
  margin-top: 24px !important;
}

.mbi-24px {
  margin-bottom: 24px !important;
}

.mli-24px {
  margin-left: 24px !important;
}

.mri-24px {
  margin-right: 24px !important;
}

.mti--24px {
  margin-top: -24px !important;
}

.mbi--24px {
  margin-bottom: -24px !important;
}

.mli--24px {
  margin-left: -24px !important;
}

.mri--24px {
  margin-right: -24px !important;
}

.myi-24px {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.mxi-24px {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.p-24px {
  padding: 24px;
}

.pt-24px {
  padding-top: 24px;
}

.pb-24px {
  padding-bottom: 24px;
}

.pl-24px {
  padding-left: 24px;
}

.pr-24px {
  padding-right: 24px;
}

.py-24px {
  padding-top: 24px;
  padding-bottom: 24px;
}

.px-24px {
  padding-left: 24px;
  padding-right: 24px;
}

.pi-24px {
  padding: 24px !important;
}

.pti-24px {
  padding-top: 24px !important;
}

.pbi-24px {
  padding-bottom: 24px !important;
}

.pli-24px {
  padding-left: 24px !important;
}

.pri-24px {
  padding-right: 24px !important;
}

.pyi-24px {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.pxi-24px {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

tr.p-24px > td {
  padding: 24px;
}

tr.pt-24px > td {
  padding-top: 24px;
}

tr.pb-24px > td {
  padding-bottom: 24px;
}

tr.pl-24px > td {
  padding-left: 24px;
}

tr.pr-24px > td {
  padding-right: 24px;
}

tr.py-24px > td {
  padding-top: 24px;
  padding-bottom: 24px;
}

tr.px-24px > td {
  padding-left: 24px;
  padding-right: 24px;
}

tr.pi-24px > td {
  padding: 24px !important;
}

tr.pti-24px > td {
  padding-top: 24px !important;
}

tr.pbi-24px > td {
  padding-bottom: 24px !important;
}

tr.pli-24px > td {
  padding-left: 24px !important;
}

tr.pri-24px > td {
  padding-right: 24px !important;
}

tr.pyi-24px > td {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

tr.pxi-24px > td {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

tr.pxi-24px > td {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.m-25px {
  margin: 25px;
}

.mt-25px {
  margin-top: 25px;
}

.mb-25px {
  margin-bottom: 25px;
}

.ml-25px {
  margin-left: 25px;
}

.mr-25px {
  margin-right: 25px;
}

.mt--25px {
  margin-top: -25px;
}

.mb--25px {
  margin-bottom: -25px;
}

.ml--25px {
  margin-left: -25px;
}

.mr--25px {
  margin-right: -25px;
}

.my-25px {
  margin-top: 25px;
  margin-bottom: 25px;
}

.mx-25px {
  margin-left: 25px;
  margin-right: 25px;
}

.mi-25px {
  margin: 25px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-25px {
  padding: 25px;
}

.pt-25px {
  padding-top: 25px;
}

.pb-25px {
  padding-bottom: 25px;
}

.pl-25px {
  padding-left: 25px;
}

.pr-25px {
  padding-right: 25px;
}

.py-25px {
  padding-top: 25px;
  padding-bottom: 25px;
}

.px-25px {
  padding-left: 25px;
  padding-right: 25px;
}

.pi-25px {
  padding: 25px !important;
}

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

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

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

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

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

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

tr.p-25px > td {
  padding: 25px;
}

tr.pt-25px > td {
  padding-top: 25px;
}

tr.pb-25px > td {
  padding-bottom: 25px;
}

tr.pl-25px > td {
  padding-left: 25px;
}

tr.pr-25px > td {
  padding-right: 25px;
}

tr.py-25px > td {
  padding-top: 25px;
  padding-bottom: 25px;
}

tr.px-25px > td {
  padding-left: 25px;
  padding-right: 25px;
}

tr.pi-25px > td {
  padding: 25px !important;
}

tr.pti-25px > td {
  padding-top: 25px !important;
}

tr.pbi-25px > td {
  padding-bottom: 25px !important;
}

tr.pli-25px > td {
  padding-left: 25px !important;
}

tr.pri-25px > td {
  padding-right: 25px !important;
}

tr.pyi-25px > td {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

tr.pxi-25px > td {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

tr.pxi-25px > td {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.m-26px {
  margin: 26px;
}

.mt-26px {
  margin-top: 26px;
}

.mb-26px {
  margin-bottom: 26px;
}

.ml-26px {
  margin-left: 26px;
}

.mr-26px {
  margin-right: 26px;
}

.mt--26px {
  margin-top: -26px;
}

.mb--26px {
  margin-bottom: -26px;
}

.ml--26px {
  margin-left: -26px;
}

.mr--26px {
  margin-right: -26px;
}

.my-26px {
  margin-top: 26px;
  margin-bottom: 26px;
}

.mx-26px {
  margin-left: 26px;
  margin-right: 26px;
}

.mi-26px {
  margin: 26px !important;
}

.mti-26px {
  margin-top: 26px !important;
}

.mbi-26px {
  margin-bottom: 26px !important;
}

.mli-26px {
  margin-left: 26px !important;
}

.mri-26px {
  margin-right: 26px !important;
}

.mti--26px {
  margin-top: -26px !important;
}

.mbi--26px {
  margin-bottom: -26px !important;
}

.mli--26px {
  margin-left: -26px !important;
}

.mri--26px {
  margin-right: -26px !important;
}

.myi-26px {
  margin-top: 26px !important;
  margin-bottom: 26px !important;
}

.mxi-26px {
  margin-left: 26px !important;
  margin-right: 26px !important;
}

.p-26px {
  padding: 26px;
}

.pt-26px {
  padding-top: 26px;
}

.pb-26px {
  padding-bottom: 26px;
}

.pl-26px {
  padding-left: 26px;
}

.pr-26px {
  padding-right: 26px;
}

.py-26px {
  padding-top: 26px;
  padding-bottom: 26px;
}

.px-26px {
  padding-left: 26px;
  padding-right: 26px;
}

.pi-26px {
  padding: 26px !important;
}

.pti-26px {
  padding-top: 26px !important;
}

.pbi-26px {
  padding-bottom: 26px !important;
}

.pli-26px {
  padding-left: 26px !important;
}

.pri-26px {
  padding-right: 26px !important;
}

.pyi-26px {
  padding-top: 26px !important;
  padding-bottom: 26px !important;
}

.pxi-26px {
  padding-left: 26px !important;
  padding-right: 26px !important;
}

tr.p-26px > td {
  padding: 26px;
}

tr.pt-26px > td {
  padding-top: 26px;
}

tr.pb-26px > td {
  padding-bottom: 26px;
}

tr.pl-26px > td {
  padding-left: 26px;
}

tr.pr-26px > td {
  padding-right: 26px;
}

tr.py-26px > td {
  padding-top: 26px;
  padding-bottom: 26px;
}

tr.px-26px > td {
  padding-left: 26px;
  padding-right: 26px;
}

tr.pi-26px > td {
  padding: 26px !important;
}

tr.pti-26px > td {
  padding-top: 26px !important;
}

tr.pbi-26px > td {
  padding-bottom: 26px !important;
}

tr.pli-26px > td {
  padding-left: 26px !important;
}

tr.pri-26px > td {
  padding-right: 26px !important;
}

tr.pyi-26px > td {
  padding-top: 26px !important;
  padding-bottom: 26px !important;
}

tr.pxi-26px > td {
  padding-left: 26px !important;
  padding-right: 26px !important;
}

tr.pxi-26px > td {
  padding-left: 26px !important;
  padding-right: 26px !important;
}

.m-27px {
  margin: 27px;
}

.mt-27px {
  margin-top: 27px;
}

.mb-27px {
  margin-bottom: 27px;
}

.ml-27px {
  margin-left: 27px;
}

.mr-27px {
  margin-right: 27px;
}

.mt--27px {
  margin-top: -27px;
}

.mb--27px {
  margin-bottom: -27px;
}

.ml--27px {
  margin-left: -27px;
}

.mr--27px {
  margin-right: -27px;
}

.my-27px {
  margin-top: 27px;
  margin-bottom: 27px;
}

.mx-27px {
  margin-left: 27px;
  margin-right: 27px;
}

.mi-27px {
  margin: 27px !important;
}

.mti-27px {
  margin-top: 27px !important;
}

.mbi-27px {
  margin-bottom: 27px !important;
}

.mli-27px {
  margin-left: 27px !important;
}

.mri-27px {
  margin-right: 27px !important;
}

.mti--27px {
  margin-top: -27px !important;
}

.mbi--27px {
  margin-bottom: -27px !important;
}

.mli--27px {
  margin-left: -27px !important;
}

.mri--27px {
  margin-right: -27px !important;
}

.myi-27px {
  margin-top: 27px !important;
  margin-bottom: 27px !important;
}

.mxi-27px {
  margin-left: 27px !important;
  margin-right: 27px !important;
}

.p-27px {
  padding: 27px;
}

.pt-27px {
  padding-top: 27px;
}

.pb-27px {
  padding-bottom: 27px;
}

.pl-27px {
  padding-left: 27px;
}

.pr-27px {
  padding-right: 27px;
}

.py-27px {
  padding-top: 27px;
  padding-bottom: 27px;
}

.px-27px {
  padding-left: 27px;
  padding-right: 27px;
}

.pi-27px {
  padding: 27px !important;
}

.pti-27px {
  padding-top: 27px !important;
}

.pbi-27px {
  padding-bottom: 27px !important;
}

.pli-27px {
  padding-left: 27px !important;
}

.pri-27px {
  padding-right: 27px !important;
}

.pyi-27px {
  padding-top: 27px !important;
  padding-bottom: 27px !important;
}

.pxi-27px {
  padding-left: 27px !important;
  padding-right: 27px !important;
}

tr.p-27px > td {
  padding: 27px;
}

tr.pt-27px > td {
  padding-top: 27px;
}

tr.pb-27px > td {
  padding-bottom: 27px;
}

tr.pl-27px > td {
  padding-left: 27px;
}

tr.pr-27px > td {
  padding-right: 27px;
}

tr.py-27px > td {
  padding-top: 27px;
  padding-bottom: 27px;
}

tr.px-27px > td {
  padding-left: 27px;
  padding-right: 27px;
}

tr.pi-27px > td {
  padding: 27px !important;
}

tr.pti-27px > td {
  padding-top: 27px !important;
}

tr.pbi-27px > td {
  padding-bottom: 27px !important;
}

tr.pli-27px > td {
  padding-left: 27px !important;
}

tr.pri-27px > td {
  padding-right: 27px !important;
}

tr.pyi-27px > td {
  padding-top: 27px !important;
  padding-bottom: 27px !important;
}

tr.pxi-27px > td {
  padding-left: 27px !important;
  padding-right: 27px !important;
}

tr.pxi-27px > td {
  padding-left: 27px !important;
  padding-right: 27px !important;
}

.m-28px {
  margin: 28px;
}

.mt-28px {
  margin-top: 28px;
}

.mb-28px {
  margin-bottom: 28px;
}

.ml-28px {
  margin-left: 28px;
}

.mr-28px {
  margin-right: 28px;
}

.mt--28px {
  margin-top: -28px;
}

.mb--28px {
  margin-bottom: -28px;
}

.ml--28px {
  margin-left: -28px;
}

.mr--28px {
  margin-right: -28px;
}

.my-28px {
  margin-top: 28px;
  margin-bottom: 28px;
}

.mx-28px {
  margin-left: 28px;
  margin-right: 28px;
}

.mi-28px {
  margin: 28px !important;
}

.mti-28px {
  margin-top: 28px !important;
}

.mbi-28px {
  margin-bottom: 28px !important;
}

.mli-28px {
  margin-left: 28px !important;
}

.mri-28px {
  margin-right: 28px !important;
}

.mti--28px {
  margin-top: -28px !important;
}

.mbi--28px {
  margin-bottom: -28px !important;
}

.mli--28px {
  margin-left: -28px !important;
}

.mri--28px {
  margin-right: -28px !important;
}

.myi-28px {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}

.mxi-28px {
  margin-left: 28px !important;
  margin-right: 28px !important;
}

.p-28px {
  padding: 28px;
}

.pt-28px {
  padding-top: 28px;
}

.pb-28px {
  padding-bottom: 28px;
}

.pl-28px {
  padding-left: 28px;
}

.pr-28px {
  padding-right: 28px;
}

.py-28px {
  padding-top: 28px;
  padding-bottom: 28px;
}

.px-28px {
  padding-left: 28px;
  padding-right: 28px;
}

.pi-28px {
  padding: 28px !important;
}

.pti-28px {
  padding-top: 28px !important;
}

.pbi-28px {
  padding-bottom: 28px !important;
}

.pli-28px {
  padding-left: 28px !important;
}

.pri-28px {
  padding-right: 28px !important;
}

.pyi-28px {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.pxi-28px {
  padding-left: 28px !important;
  padding-right: 28px !important;
}

tr.p-28px > td {
  padding: 28px;
}

tr.pt-28px > td {
  padding-top: 28px;
}

tr.pb-28px > td {
  padding-bottom: 28px;
}

tr.pl-28px > td {
  padding-left: 28px;
}

tr.pr-28px > td {
  padding-right: 28px;
}

tr.py-28px > td {
  padding-top: 28px;
  padding-bottom: 28px;
}

tr.px-28px > td {
  padding-left: 28px;
  padding-right: 28px;
}

tr.pi-28px > td {
  padding: 28px !important;
}

tr.pti-28px > td {
  padding-top: 28px !important;
}

tr.pbi-28px > td {
  padding-bottom: 28px !important;
}

tr.pli-28px > td {
  padding-left: 28px !important;
}

tr.pri-28px > td {
  padding-right: 28px !important;
}

tr.pyi-28px > td {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

tr.pxi-28px > td {
  padding-left: 28px !important;
  padding-right: 28px !important;
}

tr.pxi-28px > td {
  padding-left: 28px !important;
  padding-right: 28px !important;
}

.m-29px {
  margin: 29px;
}

.mt-29px {
  margin-top: 29px;
}

.mb-29px {
  margin-bottom: 29px;
}

.ml-29px {
  margin-left: 29px;
}

.mr-29px {
  margin-right: 29px;
}

.mt--29px {
  margin-top: -29px;
}

.mb--29px {
  margin-bottom: -29px;
}

.ml--29px {
  margin-left: -29px;
}

.mr--29px {
  margin-right: -29px;
}

.my-29px {
  margin-top: 29px;
  margin-bottom: 29px;
}

.mx-29px {
  margin-left: 29px;
  margin-right: 29px;
}

.mi-29px {
  margin: 29px !important;
}

.mti-29px {
  margin-top: 29px !important;
}

.mbi-29px {
  margin-bottom: 29px !important;
}

.mli-29px {
  margin-left: 29px !important;
}

.mri-29px {
  margin-right: 29px !important;
}

.mti--29px {
  margin-top: -29px !important;
}

.mbi--29px {
  margin-bottom: -29px !important;
}

.mli--29px {
  margin-left: -29px !important;
}

.mri--29px {
  margin-right: -29px !important;
}

.myi-29px {
  margin-top: 29px !important;
  margin-bottom: 29px !important;
}

.mxi-29px {
  margin-left: 29px !important;
  margin-right: 29px !important;
}

.p-29px {
  padding: 29px;
}

.pt-29px {
  padding-top: 29px;
}

.pb-29px {
  padding-bottom: 29px;
}

.pl-29px {
  padding-left: 29px;
}

.pr-29px {
  padding-right: 29px;
}

.py-29px {
  padding-top: 29px;
  padding-bottom: 29px;
}

.px-29px {
  padding-left: 29px;
  padding-right: 29px;
}

.pi-29px {
  padding: 29px !important;
}

.pti-29px {
  padding-top: 29px !important;
}

.pbi-29px {
  padding-bottom: 29px !important;
}

.pli-29px {
  padding-left: 29px !important;
}

.pri-29px {
  padding-right: 29px !important;
}

.pyi-29px {
  padding-top: 29px !important;
  padding-bottom: 29px !important;
}

.pxi-29px {
  padding-left: 29px !important;
  padding-right: 29px !important;
}

tr.p-29px > td {
  padding: 29px;
}

tr.pt-29px > td {
  padding-top: 29px;
}

tr.pb-29px > td {
  padding-bottom: 29px;
}

tr.pl-29px > td {
  padding-left: 29px;
}

tr.pr-29px > td {
  padding-right: 29px;
}

tr.py-29px > td {
  padding-top: 29px;
  padding-bottom: 29px;
}

tr.px-29px > td {
  padding-left: 29px;
  padding-right: 29px;
}

tr.pi-29px > td {
  padding: 29px !important;
}

tr.pti-29px > td {
  padding-top: 29px !important;
}

tr.pbi-29px > td {
  padding-bottom: 29px !important;
}

tr.pli-29px > td {
  padding-left: 29px !important;
}

tr.pri-29px > td {
  padding-right: 29px !important;
}

tr.pyi-29px > td {
  padding-top: 29px !important;
  padding-bottom: 29px !important;
}

tr.pxi-29px > td {
  padding-left: 29px !important;
  padding-right: 29px !important;
}

tr.pxi-29px > td {
  padding-left: 29px !important;
  padding-right: 29px !important;
}

.m-30px {
  margin: 30px;
}

.mt-30px {
  margin-top: 30px;
}

.mb-30px {
  margin-bottom: 30px;
}

.ml-30px {
  margin-left: 30px;
}

.mr-30px {
  margin-right: 30px;
}

.mt--30px {
  margin-top: -30px;
}

.mb--30px {
  margin-bottom: -30px;
}

.ml--30px {
  margin-left: -30px;
}

.mr--30px {
  margin-right: -30px;
}

.my-30px {
  margin-top: 30px;
  margin-bottom: 30px;
}

.mx-30px {
  margin-left: 30px;
  margin-right: 30px;
}

.mi-30px {
  margin: 30px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-30px {
  padding: 30px;
}

.pt-30px {
  padding-top: 30px;
}

.pb-30px {
  padding-bottom: 30px;
}

.pl-30px {
  padding-left: 30px;
}

.pr-30px {
  padding-right: 30px;
}

.py-30px {
  padding-top: 30px;
  padding-bottom: 30px;
}

.px-30px {
  padding-left: 30px;
  padding-right: 30px;
}

.pi-30px {
  padding: 30px !important;
}

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

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

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

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

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

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

tr.p-30px > td {
  padding: 30px;
}

tr.pt-30px > td {
  padding-top: 30px;
}

tr.pb-30px > td {
  padding-bottom: 30px;
}

tr.pl-30px > td {
  padding-left: 30px;
}

tr.pr-30px > td {
  padding-right: 30px;
}

tr.py-30px > td {
  padding-top: 30px;
  padding-bottom: 30px;
}

tr.px-30px > td {
  padding-left: 30px;
  padding-right: 30px;
}

tr.pi-30px > td {
  padding: 30px !important;
}

tr.pti-30px > td {
  padding-top: 30px !important;
}

tr.pbi-30px > td {
  padding-bottom: 30px !important;
}

tr.pli-30px > td {
  padding-left: 30px !important;
}

tr.pri-30px > td {
  padding-right: 30px !important;
}

tr.pyi-30px > td {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

tr.pxi-30px > td {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

tr.pxi-30px > td {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.m-31px {
  margin: 31px;
}

.mt-31px {
  margin-top: 31px;
}

.mb-31px {
  margin-bottom: 31px;
}

.ml-31px {
  margin-left: 31px;
}

.mr-31px {
  margin-right: 31px;
}

.mt--31px {
  margin-top: -31px;
}

.mb--31px {
  margin-bottom: -31px;
}

.ml--31px {
  margin-left: -31px;
}

.mr--31px {
  margin-right: -31px;
}

.my-31px {
  margin-top: 31px;
  margin-bottom: 31px;
}

.mx-31px {
  margin-left: 31px;
  margin-right: 31px;
}

.mi-31px {
  margin: 31px !important;
}

.mti-31px {
  margin-top: 31px !important;
}

.mbi-31px {
  margin-bottom: 31px !important;
}

.mli-31px {
  margin-left: 31px !important;
}

.mri-31px {
  margin-right: 31px !important;
}

.mti--31px {
  margin-top: -31px !important;
}

.mbi--31px {
  margin-bottom: -31px !important;
}

.mli--31px {
  margin-left: -31px !important;
}

.mri--31px {
  margin-right: -31px !important;
}

.myi-31px {
  margin-top: 31px !important;
  margin-bottom: 31px !important;
}

.mxi-31px {
  margin-left: 31px !important;
  margin-right: 31px !important;
}

.p-31px {
  padding: 31px;
}

.pt-31px {
  padding-top: 31px;
}

.pb-31px {
  padding-bottom: 31px;
}

.pl-31px {
  padding-left: 31px;
}

.pr-31px {
  padding-right: 31px;
}

.py-31px {
  padding-top: 31px;
  padding-bottom: 31px;
}

.px-31px {
  padding-left: 31px;
  padding-right: 31px;
}

.pi-31px {
  padding: 31px !important;
}

.pti-31px {
  padding-top: 31px !important;
}

.pbi-31px {
  padding-bottom: 31px !important;
}

.pli-31px {
  padding-left: 31px !important;
}

.pri-31px {
  padding-right: 31px !important;
}

.pyi-31px {
  padding-top: 31px !important;
  padding-bottom: 31px !important;
}

.pxi-31px {
  padding-left: 31px !important;
  padding-right: 31px !important;
}

tr.p-31px > td {
  padding: 31px;
}

tr.pt-31px > td {
  padding-top: 31px;
}

tr.pb-31px > td {
  padding-bottom: 31px;
}

tr.pl-31px > td {
  padding-left: 31px;
}

tr.pr-31px > td {
  padding-right: 31px;
}

tr.py-31px > td {
  padding-top: 31px;
  padding-bottom: 31px;
}

tr.px-31px > td {
  padding-left: 31px;
  padding-right: 31px;
}

tr.pi-31px > td {
  padding: 31px !important;
}

tr.pti-31px > td {
  padding-top: 31px !important;
}

tr.pbi-31px > td {
  padding-bottom: 31px !important;
}

tr.pli-31px > td {
  padding-left: 31px !important;
}

tr.pri-31px > td {
  padding-right: 31px !important;
}

tr.pyi-31px > td {
  padding-top: 31px !important;
  padding-bottom: 31px !important;
}

tr.pxi-31px > td {
  padding-left: 31px !important;
  padding-right: 31px !important;
}

tr.pxi-31px > td {
  padding-left: 31px !important;
  padding-right: 31px !important;
}

.m-32px {
  margin: 32px;
}

.mt-32px {
  margin-top: 32px;
}

.mb-32px {
  margin-bottom: 32px;
}

.ml-32px {
  margin-left: 32px;
}

.mr-32px {
  margin-right: 32px;
}

.mt--32px {
  margin-top: -32px;
}

.mb--32px {
  margin-bottom: -32px;
}

.ml--32px {
  margin-left: -32px;
}

.mr--32px {
  margin-right: -32px;
}

.my-32px {
  margin-top: 32px;
  margin-bottom: 32px;
}

.mx-32px {
  margin-left: 32px;
  margin-right: 32px;
}

.mi-32px {
  margin: 32px !important;
}

.mti-32px {
  margin-top: 32px !important;
}

.mbi-32px {
  margin-bottom: 32px !important;
}

.mli-32px {
  margin-left: 32px !important;
}

.mri-32px {
  margin-right: 32px !important;
}

.mti--32px {
  margin-top: -32px !important;
}

.mbi--32px {
  margin-bottom: -32px !important;
}

.mli--32px {
  margin-left: -32px !important;
}

.mri--32px {
  margin-right: -32px !important;
}

.myi-32px {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.mxi-32px {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.p-32px {
  padding: 32px;
}

.pt-32px {
  padding-top: 32px;
}

.pb-32px {
  padding-bottom: 32px;
}

.pl-32px {
  padding-left: 32px;
}

.pr-32px {
  padding-right: 32px;
}

.py-32px {
  padding-top: 32px;
  padding-bottom: 32px;
}

.px-32px {
  padding-left: 32px;
  padding-right: 32px;
}

.pi-32px {
  padding: 32px !important;
}

.pti-32px {
  padding-top: 32px !important;
}

.pbi-32px {
  padding-bottom: 32px !important;
}

.pli-32px {
  padding-left: 32px !important;
}

.pri-32px {
  padding-right: 32px !important;
}

.pyi-32px {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.pxi-32px {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

tr.p-32px > td {
  padding: 32px;
}

tr.pt-32px > td {
  padding-top: 32px;
}

tr.pb-32px > td {
  padding-bottom: 32px;
}

tr.pl-32px > td {
  padding-left: 32px;
}

tr.pr-32px > td {
  padding-right: 32px;
}

tr.py-32px > td {
  padding-top: 32px;
  padding-bottom: 32px;
}

tr.px-32px > td {
  padding-left: 32px;
  padding-right: 32px;
}

tr.pi-32px > td {
  padding: 32px !important;
}

tr.pti-32px > td {
  padding-top: 32px !important;
}

tr.pbi-32px > td {
  padding-bottom: 32px !important;
}

tr.pli-32px > td {
  padding-left: 32px !important;
}

tr.pri-32px > td {
  padding-right: 32px !important;
}

tr.pyi-32px > td {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

tr.pxi-32px > td {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

tr.pxi-32px > td {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.m-33px {
  margin: 33px;
}

.mt-33px {
  margin-top: 33px;
}

.mb-33px {
  margin-bottom: 33px;
}

.ml-33px {
  margin-left: 33px;
}

.mr-33px {
  margin-right: 33px;
}

.mt--33px {
  margin-top: -33px;
}

.mb--33px {
  margin-bottom: -33px;
}

.ml--33px {
  margin-left: -33px;
}

.mr--33px {
  margin-right: -33px;
}

.my-33px {
  margin-top: 33px;
  margin-bottom: 33px;
}

.mx-33px {
  margin-left: 33px;
  margin-right: 33px;
}

.mi-33px {
  margin: 33px !important;
}

.mti-33px {
  margin-top: 33px !important;
}

.mbi-33px {
  margin-bottom: 33px !important;
}

.mli-33px {
  margin-left: 33px !important;
}

.mri-33px {
  margin-right: 33px !important;
}

.mti--33px {
  margin-top: -33px !important;
}

.mbi--33px {
  margin-bottom: -33px !important;
}

.mli--33px {
  margin-left: -33px !important;
}

.mri--33px {
  margin-right: -33px !important;
}

.myi-33px {
  margin-top: 33px !important;
  margin-bottom: 33px !important;
}

.mxi-33px {
  margin-left: 33px !important;
  margin-right: 33px !important;
}

.p-33px {
  padding: 33px;
}

.pt-33px {
  padding-top: 33px;
}

.pb-33px {
  padding-bottom: 33px;
}

.pl-33px {
  padding-left: 33px;
}

.pr-33px {
  padding-right: 33px;
}

.py-33px {
  padding-top: 33px;
  padding-bottom: 33px;
}

.px-33px {
  padding-left: 33px;
  padding-right: 33px;
}

.pi-33px {
  padding: 33px !important;
}

.pti-33px {
  padding-top: 33px !important;
}

.pbi-33px {
  padding-bottom: 33px !important;
}

.pli-33px {
  padding-left: 33px !important;
}

.pri-33px {
  padding-right: 33px !important;
}

.pyi-33px {
  padding-top: 33px !important;
  padding-bottom: 33px !important;
}

.pxi-33px {
  padding-left: 33px !important;
  padding-right: 33px !important;
}

tr.p-33px > td {
  padding: 33px;
}

tr.pt-33px > td {
  padding-top: 33px;
}

tr.pb-33px > td {
  padding-bottom: 33px;
}

tr.pl-33px > td {
  padding-left: 33px;
}

tr.pr-33px > td {
  padding-right: 33px;
}

tr.py-33px > td {
  padding-top: 33px;
  padding-bottom: 33px;
}

tr.px-33px > td {
  padding-left: 33px;
  padding-right: 33px;
}

tr.pi-33px > td {
  padding: 33px !important;
}

tr.pti-33px > td {
  padding-top: 33px !important;
}

tr.pbi-33px > td {
  padding-bottom: 33px !important;
}

tr.pli-33px > td {
  padding-left: 33px !important;
}

tr.pri-33px > td {
  padding-right: 33px !important;
}

tr.pyi-33px > td {
  padding-top: 33px !important;
  padding-bottom: 33px !important;
}

tr.pxi-33px > td {
  padding-left: 33px !important;
  padding-right: 33px !important;
}

tr.pxi-33px > td {
  padding-left: 33px !important;
  padding-right: 33px !important;
}

.m-34px {
  margin: 34px;
}

.mt-34px {
  margin-top: 34px;
}

.mb-34px {
  margin-bottom: 34px;
}

.ml-34px {
  margin-left: 34px;
}

.mr-34px {
  margin-right: 34px;
}

.mt--34px {
  margin-top: -34px;
}

.mb--34px {
  margin-bottom: -34px;
}

.ml--34px {
  margin-left: -34px;
}

.mr--34px {
  margin-right: -34px;
}

.my-34px {
  margin-top: 34px;
  margin-bottom: 34px;
}

.mx-34px {
  margin-left: 34px;
  margin-right: 34px;
}

.mi-34px {
  margin: 34px !important;
}

.mti-34px {
  margin-top: 34px !important;
}

.mbi-34px {
  margin-bottom: 34px !important;
}

.mli-34px {
  margin-left: 34px !important;
}

.mri-34px {
  margin-right: 34px !important;
}

.mti--34px {
  margin-top: -34px !important;
}

.mbi--34px {
  margin-bottom: -34px !important;
}

.mli--34px {
  margin-left: -34px !important;
}

.mri--34px {
  margin-right: -34px !important;
}

.myi-34px {
  margin-top: 34px !important;
  margin-bottom: 34px !important;
}

.mxi-34px {
  margin-left: 34px !important;
  margin-right: 34px !important;
}

.p-34px {
  padding: 34px;
}

.pt-34px {
  padding-top: 34px;
}

.pb-34px {
  padding-bottom: 34px;
}

.pl-34px {
  padding-left: 34px;
}

.pr-34px {
  padding-right: 34px;
}

.py-34px {
  padding-top: 34px;
  padding-bottom: 34px;
}

.px-34px {
  padding-left: 34px;
  padding-right: 34px;
}

.pi-34px {
  padding: 34px !important;
}

.pti-34px {
  padding-top: 34px !important;
}

.pbi-34px {
  padding-bottom: 34px !important;
}

.pli-34px {
  padding-left: 34px !important;
}

.pri-34px {
  padding-right: 34px !important;
}

.pyi-34px {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

.pxi-34px {
  padding-left: 34px !important;
  padding-right: 34px !important;
}

tr.p-34px > td {
  padding: 34px;
}

tr.pt-34px > td {
  padding-top: 34px;
}

tr.pb-34px > td {
  padding-bottom: 34px;
}

tr.pl-34px > td {
  padding-left: 34px;
}

tr.pr-34px > td {
  padding-right: 34px;
}

tr.py-34px > td {
  padding-top: 34px;
  padding-bottom: 34px;
}

tr.px-34px > td {
  padding-left: 34px;
  padding-right: 34px;
}

tr.pi-34px > td {
  padding: 34px !important;
}

tr.pti-34px > td {
  padding-top: 34px !important;
}

tr.pbi-34px > td {
  padding-bottom: 34px !important;
}

tr.pli-34px > td {
  padding-left: 34px !important;
}

tr.pri-34px > td {
  padding-right: 34px !important;
}

tr.pyi-34px > td {
  padding-top: 34px !important;
  padding-bottom: 34px !important;
}

tr.pxi-34px > td {
  padding-left: 34px !important;
  padding-right: 34px !important;
}

tr.pxi-34px > td {
  padding-left: 34px !important;
  padding-right: 34px !important;
}

.m-35px {
  margin: 35px;
}

.mt-35px {
  margin-top: 35px;
}

.mb-35px {
  margin-bottom: 35px;
}

.ml-35px {
  margin-left: 35px;
}

.mr-35px {
  margin-right: 35px;
}

.mt--35px {
  margin-top: -35px;
}

.mb--35px {
  margin-bottom: -35px;
}

.ml--35px {
  margin-left: -35px;
}

.mr--35px {
  margin-right: -35px;
}

.my-35px {
  margin-top: 35px;
  margin-bottom: 35px;
}

.mx-35px {
  margin-left: 35px;
  margin-right: 35px;
}

.mi-35px {
  margin: 35px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-35px {
  padding: 35px;
}

.pt-35px {
  padding-top: 35px;
}

.pb-35px {
  padding-bottom: 35px;
}

.pl-35px {
  padding-left: 35px;
}

.pr-35px {
  padding-right: 35px;
}

.py-35px {
  padding-top: 35px;
  padding-bottom: 35px;
}

.px-35px {
  padding-left: 35px;
  padding-right: 35px;
}

.pi-35px {
  padding: 35px !important;
}

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

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

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

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

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

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

tr.p-35px > td {
  padding: 35px;
}

tr.pt-35px > td {
  padding-top: 35px;
}

tr.pb-35px > td {
  padding-bottom: 35px;
}

tr.pl-35px > td {
  padding-left: 35px;
}

tr.pr-35px > td {
  padding-right: 35px;
}

tr.py-35px > td {
  padding-top: 35px;
  padding-bottom: 35px;
}

tr.px-35px > td {
  padding-left: 35px;
  padding-right: 35px;
}

tr.pi-35px > td {
  padding: 35px !important;
}

tr.pti-35px > td {
  padding-top: 35px !important;
}

tr.pbi-35px > td {
  padding-bottom: 35px !important;
}

tr.pli-35px > td {
  padding-left: 35px !important;
}

tr.pri-35px > td {
  padding-right: 35px !important;
}

tr.pyi-35px > td {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

tr.pxi-35px > td {
  padding-left: 35px !important;
  padding-right: 35px !important;
}

tr.pxi-35px > td {
  padding-left: 35px !important;
  padding-right: 35px !important;
}

.m-36px {
  margin: 36px;
}

.mt-36px {
  margin-top: 36px;
}

.mb-36px {
  margin-bottom: 36px;
}

.ml-36px {
  margin-left: 36px;
}

.mr-36px {
  margin-right: 36px;
}

.mt--36px {
  margin-top: -36px;
}

.mb--36px {
  margin-bottom: -36px;
}

.ml--36px {
  margin-left: -36px;
}

.mr--36px {
  margin-right: -36px;
}

.my-36px {
  margin-top: 36px;
  margin-bottom: 36px;
}

.mx-36px {
  margin-left: 36px;
  margin-right: 36px;
}

.mi-36px {
  margin: 36px !important;
}

.mti-36px {
  margin-top: 36px !important;
}

.mbi-36px {
  margin-bottom: 36px !important;
}

.mli-36px {
  margin-left: 36px !important;
}

.mri-36px {
  margin-right: 36px !important;
}

.mti--36px {
  margin-top: -36px !important;
}

.mbi--36px {
  margin-bottom: -36px !important;
}

.mli--36px {
  margin-left: -36px !important;
}

.mri--36px {
  margin-right: -36px !important;
}

.myi-36px {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
}

.mxi-36px {
  margin-left: 36px !important;
  margin-right: 36px !important;
}

.p-36px {
  padding: 36px;
}

.pt-36px {
  padding-top: 36px;
}

.pb-36px {
  padding-bottom: 36px;
}

.pl-36px {
  padding-left: 36px;
}

.pr-36px {
  padding-right: 36px;
}

.py-36px {
  padding-top: 36px;
  padding-bottom: 36px;
}

.px-36px {
  padding-left: 36px;
  padding-right: 36px;
}

.pi-36px {
  padding: 36px !important;
}

.pti-36px {
  padding-top: 36px !important;
}

.pbi-36px {
  padding-bottom: 36px !important;
}

.pli-36px {
  padding-left: 36px !important;
}

.pri-36px {
  padding-right: 36px !important;
}

.pyi-36px {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

.pxi-36px {
  padding-left: 36px !important;
  padding-right: 36px !important;
}

tr.p-36px > td {
  padding: 36px;
}

tr.pt-36px > td {
  padding-top: 36px;
}

tr.pb-36px > td {
  padding-bottom: 36px;
}

tr.pl-36px > td {
  padding-left: 36px;
}

tr.pr-36px > td {
  padding-right: 36px;
}

tr.py-36px > td {
  padding-top: 36px;
  padding-bottom: 36px;
}

tr.px-36px > td {
  padding-left: 36px;
  padding-right: 36px;
}

tr.pi-36px > td {
  padding: 36px !important;
}

tr.pti-36px > td {
  padding-top: 36px !important;
}

tr.pbi-36px > td {
  padding-bottom: 36px !important;
}

tr.pli-36px > td {
  padding-left: 36px !important;
}

tr.pri-36px > td {
  padding-right: 36px !important;
}

tr.pyi-36px > td {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

tr.pxi-36px > td {
  padding-left: 36px !important;
  padding-right: 36px !important;
}

tr.pxi-36px > td {
  padding-left: 36px !important;
  padding-right: 36px !important;
}

.m-37px {
  margin: 37px;
}

.mt-37px {
  margin-top: 37px;
}

.mb-37px {
  margin-bottom: 37px;
}

.ml-37px {
  margin-left: 37px;
}

.mr-37px {
  margin-right: 37px;
}

.mt--37px {
  margin-top: -37px;
}

.mb--37px {
  margin-bottom: -37px;
}

.ml--37px {
  margin-left: -37px;
}

.mr--37px {
  margin-right: -37px;
}

.my-37px {
  margin-top: 37px;
  margin-bottom: 37px;
}

.mx-37px {
  margin-left: 37px;
  margin-right: 37px;
}

.mi-37px {
  margin: 37px !important;
}

.mti-37px {
  margin-top: 37px !important;
}

.mbi-37px {
  margin-bottom: 37px !important;
}

.mli-37px {
  margin-left: 37px !important;
}

.mri-37px {
  margin-right: 37px !important;
}

.mti--37px {
  margin-top: -37px !important;
}

.mbi--37px {
  margin-bottom: -37px !important;
}

.mli--37px {
  margin-left: -37px !important;
}

.mri--37px {
  margin-right: -37px !important;
}

.myi-37px {
  margin-top: 37px !important;
  margin-bottom: 37px !important;
}

.mxi-37px {
  margin-left: 37px !important;
  margin-right: 37px !important;
}

.p-37px {
  padding: 37px;
}

.pt-37px {
  padding-top: 37px;
}

.pb-37px {
  padding-bottom: 37px;
}

.pl-37px {
  padding-left: 37px;
}

.pr-37px {
  padding-right: 37px;
}

.py-37px {
  padding-top: 37px;
  padding-bottom: 37px;
}

.px-37px {
  padding-left: 37px;
  padding-right: 37px;
}

.pi-37px {
  padding: 37px !important;
}

.pti-37px {
  padding-top: 37px !important;
}

.pbi-37px {
  padding-bottom: 37px !important;
}

.pli-37px {
  padding-left: 37px !important;
}

.pri-37px {
  padding-right: 37px !important;
}

.pyi-37px {
  padding-top: 37px !important;
  padding-bottom: 37px !important;
}

.pxi-37px {
  padding-left: 37px !important;
  padding-right: 37px !important;
}

tr.p-37px > td {
  padding: 37px;
}

tr.pt-37px > td {
  padding-top: 37px;
}

tr.pb-37px > td {
  padding-bottom: 37px;
}

tr.pl-37px > td {
  padding-left: 37px;
}

tr.pr-37px > td {
  padding-right: 37px;
}

tr.py-37px > td {
  padding-top: 37px;
  padding-bottom: 37px;
}

tr.px-37px > td {
  padding-left: 37px;
  padding-right: 37px;
}

tr.pi-37px > td {
  padding: 37px !important;
}

tr.pti-37px > td {
  padding-top: 37px !important;
}

tr.pbi-37px > td {
  padding-bottom: 37px !important;
}

tr.pli-37px > td {
  padding-left: 37px !important;
}

tr.pri-37px > td {
  padding-right: 37px !important;
}

tr.pyi-37px > td {
  padding-top: 37px !important;
  padding-bottom: 37px !important;
}

tr.pxi-37px > td {
  padding-left: 37px !important;
  padding-right: 37px !important;
}

tr.pxi-37px > td {
  padding-left: 37px !important;
  padding-right: 37px !important;
}

.m-38px {
  margin: 38px;
}

.mt-38px {
  margin-top: 38px;
}

.mb-38px {
  margin-bottom: 38px;
}

.ml-38px {
  margin-left: 38px;
}

.mr-38px {
  margin-right: 38px;
}

.mt--38px {
  margin-top: -38px;
}

.mb--38px {
  margin-bottom: -38px;
}

.ml--38px {
  margin-left: -38px;
}

.mr--38px {
  margin-right: -38px;
}

.my-38px {
  margin-top: 38px;
  margin-bottom: 38px;
}

.mx-38px {
  margin-left: 38px;
  margin-right: 38px;
}

.mi-38px {
  margin: 38px !important;
}

.mti-38px {
  margin-top: 38px !important;
}

.mbi-38px {
  margin-bottom: 38px !important;
}

.mli-38px {
  margin-left: 38px !important;
}

.mri-38px {
  margin-right: 38px !important;
}

.mti--38px {
  margin-top: -38px !important;
}

.mbi--38px {
  margin-bottom: -38px !important;
}

.mli--38px {
  margin-left: -38px !important;
}

.mri--38px {
  margin-right: -38px !important;
}

.myi-38px {
  margin-top: 38px !important;
  margin-bottom: 38px !important;
}

.mxi-38px {
  margin-left: 38px !important;
  margin-right: 38px !important;
}

.p-38px {
  padding: 38px;
}

.pt-38px {
  padding-top: 38px;
}

.pb-38px {
  padding-bottom: 38px;
}

.pl-38px {
  padding-left: 38px;
}

.pr-38px {
  padding-right: 38px;
}

.py-38px {
  padding-top: 38px;
  padding-bottom: 38px;
}

.px-38px {
  padding-left: 38px;
  padding-right: 38px;
}

.pi-38px {
  padding: 38px !important;
}

.pti-38px {
  padding-top: 38px !important;
}

.pbi-38px {
  padding-bottom: 38px !important;
}

.pli-38px {
  padding-left: 38px !important;
}

.pri-38px {
  padding-right: 38px !important;
}

.pyi-38px {
  padding-top: 38px !important;
  padding-bottom: 38px !important;
}

.pxi-38px {
  padding-left: 38px !important;
  padding-right: 38px !important;
}

tr.p-38px > td {
  padding: 38px;
}

tr.pt-38px > td {
  padding-top: 38px;
}

tr.pb-38px > td {
  padding-bottom: 38px;
}

tr.pl-38px > td {
  padding-left: 38px;
}

tr.pr-38px > td {
  padding-right: 38px;
}

tr.py-38px > td {
  padding-top: 38px;
  padding-bottom: 38px;
}

tr.px-38px > td {
  padding-left: 38px;
  padding-right: 38px;
}

tr.pi-38px > td {
  padding: 38px !important;
}

tr.pti-38px > td {
  padding-top: 38px !important;
}

tr.pbi-38px > td {
  padding-bottom: 38px !important;
}

tr.pli-38px > td {
  padding-left: 38px !important;
}

tr.pri-38px > td {
  padding-right: 38px !important;
}

tr.pyi-38px > td {
  padding-top: 38px !important;
  padding-bottom: 38px !important;
}

tr.pxi-38px > td {
  padding-left: 38px !important;
  padding-right: 38px !important;
}

tr.pxi-38px > td {
  padding-left: 38px !important;
  padding-right: 38px !important;
}

.m-39px {
  margin: 39px;
}

.mt-39px {
  margin-top: 39px;
}

.mb-39px {
  margin-bottom: 39px;
}

.ml-39px {
  margin-left: 39px;
}

.mr-39px {
  margin-right: 39px;
}

.mt--39px {
  margin-top: -39px;
}

.mb--39px {
  margin-bottom: -39px;
}

.ml--39px {
  margin-left: -39px;
}

.mr--39px {
  margin-right: -39px;
}

.my-39px {
  margin-top: 39px;
  margin-bottom: 39px;
}

.mx-39px {
  margin-left: 39px;
  margin-right: 39px;
}

.mi-39px {
  margin: 39px !important;
}

.mti-39px {
  margin-top: 39px !important;
}

.mbi-39px {
  margin-bottom: 39px !important;
}

.mli-39px {
  margin-left: 39px !important;
}

.mri-39px {
  margin-right: 39px !important;
}

.mti--39px {
  margin-top: -39px !important;
}

.mbi--39px {
  margin-bottom: -39px !important;
}

.mli--39px {
  margin-left: -39px !important;
}

.mri--39px {
  margin-right: -39px !important;
}

.myi-39px {
  margin-top: 39px !important;
  margin-bottom: 39px !important;
}

.mxi-39px {
  margin-left: 39px !important;
  margin-right: 39px !important;
}

.p-39px {
  padding: 39px;
}

.pt-39px {
  padding-top: 39px;
}

.pb-39px {
  padding-bottom: 39px;
}

.pl-39px {
  padding-left: 39px;
}

.pr-39px {
  padding-right: 39px;
}

.py-39px {
  padding-top: 39px;
  padding-bottom: 39px;
}

.px-39px {
  padding-left: 39px;
  padding-right: 39px;
}

.pi-39px {
  padding: 39px !important;
}

.pti-39px {
  padding-top: 39px !important;
}

.pbi-39px {
  padding-bottom: 39px !important;
}

.pli-39px {
  padding-left: 39px !important;
}

.pri-39px {
  padding-right: 39px !important;
}

.pyi-39px {
  padding-top: 39px !important;
  padding-bottom: 39px !important;
}

.pxi-39px {
  padding-left: 39px !important;
  padding-right: 39px !important;
}

tr.p-39px > td {
  padding: 39px;
}

tr.pt-39px > td {
  padding-top: 39px;
}

tr.pb-39px > td {
  padding-bottom: 39px;
}

tr.pl-39px > td {
  padding-left: 39px;
}

tr.pr-39px > td {
  padding-right: 39px;
}

tr.py-39px > td {
  padding-top: 39px;
  padding-bottom: 39px;
}

tr.px-39px > td {
  padding-left: 39px;
  padding-right: 39px;
}

tr.pi-39px > td {
  padding: 39px !important;
}

tr.pti-39px > td {
  padding-top: 39px !important;
}

tr.pbi-39px > td {
  padding-bottom: 39px !important;
}

tr.pli-39px > td {
  padding-left: 39px !important;
}

tr.pri-39px > td {
  padding-right: 39px !important;
}

tr.pyi-39px > td {
  padding-top: 39px !important;
  padding-bottom: 39px !important;
}

tr.pxi-39px > td {
  padding-left: 39px !important;
  padding-right: 39px !important;
}

tr.pxi-39px > td {
  padding-left: 39px !important;
  padding-right: 39px !important;
}

.m-40px {
  margin: 40px;
}

.mt-40px {
  margin-top: 40px;
}

.mb-40px {
  margin-bottom: 40px;
}

.ml-40px {
  margin-left: 40px;
}

.mr-40px {
  margin-right: 40px;
}

.mt--40px {
  margin-top: -40px;
}

.mb--40px {
  margin-bottom: -40px;
}

.ml--40px {
  margin-left: -40px;
}

.mr--40px {
  margin-right: -40px;
}

.my-40px {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mx-40px {
  margin-left: 40px;
  margin-right: 40px;
}

.mi-40px {
  margin: 40px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-40px {
  padding: 40px;
}

.pt-40px {
  padding-top: 40px;
}

.pb-40px {
  padding-bottom: 40px;
}

.pl-40px {
  padding-left: 40px;
}

.pr-40px {
  padding-right: 40px;
}

.py-40px {
  padding-top: 40px;
  padding-bottom: 40px;
}

.px-40px {
  padding-left: 40px;
  padding-right: 40px;
}

.pi-40px {
  padding: 40px !important;
}

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

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

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

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

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

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

tr.p-40px > td {
  padding: 40px;
}

tr.pt-40px > td {
  padding-top: 40px;
}

tr.pb-40px > td {
  padding-bottom: 40px;
}

tr.pl-40px > td {
  padding-left: 40px;
}

tr.pr-40px > td {
  padding-right: 40px;
}

tr.py-40px > td {
  padding-top: 40px;
  padding-bottom: 40px;
}

tr.px-40px > td {
  padding-left: 40px;
  padding-right: 40px;
}

tr.pi-40px > td {
  padding: 40px !important;
}

tr.pti-40px > td {
  padding-top: 40px !important;
}

tr.pbi-40px > td {
  padding-bottom: 40px !important;
}

tr.pli-40px > td {
  padding-left: 40px !important;
}

tr.pri-40px > td {
  padding-right: 40px !important;
}

tr.pyi-40px > td {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

tr.pxi-40px > td {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

tr.pxi-40px > td {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.m-41px {
  margin: 41px;
}

.mt-41px {
  margin-top: 41px;
}

.mb-41px {
  margin-bottom: 41px;
}

.ml-41px {
  margin-left: 41px;
}

.mr-41px {
  margin-right: 41px;
}

.mt--41px {
  margin-top: -41px;
}

.mb--41px {
  margin-bottom: -41px;
}

.ml--41px {
  margin-left: -41px;
}

.mr--41px {
  margin-right: -41px;
}

.my-41px {
  margin-top: 41px;
  margin-bottom: 41px;
}

.mx-41px {
  margin-left: 41px;
  margin-right: 41px;
}

.mi-41px {
  margin: 41px !important;
}

.mti-41px {
  margin-top: 41px !important;
}

.mbi-41px {
  margin-bottom: 41px !important;
}

.mli-41px {
  margin-left: 41px !important;
}

.mri-41px {
  margin-right: 41px !important;
}

.mti--41px {
  margin-top: -41px !important;
}

.mbi--41px {
  margin-bottom: -41px !important;
}

.mli--41px {
  margin-left: -41px !important;
}

.mri--41px {
  margin-right: -41px !important;
}

.myi-41px {
  margin-top: 41px !important;
  margin-bottom: 41px !important;
}

.mxi-41px {
  margin-left: 41px !important;
  margin-right: 41px !important;
}

.p-41px {
  padding: 41px;
}

.pt-41px {
  padding-top: 41px;
}

.pb-41px {
  padding-bottom: 41px;
}

.pl-41px {
  padding-left: 41px;
}

.pr-41px {
  padding-right: 41px;
}

.py-41px {
  padding-top: 41px;
  padding-bottom: 41px;
}

.px-41px {
  padding-left: 41px;
  padding-right: 41px;
}

.pi-41px {
  padding: 41px !important;
}

.pti-41px {
  padding-top: 41px !important;
}

.pbi-41px {
  padding-bottom: 41px !important;
}

.pli-41px {
  padding-left: 41px !important;
}

.pri-41px {
  padding-right: 41px !important;
}

.pyi-41px {
  padding-top: 41px !important;
  padding-bottom: 41px !important;
}

.pxi-41px {
  padding-left: 41px !important;
  padding-right: 41px !important;
}

tr.p-41px > td {
  padding: 41px;
}

tr.pt-41px > td {
  padding-top: 41px;
}

tr.pb-41px > td {
  padding-bottom: 41px;
}

tr.pl-41px > td {
  padding-left: 41px;
}

tr.pr-41px > td {
  padding-right: 41px;
}

tr.py-41px > td {
  padding-top: 41px;
  padding-bottom: 41px;
}

tr.px-41px > td {
  padding-left: 41px;
  padding-right: 41px;
}

tr.pi-41px > td {
  padding: 41px !important;
}

tr.pti-41px > td {
  padding-top: 41px !important;
}

tr.pbi-41px > td {
  padding-bottom: 41px !important;
}

tr.pli-41px > td {
  padding-left: 41px !important;
}

tr.pri-41px > td {
  padding-right: 41px !important;
}

tr.pyi-41px > td {
  padding-top: 41px !important;
  padding-bottom: 41px !important;
}

tr.pxi-41px > td {
  padding-left: 41px !important;
  padding-right: 41px !important;
}

tr.pxi-41px > td {
  padding-left: 41px !important;
  padding-right: 41px !important;
}

.m-42px {
  margin: 42px;
}

.mt-42px {
  margin-top: 42px;
}

.mb-42px {
  margin-bottom: 42px;
}

.ml-42px {
  margin-left: 42px;
}

.mr-42px {
  margin-right: 42px;
}

.mt--42px {
  margin-top: -42px;
}

.mb--42px {
  margin-bottom: -42px;
}

.ml--42px {
  margin-left: -42px;
}

.mr--42px {
  margin-right: -42px;
}

.my-42px {
  margin-top: 42px;
  margin-bottom: 42px;
}

.mx-42px {
  margin-left: 42px;
  margin-right: 42px;
}

.mi-42px {
  margin: 42px !important;
}

.mti-42px {
  margin-top: 42px !important;
}

.mbi-42px {
  margin-bottom: 42px !important;
}

.mli-42px {
  margin-left: 42px !important;
}

.mri-42px {
  margin-right: 42px !important;
}

.mti--42px {
  margin-top: -42px !important;
}

.mbi--42px {
  margin-bottom: -42px !important;
}

.mli--42px {
  margin-left: -42px !important;
}

.mri--42px {
  margin-right: -42px !important;
}

.myi-42px {
  margin-top: 42px !important;
  margin-bottom: 42px !important;
}

.mxi-42px {
  margin-left: 42px !important;
  margin-right: 42px !important;
}

.p-42px {
  padding: 42px;
}

.pt-42px {
  padding-top: 42px;
}

.pb-42px {
  padding-bottom: 42px;
}

.pl-42px {
  padding-left: 42px;
}

.pr-42px {
  padding-right: 42px;
}

.py-42px {
  padding-top: 42px;
  padding-bottom: 42px;
}

.px-42px {
  padding-left: 42px;
  padding-right: 42px;
}

.pi-42px {
  padding: 42px !important;
}

.pti-42px {
  padding-top: 42px !important;
}

.pbi-42px {
  padding-bottom: 42px !important;
}

.pli-42px {
  padding-left: 42px !important;
}

.pri-42px {
  padding-right: 42px !important;
}

.pyi-42px {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}

.pxi-42px {
  padding-left: 42px !important;
  padding-right: 42px !important;
}

tr.p-42px > td {
  padding: 42px;
}

tr.pt-42px > td {
  padding-top: 42px;
}

tr.pb-42px > td {
  padding-bottom: 42px;
}

tr.pl-42px > td {
  padding-left: 42px;
}

tr.pr-42px > td {
  padding-right: 42px;
}

tr.py-42px > td {
  padding-top: 42px;
  padding-bottom: 42px;
}

tr.px-42px > td {
  padding-left: 42px;
  padding-right: 42px;
}

tr.pi-42px > td {
  padding: 42px !important;
}

tr.pti-42px > td {
  padding-top: 42px !important;
}

tr.pbi-42px > td {
  padding-bottom: 42px !important;
}

tr.pli-42px > td {
  padding-left: 42px !important;
}

tr.pri-42px > td {
  padding-right: 42px !important;
}

tr.pyi-42px > td {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}

tr.pxi-42px > td {
  padding-left: 42px !important;
  padding-right: 42px !important;
}

tr.pxi-42px > td {
  padding-left: 42px !important;
  padding-right: 42px !important;
}

.m-43px {
  margin: 43px;
}

.mt-43px {
  margin-top: 43px;
}

.mb-43px {
  margin-bottom: 43px;
}

.ml-43px {
  margin-left: 43px;
}

.mr-43px {
  margin-right: 43px;
}

.mt--43px {
  margin-top: -43px;
}

.mb--43px {
  margin-bottom: -43px;
}

.ml--43px {
  margin-left: -43px;
}

.mr--43px {
  margin-right: -43px;
}

.my-43px {
  margin-top: 43px;
  margin-bottom: 43px;
}

.mx-43px {
  margin-left: 43px;
  margin-right: 43px;
}

.mi-43px {
  margin: 43px !important;
}

.mti-43px {
  margin-top: 43px !important;
}

.mbi-43px {
  margin-bottom: 43px !important;
}

.mli-43px {
  margin-left: 43px !important;
}

.mri-43px {
  margin-right: 43px !important;
}

.mti--43px {
  margin-top: -43px !important;
}

.mbi--43px {
  margin-bottom: -43px !important;
}

.mli--43px {
  margin-left: -43px !important;
}

.mri--43px {
  margin-right: -43px !important;
}

.myi-43px {
  margin-top: 43px !important;
  margin-bottom: 43px !important;
}

.mxi-43px {
  margin-left: 43px !important;
  margin-right: 43px !important;
}

.p-43px {
  padding: 43px;
}

.pt-43px {
  padding-top: 43px;
}

.pb-43px {
  padding-bottom: 43px;
}

.pl-43px {
  padding-left: 43px;
}

.pr-43px {
  padding-right: 43px;
}

.py-43px {
  padding-top: 43px;
  padding-bottom: 43px;
}

.px-43px {
  padding-left: 43px;
  padding-right: 43px;
}

.pi-43px {
  padding: 43px !important;
}

.pti-43px {
  padding-top: 43px !important;
}

.pbi-43px {
  padding-bottom: 43px !important;
}

.pli-43px {
  padding-left: 43px !important;
}

.pri-43px {
  padding-right: 43px !important;
}

.pyi-43px {
  padding-top: 43px !important;
  padding-bottom: 43px !important;
}

.pxi-43px {
  padding-left: 43px !important;
  padding-right: 43px !important;
}

tr.p-43px > td {
  padding: 43px;
}

tr.pt-43px > td {
  padding-top: 43px;
}

tr.pb-43px > td {
  padding-bottom: 43px;
}

tr.pl-43px > td {
  padding-left: 43px;
}

tr.pr-43px > td {
  padding-right: 43px;
}

tr.py-43px > td {
  padding-top: 43px;
  padding-bottom: 43px;
}

tr.px-43px > td {
  padding-left: 43px;
  padding-right: 43px;
}

tr.pi-43px > td {
  padding: 43px !important;
}

tr.pti-43px > td {
  padding-top: 43px !important;
}

tr.pbi-43px > td {
  padding-bottom: 43px !important;
}

tr.pli-43px > td {
  padding-left: 43px !important;
}

tr.pri-43px > td {
  padding-right: 43px !important;
}

tr.pyi-43px > td {
  padding-top: 43px !important;
  padding-bottom: 43px !important;
}

tr.pxi-43px > td {
  padding-left: 43px !important;
  padding-right: 43px !important;
}

tr.pxi-43px > td {
  padding-left: 43px !important;
  padding-right: 43px !important;
}

.m-44px {
  margin: 44px;
}

.mt-44px {
  margin-top: 44px;
}

.mb-44px {
  margin-bottom: 44px;
}

.ml-44px {
  margin-left: 44px;
}

.mr-44px {
  margin-right: 44px;
}

.mt--44px {
  margin-top: -44px;
}

.mb--44px {
  margin-bottom: -44px;
}

.ml--44px {
  margin-left: -44px;
}

.mr--44px {
  margin-right: -44px;
}

.my-44px {
  margin-top: 44px;
  margin-bottom: 44px;
}

.mx-44px {
  margin-left: 44px;
  margin-right: 44px;
}

.mi-44px {
  margin: 44px !important;
}

.mti-44px {
  margin-top: 44px !important;
}

.mbi-44px {
  margin-bottom: 44px !important;
}

.mli-44px {
  margin-left: 44px !important;
}

.mri-44px {
  margin-right: 44px !important;
}

.mti--44px {
  margin-top: -44px !important;
}

.mbi--44px {
  margin-bottom: -44px !important;
}

.mli--44px {
  margin-left: -44px !important;
}

.mri--44px {
  margin-right: -44px !important;
}

.myi-44px {
  margin-top: 44px !important;
  margin-bottom: 44px !important;
}

.mxi-44px {
  margin-left: 44px !important;
  margin-right: 44px !important;
}

.p-44px {
  padding: 44px;
}

.pt-44px {
  padding-top: 44px;
}

.pb-44px {
  padding-bottom: 44px;
}

.pl-44px {
  padding-left: 44px;
}

.pr-44px {
  padding-right: 44px;
}

.py-44px {
  padding-top: 44px;
  padding-bottom: 44px;
}

.px-44px {
  padding-left: 44px;
  padding-right: 44px;
}

.pi-44px {
  padding: 44px !important;
}

.pti-44px {
  padding-top: 44px !important;
}

.pbi-44px {
  padding-bottom: 44px !important;
}

.pli-44px {
  padding-left: 44px !important;
}

.pri-44px {
  padding-right: 44px !important;
}

.pyi-44px {
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}

.pxi-44px {
  padding-left: 44px !important;
  padding-right: 44px !important;
}

tr.p-44px > td {
  padding: 44px;
}

tr.pt-44px > td {
  padding-top: 44px;
}

tr.pb-44px > td {
  padding-bottom: 44px;
}

tr.pl-44px > td {
  padding-left: 44px;
}

tr.pr-44px > td {
  padding-right: 44px;
}

tr.py-44px > td {
  padding-top: 44px;
  padding-bottom: 44px;
}

tr.px-44px > td {
  padding-left: 44px;
  padding-right: 44px;
}

tr.pi-44px > td {
  padding: 44px !important;
}

tr.pti-44px > td {
  padding-top: 44px !important;
}

tr.pbi-44px > td {
  padding-bottom: 44px !important;
}

tr.pli-44px > td {
  padding-left: 44px !important;
}

tr.pri-44px > td {
  padding-right: 44px !important;
}

tr.pyi-44px > td {
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}

tr.pxi-44px > td {
  padding-left: 44px !important;
  padding-right: 44px !important;
}

tr.pxi-44px > td {
  padding-left: 44px !important;
  padding-right: 44px !important;
}

.m-45px {
  margin: 45px;
}

.mt-45px {
  margin-top: 45px;
}

.mb-45px {
  margin-bottom: 45px;
}

.ml-45px {
  margin-left: 45px;
}

.mr-45px {
  margin-right: 45px;
}

.mt--45px {
  margin-top: -45px;
}

.mb--45px {
  margin-bottom: -45px;
}

.ml--45px {
  margin-left: -45px;
}

.mr--45px {
  margin-right: -45px;
}

.my-45px {
  margin-top: 45px;
  margin-bottom: 45px;
}

.mx-45px {
  margin-left: 45px;
  margin-right: 45px;
}

.mi-45px {
  margin: 45px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-45px {
  padding: 45px;
}

.pt-45px {
  padding-top: 45px;
}

.pb-45px {
  padding-bottom: 45px;
}

.pl-45px {
  padding-left: 45px;
}

.pr-45px {
  padding-right: 45px;
}

.py-45px {
  padding-top: 45px;
  padding-bottom: 45px;
}

.px-45px {
  padding-left: 45px;
  padding-right: 45px;
}

.pi-45px {
  padding: 45px !important;
}

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

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

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

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

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

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

tr.p-45px > td {
  padding: 45px;
}

tr.pt-45px > td {
  padding-top: 45px;
}

tr.pb-45px > td {
  padding-bottom: 45px;
}

tr.pl-45px > td {
  padding-left: 45px;
}

tr.pr-45px > td {
  padding-right: 45px;
}

tr.py-45px > td {
  padding-top: 45px;
  padding-bottom: 45px;
}

tr.px-45px > td {
  padding-left: 45px;
  padding-right: 45px;
}

tr.pi-45px > td {
  padding: 45px !important;
}

tr.pti-45px > td {
  padding-top: 45px !important;
}

tr.pbi-45px > td {
  padding-bottom: 45px !important;
}

tr.pli-45px > td {
  padding-left: 45px !important;
}

tr.pri-45px > td {
  padding-right: 45px !important;
}

tr.pyi-45px > td {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

tr.pxi-45px > td {
  padding-left: 45px !important;
  padding-right: 45px !important;
}

tr.pxi-45px > td {
  padding-left: 45px !important;
  padding-right: 45px !important;
}

.m-46px {
  margin: 46px;
}

.mt-46px {
  margin-top: 46px;
}

.mb-46px {
  margin-bottom: 46px;
}

.ml-46px {
  margin-left: 46px;
}

.mr-46px {
  margin-right: 46px;
}

.mt--46px {
  margin-top: -46px;
}

.mb--46px {
  margin-bottom: -46px;
}

.ml--46px {
  margin-left: -46px;
}

.mr--46px {
  margin-right: -46px;
}

.my-46px {
  margin-top: 46px;
  margin-bottom: 46px;
}

.mx-46px {
  margin-left: 46px;
  margin-right: 46px;
}

.mi-46px {
  margin: 46px !important;
}

.mti-46px {
  margin-top: 46px !important;
}

.mbi-46px {
  margin-bottom: 46px !important;
}

.mli-46px {
  margin-left: 46px !important;
}

.mri-46px {
  margin-right: 46px !important;
}

.mti--46px {
  margin-top: -46px !important;
}

.mbi--46px {
  margin-bottom: -46px !important;
}

.mli--46px {
  margin-left: -46px !important;
}

.mri--46px {
  margin-right: -46px !important;
}

.myi-46px {
  margin-top: 46px !important;
  margin-bottom: 46px !important;
}

.mxi-46px {
  margin-left: 46px !important;
  margin-right: 46px !important;
}

.p-46px {
  padding: 46px;
}

.pt-46px {
  padding-top: 46px;
}

.pb-46px {
  padding-bottom: 46px;
}

.pl-46px {
  padding-left: 46px;
}

.pr-46px {
  padding-right: 46px;
}

.py-46px {
  padding-top: 46px;
  padding-bottom: 46px;
}

.px-46px {
  padding-left: 46px;
  padding-right: 46px;
}

.pi-46px {
  padding: 46px !important;
}

.pti-46px {
  padding-top: 46px !important;
}

.pbi-46px {
  padding-bottom: 46px !important;
}

.pli-46px {
  padding-left: 46px !important;
}

.pri-46px {
  padding-right: 46px !important;
}

.pyi-46px {
  padding-top: 46px !important;
  padding-bottom: 46px !important;
}

.pxi-46px {
  padding-left: 46px !important;
  padding-right: 46px !important;
}

tr.p-46px > td {
  padding: 46px;
}

tr.pt-46px > td {
  padding-top: 46px;
}

tr.pb-46px > td {
  padding-bottom: 46px;
}

tr.pl-46px > td {
  padding-left: 46px;
}

tr.pr-46px > td {
  padding-right: 46px;
}

tr.py-46px > td {
  padding-top: 46px;
  padding-bottom: 46px;
}

tr.px-46px > td {
  padding-left: 46px;
  padding-right: 46px;
}

tr.pi-46px > td {
  padding: 46px !important;
}

tr.pti-46px > td {
  padding-top: 46px !important;
}

tr.pbi-46px > td {
  padding-bottom: 46px !important;
}

tr.pli-46px > td {
  padding-left: 46px !important;
}

tr.pri-46px > td {
  padding-right: 46px !important;
}

tr.pyi-46px > td {
  padding-top: 46px !important;
  padding-bottom: 46px !important;
}

tr.pxi-46px > td {
  padding-left: 46px !important;
  padding-right: 46px !important;
}

tr.pxi-46px > td {
  padding-left: 46px !important;
  padding-right: 46px !important;
}

.m-47px {
  margin: 47px;
}

.mt-47px {
  margin-top: 47px;
}

.mb-47px {
  margin-bottom: 47px;
}

.ml-47px {
  margin-left: 47px;
}

.mr-47px {
  margin-right: 47px;
}

.mt--47px {
  margin-top: -47px;
}

.mb--47px {
  margin-bottom: -47px;
}

.ml--47px {
  margin-left: -47px;
}

.mr--47px {
  margin-right: -47px;
}

.my-47px {
  margin-top: 47px;
  margin-bottom: 47px;
}

.mx-47px {
  margin-left: 47px;
  margin-right: 47px;
}

.mi-47px {
  margin: 47px !important;
}

.mti-47px {
  margin-top: 47px !important;
}

.mbi-47px {
  margin-bottom: 47px !important;
}

.mli-47px {
  margin-left: 47px !important;
}

.mri-47px {
  margin-right: 47px !important;
}

.mti--47px {
  margin-top: -47px !important;
}

.mbi--47px {
  margin-bottom: -47px !important;
}

.mli--47px {
  margin-left: -47px !important;
}

.mri--47px {
  margin-right: -47px !important;
}

.myi-47px {
  margin-top: 47px !important;
  margin-bottom: 47px !important;
}

.mxi-47px {
  margin-left: 47px !important;
  margin-right: 47px !important;
}

.p-47px {
  padding: 47px;
}

.pt-47px {
  padding-top: 47px;
}

.pb-47px {
  padding-bottom: 47px;
}

.pl-47px {
  padding-left: 47px;
}

.pr-47px {
  padding-right: 47px;
}

.py-47px {
  padding-top: 47px;
  padding-bottom: 47px;
}

.px-47px {
  padding-left: 47px;
  padding-right: 47px;
}

.pi-47px {
  padding: 47px !important;
}

.pti-47px {
  padding-top: 47px !important;
}

.pbi-47px {
  padding-bottom: 47px !important;
}

.pli-47px {
  padding-left: 47px !important;
}

.pri-47px {
  padding-right: 47px !important;
}

.pyi-47px {
  padding-top: 47px !important;
  padding-bottom: 47px !important;
}

.pxi-47px {
  padding-left: 47px !important;
  padding-right: 47px !important;
}

tr.p-47px > td {
  padding: 47px;
}

tr.pt-47px > td {
  padding-top: 47px;
}

tr.pb-47px > td {
  padding-bottom: 47px;
}

tr.pl-47px > td {
  padding-left: 47px;
}

tr.pr-47px > td {
  padding-right: 47px;
}

tr.py-47px > td {
  padding-top: 47px;
  padding-bottom: 47px;
}

tr.px-47px > td {
  padding-left: 47px;
  padding-right: 47px;
}

tr.pi-47px > td {
  padding: 47px !important;
}

tr.pti-47px > td {
  padding-top: 47px !important;
}

tr.pbi-47px > td {
  padding-bottom: 47px !important;
}

tr.pli-47px > td {
  padding-left: 47px !important;
}

tr.pri-47px > td {
  padding-right: 47px !important;
}

tr.pyi-47px > td {
  padding-top: 47px !important;
  padding-bottom: 47px !important;
}

tr.pxi-47px > td {
  padding-left: 47px !important;
  padding-right: 47px !important;
}

tr.pxi-47px > td {
  padding-left: 47px !important;
  padding-right: 47px !important;
}

.m-48px {
  margin: 48px;
}

.mt-48px {
  margin-top: 48px;
}

.mb-48px {
  margin-bottom: 48px;
}

.ml-48px {
  margin-left: 48px;
}

.mr-48px {
  margin-right: 48px;
}

.mt--48px {
  margin-top: -48px;
}

.mb--48px {
  margin-bottom: -48px;
}

.ml--48px {
  margin-left: -48px;
}

.mr--48px {
  margin-right: -48px;
}

.my-48px {
  margin-top: 48px;
  margin-bottom: 48px;
}

.mx-48px {
  margin-left: 48px;
  margin-right: 48px;
}

.mi-48px {
  margin: 48px !important;
}

.mti-48px {
  margin-top: 48px !important;
}

.mbi-48px {
  margin-bottom: 48px !important;
}

.mli-48px {
  margin-left: 48px !important;
}

.mri-48px {
  margin-right: 48px !important;
}

.mti--48px {
  margin-top: -48px !important;
}

.mbi--48px {
  margin-bottom: -48px !important;
}

.mli--48px {
  margin-left: -48px !important;
}

.mri--48px {
  margin-right: -48px !important;
}

.myi-48px {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.mxi-48px {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.p-48px {
  padding: 48px;
}

.pt-48px {
  padding-top: 48px;
}

.pb-48px {
  padding-bottom: 48px;
}

.pl-48px {
  padding-left: 48px;
}

.pr-48px {
  padding-right: 48px;
}

.py-48px {
  padding-top: 48px;
  padding-bottom: 48px;
}

.px-48px {
  padding-left: 48px;
  padding-right: 48px;
}

.pi-48px {
  padding: 48px !important;
}

.pti-48px {
  padding-top: 48px !important;
}

.pbi-48px {
  padding-bottom: 48px !important;
}

.pli-48px {
  padding-left: 48px !important;
}

.pri-48px {
  padding-right: 48px !important;
}

.pyi-48px {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.pxi-48px {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

tr.p-48px > td {
  padding: 48px;
}

tr.pt-48px > td {
  padding-top: 48px;
}

tr.pb-48px > td {
  padding-bottom: 48px;
}

tr.pl-48px > td {
  padding-left: 48px;
}

tr.pr-48px > td {
  padding-right: 48px;
}

tr.py-48px > td {
  padding-top: 48px;
  padding-bottom: 48px;
}

tr.px-48px > td {
  padding-left: 48px;
  padding-right: 48px;
}

tr.pi-48px > td {
  padding: 48px !important;
}

tr.pti-48px > td {
  padding-top: 48px !important;
}

tr.pbi-48px > td {
  padding-bottom: 48px !important;
}

tr.pli-48px > td {
  padding-left: 48px !important;
}

tr.pri-48px > td {
  padding-right: 48px !important;
}

tr.pyi-48px > td {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

tr.pxi-48px > td {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

tr.pxi-48px > td {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.m-49px {
  margin: 49px;
}

.mt-49px {
  margin-top: 49px;
}

.mb-49px {
  margin-bottom: 49px;
}

.ml-49px {
  margin-left: 49px;
}

.mr-49px {
  margin-right: 49px;
}

.mt--49px {
  margin-top: -49px;
}

.mb--49px {
  margin-bottom: -49px;
}

.ml--49px {
  margin-left: -49px;
}

.mr--49px {
  margin-right: -49px;
}

.my-49px {
  margin-top: 49px;
  margin-bottom: 49px;
}

.mx-49px {
  margin-left: 49px;
  margin-right: 49px;
}

.mi-49px {
  margin: 49px !important;
}

.mti-49px {
  margin-top: 49px !important;
}

.mbi-49px {
  margin-bottom: 49px !important;
}

.mli-49px {
  margin-left: 49px !important;
}

.mri-49px {
  margin-right: 49px !important;
}

.mti--49px {
  margin-top: -49px !important;
}

.mbi--49px {
  margin-bottom: -49px !important;
}

.mli--49px {
  margin-left: -49px !important;
}

.mri--49px {
  margin-right: -49px !important;
}

.myi-49px {
  margin-top: 49px !important;
  margin-bottom: 49px !important;
}

.mxi-49px {
  margin-left: 49px !important;
  margin-right: 49px !important;
}

.p-49px {
  padding: 49px;
}

.pt-49px {
  padding-top: 49px;
}

.pb-49px {
  padding-bottom: 49px;
}

.pl-49px {
  padding-left: 49px;
}

.pr-49px {
  padding-right: 49px;
}

.py-49px {
  padding-top: 49px;
  padding-bottom: 49px;
}

.px-49px {
  padding-left: 49px;
  padding-right: 49px;
}

.pi-49px {
  padding: 49px !important;
}

.pti-49px {
  padding-top: 49px !important;
}

.pbi-49px {
  padding-bottom: 49px !important;
}

.pli-49px {
  padding-left: 49px !important;
}

.pri-49px {
  padding-right: 49px !important;
}

.pyi-49px {
  padding-top: 49px !important;
  padding-bottom: 49px !important;
}

.pxi-49px {
  padding-left: 49px !important;
  padding-right: 49px !important;
}

tr.p-49px > td {
  padding: 49px;
}

tr.pt-49px > td {
  padding-top: 49px;
}

tr.pb-49px > td {
  padding-bottom: 49px;
}

tr.pl-49px > td {
  padding-left: 49px;
}

tr.pr-49px > td {
  padding-right: 49px;
}

tr.py-49px > td {
  padding-top: 49px;
  padding-bottom: 49px;
}

tr.px-49px > td {
  padding-left: 49px;
  padding-right: 49px;
}

tr.pi-49px > td {
  padding: 49px !important;
}

tr.pti-49px > td {
  padding-top: 49px !important;
}

tr.pbi-49px > td {
  padding-bottom: 49px !important;
}

tr.pli-49px > td {
  padding-left: 49px !important;
}

tr.pri-49px > td {
  padding-right: 49px !important;
}

tr.pyi-49px > td {
  padding-top: 49px !important;
  padding-bottom: 49px !important;
}

tr.pxi-49px > td {
  padding-left: 49px !important;
  padding-right: 49px !important;
}

tr.pxi-49px > td {
  padding-left: 49px !important;
  padding-right: 49px !important;
}

.m-50px {
  margin: 50px;
}

.mt-50px {
  margin-top: 50px;
}

.mb-50px {
  margin-bottom: 50px;
}

.ml-50px {
  margin-left: 50px;
}

.mr-50px {
  margin-right: 50px;
}

.mt--50px {
  margin-top: -50px;
}

.mb--50px {
  margin-bottom: -50px;
}

.ml--50px {
  margin-left: -50px;
}

.mr--50px {
  margin-right: -50px;
}

.my-50px {
  margin-top: 50px;
  margin-bottom: 50px;
}

.mx-50px {
  margin-left: 50px;
  margin-right: 50px;
}

.mi-50px {
  margin: 50px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-50px {
  padding: 50px;
}

.pt-50px {
  padding-top: 50px;
}

.pb-50px {
  padding-bottom: 50px;
}

.pl-50px {
  padding-left: 50px;
}

.pr-50px {
  padding-right: 50px;
}

.py-50px {
  padding-top: 50px;
  padding-bottom: 50px;
}

.px-50px {
  padding-left: 50px;
  padding-right: 50px;
}

.pi-50px {
  padding: 50px !important;
}

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

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

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

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

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

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

tr.p-50px > td {
  padding: 50px;
}

tr.pt-50px > td {
  padding-top: 50px;
}

tr.pb-50px > td {
  padding-bottom: 50px;
}

tr.pl-50px > td {
  padding-left: 50px;
}

tr.pr-50px > td {
  padding-right: 50px;
}

tr.py-50px > td {
  padding-top: 50px;
  padding-bottom: 50px;
}

tr.px-50px > td {
  padding-left: 50px;
  padding-right: 50px;
}

tr.pi-50px > td {
  padding: 50px !important;
}

tr.pti-50px > td {
  padding-top: 50px !important;
}

tr.pbi-50px > td {
  padding-bottom: 50px !important;
}

tr.pli-50px > td {
  padding-left: 50px !important;
}

tr.pri-50px > td {
  padding-right: 50px !important;
}

tr.pyi-50px > td {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

tr.pxi-50px > td {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

tr.pxi-50px > td {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.m-51px {
  margin: 51px;
}

.mt-51px {
  margin-top: 51px;
}

.mb-51px {
  margin-bottom: 51px;
}

.ml-51px {
  margin-left: 51px;
}

.mr-51px {
  margin-right: 51px;
}

.mt--51px {
  margin-top: -51px;
}

.mb--51px {
  margin-bottom: -51px;
}

.ml--51px {
  margin-left: -51px;
}

.mr--51px {
  margin-right: -51px;
}

.my-51px {
  margin-top: 51px;
  margin-bottom: 51px;
}

.mx-51px {
  margin-left: 51px;
  margin-right: 51px;
}

.mi-51px {
  margin: 51px !important;
}

.mti-51px {
  margin-top: 51px !important;
}

.mbi-51px {
  margin-bottom: 51px !important;
}

.mli-51px {
  margin-left: 51px !important;
}

.mri-51px {
  margin-right: 51px !important;
}

.mti--51px {
  margin-top: -51px !important;
}

.mbi--51px {
  margin-bottom: -51px !important;
}

.mli--51px {
  margin-left: -51px !important;
}

.mri--51px {
  margin-right: -51px !important;
}

.myi-51px {
  margin-top: 51px !important;
  margin-bottom: 51px !important;
}

.mxi-51px {
  margin-left: 51px !important;
  margin-right: 51px !important;
}

.p-51px {
  padding: 51px;
}

.pt-51px {
  padding-top: 51px;
}

.pb-51px {
  padding-bottom: 51px;
}

.pl-51px {
  padding-left: 51px;
}

.pr-51px {
  padding-right: 51px;
}

.py-51px {
  padding-top: 51px;
  padding-bottom: 51px;
}

.px-51px {
  padding-left: 51px;
  padding-right: 51px;
}

.pi-51px {
  padding: 51px !important;
}

.pti-51px {
  padding-top: 51px !important;
}

.pbi-51px {
  padding-bottom: 51px !important;
}

.pli-51px {
  padding-left: 51px !important;
}

.pri-51px {
  padding-right: 51px !important;
}

.pyi-51px {
  padding-top: 51px !important;
  padding-bottom: 51px !important;
}

.pxi-51px {
  padding-left: 51px !important;
  padding-right: 51px !important;
}

tr.p-51px > td {
  padding: 51px;
}

tr.pt-51px > td {
  padding-top: 51px;
}

tr.pb-51px > td {
  padding-bottom: 51px;
}

tr.pl-51px > td {
  padding-left: 51px;
}

tr.pr-51px > td {
  padding-right: 51px;
}

tr.py-51px > td {
  padding-top: 51px;
  padding-bottom: 51px;
}

tr.px-51px > td {
  padding-left: 51px;
  padding-right: 51px;
}

tr.pi-51px > td {
  padding: 51px !important;
}

tr.pti-51px > td {
  padding-top: 51px !important;
}

tr.pbi-51px > td {
  padding-bottom: 51px !important;
}

tr.pli-51px > td {
  padding-left: 51px !important;
}

tr.pri-51px > td {
  padding-right: 51px !important;
}

tr.pyi-51px > td {
  padding-top: 51px !important;
  padding-bottom: 51px !important;
}

tr.pxi-51px > td {
  padding-left: 51px !important;
  padding-right: 51px !important;
}

tr.pxi-51px > td {
  padding-left: 51px !important;
  padding-right: 51px !important;
}

.m-52px {
  margin: 52px;
}

.mt-52px {
  margin-top: 52px;
}

.mb-52px {
  margin-bottom: 52px;
}

.ml-52px {
  margin-left: 52px;
}

.mr-52px {
  margin-right: 52px;
}

.mt--52px {
  margin-top: -52px;
}

.mb--52px {
  margin-bottom: -52px;
}

.ml--52px {
  margin-left: -52px;
}

.mr--52px {
  margin-right: -52px;
}

.my-52px {
  margin-top: 52px;
  margin-bottom: 52px;
}

.mx-52px {
  margin-left: 52px;
  margin-right: 52px;
}

.mi-52px {
  margin: 52px !important;
}

.mti-52px {
  margin-top: 52px !important;
}

.mbi-52px {
  margin-bottom: 52px !important;
}

.mli-52px {
  margin-left: 52px !important;
}

.mri-52px {
  margin-right: 52px !important;
}

.mti--52px {
  margin-top: -52px !important;
}

.mbi--52px {
  margin-bottom: -52px !important;
}

.mli--52px {
  margin-left: -52px !important;
}

.mri--52px {
  margin-right: -52px !important;
}

.myi-52px {
  margin-top: 52px !important;
  margin-bottom: 52px !important;
}

.mxi-52px {
  margin-left: 52px !important;
  margin-right: 52px !important;
}

.p-52px {
  padding: 52px;
}

.pt-52px {
  padding-top: 52px;
}

.pb-52px {
  padding-bottom: 52px;
}

.pl-52px {
  padding-left: 52px;
}

.pr-52px {
  padding-right: 52px;
}

.py-52px {
  padding-top: 52px;
  padding-bottom: 52px;
}

.px-52px {
  padding-left: 52px;
  padding-right: 52px;
}

.pi-52px {
  padding: 52px !important;
}

.pti-52px {
  padding-top: 52px !important;
}

.pbi-52px {
  padding-bottom: 52px !important;
}

.pli-52px {
  padding-left: 52px !important;
}

.pri-52px {
  padding-right: 52px !important;
}

.pyi-52px {
  padding-top: 52px !important;
  padding-bottom: 52px !important;
}

.pxi-52px {
  padding-left: 52px !important;
  padding-right: 52px !important;
}

tr.p-52px > td {
  padding: 52px;
}

tr.pt-52px > td {
  padding-top: 52px;
}

tr.pb-52px > td {
  padding-bottom: 52px;
}

tr.pl-52px > td {
  padding-left: 52px;
}

tr.pr-52px > td {
  padding-right: 52px;
}

tr.py-52px > td {
  padding-top: 52px;
  padding-bottom: 52px;
}

tr.px-52px > td {
  padding-left: 52px;
  padding-right: 52px;
}

tr.pi-52px > td {
  padding: 52px !important;
}

tr.pti-52px > td {
  padding-top: 52px !important;
}

tr.pbi-52px > td {
  padding-bottom: 52px !important;
}

tr.pli-52px > td {
  padding-left: 52px !important;
}

tr.pri-52px > td {
  padding-right: 52px !important;
}

tr.pyi-52px > td {
  padding-top: 52px !important;
  padding-bottom: 52px !important;
}

tr.pxi-52px > td {
  padding-left: 52px !important;
  padding-right: 52px !important;
}

tr.pxi-52px > td {
  padding-left: 52px !important;
  padding-right: 52px !important;
}

.m-53px {
  margin: 53px;
}

.mt-53px {
  margin-top: 53px;
}

.mb-53px {
  margin-bottom: 53px;
}

.ml-53px {
  margin-left: 53px;
}

.mr-53px {
  margin-right: 53px;
}

.mt--53px {
  margin-top: -53px;
}

.mb--53px {
  margin-bottom: -53px;
}

.ml--53px {
  margin-left: -53px;
}

.mr--53px {
  margin-right: -53px;
}

.my-53px {
  margin-top: 53px;
  margin-bottom: 53px;
}

.mx-53px {
  margin-left: 53px;
  margin-right: 53px;
}

.mi-53px {
  margin: 53px !important;
}

.mti-53px {
  margin-top: 53px !important;
}

.mbi-53px {
  margin-bottom: 53px !important;
}

.mli-53px {
  margin-left: 53px !important;
}

.mri-53px {
  margin-right: 53px !important;
}

.mti--53px {
  margin-top: -53px !important;
}

.mbi--53px {
  margin-bottom: -53px !important;
}

.mli--53px {
  margin-left: -53px !important;
}

.mri--53px {
  margin-right: -53px !important;
}

.myi-53px {
  margin-top: 53px !important;
  margin-bottom: 53px !important;
}

.mxi-53px {
  margin-left: 53px !important;
  margin-right: 53px !important;
}

.p-53px {
  padding: 53px;
}

.pt-53px {
  padding-top: 53px;
}

.pb-53px {
  padding-bottom: 53px;
}

.pl-53px {
  padding-left: 53px;
}

.pr-53px {
  padding-right: 53px;
}

.py-53px {
  padding-top: 53px;
  padding-bottom: 53px;
}

.px-53px {
  padding-left: 53px;
  padding-right: 53px;
}

.pi-53px {
  padding: 53px !important;
}

.pti-53px {
  padding-top: 53px !important;
}

.pbi-53px {
  padding-bottom: 53px !important;
}

.pli-53px {
  padding-left: 53px !important;
}

.pri-53px {
  padding-right: 53px !important;
}

.pyi-53px {
  padding-top: 53px !important;
  padding-bottom: 53px !important;
}

.pxi-53px {
  padding-left: 53px !important;
  padding-right: 53px !important;
}

tr.p-53px > td {
  padding: 53px;
}

tr.pt-53px > td {
  padding-top: 53px;
}

tr.pb-53px > td {
  padding-bottom: 53px;
}

tr.pl-53px > td {
  padding-left: 53px;
}

tr.pr-53px > td {
  padding-right: 53px;
}

tr.py-53px > td {
  padding-top: 53px;
  padding-bottom: 53px;
}

tr.px-53px > td {
  padding-left: 53px;
  padding-right: 53px;
}

tr.pi-53px > td {
  padding: 53px !important;
}

tr.pti-53px > td {
  padding-top: 53px !important;
}

tr.pbi-53px > td {
  padding-bottom: 53px !important;
}

tr.pli-53px > td {
  padding-left: 53px !important;
}

tr.pri-53px > td {
  padding-right: 53px !important;
}

tr.pyi-53px > td {
  padding-top: 53px !important;
  padding-bottom: 53px !important;
}

tr.pxi-53px > td {
  padding-left: 53px !important;
  padding-right: 53px !important;
}

tr.pxi-53px > td {
  padding-left: 53px !important;
  padding-right: 53px !important;
}

.m-54px {
  margin: 54px;
}

.mt-54px {
  margin-top: 54px;
}

.mb-54px {
  margin-bottom: 54px;
}

.ml-54px {
  margin-left: 54px;
}

.mr-54px {
  margin-right: 54px;
}

.mt--54px {
  margin-top: -54px;
}

.mb--54px {
  margin-bottom: -54px;
}

.ml--54px {
  margin-left: -54px;
}

.mr--54px {
  margin-right: -54px;
}

.my-54px {
  margin-top: 54px;
  margin-bottom: 54px;
}

.mx-54px {
  margin-left: 54px;
  margin-right: 54px;
}

.mi-54px {
  margin: 54px !important;
}

.mti-54px {
  margin-top: 54px !important;
}

.mbi-54px {
  margin-bottom: 54px !important;
}

.mli-54px {
  margin-left: 54px !important;
}

.mri-54px {
  margin-right: 54px !important;
}

.mti--54px {
  margin-top: -54px !important;
}

.mbi--54px {
  margin-bottom: -54px !important;
}

.mli--54px {
  margin-left: -54px !important;
}

.mri--54px {
  margin-right: -54px !important;
}

.myi-54px {
  margin-top: 54px !important;
  margin-bottom: 54px !important;
}

.mxi-54px {
  margin-left: 54px !important;
  margin-right: 54px !important;
}

.p-54px {
  padding: 54px;
}

.pt-54px {
  padding-top: 54px;
}

.pb-54px {
  padding-bottom: 54px;
}

.pl-54px {
  padding-left: 54px;
}

.pr-54px {
  padding-right: 54px;
}

.py-54px {
  padding-top: 54px;
  padding-bottom: 54px;
}

.px-54px {
  padding-left: 54px;
  padding-right: 54px;
}

.pi-54px {
  padding: 54px !important;
}

.pti-54px {
  padding-top: 54px !important;
}

.pbi-54px {
  padding-bottom: 54px !important;
}

.pli-54px {
  padding-left: 54px !important;
}

.pri-54px {
  padding-right: 54px !important;
}

.pyi-54px {
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

.pxi-54px {
  padding-left: 54px !important;
  padding-right: 54px !important;
}

tr.p-54px > td {
  padding: 54px;
}

tr.pt-54px > td {
  padding-top: 54px;
}

tr.pb-54px > td {
  padding-bottom: 54px;
}

tr.pl-54px > td {
  padding-left: 54px;
}

tr.pr-54px > td {
  padding-right: 54px;
}

tr.py-54px > td {
  padding-top: 54px;
  padding-bottom: 54px;
}

tr.px-54px > td {
  padding-left: 54px;
  padding-right: 54px;
}

tr.pi-54px > td {
  padding: 54px !important;
}

tr.pti-54px > td {
  padding-top: 54px !important;
}

tr.pbi-54px > td {
  padding-bottom: 54px !important;
}

tr.pli-54px > td {
  padding-left: 54px !important;
}

tr.pri-54px > td {
  padding-right: 54px !important;
}

tr.pyi-54px > td {
  padding-top: 54px !important;
  padding-bottom: 54px !important;
}

tr.pxi-54px > td {
  padding-left: 54px !important;
  padding-right: 54px !important;
}

tr.pxi-54px > td {
  padding-left: 54px !important;
  padding-right: 54px !important;
}

.m-55px {
  margin: 55px;
}

.mt-55px {
  margin-top: 55px;
}

.mb-55px {
  margin-bottom: 55px;
}

.ml-55px {
  margin-left: 55px;
}

.mr-55px {
  margin-right: 55px;
}

.mt--55px {
  margin-top: -55px;
}

.mb--55px {
  margin-bottom: -55px;
}

.ml--55px {
  margin-left: -55px;
}

.mr--55px {
  margin-right: -55px;
}

.my-55px {
  margin-top: 55px;
  margin-bottom: 55px;
}

.mx-55px {
  margin-left: 55px;
  margin-right: 55px;
}

.mi-55px {
  margin: 55px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-55px {
  padding: 55px;
}

.pt-55px {
  padding-top: 55px;
}

.pb-55px {
  padding-bottom: 55px;
}

.pl-55px {
  padding-left: 55px;
}

.pr-55px {
  padding-right: 55px;
}

.py-55px {
  padding-top: 55px;
  padding-bottom: 55px;
}

.px-55px {
  padding-left: 55px;
  padding-right: 55px;
}

.pi-55px {
  padding: 55px !important;
}

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

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

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

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

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

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

tr.p-55px > td {
  padding: 55px;
}

tr.pt-55px > td {
  padding-top: 55px;
}

tr.pb-55px > td {
  padding-bottom: 55px;
}

tr.pl-55px > td {
  padding-left: 55px;
}

tr.pr-55px > td {
  padding-right: 55px;
}

tr.py-55px > td {
  padding-top: 55px;
  padding-bottom: 55px;
}

tr.px-55px > td {
  padding-left: 55px;
  padding-right: 55px;
}

tr.pi-55px > td {
  padding: 55px !important;
}

tr.pti-55px > td {
  padding-top: 55px !important;
}

tr.pbi-55px > td {
  padding-bottom: 55px !important;
}

tr.pli-55px > td {
  padding-left: 55px !important;
}

tr.pri-55px > td {
  padding-right: 55px !important;
}

tr.pyi-55px > td {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}

tr.pxi-55px > td {
  padding-left: 55px !important;
  padding-right: 55px !important;
}

tr.pxi-55px > td {
  padding-left: 55px !important;
  padding-right: 55px !important;
}

.m-56px {
  margin: 56px;
}

.mt-56px {
  margin-top: 56px;
}

.mb-56px {
  margin-bottom: 56px;
}

.ml-56px {
  margin-left: 56px;
}

.mr-56px {
  margin-right: 56px;
}

.mt--56px {
  margin-top: -56px;
}

.mb--56px {
  margin-bottom: -56px;
}

.ml--56px {
  margin-left: -56px;
}

.mr--56px {
  margin-right: -56px;
}

.my-56px {
  margin-top: 56px;
  margin-bottom: 56px;
}

.mx-56px {
  margin-left: 56px;
  margin-right: 56px;
}

.mi-56px {
  margin: 56px !important;
}

.mti-56px {
  margin-top: 56px !important;
}

.mbi-56px {
  margin-bottom: 56px !important;
}

.mli-56px {
  margin-left: 56px !important;
}

.mri-56px {
  margin-right: 56px !important;
}

.mti--56px {
  margin-top: -56px !important;
}

.mbi--56px {
  margin-bottom: -56px !important;
}

.mli--56px {
  margin-left: -56px !important;
}

.mri--56px {
  margin-right: -56px !important;
}

.myi-56px {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.mxi-56px {
  margin-left: 56px !important;
  margin-right: 56px !important;
}

.p-56px {
  padding: 56px;
}

.pt-56px {
  padding-top: 56px;
}

.pb-56px {
  padding-bottom: 56px;
}

.pl-56px {
  padding-left: 56px;
}

.pr-56px {
  padding-right: 56px;
}

.py-56px {
  padding-top: 56px;
  padding-bottom: 56px;
}

.px-56px {
  padding-left: 56px;
  padding-right: 56px;
}

.pi-56px {
  padding: 56px !important;
}

.pti-56px {
  padding-top: 56px !important;
}

.pbi-56px {
  padding-bottom: 56px !important;
}

.pli-56px {
  padding-left: 56px !important;
}

.pri-56px {
  padding-right: 56px !important;
}

.pyi-56px {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.pxi-56px {
  padding-left: 56px !important;
  padding-right: 56px !important;
}

tr.p-56px > td {
  padding: 56px;
}

tr.pt-56px > td {
  padding-top: 56px;
}

tr.pb-56px > td {
  padding-bottom: 56px;
}

tr.pl-56px > td {
  padding-left: 56px;
}

tr.pr-56px > td {
  padding-right: 56px;
}

tr.py-56px > td {
  padding-top: 56px;
  padding-bottom: 56px;
}

tr.px-56px > td {
  padding-left: 56px;
  padding-right: 56px;
}

tr.pi-56px > td {
  padding: 56px !important;
}

tr.pti-56px > td {
  padding-top: 56px !important;
}

tr.pbi-56px > td {
  padding-bottom: 56px !important;
}

tr.pli-56px > td {
  padding-left: 56px !important;
}

tr.pri-56px > td {
  padding-right: 56px !important;
}

tr.pyi-56px > td {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

tr.pxi-56px > td {
  padding-left: 56px !important;
  padding-right: 56px !important;
}

tr.pxi-56px > td {
  padding-left: 56px !important;
  padding-right: 56px !important;
}

.m-57px {
  margin: 57px;
}

.mt-57px {
  margin-top: 57px;
}

.mb-57px {
  margin-bottom: 57px;
}

.ml-57px {
  margin-left: 57px;
}

.mr-57px {
  margin-right: 57px;
}

.mt--57px {
  margin-top: -57px;
}

.mb--57px {
  margin-bottom: -57px;
}

.ml--57px {
  margin-left: -57px;
}

.mr--57px {
  margin-right: -57px;
}

.my-57px {
  margin-top: 57px;
  margin-bottom: 57px;
}

.mx-57px {
  margin-left: 57px;
  margin-right: 57px;
}

.mi-57px {
  margin: 57px !important;
}

.mti-57px {
  margin-top: 57px !important;
}

.mbi-57px {
  margin-bottom: 57px !important;
}

.mli-57px {
  margin-left: 57px !important;
}

.mri-57px {
  margin-right: 57px !important;
}

.mti--57px {
  margin-top: -57px !important;
}

.mbi--57px {
  margin-bottom: -57px !important;
}

.mli--57px {
  margin-left: -57px !important;
}

.mri--57px {
  margin-right: -57px !important;
}

.myi-57px {
  margin-top: 57px !important;
  margin-bottom: 57px !important;
}

.mxi-57px {
  margin-left: 57px !important;
  margin-right: 57px !important;
}

.p-57px {
  padding: 57px;
}

.pt-57px {
  padding-top: 57px;
}

.pb-57px {
  padding-bottom: 57px;
}

.pl-57px {
  padding-left: 57px;
}

.pr-57px {
  padding-right: 57px;
}

.py-57px {
  padding-top: 57px;
  padding-bottom: 57px;
}

.px-57px {
  padding-left: 57px;
  padding-right: 57px;
}

.pi-57px {
  padding: 57px !important;
}

.pti-57px {
  padding-top: 57px !important;
}

.pbi-57px {
  padding-bottom: 57px !important;
}

.pli-57px {
  padding-left: 57px !important;
}

.pri-57px {
  padding-right: 57px !important;
}

.pyi-57px {
  padding-top: 57px !important;
  padding-bottom: 57px !important;
}

.pxi-57px {
  padding-left: 57px !important;
  padding-right: 57px !important;
}

tr.p-57px > td {
  padding: 57px;
}

tr.pt-57px > td {
  padding-top: 57px;
}

tr.pb-57px > td {
  padding-bottom: 57px;
}

tr.pl-57px > td {
  padding-left: 57px;
}

tr.pr-57px > td {
  padding-right: 57px;
}

tr.py-57px > td {
  padding-top: 57px;
  padding-bottom: 57px;
}

tr.px-57px > td {
  padding-left: 57px;
  padding-right: 57px;
}

tr.pi-57px > td {
  padding: 57px !important;
}

tr.pti-57px > td {
  padding-top: 57px !important;
}

tr.pbi-57px > td {
  padding-bottom: 57px !important;
}

tr.pli-57px > td {
  padding-left: 57px !important;
}

tr.pri-57px > td {
  padding-right: 57px !important;
}

tr.pyi-57px > td {
  padding-top: 57px !important;
  padding-bottom: 57px !important;
}

tr.pxi-57px > td {
  padding-left: 57px !important;
  padding-right: 57px !important;
}

tr.pxi-57px > td {
  padding-left: 57px !important;
  padding-right: 57px !important;
}

.m-58px {
  margin: 58px;
}

.mt-58px {
  margin-top: 58px;
}

.mb-58px {
  margin-bottom: 58px;
}

.ml-58px {
  margin-left: 58px;
}

.mr-58px {
  margin-right: 58px;
}

.mt--58px {
  margin-top: -58px;
}

.mb--58px {
  margin-bottom: -58px;
}

.ml--58px {
  margin-left: -58px;
}

.mr--58px {
  margin-right: -58px;
}

.my-58px {
  margin-top: 58px;
  margin-bottom: 58px;
}

.mx-58px {
  margin-left: 58px;
  margin-right: 58px;
}

.mi-58px {
  margin: 58px !important;
}

.mti-58px {
  margin-top: 58px !important;
}

.mbi-58px {
  margin-bottom: 58px !important;
}

.mli-58px {
  margin-left: 58px !important;
}

.mri-58px {
  margin-right: 58px !important;
}

.mti--58px {
  margin-top: -58px !important;
}

.mbi--58px {
  margin-bottom: -58px !important;
}

.mli--58px {
  margin-left: -58px !important;
}

.mri--58px {
  margin-right: -58px !important;
}

.myi-58px {
  margin-top: 58px !important;
  margin-bottom: 58px !important;
}

.mxi-58px {
  margin-left: 58px !important;
  margin-right: 58px !important;
}

.p-58px {
  padding: 58px;
}

.pt-58px {
  padding-top: 58px;
}

.pb-58px {
  padding-bottom: 58px;
}

.pl-58px {
  padding-left: 58px;
}

.pr-58px {
  padding-right: 58px;
}

.py-58px {
  padding-top: 58px;
  padding-bottom: 58px;
}

.px-58px {
  padding-left: 58px;
  padding-right: 58px;
}

.pi-58px {
  padding: 58px !important;
}

.pti-58px {
  padding-top: 58px !important;
}

.pbi-58px {
  padding-bottom: 58px !important;
}

.pli-58px {
  padding-left: 58px !important;
}

.pri-58px {
  padding-right: 58px !important;
}

.pyi-58px {
  padding-top: 58px !important;
  padding-bottom: 58px !important;
}

.pxi-58px {
  padding-left: 58px !important;
  padding-right: 58px !important;
}

tr.p-58px > td {
  padding: 58px;
}

tr.pt-58px > td {
  padding-top: 58px;
}

tr.pb-58px > td {
  padding-bottom: 58px;
}

tr.pl-58px > td {
  padding-left: 58px;
}

tr.pr-58px > td {
  padding-right: 58px;
}

tr.py-58px > td {
  padding-top: 58px;
  padding-bottom: 58px;
}

tr.px-58px > td {
  padding-left: 58px;
  padding-right: 58px;
}

tr.pi-58px > td {
  padding: 58px !important;
}

tr.pti-58px > td {
  padding-top: 58px !important;
}

tr.pbi-58px > td {
  padding-bottom: 58px !important;
}

tr.pli-58px > td {
  padding-left: 58px !important;
}

tr.pri-58px > td {
  padding-right: 58px !important;
}

tr.pyi-58px > td {
  padding-top: 58px !important;
  padding-bottom: 58px !important;
}

tr.pxi-58px > td {
  padding-left: 58px !important;
  padding-right: 58px !important;
}

tr.pxi-58px > td {
  padding-left: 58px !important;
  padding-right: 58px !important;
}

.m-59px {
  margin: 59px;
}

.mt-59px {
  margin-top: 59px;
}

.mb-59px {
  margin-bottom: 59px;
}

.ml-59px {
  margin-left: 59px;
}

.mr-59px {
  margin-right: 59px;
}

.mt--59px {
  margin-top: -59px;
}

.mb--59px {
  margin-bottom: -59px;
}

.ml--59px {
  margin-left: -59px;
}

.mr--59px {
  margin-right: -59px;
}

.my-59px {
  margin-top: 59px;
  margin-bottom: 59px;
}

.mx-59px {
  margin-left: 59px;
  margin-right: 59px;
}

.mi-59px {
  margin: 59px !important;
}

.mti-59px {
  margin-top: 59px !important;
}

.mbi-59px {
  margin-bottom: 59px !important;
}

.mli-59px {
  margin-left: 59px !important;
}

.mri-59px {
  margin-right: 59px !important;
}

.mti--59px {
  margin-top: -59px !important;
}

.mbi--59px {
  margin-bottom: -59px !important;
}

.mli--59px {
  margin-left: -59px !important;
}

.mri--59px {
  margin-right: -59px !important;
}

.myi-59px {
  margin-top: 59px !important;
  margin-bottom: 59px !important;
}

.mxi-59px {
  margin-left: 59px !important;
  margin-right: 59px !important;
}

.p-59px {
  padding: 59px;
}

.pt-59px {
  padding-top: 59px;
}

.pb-59px {
  padding-bottom: 59px;
}

.pl-59px {
  padding-left: 59px;
}

.pr-59px {
  padding-right: 59px;
}

.py-59px {
  padding-top: 59px;
  padding-bottom: 59px;
}

.px-59px {
  padding-left: 59px;
  padding-right: 59px;
}

.pi-59px {
  padding: 59px !important;
}

.pti-59px {
  padding-top: 59px !important;
}

.pbi-59px {
  padding-bottom: 59px !important;
}

.pli-59px {
  padding-left: 59px !important;
}

.pri-59px {
  padding-right: 59px !important;
}

.pyi-59px {
  padding-top: 59px !important;
  padding-bottom: 59px !important;
}

.pxi-59px {
  padding-left: 59px !important;
  padding-right: 59px !important;
}

tr.p-59px > td {
  padding: 59px;
}

tr.pt-59px > td {
  padding-top: 59px;
}

tr.pb-59px > td {
  padding-bottom: 59px;
}

tr.pl-59px > td {
  padding-left: 59px;
}

tr.pr-59px > td {
  padding-right: 59px;
}

tr.py-59px > td {
  padding-top: 59px;
  padding-bottom: 59px;
}

tr.px-59px > td {
  padding-left: 59px;
  padding-right: 59px;
}

tr.pi-59px > td {
  padding: 59px !important;
}

tr.pti-59px > td {
  padding-top: 59px !important;
}

tr.pbi-59px > td {
  padding-bottom: 59px !important;
}

tr.pli-59px > td {
  padding-left: 59px !important;
}

tr.pri-59px > td {
  padding-right: 59px !important;
}

tr.pyi-59px > td {
  padding-top: 59px !important;
  padding-bottom: 59px !important;
}

tr.pxi-59px > td {
  padding-left: 59px !important;
  padding-right: 59px !important;
}

tr.pxi-59px > td {
  padding-left: 59px !important;
  padding-right: 59px !important;
}

.m-60px {
  margin: 60px;
}

.mt-60px {
  margin-top: 60px;
}

.mb-60px {
  margin-bottom: 60px;
}

.ml-60px {
  margin-left: 60px;
}

.mr-60px {
  margin-right: 60px;
}

.mt--60px {
  margin-top: -60px;
}

.mb--60px {
  margin-bottom: -60px;
}

.ml--60px {
  margin-left: -60px;
}

.mr--60px {
  margin-right: -60px;
}

.my-60px {
  margin-top: 60px;
  margin-bottom: 60px;
}

.mx-60px {
  margin-left: 60px;
  margin-right: 60px;
}

.mi-60px {
  margin: 60px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-60px {
  padding: 60px;
}

.pt-60px {
  padding-top: 60px;
}

.pb-60px {
  padding-bottom: 60px;
}

.pl-60px {
  padding-left: 60px;
}

.pr-60px {
  padding-right: 60px;
}

.py-60px {
  padding-top: 60px;
  padding-bottom: 60px;
}

.px-60px {
  padding-left: 60px;
  padding-right: 60px;
}

.pi-60px {
  padding: 60px !important;
}

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

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

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

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

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

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

tr.p-60px > td {
  padding: 60px;
}

tr.pt-60px > td {
  padding-top: 60px;
}

tr.pb-60px > td {
  padding-bottom: 60px;
}

tr.pl-60px > td {
  padding-left: 60px;
}

tr.pr-60px > td {
  padding-right: 60px;
}

tr.py-60px > td {
  padding-top: 60px;
  padding-bottom: 60px;
}

tr.px-60px > td {
  padding-left: 60px;
  padding-right: 60px;
}

tr.pi-60px > td {
  padding: 60px !important;
}

tr.pti-60px > td {
  padding-top: 60px !important;
}

tr.pbi-60px > td {
  padding-bottom: 60px !important;
}

tr.pli-60px > td {
  padding-left: 60px !important;
}

tr.pri-60px > td {
  padding-right: 60px !important;
}

tr.pyi-60px > td {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

tr.pxi-60px > td {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

tr.pxi-60px > td {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.m-61px {
  margin: 61px;
}

.mt-61px {
  margin-top: 61px;
}

.mb-61px {
  margin-bottom: 61px;
}

.ml-61px {
  margin-left: 61px;
}

.mr-61px {
  margin-right: 61px;
}

.mt--61px {
  margin-top: -61px;
}

.mb--61px {
  margin-bottom: -61px;
}

.ml--61px {
  margin-left: -61px;
}

.mr--61px {
  margin-right: -61px;
}

.my-61px {
  margin-top: 61px;
  margin-bottom: 61px;
}

.mx-61px {
  margin-left: 61px;
  margin-right: 61px;
}

.mi-61px {
  margin: 61px !important;
}

.mti-61px {
  margin-top: 61px !important;
}

.mbi-61px {
  margin-bottom: 61px !important;
}

.mli-61px {
  margin-left: 61px !important;
}

.mri-61px {
  margin-right: 61px !important;
}

.mti--61px {
  margin-top: -61px !important;
}

.mbi--61px {
  margin-bottom: -61px !important;
}

.mli--61px {
  margin-left: -61px !important;
}

.mri--61px {
  margin-right: -61px !important;
}

.myi-61px {
  margin-top: 61px !important;
  margin-bottom: 61px !important;
}

.mxi-61px {
  margin-left: 61px !important;
  margin-right: 61px !important;
}

.p-61px {
  padding: 61px;
}

.pt-61px {
  padding-top: 61px;
}

.pb-61px {
  padding-bottom: 61px;
}

.pl-61px {
  padding-left: 61px;
}

.pr-61px {
  padding-right: 61px;
}

.py-61px {
  padding-top: 61px;
  padding-bottom: 61px;
}

.px-61px {
  padding-left: 61px;
  padding-right: 61px;
}

.pi-61px {
  padding: 61px !important;
}

.pti-61px {
  padding-top: 61px !important;
}

.pbi-61px {
  padding-bottom: 61px !important;
}

.pli-61px {
  padding-left: 61px !important;
}

.pri-61px {
  padding-right: 61px !important;
}

.pyi-61px {
  padding-top: 61px !important;
  padding-bottom: 61px !important;
}

.pxi-61px {
  padding-left: 61px !important;
  padding-right: 61px !important;
}

tr.p-61px > td {
  padding: 61px;
}

tr.pt-61px > td {
  padding-top: 61px;
}

tr.pb-61px > td {
  padding-bottom: 61px;
}

tr.pl-61px > td {
  padding-left: 61px;
}

tr.pr-61px > td {
  padding-right: 61px;
}

tr.py-61px > td {
  padding-top: 61px;
  padding-bottom: 61px;
}

tr.px-61px > td {
  padding-left: 61px;
  padding-right: 61px;
}

tr.pi-61px > td {
  padding: 61px !important;
}

tr.pti-61px > td {
  padding-top: 61px !important;
}

tr.pbi-61px > td {
  padding-bottom: 61px !important;
}

tr.pli-61px > td {
  padding-left: 61px !important;
}

tr.pri-61px > td {
  padding-right: 61px !important;
}

tr.pyi-61px > td {
  padding-top: 61px !important;
  padding-bottom: 61px !important;
}

tr.pxi-61px > td {
  padding-left: 61px !important;
  padding-right: 61px !important;
}

tr.pxi-61px > td {
  padding-left: 61px !important;
  padding-right: 61px !important;
}

.m-62px {
  margin: 62px;
}

.mt-62px {
  margin-top: 62px;
}

.mb-62px {
  margin-bottom: 62px;
}

.ml-62px {
  margin-left: 62px;
}

.mr-62px {
  margin-right: 62px;
}

.mt--62px {
  margin-top: -62px;
}

.mb--62px {
  margin-bottom: -62px;
}

.ml--62px {
  margin-left: -62px;
}

.mr--62px {
  margin-right: -62px;
}

.my-62px {
  margin-top: 62px;
  margin-bottom: 62px;
}

.mx-62px {
  margin-left: 62px;
  margin-right: 62px;
}

.mi-62px {
  margin: 62px !important;
}

.mti-62px {
  margin-top: 62px !important;
}

.mbi-62px {
  margin-bottom: 62px !important;
}

.mli-62px {
  margin-left: 62px !important;
}

.mri-62px {
  margin-right: 62px !important;
}

.mti--62px {
  margin-top: -62px !important;
}

.mbi--62px {
  margin-bottom: -62px !important;
}

.mli--62px {
  margin-left: -62px !important;
}

.mri--62px {
  margin-right: -62px !important;
}

.myi-62px {
  margin-top: 62px !important;
  margin-bottom: 62px !important;
}

.mxi-62px {
  margin-left: 62px !important;
  margin-right: 62px !important;
}

.p-62px {
  padding: 62px;
}

.pt-62px {
  padding-top: 62px;
}

.pb-62px {
  padding-bottom: 62px;
}

.pl-62px {
  padding-left: 62px;
}

.pr-62px {
  padding-right: 62px;
}

.py-62px {
  padding-top: 62px;
  padding-bottom: 62px;
}

.px-62px {
  padding-left: 62px;
  padding-right: 62px;
}

.pi-62px {
  padding: 62px !important;
}

.pti-62px {
  padding-top: 62px !important;
}

.pbi-62px {
  padding-bottom: 62px !important;
}

.pli-62px {
  padding-left: 62px !important;
}

.pri-62px {
  padding-right: 62px !important;
}

.pyi-62px {
  padding-top: 62px !important;
  padding-bottom: 62px !important;
}

.pxi-62px {
  padding-left: 62px !important;
  padding-right: 62px !important;
}

tr.p-62px > td {
  padding: 62px;
}

tr.pt-62px > td {
  padding-top: 62px;
}

tr.pb-62px > td {
  padding-bottom: 62px;
}

tr.pl-62px > td {
  padding-left: 62px;
}

tr.pr-62px > td {
  padding-right: 62px;
}

tr.py-62px > td {
  padding-top: 62px;
  padding-bottom: 62px;
}

tr.px-62px > td {
  padding-left: 62px;
  padding-right: 62px;
}

tr.pi-62px > td {
  padding: 62px !important;
}

tr.pti-62px > td {
  padding-top: 62px !important;
}

tr.pbi-62px > td {
  padding-bottom: 62px !important;
}

tr.pli-62px > td {
  padding-left: 62px !important;
}

tr.pri-62px > td {
  padding-right: 62px !important;
}

tr.pyi-62px > td {
  padding-top: 62px !important;
  padding-bottom: 62px !important;
}

tr.pxi-62px > td {
  padding-left: 62px !important;
  padding-right: 62px !important;
}

tr.pxi-62px > td {
  padding-left: 62px !important;
  padding-right: 62px !important;
}

.m-63px {
  margin: 63px;
}

.mt-63px {
  margin-top: 63px;
}

.mb-63px {
  margin-bottom: 63px;
}

.ml-63px {
  margin-left: 63px;
}

.mr-63px {
  margin-right: 63px;
}

.mt--63px {
  margin-top: -63px;
}

.mb--63px {
  margin-bottom: -63px;
}

.ml--63px {
  margin-left: -63px;
}

.mr--63px {
  margin-right: -63px;
}

.my-63px {
  margin-top: 63px;
  margin-bottom: 63px;
}

.mx-63px {
  margin-left: 63px;
  margin-right: 63px;
}

.mi-63px {
  margin: 63px !important;
}

.mti-63px {
  margin-top: 63px !important;
}

.mbi-63px {
  margin-bottom: 63px !important;
}

.mli-63px {
  margin-left: 63px !important;
}

.mri-63px {
  margin-right: 63px !important;
}

.mti--63px {
  margin-top: -63px !important;
}

.mbi--63px {
  margin-bottom: -63px !important;
}

.mli--63px {
  margin-left: -63px !important;
}

.mri--63px {
  margin-right: -63px !important;
}

.myi-63px {
  margin-top: 63px !important;
  margin-bottom: 63px !important;
}

.mxi-63px {
  margin-left: 63px !important;
  margin-right: 63px !important;
}

.p-63px {
  padding: 63px;
}

.pt-63px {
  padding-top: 63px;
}

.pb-63px {
  padding-bottom: 63px;
}

.pl-63px {
  padding-left: 63px;
}

.pr-63px {
  padding-right: 63px;
}

.py-63px {
  padding-top: 63px;
  padding-bottom: 63px;
}

.px-63px {
  padding-left: 63px;
  padding-right: 63px;
}

.pi-63px {
  padding: 63px !important;
}

.pti-63px {
  padding-top: 63px !important;
}

.pbi-63px {
  padding-bottom: 63px !important;
}

.pli-63px {
  padding-left: 63px !important;
}

.pri-63px {
  padding-right: 63px !important;
}

.pyi-63px {
  padding-top: 63px !important;
  padding-bottom: 63px !important;
}

.pxi-63px {
  padding-left: 63px !important;
  padding-right: 63px !important;
}

tr.p-63px > td {
  padding: 63px;
}

tr.pt-63px > td {
  padding-top: 63px;
}

tr.pb-63px > td {
  padding-bottom: 63px;
}

tr.pl-63px > td {
  padding-left: 63px;
}

tr.pr-63px > td {
  padding-right: 63px;
}

tr.py-63px > td {
  padding-top: 63px;
  padding-bottom: 63px;
}

tr.px-63px > td {
  padding-left: 63px;
  padding-right: 63px;
}

tr.pi-63px > td {
  padding: 63px !important;
}

tr.pti-63px > td {
  padding-top: 63px !important;
}

tr.pbi-63px > td {
  padding-bottom: 63px !important;
}

tr.pli-63px > td {
  padding-left: 63px !important;
}

tr.pri-63px > td {
  padding-right: 63px !important;
}

tr.pyi-63px > td {
  padding-top: 63px !important;
  padding-bottom: 63px !important;
}

tr.pxi-63px > td {
  padding-left: 63px !important;
  padding-right: 63px !important;
}

tr.pxi-63px > td {
  padding-left: 63px !important;
  padding-right: 63px !important;
}

.m-64px {
  margin: 64px;
}

.mt-64px {
  margin-top: 64px;
}

.mb-64px {
  margin-bottom: 64px;
}

.ml-64px {
  margin-left: 64px;
}

.mr-64px {
  margin-right: 64px;
}

.mt--64px {
  margin-top: -64px;
}

.mb--64px {
  margin-bottom: -64px;
}

.ml--64px {
  margin-left: -64px;
}

.mr--64px {
  margin-right: -64px;
}

.my-64px {
  margin-top: 64px;
  margin-bottom: 64px;
}

.mx-64px {
  margin-left: 64px;
  margin-right: 64px;
}

.mi-64px {
  margin: 64px !important;
}

.mti-64px {
  margin-top: 64px !important;
}

.mbi-64px {
  margin-bottom: 64px !important;
}

.mli-64px {
  margin-left: 64px !important;
}

.mri-64px {
  margin-right: 64px !important;
}

.mti--64px {
  margin-top: -64px !important;
}

.mbi--64px {
  margin-bottom: -64px !important;
}

.mli--64px {
  margin-left: -64px !important;
}

.mri--64px {
  margin-right: -64px !important;
}

.myi-64px {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

.mxi-64px {
  margin-left: 64px !important;
  margin-right: 64px !important;
}

.p-64px {
  padding: 64px;
}

.pt-64px {
  padding-top: 64px;
}

.pb-64px {
  padding-bottom: 64px;
}

.pl-64px {
  padding-left: 64px;
}

.pr-64px {
  padding-right: 64px;
}

.py-64px {
  padding-top: 64px;
  padding-bottom: 64px;
}

.px-64px {
  padding-left: 64px;
  padding-right: 64px;
}

.pi-64px {
  padding: 64px !important;
}

.pti-64px {
  padding-top: 64px !important;
}

.pbi-64px {
  padding-bottom: 64px !important;
}

.pli-64px {
  padding-left: 64px !important;
}

.pri-64px {
  padding-right: 64px !important;
}

.pyi-64px {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.pxi-64px {
  padding-left: 64px !important;
  padding-right: 64px !important;
}

tr.p-64px > td {
  padding: 64px;
}

tr.pt-64px > td {
  padding-top: 64px;
}

tr.pb-64px > td {
  padding-bottom: 64px;
}

tr.pl-64px > td {
  padding-left: 64px;
}

tr.pr-64px > td {
  padding-right: 64px;
}

tr.py-64px > td {
  padding-top: 64px;
  padding-bottom: 64px;
}

tr.px-64px > td {
  padding-left: 64px;
  padding-right: 64px;
}

tr.pi-64px > td {
  padding: 64px !important;
}

tr.pti-64px > td {
  padding-top: 64px !important;
}

tr.pbi-64px > td {
  padding-bottom: 64px !important;
}

tr.pli-64px > td {
  padding-left: 64px !important;
}

tr.pri-64px > td {
  padding-right: 64px !important;
}

tr.pyi-64px > td {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

tr.pxi-64px > td {
  padding-left: 64px !important;
  padding-right: 64px !important;
}

tr.pxi-64px > td {
  padding-left: 64px !important;
  padding-right: 64px !important;
}

.m-65px {
  margin: 65px;
}

.mt-65px {
  margin-top: 65px;
}

.mb-65px {
  margin-bottom: 65px;
}

.ml-65px {
  margin-left: 65px;
}

.mr-65px {
  margin-right: 65px;
}

.mt--65px {
  margin-top: -65px;
}

.mb--65px {
  margin-bottom: -65px;
}

.ml--65px {
  margin-left: -65px;
}

.mr--65px {
  margin-right: -65px;
}

.my-65px {
  margin-top: 65px;
  margin-bottom: 65px;
}

.mx-65px {
  margin-left: 65px;
  margin-right: 65px;
}

.mi-65px {
  margin: 65px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-65px {
  padding: 65px;
}

.pt-65px {
  padding-top: 65px;
}

.pb-65px {
  padding-bottom: 65px;
}

.pl-65px {
  padding-left: 65px;
}

.pr-65px {
  padding-right: 65px;
}

.py-65px {
  padding-top: 65px;
  padding-bottom: 65px;
}

.px-65px {
  padding-left: 65px;
  padding-right: 65px;
}

.pi-65px {
  padding: 65px !important;
}

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

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

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

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

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

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

tr.p-65px > td {
  padding: 65px;
}

tr.pt-65px > td {
  padding-top: 65px;
}

tr.pb-65px > td {
  padding-bottom: 65px;
}

tr.pl-65px > td {
  padding-left: 65px;
}

tr.pr-65px > td {
  padding-right: 65px;
}

tr.py-65px > td {
  padding-top: 65px;
  padding-bottom: 65px;
}

tr.px-65px > td {
  padding-left: 65px;
  padding-right: 65px;
}

tr.pi-65px > td {
  padding: 65px !important;
}

tr.pti-65px > td {
  padding-top: 65px !important;
}

tr.pbi-65px > td {
  padding-bottom: 65px !important;
}

tr.pli-65px > td {
  padding-left: 65px !important;
}

tr.pri-65px > td {
  padding-right: 65px !important;
}

tr.pyi-65px > td {
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}

tr.pxi-65px > td {
  padding-left: 65px !important;
  padding-right: 65px !important;
}

tr.pxi-65px > td {
  padding-left: 65px !important;
  padding-right: 65px !important;
}

.m-66px {
  margin: 66px;
}

.mt-66px {
  margin-top: 66px;
}

.mb-66px {
  margin-bottom: 66px;
}

.ml-66px {
  margin-left: 66px;
}

.mr-66px {
  margin-right: 66px;
}

.mt--66px {
  margin-top: -66px;
}

.mb--66px {
  margin-bottom: -66px;
}

.ml--66px {
  margin-left: -66px;
}

.mr--66px {
  margin-right: -66px;
}

.my-66px {
  margin-top: 66px;
  margin-bottom: 66px;
}

.mx-66px {
  margin-left: 66px;
  margin-right: 66px;
}

.mi-66px {
  margin: 66px !important;
}

.mti-66px {
  margin-top: 66px !important;
}

.mbi-66px {
  margin-bottom: 66px !important;
}

.mli-66px {
  margin-left: 66px !important;
}

.mri-66px {
  margin-right: 66px !important;
}

.mti--66px {
  margin-top: -66px !important;
}

.mbi--66px {
  margin-bottom: -66px !important;
}

.mli--66px {
  margin-left: -66px !important;
}

.mri--66px {
  margin-right: -66px !important;
}

.myi-66px {
  margin-top: 66px !important;
  margin-bottom: 66px !important;
}

.mxi-66px {
  margin-left: 66px !important;
  margin-right: 66px !important;
}

.p-66px {
  padding: 66px;
}

.pt-66px {
  padding-top: 66px;
}

.pb-66px {
  padding-bottom: 66px;
}

.pl-66px {
  padding-left: 66px;
}

.pr-66px {
  padding-right: 66px;
}

.py-66px {
  padding-top: 66px;
  padding-bottom: 66px;
}

.px-66px {
  padding-left: 66px;
  padding-right: 66px;
}

.pi-66px {
  padding: 66px !important;
}

.pti-66px {
  padding-top: 66px !important;
}

.pbi-66px {
  padding-bottom: 66px !important;
}

.pli-66px {
  padding-left: 66px !important;
}

.pri-66px {
  padding-right: 66px !important;
}

.pyi-66px {
  padding-top: 66px !important;
  padding-bottom: 66px !important;
}

.pxi-66px {
  padding-left: 66px !important;
  padding-right: 66px !important;
}

tr.p-66px > td {
  padding: 66px;
}

tr.pt-66px > td {
  padding-top: 66px;
}

tr.pb-66px > td {
  padding-bottom: 66px;
}

tr.pl-66px > td {
  padding-left: 66px;
}

tr.pr-66px > td {
  padding-right: 66px;
}

tr.py-66px > td {
  padding-top: 66px;
  padding-bottom: 66px;
}

tr.px-66px > td {
  padding-left: 66px;
  padding-right: 66px;
}

tr.pi-66px > td {
  padding: 66px !important;
}

tr.pti-66px > td {
  padding-top: 66px !important;
}

tr.pbi-66px > td {
  padding-bottom: 66px !important;
}

tr.pli-66px > td {
  padding-left: 66px !important;
}

tr.pri-66px > td {
  padding-right: 66px !important;
}

tr.pyi-66px > td {
  padding-top: 66px !important;
  padding-bottom: 66px !important;
}

tr.pxi-66px > td {
  padding-left: 66px !important;
  padding-right: 66px !important;
}

tr.pxi-66px > td {
  padding-left: 66px !important;
  padding-right: 66px !important;
}

.m-67px {
  margin: 67px;
}

.mt-67px {
  margin-top: 67px;
}

.mb-67px {
  margin-bottom: 67px;
}

.ml-67px {
  margin-left: 67px;
}

.mr-67px {
  margin-right: 67px;
}

.mt--67px {
  margin-top: -67px;
}

.mb--67px {
  margin-bottom: -67px;
}

.ml--67px {
  margin-left: -67px;
}

.mr--67px {
  margin-right: -67px;
}

.my-67px {
  margin-top: 67px;
  margin-bottom: 67px;
}

.mx-67px {
  margin-left: 67px;
  margin-right: 67px;
}

.mi-67px {
  margin: 67px !important;
}

.mti-67px {
  margin-top: 67px !important;
}

.mbi-67px {
  margin-bottom: 67px !important;
}

.mli-67px {
  margin-left: 67px !important;
}

.mri-67px {
  margin-right: 67px !important;
}

.mti--67px {
  margin-top: -67px !important;
}

.mbi--67px {
  margin-bottom: -67px !important;
}

.mli--67px {
  margin-left: -67px !important;
}

.mri--67px {
  margin-right: -67px !important;
}

.myi-67px {
  margin-top: 67px !important;
  margin-bottom: 67px !important;
}

.mxi-67px {
  margin-left: 67px !important;
  margin-right: 67px !important;
}

.p-67px {
  padding: 67px;
}

.pt-67px {
  padding-top: 67px;
}

.pb-67px {
  padding-bottom: 67px;
}

.pl-67px {
  padding-left: 67px;
}

.pr-67px {
  padding-right: 67px;
}

.py-67px {
  padding-top: 67px;
  padding-bottom: 67px;
}

.px-67px {
  padding-left: 67px;
  padding-right: 67px;
}

.pi-67px {
  padding: 67px !important;
}

.pti-67px {
  padding-top: 67px !important;
}

.pbi-67px {
  padding-bottom: 67px !important;
}

.pli-67px {
  padding-left: 67px !important;
}

.pri-67px {
  padding-right: 67px !important;
}

.pyi-67px {
  padding-top: 67px !important;
  padding-bottom: 67px !important;
}

.pxi-67px {
  padding-left: 67px !important;
  padding-right: 67px !important;
}

tr.p-67px > td {
  padding: 67px;
}

tr.pt-67px > td {
  padding-top: 67px;
}

tr.pb-67px > td {
  padding-bottom: 67px;
}

tr.pl-67px > td {
  padding-left: 67px;
}

tr.pr-67px > td {
  padding-right: 67px;
}

tr.py-67px > td {
  padding-top: 67px;
  padding-bottom: 67px;
}

tr.px-67px > td {
  padding-left: 67px;
  padding-right: 67px;
}

tr.pi-67px > td {
  padding: 67px !important;
}

tr.pti-67px > td {
  padding-top: 67px !important;
}

tr.pbi-67px > td {
  padding-bottom: 67px !important;
}

tr.pli-67px > td {
  padding-left: 67px !important;
}

tr.pri-67px > td {
  padding-right: 67px !important;
}

tr.pyi-67px > td {
  padding-top: 67px !important;
  padding-bottom: 67px !important;
}

tr.pxi-67px > td {
  padding-left: 67px !important;
  padding-right: 67px !important;
}

tr.pxi-67px > td {
  padding-left: 67px !important;
  padding-right: 67px !important;
}

.m-68px {
  margin: 68px;
}

.mt-68px {
  margin-top: 68px;
}

.mb-68px {
  margin-bottom: 68px;
}

.ml-68px {
  margin-left: 68px;
}

.mr-68px {
  margin-right: 68px;
}

.mt--68px {
  margin-top: -68px;
}

.mb--68px {
  margin-bottom: -68px;
}

.ml--68px {
  margin-left: -68px;
}

.mr--68px {
  margin-right: -68px;
}

.my-68px {
  margin-top: 68px;
  margin-bottom: 68px;
}

.mx-68px {
  margin-left: 68px;
  margin-right: 68px;
}

.mi-68px {
  margin: 68px !important;
}

.mti-68px {
  margin-top: 68px !important;
}

.mbi-68px {
  margin-bottom: 68px !important;
}

.mli-68px {
  margin-left: 68px !important;
}

.mri-68px {
  margin-right: 68px !important;
}

.mti--68px {
  margin-top: -68px !important;
}

.mbi--68px {
  margin-bottom: -68px !important;
}

.mli--68px {
  margin-left: -68px !important;
}

.mri--68px {
  margin-right: -68px !important;
}

.myi-68px {
  margin-top: 68px !important;
  margin-bottom: 68px !important;
}

.mxi-68px {
  margin-left: 68px !important;
  margin-right: 68px !important;
}

.p-68px {
  padding: 68px;
}

.pt-68px {
  padding-top: 68px;
}

.pb-68px {
  padding-bottom: 68px;
}

.pl-68px {
  padding-left: 68px;
}

.pr-68px {
  padding-right: 68px;
}

.py-68px {
  padding-top: 68px;
  padding-bottom: 68px;
}

.px-68px {
  padding-left: 68px;
  padding-right: 68px;
}

.pi-68px {
  padding: 68px !important;
}

.pti-68px {
  padding-top: 68px !important;
}

.pbi-68px {
  padding-bottom: 68px !important;
}

.pli-68px {
  padding-left: 68px !important;
}

.pri-68px {
  padding-right: 68px !important;
}

.pyi-68px {
  padding-top: 68px !important;
  padding-bottom: 68px !important;
}

.pxi-68px {
  padding-left: 68px !important;
  padding-right: 68px !important;
}

tr.p-68px > td {
  padding: 68px;
}

tr.pt-68px > td {
  padding-top: 68px;
}

tr.pb-68px > td {
  padding-bottom: 68px;
}

tr.pl-68px > td {
  padding-left: 68px;
}

tr.pr-68px > td {
  padding-right: 68px;
}

tr.py-68px > td {
  padding-top: 68px;
  padding-bottom: 68px;
}

tr.px-68px > td {
  padding-left: 68px;
  padding-right: 68px;
}

tr.pi-68px > td {
  padding: 68px !important;
}

tr.pti-68px > td {
  padding-top: 68px !important;
}

tr.pbi-68px > td {
  padding-bottom: 68px !important;
}

tr.pli-68px > td {
  padding-left: 68px !important;
}

tr.pri-68px > td {
  padding-right: 68px !important;
}

tr.pyi-68px > td {
  padding-top: 68px !important;
  padding-bottom: 68px !important;
}

tr.pxi-68px > td {
  padding-left: 68px !important;
  padding-right: 68px !important;
}

tr.pxi-68px > td {
  padding-left: 68px !important;
  padding-right: 68px !important;
}

.m-69px {
  margin: 69px;
}

.mt-69px {
  margin-top: 69px;
}

.mb-69px {
  margin-bottom: 69px;
}

.ml-69px {
  margin-left: 69px;
}

.mr-69px {
  margin-right: 69px;
}

.mt--69px {
  margin-top: -69px;
}

.mb--69px {
  margin-bottom: -69px;
}

.ml--69px {
  margin-left: -69px;
}

.mr--69px {
  margin-right: -69px;
}

.my-69px {
  margin-top: 69px;
  margin-bottom: 69px;
}

.mx-69px {
  margin-left: 69px;
  margin-right: 69px;
}

.mi-69px {
  margin: 69px !important;
}

.mti-69px {
  margin-top: 69px !important;
}

.mbi-69px {
  margin-bottom: 69px !important;
}

.mli-69px {
  margin-left: 69px !important;
}

.mri-69px {
  margin-right: 69px !important;
}

.mti--69px {
  margin-top: -69px !important;
}

.mbi--69px {
  margin-bottom: -69px !important;
}

.mli--69px {
  margin-left: -69px !important;
}

.mri--69px {
  margin-right: -69px !important;
}

.myi-69px {
  margin-top: 69px !important;
  margin-bottom: 69px !important;
}

.mxi-69px {
  margin-left: 69px !important;
  margin-right: 69px !important;
}

.p-69px {
  padding: 69px;
}

.pt-69px {
  padding-top: 69px;
}

.pb-69px {
  padding-bottom: 69px;
}

.pl-69px {
  padding-left: 69px;
}

.pr-69px {
  padding-right: 69px;
}

.py-69px {
  padding-top: 69px;
  padding-bottom: 69px;
}

.px-69px {
  padding-left: 69px;
  padding-right: 69px;
}

.pi-69px {
  padding: 69px !important;
}

.pti-69px {
  padding-top: 69px !important;
}

.pbi-69px {
  padding-bottom: 69px !important;
}

.pli-69px {
  padding-left: 69px !important;
}

.pri-69px {
  padding-right: 69px !important;
}

.pyi-69px {
  padding-top: 69px !important;
  padding-bottom: 69px !important;
}

.pxi-69px {
  padding-left: 69px !important;
  padding-right: 69px !important;
}

tr.p-69px > td {
  padding: 69px;
}

tr.pt-69px > td {
  padding-top: 69px;
}

tr.pb-69px > td {
  padding-bottom: 69px;
}

tr.pl-69px > td {
  padding-left: 69px;
}

tr.pr-69px > td {
  padding-right: 69px;
}

tr.py-69px > td {
  padding-top: 69px;
  padding-bottom: 69px;
}

tr.px-69px > td {
  padding-left: 69px;
  padding-right: 69px;
}

tr.pi-69px > td {
  padding: 69px !important;
}

tr.pti-69px > td {
  padding-top: 69px !important;
}

tr.pbi-69px > td {
  padding-bottom: 69px !important;
}

tr.pli-69px > td {
  padding-left: 69px !important;
}

tr.pri-69px > td {
  padding-right: 69px !important;
}

tr.pyi-69px > td {
  padding-top: 69px !important;
  padding-bottom: 69px !important;
}

tr.pxi-69px > td {
  padding-left: 69px !important;
  padding-right: 69px !important;
}

tr.pxi-69px > td {
  padding-left: 69px !important;
  padding-right: 69px !important;
}

.m-70px {
  margin: 70px;
}

.mt-70px {
  margin-top: 70px;
}

.mb-70px {
  margin-bottom: 70px;
}

.ml-70px {
  margin-left: 70px;
}

.mr-70px {
  margin-right: 70px;
}

.mt--70px {
  margin-top: -70px;
}

.mb--70px {
  margin-bottom: -70px;
}

.ml--70px {
  margin-left: -70px;
}

.mr--70px {
  margin-right: -70px;
}

.my-70px {
  margin-top: 70px;
  margin-bottom: 70px;
}

.mx-70px {
  margin-left: 70px;
  margin-right: 70px;
}

.mi-70px {
  margin: 70px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-70px {
  padding: 70px;
}

.pt-70px {
  padding-top: 70px;
}

.pb-70px {
  padding-bottom: 70px;
}

.pl-70px {
  padding-left: 70px;
}

.pr-70px {
  padding-right: 70px;
}

.py-70px {
  padding-top: 70px;
  padding-bottom: 70px;
}

.px-70px {
  padding-left: 70px;
  padding-right: 70px;
}

.pi-70px {
  padding: 70px !important;
}

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

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

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

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

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

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

tr.p-70px > td {
  padding: 70px;
}

tr.pt-70px > td {
  padding-top: 70px;
}

tr.pb-70px > td {
  padding-bottom: 70px;
}

tr.pl-70px > td {
  padding-left: 70px;
}

tr.pr-70px > td {
  padding-right: 70px;
}

tr.py-70px > td {
  padding-top: 70px;
  padding-bottom: 70px;
}

tr.px-70px > td {
  padding-left: 70px;
  padding-right: 70px;
}

tr.pi-70px > td {
  padding: 70px !important;
}

tr.pti-70px > td {
  padding-top: 70px !important;
}

tr.pbi-70px > td {
  padding-bottom: 70px !important;
}

tr.pli-70px > td {
  padding-left: 70px !important;
}

tr.pri-70px > td {
  padding-right: 70px !important;
}

tr.pyi-70px > td {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

tr.pxi-70px > td {
  padding-left: 70px !important;
  padding-right: 70px !important;
}

tr.pxi-70px > td {
  padding-left: 70px !important;
  padding-right: 70px !important;
}

.m-71px {
  margin: 71px;
}

.mt-71px {
  margin-top: 71px;
}

.mb-71px {
  margin-bottom: 71px;
}

.ml-71px {
  margin-left: 71px;
}

.mr-71px {
  margin-right: 71px;
}

.mt--71px {
  margin-top: -71px;
}

.mb--71px {
  margin-bottom: -71px;
}

.ml--71px {
  margin-left: -71px;
}

.mr--71px {
  margin-right: -71px;
}

.my-71px {
  margin-top: 71px;
  margin-bottom: 71px;
}

.mx-71px {
  margin-left: 71px;
  margin-right: 71px;
}

.mi-71px {
  margin: 71px !important;
}

.mti-71px {
  margin-top: 71px !important;
}

.mbi-71px {
  margin-bottom: 71px !important;
}

.mli-71px {
  margin-left: 71px !important;
}

.mri-71px {
  margin-right: 71px !important;
}

.mti--71px {
  margin-top: -71px !important;
}

.mbi--71px {
  margin-bottom: -71px !important;
}

.mli--71px {
  margin-left: -71px !important;
}

.mri--71px {
  margin-right: -71px !important;
}

.myi-71px {
  margin-top: 71px !important;
  margin-bottom: 71px !important;
}

.mxi-71px {
  margin-left: 71px !important;
  margin-right: 71px !important;
}

.p-71px {
  padding: 71px;
}

.pt-71px {
  padding-top: 71px;
}

.pb-71px {
  padding-bottom: 71px;
}

.pl-71px {
  padding-left: 71px;
}

.pr-71px {
  padding-right: 71px;
}

.py-71px {
  padding-top: 71px;
  padding-bottom: 71px;
}

.px-71px {
  padding-left: 71px;
  padding-right: 71px;
}

.pi-71px {
  padding: 71px !important;
}

.pti-71px {
  padding-top: 71px !important;
}

.pbi-71px {
  padding-bottom: 71px !important;
}

.pli-71px {
  padding-left: 71px !important;
}

.pri-71px {
  padding-right: 71px !important;
}

.pyi-71px {
  padding-top: 71px !important;
  padding-bottom: 71px !important;
}

.pxi-71px {
  padding-left: 71px !important;
  padding-right: 71px !important;
}

tr.p-71px > td {
  padding: 71px;
}

tr.pt-71px > td {
  padding-top: 71px;
}

tr.pb-71px > td {
  padding-bottom: 71px;
}

tr.pl-71px > td {
  padding-left: 71px;
}

tr.pr-71px > td {
  padding-right: 71px;
}

tr.py-71px > td {
  padding-top: 71px;
  padding-bottom: 71px;
}

tr.px-71px > td {
  padding-left: 71px;
  padding-right: 71px;
}

tr.pi-71px > td {
  padding: 71px !important;
}

tr.pti-71px > td {
  padding-top: 71px !important;
}

tr.pbi-71px > td {
  padding-bottom: 71px !important;
}

tr.pli-71px > td {
  padding-left: 71px !important;
}

tr.pri-71px > td {
  padding-right: 71px !important;
}

tr.pyi-71px > td {
  padding-top: 71px !important;
  padding-bottom: 71px !important;
}

tr.pxi-71px > td {
  padding-left: 71px !important;
  padding-right: 71px !important;
}

tr.pxi-71px > td {
  padding-left: 71px !important;
  padding-right: 71px !important;
}

.m-72px {
  margin: 72px;
}

.mt-72px {
  margin-top: 72px;
}

.mb-72px {
  margin-bottom: 72px;
}

.ml-72px {
  margin-left: 72px;
}

.mr-72px {
  margin-right: 72px;
}

.mt--72px {
  margin-top: -72px;
}

.mb--72px {
  margin-bottom: -72px;
}

.ml--72px {
  margin-left: -72px;
}

.mr--72px {
  margin-right: -72px;
}

.my-72px {
  margin-top: 72px;
  margin-bottom: 72px;
}

.mx-72px {
  margin-left: 72px;
  margin-right: 72px;
}

.mi-72px {
  margin: 72px !important;
}

.mti-72px {
  margin-top: 72px !important;
}

.mbi-72px {
  margin-bottom: 72px !important;
}

.mli-72px {
  margin-left: 72px !important;
}

.mri-72px {
  margin-right: 72px !important;
}

.mti--72px {
  margin-top: -72px !important;
}

.mbi--72px {
  margin-bottom: -72px !important;
}

.mli--72px {
  margin-left: -72px !important;
}

.mri--72px {
  margin-right: -72px !important;
}

.myi-72px {
  margin-top: 72px !important;
  margin-bottom: 72px !important;
}

.mxi-72px {
  margin-left: 72px !important;
  margin-right: 72px !important;
}

.p-72px {
  padding: 72px;
}

.pt-72px {
  padding-top: 72px;
}

.pb-72px {
  padding-bottom: 72px;
}

.pl-72px {
  padding-left: 72px;
}

.pr-72px {
  padding-right: 72px;
}

.py-72px {
  padding-top: 72px;
  padding-bottom: 72px;
}

.px-72px {
  padding-left: 72px;
  padding-right: 72px;
}

.pi-72px {
  padding: 72px !important;
}

.pti-72px {
  padding-top: 72px !important;
}

.pbi-72px {
  padding-bottom: 72px !important;
}

.pli-72px {
  padding-left: 72px !important;
}

.pri-72px {
  padding-right: 72px !important;
}

.pyi-72px {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.pxi-72px {
  padding-left: 72px !important;
  padding-right: 72px !important;
}

tr.p-72px > td {
  padding: 72px;
}

tr.pt-72px > td {
  padding-top: 72px;
}

tr.pb-72px > td {
  padding-bottom: 72px;
}

tr.pl-72px > td {
  padding-left: 72px;
}

tr.pr-72px > td {
  padding-right: 72px;
}

tr.py-72px > td {
  padding-top: 72px;
  padding-bottom: 72px;
}

tr.px-72px > td {
  padding-left: 72px;
  padding-right: 72px;
}

tr.pi-72px > td {
  padding: 72px !important;
}

tr.pti-72px > td {
  padding-top: 72px !important;
}

tr.pbi-72px > td {
  padding-bottom: 72px !important;
}

tr.pli-72px > td {
  padding-left: 72px !important;
}

tr.pri-72px > td {
  padding-right: 72px !important;
}

tr.pyi-72px > td {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

tr.pxi-72px > td {
  padding-left: 72px !important;
  padding-right: 72px !important;
}

tr.pxi-72px > td {
  padding-left: 72px !important;
  padding-right: 72px !important;
}

.m-73px {
  margin: 73px;
}

.mt-73px {
  margin-top: 73px;
}

.mb-73px {
  margin-bottom: 73px;
}

.ml-73px {
  margin-left: 73px;
}

.mr-73px {
  margin-right: 73px;
}

.mt--73px {
  margin-top: -73px;
}

.mb--73px {
  margin-bottom: -73px;
}

.ml--73px {
  margin-left: -73px;
}

.mr--73px {
  margin-right: -73px;
}

.my-73px {
  margin-top: 73px;
  margin-bottom: 73px;
}

.mx-73px {
  margin-left: 73px;
  margin-right: 73px;
}

.mi-73px {
  margin: 73px !important;
}

.mti-73px {
  margin-top: 73px !important;
}

.mbi-73px {
  margin-bottom: 73px !important;
}

.mli-73px {
  margin-left: 73px !important;
}

.mri-73px {
  margin-right: 73px !important;
}

.mti--73px {
  margin-top: -73px !important;
}

.mbi--73px {
  margin-bottom: -73px !important;
}

.mli--73px {
  margin-left: -73px !important;
}

.mri--73px {
  margin-right: -73px !important;
}

.myi-73px {
  margin-top: 73px !important;
  margin-bottom: 73px !important;
}

.mxi-73px {
  margin-left: 73px !important;
  margin-right: 73px !important;
}

.p-73px {
  padding: 73px;
}

.pt-73px {
  padding-top: 73px;
}

.pb-73px {
  padding-bottom: 73px;
}

.pl-73px {
  padding-left: 73px;
}

.pr-73px {
  padding-right: 73px;
}

.py-73px {
  padding-top: 73px;
  padding-bottom: 73px;
}

.px-73px {
  padding-left: 73px;
  padding-right: 73px;
}

.pi-73px {
  padding: 73px !important;
}

.pti-73px {
  padding-top: 73px !important;
}

.pbi-73px {
  padding-bottom: 73px !important;
}

.pli-73px {
  padding-left: 73px !important;
}

.pri-73px {
  padding-right: 73px !important;
}

.pyi-73px {
  padding-top: 73px !important;
  padding-bottom: 73px !important;
}

.pxi-73px {
  padding-left: 73px !important;
  padding-right: 73px !important;
}

tr.p-73px > td {
  padding: 73px;
}

tr.pt-73px > td {
  padding-top: 73px;
}

tr.pb-73px > td {
  padding-bottom: 73px;
}

tr.pl-73px > td {
  padding-left: 73px;
}

tr.pr-73px > td {
  padding-right: 73px;
}

tr.py-73px > td {
  padding-top: 73px;
  padding-bottom: 73px;
}

tr.px-73px > td {
  padding-left: 73px;
  padding-right: 73px;
}

tr.pi-73px > td {
  padding: 73px !important;
}

tr.pti-73px > td {
  padding-top: 73px !important;
}

tr.pbi-73px > td {
  padding-bottom: 73px !important;
}

tr.pli-73px > td {
  padding-left: 73px !important;
}

tr.pri-73px > td {
  padding-right: 73px !important;
}

tr.pyi-73px > td {
  padding-top: 73px !important;
  padding-bottom: 73px !important;
}

tr.pxi-73px > td {
  padding-left: 73px !important;
  padding-right: 73px !important;
}

tr.pxi-73px > td {
  padding-left: 73px !important;
  padding-right: 73px !important;
}

.m-74px {
  margin: 74px;
}

.mt-74px {
  margin-top: 74px;
}

.mb-74px {
  margin-bottom: 74px;
}

.ml-74px {
  margin-left: 74px;
}

.mr-74px {
  margin-right: 74px;
}

.mt--74px {
  margin-top: -74px;
}

.mb--74px {
  margin-bottom: -74px;
}

.ml--74px {
  margin-left: -74px;
}

.mr--74px {
  margin-right: -74px;
}

.my-74px {
  margin-top: 74px;
  margin-bottom: 74px;
}

.mx-74px {
  margin-left: 74px;
  margin-right: 74px;
}

.mi-74px {
  margin: 74px !important;
}

.mti-74px {
  margin-top: 74px !important;
}

.mbi-74px {
  margin-bottom: 74px !important;
}

.mli-74px {
  margin-left: 74px !important;
}

.mri-74px {
  margin-right: 74px !important;
}

.mti--74px {
  margin-top: -74px !important;
}

.mbi--74px {
  margin-bottom: -74px !important;
}

.mli--74px {
  margin-left: -74px !important;
}

.mri--74px {
  margin-right: -74px !important;
}

.myi-74px {
  margin-top: 74px !important;
  margin-bottom: 74px !important;
}

.mxi-74px {
  margin-left: 74px !important;
  margin-right: 74px !important;
}

.p-74px {
  padding: 74px;
}

.pt-74px {
  padding-top: 74px;
}

.pb-74px {
  padding-bottom: 74px;
}

.pl-74px {
  padding-left: 74px;
}

.pr-74px {
  padding-right: 74px;
}

.py-74px {
  padding-top: 74px;
  padding-bottom: 74px;
}

.px-74px {
  padding-left: 74px;
  padding-right: 74px;
}

.pi-74px {
  padding: 74px !important;
}

.pti-74px {
  padding-top: 74px !important;
}

.pbi-74px {
  padding-bottom: 74px !important;
}

.pli-74px {
  padding-left: 74px !important;
}

.pri-74px {
  padding-right: 74px !important;
}

.pyi-74px {
  padding-top: 74px !important;
  padding-bottom: 74px !important;
}

.pxi-74px {
  padding-left: 74px !important;
  padding-right: 74px !important;
}

tr.p-74px > td {
  padding: 74px;
}

tr.pt-74px > td {
  padding-top: 74px;
}

tr.pb-74px > td {
  padding-bottom: 74px;
}

tr.pl-74px > td {
  padding-left: 74px;
}

tr.pr-74px > td {
  padding-right: 74px;
}

tr.py-74px > td {
  padding-top: 74px;
  padding-bottom: 74px;
}

tr.px-74px > td {
  padding-left: 74px;
  padding-right: 74px;
}

tr.pi-74px > td {
  padding: 74px !important;
}

tr.pti-74px > td {
  padding-top: 74px !important;
}

tr.pbi-74px > td {
  padding-bottom: 74px !important;
}

tr.pli-74px > td {
  padding-left: 74px !important;
}

tr.pri-74px > td {
  padding-right: 74px !important;
}

tr.pyi-74px > td {
  padding-top: 74px !important;
  padding-bottom: 74px !important;
}

tr.pxi-74px > td {
  padding-left: 74px !important;
  padding-right: 74px !important;
}

tr.pxi-74px > td {
  padding-left: 74px !important;
  padding-right: 74px !important;
}

.m-75px {
  margin: 75px;
}

.mt-75px {
  margin-top: 75px;
}

.mb-75px {
  margin-bottom: 75px;
}

.ml-75px {
  margin-left: 75px;
}

.mr-75px {
  margin-right: 75px;
}

.mt--75px {
  margin-top: -75px;
}

.mb--75px {
  margin-bottom: -75px;
}

.ml--75px {
  margin-left: -75px;
}

.mr--75px {
  margin-right: -75px;
}

.my-75px {
  margin-top: 75px;
  margin-bottom: 75px;
}

.mx-75px {
  margin-left: 75px;
  margin-right: 75px;
}

.mi-75px {
  margin: 75px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-75px {
  padding: 75px;
}

.pt-75px {
  padding-top: 75px;
}

.pb-75px {
  padding-bottom: 75px;
}

.pl-75px {
  padding-left: 75px;
}

.pr-75px {
  padding-right: 75px;
}

.py-75px {
  padding-top: 75px;
  padding-bottom: 75px;
}

.px-75px {
  padding-left: 75px;
  padding-right: 75px;
}

.pi-75px {
  padding: 75px !important;
}

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

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

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

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

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

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

tr.p-75px > td {
  padding: 75px;
}

tr.pt-75px > td {
  padding-top: 75px;
}

tr.pb-75px > td {
  padding-bottom: 75px;
}

tr.pl-75px > td {
  padding-left: 75px;
}

tr.pr-75px > td {
  padding-right: 75px;
}

tr.py-75px > td {
  padding-top: 75px;
  padding-bottom: 75px;
}

tr.px-75px > td {
  padding-left: 75px;
  padding-right: 75px;
}

tr.pi-75px > td {
  padding: 75px !important;
}

tr.pti-75px > td {
  padding-top: 75px !important;
}

tr.pbi-75px > td {
  padding-bottom: 75px !important;
}

tr.pli-75px > td {
  padding-left: 75px !important;
}

tr.pri-75px > td {
  padding-right: 75px !important;
}

tr.pyi-75px > td {
  padding-top: 75px !important;
  padding-bottom: 75px !important;
}

tr.pxi-75px > td {
  padding-left: 75px !important;
  padding-right: 75px !important;
}

tr.pxi-75px > td {
  padding-left: 75px !important;
  padding-right: 75px !important;
}

.m-76px {
  margin: 76px;
}

.mt-76px {
  margin-top: 76px;
}

.mb-76px {
  margin-bottom: 76px;
}

.ml-76px {
  margin-left: 76px;
}

.mr-76px {
  margin-right: 76px;
}

.mt--76px {
  margin-top: -76px;
}

.mb--76px {
  margin-bottom: -76px;
}

.ml--76px {
  margin-left: -76px;
}

.mr--76px {
  margin-right: -76px;
}

.my-76px {
  margin-top: 76px;
  margin-bottom: 76px;
}

.mx-76px {
  margin-left: 76px;
  margin-right: 76px;
}

.mi-76px {
  margin: 76px !important;
}

.mti-76px {
  margin-top: 76px !important;
}

.mbi-76px {
  margin-bottom: 76px !important;
}

.mli-76px {
  margin-left: 76px !important;
}

.mri-76px {
  margin-right: 76px !important;
}

.mti--76px {
  margin-top: -76px !important;
}

.mbi--76px {
  margin-bottom: -76px !important;
}

.mli--76px {
  margin-left: -76px !important;
}

.mri--76px {
  margin-right: -76px !important;
}

.myi-76px {
  margin-top: 76px !important;
  margin-bottom: 76px !important;
}

.mxi-76px {
  margin-left: 76px !important;
  margin-right: 76px !important;
}

.p-76px {
  padding: 76px;
}

.pt-76px {
  padding-top: 76px;
}

.pb-76px {
  padding-bottom: 76px;
}

.pl-76px {
  padding-left: 76px;
}

.pr-76px {
  padding-right: 76px;
}

.py-76px {
  padding-top: 76px;
  padding-bottom: 76px;
}

.px-76px {
  padding-left: 76px;
  padding-right: 76px;
}

.pi-76px {
  padding: 76px !important;
}

.pti-76px {
  padding-top: 76px !important;
}

.pbi-76px {
  padding-bottom: 76px !important;
}

.pli-76px {
  padding-left: 76px !important;
}

.pri-76px {
  padding-right: 76px !important;
}

.pyi-76px {
  padding-top: 76px !important;
  padding-bottom: 76px !important;
}

.pxi-76px {
  padding-left: 76px !important;
  padding-right: 76px !important;
}

tr.p-76px > td {
  padding: 76px;
}

tr.pt-76px > td {
  padding-top: 76px;
}

tr.pb-76px > td {
  padding-bottom: 76px;
}

tr.pl-76px > td {
  padding-left: 76px;
}

tr.pr-76px > td {
  padding-right: 76px;
}

tr.py-76px > td {
  padding-top: 76px;
  padding-bottom: 76px;
}

tr.px-76px > td {
  padding-left: 76px;
  padding-right: 76px;
}

tr.pi-76px > td {
  padding: 76px !important;
}

tr.pti-76px > td {
  padding-top: 76px !important;
}

tr.pbi-76px > td {
  padding-bottom: 76px !important;
}

tr.pli-76px > td {
  padding-left: 76px !important;
}

tr.pri-76px > td {
  padding-right: 76px !important;
}

tr.pyi-76px > td {
  padding-top: 76px !important;
  padding-bottom: 76px !important;
}

tr.pxi-76px > td {
  padding-left: 76px !important;
  padding-right: 76px !important;
}

tr.pxi-76px > td {
  padding-left: 76px !important;
  padding-right: 76px !important;
}

.m-77px {
  margin: 77px;
}

.mt-77px {
  margin-top: 77px;
}

.mb-77px {
  margin-bottom: 77px;
}

.ml-77px {
  margin-left: 77px;
}

.mr-77px {
  margin-right: 77px;
}

.mt--77px {
  margin-top: -77px;
}

.mb--77px {
  margin-bottom: -77px;
}

.ml--77px {
  margin-left: -77px;
}

.mr--77px {
  margin-right: -77px;
}

.my-77px {
  margin-top: 77px;
  margin-bottom: 77px;
}

.mx-77px {
  margin-left: 77px;
  margin-right: 77px;
}

.mi-77px {
  margin: 77px !important;
}

.mti-77px {
  margin-top: 77px !important;
}

.mbi-77px {
  margin-bottom: 77px !important;
}

.mli-77px {
  margin-left: 77px !important;
}

.mri-77px {
  margin-right: 77px !important;
}

.mti--77px {
  margin-top: -77px !important;
}

.mbi--77px {
  margin-bottom: -77px !important;
}

.mli--77px {
  margin-left: -77px !important;
}

.mri--77px {
  margin-right: -77px !important;
}

.myi-77px {
  margin-top: 77px !important;
  margin-bottom: 77px !important;
}

.mxi-77px {
  margin-left: 77px !important;
  margin-right: 77px !important;
}

.p-77px {
  padding: 77px;
}

.pt-77px {
  padding-top: 77px;
}

.pb-77px {
  padding-bottom: 77px;
}

.pl-77px {
  padding-left: 77px;
}

.pr-77px {
  padding-right: 77px;
}

.py-77px {
  padding-top: 77px;
  padding-bottom: 77px;
}

.px-77px {
  padding-left: 77px;
  padding-right: 77px;
}

.pi-77px {
  padding: 77px !important;
}

.pti-77px {
  padding-top: 77px !important;
}

.pbi-77px {
  padding-bottom: 77px !important;
}

.pli-77px {
  padding-left: 77px !important;
}

.pri-77px {
  padding-right: 77px !important;
}

.pyi-77px {
  padding-top: 77px !important;
  padding-bottom: 77px !important;
}

.pxi-77px {
  padding-left: 77px !important;
  padding-right: 77px !important;
}

tr.p-77px > td {
  padding: 77px;
}

tr.pt-77px > td {
  padding-top: 77px;
}

tr.pb-77px > td {
  padding-bottom: 77px;
}

tr.pl-77px > td {
  padding-left: 77px;
}

tr.pr-77px > td {
  padding-right: 77px;
}

tr.py-77px > td {
  padding-top: 77px;
  padding-bottom: 77px;
}

tr.px-77px > td {
  padding-left: 77px;
  padding-right: 77px;
}

tr.pi-77px > td {
  padding: 77px !important;
}

tr.pti-77px > td {
  padding-top: 77px !important;
}

tr.pbi-77px > td {
  padding-bottom: 77px !important;
}

tr.pli-77px > td {
  padding-left: 77px !important;
}

tr.pri-77px > td {
  padding-right: 77px !important;
}

tr.pyi-77px > td {
  padding-top: 77px !important;
  padding-bottom: 77px !important;
}

tr.pxi-77px > td {
  padding-left: 77px !important;
  padding-right: 77px !important;
}

tr.pxi-77px > td {
  padding-left: 77px !important;
  padding-right: 77px !important;
}

.m-78px {
  margin: 78px;
}

.mt-78px {
  margin-top: 78px;
}

.mb-78px {
  margin-bottom: 78px;
}

.ml-78px {
  margin-left: 78px;
}

.mr-78px {
  margin-right: 78px;
}

.mt--78px {
  margin-top: -78px;
}

.mb--78px {
  margin-bottom: -78px;
}

.ml--78px {
  margin-left: -78px;
}

.mr--78px {
  margin-right: -78px;
}

.my-78px {
  margin-top: 78px;
  margin-bottom: 78px;
}

.mx-78px {
  margin-left: 78px;
  margin-right: 78px;
}

.mi-78px {
  margin: 78px !important;
}

.mti-78px {
  margin-top: 78px !important;
}

.mbi-78px {
  margin-bottom: 78px !important;
}

.mli-78px {
  margin-left: 78px !important;
}

.mri-78px {
  margin-right: 78px !important;
}

.mti--78px {
  margin-top: -78px !important;
}

.mbi--78px {
  margin-bottom: -78px !important;
}

.mli--78px {
  margin-left: -78px !important;
}

.mri--78px {
  margin-right: -78px !important;
}

.myi-78px {
  margin-top: 78px !important;
  margin-bottom: 78px !important;
}

.mxi-78px {
  margin-left: 78px !important;
  margin-right: 78px !important;
}

.p-78px {
  padding: 78px;
}

.pt-78px {
  padding-top: 78px;
}

.pb-78px {
  padding-bottom: 78px;
}

.pl-78px {
  padding-left: 78px;
}

.pr-78px {
  padding-right: 78px;
}

.py-78px {
  padding-top: 78px;
  padding-bottom: 78px;
}

.px-78px {
  padding-left: 78px;
  padding-right: 78px;
}

.pi-78px {
  padding: 78px !important;
}

.pti-78px {
  padding-top: 78px !important;
}

.pbi-78px {
  padding-bottom: 78px !important;
}

.pli-78px {
  padding-left: 78px !important;
}

.pri-78px {
  padding-right: 78px !important;
}

.pyi-78px {
  padding-top: 78px !important;
  padding-bottom: 78px !important;
}

.pxi-78px {
  padding-left: 78px !important;
  padding-right: 78px !important;
}

tr.p-78px > td {
  padding: 78px;
}

tr.pt-78px > td {
  padding-top: 78px;
}

tr.pb-78px > td {
  padding-bottom: 78px;
}

tr.pl-78px > td {
  padding-left: 78px;
}

tr.pr-78px > td {
  padding-right: 78px;
}

tr.py-78px > td {
  padding-top: 78px;
  padding-bottom: 78px;
}

tr.px-78px > td {
  padding-left: 78px;
  padding-right: 78px;
}

tr.pi-78px > td {
  padding: 78px !important;
}

tr.pti-78px > td {
  padding-top: 78px !important;
}

tr.pbi-78px > td {
  padding-bottom: 78px !important;
}

tr.pli-78px > td {
  padding-left: 78px !important;
}

tr.pri-78px > td {
  padding-right: 78px !important;
}

tr.pyi-78px > td {
  padding-top: 78px !important;
  padding-bottom: 78px !important;
}

tr.pxi-78px > td {
  padding-left: 78px !important;
  padding-right: 78px !important;
}

tr.pxi-78px > td {
  padding-left: 78px !important;
  padding-right: 78px !important;
}

.m-79px {
  margin: 79px;
}

.mt-79px {
  margin-top: 79px;
}

.mb-79px {
  margin-bottom: 79px;
}

.ml-79px {
  margin-left: 79px;
}

.mr-79px {
  margin-right: 79px;
}

.mt--79px {
  margin-top: -79px;
}

.mb--79px {
  margin-bottom: -79px;
}

.ml--79px {
  margin-left: -79px;
}

.mr--79px {
  margin-right: -79px;
}

.my-79px {
  margin-top: 79px;
  margin-bottom: 79px;
}

.mx-79px {
  margin-left: 79px;
  margin-right: 79px;
}

.mi-79px {
  margin: 79px !important;
}

.mti-79px {
  margin-top: 79px !important;
}

.mbi-79px {
  margin-bottom: 79px !important;
}

.mli-79px {
  margin-left: 79px !important;
}

.mri-79px {
  margin-right: 79px !important;
}

.mti--79px {
  margin-top: -79px !important;
}

.mbi--79px {
  margin-bottom: -79px !important;
}

.mli--79px {
  margin-left: -79px !important;
}

.mri--79px {
  margin-right: -79px !important;
}

.myi-79px {
  margin-top: 79px !important;
  margin-bottom: 79px !important;
}

.mxi-79px {
  margin-left: 79px !important;
  margin-right: 79px !important;
}

.p-79px {
  padding: 79px;
}

.pt-79px {
  padding-top: 79px;
}

.pb-79px {
  padding-bottom: 79px;
}

.pl-79px {
  padding-left: 79px;
}

.pr-79px {
  padding-right: 79px;
}

.py-79px {
  padding-top: 79px;
  padding-bottom: 79px;
}

.px-79px {
  padding-left: 79px;
  padding-right: 79px;
}

.pi-79px {
  padding: 79px !important;
}

.pti-79px {
  padding-top: 79px !important;
}

.pbi-79px {
  padding-bottom: 79px !important;
}

.pli-79px {
  padding-left: 79px !important;
}

.pri-79px {
  padding-right: 79px !important;
}

.pyi-79px {
  padding-top: 79px !important;
  padding-bottom: 79px !important;
}

.pxi-79px {
  padding-left: 79px !important;
  padding-right: 79px !important;
}

tr.p-79px > td {
  padding: 79px;
}

tr.pt-79px > td {
  padding-top: 79px;
}

tr.pb-79px > td {
  padding-bottom: 79px;
}

tr.pl-79px > td {
  padding-left: 79px;
}

tr.pr-79px > td {
  padding-right: 79px;
}

tr.py-79px > td {
  padding-top: 79px;
  padding-bottom: 79px;
}

tr.px-79px > td {
  padding-left: 79px;
  padding-right: 79px;
}

tr.pi-79px > td {
  padding: 79px !important;
}

tr.pti-79px > td {
  padding-top: 79px !important;
}

tr.pbi-79px > td {
  padding-bottom: 79px !important;
}

tr.pli-79px > td {
  padding-left: 79px !important;
}

tr.pri-79px > td {
  padding-right: 79px !important;
}

tr.pyi-79px > td {
  padding-top: 79px !important;
  padding-bottom: 79px !important;
}

tr.pxi-79px > td {
  padding-left: 79px !important;
  padding-right: 79px !important;
}

tr.pxi-79px > td {
  padding-left: 79px !important;
  padding-right: 79px !important;
}

.m-80px {
  margin: 80px;
}

.mt-80px {
  margin-top: 80px;
}

.mb-80px {
  margin-bottom: 80px;
}

.ml-80px {
  margin-left: 80px;
}

.mr-80px {
  margin-right: 80px;
}

.mt--80px {
  margin-top: -80px;
}

.mb--80px {
  margin-bottom: -80px;
}

.ml--80px {
  margin-left: -80px;
}

.mr--80px {
  margin-right: -80px;
}

.my-80px {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mx-80px {
  margin-left: 80px;
  margin-right: 80px;
}

.mi-80px {
  margin: 80px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-80px {
  padding: 80px;
}

.pt-80px {
  padding-top: 80px;
}

.pb-80px {
  padding-bottom: 80px;
}

.pl-80px {
  padding-left: 80px;
}

.pr-80px {
  padding-right: 80px;
}

.py-80px {
  padding-top: 80px;
  padding-bottom: 80px;
}

.px-80px {
  padding-left: 80px;
  padding-right: 80px;
}

.pi-80px {
  padding: 80px !important;
}

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

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

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

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

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

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

tr.p-80px > td {
  padding: 80px;
}

tr.pt-80px > td {
  padding-top: 80px;
}

tr.pb-80px > td {
  padding-bottom: 80px;
}

tr.pl-80px > td {
  padding-left: 80px;
}

tr.pr-80px > td {
  padding-right: 80px;
}

tr.py-80px > td {
  padding-top: 80px;
  padding-bottom: 80px;
}

tr.px-80px > td {
  padding-left: 80px;
  padding-right: 80px;
}

tr.pi-80px > td {
  padding: 80px !important;
}

tr.pti-80px > td {
  padding-top: 80px !important;
}

tr.pbi-80px > td {
  padding-bottom: 80px !important;
}

tr.pli-80px > td {
  padding-left: 80px !important;
}

tr.pri-80px > td {
  padding-right: 80px !important;
}

tr.pyi-80px > td {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

tr.pxi-80px > td {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

tr.pxi-80px > td {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

.m-81px {
  margin: 81px;
}

.mt-81px {
  margin-top: 81px;
}

.mb-81px {
  margin-bottom: 81px;
}

.ml-81px {
  margin-left: 81px;
}

.mr-81px {
  margin-right: 81px;
}

.mt--81px {
  margin-top: -81px;
}

.mb--81px {
  margin-bottom: -81px;
}

.ml--81px {
  margin-left: -81px;
}

.mr--81px {
  margin-right: -81px;
}

.my-81px {
  margin-top: 81px;
  margin-bottom: 81px;
}

.mx-81px {
  margin-left: 81px;
  margin-right: 81px;
}

.mi-81px {
  margin: 81px !important;
}

.mti-81px {
  margin-top: 81px !important;
}

.mbi-81px {
  margin-bottom: 81px !important;
}

.mli-81px {
  margin-left: 81px !important;
}

.mri-81px {
  margin-right: 81px !important;
}

.mti--81px {
  margin-top: -81px !important;
}

.mbi--81px {
  margin-bottom: -81px !important;
}

.mli--81px {
  margin-left: -81px !important;
}

.mri--81px {
  margin-right: -81px !important;
}

.myi-81px {
  margin-top: 81px !important;
  margin-bottom: 81px !important;
}

.mxi-81px {
  margin-left: 81px !important;
  margin-right: 81px !important;
}

.p-81px {
  padding: 81px;
}

.pt-81px {
  padding-top: 81px;
}

.pb-81px {
  padding-bottom: 81px;
}

.pl-81px {
  padding-left: 81px;
}

.pr-81px {
  padding-right: 81px;
}

.py-81px {
  padding-top: 81px;
  padding-bottom: 81px;
}

.px-81px {
  padding-left: 81px;
  padding-right: 81px;
}

.pi-81px {
  padding: 81px !important;
}

.pti-81px {
  padding-top: 81px !important;
}

.pbi-81px {
  padding-bottom: 81px !important;
}

.pli-81px {
  padding-left: 81px !important;
}

.pri-81px {
  padding-right: 81px !important;
}

.pyi-81px {
  padding-top: 81px !important;
  padding-bottom: 81px !important;
}

.pxi-81px {
  padding-left: 81px !important;
  padding-right: 81px !important;
}

tr.p-81px > td {
  padding: 81px;
}

tr.pt-81px > td {
  padding-top: 81px;
}

tr.pb-81px > td {
  padding-bottom: 81px;
}

tr.pl-81px > td {
  padding-left: 81px;
}

tr.pr-81px > td {
  padding-right: 81px;
}

tr.py-81px > td {
  padding-top: 81px;
  padding-bottom: 81px;
}

tr.px-81px > td {
  padding-left: 81px;
  padding-right: 81px;
}

tr.pi-81px > td {
  padding: 81px !important;
}

tr.pti-81px > td {
  padding-top: 81px !important;
}

tr.pbi-81px > td {
  padding-bottom: 81px !important;
}

tr.pli-81px > td {
  padding-left: 81px !important;
}

tr.pri-81px > td {
  padding-right: 81px !important;
}

tr.pyi-81px > td {
  padding-top: 81px !important;
  padding-bottom: 81px !important;
}

tr.pxi-81px > td {
  padding-left: 81px !important;
  padding-right: 81px !important;
}

tr.pxi-81px > td {
  padding-left: 81px !important;
  padding-right: 81px !important;
}

.m-82px {
  margin: 82px;
}

.mt-82px {
  margin-top: 82px;
}

.mb-82px {
  margin-bottom: 82px;
}

.ml-82px {
  margin-left: 82px;
}

.mr-82px {
  margin-right: 82px;
}

.mt--82px {
  margin-top: -82px;
}

.mb--82px {
  margin-bottom: -82px;
}

.ml--82px {
  margin-left: -82px;
}

.mr--82px {
  margin-right: -82px;
}

.my-82px {
  margin-top: 82px;
  margin-bottom: 82px;
}

.mx-82px {
  margin-left: 82px;
  margin-right: 82px;
}

.mi-82px {
  margin: 82px !important;
}

.mti-82px {
  margin-top: 82px !important;
}

.mbi-82px {
  margin-bottom: 82px !important;
}

.mli-82px {
  margin-left: 82px !important;
}

.mri-82px {
  margin-right: 82px !important;
}

.mti--82px {
  margin-top: -82px !important;
}

.mbi--82px {
  margin-bottom: -82px !important;
}

.mli--82px {
  margin-left: -82px !important;
}

.mri--82px {
  margin-right: -82px !important;
}

.myi-82px {
  margin-top: 82px !important;
  margin-bottom: 82px !important;
}

.mxi-82px {
  margin-left: 82px !important;
  margin-right: 82px !important;
}

.p-82px {
  padding: 82px;
}

.pt-82px {
  padding-top: 82px;
}

.pb-82px {
  padding-bottom: 82px;
}

.pl-82px {
  padding-left: 82px;
}

.pr-82px {
  padding-right: 82px;
}

.py-82px {
  padding-top: 82px;
  padding-bottom: 82px;
}

.px-82px {
  padding-left: 82px;
  padding-right: 82px;
}

.pi-82px {
  padding: 82px !important;
}

.pti-82px {
  padding-top: 82px !important;
}

.pbi-82px {
  padding-bottom: 82px !important;
}

.pli-82px {
  padding-left: 82px !important;
}

.pri-82px {
  padding-right: 82px !important;
}

.pyi-82px {
  padding-top: 82px !important;
  padding-bottom: 82px !important;
}

.pxi-82px {
  padding-left: 82px !important;
  padding-right: 82px !important;
}

tr.p-82px > td {
  padding: 82px;
}

tr.pt-82px > td {
  padding-top: 82px;
}

tr.pb-82px > td {
  padding-bottom: 82px;
}

tr.pl-82px > td {
  padding-left: 82px;
}

tr.pr-82px > td {
  padding-right: 82px;
}

tr.py-82px > td {
  padding-top: 82px;
  padding-bottom: 82px;
}

tr.px-82px > td {
  padding-left: 82px;
  padding-right: 82px;
}

tr.pi-82px > td {
  padding: 82px !important;
}

tr.pti-82px > td {
  padding-top: 82px !important;
}

tr.pbi-82px > td {
  padding-bottom: 82px !important;
}

tr.pli-82px > td {
  padding-left: 82px !important;
}

tr.pri-82px > td {
  padding-right: 82px !important;
}

tr.pyi-82px > td {
  padding-top: 82px !important;
  padding-bottom: 82px !important;
}

tr.pxi-82px > td {
  padding-left: 82px !important;
  padding-right: 82px !important;
}

tr.pxi-82px > td {
  padding-left: 82px !important;
  padding-right: 82px !important;
}

.m-83px {
  margin: 83px;
}

.mt-83px {
  margin-top: 83px;
}

.mb-83px {
  margin-bottom: 83px;
}

.ml-83px {
  margin-left: 83px;
}

.mr-83px {
  margin-right: 83px;
}

.mt--83px {
  margin-top: -83px;
}

.mb--83px {
  margin-bottom: -83px;
}

.ml--83px {
  margin-left: -83px;
}

.mr--83px {
  margin-right: -83px;
}

.my-83px {
  margin-top: 83px;
  margin-bottom: 83px;
}

.mx-83px {
  margin-left: 83px;
  margin-right: 83px;
}

.mi-83px {
  margin: 83px !important;
}

.mti-83px {
  margin-top: 83px !important;
}

.mbi-83px {
  margin-bottom: 83px !important;
}

.mli-83px {
  margin-left: 83px !important;
}

.mri-83px {
  margin-right: 83px !important;
}

.mti--83px {
  margin-top: -83px !important;
}

.mbi--83px {
  margin-bottom: -83px !important;
}

.mli--83px {
  margin-left: -83px !important;
}

.mri--83px {
  margin-right: -83px !important;
}

.myi-83px {
  margin-top: 83px !important;
  margin-bottom: 83px !important;
}

.mxi-83px {
  margin-left: 83px !important;
  margin-right: 83px !important;
}

.p-83px {
  padding: 83px;
}

.pt-83px {
  padding-top: 83px;
}

.pb-83px {
  padding-bottom: 83px;
}

.pl-83px {
  padding-left: 83px;
}

.pr-83px {
  padding-right: 83px;
}

.py-83px {
  padding-top: 83px;
  padding-bottom: 83px;
}

.px-83px {
  padding-left: 83px;
  padding-right: 83px;
}

.pi-83px {
  padding: 83px !important;
}

.pti-83px {
  padding-top: 83px !important;
}

.pbi-83px {
  padding-bottom: 83px !important;
}

.pli-83px {
  padding-left: 83px !important;
}

.pri-83px {
  padding-right: 83px !important;
}

.pyi-83px {
  padding-top: 83px !important;
  padding-bottom: 83px !important;
}

.pxi-83px {
  padding-left: 83px !important;
  padding-right: 83px !important;
}

tr.p-83px > td {
  padding: 83px;
}

tr.pt-83px > td {
  padding-top: 83px;
}

tr.pb-83px > td {
  padding-bottom: 83px;
}

tr.pl-83px > td {
  padding-left: 83px;
}

tr.pr-83px > td {
  padding-right: 83px;
}

tr.py-83px > td {
  padding-top: 83px;
  padding-bottom: 83px;
}

tr.px-83px > td {
  padding-left: 83px;
  padding-right: 83px;
}

tr.pi-83px > td {
  padding: 83px !important;
}

tr.pti-83px > td {
  padding-top: 83px !important;
}

tr.pbi-83px > td {
  padding-bottom: 83px !important;
}

tr.pli-83px > td {
  padding-left: 83px !important;
}

tr.pri-83px > td {
  padding-right: 83px !important;
}

tr.pyi-83px > td {
  padding-top: 83px !important;
  padding-bottom: 83px !important;
}

tr.pxi-83px > td {
  padding-left: 83px !important;
  padding-right: 83px !important;
}

tr.pxi-83px > td {
  padding-left: 83px !important;
  padding-right: 83px !important;
}

.m-84px {
  margin: 84px;
}

.mt-84px {
  margin-top: 84px;
}

.mb-84px {
  margin-bottom: 84px;
}

.ml-84px {
  margin-left: 84px;
}

.mr-84px {
  margin-right: 84px;
}

.mt--84px {
  margin-top: -84px;
}

.mb--84px {
  margin-bottom: -84px;
}

.ml--84px {
  margin-left: -84px;
}

.mr--84px {
  margin-right: -84px;
}

.my-84px {
  margin-top: 84px;
  margin-bottom: 84px;
}

.mx-84px {
  margin-left: 84px;
  margin-right: 84px;
}

.mi-84px {
  margin: 84px !important;
}

.mti-84px {
  margin-top: 84px !important;
}

.mbi-84px {
  margin-bottom: 84px !important;
}

.mli-84px {
  margin-left: 84px !important;
}

.mri-84px {
  margin-right: 84px !important;
}

.mti--84px {
  margin-top: -84px !important;
}

.mbi--84px {
  margin-bottom: -84px !important;
}

.mli--84px {
  margin-left: -84px !important;
}

.mri--84px {
  margin-right: -84px !important;
}

.myi-84px {
  margin-top: 84px !important;
  margin-bottom: 84px !important;
}

.mxi-84px {
  margin-left: 84px !important;
  margin-right: 84px !important;
}

.p-84px {
  padding: 84px;
}

.pt-84px {
  padding-top: 84px;
}

.pb-84px {
  padding-bottom: 84px;
}

.pl-84px {
  padding-left: 84px;
}

.pr-84px {
  padding-right: 84px;
}

.py-84px {
  padding-top: 84px;
  padding-bottom: 84px;
}

.px-84px {
  padding-left: 84px;
  padding-right: 84px;
}

.pi-84px {
  padding: 84px !important;
}

.pti-84px {
  padding-top: 84px !important;
}

.pbi-84px {
  padding-bottom: 84px !important;
}

.pli-84px {
  padding-left: 84px !important;
}

.pri-84px {
  padding-right: 84px !important;
}

.pyi-84px {
  padding-top: 84px !important;
  padding-bottom: 84px !important;
}

.pxi-84px {
  padding-left: 84px !important;
  padding-right: 84px !important;
}

tr.p-84px > td {
  padding: 84px;
}

tr.pt-84px > td {
  padding-top: 84px;
}

tr.pb-84px > td {
  padding-bottom: 84px;
}

tr.pl-84px > td {
  padding-left: 84px;
}

tr.pr-84px > td {
  padding-right: 84px;
}

tr.py-84px > td {
  padding-top: 84px;
  padding-bottom: 84px;
}

tr.px-84px > td {
  padding-left: 84px;
  padding-right: 84px;
}

tr.pi-84px > td {
  padding: 84px !important;
}

tr.pti-84px > td {
  padding-top: 84px !important;
}

tr.pbi-84px > td {
  padding-bottom: 84px !important;
}

tr.pli-84px > td {
  padding-left: 84px !important;
}

tr.pri-84px > td {
  padding-right: 84px !important;
}

tr.pyi-84px > td {
  padding-top: 84px !important;
  padding-bottom: 84px !important;
}

tr.pxi-84px > td {
  padding-left: 84px !important;
  padding-right: 84px !important;
}

tr.pxi-84px > td {
  padding-left: 84px !important;
  padding-right: 84px !important;
}

.m-85px {
  margin: 85px;
}

.mt-85px {
  margin-top: 85px;
}

.mb-85px {
  margin-bottom: 85px;
}

.ml-85px {
  margin-left: 85px;
}

.mr-85px {
  margin-right: 85px;
}

.mt--85px {
  margin-top: -85px;
}

.mb--85px {
  margin-bottom: -85px;
}

.ml--85px {
  margin-left: -85px;
}

.mr--85px {
  margin-right: -85px;
}

.my-85px {
  margin-top: 85px;
  margin-bottom: 85px;
}

.mx-85px {
  margin-left: 85px;
  margin-right: 85px;
}

.mi-85px {
  margin: 85px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-85px {
  padding: 85px;
}

.pt-85px {
  padding-top: 85px;
}

.pb-85px {
  padding-bottom: 85px;
}

.pl-85px {
  padding-left: 85px;
}

.pr-85px {
  padding-right: 85px;
}

.py-85px {
  padding-top: 85px;
  padding-bottom: 85px;
}

.px-85px {
  padding-left: 85px;
  padding-right: 85px;
}

.pi-85px {
  padding: 85px !important;
}

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

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

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

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

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

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

tr.p-85px > td {
  padding: 85px;
}

tr.pt-85px > td {
  padding-top: 85px;
}

tr.pb-85px > td {
  padding-bottom: 85px;
}

tr.pl-85px > td {
  padding-left: 85px;
}

tr.pr-85px > td {
  padding-right: 85px;
}

tr.py-85px > td {
  padding-top: 85px;
  padding-bottom: 85px;
}

tr.px-85px > td {
  padding-left: 85px;
  padding-right: 85px;
}

tr.pi-85px > td {
  padding: 85px !important;
}

tr.pti-85px > td {
  padding-top: 85px !important;
}

tr.pbi-85px > td {
  padding-bottom: 85px !important;
}

tr.pli-85px > td {
  padding-left: 85px !important;
}

tr.pri-85px > td {
  padding-right: 85px !important;
}

tr.pyi-85px > td {
  padding-top: 85px !important;
  padding-bottom: 85px !important;
}

tr.pxi-85px > td {
  padding-left: 85px !important;
  padding-right: 85px !important;
}

tr.pxi-85px > td {
  padding-left: 85px !important;
  padding-right: 85px !important;
}

.m-86px {
  margin: 86px;
}

.mt-86px {
  margin-top: 86px;
}

.mb-86px {
  margin-bottom: 86px;
}

.ml-86px {
  margin-left: 86px;
}

.mr-86px {
  margin-right: 86px;
}

.mt--86px {
  margin-top: -86px;
}

.mb--86px {
  margin-bottom: -86px;
}

.ml--86px {
  margin-left: -86px;
}

.mr--86px {
  margin-right: -86px;
}

.my-86px {
  margin-top: 86px;
  margin-bottom: 86px;
}

.mx-86px {
  margin-left: 86px;
  margin-right: 86px;
}

.mi-86px {
  margin: 86px !important;
}

.mti-86px {
  margin-top: 86px !important;
}

.mbi-86px {
  margin-bottom: 86px !important;
}

.mli-86px {
  margin-left: 86px !important;
}

.mri-86px {
  margin-right: 86px !important;
}

.mti--86px {
  margin-top: -86px !important;
}

.mbi--86px {
  margin-bottom: -86px !important;
}

.mli--86px {
  margin-left: -86px !important;
}

.mri--86px {
  margin-right: -86px !important;
}

.myi-86px {
  margin-top: 86px !important;
  margin-bottom: 86px !important;
}

.mxi-86px {
  margin-left: 86px !important;
  margin-right: 86px !important;
}

.p-86px {
  padding: 86px;
}

.pt-86px {
  padding-top: 86px;
}

.pb-86px {
  padding-bottom: 86px;
}

.pl-86px {
  padding-left: 86px;
}

.pr-86px {
  padding-right: 86px;
}

.py-86px {
  padding-top: 86px;
  padding-bottom: 86px;
}

.px-86px {
  padding-left: 86px;
  padding-right: 86px;
}

.pi-86px {
  padding: 86px !important;
}

.pti-86px {
  padding-top: 86px !important;
}

.pbi-86px {
  padding-bottom: 86px !important;
}

.pli-86px {
  padding-left: 86px !important;
}

.pri-86px {
  padding-right: 86px !important;
}

.pyi-86px {
  padding-top: 86px !important;
  padding-bottom: 86px !important;
}

.pxi-86px {
  padding-left: 86px !important;
  padding-right: 86px !important;
}

tr.p-86px > td {
  padding: 86px;
}

tr.pt-86px > td {
  padding-top: 86px;
}

tr.pb-86px > td {
  padding-bottom: 86px;
}

tr.pl-86px > td {
  padding-left: 86px;
}

tr.pr-86px > td {
  padding-right: 86px;
}

tr.py-86px > td {
  padding-top: 86px;
  padding-bottom: 86px;
}

tr.px-86px > td {
  padding-left: 86px;
  padding-right: 86px;
}

tr.pi-86px > td {
  padding: 86px !important;
}

tr.pti-86px > td {
  padding-top: 86px !important;
}

tr.pbi-86px > td {
  padding-bottom: 86px !important;
}

tr.pli-86px > td {
  padding-left: 86px !important;
}

tr.pri-86px > td {
  padding-right: 86px !important;
}

tr.pyi-86px > td {
  padding-top: 86px !important;
  padding-bottom: 86px !important;
}

tr.pxi-86px > td {
  padding-left: 86px !important;
  padding-right: 86px !important;
}

tr.pxi-86px > td {
  padding-left: 86px !important;
  padding-right: 86px !important;
}

.m-87px {
  margin: 87px;
}

.mt-87px {
  margin-top: 87px;
}

.mb-87px {
  margin-bottom: 87px;
}

.ml-87px {
  margin-left: 87px;
}

.mr-87px {
  margin-right: 87px;
}

.mt--87px {
  margin-top: -87px;
}

.mb--87px {
  margin-bottom: -87px;
}

.ml--87px {
  margin-left: -87px;
}

.mr--87px {
  margin-right: -87px;
}

.my-87px {
  margin-top: 87px;
  margin-bottom: 87px;
}

.mx-87px {
  margin-left: 87px;
  margin-right: 87px;
}

.mi-87px {
  margin: 87px !important;
}

.mti-87px {
  margin-top: 87px !important;
}

.mbi-87px {
  margin-bottom: 87px !important;
}

.mli-87px {
  margin-left: 87px !important;
}

.mri-87px {
  margin-right: 87px !important;
}

.mti--87px {
  margin-top: -87px !important;
}

.mbi--87px {
  margin-bottom: -87px !important;
}

.mli--87px {
  margin-left: -87px !important;
}

.mri--87px {
  margin-right: -87px !important;
}

.myi-87px {
  margin-top: 87px !important;
  margin-bottom: 87px !important;
}

.mxi-87px {
  margin-left: 87px !important;
  margin-right: 87px !important;
}

.p-87px {
  padding: 87px;
}

.pt-87px {
  padding-top: 87px;
}

.pb-87px {
  padding-bottom: 87px;
}

.pl-87px {
  padding-left: 87px;
}

.pr-87px {
  padding-right: 87px;
}

.py-87px {
  padding-top: 87px;
  padding-bottom: 87px;
}

.px-87px {
  padding-left: 87px;
  padding-right: 87px;
}

.pi-87px {
  padding: 87px !important;
}

.pti-87px {
  padding-top: 87px !important;
}

.pbi-87px {
  padding-bottom: 87px !important;
}

.pli-87px {
  padding-left: 87px !important;
}

.pri-87px {
  padding-right: 87px !important;
}

.pyi-87px {
  padding-top: 87px !important;
  padding-bottom: 87px !important;
}

.pxi-87px {
  padding-left: 87px !important;
  padding-right: 87px !important;
}

tr.p-87px > td {
  padding: 87px;
}

tr.pt-87px > td {
  padding-top: 87px;
}

tr.pb-87px > td {
  padding-bottom: 87px;
}

tr.pl-87px > td {
  padding-left: 87px;
}

tr.pr-87px > td {
  padding-right: 87px;
}

tr.py-87px > td {
  padding-top: 87px;
  padding-bottom: 87px;
}

tr.px-87px > td {
  padding-left: 87px;
  padding-right: 87px;
}

tr.pi-87px > td {
  padding: 87px !important;
}

tr.pti-87px > td {
  padding-top: 87px !important;
}

tr.pbi-87px > td {
  padding-bottom: 87px !important;
}

tr.pli-87px > td {
  padding-left: 87px !important;
}

tr.pri-87px > td {
  padding-right: 87px !important;
}

tr.pyi-87px > td {
  padding-top: 87px !important;
  padding-bottom: 87px !important;
}

tr.pxi-87px > td {
  padding-left: 87px !important;
  padding-right: 87px !important;
}

tr.pxi-87px > td {
  padding-left: 87px !important;
  padding-right: 87px !important;
}

.m-88px {
  margin: 88px;
}

.mt-88px {
  margin-top: 88px;
}

.mb-88px {
  margin-bottom: 88px;
}

.ml-88px {
  margin-left: 88px;
}

.mr-88px {
  margin-right: 88px;
}

.mt--88px {
  margin-top: -88px;
}

.mb--88px {
  margin-bottom: -88px;
}

.ml--88px {
  margin-left: -88px;
}

.mr--88px {
  margin-right: -88px;
}

.my-88px {
  margin-top: 88px;
  margin-bottom: 88px;
}

.mx-88px {
  margin-left: 88px;
  margin-right: 88px;
}

.mi-88px {
  margin: 88px !important;
}

.mti-88px {
  margin-top: 88px !important;
}

.mbi-88px {
  margin-bottom: 88px !important;
}

.mli-88px {
  margin-left: 88px !important;
}

.mri-88px {
  margin-right: 88px !important;
}

.mti--88px {
  margin-top: -88px !important;
}

.mbi--88px {
  margin-bottom: -88px !important;
}

.mli--88px {
  margin-left: -88px !important;
}

.mri--88px {
  margin-right: -88px !important;
}

.myi-88px {
  margin-top: 88px !important;
  margin-bottom: 88px !important;
}

.mxi-88px {
  margin-left: 88px !important;
  margin-right: 88px !important;
}

.p-88px {
  padding: 88px;
}

.pt-88px {
  padding-top: 88px;
}

.pb-88px {
  padding-bottom: 88px;
}

.pl-88px {
  padding-left: 88px;
}

.pr-88px {
  padding-right: 88px;
}

.py-88px {
  padding-top: 88px;
  padding-bottom: 88px;
}

.px-88px {
  padding-left: 88px;
  padding-right: 88px;
}

.pi-88px {
  padding: 88px !important;
}

.pti-88px {
  padding-top: 88px !important;
}

.pbi-88px {
  padding-bottom: 88px !important;
}

.pli-88px {
  padding-left: 88px !important;
}

.pri-88px {
  padding-right: 88px !important;
}

.pyi-88px {
  padding-top: 88px !important;
  padding-bottom: 88px !important;
}

.pxi-88px {
  padding-left: 88px !important;
  padding-right: 88px !important;
}

tr.p-88px > td {
  padding: 88px;
}

tr.pt-88px > td {
  padding-top: 88px;
}

tr.pb-88px > td {
  padding-bottom: 88px;
}

tr.pl-88px > td {
  padding-left: 88px;
}

tr.pr-88px > td {
  padding-right: 88px;
}

tr.py-88px > td {
  padding-top: 88px;
  padding-bottom: 88px;
}

tr.px-88px > td {
  padding-left: 88px;
  padding-right: 88px;
}

tr.pi-88px > td {
  padding: 88px !important;
}

tr.pti-88px > td {
  padding-top: 88px !important;
}

tr.pbi-88px > td {
  padding-bottom: 88px !important;
}

tr.pli-88px > td {
  padding-left: 88px !important;
}

tr.pri-88px > td {
  padding-right: 88px !important;
}

tr.pyi-88px > td {
  padding-top: 88px !important;
  padding-bottom: 88px !important;
}

tr.pxi-88px > td {
  padding-left: 88px !important;
  padding-right: 88px !important;
}

tr.pxi-88px > td {
  padding-left: 88px !important;
  padding-right: 88px !important;
}

.m-89px {
  margin: 89px;
}

.mt-89px {
  margin-top: 89px;
}

.mb-89px {
  margin-bottom: 89px;
}

.ml-89px {
  margin-left: 89px;
}

.mr-89px {
  margin-right: 89px;
}

.mt--89px {
  margin-top: -89px;
}

.mb--89px {
  margin-bottom: -89px;
}

.ml--89px {
  margin-left: -89px;
}

.mr--89px {
  margin-right: -89px;
}

.my-89px {
  margin-top: 89px;
  margin-bottom: 89px;
}

.mx-89px {
  margin-left: 89px;
  margin-right: 89px;
}

.mi-89px {
  margin: 89px !important;
}

.mti-89px {
  margin-top: 89px !important;
}

.mbi-89px {
  margin-bottom: 89px !important;
}

.mli-89px {
  margin-left: 89px !important;
}

.mri-89px {
  margin-right: 89px !important;
}

.mti--89px {
  margin-top: -89px !important;
}

.mbi--89px {
  margin-bottom: -89px !important;
}

.mli--89px {
  margin-left: -89px !important;
}

.mri--89px {
  margin-right: -89px !important;
}

.myi-89px {
  margin-top: 89px !important;
  margin-bottom: 89px !important;
}

.mxi-89px {
  margin-left: 89px !important;
  margin-right: 89px !important;
}

.p-89px {
  padding: 89px;
}

.pt-89px {
  padding-top: 89px;
}

.pb-89px {
  padding-bottom: 89px;
}

.pl-89px {
  padding-left: 89px;
}

.pr-89px {
  padding-right: 89px;
}

.py-89px {
  padding-top: 89px;
  padding-bottom: 89px;
}

.px-89px {
  padding-left: 89px;
  padding-right: 89px;
}

.pi-89px {
  padding: 89px !important;
}

.pti-89px {
  padding-top: 89px !important;
}

.pbi-89px {
  padding-bottom: 89px !important;
}

.pli-89px {
  padding-left: 89px !important;
}

.pri-89px {
  padding-right: 89px !important;
}

.pyi-89px {
  padding-top: 89px !important;
  padding-bottom: 89px !important;
}

.pxi-89px {
  padding-left: 89px !important;
  padding-right: 89px !important;
}

tr.p-89px > td {
  padding: 89px;
}

tr.pt-89px > td {
  padding-top: 89px;
}

tr.pb-89px > td {
  padding-bottom: 89px;
}

tr.pl-89px > td {
  padding-left: 89px;
}

tr.pr-89px > td {
  padding-right: 89px;
}

tr.py-89px > td {
  padding-top: 89px;
  padding-bottom: 89px;
}

tr.px-89px > td {
  padding-left: 89px;
  padding-right: 89px;
}

tr.pi-89px > td {
  padding: 89px !important;
}

tr.pti-89px > td {
  padding-top: 89px !important;
}

tr.pbi-89px > td {
  padding-bottom: 89px !important;
}

tr.pli-89px > td {
  padding-left: 89px !important;
}

tr.pri-89px > td {
  padding-right: 89px !important;
}

tr.pyi-89px > td {
  padding-top: 89px !important;
  padding-bottom: 89px !important;
}

tr.pxi-89px > td {
  padding-left: 89px !important;
  padding-right: 89px !important;
}

tr.pxi-89px > td {
  padding-left: 89px !important;
  padding-right: 89px !important;
}

.m-90px {
  margin: 90px;
}

.mt-90px {
  margin-top: 90px;
}

.mb-90px {
  margin-bottom: 90px;
}

.ml-90px {
  margin-left: 90px;
}

.mr-90px {
  margin-right: 90px;
}

.mt--90px {
  margin-top: -90px;
}

.mb--90px {
  margin-bottom: -90px;
}

.ml--90px {
  margin-left: -90px;
}

.mr--90px {
  margin-right: -90px;
}

.my-90px {
  margin-top: 90px;
  margin-bottom: 90px;
}

.mx-90px {
  margin-left: 90px;
  margin-right: 90px;
}

.mi-90px {
  margin: 90px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-90px {
  padding: 90px;
}

.pt-90px {
  padding-top: 90px;
}

.pb-90px {
  padding-bottom: 90px;
}

.pl-90px {
  padding-left: 90px;
}

.pr-90px {
  padding-right: 90px;
}

.py-90px {
  padding-top: 90px;
  padding-bottom: 90px;
}

.px-90px {
  padding-left: 90px;
  padding-right: 90px;
}

.pi-90px {
  padding: 90px !important;
}

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

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

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

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

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

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

tr.p-90px > td {
  padding: 90px;
}

tr.pt-90px > td {
  padding-top: 90px;
}

tr.pb-90px > td {
  padding-bottom: 90px;
}

tr.pl-90px > td {
  padding-left: 90px;
}

tr.pr-90px > td {
  padding-right: 90px;
}

tr.py-90px > td {
  padding-top: 90px;
  padding-bottom: 90px;
}

tr.px-90px > td {
  padding-left: 90px;
  padding-right: 90px;
}

tr.pi-90px > td {
  padding: 90px !important;
}

tr.pti-90px > td {
  padding-top: 90px !important;
}

tr.pbi-90px > td {
  padding-bottom: 90px !important;
}

tr.pli-90px > td {
  padding-left: 90px !important;
}

tr.pri-90px > td {
  padding-right: 90px !important;
}

tr.pyi-90px > td {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

tr.pxi-90px > td {
  padding-left: 90px !important;
  padding-right: 90px !important;
}

tr.pxi-90px > td {
  padding-left: 90px !important;
  padding-right: 90px !important;
}

.m-91px {
  margin: 91px;
}

.mt-91px {
  margin-top: 91px;
}

.mb-91px {
  margin-bottom: 91px;
}

.ml-91px {
  margin-left: 91px;
}

.mr-91px {
  margin-right: 91px;
}

.mt--91px {
  margin-top: -91px;
}

.mb--91px {
  margin-bottom: -91px;
}

.ml--91px {
  margin-left: -91px;
}

.mr--91px {
  margin-right: -91px;
}

.my-91px {
  margin-top: 91px;
  margin-bottom: 91px;
}

.mx-91px {
  margin-left: 91px;
  margin-right: 91px;
}

.mi-91px {
  margin: 91px !important;
}

.mti-91px {
  margin-top: 91px !important;
}

.mbi-91px {
  margin-bottom: 91px !important;
}

.mli-91px {
  margin-left: 91px !important;
}

.mri-91px {
  margin-right: 91px !important;
}

.mti--91px {
  margin-top: -91px !important;
}

.mbi--91px {
  margin-bottom: -91px !important;
}

.mli--91px {
  margin-left: -91px !important;
}

.mri--91px {
  margin-right: -91px !important;
}

.myi-91px {
  margin-top: 91px !important;
  margin-bottom: 91px !important;
}

.mxi-91px {
  margin-left: 91px !important;
  margin-right: 91px !important;
}

.p-91px {
  padding: 91px;
}

.pt-91px {
  padding-top: 91px;
}

.pb-91px {
  padding-bottom: 91px;
}

.pl-91px {
  padding-left: 91px;
}

.pr-91px {
  padding-right: 91px;
}

.py-91px {
  padding-top: 91px;
  padding-bottom: 91px;
}

.px-91px {
  padding-left: 91px;
  padding-right: 91px;
}

.pi-91px {
  padding: 91px !important;
}

.pti-91px {
  padding-top: 91px !important;
}

.pbi-91px {
  padding-bottom: 91px !important;
}

.pli-91px {
  padding-left: 91px !important;
}

.pri-91px {
  padding-right: 91px !important;
}

.pyi-91px {
  padding-top: 91px !important;
  padding-bottom: 91px !important;
}

.pxi-91px {
  padding-left: 91px !important;
  padding-right: 91px !important;
}

tr.p-91px > td {
  padding: 91px;
}

tr.pt-91px > td {
  padding-top: 91px;
}

tr.pb-91px > td {
  padding-bottom: 91px;
}

tr.pl-91px > td {
  padding-left: 91px;
}

tr.pr-91px > td {
  padding-right: 91px;
}

tr.py-91px > td {
  padding-top: 91px;
  padding-bottom: 91px;
}

tr.px-91px > td {
  padding-left: 91px;
  padding-right: 91px;
}

tr.pi-91px > td {
  padding: 91px !important;
}

tr.pti-91px > td {
  padding-top: 91px !important;
}

tr.pbi-91px > td {
  padding-bottom: 91px !important;
}

tr.pli-91px > td {
  padding-left: 91px !important;
}

tr.pri-91px > td {
  padding-right: 91px !important;
}

tr.pyi-91px > td {
  padding-top: 91px !important;
  padding-bottom: 91px !important;
}

tr.pxi-91px > td {
  padding-left: 91px !important;
  padding-right: 91px !important;
}

tr.pxi-91px > td {
  padding-left: 91px !important;
  padding-right: 91px !important;
}

.m-92px {
  margin: 92px;
}

.mt-92px {
  margin-top: 92px;
}

.mb-92px {
  margin-bottom: 92px;
}

.ml-92px {
  margin-left: 92px;
}

.mr-92px {
  margin-right: 92px;
}

.mt--92px {
  margin-top: -92px;
}

.mb--92px {
  margin-bottom: -92px;
}

.ml--92px {
  margin-left: -92px;
}

.mr--92px {
  margin-right: -92px;
}

.my-92px {
  margin-top: 92px;
  margin-bottom: 92px;
}

.mx-92px {
  margin-left: 92px;
  margin-right: 92px;
}

.mi-92px {
  margin: 92px !important;
}

.mti-92px {
  margin-top: 92px !important;
}

.mbi-92px {
  margin-bottom: 92px !important;
}

.mli-92px {
  margin-left: 92px !important;
}

.mri-92px {
  margin-right: 92px !important;
}

.mti--92px {
  margin-top: -92px !important;
}

.mbi--92px {
  margin-bottom: -92px !important;
}

.mli--92px {
  margin-left: -92px !important;
}

.mri--92px {
  margin-right: -92px !important;
}

.myi-92px {
  margin-top: 92px !important;
  margin-bottom: 92px !important;
}

.mxi-92px {
  margin-left: 92px !important;
  margin-right: 92px !important;
}

.p-92px {
  padding: 92px;
}

.pt-92px {
  padding-top: 92px;
}

.pb-92px {
  padding-bottom: 92px;
}

.pl-92px {
  padding-left: 92px;
}

.pr-92px {
  padding-right: 92px;
}

.py-92px {
  padding-top: 92px;
  padding-bottom: 92px;
}

.px-92px {
  padding-left: 92px;
  padding-right: 92px;
}

.pi-92px {
  padding: 92px !important;
}

.pti-92px {
  padding-top: 92px !important;
}

.pbi-92px {
  padding-bottom: 92px !important;
}

.pli-92px {
  padding-left: 92px !important;
}

.pri-92px {
  padding-right: 92px !important;
}

.pyi-92px {
  padding-top: 92px !important;
  padding-bottom: 92px !important;
}

.pxi-92px {
  padding-left: 92px !important;
  padding-right: 92px !important;
}

tr.p-92px > td {
  padding: 92px;
}

tr.pt-92px > td {
  padding-top: 92px;
}

tr.pb-92px > td {
  padding-bottom: 92px;
}

tr.pl-92px > td {
  padding-left: 92px;
}

tr.pr-92px > td {
  padding-right: 92px;
}

tr.py-92px > td {
  padding-top: 92px;
  padding-bottom: 92px;
}

tr.px-92px > td {
  padding-left: 92px;
  padding-right: 92px;
}

tr.pi-92px > td {
  padding: 92px !important;
}

tr.pti-92px > td {
  padding-top: 92px !important;
}

tr.pbi-92px > td {
  padding-bottom: 92px !important;
}

tr.pli-92px > td {
  padding-left: 92px !important;
}

tr.pri-92px > td {
  padding-right: 92px !important;
}

tr.pyi-92px > td {
  padding-top: 92px !important;
  padding-bottom: 92px !important;
}

tr.pxi-92px > td {
  padding-left: 92px !important;
  padding-right: 92px !important;
}

tr.pxi-92px > td {
  padding-left: 92px !important;
  padding-right: 92px !important;
}

.m-93px {
  margin: 93px;
}

.mt-93px {
  margin-top: 93px;
}

.mb-93px {
  margin-bottom: 93px;
}

.ml-93px {
  margin-left: 93px;
}

.mr-93px {
  margin-right: 93px;
}

.mt--93px {
  margin-top: -93px;
}

.mb--93px {
  margin-bottom: -93px;
}

.ml--93px {
  margin-left: -93px;
}

.mr--93px {
  margin-right: -93px;
}

.my-93px {
  margin-top: 93px;
  margin-bottom: 93px;
}

.mx-93px {
  margin-left: 93px;
  margin-right: 93px;
}

.mi-93px {
  margin: 93px !important;
}

.mti-93px {
  margin-top: 93px !important;
}

.mbi-93px {
  margin-bottom: 93px !important;
}

.mli-93px {
  margin-left: 93px !important;
}

.mri-93px {
  margin-right: 93px !important;
}

.mti--93px {
  margin-top: -93px !important;
}

.mbi--93px {
  margin-bottom: -93px !important;
}

.mli--93px {
  margin-left: -93px !important;
}

.mri--93px {
  margin-right: -93px !important;
}

.myi-93px {
  margin-top: 93px !important;
  margin-bottom: 93px !important;
}

.mxi-93px {
  margin-left: 93px !important;
  margin-right: 93px !important;
}

.p-93px {
  padding: 93px;
}

.pt-93px {
  padding-top: 93px;
}

.pb-93px {
  padding-bottom: 93px;
}

.pl-93px {
  padding-left: 93px;
}

.pr-93px {
  padding-right: 93px;
}

.py-93px {
  padding-top: 93px;
  padding-bottom: 93px;
}

.px-93px {
  padding-left: 93px;
  padding-right: 93px;
}

.pi-93px {
  padding: 93px !important;
}

.pti-93px {
  padding-top: 93px !important;
}

.pbi-93px {
  padding-bottom: 93px !important;
}

.pli-93px {
  padding-left: 93px !important;
}

.pri-93px {
  padding-right: 93px !important;
}

.pyi-93px {
  padding-top: 93px !important;
  padding-bottom: 93px !important;
}

.pxi-93px {
  padding-left: 93px !important;
  padding-right: 93px !important;
}

tr.p-93px > td {
  padding: 93px;
}

tr.pt-93px > td {
  padding-top: 93px;
}

tr.pb-93px > td {
  padding-bottom: 93px;
}

tr.pl-93px > td {
  padding-left: 93px;
}

tr.pr-93px > td {
  padding-right: 93px;
}

tr.py-93px > td {
  padding-top: 93px;
  padding-bottom: 93px;
}

tr.px-93px > td {
  padding-left: 93px;
  padding-right: 93px;
}

tr.pi-93px > td {
  padding: 93px !important;
}

tr.pti-93px > td {
  padding-top: 93px !important;
}

tr.pbi-93px > td {
  padding-bottom: 93px !important;
}

tr.pli-93px > td {
  padding-left: 93px !important;
}

tr.pri-93px > td {
  padding-right: 93px !important;
}

tr.pyi-93px > td {
  padding-top: 93px !important;
  padding-bottom: 93px !important;
}

tr.pxi-93px > td {
  padding-left: 93px !important;
  padding-right: 93px !important;
}

tr.pxi-93px > td {
  padding-left: 93px !important;
  padding-right: 93px !important;
}

.m-94px {
  margin: 94px;
}

.mt-94px {
  margin-top: 94px;
}

.mb-94px {
  margin-bottom: 94px;
}

.ml-94px {
  margin-left: 94px;
}

.mr-94px {
  margin-right: 94px;
}

.mt--94px {
  margin-top: -94px;
}

.mb--94px {
  margin-bottom: -94px;
}

.ml--94px {
  margin-left: -94px;
}

.mr--94px {
  margin-right: -94px;
}

.my-94px {
  margin-top: 94px;
  margin-bottom: 94px;
}

.mx-94px {
  margin-left: 94px;
  margin-right: 94px;
}

.mi-94px {
  margin: 94px !important;
}

.mti-94px {
  margin-top: 94px !important;
}

.mbi-94px {
  margin-bottom: 94px !important;
}

.mli-94px {
  margin-left: 94px !important;
}

.mri-94px {
  margin-right: 94px !important;
}

.mti--94px {
  margin-top: -94px !important;
}

.mbi--94px {
  margin-bottom: -94px !important;
}

.mli--94px {
  margin-left: -94px !important;
}

.mri--94px {
  margin-right: -94px !important;
}

.myi-94px {
  margin-top: 94px !important;
  margin-bottom: 94px !important;
}

.mxi-94px {
  margin-left: 94px !important;
  margin-right: 94px !important;
}

.p-94px {
  padding: 94px;
}

.pt-94px {
  padding-top: 94px;
}

.pb-94px {
  padding-bottom: 94px;
}

.pl-94px {
  padding-left: 94px;
}

.pr-94px {
  padding-right: 94px;
}

.py-94px {
  padding-top: 94px;
  padding-bottom: 94px;
}

.px-94px {
  padding-left: 94px;
  padding-right: 94px;
}

.pi-94px {
  padding: 94px !important;
}

.pti-94px {
  padding-top: 94px !important;
}

.pbi-94px {
  padding-bottom: 94px !important;
}

.pli-94px {
  padding-left: 94px !important;
}

.pri-94px {
  padding-right: 94px !important;
}

.pyi-94px {
  padding-top: 94px !important;
  padding-bottom: 94px !important;
}

.pxi-94px {
  padding-left: 94px !important;
  padding-right: 94px !important;
}

tr.p-94px > td {
  padding: 94px;
}

tr.pt-94px > td {
  padding-top: 94px;
}

tr.pb-94px > td {
  padding-bottom: 94px;
}

tr.pl-94px > td {
  padding-left: 94px;
}

tr.pr-94px > td {
  padding-right: 94px;
}

tr.py-94px > td {
  padding-top: 94px;
  padding-bottom: 94px;
}

tr.px-94px > td {
  padding-left: 94px;
  padding-right: 94px;
}

tr.pi-94px > td {
  padding: 94px !important;
}

tr.pti-94px > td {
  padding-top: 94px !important;
}

tr.pbi-94px > td {
  padding-bottom: 94px !important;
}

tr.pli-94px > td {
  padding-left: 94px !important;
}

tr.pri-94px > td {
  padding-right: 94px !important;
}

tr.pyi-94px > td {
  padding-top: 94px !important;
  padding-bottom: 94px !important;
}

tr.pxi-94px > td {
  padding-left: 94px !important;
  padding-right: 94px !important;
}

tr.pxi-94px > td {
  padding-left: 94px !important;
  padding-right: 94px !important;
}

.m-95px {
  margin: 95px;
}

.mt-95px {
  margin-top: 95px;
}

.mb-95px {
  margin-bottom: 95px;
}

.ml-95px {
  margin-left: 95px;
}

.mr-95px {
  margin-right: 95px;
}

.mt--95px {
  margin-top: -95px;
}

.mb--95px {
  margin-bottom: -95px;
}

.ml--95px {
  margin-left: -95px;
}

.mr--95px {
  margin-right: -95px;
}

.my-95px {
  margin-top: 95px;
  margin-bottom: 95px;
}

.mx-95px {
  margin-left: 95px;
  margin-right: 95px;
}

.mi-95px {
  margin: 95px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-95px {
  padding: 95px;
}

.pt-95px {
  padding-top: 95px;
}

.pb-95px {
  padding-bottom: 95px;
}

.pl-95px {
  padding-left: 95px;
}

.pr-95px {
  padding-right: 95px;
}

.py-95px {
  padding-top: 95px;
  padding-bottom: 95px;
}

.px-95px {
  padding-left: 95px;
  padding-right: 95px;
}

.pi-95px {
  padding: 95px !important;
}

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

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

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

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

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

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

tr.p-95px > td {
  padding: 95px;
}

tr.pt-95px > td {
  padding-top: 95px;
}

tr.pb-95px > td {
  padding-bottom: 95px;
}

tr.pl-95px > td {
  padding-left: 95px;
}

tr.pr-95px > td {
  padding-right: 95px;
}

tr.py-95px > td {
  padding-top: 95px;
  padding-bottom: 95px;
}

tr.px-95px > td {
  padding-left: 95px;
  padding-right: 95px;
}

tr.pi-95px > td {
  padding: 95px !important;
}

tr.pti-95px > td {
  padding-top: 95px !important;
}

tr.pbi-95px > td {
  padding-bottom: 95px !important;
}

tr.pli-95px > td {
  padding-left: 95px !important;
}

tr.pri-95px > td {
  padding-right: 95px !important;
}

tr.pyi-95px > td {
  padding-top: 95px !important;
  padding-bottom: 95px !important;
}

tr.pxi-95px > td {
  padding-left: 95px !important;
  padding-right: 95px !important;
}

tr.pxi-95px > td {
  padding-left: 95px !important;
  padding-right: 95px !important;
}

.m-96px {
  margin: 96px;
}

.mt-96px {
  margin-top: 96px;
}

.mb-96px {
  margin-bottom: 96px;
}

.ml-96px {
  margin-left: 96px;
}

.mr-96px {
  margin-right: 96px;
}

.mt--96px {
  margin-top: -96px;
}

.mb--96px {
  margin-bottom: -96px;
}

.ml--96px {
  margin-left: -96px;
}

.mr--96px {
  margin-right: -96px;
}

.my-96px {
  margin-top: 96px;
  margin-bottom: 96px;
}

.mx-96px {
  margin-left: 96px;
  margin-right: 96px;
}

.mi-96px {
  margin: 96px !important;
}

.mti-96px {
  margin-top: 96px !important;
}

.mbi-96px {
  margin-bottom: 96px !important;
}

.mli-96px {
  margin-left: 96px !important;
}

.mri-96px {
  margin-right: 96px !important;
}

.mti--96px {
  margin-top: -96px !important;
}

.mbi--96px {
  margin-bottom: -96px !important;
}

.mli--96px {
  margin-left: -96px !important;
}

.mri--96px {
  margin-right: -96px !important;
}

.myi-96px {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

.mxi-96px {
  margin-left: 96px !important;
  margin-right: 96px !important;
}

.p-96px {
  padding: 96px;
}

.pt-96px {
  padding-top: 96px;
}

.pb-96px {
  padding-bottom: 96px;
}

.pl-96px {
  padding-left: 96px;
}

.pr-96px {
  padding-right: 96px;
}

.py-96px {
  padding-top: 96px;
  padding-bottom: 96px;
}

.px-96px {
  padding-left: 96px;
  padding-right: 96px;
}

.pi-96px {
  padding: 96px !important;
}

.pti-96px {
  padding-top: 96px !important;
}

.pbi-96px {
  padding-bottom: 96px !important;
}

.pli-96px {
  padding-left: 96px !important;
}

.pri-96px {
  padding-right: 96px !important;
}

.pyi-96px {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.pxi-96px {
  padding-left: 96px !important;
  padding-right: 96px !important;
}

tr.p-96px > td {
  padding: 96px;
}

tr.pt-96px > td {
  padding-top: 96px;
}

tr.pb-96px > td {
  padding-bottom: 96px;
}

tr.pl-96px > td {
  padding-left: 96px;
}

tr.pr-96px > td {
  padding-right: 96px;
}

tr.py-96px > td {
  padding-top: 96px;
  padding-bottom: 96px;
}

tr.px-96px > td {
  padding-left: 96px;
  padding-right: 96px;
}

tr.pi-96px > td {
  padding: 96px !important;
}

tr.pti-96px > td {
  padding-top: 96px !important;
}

tr.pbi-96px > td {
  padding-bottom: 96px !important;
}

tr.pli-96px > td {
  padding-left: 96px !important;
}

tr.pri-96px > td {
  padding-right: 96px !important;
}

tr.pyi-96px > td {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

tr.pxi-96px > td {
  padding-left: 96px !important;
  padding-right: 96px !important;
}

tr.pxi-96px > td {
  padding-left: 96px !important;
  padding-right: 96px !important;
}

.m-97px {
  margin: 97px;
}

.mt-97px {
  margin-top: 97px;
}

.mb-97px {
  margin-bottom: 97px;
}

.ml-97px {
  margin-left: 97px;
}

.mr-97px {
  margin-right: 97px;
}

.mt--97px {
  margin-top: -97px;
}

.mb--97px {
  margin-bottom: -97px;
}

.ml--97px {
  margin-left: -97px;
}

.mr--97px {
  margin-right: -97px;
}

.my-97px {
  margin-top: 97px;
  margin-bottom: 97px;
}

.mx-97px {
  margin-left: 97px;
  margin-right: 97px;
}

.mi-97px {
  margin: 97px !important;
}

.mti-97px {
  margin-top: 97px !important;
}

.mbi-97px {
  margin-bottom: 97px !important;
}

.mli-97px {
  margin-left: 97px !important;
}

.mri-97px {
  margin-right: 97px !important;
}

.mti--97px {
  margin-top: -97px !important;
}

.mbi--97px {
  margin-bottom: -97px !important;
}

.mli--97px {
  margin-left: -97px !important;
}

.mri--97px {
  margin-right: -97px !important;
}

.myi-97px {
  margin-top: 97px !important;
  margin-bottom: 97px !important;
}

.mxi-97px {
  margin-left: 97px !important;
  margin-right: 97px !important;
}

.p-97px {
  padding: 97px;
}

.pt-97px {
  padding-top: 97px;
}

.pb-97px {
  padding-bottom: 97px;
}

.pl-97px {
  padding-left: 97px;
}

.pr-97px {
  padding-right: 97px;
}

.py-97px {
  padding-top: 97px;
  padding-bottom: 97px;
}

.px-97px {
  padding-left: 97px;
  padding-right: 97px;
}

.pi-97px {
  padding: 97px !important;
}

.pti-97px {
  padding-top: 97px !important;
}

.pbi-97px {
  padding-bottom: 97px !important;
}

.pli-97px {
  padding-left: 97px !important;
}

.pri-97px {
  padding-right: 97px !important;
}

.pyi-97px {
  padding-top: 97px !important;
  padding-bottom: 97px !important;
}

.pxi-97px {
  padding-left: 97px !important;
  padding-right: 97px !important;
}

tr.p-97px > td {
  padding: 97px;
}

tr.pt-97px > td {
  padding-top: 97px;
}

tr.pb-97px > td {
  padding-bottom: 97px;
}

tr.pl-97px > td {
  padding-left: 97px;
}

tr.pr-97px > td {
  padding-right: 97px;
}

tr.py-97px > td {
  padding-top: 97px;
  padding-bottom: 97px;
}

tr.px-97px > td {
  padding-left: 97px;
  padding-right: 97px;
}

tr.pi-97px > td {
  padding: 97px !important;
}

tr.pti-97px > td {
  padding-top: 97px !important;
}

tr.pbi-97px > td {
  padding-bottom: 97px !important;
}

tr.pli-97px > td {
  padding-left: 97px !important;
}

tr.pri-97px > td {
  padding-right: 97px !important;
}

tr.pyi-97px > td {
  padding-top: 97px !important;
  padding-bottom: 97px !important;
}

tr.pxi-97px > td {
  padding-left: 97px !important;
  padding-right: 97px !important;
}

tr.pxi-97px > td {
  padding-left: 97px !important;
  padding-right: 97px !important;
}

.m-98px {
  margin: 98px;
}

.mt-98px {
  margin-top: 98px;
}

.mb-98px {
  margin-bottom: 98px;
}

.ml-98px {
  margin-left: 98px;
}

.mr-98px {
  margin-right: 98px;
}

.mt--98px {
  margin-top: -98px;
}

.mb--98px {
  margin-bottom: -98px;
}

.ml--98px {
  margin-left: -98px;
}

.mr--98px {
  margin-right: -98px;
}

.my-98px {
  margin-top: 98px;
  margin-bottom: 98px;
}

.mx-98px {
  margin-left: 98px;
  margin-right: 98px;
}

.mi-98px {
  margin: 98px !important;
}

.mti-98px {
  margin-top: 98px !important;
}

.mbi-98px {
  margin-bottom: 98px !important;
}

.mli-98px {
  margin-left: 98px !important;
}

.mri-98px {
  margin-right: 98px !important;
}

.mti--98px {
  margin-top: -98px !important;
}

.mbi--98px {
  margin-bottom: -98px !important;
}

.mli--98px {
  margin-left: -98px !important;
}

.mri--98px {
  margin-right: -98px !important;
}

.myi-98px {
  margin-top: 98px !important;
  margin-bottom: 98px !important;
}

.mxi-98px {
  margin-left: 98px !important;
  margin-right: 98px !important;
}

.p-98px {
  padding: 98px;
}

.pt-98px {
  padding-top: 98px;
}

.pb-98px {
  padding-bottom: 98px;
}

.pl-98px {
  padding-left: 98px;
}

.pr-98px {
  padding-right: 98px;
}

.py-98px {
  padding-top: 98px;
  padding-bottom: 98px;
}

.px-98px {
  padding-left: 98px;
  padding-right: 98px;
}

.pi-98px {
  padding: 98px !important;
}

.pti-98px {
  padding-top: 98px !important;
}

.pbi-98px {
  padding-bottom: 98px !important;
}

.pli-98px {
  padding-left: 98px !important;
}

.pri-98px {
  padding-right: 98px !important;
}

.pyi-98px {
  padding-top: 98px !important;
  padding-bottom: 98px !important;
}

.pxi-98px {
  padding-left: 98px !important;
  padding-right: 98px !important;
}

tr.p-98px > td {
  padding: 98px;
}

tr.pt-98px > td {
  padding-top: 98px;
}

tr.pb-98px > td {
  padding-bottom: 98px;
}

tr.pl-98px > td {
  padding-left: 98px;
}

tr.pr-98px > td {
  padding-right: 98px;
}

tr.py-98px > td {
  padding-top: 98px;
  padding-bottom: 98px;
}

tr.px-98px > td {
  padding-left: 98px;
  padding-right: 98px;
}

tr.pi-98px > td {
  padding: 98px !important;
}

tr.pti-98px > td {
  padding-top: 98px !important;
}

tr.pbi-98px > td {
  padding-bottom: 98px !important;
}

tr.pli-98px > td {
  padding-left: 98px !important;
}

tr.pri-98px > td {
  padding-right: 98px !important;
}

tr.pyi-98px > td {
  padding-top: 98px !important;
  padding-bottom: 98px !important;
}

tr.pxi-98px > td {
  padding-left: 98px !important;
  padding-right: 98px !important;
}

tr.pxi-98px > td {
  padding-left: 98px !important;
  padding-right: 98px !important;
}

.m-99px {
  margin: 99px;
}

.mt-99px {
  margin-top: 99px;
}

.mb-99px {
  margin-bottom: 99px;
}

.ml-99px {
  margin-left: 99px;
}

.mr-99px {
  margin-right: 99px;
}

.mt--99px {
  margin-top: -99px;
}

.mb--99px {
  margin-bottom: -99px;
}

.ml--99px {
  margin-left: -99px;
}

.mr--99px {
  margin-right: -99px;
}

.my-99px {
  margin-top: 99px;
  margin-bottom: 99px;
}

.mx-99px {
  margin-left: 99px;
  margin-right: 99px;
}

.mi-99px {
  margin: 99px !important;
}

.mti-99px {
  margin-top: 99px !important;
}

.mbi-99px {
  margin-bottom: 99px !important;
}

.mli-99px {
  margin-left: 99px !important;
}

.mri-99px {
  margin-right: 99px !important;
}

.mti--99px {
  margin-top: -99px !important;
}

.mbi--99px {
  margin-bottom: -99px !important;
}

.mli--99px {
  margin-left: -99px !important;
}

.mri--99px {
  margin-right: -99px !important;
}

.myi-99px {
  margin-top: 99px !important;
  margin-bottom: 99px !important;
}

.mxi-99px {
  margin-left: 99px !important;
  margin-right: 99px !important;
}

.p-99px {
  padding: 99px;
}

.pt-99px {
  padding-top: 99px;
}

.pb-99px {
  padding-bottom: 99px;
}

.pl-99px {
  padding-left: 99px;
}

.pr-99px {
  padding-right: 99px;
}

.py-99px {
  padding-top: 99px;
  padding-bottom: 99px;
}

.px-99px {
  padding-left: 99px;
  padding-right: 99px;
}

.pi-99px {
  padding: 99px !important;
}

.pti-99px {
  padding-top: 99px !important;
}

.pbi-99px {
  padding-bottom: 99px !important;
}

.pli-99px {
  padding-left: 99px !important;
}

.pri-99px {
  padding-right: 99px !important;
}

.pyi-99px {
  padding-top: 99px !important;
  padding-bottom: 99px !important;
}

.pxi-99px {
  padding-left: 99px !important;
  padding-right: 99px !important;
}

tr.p-99px > td {
  padding: 99px;
}

tr.pt-99px > td {
  padding-top: 99px;
}

tr.pb-99px > td {
  padding-bottom: 99px;
}

tr.pl-99px > td {
  padding-left: 99px;
}

tr.pr-99px > td {
  padding-right: 99px;
}

tr.py-99px > td {
  padding-top: 99px;
  padding-bottom: 99px;
}

tr.px-99px > td {
  padding-left: 99px;
  padding-right: 99px;
}

tr.pi-99px > td {
  padding: 99px !important;
}

tr.pti-99px > td {
  padding-top: 99px !important;
}

tr.pbi-99px > td {
  padding-bottom: 99px !important;
}

tr.pli-99px > td {
  padding-left: 99px !important;
}

tr.pri-99px > td {
  padding-right: 99px !important;
}

tr.pyi-99px > td {
  padding-top: 99px !important;
  padding-bottom: 99px !important;
}

tr.pxi-99px > td {
  padding-left: 99px !important;
  padding-right: 99px !important;
}

tr.pxi-99px > td {
  padding-left: 99px !important;
  padding-right: 99px !important;
}

.m-100px {
  margin: 100px;
}

.mt-100px {
  margin-top: 100px;
}

.mb-100px {
  margin-bottom: 100px;
}

.ml-100px {
  margin-left: 100px;
}

.mr-100px {
  margin-right: 100px;
}

.mt--100px {
  margin-top: -100px;
}

.mb--100px {
  margin-bottom: -100px;
}

.ml--100px {
  margin-left: -100px;
}

.mr--100px {
  margin-right: -100px;
}

.my-100px {
  margin-top: 100px;
  margin-bottom: 100px;
}

.mx-100px {
  margin-left: 100px;
  margin-right: 100px;
}

.mi-100px {
  margin: 100px !important;
}

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

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

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

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

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

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

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

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

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

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

.p-100px {
  padding: 100px;
}

.pt-100px {
  padding-top: 100px;
}

.pb-100px {
  padding-bottom: 100px;
}

.pl-100px {
  padding-left: 100px;
}

.pr-100px {
  padding-right: 100px;
}

.py-100px {
  padding-top: 100px;
  padding-bottom: 100px;
}

.px-100px {
  padding-left: 100px;
  padding-right: 100px;
}

.pi-100px {
  padding: 100px !important;
}

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

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

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

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

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

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

tr.p-100px > td {
  padding: 100px;
}

tr.pt-100px > td {
  padding-top: 100px;
}

tr.pb-100px > td {
  padding-bottom: 100px;
}

tr.pl-100px > td {
  padding-left: 100px;
}

tr.pr-100px > td {
  padding-right: 100px;
}

tr.py-100px > td {
  padding-top: 100px;
  padding-bottom: 100px;
}

tr.px-100px > td {
  padding-left: 100px;
  padding-right: 100px;
}

tr.pi-100px > td {
  padding: 100px !important;
}

tr.pti-100px > td {
  padding-top: 100px !important;
}

tr.pbi-100px > td {
  padding-bottom: 100px !important;
}

tr.pli-100px > td {
  padding-left: 100px !important;
}

tr.pri-100px > td {
  padding-right: 100px !important;
}

tr.pyi-100px > td {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

tr.pxi-100px > td {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

tr.pxi-100px > td {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.m-101px {
  margin: 101px;
}

.mt-101px {
  margin-top: 101px;
}

.mb-101px {
  margin-bottom: 101px;
}

.ml-101px {
  margin-left: 101px;
}

.mr-101px {
  margin-right: 101px;
}

.mt--101px {
  margin-top: -101px;
}

.mb--101px {
  margin-bottom: -101px;
}

.ml--101px {
  margin-left: -101px;
}

.mr--101px {
  margin-right: -101px;
}

.my-101px {
  margin-top: 101px;
  margin-bottom: 101px;
}

.mx-101px {
  margin-left: 101px;
  margin-right: 101px;
}

.mi-101px {
  margin: 101px !important;
}

.mti-101px {
  margin-top: 101px !important;
}

.mbi-101px {
  margin-bottom: 101px !important;
}

.mli-101px {
  margin-left: 101px !important;
}

.mri-101px {
  margin-right: 101px !important;
}

.mti--101px {
  margin-top: -101px !important;
}

.mbi--101px {
  margin-bottom: -101px !important;
}

.mli--101px {
  margin-left: -101px !important;
}

.mri--101px {
  margin-right: -101px !important;
}

.myi-101px {
  margin-top: 101px !important;
  margin-bottom: 101px !important;
}

.mxi-101px {
  margin-left: 101px !important;
  margin-right: 101px !important;
}

.p-101px {
  padding: 101px;
}

.pt-101px {
  padding-top: 101px;
}

.pb-101px {
  padding-bottom: 101px;
}

.pl-101px {
  padding-left: 101px;
}

.pr-101px {
  padding-right: 101px;
}

.py-101px {
  padding-top: 101px;
  padding-bottom: 101px;
}

.px-101px {
  padding-left: 101px;
  padding-right: 101px;
}

.pi-101px {
  padding: 101px !important;
}

.pti-101px {
  padding-top: 101px !important;
}

.pbi-101px {
  padding-bottom: 101px !important;
}

.pli-101px {
  padding-left: 101px !important;
}

.pri-101px {
  padding-right: 101px !important;
}

.pyi-101px {
  padding-top: 101px !important;
  padding-bottom: 101px !important;
}

.pxi-101px {
  padding-left: 101px !important;
  padding-right: 101px !important;
}

tr.p-101px > td {
  padding: 101px;
}

tr.pt-101px > td {
  padding-top: 101px;
}

tr.pb-101px > td {
  padding-bottom: 101px;
}

tr.pl-101px > td {
  padding-left: 101px;
}

tr.pr-101px > td {
  padding-right: 101px;
}

tr.py-101px > td {
  padding-top: 101px;
  padding-bottom: 101px;
}

tr.px-101px > td {
  padding-left: 101px;
  padding-right: 101px;
}

tr.pi-101px > td {
  padding: 101px !important;
}

tr.pti-101px > td {
  padding-top: 101px !important;
}

tr.pbi-101px > td {
  padding-bottom: 101px !important;
}

tr.pli-101px > td {
  padding-left: 101px !important;
}

tr.pri-101px > td {
  padding-right: 101px !important;
}

tr.pyi-101px > td {
  padding-top: 101px !important;
  padding-bottom: 101px !important;
}

tr.pxi-101px > td {
  padding-left: 101px !important;
  padding-right: 101px !important;
}

tr.pxi-101px > td {
  padding-left: 101px !important;
  padding-right: 101px !important;
}

.m-102px {
  margin: 102px;
}

.mt-102px {
  margin-top: 102px;
}

.mb-102px {
  margin-bottom: 102px;
}

.ml-102px {
  margin-left: 102px;
}

.mr-102px {
  margin-right: 102px;
}

.mt--102px {
  margin-top: -102px;
}

.mb--102px {
  margin-bottom: -102px;
}

.ml--102px {
  margin-left: -102px;
}

.mr--102px {
  margin-right: -102px;
}

.my-102px {
  margin-top: 102px;
  margin-bottom: 102px;
}

.mx-102px {
  margin-left: 102px;
  margin-right: 102px;
}

.mi-102px {
  margin: 102px !important;
}

.mti-102px {
  margin-top: 102px !important;
}

.mbi-102px {
  margin-bottom: 102px !important;
}

.mli-102px {
  margin-left: 102px !important;
}

.mri-102px {
  margin-right: 102px !important;
}

.mti--102px {
  margin-top: -102px !important;
}

.mbi--102px {
  margin-bottom: -102px !important;
}

.mli--102px {
  margin-left: -102px !important;
}

.mri--102px {
  margin-right: -102px !important;
}

.myi-102px {
  margin-top: 102px !important;
  margin-bottom: 102px !important;
}

.mxi-102px {
  margin-left: 102px !important;
  margin-right: 102px !important;
}

.p-102px {
  padding: 102px;
}

.pt-102px {
  padding-top: 102px;
}

.pb-102px {
  padding-bottom: 102px;
}

.pl-102px {
  padding-left: 102px;
}

.pr-102px {
  padding-right: 102px;
}

.py-102px {
  padding-top: 102px;
  padding-bottom: 102px;
}

.px-102px {
  padding-left: 102px;
  padding-right: 102px;
}

.pi-102px {
  padding: 102px !important;
}

.pti-102px {
  padding-top: 102px !important;
}

.pbi-102px {
  padding-bottom: 102px !important;
}

.pli-102px {
  padding-left: 102px !important;
}

.pri-102px {
  padding-right: 102px !important;
}

.pyi-102px {
  padding-top: 102px !important;
  padding-bottom: 102px !important;
}

.pxi-102px {
  padding-left: 102px !important;
  padding-right: 102px !important;
}

tr.p-102px > td {
  padding: 102px;
}

tr.pt-102px > td {
  padding-top: 102px;
}

tr.pb-102px > td {
  padding-bottom: 102px;
}

tr.pl-102px > td {
  padding-left: 102px;
}

tr.pr-102px > td {
  padding-right: 102px;
}

tr.py-102px > td {
  padding-top: 102px;
  padding-bottom: 102px;
}

tr.px-102px > td {
  padding-left: 102px;
  padding-right: 102px;
}

tr.pi-102px > td {
  padding: 102px !important;
}

tr.pti-102px > td {
  padding-top: 102px !important;
}

tr.pbi-102px > td {
  padding-bottom: 102px !important;
}

tr.pli-102px > td {
  padding-left: 102px !important;
}

tr.pri-102px > td {
  padding-right: 102px !important;
}

tr.pyi-102px > td {
  padding-top: 102px !important;
  padding-bottom: 102px !important;
}

tr.pxi-102px > td {
  padding-left: 102px !important;
  padding-right: 102px !important;
}

tr.pxi-102px > td {
  padding-left: 102px !important;
  padding-right: 102px !important;
}

.m-103px {
  margin: 103px;
}

.mt-103px {
  margin-top: 103px;
}

.mb-103px {
  margin-bottom: 103px;
}

.ml-103px {
  margin-left: 103px;
}

.mr-103px {
  margin-right: 103px;
}

.mt--103px {
  margin-top: -103px;
}

.mb--103px {
  margin-bottom: -103px;
}

.ml--103px {
  margin-left: -103px;
}

.mr--103px {
  margin-right: -103px;
}

.my-103px {
  margin-top: 103px;
  margin-bottom: 103px;
}

.mx-103px {
  margin-left: 103px;
  margin-right: 103px;
}

.mi-103px {
  margin: 103px !important;
}

.mti-103px {
  margin-top: 103px !important;
}

.mbi-103px {
  margin-bottom: 103px !important;
}

.mli-103px {
  margin-left: 103px !important;
}

.mri-103px {
  margin-right: 103px !important;
}

.mti--103px {
  margin-top: -103px !important;
}

.mbi--103px {
  margin-bottom: -103px !important;
}

.mli--103px {
  margin-left: -103px !important;
}

.mri--103px {
  margin-right: -103px !important;
}

.myi-103px {
  margin-top: 103px !important;
  margin-bottom: 103px !important;
}

.mxi-103px {
  margin-left: 103px !important;
  margin-right: 103px !important;
}

.p-103px {
  padding: 103px;
}

.pt-103px {
  padding-top: 103px;
}

.pb-103px {
  padding-bottom: 103px;
}

.pl-103px {
  padding-left: 103px;
}

.pr-103px {
  padding-right: 103px;
}

.py-103px {
  padding-top: 103px;
  padding-bottom: 103px;
}

.px-103px {
  padding-left: 103px;
  padding-right: 103px;
}

.pi-103px {
  padding: 103px !important;
}

.pti-103px {
  padding-top: 103px !important;
}

.pbi-103px {
  padding-bottom: 103px !important;
}

.pli-103px {
  padding-left: 103px !important;
}

.pri-103px {
  padding-right: 103px !important;
}

.pyi-103px {
  padding-top: 103px !important;
  padding-bottom: 103px !important;
}

.pxi-103px {
  padding-left: 103px !important;
  padding-right: 103px !important;
}

tr.p-103px > td {
  padding: 103px;
}

tr.pt-103px > td {
  padding-top: 103px;
}

tr.pb-103px > td {
  padding-bottom: 103px;
}

tr.pl-103px > td {
  padding-left: 103px;
}

tr.pr-103px > td {
  padding-right: 103px;
}

tr.py-103px > td {
  padding-top: 103px;
  padding-bottom: 103px;
}

tr.px-103px > td {
  padding-left: 103px;
  padding-right: 103px;
}

tr.pi-103px > td {
  padding: 103px !important;
}

tr.pti-103px > td {
  padding-top: 103px !important;
}

tr.pbi-103px > td {
  padding-bottom: 103px !important;
}

tr.pli-103px > td {
  padding-left: 103px !important;
}

tr.pri-103px > td {
  padding-right: 103px !important;
}

tr.pyi-103px > td {
  padding-top: 103px !important;
  padding-bottom: 103px !important;
}

tr.pxi-103px > td {
  padding-left: 103px !important;
  padding-right: 103px !important;
}

tr.pxi-103px > td {
  padding-left: 103px !important;
  padding-right: 103px !important;
}

.m-104px {
  margin: 104px;
}

.mt-104px {
  margin-top: 104px;
}

.mb-104px {
  margin-bottom: 104px;
}

.ml-104px {
  margin-left: 104px;
}

.mr-104px {
  margin-right: 104px;
}

.mt--104px {
  margin-top: -104px;
}

.mb--104px {
  margin-bottom: -104px;
}

.ml--104px {
  margin-left: -104px;
}

.mr--104px {
  margin-right: -104px;
}

.my-104px {
  margin-top: 104px;
  margin-bottom: 104px;
}

.mx-104px {
  margin-left: 104px;
  margin-right: 104px;
}

.mi-104px {
  margin: 104px !important;
}

.mti-104px {
  margin-top: 104px !important;
}

.mbi-104px {
  margin-bottom: 104px !important;
}

.mli-104px {
  margin-left: 104px !important;
}

.mri-104px {
  margin-right: 104px !important;
}

.mti--104px {
  margin-top: -104px !important;
}

.mbi--104px {
  margin-bottom: -104px !important;
}

.mli--104px {
  margin-left: -104px !important;
}

.mri--104px {
  margin-right: -104px !important;
}

.myi-104px {
  margin-top: 104px !important;
  margin-bottom: 104px !important;
}

.mxi-104px {
  margin-left: 104px !important;
  margin-right: 104px !important;
}

.p-104px {
  padding: 104px;
}

.pt-104px {
  padding-top: 104px;
}

.pb-104px {
  padding-bottom: 104px;
}

.pl-104px {
  padding-left: 104px;
}

.pr-104px {
  padding-right: 104px;
}

.py-104px {
  padding-top: 104px;
  padding-bottom: 104px;
}

.px-104px {
  padding-left: 104px;
  padding-right: 104px;
}

.pi-104px {
  padding: 104px !important;
}

.pti-104px {
  padding-top: 104px !important;
}

.pbi-104px {
  padding-bottom: 104px !important;
}

.pli-104px {
  padding-left: 104px !important;
}

.pri-104px {
  padding-right: 104px !important;
}

.pyi-104px {
  padding-top: 104px !important;
  padding-bottom: 104px !important;
}

.pxi-104px {
  padding-left: 104px !important;
  padding-right: 104px !important;
}

tr.p-104px > td {
  padding: 104px;
}

tr.pt-104px > td {
  padding-top: 104px;
}

tr.pb-104px > td {
  padding-bottom: 104px;
}

tr.pl-104px > td {
  padding-left: 104px;
}

tr.pr-104px > td {
  padding-right: 104px;
}

tr.py-104px > td {
  padding-top: 104px;
  padding-bottom: 104px;
}

tr.px-104px > td {
  padding-left: 104px;
  padding-right: 104px;
}

tr.pi-104px > td {
  padding: 104px !important;
}

tr.pti-104px > td {
  padding-top: 104px !important;
}

tr.pbi-104px > td {
  padding-bottom: 104px !important;
}

tr.pli-104px > td {
  padding-left: 104px !important;
}

tr.pri-104px > td {
  padding-right: 104px !important;
}

tr.pyi-104px > td {
  padding-top: 104px !important;
  padding-bottom: 104px !important;
}

tr.pxi-104px > td {
  padding-left: 104px !important;
  padding-right: 104px !important;
}

tr.pxi-104px > td {
  padding-left: 104px !important;
  padding-right: 104px !important;
}

.m-105px {
  margin: 105px;
}

.mt-105px {
  margin-top: 105px;
}

.mb-105px {
  margin-bottom: 105px;
}

.ml-105px {
  margin-left: 105px;
}

.mr-105px {
  margin-right: 105px;
}

.mt--105px {
  margin-top: -105px;
}

.mb--105px {
  margin-bottom: -105px;
}

.ml--105px {
  margin-left: -105px;
}

.mr--105px {
  margin-right: -105px;
}

.my-105px {
  margin-top: 105px;
  margin-bottom: 105px;
}

.mx-105px {
  margin-left: 105px;
  margin-right: 105px;
}

.mi-105px {
  margin: 105px !important;
}

.mti-105px {
  margin-top: 105px !important;
}

.mbi-105px {
  margin-bottom: 105px !important;
}

.mli-105px {
  margin-left: 105px !important;
}

.mri-105px {
  margin-right: 105px !important;
}

.mti--105px {
  margin-top: -105px !important;
}

.mbi--105px {
  margin-bottom: -105px !important;
}

.mli--105px {
  margin-left: -105px !important;
}

.mri--105px {
  margin-right: -105px !important;
}

.myi-105px {
  margin-top: 105px !important;
  margin-bottom: 105px !important;
}

.mxi-105px {
  margin-left: 105px !important;
  margin-right: 105px !important;
}

.p-105px {
  padding: 105px;
}

.pt-105px {
  padding-top: 105px;
}

.pb-105px {
  padding-bottom: 105px;
}

.pl-105px {
  padding-left: 105px;
}

.pr-105px {
  padding-right: 105px;
}

.py-105px {
  padding-top: 105px;
  padding-bottom: 105px;
}

.px-105px {
  padding-left: 105px;
  padding-right: 105px;
}

.pi-105px {
  padding: 105px !important;
}

.pti-105px {
  padding-top: 105px !important;
}

.pbi-105px {
  padding-bottom: 105px !important;
}

.pli-105px {
  padding-left: 105px !important;
}

.pri-105px {
  padding-right: 105px !important;
}

.pyi-105px {
  padding-top: 105px !important;
  padding-bottom: 105px !important;
}

.pxi-105px {
  padding-left: 105px !important;
  padding-right: 105px !important;
}

tr.p-105px > td {
  padding: 105px;
}

tr.pt-105px > td {
  padding-top: 105px;
}

tr.pb-105px > td {
  padding-bottom: 105px;
}

tr.pl-105px > td {
  padding-left: 105px;
}

tr.pr-105px > td {
  padding-right: 105px;
}

tr.py-105px > td {
  padding-top: 105px;
  padding-bottom: 105px;
}

tr.px-105px > td {
  padding-left: 105px;
  padding-right: 105px;
}

tr.pi-105px > td {
  padding: 105px !important;
}

tr.pti-105px > td {
  padding-top: 105px !important;
}

tr.pbi-105px > td {
  padding-bottom: 105px !important;
}

tr.pli-105px > td {
  padding-left: 105px !important;
}

tr.pri-105px > td {
  padding-right: 105px !important;
}

tr.pyi-105px > td {
  padding-top: 105px !important;
  padding-bottom: 105px !important;
}

tr.pxi-105px > td {
  padding-left: 105px !important;
  padding-right: 105px !important;
}

tr.pxi-105px > td {
  padding-left: 105px !important;
  padding-right: 105px !important;
}

.m-106px {
  margin: 106px;
}

.mt-106px {
  margin-top: 106px;
}

.mb-106px {
  margin-bottom: 106px;
}

.ml-106px {
  margin-left: 106px;
}

.mr-106px {
  margin-right: 106px;
}

.mt--106px {
  margin-top: -106px;
}

.mb--106px {
  margin-bottom: -106px;
}

.ml--106px {
  margin-left: -106px;
}

.mr--106px {
  margin-right: -106px;
}

.my-106px {
  margin-top: 106px;
  margin-bottom: 106px;
}

.mx-106px {
  margin-left: 106px;
  margin-right: 106px;
}

.mi-106px {
  margin: 106px !important;
}

.mti-106px {
  margin-top: 106px !important;
}

.mbi-106px {
  margin-bottom: 106px !important;
}

.mli-106px {
  margin-left: 106px !important;
}

.mri-106px {
  margin-right: 106px !important;
}

.mti--106px {
  margin-top: -106px !important;
}

.mbi--106px {
  margin-bottom: -106px !important;
}

.mli--106px {
  margin-left: -106px !important;
}

.mri--106px {
  margin-right: -106px !important;
}

.myi-106px {
  margin-top: 106px !important;
  margin-bottom: 106px !important;
}

.mxi-106px {
  margin-left: 106px !important;
  margin-right: 106px !important;
}

.p-106px {
  padding: 106px;
}

.pt-106px {
  padding-top: 106px;
}

.pb-106px {
  padding-bottom: 106px;
}

.pl-106px {
  padding-left: 106px;
}

.pr-106px {
  padding-right: 106px;
}

.py-106px {
  padding-top: 106px;
  padding-bottom: 106px;
}

.px-106px {
  padding-left: 106px;
  padding-right: 106px;
}

.pi-106px {
  padding: 106px !important;
}

.pti-106px {
  padding-top: 106px !important;
}

.pbi-106px {
  padding-bottom: 106px !important;
}

.pli-106px {
  padding-left: 106px !important;
}

.pri-106px {
  padding-right: 106px !important;
}

.pyi-106px {
  padding-top: 106px !important;
  padding-bottom: 106px !important;
}

.pxi-106px {
  padding-left: 106px !important;
  padding-right: 106px !important;
}

tr.p-106px > td {
  padding: 106px;
}

tr.pt-106px > td {
  padding-top: 106px;
}

tr.pb-106px > td {
  padding-bottom: 106px;
}

tr.pl-106px > td {
  padding-left: 106px;
}

tr.pr-106px > td {
  padding-right: 106px;
}

tr.py-106px > td {
  padding-top: 106px;
  padding-bottom: 106px;
}

tr.px-106px > td {
  padding-left: 106px;
  padding-right: 106px;
}

tr.pi-106px > td {
  padding: 106px !important;
}

tr.pti-106px > td {
  padding-top: 106px !important;
}

tr.pbi-106px > td {
  padding-bottom: 106px !important;
}

tr.pli-106px > td {
  padding-left: 106px !important;
}

tr.pri-106px > td {
  padding-right: 106px !important;
}

tr.pyi-106px > td {
  padding-top: 106px !important;
  padding-bottom: 106px !important;
}

tr.pxi-106px > td {
  padding-left: 106px !important;
  padding-right: 106px !important;
}

tr.pxi-106px > td {
  padding-left: 106px !important;
  padding-right: 106px !important;
}

.m-107px {
  margin: 107px;
}

.mt-107px {
  margin-top: 107px;
}

.mb-107px {
  margin-bottom: 107px;
}

.ml-107px {
  margin-left: 107px;
}

.mr-107px {
  margin-right: 107px;
}

.mt--107px {
  margin-top: -107px;
}

.mb--107px {
  margin-bottom: -107px;
}

.ml--107px {
  margin-left: -107px;
}

.mr--107px {
  margin-right: -107px;
}

.my-107px {
  margin-top: 107px;
  margin-bottom: 107px;
}

.mx-107px {
  margin-left: 107px;
  margin-right: 107px;
}

.mi-107px {
  margin: 107px !important;
}

.mti-107px {
  margin-top: 107px !important;
}

.mbi-107px {
  margin-bottom: 107px !important;
}

.mli-107px {
  margin-left: 107px !important;
}

.mri-107px {
  margin-right: 107px !important;
}

.mti--107px {
  margin-top: -107px !important;
}

.mbi--107px {
  margin-bottom: -107px !important;
}

.mli--107px {
  margin-left: -107px !important;
}

.mri--107px {
  margin-right: -107px !important;
}

.myi-107px {
  margin-top: 107px !important;
  margin-bottom: 107px !important;
}

.mxi-107px {
  margin-left: 107px !important;
  margin-right: 107px !important;
}

.p-107px {
  padding: 107px;
}

.pt-107px {
  padding-top: 107px;
}

.pb-107px {
  padding-bottom: 107px;
}

.pl-107px {
  padding-left: 107px;
}

.pr-107px {
  padding-right: 107px;
}

.py-107px {
  padding-top: 107px;
  padding-bottom: 107px;
}

.px-107px {
  padding-left: 107px;
  padding-right: 107px;
}

.pi-107px {
  padding: 107px !important;
}

.pti-107px {
  padding-top: 107px !important;
}

.pbi-107px {
  padding-bottom: 107px !important;
}

.pli-107px {
  padding-left: 107px !important;
}

.pri-107px {
  padding-right: 107px !important;
}

.pyi-107px {
  padding-top: 107px !important;
  padding-bottom: 107px !important;
}

.pxi-107px {
  padding-left: 107px !important;
  padding-right: 107px !important;
}

tr.p-107px > td {
  padding: 107px;
}

tr.pt-107px > td {
  padding-top: 107px;
}

tr.pb-107px > td {
  padding-bottom: 107px;
}

tr.pl-107px > td {
  padding-left: 107px;
}

tr.pr-107px > td {
  padding-right: 107px;
}

tr.py-107px > td {
  padding-top: 107px;
  padding-bottom: 107px;
}

tr.px-107px > td {
  padding-left: 107px;
  padding-right: 107px;
}

tr.pi-107px > td {
  padding: 107px !important;
}

tr.pti-107px > td {
  padding-top: 107px !important;
}

tr.pbi-107px > td {
  padding-bottom: 107px !important;
}

tr.pli-107px > td {
  padding-left: 107px !important;
}

tr.pri-107px > td {
  padding-right: 107px !important;
}

tr.pyi-107px > td {
  padding-top: 107px !important;
  padding-bottom: 107px !important;
}

tr.pxi-107px > td {
  padding-left: 107px !important;
  padding-right: 107px !important;
}

tr.pxi-107px > td {
  padding-left: 107px !important;
  padding-right: 107px !important;
}

.m-108px {
  margin: 108px;
}

.mt-108px {
  margin-top: 108px;
}

.mb-108px {
  margin-bottom: 108px;
}

.ml-108px {
  margin-left: 108px;
}

.mr-108px {
  margin-right: 108px;
}

.mt--108px {
  margin-top: -108px;
}

.mb--108px {
  margin-bottom: -108px;
}

.ml--108px {
  margin-left: -108px;
}

.mr--108px {
  margin-right: -108px;
}

.my-108px {
  margin-top: 108px;
  margin-bottom: 108px;
}

.mx-108px {
  margin-left: 108px;
  margin-right: 108px;
}

.mi-108px {
  margin: 108px !important;
}

.mti-108px {
  margin-top: 108px !important;
}

.mbi-108px {
  margin-bottom: 108px !important;
}

.mli-108px {
  margin-left: 108px !important;
}

.mri-108px {
  margin-right: 108px !important;
}

.mti--108px {
  margin-top: -108px !important;
}

.mbi--108px {
  margin-bottom: -108px !important;
}

.mli--108px {
  margin-left: -108px !important;
}

.mri--108px {
  margin-right: -108px !important;
}

.myi-108px {
  margin-top: 108px !important;
  margin-bottom: 108px !important;
}

.mxi-108px {
  margin-left: 108px !important;
  margin-right: 108px !important;
}

.p-108px {
  padding: 108px;
}

.pt-108px {
  padding-top: 108px;
}

.pb-108px {
  padding-bottom: 108px;
}

.pl-108px {
  padding-left: 108px;
}

.pr-108px {
  padding-right: 108px;
}

.py-108px {
  padding-top: 108px;
  padding-bottom: 108px;
}

.px-108px {
  padding-left: 108px;
  padding-right: 108px;
}

.pi-108px {
  padding: 108px !important;
}

.pti-108px {
  padding-top: 108px !important;
}

.pbi-108px {
  padding-bottom: 108px !important;
}

.pli-108px {
  padding-left: 108px !important;
}

.pri-108px {
  padding-right: 108px !important;
}

.pyi-108px {
  padding-top: 108px !important;
  padding-bottom: 108px !important;
}

.pxi-108px {
  padding-left: 108px !important;
  padding-right: 108px !important;
}

tr.p-108px > td {
  padding: 108px;
}

tr.pt-108px > td {
  padding-top: 108px;
}

tr.pb-108px > td {
  padding-bottom: 108px;
}

tr.pl-108px > td {
  padding-left: 108px;
}

tr.pr-108px > td {
  padding-right: 108px;
}

tr.py-108px > td {
  padding-top: 108px;
  padding-bottom: 108px;
}

tr.px-108px > td {
  padding-left: 108px;
  padding-right: 108px;
}

tr.pi-108px > td {
  padding: 108px !important;
}

tr.pti-108px > td {
  padding-top: 108px !important;
}

tr.pbi-108px > td {
  padding-bottom: 108px !important;
}

tr.pli-108px > td {
  padding-left: 108px !important;
}

tr.pri-108px > td {
  padding-right: 108px !important;
}

tr.pyi-108px > td {
  padding-top: 108px !important;
  padding-bottom: 108px !important;
}

tr.pxi-108px > td {
  padding-left: 108px !important;
  padding-right: 108px !important;
}

tr.pxi-108px > td {
  padding-left: 108px !important;
  padding-right: 108px !important;
}

.m-109px {
  margin: 109px;
}

.mt-109px {
  margin-top: 109px;
}

.mb-109px {
  margin-bottom: 109px;
}

.ml-109px {
  margin-left: 109px;
}

.mr-109px {
  margin-right: 109px;
}

.mt--109px {
  margin-top: -109px;
}

.mb--109px {
  margin-bottom: -109px;
}

.ml--109px {
  margin-left: -109px;
}

.mr--109px {
  margin-right: -109px;
}

.my-109px {
  margin-top: 109px;
  margin-bottom: 109px;
}

.mx-109px {
  margin-left: 109px;
  margin-right: 109px;
}

.mi-109px {
  margin: 109px !important;
}

.mti-109px {
  margin-top: 109px !important;
}

.mbi-109px {
  margin-bottom: 109px !important;
}

.mli-109px {
  margin-left: 109px !important;
}

.mri-109px {
  margin-right: 109px !important;
}

.mti--109px {
  margin-top: -109px !important;
}

.mbi--109px {
  margin-bottom: -109px !important;
}

.mli--109px {
  margin-left: -109px !important;
}

.mri--109px {
  margin-right: -109px !important;
}

.myi-109px {
  margin-top: 109px !important;
  margin-bottom: 109px !important;
}

.mxi-109px {
  margin-left: 109px !important;
  margin-right: 109px !important;
}

.p-109px {
  padding: 109px;
}

.pt-109px {
  padding-top: 109px;
}

.pb-109px {
  padding-bottom: 109px;
}

.pl-109px {
  padding-left: 109px;
}

.pr-109px {
  padding-right: 109px;
}

.py-109px {
  padding-top: 109px;
  padding-bottom: 109px;
}

.px-109px {
  padding-left: 109px;
  padding-right: 109px;
}

.pi-109px {
  padding: 109px !important;
}

.pti-109px {
  padding-top: 109px !important;
}

.pbi-109px {
  padding-bottom: 109px !important;
}

.pli-109px {
  padding-left: 109px !important;
}

.pri-109px {
  padding-right: 109px !important;
}

.pyi-109px {
  padding-top: 109px !important;
  padding-bottom: 109px !important;
}

.pxi-109px {
  padding-left: 109px !important;
  padding-right: 109px !important;
}

tr.p-109px > td {
  padding: 109px;
}

tr.pt-109px > td {
  padding-top: 109px;
}

tr.pb-109px > td {
  padding-bottom: 109px;
}

tr.pl-109px > td {
  padding-left: 109px;
}

tr.pr-109px > td {
  padding-right: 109px;
}

tr.py-109px > td {
  padding-top: 109px;
  padding-bottom: 109px;
}

tr.px-109px > td {
  padding-left: 109px;
  padding-right: 109px;
}

tr.pi-109px > td {
  padding: 109px !important;
}

tr.pti-109px > td {
  padding-top: 109px !important;
}

tr.pbi-109px > td {
  padding-bottom: 109px !important;
}

tr.pli-109px > td {
  padding-left: 109px !important;
}

tr.pri-109px > td {
  padding-right: 109px !important;
}

tr.pyi-109px > td {
  padding-top: 109px !important;
  padding-bottom: 109px !important;
}

tr.pxi-109px > td {
  padding-left: 109px !important;
  padding-right: 109px !important;
}

tr.pxi-109px > td {
  padding-left: 109px !important;
  padding-right: 109px !important;
}

.m-110px {
  margin: 110px;
}

.mt-110px {
  margin-top: 110px;
}

.mb-110px {
  margin-bottom: 110px;
}

.ml-110px {
  margin-left: 110px;
}

.mr-110px {
  margin-right: 110px;
}

.mt--110px {
  margin-top: -110px;
}

.mb--110px {
  margin-bottom: -110px;
}

.ml--110px {
  margin-left: -110px;
}

.mr--110px {
  margin-right: -110px;
}

.my-110px {
  margin-top: 110px;
  margin-bottom: 110px;
}

.mx-110px {
  margin-left: 110px;
  margin-right: 110px;
}

.mi-110px {
  margin: 110px !important;
}

.mti-110px {
  margin-top: 110px !important;
}

.mbi-110px {
  margin-bottom: 110px !important;
}

.mli-110px {
  margin-left: 110px !important;
}

.mri-110px {
  margin-right: 110px !important;
}

.mti--110px {
  margin-top: -110px !important;
}

.mbi--110px {
  margin-bottom: -110px !important;
}

.mli--110px {
  margin-left: -110px !important;
}

.mri--110px {
  margin-right: -110px !important;
}

.myi-110px {
  margin-top: 110px !important;
  margin-bottom: 110px !important;
}

.mxi-110px {
  margin-left: 110px !important;
  margin-right: 110px !important;
}

.p-110px {
  padding: 110px;
}

.pt-110px {
  padding-top: 110px;
}

.pb-110px {
  padding-bottom: 110px;
}

.pl-110px {
  padding-left: 110px;
}

.pr-110px {
  padding-right: 110px;
}

.py-110px {
  padding-top: 110px;
  padding-bottom: 110px;
}

.px-110px {
  padding-left: 110px;
  padding-right: 110px;
}

.pi-110px {
  padding: 110px !important;
}

.pti-110px {
  padding-top: 110px !important;
}

.pbi-110px {
  padding-bottom: 110px !important;
}

.pli-110px {
  padding-left: 110px !important;
}

.pri-110px {
  padding-right: 110px !important;
}

.pyi-110px {
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

.pxi-110px {
  padding-left: 110px !important;
  padding-right: 110px !important;
}

tr.p-110px > td {
  padding: 110px;
}

tr.pt-110px > td {
  padding-top: 110px;
}

tr.pb-110px > td {
  padding-bottom: 110px;
}

tr.pl-110px > td {
  padding-left: 110px;
}

tr.pr-110px > td {
  padding-right: 110px;
}

tr.py-110px > td {
  padding-top: 110px;
  padding-bottom: 110px;
}

tr.px-110px > td {
  padding-left: 110px;
  padding-right: 110px;
}

tr.pi-110px > td {
  padding: 110px !important;
}

tr.pti-110px > td {
  padding-top: 110px !important;
}

tr.pbi-110px > td {
  padding-bottom: 110px !important;
}

tr.pli-110px > td {
  padding-left: 110px !important;
}

tr.pri-110px > td {
  padding-right: 110px !important;
}

tr.pyi-110px > td {
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

tr.pxi-110px > td {
  padding-left: 110px !important;
  padding-right: 110px !important;
}

tr.pxi-110px > td {
  padding-left: 110px !important;
  padding-right: 110px !important;
}

.m-111px {
  margin: 111px;
}

.mt-111px {
  margin-top: 111px;
}

.mb-111px {
  margin-bottom: 111px;
}

.ml-111px {
  margin-left: 111px;
}

.mr-111px {
  margin-right: 111px;
}

.mt--111px {
  margin-top: -111px;
}

.mb--111px {
  margin-bottom: -111px;
}

.ml--111px {
  margin-left: -111px;
}

.mr--111px {
  margin-right: -111px;
}

.my-111px {
  margin-top: 111px;
  margin-bottom: 111px;
}

.mx-111px {
  margin-left: 111px;
  margin-right: 111px;
}

.mi-111px {
  margin: 111px !important;
}

.mti-111px {
  margin-top: 111px !important;
}

.mbi-111px {
  margin-bottom: 111px !important;
}

.mli-111px {
  margin-left: 111px !important;
}

.mri-111px {
  margin-right: 111px !important;
}

.mti--111px {
  margin-top: -111px !important;
}

.mbi--111px {
  margin-bottom: -111px !important;
}

.mli--111px {
  margin-left: -111px !important;
}

.mri--111px {
  margin-right: -111px !important;
}

.myi-111px {
  margin-top: 111px !important;
  margin-bottom: 111px !important;
}

.mxi-111px {
  margin-left: 111px !important;
  margin-right: 111px !important;
}

.p-111px {
  padding: 111px;
}

.pt-111px {
  padding-top: 111px;
}

.pb-111px {
  padding-bottom: 111px;
}

.pl-111px {
  padding-left: 111px;
}

.pr-111px {
  padding-right: 111px;
}

.py-111px {
  padding-top: 111px;
  padding-bottom: 111px;
}

.px-111px {
  padding-left: 111px;
  padding-right: 111px;
}

.pi-111px {
  padding: 111px !important;
}

.pti-111px {
  padding-top: 111px !important;
}

.pbi-111px {
  padding-bottom: 111px !important;
}

.pli-111px {
  padding-left: 111px !important;
}

.pri-111px {
  padding-right: 111px !important;
}

.pyi-111px {
  padding-top: 111px !important;
  padding-bottom: 111px !important;
}

.pxi-111px {
  padding-left: 111px !important;
  padding-right: 111px !important;
}

tr.p-111px > td {
  padding: 111px;
}

tr.pt-111px > td {
  padding-top: 111px;
}

tr.pb-111px > td {
  padding-bottom: 111px;
}

tr.pl-111px > td {
  padding-left: 111px;
}

tr.pr-111px > td {
  padding-right: 111px;
}

tr.py-111px > td {
  padding-top: 111px;
  padding-bottom: 111px;
}

tr.px-111px > td {
  padding-left: 111px;
  padding-right: 111px;
}

tr.pi-111px > td {
  padding: 111px !important;
}

tr.pti-111px > td {
  padding-top: 111px !important;
}

tr.pbi-111px > td {
  padding-bottom: 111px !important;
}

tr.pli-111px > td {
  padding-left: 111px !important;
}

tr.pri-111px > td {
  padding-right: 111px !important;
}

tr.pyi-111px > td {
  padding-top: 111px !important;
  padding-bottom: 111px !important;
}

tr.pxi-111px > td {
  padding-left: 111px !important;
  padding-right: 111px !important;
}

tr.pxi-111px > td {
  padding-left: 111px !important;
  padding-right: 111px !important;
}

.m-112px {
  margin: 112px;
}

.mt-112px {
  margin-top: 112px;
}

.mb-112px {
  margin-bottom: 112px;
}

.ml-112px {
  margin-left: 112px;
}

.mr-112px {
  margin-right: 112px;
}

.mt--112px {
  margin-top: -112px;
}

.mb--112px {
  margin-bottom: -112px;
}

.ml--112px {
  margin-left: -112px;
}

.mr--112px {
  margin-right: -112px;
}

.my-112px {
  margin-top: 112px;
  margin-bottom: 112px;
}

.mx-112px {
  margin-left: 112px;
  margin-right: 112px;
}

.mi-112px {
  margin: 112px !important;
}

.mti-112px {
  margin-top: 112px !important;
}

.mbi-112px {
  margin-bottom: 112px !important;
}

.mli-112px {
  margin-left: 112px !important;
}

.mri-112px {
  margin-right: 112px !important;
}

.mti--112px {
  margin-top: -112px !important;
}

.mbi--112px {
  margin-bottom: -112px !important;
}

.mli--112px {
  margin-left: -112px !important;
}

.mri--112px {
  margin-right: -112px !important;
}

.myi-112px {
  margin-top: 112px !important;
  margin-bottom: 112px !important;
}

.mxi-112px {
  margin-left: 112px !important;
  margin-right: 112px !important;
}

.p-112px {
  padding: 112px;
}

.pt-112px {
  padding-top: 112px;
}

.pb-112px {
  padding-bottom: 112px;
}

.pl-112px {
  padding-left: 112px;
}

.pr-112px {
  padding-right: 112px;
}

.py-112px {
  padding-top: 112px;
  padding-bottom: 112px;
}

.px-112px {
  padding-left: 112px;
  padding-right: 112px;
}

.pi-112px {
  padding: 112px !important;
}

.pti-112px {
  padding-top: 112px !important;
}

.pbi-112px {
  padding-bottom: 112px !important;
}

.pli-112px {
  padding-left: 112px !important;
}

.pri-112px {
  padding-right: 112px !important;
}

.pyi-112px {
  padding-top: 112px !important;
  padding-bottom: 112px !important;
}

.pxi-112px {
  padding-left: 112px !important;
  padding-right: 112px !important;
}

tr.p-112px > td {
  padding: 112px;
}

tr.pt-112px > td {
  padding-top: 112px;
}

tr.pb-112px > td {
  padding-bottom: 112px;
}

tr.pl-112px > td {
  padding-left: 112px;
}

tr.pr-112px > td {
  padding-right: 112px;
}

tr.py-112px > td {
  padding-top: 112px;
  padding-bottom: 112px;
}

tr.px-112px > td {
  padding-left: 112px;
  padding-right: 112px;
}

tr.pi-112px > td {
  padding: 112px !important;
}

tr.pti-112px > td {
  padding-top: 112px !important;
}

tr.pbi-112px > td {
  padding-bottom: 112px !important;
}

tr.pli-112px > td {
  padding-left: 112px !important;
}

tr.pri-112px > td {
  padding-right: 112px !important;
}

tr.pyi-112px > td {
  padding-top: 112px !important;
  padding-bottom: 112px !important;
}

tr.pxi-112px > td {
  padding-left: 112px !important;
  padding-right: 112px !important;
}

tr.pxi-112px > td {
  padding-left: 112px !important;
  padding-right: 112px !important;
}

.m-113px {
  margin: 113px;
}

.mt-113px {
  margin-top: 113px;
}

.mb-113px {
  margin-bottom: 113px;
}

.ml-113px {
  margin-left: 113px;
}

.mr-113px {
  margin-right: 113px;
}

.mt--113px {
  margin-top: -113px;
}

.mb--113px {
  margin-bottom: -113px;
}

.ml--113px {
  margin-left: -113px;
}

.mr--113px {
  margin-right: -113px;
}

.my-113px {
  margin-top: 113px;
  margin-bottom: 113px;
}

.mx-113px {
  margin-left: 113px;
  margin-right: 113px;
}

.mi-113px {
  margin: 113px !important;
}

.mti-113px {
  margin-top: 113px !important;
}

.mbi-113px {
  margin-bottom: 113px !important;
}

.mli-113px {
  margin-left: 113px !important;
}

.mri-113px {
  margin-right: 113px !important;
}

.mti--113px {
  margin-top: -113px !important;
}

.mbi--113px {
  margin-bottom: -113px !important;
}

.mli--113px {
  margin-left: -113px !important;
}

.mri--113px {
  margin-right: -113px !important;
}

.myi-113px {
  margin-top: 113px !important;
  margin-bottom: 113px !important;
}

.mxi-113px {
  margin-left: 113px !important;
  margin-right: 113px !important;
}

.p-113px {
  padding: 113px;
}

.pt-113px {
  padding-top: 113px;
}

.pb-113px {
  padding-bottom: 113px;
}

.pl-113px {
  padding-left: 113px;
}

.pr-113px {
  padding-right: 113px;
}

.py-113px {
  padding-top: 113px;
  padding-bottom: 113px;
}

.px-113px {
  padding-left: 113px;
  padding-right: 113px;
}

.pi-113px {
  padding: 113px !important;
}

.pti-113px {
  padding-top: 113px !important;
}

.pbi-113px {
  padding-bottom: 113px !important;
}

.pli-113px {
  padding-left: 113px !important;
}

.pri-113px {
  padding-right: 113px !important;
}

.pyi-113px {
  padding-top: 113px !important;
  padding-bottom: 113px !important;
}

.pxi-113px {
  padding-left: 113px !important;
  padding-right: 113px !important;
}

tr.p-113px > td {
  padding: 113px;
}

tr.pt-113px > td {
  padding-top: 113px;
}

tr.pb-113px > td {
  padding-bottom: 113px;
}

tr.pl-113px > td {
  padding-left: 113px;
}

tr.pr-113px > td {
  padding-right: 113px;
}

tr.py-113px > td {
  padding-top: 113px;
  padding-bottom: 113px;
}

tr.px-113px > td {
  padding-left: 113px;
  padding-right: 113px;
}

tr.pi-113px > td {
  padding: 113px !important;
}

tr.pti-113px > td {
  padding-top: 113px !important;
}

tr.pbi-113px > td {
  padding-bottom: 113px !important;
}

tr.pli-113px > td {
  padding-left: 113px !important;
}

tr.pri-113px > td {
  padding-right: 113px !important;
}

tr.pyi-113px > td {
  padding-top: 113px !important;
  padding-bottom: 113px !important;
}

tr.pxi-113px > td {
  padding-left: 113px !important;
  padding-right: 113px !important;
}

tr.pxi-113px > td {
  padding-left: 113px !important;
  padding-right: 113px !important;
}

.m-114px {
  margin: 114px;
}

.mt-114px {
  margin-top: 114px;
}

.mb-114px {
  margin-bottom: 114px;
}

.ml-114px {
  margin-left: 114px;
}

.mr-114px {
  margin-right: 114px;
}

.mt--114px {
  margin-top: -114px;
}

.mb--114px {
  margin-bottom: -114px;
}

.ml--114px {
  margin-left: -114px;
}

.mr--114px {
  margin-right: -114px;
}

.my-114px {
  margin-top: 114px;
  margin-bottom: 114px;
}

.mx-114px {
  margin-left: 114px;
  margin-right: 114px;
}

.mi-114px {
  margin: 114px !important;
}

.mti-114px {
  margin-top: 114px !important;
}

.mbi-114px {
  margin-bottom: 114px !important;
}

.mli-114px {
  margin-left: 114px !important;
}

.mri-114px {
  margin-right: 114px !important;
}

.mti--114px {
  margin-top: -114px !important;
}

.mbi--114px {
  margin-bottom: -114px !important;
}

.mli--114px {
  margin-left: -114px !important;
}

.mri--114px {
  margin-right: -114px !important;
}

.myi-114px {
  margin-top: 114px !important;
  margin-bottom: 114px !important;
}

.mxi-114px {
  margin-left: 114px !important;
  margin-right: 114px !important;
}

.p-114px {
  padding: 114px;
}

.pt-114px {
  padding-top: 114px;
}

.pb-114px {
  padding-bottom: 114px;
}

.pl-114px {
  padding-left: 114px;
}

.pr-114px {
  padding-right: 114px;
}

.py-114px {
  padding-top: 114px;
  padding-bottom: 114px;
}

.px-114px {
  padding-left: 114px;
  padding-right: 114px;
}

.pi-114px {
  padding: 114px !important;
}

.pti-114px {
  padding-top: 114px !important;
}

.pbi-114px {
  padding-bottom: 114px !important;
}

.pli-114px {
  padding-left: 114px !important;
}

.pri-114px {
  padding-right: 114px !important;
}

.pyi-114px {
  padding-top: 114px !important;
  padding-bottom: 114px !important;
}

.pxi-114px {
  padding-left: 114px !important;
  padding-right: 114px !important;
}

tr.p-114px > td {
  padding: 114px;
}

tr.pt-114px > td {
  padding-top: 114px;
}

tr.pb-114px > td {
  padding-bottom: 114px;
}

tr.pl-114px > td {
  padding-left: 114px;
}

tr.pr-114px > td {
  padding-right: 114px;
}

tr.py-114px > td {
  padding-top: 114px;
  padding-bottom: 114px;
}

tr.px-114px > td {
  padding-left: 114px;
  padding-right: 114px;
}

tr.pi-114px > td {
  padding: 114px !important;
}

tr.pti-114px > td {
  padding-top: 114px !important;
}

tr.pbi-114px > td {
  padding-bottom: 114px !important;
}

tr.pli-114px > td {
  padding-left: 114px !important;
}

tr.pri-114px > td {
  padding-right: 114px !important;
}

tr.pyi-114px > td {
  padding-top: 114px !important;
  padding-bottom: 114px !important;
}

tr.pxi-114px > td {
  padding-left: 114px !important;
  padding-right: 114px !important;
}

tr.pxi-114px > td {
  padding-left: 114px !important;
  padding-right: 114px !important;
}

.m-115px {
  margin: 115px;
}

.mt-115px {
  margin-top: 115px;
}

.mb-115px {
  margin-bottom: 115px;
}

.ml-115px {
  margin-left: 115px;
}

.mr-115px {
  margin-right: 115px;
}

.mt--115px {
  margin-top: -115px;
}

.mb--115px {
  margin-bottom: -115px;
}

.ml--115px {
  margin-left: -115px;
}

.mr--115px {
  margin-right: -115px;
}

.my-115px {
  margin-top: 115px;
  margin-bottom: 115px;
}

.mx-115px {
  margin-left: 115px;
  margin-right: 115px;
}

.mi-115px {
  margin: 115px !important;
}

.mti-115px {
  margin-top: 115px !important;
}

.mbi-115px {
  margin-bottom: 115px !important;
}

.mli-115px {
  margin-left: 115px !important;
}

.mri-115px {
  margin-right: 115px !important;
}

.mti--115px {
  margin-top: -115px !important;
}

.mbi--115px {
  margin-bottom: -115px !important;
}

.mli--115px {
  margin-left: -115px !important;
}

.mri--115px {
  margin-right: -115px !important;
}

.myi-115px {
  margin-top: 115px !important;
  margin-bottom: 115px !important;
}

.mxi-115px {
  margin-left: 115px !important;
  margin-right: 115px !important;
}

.p-115px {
  padding: 115px;
}

.pt-115px {
  padding-top: 115px;
}

.pb-115px {
  padding-bottom: 115px;
}

.pl-115px {
  padding-left: 115px;
}

.pr-115px {
  padding-right: 115px;
}

.py-115px {
  padding-top: 115px;
  padding-bottom: 115px;
}

.px-115px {
  padding-left: 115px;
  padding-right: 115px;
}

.pi-115px {
  padding: 115px !important;
}

.pti-115px {
  padding-top: 115px !important;
}

.pbi-115px {
  padding-bottom: 115px !important;
}

.pli-115px {
  padding-left: 115px !important;
}

.pri-115px {
  padding-right: 115px !important;
}

.pyi-115px {
  padding-top: 115px !important;
  padding-bottom: 115px !important;
}

.pxi-115px {
  padding-left: 115px !important;
  padding-right: 115px !important;
}

tr.p-115px > td {
  padding: 115px;
}

tr.pt-115px > td {
  padding-top: 115px;
}

tr.pb-115px > td {
  padding-bottom: 115px;
}

tr.pl-115px > td {
  padding-left: 115px;
}

tr.pr-115px > td {
  padding-right: 115px;
}

tr.py-115px > td {
  padding-top: 115px;
  padding-bottom: 115px;
}

tr.px-115px > td {
  padding-left: 115px;
  padding-right: 115px;
}

tr.pi-115px > td {
  padding: 115px !important;
}

tr.pti-115px > td {
  padding-top: 115px !important;
}

tr.pbi-115px > td {
  padding-bottom: 115px !important;
}

tr.pli-115px > td {
  padding-left: 115px !important;
}

tr.pri-115px > td {
  padding-right: 115px !important;
}

tr.pyi-115px > td {
  padding-top: 115px !important;
  padding-bottom: 115px !important;
}

tr.pxi-115px > td {
  padding-left: 115px !important;
  padding-right: 115px !important;
}

tr.pxi-115px > td {
  padding-left: 115px !important;
  padding-right: 115px !important;
}

.m-116px {
  margin: 116px;
}

.mt-116px {
  margin-top: 116px;
}

.mb-116px {
  margin-bottom: 116px;
}

.ml-116px {
  margin-left: 116px;
}

.mr-116px {
  margin-right: 116px;
}

.mt--116px {
  margin-top: -116px;
}

.mb--116px {
  margin-bottom: -116px;
}

.ml--116px {
  margin-left: -116px;
}

.mr--116px {
  margin-right: -116px;
}

.my-116px {
  margin-top: 116px;
  margin-bottom: 116px;
}

.mx-116px {
  margin-left: 116px;
  margin-right: 116px;
}

.mi-116px {
  margin: 116px !important;
}

.mti-116px {
  margin-top: 116px !important;
}

.mbi-116px {
  margin-bottom: 116px !important;
}

.mli-116px {
  margin-left: 116px !important;
}

.mri-116px {
  margin-right: 116px !important;
}

.mti--116px {
  margin-top: -116px !important;
}

.mbi--116px {
  margin-bottom: -116px !important;
}

.mli--116px {
  margin-left: -116px !important;
}

.mri--116px {
  margin-right: -116px !important;
}

.myi-116px {
  margin-top: 116px !important;
  margin-bottom: 116px !important;
}

.mxi-116px {
  margin-left: 116px !important;
  margin-right: 116px !important;
}

.p-116px {
  padding: 116px;
}

.pt-116px {
  padding-top: 116px;
}

.pb-116px {
  padding-bottom: 116px;
}

.pl-116px {
  padding-left: 116px;
}

.pr-116px {
  padding-right: 116px;
}

.py-116px {
  padding-top: 116px;
  padding-bottom: 116px;
}

.px-116px {
  padding-left: 116px;
  padding-right: 116px;
}

.pi-116px {
  padding: 116px !important;
}

.pti-116px {
  padding-top: 116px !important;
}

.pbi-116px {
  padding-bottom: 116px !important;
}

.pli-116px {
  padding-left: 116px !important;
}

.pri-116px {
  padding-right: 116px !important;
}

.pyi-116px {
  padding-top: 116px !important;
  padding-bottom: 116px !important;
}

.pxi-116px {
  padding-left: 116px !important;
  padding-right: 116px !important;
}

tr.p-116px > td {
  padding: 116px;
}

tr.pt-116px > td {
  padding-top: 116px;
}

tr.pb-116px > td {
  padding-bottom: 116px;
}

tr.pl-116px > td {
  padding-left: 116px;
}

tr.pr-116px > td {
  padding-right: 116px;
}

tr.py-116px > td {
  padding-top: 116px;
  padding-bottom: 116px;
}

tr.px-116px > td {
  padding-left: 116px;
  padding-right: 116px;
}

tr.pi-116px > td {
  padding: 116px !important;
}

tr.pti-116px > td {
  padding-top: 116px !important;
}

tr.pbi-116px > td {
  padding-bottom: 116px !important;
}

tr.pli-116px > td {
  padding-left: 116px !important;
}

tr.pri-116px > td {
  padding-right: 116px !important;
}

tr.pyi-116px > td {
  padding-top: 116px !important;
  padding-bottom: 116px !important;
}

tr.pxi-116px > td {
  padding-left: 116px !important;
  padding-right: 116px !important;
}

tr.pxi-116px > td {
  padding-left: 116px !important;
  padding-right: 116px !important;
}

.m-117px {
  margin: 117px;
}

.mt-117px {
  margin-top: 117px;
}

.mb-117px {
  margin-bottom: 117px;
}

.ml-117px {
  margin-left: 117px;
}

.mr-117px {
  margin-right: 117px;
}

.mt--117px {
  margin-top: -117px;
}

.mb--117px {
  margin-bottom: -117px;
}

.ml--117px {
  margin-left: -117px;
}

.mr--117px {
  margin-right: -117px;
}

.my-117px {
  margin-top: 117px;
  margin-bottom: 117px;
}

.mx-117px {
  margin-left: 117px;
  margin-right: 117px;
}

.mi-117px {
  margin: 117px !important;
}

.mti-117px {
  margin-top: 117px !important;
}

.mbi-117px {
  margin-bottom: 117px !important;
}

.mli-117px {
  margin-left: 117px !important;
}

.mri-117px {
  margin-right: 117px !important;
}

.mti--117px {
  margin-top: -117px !important;
}

.mbi--117px {
  margin-bottom: -117px !important;
}

.mli--117px {
  margin-left: -117px !important;
}

.mri--117px {
  margin-right: -117px !important;
}

.myi-117px {
  margin-top: 117px !important;
  margin-bottom: 117px !important;
}

.mxi-117px {
  margin-left: 117px !important;
  margin-right: 117px !important;
}

.p-117px {
  padding: 117px;
}

.pt-117px {
  padding-top: 117px;
}

.pb-117px {
  padding-bottom: 117px;
}

.pl-117px {
  padding-left: 117px;
}

.pr-117px {
  padding-right: 117px;
}

.py-117px {
  padding-top: 117px;
  padding-bottom: 117px;
}

.px-117px {
  padding-left: 117px;
  padding-right: 117px;
}

.pi-117px {
  padding: 117px !important;
}

.pti-117px {
  padding-top: 117px !important;
}

.pbi-117px {
  padding-bottom: 117px !important;
}

.pli-117px {
  padding-left: 117px !important;
}

.pri-117px {
  padding-right: 117px !important;
}

.pyi-117px {
  padding-top: 117px !important;
  padding-bottom: 117px !important;
}

.pxi-117px {
  padding-left: 117px !important;
  padding-right: 117px !important;
}

tr.p-117px > td {
  padding: 117px;
}

tr.pt-117px > td {
  padding-top: 117px;
}

tr.pb-117px > td {
  padding-bottom: 117px;
}

tr.pl-117px > td {
  padding-left: 117px;
}

tr.pr-117px > td {
  padding-right: 117px;
}

tr.py-117px > td {
  padding-top: 117px;
  padding-bottom: 117px;
}

tr.px-117px > td {
  padding-left: 117px;
  padding-right: 117px;
}

tr.pi-117px > td {
  padding: 117px !important;
}

tr.pti-117px > td {
  padding-top: 117px !important;
}

tr.pbi-117px > td {
  padding-bottom: 117px !important;
}

tr.pli-117px > td {
  padding-left: 117px !important;
}

tr.pri-117px > td {
  padding-right: 117px !important;
}

tr.pyi-117px > td {
  padding-top: 117px !important;
  padding-bottom: 117px !important;
}

tr.pxi-117px > td {
  padding-left: 117px !important;
  padding-right: 117px !important;
}

tr.pxi-117px > td {
  padding-left: 117px !important;
  padding-right: 117px !important;
}

.m-118px {
  margin: 118px;
}

.mt-118px {
  margin-top: 118px;
}

.mb-118px {
  margin-bottom: 118px;
}

.ml-118px {
  margin-left: 118px;
}

.mr-118px {
  margin-right: 118px;
}

.mt--118px {
  margin-top: -118px;
}

.mb--118px {
  margin-bottom: -118px;
}

.ml--118px {
  margin-left: -118px;
}

.mr--118px {
  margin-right: -118px;
}

.my-118px {
  margin-top: 118px;
  margin-bottom: 118px;
}

.mx-118px {
  margin-left: 118px;
  margin-right: 118px;
}

.mi-118px {
  margin: 118px !important;
}

.mti-118px {
  margin-top: 118px !important;
}

.mbi-118px {
  margin-bottom: 118px !important;
}

.mli-118px {
  margin-left: 118px !important;
}

.mri-118px {
  margin-right: 118px !important;
}

.mti--118px {
  margin-top: -118px !important;
}

.mbi--118px {
  margin-bottom: -118px !important;
}

.mli--118px {
  margin-left: -118px !important;
}

.mri--118px {
  margin-right: -118px !important;
}

.myi-118px {
  margin-top: 118px !important;
  margin-bottom: 118px !important;
}

.mxi-118px {
  margin-left: 118px !important;
  margin-right: 118px !important;
}

.p-118px {
  padding: 118px;
}

.pt-118px {
  padding-top: 118px;
}

.pb-118px {
  padding-bottom: 118px;
}

.pl-118px {
  padding-left: 118px;
}

.pr-118px {
  padding-right: 118px;
}

.py-118px {
  padding-top: 118px;
  padding-bottom: 118px;
}

.px-118px {
  padding-left: 118px;
  padding-right: 118px;
}

.pi-118px {
  padding: 118px !important;
}

.pti-118px {
  padding-top: 118px !important;
}

.pbi-118px {
  padding-bottom: 118px !important;
}

.pli-118px {
  padding-left: 118px !important;
}

.pri-118px {
  padding-right: 118px !important;
}

.pyi-118px {
  padding-top: 118px !important;
  padding-bottom: 118px !important;
}

.pxi-118px {
  padding-left: 118px !important;
  padding-right: 118px !important;
}

tr.p-118px > td {
  padding: 118px;
}

tr.pt-118px > td {
  padding-top: 118px;
}

tr.pb-118px > td {
  padding-bottom: 118px;
}

tr.pl-118px > td {
  padding-left: 118px;
}

tr.pr-118px > td {
  padding-right: 118px;
}

tr.py-118px > td {
  padding-top: 118px;
  padding-bottom: 118px;
}

tr.px-118px > td {
  padding-left: 118px;
  padding-right: 118px;
}

tr.pi-118px > td {
  padding: 118px !important;
}

tr.pti-118px > td {
  padding-top: 118px !important;
}

tr.pbi-118px > td {
  padding-bottom: 118px !important;
}

tr.pli-118px > td {
  padding-left: 118px !important;
}

tr.pri-118px > td {
  padding-right: 118px !important;
}

tr.pyi-118px > td {
  padding-top: 118px !important;
  padding-bottom: 118px !important;
}

tr.pxi-118px > td {
  padding-left: 118px !important;
  padding-right: 118px !important;
}

tr.pxi-118px > td {
  padding-left: 118px !important;
  padding-right: 118px !important;
}

.m-119px {
  margin: 119px;
}

.mt-119px {
  margin-top: 119px;
}

.mb-119px {
  margin-bottom: 119px;
}

.ml-119px {
  margin-left: 119px;
}

.mr-119px {
  margin-right: 119px;
}

.mt--119px {
  margin-top: -119px;
}

.mb--119px {
  margin-bottom: -119px;
}

.ml--119px {
  margin-left: -119px;
}

.mr--119px {
  margin-right: -119px;
}

.my-119px {
  margin-top: 119px;
  margin-bottom: 119px;
}

.mx-119px {
  margin-left: 119px;
  margin-right: 119px;
}

.mi-119px {
  margin: 119px !important;
}

.mti-119px {
  margin-top: 119px !important;
}

.mbi-119px {
  margin-bottom: 119px !important;
}

.mli-119px {
  margin-left: 119px !important;
}

.mri-119px {
  margin-right: 119px !important;
}

.mti--119px {
  margin-top: -119px !important;
}

.mbi--119px {
  margin-bottom: -119px !important;
}

.mli--119px {
  margin-left: -119px !important;
}

.mri--119px {
  margin-right: -119px !important;
}

.myi-119px {
  margin-top: 119px !important;
  margin-bottom: 119px !important;
}

.mxi-119px {
  margin-left: 119px !important;
  margin-right: 119px !important;
}

.p-119px {
  padding: 119px;
}

.pt-119px {
  padding-top: 119px;
}

.pb-119px {
  padding-bottom: 119px;
}

.pl-119px {
  padding-left: 119px;
}

.pr-119px {
  padding-right: 119px;
}

.py-119px {
  padding-top: 119px;
  padding-bottom: 119px;
}

.px-119px {
  padding-left: 119px;
  padding-right: 119px;
}

.pi-119px {
  padding: 119px !important;
}

.pti-119px {
  padding-top: 119px !important;
}

.pbi-119px {
  padding-bottom: 119px !important;
}

.pli-119px {
  padding-left: 119px !important;
}

.pri-119px {
  padding-right: 119px !important;
}

.pyi-119px {
  padding-top: 119px !important;
  padding-bottom: 119px !important;
}

.pxi-119px {
  padding-left: 119px !important;
  padding-right: 119px !important;
}

tr.p-119px > td {
  padding: 119px;
}

tr.pt-119px > td {
  padding-top: 119px;
}

tr.pb-119px > td {
  padding-bottom: 119px;
}

tr.pl-119px > td {
  padding-left: 119px;
}

tr.pr-119px > td {
  padding-right: 119px;
}

tr.py-119px > td {
  padding-top: 119px;
  padding-bottom: 119px;
}

tr.px-119px > td {
  padding-left: 119px;
  padding-right: 119px;
}

tr.pi-119px > td {
  padding: 119px !important;
}

tr.pti-119px > td {
  padding-top: 119px !important;
}

tr.pbi-119px > td {
  padding-bottom: 119px !important;
}

tr.pli-119px > td {
  padding-left: 119px !important;
}

tr.pri-119px > td {
  padding-right: 119px !important;
}

tr.pyi-119px > td {
  padding-top: 119px !important;
  padding-bottom: 119px !important;
}

tr.pxi-119px > td {
  padding-left: 119px !important;
  padding-right: 119px !important;
}

tr.pxi-119px > td {
  padding-left: 119px !important;
  padding-right: 119px !important;
}

.m-120px {
  margin: 120px;
}

.mt-120px {
  margin-top: 120px;
}

.mb-120px {
  margin-bottom: 120px;
}

.ml-120px {
  margin-left: 120px;
}

.mr-120px {
  margin-right: 120px;
}

.mt--120px {
  margin-top: -120px;
}

.mb--120px {
  margin-bottom: -120px;
}

.ml--120px {
  margin-left: -120px;
}

.mr--120px {
  margin-right: -120px;
}

.my-120px {
  margin-top: 120px;
  margin-bottom: 120px;
}

.mx-120px {
  margin-left: 120px;
  margin-right: 120px;
}

.mi-120px {
  margin: 120px !important;
}

.mti-120px {
  margin-top: 120px !important;
}

.mbi-120px {
  margin-bottom: 120px !important;
}

.mli-120px {
  margin-left: 120px !important;
}

.mri-120px {
  margin-right: 120px !important;
}

.mti--120px {
  margin-top: -120px !important;
}

.mbi--120px {
  margin-bottom: -120px !important;
}

.mli--120px {
  margin-left: -120px !important;
}

.mri--120px {
  margin-right: -120px !important;
}

.myi-120px {
  margin-top: 120px !important;
  margin-bottom: 120px !important;
}

.mxi-120px {
  margin-left: 120px !important;
  margin-right: 120px !important;
}

.p-120px {
  padding: 120px;
}

.pt-120px {
  padding-top: 120px;
}

.pb-120px {
  padding-bottom: 120px;
}

.pl-120px {
  padding-left: 120px;
}

.pr-120px {
  padding-right: 120px;
}

.py-120px {
  padding-top: 120px;
  padding-bottom: 120px;
}

.px-120px {
  padding-left: 120px;
  padding-right: 120px;
}

.pi-120px {
  padding: 120px !important;
}

.pti-120px {
  padding-top: 120px !important;
}

.pbi-120px {
  padding-bottom: 120px !important;
}

.pli-120px {
  padding-left: 120px !important;
}

.pri-120px {
  padding-right: 120px !important;
}

.pyi-120px {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

.pxi-120px {
  padding-left: 120px !important;
  padding-right: 120px !important;
}

tr.p-120px > td {
  padding: 120px;
}

tr.pt-120px > td {
  padding-top: 120px;
}

tr.pb-120px > td {
  padding-bottom: 120px;
}

tr.pl-120px > td {
  padding-left: 120px;
}

tr.pr-120px > td {
  padding-right: 120px;
}

tr.py-120px > td {
  padding-top: 120px;
  padding-bottom: 120px;
}

tr.px-120px > td {
  padding-left: 120px;
  padding-right: 120px;
}

tr.pi-120px > td {
  padding: 120px !important;
}

tr.pti-120px > td {
  padding-top: 120px !important;
}

tr.pbi-120px > td {
  padding-bottom: 120px !important;
}

tr.pli-120px > td {
  padding-left: 120px !important;
}

tr.pri-120px > td {
  padding-right: 120px !important;
}

tr.pyi-120px > td {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

tr.pxi-120px > td {
  padding-left: 120px !important;
  padding-right: 120px !important;
}

tr.pxi-120px > td {
  padding-left: 120px !important;
  padding-right: 120px !important;
}

.m-121px {
  margin: 121px;
}

.mt-121px {
  margin-top: 121px;
}

.mb-121px {
  margin-bottom: 121px;
}

.ml-121px {
  margin-left: 121px;
}

.mr-121px {
  margin-right: 121px;
}

.mt--121px {
  margin-top: -121px;
}

.mb--121px {
  margin-bottom: -121px;
}

.ml--121px {
  margin-left: -121px;
}

.mr--121px {
  margin-right: -121px;
}

.my-121px {
  margin-top: 121px;
  margin-bottom: 121px;
}

.mx-121px {
  margin-left: 121px;
  margin-right: 121px;
}

.mi-121px {
  margin: 121px !important;
}

.mti-121px {
  margin-top: 121px !important;
}

.mbi-121px {
  margin-bottom: 121px !important;
}

.mli-121px {
  margin-left: 121px !important;
}

.mri-121px {
  margin-right: 121px !important;
}

.mti--121px {
  margin-top: -121px !important;
}

.mbi--121px {
  margin-bottom: -121px !important;
}

.mli--121px {
  margin-left: -121px !important;
}

.mri--121px {
  margin-right: -121px !important;
}

.myi-121px {
  margin-top: 121px !important;
  margin-bottom: 121px !important;
}

.mxi-121px {
  margin-left: 121px !important;
  margin-right: 121px !important;
}

.p-121px {
  padding: 121px;
}

.pt-121px {
  padding-top: 121px;
}

.pb-121px {
  padding-bottom: 121px;
}

.pl-121px {
  padding-left: 121px;
}

.pr-121px {
  padding-right: 121px;
}

.py-121px {
  padding-top: 121px;
  padding-bottom: 121px;
}

.px-121px {
  padding-left: 121px;
  padding-right: 121px;
}

.pi-121px {
  padding: 121px !important;
}

.pti-121px {
  padding-top: 121px !important;
}

.pbi-121px {
  padding-bottom: 121px !important;
}

.pli-121px {
  padding-left: 121px !important;
}

.pri-121px {
  padding-right: 121px !important;
}

.pyi-121px {
  padding-top: 121px !important;
  padding-bottom: 121px !important;
}

.pxi-121px {
  padding-left: 121px !important;
  padding-right: 121px !important;
}

tr.p-121px > td {
  padding: 121px;
}

tr.pt-121px > td {
  padding-top: 121px;
}

tr.pb-121px > td {
  padding-bottom: 121px;
}

tr.pl-121px > td {
  padding-left: 121px;
}

tr.pr-121px > td {
  padding-right: 121px;
}

tr.py-121px > td {
  padding-top: 121px;
  padding-bottom: 121px;
}

tr.px-121px > td {
  padding-left: 121px;
  padding-right: 121px;
}

tr.pi-121px > td {
  padding: 121px !important;
}

tr.pti-121px > td {
  padding-top: 121px !important;
}

tr.pbi-121px > td {
  padding-bottom: 121px !important;
}

tr.pli-121px > td {
  padding-left: 121px !important;
}

tr.pri-121px > td {
  padding-right: 121px !important;
}

tr.pyi-121px > td {
  padding-top: 121px !important;
  padding-bottom: 121px !important;
}

tr.pxi-121px > td {
  padding-left: 121px !important;
  padding-right: 121px !important;
}

tr.pxi-121px > td {
  padding-left: 121px !important;
  padding-right: 121px !important;
}

.m-122px {
  margin: 122px;
}

.mt-122px {
  margin-top: 122px;
}

.mb-122px {
  margin-bottom: 122px;
}

.ml-122px {
  margin-left: 122px;
}

.mr-122px {
  margin-right: 122px;
}

.mt--122px {
  margin-top: -122px;
}

.mb--122px {
  margin-bottom: -122px;
}

.ml--122px {
  margin-left: -122px;
}

.mr--122px {
  margin-right: -122px;
}

.my-122px {
  margin-top: 122px;
  margin-bottom: 122px;
}

.mx-122px {
  margin-left: 122px;
  margin-right: 122px;
}

.mi-122px {
  margin: 122px !important;
}

.mti-122px {
  margin-top: 122px !important;
}

.mbi-122px {
  margin-bottom: 122px !important;
}

.mli-122px {
  margin-left: 122px !important;
}

.mri-122px {
  margin-right: 122px !important;
}

.mti--122px {
  margin-top: -122px !important;
}

.mbi--122px {
  margin-bottom: -122px !important;
}

.mli--122px {
  margin-left: -122px !important;
}

.mri--122px {
  margin-right: -122px !important;
}

.myi-122px {
  margin-top: 122px !important;
  margin-bottom: 122px !important;
}

.mxi-122px {
  margin-left: 122px !important;
  margin-right: 122px !important;
}

.p-122px {
  padding: 122px;
}

.pt-122px {
  padding-top: 122px;
}

.pb-122px {
  padding-bottom: 122px;
}

.pl-122px {
  padding-left: 122px;
}

.pr-122px {
  padding-right: 122px;
}

.py-122px {
  padding-top: 122px;
  padding-bottom: 122px;
}

.px-122px {
  padding-left: 122px;
  padding-right: 122px;
}

.pi-122px {
  padding: 122px !important;
}

.pti-122px {
  padding-top: 122px !important;
}

.pbi-122px {
  padding-bottom: 122px !important;
}

.pli-122px {
  padding-left: 122px !important;
}

.pri-122px {
  padding-right: 122px !important;
}

.pyi-122px {
  padding-top: 122px !important;
  padding-bottom: 122px !important;
}

.pxi-122px {
  padding-left: 122px !important;
  padding-right: 122px !important;
}

tr.p-122px > td {
  padding: 122px;
}

tr.pt-122px > td {
  padding-top: 122px;
}

tr.pb-122px > td {
  padding-bottom: 122px;
}

tr.pl-122px > td {
  padding-left: 122px;
}

tr.pr-122px > td {
  padding-right: 122px;
}

tr.py-122px > td {
  padding-top: 122px;
  padding-bottom: 122px;
}

tr.px-122px > td {
  padding-left: 122px;
  padding-right: 122px;
}

tr.pi-122px > td {
  padding: 122px !important;
}

tr.pti-122px > td {
  padding-top: 122px !important;
}

tr.pbi-122px > td {
  padding-bottom: 122px !important;
}

tr.pli-122px > td {
  padding-left: 122px !important;
}

tr.pri-122px > td {
  padding-right: 122px !important;
}

tr.pyi-122px > td {
  padding-top: 122px !important;
  padding-bottom: 122px !important;
}

tr.pxi-122px > td {
  padding-left: 122px !important;
  padding-right: 122px !important;
}

tr.pxi-122px > td {
  padding-left: 122px !important;
  padding-right: 122px !important;
}

.m-123px {
  margin: 123px;
}

.mt-123px {
  margin-top: 123px;
}

.mb-123px {
  margin-bottom: 123px;
}

.ml-123px {
  margin-left: 123px;
}

.mr-123px {
  margin-right: 123px;
}

.mt--123px {
  margin-top: -123px;
}

.mb--123px {
  margin-bottom: -123px;
}

.ml--123px {
  margin-left: -123px;
}

.mr--123px {
  margin-right: -123px;
}

.my-123px {
  margin-top: 123px;
  margin-bottom: 123px;
}

.mx-123px {
  margin-left: 123px;
  margin-right: 123px;
}

.mi-123px {
  margin: 123px !important;
}

.mti-123px {
  margin-top: 123px !important;
}

.mbi-123px {
  margin-bottom: 123px !important;
}

.mli-123px {
  margin-left: 123px !important;
}

.mri-123px {
  margin-right: 123px !important;
}

.mti--123px {
  margin-top: -123px !important;
}

.mbi--123px {
  margin-bottom: -123px !important;
}

.mli--123px {
  margin-left: -123px !important;
}

.mri--123px {
  margin-right: -123px !important;
}

.myi-123px {
  margin-top: 123px !important;
  margin-bottom: 123px !important;
}

.mxi-123px {
  margin-left: 123px !important;
  margin-right: 123px !important;
}

.p-123px {
  padding: 123px;
}

.pt-123px {
  padding-top: 123px;
}

.pb-123px {
  padding-bottom: 123px;
}

.pl-123px {
  padding-left: 123px;
}

.pr-123px {
  padding-right: 123px;
}

.py-123px {
  padding-top: 123px;
  padding-bottom: 123px;
}

.px-123px {
  padding-left: 123px;
  padding-right: 123px;
}

.pi-123px {
  padding: 123px !important;
}

.pti-123px {
  padding-top: 123px !important;
}

.pbi-123px {
  padding-bottom: 123px !important;
}

.pli-123px {
  padding-left: 123px !important;
}

.pri-123px {
  padding-right: 123px !important;
}

.pyi-123px {
  padding-top: 123px !important;
  padding-bottom: 123px !important;
}

.pxi-123px {
  padding-left: 123px !important;
  padding-right: 123px !important;
}

tr.p-123px > td {
  padding: 123px;
}

tr.pt-123px > td {
  padding-top: 123px;
}

tr.pb-123px > td {
  padding-bottom: 123px;
}

tr.pl-123px > td {
  padding-left: 123px;
}

tr.pr-123px > td {
  padding-right: 123px;
}

tr.py-123px > td {
  padding-top: 123px;
  padding-bottom: 123px;
}

tr.px-123px > td {
  padding-left: 123px;
  padding-right: 123px;
}

tr.pi-123px > td {
  padding: 123px !important;
}

tr.pti-123px > td {
  padding-top: 123px !important;
}

tr.pbi-123px > td {
  padding-bottom: 123px !important;
}

tr.pli-123px > td {
  padding-left: 123px !important;
}

tr.pri-123px > td {
  padding-right: 123px !important;
}

tr.pyi-123px > td {
  padding-top: 123px !important;
  padding-bottom: 123px !important;
}

tr.pxi-123px > td {
  padding-left: 123px !important;
  padding-right: 123px !important;
}

tr.pxi-123px > td {
  padding-left: 123px !important;
  padding-right: 123px !important;
}

.m-124px {
  margin: 124px;
}

.mt-124px {
  margin-top: 124px;
}

.mb-124px {
  margin-bottom: 124px;
}

.ml-124px {
  margin-left: 124px;
}

.mr-124px {
  margin-right: 124px;
}

.mt--124px {
  margin-top: -124px;
}

.mb--124px {
  margin-bottom: -124px;
}

.ml--124px {
  margin-left: -124px;
}

.mr--124px {
  margin-right: -124px;
}

.my-124px {
  margin-top: 124px;
  margin-bottom: 124px;
}

.mx-124px {
  margin-left: 124px;
  margin-right: 124px;
}

.mi-124px {
  margin: 124px !important;
}

.mti-124px {
  margin-top: 124px !important;
}

.mbi-124px {
  margin-bottom: 124px !important;
}

.mli-124px {
  margin-left: 124px !important;
}

.mri-124px {
  margin-right: 124px !important;
}

.mti--124px {
  margin-top: -124px !important;
}

.mbi--124px {
  margin-bottom: -124px !important;
}

.mli--124px {
  margin-left: -124px !important;
}

.mri--124px {
  margin-right: -124px !important;
}

.myi-124px {
  margin-top: 124px !important;
  margin-bottom: 124px !important;
}

.mxi-124px {
  margin-left: 124px !important;
  margin-right: 124px !important;
}

.p-124px {
  padding: 124px;
}

.pt-124px {
  padding-top: 124px;
}

.pb-124px {
  padding-bottom: 124px;
}

.pl-124px {
  padding-left: 124px;
}

.pr-124px {
  padding-right: 124px;
}

.py-124px {
  padding-top: 124px;
  padding-bottom: 124px;
}

.px-124px {
  padding-left: 124px;
  padding-right: 124px;
}

.pi-124px {
  padding: 124px !important;
}

.pti-124px {
  padding-top: 124px !important;
}

.pbi-124px {
  padding-bottom: 124px !important;
}

.pli-124px {
  padding-left: 124px !important;
}

.pri-124px {
  padding-right: 124px !important;
}

.pyi-124px {
  padding-top: 124px !important;
  padding-bottom: 124px !important;
}

.pxi-124px {
  padding-left: 124px !important;
  padding-right: 124px !important;
}

tr.p-124px > td {
  padding: 124px;
}

tr.pt-124px > td {
  padding-top: 124px;
}

tr.pb-124px > td {
  padding-bottom: 124px;
}

tr.pl-124px > td {
  padding-left: 124px;
}

tr.pr-124px > td {
  padding-right: 124px;
}

tr.py-124px > td {
  padding-top: 124px;
  padding-bottom: 124px;
}

tr.px-124px > td {
  padding-left: 124px;
  padding-right: 124px;
}

tr.pi-124px > td {
  padding: 124px !important;
}

tr.pti-124px > td {
  padding-top: 124px !important;
}

tr.pbi-124px > td {
  padding-bottom: 124px !important;
}

tr.pli-124px > td {
  padding-left: 124px !important;
}

tr.pri-124px > td {
  padding-right: 124px !important;
}

tr.pyi-124px > td {
  padding-top: 124px !important;
  padding-bottom: 124px !important;
}

tr.pxi-124px > td {
  padding-left: 124px !important;
  padding-right: 124px !important;
}

tr.pxi-124px > td {
  padding-left: 124px !important;
  padding-right: 124px !important;
}

.m-125px {
  margin: 125px;
}

.mt-125px {
  margin-top: 125px;
}

.mb-125px {
  margin-bottom: 125px;
}

.ml-125px {
  margin-left: 125px;
}

.mr-125px {
  margin-right: 125px;
}

.mt--125px {
  margin-top: -125px;
}

.mb--125px {
  margin-bottom: -125px;
}

.ml--125px {
  margin-left: -125px;
}

.mr--125px {
  margin-right: -125px;
}

.my-125px {
  margin-top: 125px;
  margin-bottom: 125px;
}

.mx-125px {
  margin-left: 125px;
  margin-right: 125px;
}

.mi-125px {
  margin: 125px !important;
}

.mti-125px {
  margin-top: 125px !important;
}

.mbi-125px {
  margin-bottom: 125px !important;
}

.mli-125px {
  margin-left: 125px !important;
}

.mri-125px {
  margin-right: 125px !important;
}

.mti--125px {
  margin-top: -125px !important;
}

.mbi--125px {
  margin-bottom: -125px !important;
}

.mli--125px {
  margin-left: -125px !important;
}

.mri--125px {
  margin-right: -125px !important;
}

.myi-125px {
  margin-top: 125px !important;
  margin-bottom: 125px !important;
}

.mxi-125px {
  margin-left: 125px !important;
  margin-right: 125px !important;
}

.p-125px {
  padding: 125px;
}

.pt-125px {
  padding-top: 125px;
}

.pb-125px {
  padding-bottom: 125px;
}

.pl-125px {
  padding-left: 125px;
}

.pr-125px {
  padding-right: 125px;
}

.py-125px {
  padding-top: 125px;
  padding-bottom: 125px;
}

.px-125px {
  padding-left: 125px;
  padding-right: 125px;
}

.pi-125px {
  padding: 125px !important;
}

.pti-125px {
  padding-top: 125px !important;
}

.pbi-125px {
  padding-bottom: 125px !important;
}

.pli-125px {
  padding-left: 125px !important;
}

.pri-125px {
  padding-right: 125px !important;
}

.pyi-125px {
  padding-top: 125px !important;
  padding-bottom: 125px !important;
}

.pxi-125px {
  padding-left: 125px !important;
  padding-right: 125px !important;
}

tr.p-125px > td {
  padding: 125px;
}

tr.pt-125px > td {
  padding-top: 125px;
}

tr.pb-125px > td {
  padding-bottom: 125px;
}

tr.pl-125px > td {
  padding-left: 125px;
}

tr.pr-125px > td {
  padding-right: 125px;
}

tr.py-125px > td {
  padding-top: 125px;
  padding-bottom: 125px;
}

tr.px-125px > td {
  padding-left: 125px;
  padding-right: 125px;
}

tr.pi-125px > td {
  padding: 125px !important;
}

tr.pti-125px > td {
  padding-top: 125px !important;
}

tr.pbi-125px > td {
  padding-bottom: 125px !important;
}

tr.pli-125px > td {
  padding-left: 125px !important;
}

tr.pri-125px > td {
  padding-right: 125px !important;
}

tr.pyi-125px > td {
  padding-top: 125px !important;
  padding-bottom: 125px !important;
}

tr.pxi-125px > td {
  padding-left: 125px !important;
  padding-right: 125px !important;
}

tr.pxi-125px > td {
  padding-left: 125px !important;
  padding-right: 125px !important;
}

.m-126px {
  margin: 126px;
}

.mt-126px {
  margin-top: 126px;
}

.mb-126px {
  margin-bottom: 126px;
}

.ml-126px {
  margin-left: 126px;
}

.mr-126px {
  margin-right: 126px;
}

.mt--126px {
  margin-top: -126px;
}

.mb--126px {
  margin-bottom: -126px;
}

.ml--126px {
  margin-left: -126px;
}

.mr--126px {
  margin-right: -126px;
}

.my-126px {
  margin-top: 126px;
  margin-bottom: 126px;
}

.mx-126px {
  margin-left: 126px;
  margin-right: 126px;
}

.mi-126px {
  margin: 126px !important;
}

.mti-126px {
  margin-top: 126px !important;
}

.mbi-126px {
  margin-bottom: 126px !important;
}

.mli-126px {
  margin-left: 126px !important;
}

.mri-126px {
  margin-right: 126px !important;
}

.mti--126px {
  margin-top: -126px !important;
}

.mbi--126px {
  margin-bottom: -126px !important;
}

.mli--126px {
  margin-left: -126px !important;
}

.mri--126px {
  margin-right: -126px !important;
}

.myi-126px {
  margin-top: 126px !important;
  margin-bottom: 126px !important;
}

.mxi-126px {
  margin-left: 126px !important;
  margin-right: 126px !important;
}

.p-126px {
  padding: 126px;
}

.pt-126px {
  padding-top: 126px;
}

.pb-126px {
  padding-bottom: 126px;
}

.pl-126px {
  padding-left: 126px;
}

.pr-126px {
  padding-right: 126px;
}

.py-126px {
  padding-top: 126px;
  padding-bottom: 126px;
}

.px-126px {
  padding-left: 126px;
  padding-right: 126px;
}

.pi-126px {
  padding: 126px !important;
}

.pti-126px {
  padding-top: 126px !important;
}

.pbi-126px {
  padding-bottom: 126px !important;
}

.pli-126px {
  padding-left: 126px !important;
}

.pri-126px {
  padding-right: 126px !important;
}

.pyi-126px {
  padding-top: 126px !important;
  padding-bottom: 126px !important;
}

.pxi-126px {
  padding-left: 126px !important;
  padding-right: 126px !important;
}

tr.p-126px > td {
  padding: 126px;
}

tr.pt-126px > td {
  padding-top: 126px;
}

tr.pb-126px > td {
  padding-bottom: 126px;
}

tr.pl-126px > td {
  padding-left: 126px;
}

tr.pr-126px > td {
  padding-right: 126px;
}

tr.py-126px > td {
  padding-top: 126px;
  padding-bottom: 126px;
}

tr.px-126px > td {
  padding-left: 126px;
  padding-right: 126px;
}

tr.pi-126px > td {
  padding: 126px !important;
}

tr.pti-126px > td {
  padding-top: 126px !important;
}

tr.pbi-126px > td {
  padding-bottom: 126px !important;
}

tr.pli-126px > td {
  padding-left: 126px !important;
}

tr.pri-126px > td {
  padding-right: 126px !important;
}

tr.pyi-126px > td {
  padding-top: 126px !important;
  padding-bottom: 126px !important;
}

tr.pxi-126px > td {
  padding-left: 126px !important;
  padding-right: 126px !important;
}

tr.pxi-126px > td {
  padding-left: 126px !important;
  padding-right: 126px !important;
}

.m-127px {
  margin: 127px;
}

.mt-127px {
  margin-top: 127px;
}

.mb-127px {
  margin-bottom: 127px;
}

.ml-127px {
  margin-left: 127px;
}

.mr-127px {
  margin-right: 127px;
}

.mt--127px {
  margin-top: -127px;
}

.mb--127px {
  margin-bottom: -127px;
}

.ml--127px {
  margin-left: -127px;
}

.mr--127px {
  margin-right: -127px;
}

.my-127px {
  margin-top: 127px;
  margin-bottom: 127px;
}

.mx-127px {
  margin-left: 127px;
  margin-right: 127px;
}

.mi-127px {
  margin: 127px !important;
}

.mti-127px {
  margin-top: 127px !important;
}

.mbi-127px {
  margin-bottom: 127px !important;
}

.mli-127px {
  margin-left: 127px !important;
}

.mri-127px {
  margin-right: 127px !important;
}

.mti--127px {
  margin-top: -127px !important;
}

.mbi--127px {
  margin-bottom: -127px !important;
}

.mli--127px {
  margin-left: -127px !important;
}

.mri--127px {
  margin-right: -127px !important;
}

.myi-127px {
  margin-top: 127px !important;
  margin-bottom: 127px !important;
}

.mxi-127px {
  margin-left: 127px !important;
  margin-right: 127px !important;
}

.p-127px {
  padding: 127px;
}

.pt-127px {
  padding-top: 127px;
}

.pb-127px {
  padding-bottom: 127px;
}

.pl-127px {
  padding-left: 127px;
}

.pr-127px {
  padding-right: 127px;
}

.py-127px {
  padding-top: 127px;
  padding-bottom: 127px;
}

.px-127px {
  padding-left: 127px;
  padding-right: 127px;
}

.pi-127px {
  padding: 127px !important;
}

.pti-127px {
  padding-top: 127px !important;
}

.pbi-127px {
  padding-bottom: 127px !important;
}

.pli-127px {
  padding-left: 127px !important;
}

.pri-127px {
  padding-right: 127px !important;
}

.pyi-127px {
  padding-top: 127px !important;
  padding-bottom: 127px !important;
}

.pxi-127px {
  padding-left: 127px !important;
  padding-right: 127px !important;
}

tr.p-127px > td {
  padding: 127px;
}

tr.pt-127px > td {
  padding-top: 127px;
}

tr.pb-127px > td {
  padding-bottom: 127px;
}

tr.pl-127px > td {
  padding-left: 127px;
}

tr.pr-127px > td {
  padding-right: 127px;
}

tr.py-127px > td {
  padding-top: 127px;
  padding-bottom: 127px;
}

tr.px-127px > td {
  padding-left: 127px;
  padding-right: 127px;
}

tr.pi-127px > td {
  padding: 127px !important;
}

tr.pti-127px > td {
  padding-top: 127px !important;
}

tr.pbi-127px > td {
  padding-bottom: 127px !important;
}

tr.pli-127px > td {
  padding-left: 127px !important;
}

tr.pri-127px > td {
  padding-right: 127px !important;
}

tr.pyi-127px > td {
  padding-top: 127px !important;
  padding-bottom: 127px !important;
}

tr.pxi-127px > td {
  padding-left: 127px !important;
  padding-right: 127px !important;
}

tr.pxi-127px > td {
  padding-left: 127px !important;
  padding-right: 127px !important;
}

.m-128px {
  margin: 128px;
}

.mt-128px {
  margin-top: 128px;
}

.mb-128px {
  margin-bottom: 128px;
}

.ml-128px {
  margin-left: 128px;
}

.mr-128px {
  margin-right: 128px;
}

.mt--128px {
  margin-top: -128px;
}

.mb--128px {
  margin-bottom: -128px;
}

.ml--128px {
  margin-left: -128px;
}

.mr--128px {
  margin-right: -128px;
}

.my-128px {
  margin-top: 128px;
  margin-bottom: 128px;
}

.mx-128px {
  margin-left: 128px;
  margin-right: 128px;
}

.mi-128px {
  margin: 128px !important;
}

.mti-128px {
  margin-top: 128px !important;
}

.mbi-128px {
  margin-bottom: 128px !important;
}

.mli-128px {
  margin-left: 128px !important;
}

.mri-128px {
  margin-right: 128px !important;
}

.mti--128px {
  margin-top: -128px !important;
}

.mbi--128px {
  margin-bottom: -128px !important;
}

.mli--128px {
  margin-left: -128px !important;
}

.mri--128px {
  margin-right: -128px !important;
}

.myi-128px {
  margin-top: 128px !important;
  margin-bottom: 128px !important;
}

.mxi-128px {
  margin-left: 128px !important;
  margin-right: 128px !important;
}

.p-128px {
  padding: 128px;
}

.pt-128px {
  padding-top: 128px;
}

.pb-128px {
  padding-bottom: 128px;
}

.pl-128px {
  padding-left: 128px;
}

.pr-128px {
  padding-right: 128px;
}

.py-128px {
  padding-top: 128px;
  padding-bottom: 128px;
}

.px-128px {
  padding-left: 128px;
  padding-right: 128px;
}

.pi-128px {
  padding: 128px !important;
}

.pti-128px {
  padding-top: 128px !important;
}

.pbi-128px {
  padding-bottom: 128px !important;
}

.pli-128px {
  padding-left: 128px !important;
}

.pri-128px {
  padding-right: 128px !important;
}

.pyi-128px {
  padding-top: 128px !important;
  padding-bottom: 128px !important;
}

.pxi-128px {
  padding-left: 128px !important;
  padding-right: 128px !important;
}

tr.p-128px > td {
  padding: 128px;
}

tr.pt-128px > td {
  padding-top: 128px;
}

tr.pb-128px > td {
  padding-bottom: 128px;
}

tr.pl-128px > td {
  padding-left: 128px;
}

tr.pr-128px > td {
  padding-right: 128px;
}

tr.py-128px > td {
  padding-top: 128px;
  padding-bottom: 128px;
}

tr.px-128px > td {
  padding-left: 128px;
  padding-right: 128px;
}

tr.pi-128px > td {
  padding: 128px !important;
}

tr.pti-128px > td {
  padding-top: 128px !important;
}

tr.pbi-128px > td {
  padding-bottom: 128px !important;
}

tr.pli-128px > td {
  padding-left: 128px !important;
}

tr.pri-128px > td {
  padding-right: 128px !important;
}

tr.pyi-128px > td {
  padding-top: 128px !important;
  padding-bottom: 128px !important;
}

tr.pxi-128px > td {
  padding-left: 128px !important;
  padding-right: 128px !important;
}

tr.pxi-128px > td {
  padding-left: 128px !important;
  padding-right: 128px !important;
}

.m-129px {
  margin: 129px;
}

.mt-129px {
  margin-top: 129px;
}

.mb-129px {
  margin-bottom: 129px;
}

.ml-129px {
  margin-left: 129px;
}

.mr-129px {
  margin-right: 129px;
}

.mt--129px {
  margin-top: -129px;
}

.mb--129px {
  margin-bottom: -129px;
}

.ml--129px {
  margin-left: -129px;
}

.mr--129px {
  margin-right: -129px;
}

.my-129px {
  margin-top: 129px;
  margin-bottom: 129px;
}

.mx-129px {
  margin-left: 129px;
  margin-right: 129px;
}

.mi-129px {
  margin: 129px !important;
}

.mti-129px {
  margin-top: 129px !important;
}

.mbi-129px {
  margin-bottom: 129px !important;
}

.mli-129px {
  margin-left: 129px !important;
}

.mri-129px {
  margin-right: 129px !important;
}

.mti--129px {
  margin-top: -129px !important;
}

.mbi--129px {
  margin-bottom: -129px !important;
}

.mli--129px {
  margin-left: -129px !important;
}

.mri--129px {
  margin-right: -129px !important;
}

.myi-129px {
  margin-top: 129px !important;
  margin-bottom: 129px !important;
}

.mxi-129px {
  margin-left: 129px !important;
  margin-right: 129px !important;
}

.p-129px {
  padding: 129px;
}

.pt-129px {
  padding-top: 129px;
}

.pb-129px {
  padding-bottom: 129px;
}

.pl-129px {
  padding-left: 129px;
}

.pr-129px {
  padding-right: 129px;
}

.py-129px {
  padding-top: 129px;
  padding-bottom: 129px;
}

.px-129px {
  padding-left: 129px;
  padding-right: 129px;
}

.pi-129px {
  padding: 129px !important;
}

.pti-129px {
  padding-top: 129px !important;
}

.pbi-129px {
  padding-bottom: 129px !important;
}

.pli-129px {
  padding-left: 129px !important;
}

.pri-129px {
  padding-right: 129px !important;
}

.pyi-129px {
  padding-top: 129px !important;
  padding-bottom: 129px !important;
}

.pxi-129px {
  padding-left: 129px !important;
  padding-right: 129px !important;
}

tr.p-129px > td {
  padding: 129px;
}

tr.pt-129px > td {
  padding-top: 129px;
}

tr.pb-129px > td {
  padding-bottom: 129px;
}

tr.pl-129px > td {
  padding-left: 129px;
}

tr.pr-129px > td {
  padding-right: 129px;
}

tr.py-129px > td {
  padding-top: 129px;
  padding-bottom: 129px;
}

tr.px-129px > td {
  padding-left: 129px;
  padding-right: 129px;
}

tr.pi-129px > td {
  padding: 129px !important;
}

tr.pti-129px > td {
  padding-top: 129px !important;
}

tr.pbi-129px > td {
  padding-bottom: 129px !important;
}

tr.pli-129px > td {
  padding-left: 129px !important;
}

tr.pri-129px > td {
  padding-right: 129px !important;
}

tr.pyi-129px > td {
  padding-top: 129px !important;
  padding-bottom: 129px !important;
}

tr.pxi-129px > td {
  padding-left: 129px !important;
  padding-right: 129px !important;
}

tr.pxi-129px > td {
  padding-left: 129px !important;
  padding-right: 129px !important;
}

.m-130px {
  margin: 130px;
}

.mt-130px {
  margin-top: 130px;
}

.mb-130px {
  margin-bottom: 130px;
}

.ml-130px {
  margin-left: 130px;
}

.mr-130px {
  margin-right: 130px;
}

.mt--130px {
  margin-top: -130px;
}

.mb--130px {
  margin-bottom: -130px;
}

.ml--130px {
  margin-left: -130px;
}

.mr--130px {
  margin-right: -130px;
}

.my-130px {
  margin-top: 130px;
  margin-bottom: 130px;
}

.mx-130px {
  margin-left: 130px;
  margin-right: 130px;
}

.mi-130px {
  margin: 130px !important;
}

.mti-130px {
  margin-top: 130px !important;
}

.mbi-130px {
  margin-bottom: 130px !important;
}

.mli-130px {
  margin-left: 130px !important;
}

.mri-130px {
  margin-right: 130px !important;
}

.mti--130px {
  margin-top: -130px !important;
}

.mbi--130px {
  margin-bottom: -130px !important;
}

.mli--130px {
  margin-left: -130px !important;
}

.mri--130px {
  margin-right: -130px !important;
}

.myi-130px {
  margin-top: 130px !important;
  margin-bottom: 130px !important;
}

.mxi-130px {
  margin-left: 130px !important;
  margin-right: 130px !important;
}

.p-130px {
  padding: 130px;
}

.pt-130px {
  padding-top: 130px;
}

.pb-130px {
  padding-bottom: 130px;
}

.pl-130px {
  padding-left: 130px;
}

.pr-130px {
  padding-right: 130px;
}

.py-130px {
  padding-top: 130px;
  padding-bottom: 130px;
}

.px-130px {
  padding-left: 130px;
  padding-right: 130px;
}

.pi-130px {
  padding: 130px !important;
}

.pti-130px {
  padding-top: 130px !important;
}

.pbi-130px {
  padding-bottom: 130px !important;
}

.pli-130px {
  padding-left: 130px !important;
}

.pri-130px {
  padding-right: 130px !important;
}

.pyi-130px {
  padding-top: 130px !important;
  padding-bottom: 130px !important;
}

.pxi-130px {
  padding-left: 130px !important;
  padding-right: 130px !important;
}

tr.p-130px > td {
  padding: 130px;
}

tr.pt-130px > td {
  padding-top: 130px;
}

tr.pb-130px > td {
  padding-bottom: 130px;
}

tr.pl-130px > td {
  padding-left: 130px;
}

tr.pr-130px > td {
  padding-right: 130px;
}

tr.py-130px > td {
  padding-top: 130px;
  padding-bottom: 130px;
}

tr.px-130px > td {
  padding-left: 130px;
  padding-right: 130px;
}

tr.pi-130px > td {
  padding: 130px !important;
}

tr.pti-130px > td {
  padding-top: 130px !important;
}

tr.pbi-130px > td {
  padding-bottom: 130px !important;
}

tr.pli-130px > td {
  padding-left: 130px !important;
}

tr.pri-130px > td {
  padding-right: 130px !important;
}

tr.pyi-130px > td {
  padding-top: 130px !important;
  padding-bottom: 130px !important;
}

tr.pxi-130px > td {
  padding-left: 130px !important;
  padding-right: 130px !important;
}

tr.pxi-130px > td {
  padding-left: 130px !important;
  padding-right: 130px !important;
}

.m-131px {
  margin: 131px;
}

.mt-131px {
  margin-top: 131px;
}

.mb-131px {
  margin-bottom: 131px;
}

.ml-131px {
  margin-left: 131px;
}

.mr-131px {
  margin-right: 131px;
}

.mt--131px {
  margin-top: -131px;
}

.mb--131px {
  margin-bottom: -131px;
}

.ml--131px {
  margin-left: -131px;
}

.mr--131px {
  margin-right: -131px;
}

.my-131px {
  margin-top: 131px;
  margin-bottom: 131px;
}

.mx-131px {
  margin-left: 131px;
  margin-right: 131px;
}

.mi-131px {
  margin: 131px !important;
}

.mti-131px {
  margin-top: 131px !important;
}

.mbi-131px {
  margin-bottom: 131px !important;
}

.mli-131px {
  margin-left: 131px !important;
}

.mri-131px {
  margin-right: 131px !important;
}

.mti--131px {
  margin-top: -131px !important;
}

.mbi--131px {
  margin-bottom: -131px !important;
}

.mli--131px {
  margin-left: -131px !important;
}

.mri--131px {
  margin-right: -131px !important;
}

.myi-131px {
  margin-top: 131px !important;
  margin-bottom: 131px !important;
}

.mxi-131px {
  margin-left: 131px !important;
  margin-right: 131px !important;
}

.p-131px {
  padding: 131px;
}

.pt-131px {
  padding-top: 131px;
}

.pb-131px {
  padding-bottom: 131px;
}

.pl-131px {
  padding-left: 131px;
}

.pr-131px {
  padding-right: 131px;
}

.py-131px {
  padding-top: 131px;
  padding-bottom: 131px;
}

.px-131px {
  padding-left: 131px;
  padding-right: 131px;
}

.pi-131px {
  padding: 131px !important;
}

.pti-131px {
  padding-top: 131px !important;
}

.pbi-131px {
  padding-bottom: 131px !important;
}

.pli-131px {
  padding-left: 131px !important;
}

.pri-131px {
  padding-right: 131px !important;
}

.pyi-131px {
  padding-top: 131px !important;
  padding-bottom: 131px !important;
}

.pxi-131px {
  padding-left: 131px !important;
  padding-right: 131px !important;
}

tr.p-131px > td {
  padding: 131px;
}

tr.pt-131px > td {
  padding-top: 131px;
}

tr.pb-131px > td {
  padding-bottom: 131px;
}

tr.pl-131px > td {
  padding-left: 131px;
}

tr.pr-131px > td {
  padding-right: 131px;
}

tr.py-131px > td {
  padding-top: 131px;
  padding-bottom: 131px;
}

tr.px-131px > td {
  padding-left: 131px;
  padding-right: 131px;
}

tr.pi-131px > td {
  padding: 131px !important;
}

tr.pti-131px > td {
  padding-top: 131px !important;
}

tr.pbi-131px > td {
  padding-bottom: 131px !important;
}

tr.pli-131px > td {
  padding-left: 131px !important;
}

tr.pri-131px > td {
  padding-right: 131px !important;
}

tr.pyi-131px > td {
  padding-top: 131px !important;
  padding-bottom: 131px !important;
}

tr.pxi-131px > td {
  padding-left: 131px !important;
  padding-right: 131px !important;
}

tr.pxi-131px > td {
  padding-left: 131px !important;
  padding-right: 131px !important;
}

.m-132px {
  margin: 132px;
}

.mt-132px {
  margin-top: 132px;
}

.mb-132px {
  margin-bottom: 132px;
}

.ml-132px {
  margin-left: 132px;
}

.mr-132px {
  margin-right: 132px;
}

.mt--132px {
  margin-top: -132px;
}

.mb--132px {
  margin-bottom: -132px;
}

.ml--132px {
  margin-left: -132px;
}

.mr--132px {
  margin-right: -132px;
}

.my-132px {
  margin-top: 132px;
  margin-bottom: 132px;
}

.mx-132px {
  margin-left: 132px;
  margin-right: 132px;
}

.mi-132px {
  margin: 132px !important;
}

.mti-132px {
  margin-top: 132px !important;
}

.mbi-132px {
  margin-bottom: 132px !important;
}

.mli-132px {
  margin-left: 132px !important;
}

.mri-132px {
  margin-right: 132px !important;
}

.mti--132px {
  margin-top: -132px !important;
}

.mbi--132px {
  margin-bottom: -132px !important;
}

.mli--132px {
  margin-left: -132px !important;
}

.mri--132px {
  margin-right: -132px !important;
}

.myi-132px {
  margin-top: 132px !important;
  margin-bottom: 132px !important;
}

.mxi-132px {
  margin-left: 132px !important;
  margin-right: 132px !important;
}

.p-132px {
  padding: 132px;
}

.pt-132px {
  padding-top: 132px;
}

.pb-132px {
  padding-bottom: 132px;
}

.pl-132px {
  padding-left: 132px;
}

.pr-132px {
  padding-right: 132px;
}

.py-132px {
  padding-top: 132px;
  padding-bottom: 132px;
}

.px-132px {
  padding-left: 132px;
  padding-right: 132px;
}

.pi-132px {
  padding: 132px !important;
}

.pti-132px {
  padding-top: 132px !important;
}

.pbi-132px {
  padding-bottom: 132px !important;
}

.pli-132px {
  padding-left: 132px !important;
}

.pri-132px {
  padding-right: 132px !important;
}

.pyi-132px {
  padding-top: 132px !important;
  padding-bottom: 132px !important;
}

.pxi-132px {
  padding-left: 132px !important;
  padding-right: 132px !important;
}

tr.p-132px > td {
  padding: 132px;
}

tr.pt-132px > td {
  padding-top: 132px;
}

tr.pb-132px > td {
  padding-bottom: 132px;
}

tr.pl-132px > td {
  padding-left: 132px;
}

tr.pr-132px > td {
  padding-right: 132px;
}

tr.py-132px > td {
  padding-top: 132px;
  padding-bottom: 132px;
}

tr.px-132px > td {
  padding-left: 132px;
  padding-right: 132px;
}

tr.pi-132px > td {
  padding: 132px !important;
}

tr.pti-132px > td {
  padding-top: 132px !important;
}

tr.pbi-132px > td {
  padding-bottom: 132px !important;
}

tr.pli-132px > td {
  padding-left: 132px !important;
}

tr.pri-132px > td {
  padding-right: 132px !important;
}

tr.pyi-132px > td {
  padding-top: 132px !important;
  padding-bottom: 132px !important;
}

tr.pxi-132px > td {
  padding-left: 132px !important;
  padding-right: 132px !important;
}

tr.pxi-132px > td {
  padding-left: 132px !important;
  padding-right: 132px !important;
}

.m-133px {
  margin: 133px;
}

.mt-133px {
  margin-top: 133px;
}

.mb-133px {
  margin-bottom: 133px;
}

.ml-133px {
  margin-left: 133px;
}

.mr-133px {
  margin-right: 133px;
}

.mt--133px {
  margin-top: -133px;
}

.mb--133px {
  margin-bottom: -133px;
}

.ml--133px {
  margin-left: -133px;
}

.mr--133px {
  margin-right: -133px;
}

.my-133px {
  margin-top: 133px;
  margin-bottom: 133px;
}

.mx-133px {
  margin-left: 133px;
  margin-right: 133px;
}

.mi-133px {
  margin: 133px !important;
}

.mti-133px {
  margin-top: 133px !important;
}

.mbi-133px {
  margin-bottom: 133px !important;
}

.mli-133px {
  margin-left: 133px !important;
}

.mri-133px {
  margin-right: 133px !important;
}

.mti--133px {
  margin-top: -133px !important;
}

.mbi--133px {
  margin-bottom: -133px !important;
}

.mli--133px {
  margin-left: -133px !important;
}

.mri--133px {
  margin-right: -133px !important;
}

.myi-133px {
  margin-top: 133px !important;
  margin-bottom: 133px !important;
}

.mxi-133px {
  margin-left: 133px !important;
  margin-right: 133px !important;
}

.p-133px {
  padding: 133px;
}

.pt-133px {
  padding-top: 133px;
}

.pb-133px {
  padding-bottom: 133px;
}

.pl-133px {
  padding-left: 133px;
}

.pr-133px {
  padding-right: 133px;
}

.py-133px {
  padding-top: 133px;
  padding-bottom: 133px;
}

.px-133px {
  padding-left: 133px;
  padding-right: 133px;
}

.pi-133px {
  padding: 133px !important;
}

.pti-133px {
  padding-top: 133px !important;
}

.pbi-133px {
  padding-bottom: 133px !important;
}

.pli-133px {
  padding-left: 133px !important;
}

.pri-133px {
  padding-right: 133px !important;
}

.pyi-133px {
  padding-top: 133px !important;
  padding-bottom: 133px !important;
}

.pxi-133px {
  padding-left: 133px !important;
  padding-right: 133px !important;
}

tr.p-133px > td {
  padding: 133px;
}

tr.pt-133px > td {
  padding-top: 133px;
}

tr.pb-133px > td {
  padding-bottom: 133px;
}

tr.pl-133px > td {
  padding-left: 133px;
}

tr.pr-133px > td {
  padding-right: 133px;
}

tr.py-133px > td {
  padding-top: 133px;
  padding-bottom: 133px;
}

tr.px-133px > td {
  padding-left: 133px;
  padding-right: 133px;
}

tr.pi-133px > td {
  padding: 133px !important;
}

tr.pti-133px > td {
  padding-top: 133px !important;
}

tr.pbi-133px > td {
  padding-bottom: 133px !important;
}

tr.pli-133px > td {
  padding-left: 133px !important;
}

tr.pri-133px > td {
  padding-right: 133px !important;
}

tr.pyi-133px > td {
  padding-top: 133px !important;
  padding-bottom: 133px !important;
}

tr.pxi-133px > td {
  padding-left: 133px !important;
  padding-right: 133px !important;
}

tr.pxi-133px > td {
  padding-left: 133px !important;
  padding-right: 133px !important;
}

.m-134px {
  margin: 134px;
}

.mt-134px {
  margin-top: 134px;
}

.mb-134px {
  margin-bottom: 134px;
}

.ml-134px {
  margin-left: 134px;
}

.mr-134px {
  margin-right: 134px;
}

.mt--134px {
  margin-top: -134px;
}

.mb--134px {
  margin-bottom: -134px;
}

.ml--134px {
  margin-left: -134px;
}

.mr--134px {
  margin-right: -134px;
}

.my-134px {
  margin-top: 134px;
  margin-bottom: 134px;
}

.mx-134px {
  margin-left: 134px;
  margin-right: 134px;
}

.mi-134px {
  margin: 134px !important;
}

.mti-134px {
  margin-top: 134px !important;
}

.mbi-134px {
  margin-bottom: 134px !important;
}

.mli-134px {
  margin-left: 134px !important;
}

.mri-134px {
  margin-right: 134px !important;
}

.mti--134px {
  margin-top: -134px !important;
}

.mbi--134px {
  margin-bottom: -134px !important;
}

.mli--134px {
  margin-left: -134px !important;
}

.mri--134px {
  margin-right: -134px !important;
}

.myi-134px {
  margin-top: 134px !important;
  margin-bottom: 134px !important;
}

.mxi-134px {
  margin-left: 134px !important;
  margin-right: 134px !important;
}

.p-134px {
  padding: 134px;
}

.pt-134px {
  padding-top: 134px;
}

.pb-134px {
  padding-bottom: 134px;
}

.pl-134px {
  padding-left: 134px;
}

.pr-134px {
  padding-right: 134px;
}

.py-134px {
  padding-top: 134px;
  padding-bottom: 134px;
}

.px-134px {
  padding-left: 134px;
  padding-right: 134px;
}

.pi-134px {
  padding: 134px !important;
}

.pti-134px {
  padding-top: 134px !important;
}

.pbi-134px {
  padding-bottom: 134px !important;
}

.pli-134px {
  padding-left: 134px !important;
}

.pri-134px {
  padding-right: 134px !important;
}

.pyi-134px {
  padding-top: 134px !important;
  padding-bottom: 134px !important;
}

.pxi-134px {
  padding-left: 134px !important;
  padding-right: 134px !important;
}

tr.p-134px > td {
  padding: 134px;
}

tr.pt-134px > td {
  padding-top: 134px;
}

tr.pb-134px > td {
  padding-bottom: 134px;
}

tr.pl-134px > td {
  padding-left: 134px;
}

tr.pr-134px > td {
  padding-right: 134px;
}

tr.py-134px > td {
  padding-top: 134px;
  padding-bottom: 134px;
}

tr.px-134px > td {
  padding-left: 134px;
  padding-right: 134px;
}

tr.pi-134px > td {
  padding: 134px !important;
}

tr.pti-134px > td {
  padding-top: 134px !important;
}

tr.pbi-134px > td {
  padding-bottom: 134px !important;
}

tr.pli-134px > td {
  padding-left: 134px !important;
}

tr.pri-134px > td {
  padding-right: 134px !important;
}

tr.pyi-134px > td {
  padding-top: 134px !important;
  padding-bottom: 134px !important;
}

tr.pxi-134px > td {
  padding-left: 134px !important;
  padding-right: 134px !important;
}

tr.pxi-134px > td {
  padding-left: 134px !important;
  padding-right: 134px !important;
}

.m-135px {
  margin: 135px;
}

.mt-135px {
  margin-top: 135px;
}

.mb-135px {
  margin-bottom: 135px;
}

.ml-135px {
  margin-left: 135px;
}

.mr-135px {
  margin-right: 135px;
}

.mt--135px {
  margin-top: -135px;
}

.mb--135px {
  margin-bottom: -135px;
}

.ml--135px {
  margin-left: -135px;
}

.mr--135px {
  margin-right: -135px;
}

.my-135px {
  margin-top: 135px;
  margin-bottom: 135px;
}

.mx-135px {
  margin-left: 135px;
  margin-right: 135px;
}

.mi-135px {
  margin: 135px !important;
}

.mti-135px {
  margin-top: 135px !important;
}

.mbi-135px {
  margin-bottom: 135px !important;
}

.mli-135px {
  margin-left: 135px !important;
}

.mri-135px {
  margin-right: 135px !important;
}

.mti--135px {
  margin-top: -135px !important;
}

.mbi--135px {
  margin-bottom: -135px !important;
}

.mli--135px {
  margin-left: -135px !important;
}

.mri--135px {
  margin-right: -135px !important;
}

.myi-135px {
  margin-top: 135px !important;
  margin-bottom: 135px !important;
}

.mxi-135px {
  margin-left: 135px !important;
  margin-right: 135px !important;
}

.p-135px {
  padding: 135px;
}

.pt-135px {
  padding-top: 135px;
}

.pb-135px {
  padding-bottom: 135px;
}

.pl-135px {
  padding-left: 135px;
}

.pr-135px {
  padding-right: 135px;
}

.py-135px {
  padding-top: 135px;
  padding-bottom: 135px;
}

.px-135px {
  padding-left: 135px;
  padding-right: 135px;
}

.pi-135px {
  padding: 135px !important;
}

.pti-135px {
  padding-top: 135px !important;
}

.pbi-135px {
  padding-bottom: 135px !important;
}

.pli-135px {
  padding-left: 135px !important;
}

.pri-135px {
  padding-right: 135px !important;
}

.pyi-135px {
  padding-top: 135px !important;
  padding-bottom: 135px !important;
}

.pxi-135px {
  padding-left: 135px !important;
  padding-right: 135px !important;
}

tr.p-135px > td {
  padding: 135px;
}

tr.pt-135px > td {
  padding-top: 135px;
}

tr.pb-135px > td {
  padding-bottom: 135px;
}

tr.pl-135px > td {
  padding-left: 135px;
}

tr.pr-135px > td {
  padding-right: 135px;
}

tr.py-135px > td {
  padding-top: 135px;
  padding-bottom: 135px;
}

tr.px-135px > td {
  padding-left: 135px;
  padding-right: 135px;
}

tr.pi-135px > td {
  padding: 135px !important;
}

tr.pti-135px > td {
  padding-top: 135px !important;
}

tr.pbi-135px > td {
  padding-bottom: 135px !important;
}

tr.pli-135px > td {
  padding-left: 135px !important;
}

tr.pri-135px > td {
  padding-right: 135px !important;
}

tr.pyi-135px > td {
  padding-top: 135px !important;
  padding-bottom: 135px !important;
}

tr.pxi-135px > td {
  padding-left: 135px !important;
  padding-right: 135px !important;
}

tr.pxi-135px > td {
  padding-left: 135px !important;
  padding-right: 135px !important;
}

.m-136px {
  margin: 136px;
}

.mt-136px {
  margin-top: 136px;
}

.mb-136px {
  margin-bottom: 136px;
}

.ml-136px {
  margin-left: 136px;
}

.mr-136px {
  margin-right: 136px;
}

.mt--136px {
  margin-top: -136px;
}

.mb--136px {
  margin-bottom: -136px;
}

.ml--136px {
  margin-left: -136px;
}

.mr--136px {
  margin-right: -136px;
}

.my-136px {
  margin-top: 136px;
  margin-bottom: 136px;
}

.mx-136px {
  margin-left: 136px;
  margin-right: 136px;
}

.mi-136px {
  margin: 136px !important;
}

.mti-136px {
  margin-top: 136px !important;
}

.mbi-136px {
  margin-bottom: 136px !important;
}

.mli-136px {
  margin-left: 136px !important;
}

.mri-136px {
  margin-right: 136px !important;
}

.mti--136px {
  margin-top: -136px !important;
}

.mbi--136px {
  margin-bottom: -136px !important;
}

.mli--136px {
  margin-left: -136px !important;
}

.mri--136px {
  margin-right: -136px !important;
}

.myi-136px {
  margin-top: 136px !important;
  margin-bottom: 136px !important;
}

.mxi-136px {
  margin-left: 136px !important;
  margin-right: 136px !important;
}

.p-136px {
  padding: 136px;
}

.pt-136px {
  padding-top: 136px;
}

.pb-136px {
  padding-bottom: 136px;
}

.pl-136px {
  padding-left: 136px;
}

.pr-136px {
  padding-right: 136px;
}

.py-136px {
  padding-top: 136px;
  padding-bottom: 136px;
}

.px-136px {
  padding-left: 136px;
  padding-right: 136px;
}

.pi-136px {
  padding: 136px !important;
}

.pti-136px {
  padding-top: 136px !important;
}

.pbi-136px {
  padding-bottom: 136px !important;
}

.pli-136px {
  padding-left: 136px !important;
}

.pri-136px {
  padding-right: 136px !important;
}

.pyi-136px {
  padding-top: 136px !important;
  padding-bottom: 136px !important;
}

.pxi-136px {
  padding-left: 136px !important;
  padding-right: 136px !important;
}

tr.p-136px > td {
  padding: 136px;
}

tr.pt-136px > td {
  padding-top: 136px;
}

tr.pb-136px > td {
  padding-bottom: 136px;
}

tr.pl-136px > td {
  padding-left: 136px;
}

tr.pr-136px > td {
  padding-right: 136px;
}

tr.py-136px > td {
  padding-top: 136px;
  padding-bottom: 136px;
}

tr.px-136px > td {
  padding-left: 136px;
  padding-right: 136px;
}

tr.pi-136px > td {
  padding: 136px !important;
}

tr.pti-136px > td {
  padding-top: 136px !important;
}

tr.pbi-136px > td {
  padding-bottom: 136px !important;
}

tr.pli-136px > td {
  padding-left: 136px !important;
}

tr.pri-136px > td {
  padding-right: 136px !important;
}

tr.pyi-136px > td {
  padding-top: 136px !important;
  padding-bottom: 136px !important;
}

tr.pxi-136px > td {
  padding-left: 136px !important;
  padding-right: 136px !important;
}

tr.pxi-136px > td {
  padding-left: 136px !important;
  padding-right: 136px !important;
}

.m-137px {
  margin: 137px;
}

.mt-137px {
  margin-top: 137px;
}

.mb-137px {
  margin-bottom: 137px;
}

.ml-137px {
  margin-left: 137px;
}

.mr-137px {
  margin-right: 137px;
}

.mt--137px {
  margin-top: -137px;
}

.mb--137px {
  margin-bottom: -137px;
}

.ml--137px {
  margin-left: -137px;
}

.mr--137px {
  margin-right: -137px;
}

.my-137px {
  margin-top: 137px;
  margin-bottom: 137px;
}

.mx-137px {
  margin-left: 137px;
  margin-right: 137px;
}

.mi-137px {
  margin: 137px !important;
}

.mti-137px {
  margin-top: 137px !important;
}

.mbi-137px {
  margin-bottom: 137px !important;
}

.mli-137px {
  margin-left: 137px !important;
}

.mri-137px {
  margin-right: 137px !important;
}

.mti--137px {
  margin-top: -137px !important;
}

.mbi--137px {
  margin-bottom: -137px !important;
}

.mli--137px {
  margin-left: -137px !important;
}

.mri--137px {
  margin-right: -137px !important;
}

.myi-137px {
  margin-top: 137px !important;
  margin-bottom: 137px !important;
}

.mxi-137px {
  margin-left: 137px !important;
  margin-right: 137px !important;
}

.p-137px {
  padding: 137px;
}

.pt-137px {
  padding-top: 137px;
}

.pb-137px {
  padding-bottom: 137px;
}

.pl-137px {
  padding-left: 137px;
}

.pr-137px {
  padding-right: 137px;
}

.py-137px {
  padding-top: 137px;
  padding-bottom: 137px;
}

.px-137px {
  padding-left: 137px;
  padding-right: 137px;
}

.pi-137px {
  padding: 137px !important;
}

.pti-137px {
  padding-top: 137px !important;
}

.pbi-137px {
  padding-bottom: 137px !important;
}

.pli-137px {
  padding-left: 137px !important;
}

.pri-137px {
  padding-right: 137px !important;
}

.pyi-137px {
  padding-top: 137px !important;
  padding-bottom: 137px !important;
}

.pxi-137px {
  padding-left: 137px !important;
  padding-right: 137px !important;
}

tr.p-137px > td {
  padding: 137px;
}

tr.pt-137px > td {
  padding-top: 137px;
}

tr.pb-137px > td {
  padding-bottom: 137px;
}

tr.pl-137px > td {
  padding-left: 137px;
}

tr.pr-137px > td {
  padding-right: 137px;
}

tr.py-137px > td {
  padding-top: 137px;
  padding-bottom: 137px;
}

tr.px-137px > td {
  padding-left: 137px;
  padding-right: 137px;
}

tr.pi-137px > td {
  padding: 137px !important;
}

tr.pti-137px > td {
  padding-top: 137px !important;
}

tr.pbi-137px > td {
  padding-bottom: 137px !important;
}

tr.pli-137px > td {
  padding-left: 137px !important;
}

tr.pri-137px > td {
  padding-right: 137px !important;
}

tr.pyi-137px > td {
  padding-top: 137px !important;
  padding-bottom: 137px !important;
}

tr.pxi-137px > td {
  padding-left: 137px !important;
  padding-right: 137px !important;
}

tr.pxi-137px > td {
  padding-left: 137px !important;
  padding-right: 137px !important;
}

.m-138px {
  margin: 138px;
}

.mt-138px {
  margin-top: 138px;
}

.mb-138px {
  margin-bottom: 138px;
}

.ml-138px {
  margin-left: 138px;
}

.mr-138px {
  margin-right: 138px;
}

.mt--138px {
  margin-top: -138px;
}

.mb--138px {
  margin-bottom: -138px;
}

.ml--138px {
  margin-left: -138px;
}

.mr--138px {
  margin-right: -138px;
}

.my-138px {
  margin-top: 138px;
  margin-bottom: 138px;
}

.mx-138px {
  margin-left: 138px;
  margin-right: 138px;
}

.mi-138px {
  margin: 138px !important;
}

.mti-138px {
  margin-top: 138px !important;
}

.mbi-138px {
  margin-bottom: 138px !important;
}

.mli-138px {
  margin-left: 138px !important;
}

.mri-138px {
  margin-right: 138px !important;
}

.mti--138px {
  margin-top: -138px !important;
}

.mbi--138px {
  margin-bottom: -138px !important;
}

.mli--138px {
  margin-left: -138px !important;
}

.mri--138px {
  margin-right: -138px !important;
}

.myi-138px {
  margin-top: 138px !important;
  margin-bottom: 138px !important;
}

.mxi-138px {
  margin-left: 138px !important;
  margin-right: 138px !important;
}

.p-138px {
  padding: 138px;
}

.pt-138px {
  padding-top: 138px;
}

.pb-138px {
  padding-bottom: 138px;
}

.pl-138px {
  padding-left: 138px;
}

.pr-138px {
  padding-right: 138px;
}

.py-138px {
  padding-top: 138px;
  padding-bottom: 138px;
}

.px-138px {
  padding-left: 138px;
  padding-right: 138px;
}

.pi-138px {
  padding: 138px !important;
}

.pti-138px {
  padding-top: 138px !important;
}

.pbi-138px {
  padding-bottom: 138px !important;
}

.pli-138px {
  padding-left: 138px !important;
}

.pri-138px {
  padding-right: 138px !important;
}

.pyi-138px {
  padding-top: 138px !important;
  padding-bottom: 138px !important;
}

.pxi-138px {
  padding-left: 138px !important;
  padding-right: 138px !important;
}

tr.p-138px > td {
  padding: 138px;
}

tr.pt-138px > td {
  padding-top: 138px;
}

tr.pb-138px > td {
  padding-bottom: 138px;
}

tr.pl-138px > td {
  padding-left: 138px;
}

tr.pr-138px > td {
  padding-right: 138px;
}

tr.py-138px > td {
  padding-top: 138px;
  padding-bottom: 138px;
}

tr.px-138px > td {
  padding-left: 138px;
  padding-right: 138px;
}

tr.pi-138px > td {
  padding: 138px !important;
}

tr.pti-138px > td {
  padding-top: 138px !important;
}

tr.pbi-138px > td {
  padding-bottom: 138px !important;
}

tr.pli-138px > td {
  padding-left: 138px !important;
}

tr.pri-138px > td {
  padding-right: 138px !important;
}

tr.pyi-138px > td {
  padding-top: 138px !important;
  padding-bottom: 138px !important;
}

tr.pxi-138px > td {
  padding-left: 138px !important;
  padding-right: 138px !important;
}

tr.pxi-138px > td {
  padding-left: 138px !important;
  padding-right: 138px !important;
}

.m-139px {
  margin: 139px;
}

.mt-139px {
  margin-top: 139px;
}

.mb-139px {
  margin-bottom: 139px;
}

.ml-139px {
  margin-left: 139px;
}

.mr-139px {
  margin-right: 139px;
}

.mt--139px {
  margin-top: -139px;
}

.mb--139px {
  margin-bottom: -139px;
}

.ml--139px {
  margin-left: -139px;
}

.mr--139px {
  margin-right: -139px;
}

.my-139px {
  margin-top: 139px;
  margin-bottom: 139px;
}

.mx-139px {
  margin-left: 139px;
  margin-right: 139px;
}

.mi-139px {
  margin: 139px !important;
}

.mti-139px {
  margin-top: 139px !important;
}

.mbi-139px {
  margin-bottom: 139px !important;
}

.mli-139px {
  margin-left: 139px !important;
}

.mri-139px {
  margin-right: 139px !important;
}

.mti--139px {
  margin-top: -139px !important;
}

.mbi--139px {
  margin-bottom: -139px !important;
}

.mli--139px {
  margin-left: -139px !important;
}

.mri--139px {
  margin-right: -139px !important;
}

.myi-139px {
  margin-top: 139px !important;
  margin-bottom: 139px !important;
}

.mxi-139px {
  margin-left: 139px !important;
  margin-right: 139px !important;
}

.p-139px {
  padding: 139px;
}

.pt-139px {
  padding-top: 139px;
}

.pb-139px {
  padding-bottom: 139px;
}

.pl-139px {
  padding-left: 139px;
}

.pr-139px {
  padding-right: 139px;
}

.py-139px {
  padding-top: 139px;
  padding-bottom: 139px;
}

.px-139px {
  padding-left: 139px;
  padding-right: 139px;
}

.pi-139px {
  padding: 139px !important;
}

.pti-139px {
  padding-top: 139px !important;
}

.pbi-139px {
  padding-bottom: 139px !important;
}

.pli-139px {
  padding-left: 139px !important;
}

.pri-139px {
  padding-right: 139px !important;
}

.pyi-139px {
  padding-top: 139px !important;
  padding-bottom: 139px !important;
}

.pxi-139px {
  padding-left: 139px !important;
  padding-right: 139px !important;
}

tr.p-139px > td {
  padding: 139px;
}

tr.pt-139px > td {
  padding-top: 139px;
}

tr.pb-139px > td {
  padding-bottom: 139px;
}

tr.pl-139px > td {
  padding-left: 139px;
}

tr.pr-139px > td {
  padding-right: 139px;
}

tr.py-139px > td {
  padding-top: 139px;
  padding-bottom: 139px;
}

tr.px-139px > td {
  padding-left: 139px;
  padding-right: 139px;
}

tr.pi-139px > td {
  padding: 139px !important;
}

tr.pti-139px > td {
  padding-top: 139px !important;
}

tr.pbi-139px > td {
  padding-bottom: 139px !important;
}

tr.pli-139px > td {
  padding-left: 139px !important;
}

tr.pri-139px > td {
  padding-right: 139px !important;
}

tr.pyi-139px > td {
  padding-top: 139px !important;
  padding-bottom: 139px !important;
}

tr.pxi-139px > td {
  padding-left: 139px !important;
  padding-right: 139px !important;
}

tr.pxi-139px > td {
  padding-left: 139px !important;
  padding-right: 139px !important;
}

.m-140px {
  margin: 140px;
}

.mt-140px {
  margin-top: 140px;
}

.mb-140px {
  margin-bottom: 140px;
}

.ml-140px {
  margin-left: 140px;
}

.mr-140px {
  margin-right: 140px;
}

.mt--140px {
  margin-top: -140px;
}

.mb--140px {
  margin-bottom: -140px;
}

.ml--140px {
  margin-left: -140px;
}

.mr--140px {
  margin-right: -140px;
}

.my-140px {
  margin-top: 140px;
  margin-bottom: 140px;
}

.mx-140px {
  margin-left: 140px;
  margin-right: 140px;
}

.mi-140px {
  margin: 140px !important;
}

.mti-140px {
  margin-top: 140px !important;
}

.mbi-140px {
  margin-bottom: 140px !important;
}

.mli-140px {
  margin-left: 140px !important;
}

.mri-140px {
  margin-right: 140px !important;
}

.mti--140px {
  margin-top: -140px !important;
}

.mbi--140px {
  margin-bottom: -140px !important;
}

.mli--140px {
  margin-left: -140px !important;
}

.mri--140px {
  margin-right: -140px !important;
}

.myi-140px {
  margin-top: 140px !important;
  margin-bottom: 140px !important;
}

.mxi-140px {
  margin-left: 140px !important;
  margin-right: 140px !important;
}

.p-140px {
  padding: 140px;
}

.pt-140px {
  padding-top: 140px;
}

.pb-140px {
  padding-bottom: 140px;
}

.pl-140px {
  padding-left: 140px;
}

.pr-140px {
  padding-right: 140px;
}

.py-140px {
  padding-top: 140px;
  padding-bottom: 140px;
}

.px-140px {
  padding-left: 140px;
  padding-right: 140px;
}

.pi-140px {
  padding: 140px !important;
}

.pti-140px {
  padding-top: 140px !important;
}

.pbi-140px {
  padding-bottom: 140px !important;
}

.pli-140px {
  padding-left: 140px !important;
}

.pri-140px {
  padding-right: 140px !important;
}

.pyi-140px {
  padding-top: 140px !important;
  padding-bottom: 140px !important;
}

.pxi-140px {
  padding-left: 140px !important;
  padding-right: 140px !important;
}

tr.p-140px > td {
  padding: 140px;
}

tr.pt-140px > td {
  padding-top: 140px;
}

tr.pb-140px > td {
  padding-bottom: 140px;
}

tr.pl-140px > td {
  padding-left: 140px;
}

tr.pr-140px > td {
  padding-right: 140px;
}

tr.py-140px > td {
  padding-top: 140px;
  padding-bottom: 140px;
}

tr.px-140px > td {
  padding-left: 140px;
  padding-right: 140px;
}

tr.pi-140px > td {
  padding: 140px !important;
}

tr.pti-140px > td {
  padding-top: 140px !important;
}

tr.pbi-140px > td {
  padding-bottom: 140px !important;
}

tr.pli-140px > td {
  padding-left: 140px !important;
}

tr.pri-140px > td {
  padding-right: 140px !important;
}

tr.pyi-140px > td {
  padding-top: 140px !important;
  padding-bottom: 140px !important;
}

tr.pxi-140px > td {
  padding-left: 140px !important;
  padding-right: 140px !important;
}

tr.pxi-140px > td {
  padding-left: 140px !important;
  padding-right: 140px !important;
}

.m-141px {
  margin: 141px;
}

.mt-141px {
  margin-top: 141px;
}

.mb-141px {
  margin-bottom: 141px;
}

.ml-141px {
  margin-left: 141px;
}

.mr-141px {
  margin-right: 141px;
}

.mt--141px {
  margin-top: -141px;
}

.mb--141px {
  margin-bottom: -141px;
}

.ml--141px {
  margin-left: -141px;
}

.mr--141px {
  margin-right: -141px;
}

.my-141px {
  margin-top: 141px;
  margin-bottom: 141px;
}

.mx-141px {
  margin-left: 141px;
  margin-right: 141px;
}

.mi-141px {
  margin: 141px !important;
}

.mti-141px {
  margin-top: 141px !important;
}

.mbi-141px {
  margin-bottom: 141px !important;
}

.mli-141px {
  margin-left: 141px !important;
}

.mri-141px {
  margin-right: 141px !important;
}

.mti--141px {
  margin-top: -141px !important;
}

.mbi--141px {
  margin-bottom: -141px !important;
}

.mli--141px {
  margin-left: -141px !important;
}

.mri--141px {
  margin-right: -141px !important;
}

.myi-141px {
  margin-top: 141px !important;
  margin-bottom: 141px !important;
}

.mxi-141px {
  margin-left: 141px !important;
  margin-right: 141px !important;
}

.p-141px {
  padding: 141px;
}

.pt-141px {
  padding-top: 141px;
}

.pb-141px {
  padding-bottom: 141px;
}

.pl-141px {
  padding-left: 141px;
}

.pr-141px {
  padding-right: 141px;
}

.py-141px {
  padding-top: 141px;
  padding-bottom: 141px;
}

.px-141px {
  padding-left: 141px;
  padding-right: 141px;
}

.pi-141px {
  padding: 141px !important;
}

.pti-141px {
  padding-top: 141px !important;
}

.pbi-141px {
  padding-bottom: 141px !important;
}

.pli-141px {
  padding-left: 141px !important;
}

.pri-141px {
  padding-right: 141px !important;
}

.pyi-141px {
  padding-top: 141px !important;
  padding-bottom: 141px !important;
}

.pxi-141px {
  padding-left: 141px !important;
  padding-right: 141px !important;
}

tr.p-141px > td {
  padding: 141px;
}

tr.pt-141px > td {
  padding-top: 141px;
}

tr.pb-141px > td {
  padding-bottom: 141px;
}

tr.pl-141px > td {
  padding-left: 141px;
}

tr.pr-141px > td {
  padding-right: 141px;
}

tr.py-141px > td {
  padding-top: 141px;
  padding-bottom: 141px;
}

tr.px-141px > td {
  padding-left: 141px;
  padding-right: 141px;
}

tr.pi-141px > td {
  padding: 141px !important;
}

tr.pti-141px > td {
  padding-top: 141px !important;
}

tr.pbi-141px > td {
  padding-bottom: 141px !important;
}

tr.pli-141px > td {
  padding-left: 141px !important;
}

tr.pri-141px > td {
  padding-right: 141px !important;
}

tr.pyi-141px > td {
  padding-top: 141px !important;
  padding-bottom: 141px !important;
}

tr.pxi-141px > td {
  padding-left: 141px !important;
  padding-right: 141px !important;
}

tr.pxi-141px > td {
  padding-left: 141px !important;
  padding-right: 141px !important;
}

.m-142px {
  margin: 142px;
}

.mt-142px {
  margin-top: 142px;
}

.mb-142px {
  margin-bottom: 142px;
}

.ml-142px {
  margin-left: 142px;
}

.mr-142px {
  margin-right: 142px;
}

.mt--142px {
  margin-top: -142px;
}

.mb--142px {
  margin-bottom: -142px;
}

.ml--142px {
  margin-left: -142px;
}

.mr--142px {
  margin-right: -142px;
}

.my-142px {
  margin-top: 142px;
  margin-bottom: 142px;
}

.mx-142px {
  margin-left: 142px;
  margin-right: 142px;
}

.mi-142px {
  margin: 142px !important;
}

.mti-142px {
  margin-top: 142px !important;
}

.mbi-142px {
  margin-bottom: 142px !important;
}

.mli-142px {
  margin-left: 142px !important;
}

.mri-142px {
  margin-right: 142px !important;
}

.mti--142px {
  margin-top: -142px !important;
}

.mbi--142px {
  margin-bottom: -142px !important;
}

.mli--142px {
  margin-left: -142px !important;
}

.mri--142px {
  margin-right: -142px !important;
}

.myi-142px {
  margin-top: 142px !important;
  margin-bottom: 142px !important;
}

.mxi-142px {
  margin-left: 142px !important;
  margin-right: 142px !important;
}

.p-142px {
  padding: 142px;
}

.pt-142px {
  padding-top: 142px;
}

.pb-142px {
  padding-bottom: 142px;
}

.pl-142px {
  padding-left: 142px;
}

.pr-142px {
  padding-right: 142px;
}

.py-142px {
  padding-top: 142px;
  padding-bottom: 142px;
}

.px-142px {
  padding-left: 142px;
  padding-right: 142px;
}

.pi-142px {
  padding: 142px !important;
}

.pti-142px {
  padding-top: 142px !important;
}

.pbi-142px {
  padding-bottom: 142px !important;
}

.pli-142px {
  padding-left: 142px !important;
}

.pri-142px {
  padding-right: 142px !important;
}

.pyi-142px {
  padding-top: 142px !important;
  padding-bottom: 142px !important;
}

.pxi-142px {
  padding-left: 142px !important;
  padding-right: 142px !important;
}

tr.p-142px > td {
  padding: 142px;
}

tr.pt-142px > td {
  padding-top: 142px;
}

tr.pb-142px > td {
  padding-bottom: 142px;
}

tr.pl-142px > td {
  padding-left: 142px;
}

tr.pr-142px > td {
  padding-right: 142px;
}

tr.py-142px > td {
  padding-top: 142px;
  padding-bottom: 142px;
}

tr.px-142px > td {
  padding-left: 142px;
  padding-right: 142px;
}

tr.pi-142px > td {
  padding: 142px !important;
}

tr.pti-142px > td {
  padding-top: 142px !important;
}

tr.pbi-142px > td {
  padding-bottom: 142px !important;
}

tr.pli-142px > td {
  padding-left: 142px !important;
}

tr.pri-142px > td {
  padding-right: 142px !important;
}

tr.pyi-142px > td {
  padding-top: 142px !important;
  padding-bottom: 142px !important;
}

tr.pxi-142px > td {
  padding-left: 142px !important;
  padding-right: 142px !important;
}

tr.pxi-142px > td {
  padding-left: 142px !important;
  padding-right: 142px !important;
}

.m-143px {
  margin: 143px;
}

.mt-143px {
  margin-top: 143px;
}

.mb-143px {
  margin-bottom: 143px;
}

.ml-143px {
  margin-left: 143px;
}

.mr-143px {
  margin-right: 143px;
}

.mt--143px {
  margin-top: -143px;
}

.mb--143px {
  margin-bottom: -143px;
}

.ml--143px {
  margin-left: -143px;
}

.mr--143px {
  margin-right: -143px;
}

.my-143px {
  margin-top: 143px;
  margin-bottom: 143px;
}

.mx-143px {
  margin-left: 143px;
  margin-right: 143px;
}

.mi-143px {
  margin: 143px !important;
}

.mti-143px {
  margin-top: 143px !important;
}

.mbi-143px {
  margin-bottom: 143px !important;
}

.mli-143px {
  margin-left: 143px !important;
}

.mri-143px {
  margin-right: 143px !important;
}

.mti--143px {
  margin-top: -143px !important;
}

.mbi--143px {
  margin-bottom: -143px !important;
}

.mli--143px {
  margin-left: -143px !important;
}

.mri--143px {
  margin-right: -143px !important;
}

.myi-143px {
  margin-top: 143px !important;
  margin-bottom: 143px !important;
}

.mxi-143px {
  margin-left: 143px !important;
  margin-right: 143px !important;
}

.p-143px {
  padding: 143px;
}

.pt-143px {
  padding-top: 143px;
}

.pb-143px {
  padding-bottom: 143px;
}

.pl-143px {
  padding-left: 143px;
}

.pr-143px {
  padding-right: 143px;
}

.py-143px {
  padding-top: 143px;
  padding-bottom: 143px;
}

.px-143px {
  padding-left: 143px;
  padding-right: 143px;
}

.pi-143px {
  padding: 143px !important;
}

.pti-143px {
  padding-top: 143px !important;
}

.pbi-143px {
  padding-bottom: 143px !important;
}

.pli-143px {
  padding-left: 143px !important;
}

.pri-143px {
  padding-right: 143px !important;
}

.pyi-143px {
  padding-top: 143px !important;
  padding-bottom: 143px !important;
}

.pxi-143px {
  padding-left: 143px !important;
  padding-right: 143px !important;
}

tr.p-143px > td {
  padding: 143px;
}

tr.pt-143px > td {
  padding-top: 143px;
}

tr.pb-143px > td {
  padding-bottom: 143px;
}

tr.pl-143px > td {
  padding-left: 143px;
}

tr.pr-143px > td {
  padding-right: 143px;
}

tr.py-143px > td {
  padding-top: 143px;
  padding-bottom: 143px;
}

tr.px-143px > td {
  padding-left: 143px;
  padding-right: 143px;
}

tr.pi-143px > td {
  padding: 143px !important;
}

tr.pti-143px > td {
  padding-top: 143px !important;
}

tr.pbi-143px > td {
  padding-bottom: 143px !important;
}

tr.pli-143px > td {
  padding-left: 143px !important;
}

tr.pri-143px > td {
  padding-right: 143px !important;
}

tr.pyi-143px > td {
  padding-top: 143px !important;
  padding-bottom: 143px !important;
}

tr.pxi-143px > td {
  padding-left: 143px !important;
  padding-right: 143px !important;
}

tr.pxi-143px > td {
  padding-left: 143px !important;
  padding-right: 143px !important;
}

.m-144px {
  margin: 144px;
}

.mt-144px {
  margin-top: 144px;
}

.mb-144px {
  margin-bottom: 144px;
}

.ml-144px {
  margin-left: 144px;
}

.mr-144px {
  margin-right: 144px;
}

.mt--144px {
  margin-top: -144px;
}

.mb--144px {
  margin-bottom: -144px;
}

.ml--144px {
  margin-left: -144px;
}

.mr--144px {
  margin-right: -144px;
}

.my-144px {
  margin-top: 144px;
  margin-bottom: 144px;
}

.mx-144px {
  margin-left: 144px;
  margin-right: 144px;
}

.mi-144px {
  margin: 144px !important;
}

.mti-144px {
  margin-top: 144px !important;
}

.mbi-144px {
  margin-bottom: 144px !important;
}

.mli-144px {
  margin-left: 144px !important;
}

.mri-144px {
  margin-right: 144px !important;
}

.mti--144px {
  margin-top: -144px !important;
}

.mbi--144px {
  margin-bottom: -144px !important;
}

.mli--144px {
  margin-left: -144px !important;
}

.mri--144px {
  margin-right: -144px !important;
}

.myi-144px {
  margin-top: 144px !important;
  margin-bottom: 144px !important;
}

.mxi-144px {
  margin-left: 144px !important;
  margin-right: 144px !important;
}

.p-144px {
  padding: 144px;
}

.pt-144px {
  padding-top: 144px;
}

.pb-144px {
  padding-bottom: 144px;
}

.pl-144px {
  padding-left: 144px;
}

.pr-144px {
  padding-right: 144px;
}

.py-144px {
  padding-top: 144px;
  padding-bottom: 144px;
}

.px-144px {
  padding-left: 144px;
  padding-right: 144px;
}

.pi-144px {
  padding: 144px !important;
}

.pti-144px {
  padding-top: 144px !important;
}

.pbi-144px {
  padding-bottom: 144px !important;
}

.pli-144px {
  padding-left: 144px !important;
}

.pri-144px {
  padding-right: 144px !important;
}

.pyi-144px {
  padding-top: 144px !important;
  padding-bottom: 144px !important;
}

.pxi-144px {
  padding-left: 144px !important;
  padding-right: 144px !important;
}

tr.p-144px > td {
  padding: 144px;
}

tr.pt-144px > td {
  padding-top: 144px;
}

tr.pb-144px > td {
  padding-bottom: 144px;
}

tr.pl-144px > td {
  padding-left: 144px;
}

tr.pr-144px > td {
  padding-right: 144px;
}

tr.py-144px > td {
  padding-top: 144px;
  padding-bottom: 144px;
}

tr.px-144px > td {
  padding-left: 144px;
  padding-right: 144px;
}

tr.pi-144px > td {
  padding: 144px !important;
}

tr.pti-144px > td {
  padding-top: 144px !important;
}

tr.pbi-144px > td {
  padding-bottom: 144px !important;
}

tr.pli-144px > td {
  padding-left: 144px !important;
}

tr.pri-144px > td {
  padding-right: 144px !important;
}

tr.pyi-144px > td {
  padding-top: 144px !important;
  padding-bottom: 144px !important;
}

tr.pxi-144px > td {
  padding-left: 144px !important;
  padding-right: 144px !important;
}

tr.pxi-144px > td {
  padding-left: 144px !important;
  padding-right: 144px !important;
}

.m-145px {
  margin: 145px;
}

.mt-145px {
  margin-top: 145px;
}

.mb-145px {
  margin-bottom: 145px;
}

.ml-145px {
  margin-left: 145px;
}

.mr-145px {
  margin-right: 145px;
}

.mt--145px {
  margin-top: -145px;
}

.mb--145px {
  margin-bottom: -145px;
}

.ml--145px {
  margin-left: -145px;
}

.mr--145px {
  margin-right: -145px;
}

.my-145px {
  margin-top: 145px;
  margin-bottom: 145px;
}

.mx-145px {
  margin-left: 145px;
  margin-right: 145px;
}

.mi-145px {
  margin: 145px !important;
}

.mti-145px {
  margin-top: 145px !important;
}

.mbi-145px {
  margin-bottom: 145px !important;
}

.mli-145px {
  margin-left: 145px !important;
}

.mri-145px {
  margin-right: 145px !important;
}

.mti--145px {
  margin-top: -145px !important;
}

.mbi--145px {
  margin-bottom: -145px !important;
}

.mli--145px {
  margin-left: -145px !important;
}

.mri--145px {
  margin-right: -145px !important;
}

.myi-145px {
  margin-top: 145px !important;
  margin-bottom: 145px !important;
}

.mxi-145px {
  margin-left: 145px !important;
  margin-right: 145px !important;
}

.p-145px {
  padding: 145px;
}

.pt-145px {
  padding-top: 145px;
}

.pb-145px {
  padding-bottom: 145px;
}

.pl-145px {
  padding-left: 145px;
}

.pr-145px {
  padding-right: 145px;
}

.py-145px {
  padding-top: 145px;
  padding-bottom: 145px;
}

.px-145px {
  padding-left: 145px;
  padding-right: 145px;
}

.pi-145px {
  padding: 145px !important;
}

.pti-145px {
  padding-top: 145px !important;
}

.pbi-145px {
  padding-bottom: 145px !important;
}

.pli-145px {
  padding-left: 145px !important;
}

.pri-145px {
  padding-right: 145px !important;
}

.pyi-145px {
  padding-top: 145px !important;
  padding-bottom: 145px !important;
}

.pxi-145px {
  padding-left: 145px !important;
  padding-right: 145px !important;
}

tr.p-145px > td {
  padding: 145px;
}

tr.pt-145px > td {
  padding-top: 145px;
}

tr.pb-145px > td {
  padding-bottom: 145px;
}

tr.pl-145px > td {
  padding-left: 145px;
}

tr.pr-145px > td {
  padding-right: 145px;
}

tr.py-145px > td {
  padding-top: 145px;
  padding-bottom: 145px;
}

tr.px-145px > td {
  padding-left: 145px;
  padding-right: 145px;
}

tr.pi-145px > td {
  padding: 145px !important;
}

tr.pti-145px > td {
  padding-top: 145px !important;
}

tr.pbi-145px > td {
  padding-bottom: 145px !important;
}

tr.pli-145px > td {
  padding-left: 145px !important;
}

tr.pri-145px > td {
  padding-right: 145px !important;
}

tr.pyi-145px > td {
  padding-top: 145px !important;
  padding-bottom: 145px !important;
}

tr.pxi-145px > td {
  padding-left: 145px !important;
  padding-right: 145px !important;
}

tr.pxi-145px > td {
  padding-left: 145px !important;
  padding-right: 145px !important;
}

.m-146px {
  margin: 146px;
}

.mt-146px {
  margin-top: 146px;
}

.mb-146px {
  margin-bottom: 146px;
}

.ml-146px {
  margin-left: 146px;
}

.mr-146px {
  margin-right: 146px;
}

.mt--146px {
  margin-top: -146px;
}

.mb--146px {
  margin-bottom: -146px;
}

.ml--146px {
  margin-left: -146px;
}

.mr--146px {
  margin-right: -146px;
}

.my-146px {
  margin-top: 146px;
  margin-bottom: 146px;
}

.mx-146px {
  margin-left: 146px;
  margin-right: 146px;
}

.mi-146px {
  margin: 146px !important;
}

.mti-146px {
  margin-top: 146px !important;
}

.mbi-146px {
  margin-bottom: 146px !important;
}

.mli-146px {
  margin-left: 146px !important;
}

.mri-146px {
  margin-right: 146px !important;
}

.mti--146px {
  margin-top: -146px !important;
}

.mbi--146px {
  margin-bottom: -146px !important;
}

.mli--146px {
  margin-left: -146px !important;
}

.mri--146px {
  margin-right: -146px !important;
}

.myi-146px {
  margin-top: 146px !important;
  margin-bottom: 146px !important;
}

.mxi-146px {
  margin-left: 146px !important;
  margin-right: 146px !important;
}

.p-146px {
  padding: 146px;
}

.pt-146px {
  padding-top: 146px;
}

.pb-146px {
  padding-bottom: 146px;
}

.pl-146px {
  padding-left: 146px;
}

.pr-146px {
  padding-right: 146px;
}

.py-146px {
  padding-top: 146px;
  padding-bottom: 146px;
}

.px-146px {
  padding-left: 146px;
  padding-right: 146px;
}

.pi-146px {
  padding: 146px !important;
}

.pti-146px {
  padding-top: 146px !important;
}

.pbi-146px {
  padding-bottom: 146px !important;
}

.pli-146px {
  padding-left: 146px !important;
}

.pri-146px {
  padding-right: 146px !important;
}

.pyi-146px {
  padding-top: 146px !important;
  padding-bottom: 146px !important;
}

.pxi-146px {
  padding-left: 146px !important;
  padding-right: 146px !important;
}

tr.p-146px > td {
  padding: 146px;
}

tr.pt-146px > td {
  padding-top: 146px;
}

tr.pb-146px > td {
  padding-bottom: 146px;
}

tr.pl-146px > td {
  padding-left: 146px;
}

tr.pr-146px > td {
  padding-right: 146px;
}

tr.py-146px > td {
  padding-top: 146px;
  padding-bottom: 146px;
}

tr.px-146px > td {
  padding-left: 146px;
  padding-right: 146px;
}

tr.pi-146px > td {
  padding: 146px !important;
}

tr.pti-146px > td {
  padding-top: 146px !important;
}

tr.pbi-146px > td {
  padding-bottom: 146px !important;
}

tr.pli-146px > td {
  padding-left: 146px !important;
}

tr.pri-146px > td {
  padding-right: 146px !important;
}

tr.pyi-146px > td {
  padding-top: 146px !important;
  padding-bottom: 146px !important;
}

tr.pxi-146px > td {
  padding-left: 146px !important;
  padding-right: 146px !important;
}

tr.pxi-146px > td {
  padding-left: 146px !important;
  padding-right: 146px !important;
}

.m-147px {
  margin: 147px;
}

.mt-147px {
  margin-top: 147px;
}

.mb-147px {
  margin-bottom: 147px;
}

.ml-147px {
  margin-left: 147px;
}

.mr-147px {
  margin-right: 147px;
}

.mt--147px {
  margin-top: -147px;
}

.mb--147px {
  margin-bottom: -147px;
}

.ml--147px {
  margin-left: -147px;
}

.mr--147px {
  margin-right: -147px;
}

.my-147px {
  margin-top: 147px;
  margin-bottom: 147px;
}

.mx-147px {
  margin-left: 147px;
  margin-right: 147px;
}

.mi-147px {
  margin: 147px !important;
}

.mti-147px {
  margin-top: 147px !important;
}

.mbi-147px {
  margin-bottom: 147px !important;
}

.mli-147px {
  margin-left: 147px !important;
}

.mri-147px {
  margin-right: 147px !important;
}

.mti--147px {
  margin-top: -147px !important;
}

.mbi--147px {
  margin-bottom: -147px !important;
}

.mli--147px {
  margin-left: -147px !important;
}

.mri--147px {
  margin-right: -147px !important;
}

.myi-147px {
  margin-top: 147px !important;
  margin-bottom: 147px !important;
}

.mxi-147px {
  margin-left: 147px !important;
  margin-right: 147px !important;
}

.p-147px {
  padding: 147px;
}

.pt-147px {
  padding-top: 147px;
}

.pb-147px {
  padding-bottom: 147px;
}

.pl-147px {
  padding-left: 147px;
}

.pr-147px {
  padding-right: 147px;
}

.py-147px {
  padding-top: 147px;
  padding-bottom: 147px;
}

.px-147px {
  padding-left: 147px;
  padding-right: 147px;
}

.pi-147px {
  padding: 147px !important;
}

.pti-147px {
  padding-top: 147px !important;
}

.pbi-147px {
  padding-bottom: 147px !important;
}

.pli-147px {
  padding-left: 147px !important;
}

.pri-147px {
  padding-right: 147px !important;
}

.pyi-147px {
  padding-top: 147px !important;
  padding-bottom: 147px !important;
}

.pxi-147px {
  padding-left: 147px !important;
  padding-right: 147px !important;
}

tr.p-147px > td {
  padding: 147px;
}

tr.pt-147px > td {
  padding-top: 147px;
}

tr.pb-147px > td {
  padding-bottom: 147px;
}

tr.pl-147px > td {
  padding-left: 147px;
}

tr.pr-147px > td {
  padding-right: 147px;
}

tr.py-147px > td {
  padding-top: 147px;
  padding-bottom: 147px;
}

tr.px-147px > td {
  padding-left: 147px;
  padding-right: 147px;
}

tr.pi-147px > td {
  padding: 147px !important;
}

tr.pti-147px > td {
  padding-top: 147px !important;
}

tr.pbi-147px > td {
  padding-bottom: 147px !important;
}

tr.pli-147px > td {
  padding-left: 147px !important;
}

tr.pri-147px > td {
  padding-right: 147px !important;
}

tr.pyi-147px > td {
  padding-top: 147px !important;
  padding-bottom: 147px !important;
}

tr.pxi-147px > td {
  padding-left: 147px !important;
  padding-right: 147px !important;
}

tr.pxi-147px > td {
  padding-left: 147px !important;
  padding-right: 147px !important;
}

.m-148px {
  margin: 148px;
}

.mt-148px {
  margin-top: 148px;
}

.mb-148px {
  margin-bottom: 148px;
}

.ml-148px {
  margin-left: 148px;
}

.mr-148px {
  margin-right: 148px;
}

.mt--148px {
  margin-top: -148px;
}

.mb--148px {
  margin-bottom: -148px;
}

.ml--148px {
  margin-left: -148px;
}

.mr--148px {
  margin-right: -148px;
}

.my-148px {
  margin-top: 148px;
  margin-bottom: 148px;
}

.mx-148px {
  margin-left: 148px;
  margin-right: 148px;
}

.mi-148px {
  margin: 148px !important;
}

.mti-148px {
  margin-top: 148px !important;
}

.mbi-148px {
  margin-bottom: 148px !important;
}

.mli-148px {
  margin-left: 148px !important;
}

.mri-148px {
  margin-right: 148px !important;
}

.mti--148px {
  margin-top: -148px !important;
}

.mbi--148px {
  margin-bottom: -148px !important;
}

.mli--148px {
  margin-left: -148px !important;
}

.mri--148px {
  margin-right: -148px !important;
}

.myi-148px {
  margin-top: 148px !important;
  margin-bottom: 148px !important;
}

.mxi-148px {
  margin-left: 148px !important;
  margin-right: 148px !important;
}

.p-148px {
  padding: 148px;
}

.pt-148px {
  padding-top: 148px;
}

.pb-148px {
  padding-bottom: 148px;
}

.pl-148px {
  padding-left: 148px;
}

.pr-148px {
  padding-right: 148px;
}

.py-148px {
  padding-top: 148px;
  padding-bottom: 148px;
}

.px-148px {
  padding-left: 148px;
  padding-right: 148px;
}

.pi-148px {
  padding: 148px !important;
}

.pti-148px {
  padding-top: 148px !important;
}

.pbi-148px {
  padding-bottom: 148px !important;
}

.pli-148px {
  padding-left: 148px !important;
}

.pri-148px {
  padding-right: 148px !important;
}

.pyi-148px {
  padding-top: 148px !important;
  padding-bottom: 148px !important;
}

.pxi-148px {
  padding-left: 148px !important;
  padding-right: 148px !important;
}

tr.p-148px > td {
  padding: 148px;
}

tr.pt-148px > td {
  padding-top: 148px;
}

tr.pb-148px > td {
  padding-bottom: 148px;
}

tr.pl-148px > td {
  padding-left: 148px;
}

tr.pr-148px > td {
  padding-right: 148px;
}

tr.py-148px > td {
  padding-top: 148px;
  padding-bottom: 148px;
}

tr.px-148px > td {
  padding-left: 148px;
  padding-right: 148px;
}

tr.pi-148px > td {
  padding: 148px !important;
}

tr.pti-148px > td {
  padding-top: 148px !important;
}

tr.pbi-148px > td {
  padding-bottom: 148px !important;
}

tr.pli-148px > td {
  padding-left: 148px !important;
}

tr.pri-148px > td {
  padding-right: 148px !important;
}

tr.pyi-148px > td {
  padding-top: 148px !important;
  padding-bottom: 148px !important;
}

tr.pxi-148px > td {
  padding-left: 148px !important;
  padding-right: 148px !important;
}

tr.pxi-148px > td {
  padding-left: 148px !important;
  padding-right: 148px !important;
}

.m-149px {
  margin: 149px;
}

.mt-149px {
  margin-top: 149px;
}

.mb-149px {
  margin-bottom: 149px;
}

.ml-149px {
  margin-left: 149px;
}

.mr-149px {
  margin-right: 149px;
}

.mt--149px {
  margin-top: -149px;
}

.mb--149px {
  margin-bottom: -149px;
}

.ml--149px {
  margin-left: -149px;
}

.mr--149px {
  margin-right: -149px;
}

.my-149px {
  margin-top: 149px;
  margin-bottom: 149px;
}

.mx-149px {
  margin-left: 149px;
  margin-right: 149px;
}

.mi-149px {
  margin: 149px !important;
}

.mti-149px {
  margin-top: 149px !important;
}

.mbi-149px {
  margin-bottom: 149px !important;
}

.mli-149px {
  margin-left: 149px !important;
}

.mri-149px {
  margin-right: 149px !important;
}

.mti--149px {
  margin-top: -149px !important;
}

.mbi--149px {
  margin-bottom: -149px !important;
}

.mli--149px {
  margin-left: -149px !important;
}

.mri--149px {
  margin-right: -149px !important;
}

.myi-149px {
  margin-top: 149px !important;
  margin-bottom: 149px !important;
}

.mxi-149px {
  margin-left: 149px !important;
  margin-right: 149px !important;
}

.p-149px {
  padding: 149px;
}

.pt-149px {
  padding-top: 149px;
}

.pb-149px {
  padding-bottom: 149px;
}

.pl-149px {
  padding-left: 149px;
}

.pr-149px {
  padding-right: 149px;
}

.py-149px {
  padding-top: 149px;
  padding-bottom: 149px;
}

.px-149px {
  padding-left: 149px;
  padding-right: 149px;
}

.pi-149px {
  padding: 149px !important;
}

.pti-149px {
  padding-top: 149px !important;
}

.pbi-149px {
  padding-bottom: 149px !important;
}

.pli-149px {
  padding-left: 149px !important;
}

.pri-149px {
  padding-right: 149px !important;
}

.pyi-149px {
  padding-top: 149px !important;
  padding-bottom: 149px !important;
}

.pxi-149px {
  padding-left: 149px !important;
  padding-right: 149px !important;
}

tr.p-149px > td {
  padding: 149px;
}

tr.pt-149px > td {
  padding-top: 149px;
}

tr.pb-149px > td {
  padding-bottom: 149px;
}

tr.pl-149px > td {
  padding-left: 149px;
}

tr.pr-149px > td {
  padding-right: 149px;
}

tr.py-149px > td {
  padding-top: 149px;
  padding-bottom: 149px;
}

tr.px-149px > td {
  padding-left: 149px;
  padding-right: 149px;
}

tr.pi-149px > td {
  padding: 149px !important;
}

tr.pti-149px > td {
  padding-top: 149px !important;
}

tr.pbi-149px > td {
  padding-bottom: 149px !important;
}

tr.pli-149px > td {
  padding-left: 149px !important;
}

tr.pri-149px > td {
  padding-right: 149px !important;
}

tr.pyi-149px > td {
  padding-top: 149px !important;
  padding-bottom: 149px !important;
}

tr.pxi-149px > td {
  padding-left: 149px !important;
  padding-right: 149px !important;
}

tr.pxi-149px > td {
  padding-left: 149px !important;
  padding-right: 149px !important;
}

.m-150px {
  margin: 150px;
}

.mt-150px {
  margin-top: 150px;
}

.mb-150px {
  margin-bottom: 150px;
}

.ml-150px {
  margin-left: 150px;
}

.mr-150px {
  margin-right: 150px;
}

.mt--150px {
  margin-top: -150px;
}

.mb--150px {
  margin-bottom: -150px;
}

.ml--150px {
  margin-left: -150px;
}

.mr--150px {
  margin-right: -150px;
}

.my-150px {
  margin-top: 150px;
  margin-bottom: 150px;
}

.mx-150px {
  margin-left: 150px;
  margin-right: 150px;
}

.mi-150px {
  margin: 150px !important;
}

.mti-150px {
  margin-top: 150px !important;
}

.mbi-150px {
  margin-bottom: 150px !important;
}

.mli-150px {
  margin-left: 150px !important;
}

.mri-150px {
  margin-right: 150px !important;
}

.mti--150px {
  margin-top: -150px !important;
}

.mbi--150px {
  margin-bottom: -150px !important;
}

.mli--150px {
  margin-left: -150px !important;
}

.mri--150px {
  margin-right: -150px !important;
}

.myi-150px {
  margin-top: 150px !important;
  margin-bottom: 150px !important;
}

.mxi-150px {
  margin-left: 150px !important;
  margin-right: 150px !important;
}

.p-150px {
  padding: 150px;
}

.pt-150px {
  padding-top: 150px;
}

.pb-150px {
  padding-bottom: 150px;
}

.pl-150px {
  padding-left: 150px;
}

.pr-150px {
  padding-right: 150px;
}

.py-150px {
  padding-top: 150px;
  padding-bottom: 150px;
}

.px-150px {
  padding-left: 150px;
  padding-right: 150px;
}

.pi-150px {
  padding: 150px !important;
}

.pti-150px {
  padding-top: 150px !important;
}

.pbi-150px {
  padding-bottom: 150px !important;
}

.pli-150px {
  padding-left: 150px !important;
}

.pri-150px {
  padding-right: 150px !important;
}

.pyi-150px {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}

.pxi-150px {
  padding-left: 150px !important;
  padding-right: 150px !important;
}

tr.p-150px > td {
  padding: 150px;
}

tr.pt-150px > td {
  padding-top: 150px;
}

tr.pb-150px > td {
  padding-bottom: 150px;
}

tr.pl-150px > td {
  padding-left: 150px;
}

tr.pr-150px > td {
  padding-right: 150px;
}

tr.py-150px > td {
  padding-top: 150px;
  padding-bottom: 150px;
}

tr.px-150px > td {
  padding-left: 150px;
  padding-right: 150px;
}

tr.pi-150px > td {
  padding: 150px !important;
}

tr.pti-150px > td {
  padding-top: 150px !important;
}

tr.pbi-150px > td {
  padding-bottom: 150px !important;
}

tr.pli-150px > td {
  padding-left: 150px !important;
}

tr.pri-150px > td {
  padding-right: 150px !important;
}

tr.pyi-150px > td {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}

tr.pxi-150px > td {
  padding-left: 150px !important;
  padding-right: 150px !important;
}

tr.pxi-150px > td {
  padding-left: 150px !important;
  padding-right: 150px !important;
}

.m-151px {
  margin: 151px;
}

.mt-151px {
  margin-top: 151px;
}

.mb-151px {
  margin-bottom: 151px;
}

.ml-151px {
  margin-left: 151px;
}

.mr-151px {
  margin-right: 151px;
}

.mt--151px {
  margin-top: -151px;
}

.mb--151px {
  margin-bottom: -151px;
}

.ml--151px {
  margin-left: -151px;
}

.mr--151px {
  margin-right: -151px;
}

.my-151px {
  margin-top: 151px;
  margin-bottom: 151px;
}

.mx-151px {
  margin-left: 151px;
  margin-right: 151px;
}

.mi-151px {
  margin: 151px !important;
}

.mti-151px {
  margin-top: 151px !important;
}

.mbi-151px {
  margin-bottom: 151px !important;
}

.mli-151px {
  margin-left: 151px !important;
}

.mri-151px {
  margin-right: 151px !important;
}

.mti--151px {
  margin-top: -151px !important;
}

.mbi--151px {
  margin-bottom: -151px !important;
}

.mli--151px {
  margin-left: -151px !important;
}

.mri--151px {
  margin-right: -151px !important;
}

.myi-151px {
  margin-top: 151px !important;
  margin-bottom: 151px !important;
}

.mxi-151px {
  margin-left: 151px !important;
  margin-right: 151px !important;
}

.p-151px {
  padding: 151px;
}

.pt-151px {
  padding-top: 151px;
}

.pb-151px {
  padding-bottom: 151px;
}

.pl-151px {
  padding-left: 151px;
}

.pr-151px {
  padding-right: 151px;
}

.py-151px {
  padding-top: 151px;
  padding-bottom: 151px;
}

.px-151px {
  padding-left: 151px;
  padding-right: 151px;
}

.pi-151px {
  padding: 151px !important;
}

.pti-151px {
  padding-top: 151px !important;
}

.pbi-151px {
  padding-bottom: 151px !important;
}

.pli-151px {
  padding-left: 151px !important;
}

.pri-151px {
  padding-right: 151px !important;
}

.pyi-151px {
  padding-top: 151px !important;
  padding-bottom: 151px !important;
}

.pxi-151px {
  padding-left: 151px !important;
  padding-right: 151px !important;
}

tr.p-151px > td {
  padding: 151px;
}

tr.pt-151px > td {
  padding-top: 151px;
}

tr.pb-151px > td {
  padding-bottom: 151px;
}

tr.pl-151px > td {
  padding-left: 151px;
}

tr.pr-151px > td {
  padding-right: 151px;
}

tr.py-151px > td {
  padding-top: 151px;
  padding-bottom: 151px;
}

tr.px-151px > td {
  padding-left: 151px;
  padding-right: 151px;
}

tr.pi-151px > td {
  padding: 151px !important;
}

tr.pti-151px > td {
  padding-top: 151px !important;
}

tr.pbi-151px > td {
  padding-bottom: 151px !important;
}

tr.pli-151px > td {
  padding-left: 151px !important;
}

tr.pri-151px > td {
  padding-right: 151px !important;
}

tr.pyi-151px > td {
  padding-top: 151px !important;
  padding-bottom: 151px !important;
}

tr.pxi-151px > td {
  padding-left: 151px !important;
  padding-right: 151px !important;
}

tr.pxi-151px > td {
  padding-left: 151px !important;
  padding-right: 151px !important;
}

.m-152px {
  margin: 152px;
}

.mt-152px {
  margin-top: 152px;
}

.mb-152px {
  margin-bottom: 152px;
}

.ml-152px {
  margin-left: 152px;
}

.mr-152px {
  margin-right: 152px;
}

.mt--152px {
  margin-top: -152px;
}

.mb--152px {
  margin-bottom: -152px;
}

.ml--152px {
  margin-left: -152px;
}

.mr--152px {
  margin-right: -152px;
}

.my-152px {
  margin-top: 152px;
  margin-bottom: 152px;
}

.mx-152px {
  margin-left: 152px;
  margin-right: 152px;
}

.mi-152px {
  margin: 152px !important;
}

.mti-152px {
  margin-top: 152px !important;
}

.mbi-152px {
  margin-bottom: 152px !important;
}

.mli-152px {
  margin-left: 152px !important;
}

.mri-152px {
  margin-right: 152px !important;
}

.mti--152px {
  margin-top: -152px !important;
}

.mbi--152px {
  margin-bottom: -152px !important;
}

.mli--152px {
  margin-left: -152px !important;
}

.mri--152px {
  margin-right: -152px !important;
}

.myi-152px {
  margin-top: 152px !important;
  margin-bottom: 152px !important;
}

.mxi-152px {
  margin-left: 152px !important;
  margin-right: 152px !important;
}

.p-152px {
  padding: 152px;
}

.pt-152px {
  padding-top: 152px;
}

.pb-152px {
  padding-bottom: 152px;
}

.pl-152px {
  padding-left: 152px;
}

.pr-152px {
  padding-right: 152px;
}

.py-152px {
  padding-top: 152px;
  padding-bottom: 152px;
}

.px-152px {
  padding-left: 152px;
  padding-right: 152px;
}

.pi-152px {
  padding: 152px !important;
}

.pti-152px {
  padding-top: 152px !important;
}

.pbi-152px {
  padding-bottom: 152px !important;
}

.pli-152px {
  padding-left: 152px !important;
}

.pri-152px {
  padding-right: 152px !important;
}

.pyi-152px {
  padding-top: 152px !important;
  padding-bottom: 152px !important;
}

.pxi-152px {
  padding-left: 152px !important;
  padding-right: 152px !important;
}

tr.p-152px > td {
  padding: 152px;
}

tr.pt-152px > td {
  padding-top: 152px;
}

tr.pb-152px > td {
  padding-bottom: 152px;
}

tr.pl-152px > td {
  padding-left: 152px;
}

tr.pr-152px > td {
  padding-right: 152px;
}

tr.py-152px > td {
  padding-top: 152px;
  padding-bottom: 152px;
}

tr.px-152px > td {
  padding-left: 152px;
  padding-right: 152px;
}

tr.pi-152px > td {
  padding: 152px !important;
}

tr.pti-152px > td {
  padding-top: 152px !important;
}

tr.pbi-152px > td {
  padding-bottom: 152px !important;
}

tr.pli-152px > td {
  padding-left: 152px !important;
}

tr.pri-152px > td {
  padding-right: 152px !important;
}

tr.pyi-152px > td {
  padding-top: 152px !important;
  padding-bottom: 152px !important;
}

tr.pxi-152px > td {
  padding-left: 152px !important;
  padding-right: 152px !important;
}

tr.pxi-152px > td {
  padding-left: 152px !important;
  padding-right: 152px !important;
}

.m-153px {
  margin: 153px;
}

.mt-153px {
  margin-top: 153px;
}

.mb-153px {
  margin-bottom: 153px;
}

.ml-153px {
  margin-left: 153px;
}

.mr-153px {
  margin-right: 153px;
}

.mt--153px {
  margin-top: -153px;
}

.mb--153px {
  margin-bottom: -153px;
}

.ml--153px {
  margin-left: -153px;
}

.mr--153px {
  margin-right: -153px;
}

.my-153px {
  margin-top: 153px;
  margin-bottom: 153px;
}

.mx-153px {
  margin-left: 153px;
  margin-right: 153px;
}

.mi-153px {
  margin: 153px !important;
}

.mti-153px {
  margin-top: 153px !important;
}

.mbi-153px {
  margin-bottom: 153px !important;
}

.mli-153px {
  margin-left: 153px !important;
}

.mri-153px {
  margin-right: 153px !important;
}

.mti--153px {
  margin-top: -153px !important;
}

.mbi--153px {
  margin-bottom: -153px !important;
}

.mli--153px {
  margin-left: -153px !important;
}

.mri--153px {
  margin-right: -153px !important;
}

.myi-153px {
  margin-top: 153px !important;
  margin-bottom: 153px !important;
}

.mxi-153px {
  margin-left: 153px !important;
  margin-right: 153px !important;
}

.p-153px {
  padding: 153px;
}

.pt-153px {
  padding-top: 153px;
}

.pb-153px {
  padding-bottom: 153px;
}

.pl-153px {
  padding-left: 153px;
}

.pr-153px {
  padding-right: 153px;
}

.py-153px {
  padding-top: 153px;
  padding-bottom: 153px;
}

.px-153px {
  padding-left: 153px;
  padding-right: 153px;
}

.pi-153px {
  padding: 153px !important;
}

.pti-153px {
  padding-top: 153px !important;
}

.pbi-153px {
  padding-bottom: 153px !important;
}

.pli-153px {
  padding-left: 153px !important;
}

.pri-153px {
  padding-right: 153px !important;
}

.pyi-153px {
  padding-top: 153px !important;
  padding-bottom: 153px !important;
}

.pxi-153px {
  padding-left: 153px !important;
  padding-right: 153px !important;
}

tr.p-153px > td {
  padding: 153px;
}

tr.pt-153px > td {
  padding-top: 153px;
}

tr.pb-153px > td {
  padding-bottom: 153px;
}

tr.pl-153px > td {
  padding-left: 153px;
}

tr.pr-153px > td {
  padding-right: 153px;
}

tr.py-153px > td {
  padding-top: 153px;
  padding-bottom: 153px;
}

tr.px-153px > td {
  padding-left: 153px;
  padding-right: 153px;
}

tr.pi-153px > td {
  padding: 153px !important;
}

tr.pti-153px > td {
  padding-top: 153px !important;
}

tr.pbi-153px > td {
  padding-bottom: 153px !important;
}

tr.pli-153px > td {
  padding-left: 153px !important;
}

tr.pri-153px > td {
  padding-right: 153px !important;
}

tr.pyi-153px > td {
  padding-top: 153px !important;
  padding-bottom: 153px !important;
}

tr.pxi-153px > td {
  padding-left: 153px !important;
  padding-right: 153px !important;
}

tr.pxi-153px > td {
  padding-left: 153px !important;
  padding-right: 153px !important;
}

.m-154px {
  margin: 154px;
}

.mt-154px {
  margin-top: 154px;
}

.mb-154px {
  margin-bottom: 154px;
}

.ml-154px {
  margin-left: 154px;
}

.mr-154px {
  margin-right: 154px;
}

.mt--154px {
  margin-top: -154px;
}

.mb--154px {
  margin-bottom: -154px;
}

.ml--154px {
  margin-left: -154px;
}

.mr--154px {
  margin-right: -154px;
}

.my-154px {
  margin-top: 154px;
  margin-bottom: 154px;
}

.mx-154px {
  margin-left: 154px;
  margin-right: 154px;
}

.mi-154px {
  margin: 154px !important;
}

.mti-154px {
  margin-top: 154px !important;
}

.mbi-154px {
  margin-bottom: 154px !important;
}

.mli-154px {
  margin-left: 154px !important;
}

.mri-154px {
  margin-right: 154px !important;
}

.mti--154px {
  margin-top: -154px !important;
}

.mbi--154px {
  margin-bottom: -154px !important;
}

.mli--154px {
  margin-left: -154px !important;
}

.mri--154px {
  margin-right: -154px !important;
}

.myi-154px {
  margin-top: 154px !important;
  margin-bottom: 154px !important;
}

.mxi-154px {
  margin-left: 154px !important;
  margin-right: 154px !important;
}

.p-154px {
  padding: 154px;
}

.pt-154px {
  padding-top: 154px;
}

.pb-154px {
  padding-bottom: 154px;
}

.pl-154px {
  padding-left: 154px;
}

.pr-154px {
  padding-right: 154px;
}

.py-154px {
  padding-top: 154px;
  padding-bottom: 154px;
}

.px-154px {
  padding-left: 154px;
  padding-right: 154px;
}

.pi-154px {
  padding: 154px !important;
}

.pti-154px {
  padding-top: 154px !important;
}

.pbi-154px {
  padding-bottom: 154px !important;
}

.pli-154px {
  padding-left: 154px !important;
}

.pri-154px {
  padding-right: 154px !important;
}

.pyi-154px {
  padding-top: 154px !important;
  padding-bottom: 154px !important;
}

.pxi-154px {
  padding-left: 154px !important;
  padding-right: 154px !important;
}

tr.p-154px > td {
  padding: 154px;
}

tr.pt-154px > td {
  padding-top: 154px;
}

tr.pb-154px > td {
  padding-bottom: 154px;
}

tr.pl-154px > td {
  padding-left: 154px;
}

tr.pr-154px > td {
  padding-right: 154px;
}

tr.py-154px > td {
  padding-top: 154px;
  padding-bottom: 154px;
}

tr.px-154px > td {
  padding-left: 154px;
  padding-right: 154px;
}

tr.pi-154px > td {
  padding: 154px !important;
}

tr.pti-154px > td {
  padding-top: 154px !important;
}

tr.pbi-154px > td {
  padding-bottom: 154px !important;
}

tr.pli-154px > td {
  padding-left: 154px !important;
}

tr.pri-154px > td {
  padding-right: 154px !important;
}

tr.pyi-154px > td {
  padding-top: 154px !important;
  padding-bottom: 154px !important;
}

tr.pxi-154px > td {
  padding-left: 154px !important;
  padding-right: 154px !important;
}

tr.pxi-154px > td {
  padding-left: 154px !important;
  padding-right: 154px !important;
}

.m-155px {
  margin: 155px;
}

.mt-155px {
  margin-top: 155px;
}

.mb-155px {
  margin-bottom: 155px;
}

.ml-155px {
  margin-left: 155px;
}

.mr-155px {
  margin-right: 155px;
}

.mt--155px {
  margin-top: -155px;
}

.mb--155px {
  margin-bottom: -155px;
}

.ml--155px {
  margin-left: -155px;
}

.mr--155px {
  margin-right: -155px;
}

.my-155px {
  margin-top: 155px;
  margin-bottom: 155px;
}

.mx-155px {
  margin-left: 155px;
  margin-right: 155px;
}

.mi-155px {
  margin: 155px !important;
}

.mti-155px {
  margin-top: 155px !important;
}

.mbi-155px {
  margin-bottom: 155px !important;
}

.mli-155px {
  margin-left: 155px !important;
}

.mri-155px {
  margin-right: 155px !important;
}

.mti--155px {
  margin-top: -155px !important;
}

.mbi--155px {
  margin-bottom: -155px !important;
}

.mli--155px {
  margin-left: -155px !important;
}

.mri--155px {
  margin-right: -155px !important;
}

.myi-155px {
  margin-top: 155px !important;
  margin-bottom: 155px !important;
}

.mxi-155px {
  margin-left: 155px !important;
  margin-right: 155px !important;
}

.p-155px {
  padding: 155px;
}

.pt-155px {
  padding-top: 155px;
}

.pb-155px {
  padding-bottom: 155px;
}

.pl-155px {
  padding-left: 155px;
}

.pr-155px {
  padding-right: 155px;
}

.py-155px {
  padding-top: 155px;
  padding-bottom: 155px;
}

.px-155px {
  padding-left: 155px;
  padding-right: 155px;
}

.pi-155px {
  padding: 155px !important;
}

.pti-155px {
  padding-top: 155px !important;
}

.pbi-155px {
  padding-bottom: 155px !important;
}

.pli-155px {
  padding-left: 155px !important;
}

.pri-155px {
  padding-right: 155px !important;
}

.pyi-155px {
  padding-top: 155px !important;
  padding-bottom: 155px !important;
}

.pxi-155px {
  padding-left: 155px !important;
  padding-right: 155px !important;
}

tr.p-155px > td {
  padding: 155px;
}

tr.pt-155px > td {
  padding-top: 155px;
}

tr.pb-155px > td {
  padding-bottom: 155px;
}

tr.pl-155px > td {
  padding-left: 155px;
}

tr.pr-155px > td {
  padding-right: 155px;
}

tr.py-155px > td {
  padding-top: 155px;
  padding-bottom: 155px;
}

tr.px-155px > td {
  padding-left: 155px;
  padding-right: 155px;
}

tr.pi-155px > td {
  padding: 155px !important;
}

tr.pti-155px > td {
  padding-top: 155px !important;
}

tr.pbi-155px > td {
  padding-bottom: 155px !important;
}

tr.pli-155px > td {
  padding-left: 155px !important;
}

tr.pri-155px > td {
  padding-right: 155px !important;
}

tr.pyi-155px > td {
  padding-top: 155px !important;
  padding-bottom: 155px !important;
}

tr.pxi-155px > td {
  padding-left: 155px !important;
  padding-right: 155px !important;
}

tr.pxi-155px > td {
  padding-left: 155px !important;
  padding-right: 155px !important;
}

.m-156px {
  margin: 156px;
}

.mt-156px {
  margin-top: 156px;
}

.mb-156px {
  margin-bottom: 156px;
}

.ml-156px {
  margin-left: 156px;
}

.mr-156px {
  margin-right: 156px;
}

.mt--156px {
  margin-top: -156px;
}

.mb--156px {
  margin-bottom: -156px;
}

.ml--156px {
  margin-left: -156px;
}

.mr--156px {
  margin-right: -156px;
}

.my-156px {
  margin-top: 156px;
  margin-bottom: 156px;
}

.mx-156px {
  margin-left: 156px;
  margin-right: 156px;
}

.mi-156px {
  margin: 156px !important;
}

.mti-156px {
  margin-top: 156px !important;
}

.mbi-156px {
  margin-bottom: 156px !important;
}

.mli-156px {
  margin-left: 156px !important;
}

.mri-156px {
  margin-right: 156px !important;
}

.mti--156px {
  margin-top: -156px !important;
}

.mbi--156px {
  margin-bottom: -156px !important;
}

.mli--156px {
  margin-left: -156px !important;
}

.mri--156px {
  margin-right: -156px !important;
}

.myi-156px {
  margin-top: 156px !important;
  margin-bottom: 156px !important;
}

.mxi-156px {
  margin-left: 156px !important;
  margin-right: 156px !important;
}

.p-156px {
  padding: 156px;
}

.pt-156px {
  padding-top: 156px;
}

.pb-156px {
  padding-bottom: 156px;
}

.pl-156px {
  padding-left: 156px;
}

.pr-156px {
  padding-right: 156px;
}

.py-156px {
  padding-top: 156px;
  padding-bottom: 156px;
}

.px-156px {
  padding-left: 156px;
  padding-right: 156px;
}

.pi-156px {
  padding: 156px !important;
}

.pti-156px {
  padding-top: 156px !important;
}

.pbi-156px {
  padding-bottom: 156px !important;
}

.pli-156px {
  padding-left: 156px !important;
}

.pri-156px {
  padding-right: 156px !important;
}

.pyi-156px {
  padding-top: 156px !important;
  padding-bottom: 156px !important;
}

.pxi-156px {
  padding-left: 156px !important;
  padding-right: 156px !important;
}

tr.p-156px > td {
  padding: 156px;
}

tr.pt-156px > td {
  padding-top: 156px;
}

tr.pb-156px > td {
  padding-bottom: 156px;
}

tr.pl-156px > td {
  padding-left: 156px;
}

tr.pr-156px > td {
  padding-right: 156px;
}

tr.py-156px > td {
  padding-top: 156px;
  padding-bottom: 156px;
}

tr.px-156px > td {
  padding-left: 156px;
  padding-right: 156px;
}

tr.pi-156px > td {
  padding: 156px !important;
}

tr.pti-156px > td {
  padding-top: 156px !important;
}

tr.pbi-156px > td {
  padding-bottom: 156px !important;
}

tr.pli-156px > td {
  padding-left: 156px !important;
}

tr.pri-156px > td {
  padding-right: 156px !important;
}

tr.pyi-156px > td {
  padding-top: 156px !important;
  padding-bottom: 156px !important;
}

tr.pxi-156px > td {
  padding-left: 156px !important;
  padding-right: 156px !important;
}

tr.pxi-156px > td {
  padding-left: 156px !important;
  padding-right: 156px !important;
}

.m-157px {
  margin: 157px;
}

.mt-157px {
  margin-top: 157px;
}

.mb-157px {
  margin-bottom: 157px;
}

.ml-157px {
  margin-left: 157px;
}

.mr-157px {
  margin-right: 157px;
}

.mt--157px {
  margin-top: -157px;
}

.mb--157px {
  margin-bottom: -157px;
}

.ml--157px {
  margin-left: -157px;
}

.mr--157px {
  margin-right: -157px;
}

.my-157px {
  margin-top: 157px;
  margin-bottom: 157px;
}

.mx-157px {
  margin-left: 157px;
  margin-right: 157px;
}

.mi-157px {
  margin: 157px !important;
}

.mti-157px {
  margin-top: 157px !important;
}

.mbi-157px {
  margin-bottom: 157px !important;
}

.mli-157px {
  margin-left: 157px !important;
}

.mri-157px {
  margin-right: 157px !important;
}

.mti--157px {
  margin-top: -157px !important;
}

.mbi--157px {
  margin-bottom: -157px !important;
}

.mli--157px {
  margin-left: -157px !important;
}

.mri--157px {
  margin-right: -157px !important;
}

.myi-157px {
  margin-top: 157px !important;
  margin-bottom: 157px !important;
}

.mxi-157px {
  margin-left: 157px !important;
  margin-right: 157px !important;
}

.p-157px {
  padding: 157px;
}

.pt-157px {
  padding-top: 157px;
}

.pb-157px {
  padding-bottom: 157px;
}

.pl-157px {
  padding-left: 157px;
}

.pr-157px {
  padding-right: 157px;
}

.py-157px {
  padding-top: 157px;
  padding-bottom: 157px;
}

.px-157px {
  padding-left: 157px;
  padding-right: 157px;
}

.pi-157px {
  padding: 157px !important;
}

.pti-157px {
  padding-top: 157px !important;
}

.pbi-157px {
  padding-bottom: 157px !important;
}

.pli-157px {
  padding-left: 157px !important;
}

.pri-157px {
  padding-right: 157px !important;
}

.pyi-157px {
  padding-top: 157px !important;
  padding-bottom: 157px !important;
}

.pxi-157px {
  padding-left: 157px !important;
  padding-right: 157px !important;
}

tr.p-157px > td {
  padding: 157px;
}

tr.pt-157px > td {
  padding-top: 157px;
}

tr.pb-157px > td {
  padding-bottom: 157px;
}

tr.pl-157px > td {
  padding-left: 157px;
}

tr.pr-157px > td {
  padding-right: 157px;
}

tr.py-157px > td {
  padding-top: 157px;
  padding-bottom: 157px;
}

tr.px-157px > td {
  padding-left: 157px;
  padding-right: 157px;
}

tr.pi-157px > td {
  padding: 157px !important;
}

tr.pti-157px > td {
  padding-top: 157px !important;
}

tr.pbi-157px > td {
  padding-bottom: 157px !important;
}

tr.pli-157px > td {
  padding-left: 157px !important;
}

tr.pri-157px > td {
  padding-right: 157px !important;
}

tr.pyi-157px > td {
  padding-top: 157px !important;
  padding-bottom: 157px !important;
}

tr.pxi-157px > td {
  padding-left: 157px !important;
  padding-right: 157px !important;
}

tr.pxi-157px > td {
  padding-left: 157px !important;
  padding-right: 157px !important;
}

.m-158px {
  margin: 158px;
}

.mt-158px {
  margin-top: 158px;
}

.mb-158px {
  margin-bottom: 158px;
}

.ml-158px {
  margin-left: 158px;
}

.mr-158px {
  margin-right: 158px;
}

.mt--158px {
  margin-top: -158px;
}

.mb--158px {
  margin-bottom: -158px;
}

.ml--158px {
  margin-left: -158px;
}

.mr--158px {
  margin-right: -158px;
}

.my-158px {
  margin-top: 158px;
  margin-bottom: 158px;
}

.mx-158px {
  margin-left: 158px;
  margin-right: 158px;
}

.mi-158px {
  margin: 158px !important;
}

.mti-158px {
  margin-top: 158px !important;
}

.mbi-158px {
  margin-bottom: 158px !important;
}

.mli-158px {
  margin-left: 158px !important;
}

.mri-158px {
  margin-right: 158px !important;
}

.mti--158px {
  margin-top: -158px !important;
}

.mbi--158px {
  margin-bottom: -158px !important;
}

.mli--158px {
  margin-left: -158px !important;
}

.mri--158px {
  margin-right: -158px !important;
}

.myi-158px {
  margin-top: 158px !important;
  margin-bottom: 158px !important;
}

.mxi-158px {
  margin-left: 158px !important;
  margin-right: 158px !important;
}

.p-158px {
  padding: 158px;
}

.pt-158px {
  padding-top: 158px;
}

.pb-158px {
  padding-bottom: 158px;
}

.pl-158px {
  padding-left: 158px;
}

.pr-158px {
  padding-right: 158px;
}

.py-158px {
  padding-top: 158px;
  padding-bottom: 158px;
}

.px-158px {
  padding-left: 158px;
  padding-right: 158px;
}

.pi-158px {
  padding: 158px !important;
}

.pti-158px {
  padding-top: 158px !important;
}

.pbi-158px {
  padding-bottom: 158px !important;
}

.pli-158px {
  padding-left: 158px !important;
}

.pri-158px {
  padding-right: 158px !important;
}

.pyi-158px {
  padding-top: 158px !important;
  padding-bottom: 158px !important;
}

.pxi-158px {
  padding-left: 158px !important;
  padding-right: 158px !important;
}

tr.p-158px > td {
  padding: 158px;
}

tr.pt-158px > td {
  padding-top: 158px;
}

tr.pb-158px > td {
  padding-bottom: 158px;
}

tr.pl-158px > td {
  padding-left: 158px;
}

tr.pr-158px > td {
  padding-right: 158px;
}

tr.py-158px > td {
  padding-top: 158px;
  padding-bottom: 158px;
}

tr.px-158px > td {
  padding-left: 158px;
  padding-right: 158px;
}

tr.pi-158px > td {
  padding: 158px !important;
}

tr.pti-158px > td {
  padding-top: 158px !important;
}

tr.pbi-158px > td {
  padding-bottom: 158px !important;
}

tr.pli-158px > td {
  padding-left: 158px !important;
}

tr.pri-158px > td {
  padding-right: 158px !important;
}

tr.pyi-158px > td {
  padding-top: 158px !important;
  padding-bottom: 158px !important;
}

tr.pxi-158px > td {
  padding-left: 158px !important;
  padding-right: 158px !important;
}

tr.pxi-158px > td {
  padding-left: 158px !important;
  padding-right: 158px !important;
}

.m-159px {
  margin: 159px;
}

.mt-159px {
  margin-top: 159px;
}

.mb-159px {
  margin-bottom: 159px;
}

.ml-159px {
  margin-left: 159px;
}

.mr-159px {
  margin-right: 159px;
}

.mt--159px {
  margin-top: -159px;
}

.mb--159px {
  margin-bottom: -159px;
}

.ml--159px {
  margin-left: -159px;
}

.mr--159px {
  margin-right: -159px;
}

.my-159px {
  margin-top: 159px;
  margin-bottom: 159px;
}

.mx-159px {
  margin-left: 159px;
  margin-right: 159px;
}

.mi-159px {
  margin: 159px !important;
}

.mti-159px {
  margin-top: 159px !important;
}

.mbi-159px {
  margin-bottom: 159px !important;
}

.mli-159px {
  margin-left: 159px !important;
}

.mri-159px {
  margin-right: 159px !important;
}

.mti--159px {
  margin-top: -159px !important;
}

.mbi--159px {
  margin-bottom: -159px !important;
}

.mli--159px {
  margin-left: -159px !important;
}

.mri--159px {
  margin-right: -159px !important;
}

.myi-159px {
  margin-top: 159px !important;
  margin-bottom: 159px !important;
}

.mxi-159px {
  margin-left: 159px !important;
  margin-right: 159px !important;
}

.p-159px {
  padding: 159px;
}

.pt-159px {
  padding-top: 159px;
}

.pb-159px {
  padding-bottom: 159px;
}

.pl-159px {
  padding-left: 159px;
}

.pr-159px {
  padding-right: 159px;
}

.py-159px {
  padding-top: 159px;
  padding-bottom: 159px;
}

.px-159px {
  padding-left: 159px;
  padding-right: 159px;
}

.pi-159px {
  padding: 159px !important;
}

.pti-159px {
  padding-top: 159px !important;
}

.pbi-159px {
  padding-bottom: 159px !important;
}

.pli-159px {
  padding-left: 159px !important;
}

.pri-159px {
  padding-right: 159px !important;
}

.pyi-159px {
  padding-top: 159px !important;
  padding-bottom: 159px !important;
}

.pxi-159px {
  padding-left: 159px !important;
  padding-right: 159px !important;
}

tr.p-159px > td {
  padding: 159px;
}

tr.pt-159px > td {
  padding-top: 159px;
}

tr.pb-159px > td {
  padding-bottom: 159px;
}

tr.pl-159px > td {
  padding-left: 159px;
}

tr.pr-159px > td {
  padding-right: 159px;
}

tr.py-159px > td {
  padding-top: 159px;
  padding-bottom: 159px;
}

tr.px-159px > td {
  padding-left: 159px;
  padding-right: 159px;
}

tr.pi-159px > td {
  padding: 159px !important;
}

tr.pti-159px > td {
  padding-top: 159px !important;
}

tr.pbi-159px > td {
  padding-bottom: 159px !important;
}

tr.pli-159px > td {
  padding-left: 159px !important;
}

tr.pri-159px > td {
  padding-right: 159px !important;
}

tr.pyi-159px > td {
  padding-top: 159px !important;
  padding-bottom: 159px !important;
}

tr.pxi-159px > td {
  padding-left: 159px !important;
  padding-right: 159px !important;
}

tr.pxi-159px > td {
  padding-left: 159px !important;
  padding-right: 159px !important;
}

.m-160px {
  margin: 160px;
}

.mt-160px {
  margin-top: 160px;
}

.mb-160px {
  margin-bottom: 160px;
}

.ml-160px {
  margin-left: 160px;
}

.mr-160px {
  margin-right: 160px;
}

.mt--160px {
  margin-top: -160px;
}

.mb--160px {
  margin-bottom: -160px;
}

.ml--160px {
  margin-left: -160px;
}

.mr--160px {
  margin-right: -160px;
}

.my-160px {
  margin-top: 160px;
  margin-bottom: 160px;
}

.mx-160px {
  margin-left: 160px;
  margin-right: 160px;
}

.mi-160px {
  margin: 160px !important;
}

.mti-160px {
  margin-top: 160px !important;
}

.mbi-160px {
  margin-bottom: 160px !important;
}

.mli-160px {
  margin-left: 160px !important;
}

.mri-160px {
  margin-right: 160px !important;
}

.mti--160px {
  margin-top: -160px !important;
}

.mbi--160px {
  margin-bottom: -160px !important;
}

.mli--160px {
  margin-left: -160px !important;
}

.mri--160px {
  margin-right: -160px !important;
}

.myi-160px {
  margin-top: 160px !important;
  margin-bottom: 160px !important;
}

.mxi-160px {
  margin-left: 160px !important;
  margin-right: 160px !important;
}

.p-160px {
  padding: 160px;
}

.pt-160px {
  padding-top: 160px;
}

.pb-160px {
  padding-bottom: 160px;
}

.pl-160px {
  padding-left: 160px;
}

.pr-160px {
  padding-right: 160px;
}

.py-160px {
  padding-top: 160px;
  padding-bottom: 160px;
}

.px-160px {
  padding-left: 160px;
  padding-right: 160px;
}

.pi-160px {
  padding: 160px !important;
}

.pti-160px {
  padding-top: 160px !important;
}

.pbi-160px {
  padding-bottom: 160px !important;
}

.pli-160px {
  padding-left: 160px !important;
}

.pri-160px {
  padding-right: 160px !important;
}

.pyi-160px {
  padding-top: 160px !important;
  padding-bottom: 160px !important;
}

.pxi-160px {
  padding-left: 160px !important;
  padding-right: 160px !important;
}

tr.p-160px > td {
  padding: 160px;
}

tr.pt-160px > td {
  padding-top: 160px;
}

tr.pb-160px > td {
  padding-bottom: 160px;
}

tr.pl-160px > td {
  padding-left: 160px;
}

tr.pr-160px > td {
  padding-right: 160px;
}

tr.py-160px > td {
  padding-top: 160px;
  padding-bottom: 160px;
}

tr.px-160px > td {
  padding-left: 160px;
  padding-right: 160px;
}

tr.pi-160px > td {
  padding: 160px !important;
}

tr.pti-160px > td {
  padding-top: 160px !important;
}

tr.pbi-160px > td {
  padding-bottom: 160px !important;
}

tr.pli-160px > td {
  padding-left: 160px !important;
}

tr.pri-160px > td {
  padding-right: 160px !important;
}

tr.pyi-160px > td {
  padding-top: 160px !important;
  padding-bottom: 160px !important;
}

tr.pxi-160px > td {
  padding-left: 160px !important;
  padding-right: 160px !important;
}

tr.pxi-160px > td {
  padding-left: 160px !important;
  padding-right: 160px !important;
}

.m-161px {
  margin: 161px;
}

.mt-161px {
  margin-top: 161px;
}

.mb-161px {
  margin-bottom: 161px;
}

.ml-161px {
  margin-left: 161px;
}

.mr-161px {
  margin-right: 161px;
}

.mt--161px {
  margin-top: -161px;
}

.mb--161px {
  margin-bottom: -161px;
}

.ml--161px {
  margin-left: -161px;
}

.mr--161px {
  margin-right: -161px;
}

.my-161px {
  margin-top: 161px;
  margin-bottom: 161px;
}

.mx-161px {
  margin-left: 161px;
  margin-right: 161px;
}

.mi-161px {
  margin: 161px !important;
}

.mti-161px {
  margin-top: 161px !important;
}

.mbi-161px {
  margin-bottom: 161px !important;
}

.mli-161px {
  margin-left: 161px !important;
}

.mri-161px {
  margin-right: 161px !important;
}

.mti--161px {
  margin-top: -161px !important;
}

.mbi--161px {
  margin-bottom: -161px !important;
}

.mli--161px {
  margin-left: -161px !important;
}

.mri--161px {
  margin-right: -161px !important;
}

.myi-161px {
  margin-top: 161px !important;
  margin-bottom: 161px !important;
}

.mxi-161px {
  margin-left: 161px !important;
  margin-right: 161px !important;
}

.p-161px {
  padding: 161px;
}

.pt-161px {
  padding-top: 161px;
}

.pb-161px {
  padding-bottom: 161px;
}

.pl-161px {
  padding-left: 161px;
}

.pr-161px {
  padding-right: 161px;
}

.py-161px {
  padding-top: 161px;
  padding-bottom: 161px;
}

.px-161px {
  padding-left: 161px;
  padding-right: 161px;
}

.pi-161px {
  padding: 161px !important;
}

.pti-161px {
  padding-top: 161px !important;
}

.pbi-161px {
  padding-bottom: 161px !important;
}

.pli-161px {
  padding-left: 161px !important;
}

.pri-161px {
  padding-right: 161px !important;
}

.pyi-161px {
  padding-top: 161px !important;
  padding-bottom: 161px !important;
}

.pxi-161px {
  padding-left: 161px !important;
  padding-right: 161px !important;
}

tr.p-161px > td {
  padding: 161px;
}

tr.pt-161px > td {
  padding-top: 161px;
}

tr.pb-161px > td {
  padding-bottom: 161px;
}

tr.pl-161px > td {
  padding-left: 161px;
}

tr.pr-161px > td {
  padding-right: 161px;
}

tr.py-161px > td {
  padding-top: 161px;
  padding-bottom: 161px;
}

tr.px-161px > td {
  padding-left: 161px;
  padding-right: 161px;
}

tr.pi-161px > td {
  padding: 161px !important;
}

tr.pti-161px > td {
  padding-top: 161px !important;
}

tr.pbi-161px > td {
  padding-bottom: 161px !important;
}

tr.pli-161px > td {
  padding-left: 161px !important;
}

tr.pri-161px > td {
  padding-right: 161px !important;
}

tr.pyi-161px > td {
  padding-top: 161px !important;
  padding-bottom: 161px !important;
}

tr.pxi-161px > td {
  padding-left: 161px !important;
  padding-right: 161px !important;
}

tr.pxi-161px > td {
  padding-left: 161px !important;
  padding-right: 161px !important;
}

.m-162px {
  margin: 162px;
}

.mt-162px {
  margin-top: 162px;
}

.mb-162px {
  margin-bottom: 162px;
}

.ml-162px {
  margin-left: 162px;
}

.mr-162px {
  margin-right: 162px;
}

.mt--162px {
  margin-top: -162px;
}

.mb--162px {
  margin-bottom: -162px;
}

.ml--162px {
  margin-left: -162px;
}

.mr--162px {
  margin-right: -162px;
}

.my-162px {
  margin-top: 162px;
  margin-bottom: 162px;
}

.mx-162px {
  margin-left: 162px;
  margin-right: 162px;
}

.mi-162px {
  margin: 162px !important;
}

.mti-162px {
  margin-top: 162px !important;
}

.mbi-162px {
  margin-bottom: 162px !important;
}

.mli-162px {
  margin-left: 162px !important;
}

.mri-162px {
  margin-right: 162px !important;
}

.mti--162px {
  margin-top: -162px !important;
}

.mbi--162px {
  margin-bottom: -162px !important;
}

.mli--162px {
  margin-left: -162px !important;
}

.mri--162px {
  margin-right: -162px !important;
}

.myi-162px {
  margin-top: 162px !important;
  margin-bottom: 162px !important;
}

.mxi-162px {
  margin-left: 162px !important;
  margin-right: 162px !important;
}

.p-162px {
  padding: 162px;
}

.pt-162px {
  padding-top: 162px;
}

.pb-162px {
  padding-bottom: 162px;
}

.pl-162px {
  padding-left: 162px;
}

.pr-162px {
  padding-right: 162px;
}

.py-162px {
  padding-top: 162px;
  padding-bottom: 162px;
}

.px-162px {
  padding-left: 162px;
  padding-right: 162px;
}

.pi-162px {
  padding: 162px !important;
}

.pti-162px {
  padding-top: 162px !important;
}

.pbi-162px {
  padding-bottom: 162px !important;
}

.pli-162px {
  padding-left: 162px !important;
}

.pri-162px {
  padding-right: 162px !important;
}

.pyi-162px {
  padding-top: 162px !important;
  padding-bottom: 162px !important;
}

.pxi-162px {
  padding-left: 162px !important;
  padding-right: 162px !important;
}

tr.p-162px > td {
  padding: 162px;
}

tr.pt-162px > td {
  padding-top: 162px;
}

tr.pb-162px > td {
  padding-bottom: 162px;
}

tr.pl-162px > td {
  padding-left: 162px;
}

tr.pr-162px > td {
  padding-right: 162px;
}

tr.py-162px > td {
  padding-top: 162px;
  padding-bottom: 162px;
}

tr.px-162px > td {
  padding-left: 162px;
  padding-right: 162px;
}

tr.pi-162px > td {
  padding: 162px !important;
}

tr.pti-162px > td {
  padding-top: 162px !important;
}

tr.pbi-162px > td {
  padding-bottom: 162px !important;
}

tr.pli-162px > td {
  padding-left: 162px !important;
}

tr.pri-162px > td {
  padding-right: 162px !important;
}

tr.pyi-162px > td {
  padding-top: 162px !important;
  padding-bottom: 162px !important;
}

tr.pxi-162px > td {
  padding-left: 162px !important;
  padding-right: 162px !important;
}

tr.pxi-162px > td {
  padding-left: 162px !important;
  padding-right: 162px !important;
}

.m-163px {
  margin: 163px;
}

.mt-163px {
  margin-top: 163px;
}

.mb-163px {
  margin-bottom: 163px;
}

.ml-163px {
  margin-left: 163px;
}

.mr-163px {
  margin-right: 163px;
}

.mt--163px {
  margin-top: -163px;
}

.mb--163px {
  margin-bottom: -163px;
}

.ml--163px {
  margin-left: -163px;
}

.mr--163px {
  margin-right: -163px;
}

.my-163px {
  margin-top: 163px;
  margin-bottom: 163px;
}

.mx-163px {
  margin-left: 163px;
  margin-right: 163px;
}

.mi-163px {
  margin: 163px !important;
}

.mti-163px {
  margin-top: 163px !important;
}

.mbi-163px {
  margin-bottom: 163px !important;
}

.mli-163px {
  margin-left: 163px !important;
}

.mri-163px {
  margin-right: 163px !important;
}

.mti--163px {
  margin-top: -163px !important;
}

.mbi--163px {
  margin-bottom: -163px !important;
}

.mli--163px {
  margin-left: -163px !important;
}

.mri--163px {
  margin-right: -163px !important;
}

.myi-163px {
  margin-top: 163px !important;
  margin-bottom: 163px !important;
}

.mxi-163px {
  margin-left: 163px !important;
  margin-right: 163px !important;
}

.p-163px {
  padding: 163px;
}

.pt-163px {
  padding-top: 163px;
}

.pb-163px {
  padding-bottom: 163px;
}

.pl-163px {
  padding-left: 163px;
}

.pr-163px {
  padding-right: 163px;
}

.py-163px {
  padding-top: 163px;
  padding-bottom: 163px;
}

.px-163px {
  padding-left: 163px;
  padding-right: 163px;
}

.pi-163px {
  padding: 163px !important;
}

.pti-163px {
  padding-top: 163px !important;
}

.pbi-163px {
  padding-bottom: 163px !important;
}

.pli-163px {
  padding-left: 163px !important;
}

.pri-163px {
  padding-right: 163px !important;
}

.pyi-163px {
  padding-top: 163px !important;
  padding-bottom: 163px !important;
}

.pxi-163px {
  padding-left: 163px !important;
  padding-right: 163px !important;
}

tr.p-163px > td {
  padding: 163px;
}

tr.pt-163px > td {
  padding-top: 163px;
}

tr.pb-163px > td {
  padding-bottom: 163px;
}

tr.pl-163px > td {
  padding-left: 163px;
}

tr.pr-163px > td {
  padding-right: 163px;
}

tr.py-163px > td {
  padding-top: 163px;
  padding-bottom: 163px;
}

tr.px-163px > td {
  padding-left: 163px;
  padding-right: 163px;
}

tr.pi-163px > td {
  padding: 163px !important;
}

tr.pti-163px > td {
  padding-top: 163px !important;
}

tr.pbi-163px > td {
  padding-bottom: 163px !important;
}

tr.pli-163px > td {
  padding-left: 163px !important;
}

tr.pri-163px > td {
  padding-right: 163px !important;
}

tr.pyi-163px > td {
  padding-top: 163px !important;
  padding-bottom: 163px !important;
}

tr.pxi-163px > td {
  padding-left: 163px !important;
  padding-right: 163px !important;
}

tr.pxi-163px > td {
  padding-left: 163px !important;
  padding-right: 163px !important;
}

.m-164px {
  margin: 164px;
}

.mt-164px {
  margin-top: 164px;
}

.mb-164px {
  margin-bottom: 164px;
}

.ml-164px {
  margin-left: 164px;
}

.mr-164px {
  margin-right: 164px;
}

.mt--164px {
  margin-top: -164px;
}

.mb--164px {
  margin-bottom: -164px;
}

.ml--164px {
  margin-left: -164px;
}

.mr--164px {
  margin-right: -164px;
}

.my-164px {
  margin-top: 164px;
  margin-bottom: 164px;
}

.mx-164px {
  margin-left: 164px;
  margin-right: 164px;
}

.mi-164px {
  margin: 164px !important;
}

.mti-164px {
  margin-top: 164px !important;
}

.mbi-164px {
  margin-bottom: 164px !important;
}

.mli-164px {
  margin-left: 164px !important;
}

.mri-164px {
  margin-right: 164px !important;
}

.mti--164px {
  margin-top: -164px !important;
}

.mbi--164px {
  margin-bottom: -164px !important;
}

.mli--164px {
  margin-left: -164px !important;
}

.mri--164px {
  margin-right: -164px !important;
}

.myi-164px {
  margin-top: 164px !important;
  margin-bottom: 164px !important;
}

.mxi-164px {
  margin-left: 164px !important;
  margin-right: 164px !important;
}

.p-164px {
  padding: 164px;
}

.pt-164px {
  padding-top: 164px;
}

.pb-164px {
  padding-bottom: 164px;
}

.pl-164px {
  padding-left: 164px;
}

.pr-164px {
  padding-right: 164px;
}

.py-164px {
  padding-top: 164px;
  padding-bottom: 164px;
}

.px-164px {
  padding-left: 164px;
  padding-right: 164px;
}

.pi-164px {
  padding: 164px !important;
}

.pti-164px {
  padding-top: 164px !important;
}

.pbi-164px {
  padding-bottom: 164px !important;
}

.pli-164px {
  padding-left: 164px !important;
}

.pri-164px {
  padding-right: 164px !important;
}

.pyi-164px {
  padding-top: 164px !important;
  padding-bottom: 164px !important;
}

.pxi-164px {
  padding-left: 164px !important;
  padding-right: 164px !important;
}

tr.p-164px > td {
  padding: 164px;
}

tr.pt-164px > td {
  padding-top: 164px;
}

tr.pb-164px > td {
  padding-bottom: 164px;
}

tr.pl-164px > td {
  padding-left: 164px;
}

tr.pr-164px > td {
  padding-right: 164px;
}

tr.py-164px > td {
  padding-top: 164px;
  padding-bottom: 164px;
}

tr.px-164px > td {
  padding-left: 164px;
  padding-right: 164px;
}

tr.pi-164px > td {
  padding: 164px !important;
}

tr.pti-164px > td {
  padding-top: 164px !important;
}

tr.pbi-164px > td {
  padding-bottom: 164px !important;
}

tr.pli-164px > td {
  padding-left: 164px !important;
}

tr.pri-164px > td {
  padding-right: 164px !important;
}

tr.pyi-164px > td {
  padding-top: 164px !important;
  padding-bottom: 164px !important;
}

tr.pxi-164px > td {
  padding-left: 164px !important;
  padding-right: 164px !important;
}

tr.pxi-164px > td {
  padding-left: 164px !important;
  padding-right: 164px !important;
}

.m-165px {
  margin: 165px;
}

.mt-165px {
  margin-top: 165px;
}

.mb-165px {
  margin-bottom: 165px;
}

.ml-165px {
  margin-left: 165px;
}

.mr-165px {
  margin-right: 165px;
}

.mt--165px {
  margin-top: -165px;
}

.mb--165px {
  margin-bottom: -165px;
}

.ml--165px {
  margin-left: -165px;
}

.mr--165px {
  margin-right: -165px;
}

.my-165px {
  margin-top: 165px;
  margin-bottom: 165px;
}

.mx-165px {
  margin-left: 165px;
  margin-right: 165px;
}

.mi-165px {
  margin: 165px !important;
}

.mti-165px {
  margin-top: 165px !important;
}

.mbi-165px {
  margin-bottom: 165px !important;
}

.mli-165px {
  margin-left: 165px !important;
}

.mri-165px {
  margin-right: 165px !important;
}

.mti--165px {
  margin-top: -165px !important;
}

.mbi--165px {
  margin-bottom: -165px !important;
}

.mli--165px {
  margin-left: -165px !important;
}

.mri--165px {
  margin-right: -165px !important;
}

.myi-165px {
  margin-top: 165px !important;
  margin-bottom: 165px !important;
}

.mxi-165px {
  margin-left: 165px !important;
  margin-right: 165px !important;
}

.p-165px {
  padding: 165px;
}

.pt-165px {
  padding-top: 165px;
}

.pb-165px {
  padding-bottom: 165px;
}

.pl-165px {
  padding-left: 165px;
}

.pr-165px {
  padding-right: 165px;
}

.py-165px {
  padding-top: 165px;
  padding-bottom: 165px;
}

.px-165px {
  padding-left: 165px;
  padding-right: 165px;
}

.pi-165px {
  padding: 165px !important;
}

.pti-165px {
  padding-top: 165px !important;
}

.pbi-165px {
  padding-bottom: 165px !important;
}

.pli-165px {
  padding-left: 165px !important;
}

.pri-165px {
  padding-right: 165px !important;
}

.pyi-165px {
  padding-top: 165px !important;
  padding-bottom: 165px !important;
}

.pxi-165px {
  padding-left: 165px !important;
  padding-right: 165px !important;
}

tr.p-165px > td {
  padding: 165px;
}

tr.pt-165px > td {
  padding-top: 165px;
}

tr.pb-165px > td {
  padding-bottom: 165px;
}

tr.pl-165px > td {
  padding-left: 165px;
}

tr.pr-165px > td {
  padding-right: 165px;
}

tr.py-165px > td {
  padding-top: 165px;
  padding-bottom: 165px;
}

tr.px-165px > td {
  padding-left: 165px;
  padding-right: 165px;
}

tr.pi-165px > td {
  padding: 165px !important;
}

tr.pti-165px > td {
  padding-top: 165px !important;
}

tr.pbi-165px > td {
  padding-bottom: 165px !important;
}

tr.pli-165px > td {
  padding-left: 165px !important;
}

tr.pri-165px > td {
  padding-right: 165px !important;
}

tr.pyi-165px > td {
  padding-top: 165px !important;
  padding-bottom: 165px !important;
}

tr.pxi-165px > td {
  padding-left: 165px !important;
  padding-right: 165px !important;
}

tr.pxi-165px > td {
  padding-left: 165px !important;
  padding-right: 165px !important;
}

.m-166px {
  margin: 166px;
}

.mt-166px {
  margin-top: 166px;
}

.mb-166px {
  margin-bottom: 166px;
}

.ml-166px {
  margin-left: 166px;
}

.mr-166px {
  margin-right: 166px;
}

.mt--166px {
  margin-top: -166px;
}

.mb--166px {
  margin-bottom: -166px;
}

.ml--166px {
  margin-left: -166px;
}

.mr--166px {
  margin-right: -166px;
}

.my-166px {
  margin-top: 166px;
  margin-bottom: 166px;
}

.mx-166px {
  margin-left: 166px;
  margin-right: 166px;
}

.mi-166px {
  margin: 166px !important;
}

.mti-166px {
  margin-top: 166px !important;
}

.mbi-166px {
  margin-bottom: 166px !important;
}

.mli-166px {
  margin-left: 166px !important;
}

.mri-166px {
  margin-right: 166px !important;
}

.mti--166px {
  margin-top: -166px !important;
}

.mbi--166px {
  margin-bottom: -166px !important;
}

.mli--166px {
  margin-left: -166px !important;
}

.mri--166px {
  margin-right: -166px !important;
}

.myi-166px {
  margin-top: 166px !important;
  margin-bottom: 166px !important;
}

.mxi-166px {
  margin-left: 166px !important;
  margin-right: 166px !important;
}

.p-166px {
  padding: 166px;
}

.pt-166px {
  padding-top: 166px;
}

.pb-166px {
  padding-bottom: 166px;
}

.pl-166px {
  padding-left: 166px;
}

.pr-166px {
  padding-right: 166px;
}

.py-166px {
  padding-top: 166px;
  padding-bottom: 166px;
}

.px-166px {
  padding-left: 166px;
  padding-right: 166px;
}

.pi-166px {
  padding: 166px !important;
}

.pti-166px {
  padding-top: 166px !important;
}

.pbi-166px {
  padding-bottom: 166px !important;
}

.pli-166px {
  padding-left: 166px !important;
}

.pri-166px {
  padding-right: 166px !important;
}

.pyi-166px {
  padding-top: 166px !important;
  padding-bottom: 166px !important;
}

.pxi-166px {
  padding-left: 166px !important;
  padding-right: 166px !important;
}

tr.p-166px > td {
  padding: 166px;
}

tr.pt-166px > td {
  padding-top: 166px;
}

tr.pb-166px > td {
  padding-bottom: 166px;
}

tr.pl-166px > td {
  padding-left: 166px;
}

tr.pr-166px > td {
  padding-right: 166px;
}

tr.py-166px > td {
  padding-top: 166px;
  padding-bottom: 166px;
}

tr.px-166px > td {
  padding-left: 166px;
  padding-right: 166px;
}

tr.pi-166px > td {
  padding: 166px !important;
}

tr.pti-166px > td {
  padding-top: 166px !important;
}

tr.pbi-166px > td {
  padding-bottom: 166px !important;
}

tr.pli-166px > td {
  padding-left: 166px !important;
}

tr.pri-166px > td {
  padding-right: 166px !important;
}

tr.pyi-166px > td {
  padding-top: 166px !important;
  padding-bottom: 166px !important;
}

tr.pxi-166px > td {
  padding-left: 166px !important;
  padding-right: 166px !important;
}

tr.pxi-166px > td {
  padding-left: 166px !important;
  padding-right: 166px !important;
}

.m-167px {
  margin: 167px;
}

.mt-167px {
  margin-top: 167px;
}

.mb-167px {
  margin-bottom: 167px;
}

.ml-167px {
  margin-left: 167px;
}

.mr-167px {
  margin-right: 167px;
}

.mt--167px {
  margin-top: -167px;
}

.mb--167px {
  margin-bottom: -167px;
}

.ml--167px {
  margin-left: -167px;
}

.mr--167px {
  margin-right: -167px;
}

.my-167px {
  margin-top: 167px;
  margin-bottom: 167px;
}

.mx-167px {
  margin-left: 167px;
  margin-right: 167px;
}

.mi-167px {
  margin: 167px !important;
}

.mti-167px {
  margin-top: 167px !important;
}

.mbi-167px {
  margin-bottom: 167px !important;
}

.mli-167px {
  margin-left: 167px !important;
}

.mri-167px {
  margin-right: 167px !important;
}

.mti--167px {
  margin-top: -167px !important;
}

.mbi--167px {
  margin-bottom: -167px !important;
}

.mli--167px {
  margin-left: -167px !important;
}

.mri--167px {
  margin-right: -167px !important;
}

.myi-167px {
  margin-top: 167px !important;
  margin-bottom: 167px !important;
}

.mxi-167px {
  margin-left: 167px !important;
  margin-right: 167px !important;
}

.p-167px {
  padding: 167px;
}

.pt-167px {
  padding-top: 167px;
}

.pb-167px {
  padding-bottom: 167px;
}

.pl-167px {
  padding-left: 167px;
}

.pr-167px {
  padding-right: 167px;
}

.py-167px {
  padding-top: 167px;
  padding-bottom: 167px;
}

.px-167px {
  padding-left: 167px;
  padding-right: 167px;
}

.pi-167px {
  padding: 167px !important;
}

.pti-167px {
  padding-top: 167px !important;
}

.pbi-167px {
  padding-bottom: 167px !important;
}

.pli-167px {
  padding-left: 167px !important;
}

.pri-167px {
  padding-right: 167px !important;
}

.pyi-167px {
  padding-top: 167px !important;
  padding-bottom: 167px !important;
}

.pxi-167px {
  padding-left: 167px !important;
  padding-right: 167px !important;
}

tr.p-167px > td {
  padding: 167px;
}

tr.pt-167px > td {
  padding-top: 167px;
}

tr.pb-167px > td {
  padding-bottom: 167px;
}

tr.pl-167px > td {
  padding-left: 167px;
}

tr.pr-167px > td {
  padding-right: 167px;
}

tr.py-167px > td {
  padding-top: 167px;
  padding-bottom: 167px;
}

tr.px-167px > td {
  padding-left: 167px;
  padding-right: 167px;
}

tr.pi-167px > td {
  padding: 167px !important;
}

tr.pti-167px > td {
  padding-top: 167px !important;
}

tr.pbi-167px > td {
  padding-bottom: 167px !important;
}

tr.pli-167px > td {
  padding-left: 167px !important;
}

tr.pri-167px > td {
  padding-right: 167px !important;
}

tr.pyi-167px > td {
  padding-top: 167px !important;
  padding-bottom: 167px !important;
}

tr.pxi-167px > td {
  padding-left: 167px !important;
  padding-right: 167px !important;
}

tr.pxi-167px > td {
  padding-left: 167px !important;
  padding-right: 167px !important;
}

.m-168px {
  margin: 168px;
}

.mt-168px {
  margin-top: 168px;
}

.mb-168px {
  margin-bottom: 168px;
}

.ml-168px {
  margin-left: 168px;
}

.mr-168px {
  margin-right: 168px;
}

.mt--168px {
  margin-top: -168px;
}

.mb--168px {
  margin-bottom: -168px;
}

.ml--168px {
  margin-left: -168px;
}

.mr--168px {
  margin-right: -168px;
}

.my-168px {
  margin-top: 168px;
  margin-bottom: 168px;
}

.mx-168px {
  margin-left: 168px;
  margin-right: 168px;
}

.mi-168px {
  margin: 168px !important;
}

.mti-168px {
  margin-top: 168px !important;
}

.mbi-168px {
  margin-bottom: 168px !important;
}

.mli-168px {
  margin-left: 168px !important;
}

.mri-168px {
  margin-right: 168px !important;
}

.mti--168px {
  margin-top: -168px !important;
}

.mbi--168px {
  margin-bottom: -168px !important;
}

.mli--168px {
  margin-left: -168px !important;
}

.mri--168px {
  margin-right: -168px !important;
}

.myi-168px {
  margin-top: 168px !important;
  margin-bottom: 168px !important;
}

.mxi-168px {
  margin-left: 168px !important;
  margin-right: 168px !important;
}

.p-168px {
  padding: 168px;
}

.pt-168px {
  padding-top: 168px;
}

.pb-168px {
  padding-bottom: 168px;
}

.pl-168px {
  padding-left: 168px;
}

.pr-168px {
  padding-right: 168px;
}

.py-168px {
  padding-top: 168px;
  padding-bottom: 168px;
}

.px-168px {
  padding-left: 168px;
  padding-right: 168px;
}

.pi-168px {
  padding: 168px !important;
}

.pti-168px {
  padding-top: 168px !important;
}

.pbi-168px {
  padding-bottom: 168px !important;
}

.pli-168px {
  padding-left: 168px !important;
}

.pri-168px {
  padding-right: 168px !important;
}

.pyi-168px {
  padding-top: 168px !important;
  padding-bottom: 168px !important;
}

.pxi-168px {
  padding-left: 168px !important;
  padding-right: 168px !important;
}

tr.p-168px > td {
  padding: 168px;
}

tr.pt-168px > td {
  padding-top: 168px;
}

tr.pb-168px > td {
  padding-bottom: 168px;
}

tr.pl-168px > td {
  padding-left: 168px;
}

tr.pr-168px > td {
  padding-right: 168px;
}

tr.py-168px > td {
  padding-top: 168px;
  padding-bottom: 168px;
}

tr.px-168px > td {
  padding-left: 168px;
  padding-right: 168px;
}

tr.pi-168px > td {
  padding: 168px !important;
}

tr.pti-168px > td {
  padding-top: 168px !important;
}

tr.pbi-168px > td {
  padding-bottom: 168px !important;
}

tr.pli-168px > td {
  padding-left: 168px !important;
}

tr.pri-168px > td {
  padding-right: 168px !important;
}

tr.pyi-168px > td {
  padding-top: 168px !important;
  padding-bottom: 168px !important;
}

tr.pxi-168px > td {
  padding-left: 168px !important;
  padding-right: 168px !important;
}

tr.pxi-168px > td {
  padding-left: 168px !important;
  padding-right: 168px !important;
}

.m-169px {
  margin: 169px;
}

.mt-169px {
  margin-top: 169px;
}

.mb-169px {
  margin-bottom: 169px;
}

.ml-169px {
  margin-left: 169px;
}

.mr-169px {
  margin-right: 169px;
}

.mt--169px {
  margin-top: -169px;
}

.mb--169px {
  margin-bottom: -169px;
}

.ml--169px {
  margin-left: -169px;
}

.mr--169px {
  margin-right: -169px;
}

.my-169px {
  margin-top: 169px;
  margin-bottom: 169px;
}

.mx-169px {
  margin-left: 169px;
  margin-right: 169px;
}

.mi-169px {
  margin: 169px !important;
}

.mti-169px {
  margin-top: 169px !important;
}

.mbi-169px {
  margin-bottom: 169px !important;
}

.mli-169px {
  margin-left: 169px !important;
}

.mri-169px {
  margin-right: 169px !important;
}

.mti--169px {
  margin-top: -169px !important;
}

.mbi--169px {
  margin-bottom: -169px !important;
}

.mli--169px {
  margin-left: -169px !important;
}

.mri--169px {
  margin-right: -169px !important;
}

.myi-169px {
  margin-top: 169px !important;
  margin-bottom: 169px !important;
}

.mxi-169px {
  margin-left: 169px !important;
  margin-right: 169px !important;
}

.p-169px {
  padding: 169px;
}

.pt-169px {
  padding-top: 169px;
}

.pb-169px {
  padding-bottom: 169px;
}

.pl-169px {
  padding-left: 169px;
}

.pr-169px {
  padding-right: 169px;
}

.py-169px {
  padding-top: 169px;
  padding-bottom: 169px;
}

.px-169px {
  padding-left: 169px;
  padding-right: 169px;
}

.pi-169px {
  padding: 169px !important;
}

.pti-169px {
  padding-top: 169px !important;
}

.pbi-169px {
  padding-bottom: 169px !important;
}

.pli-169px {
  padding-left: 169px !important;
}

.pri-169px {
  padding-right: 169px !important;
}

.pyi-169px {
  padding-top: 169px !important;
  padding-bottom: 169px !important;
}

.pxi-169px {
  padding-left: 169px !important;
  padding-right: 169px !important;
}

tr.p-169px > td {
  padding: 169px;
}

tr.pt-169px > td {
  padding-top: 169px;
}

tr.pb-169px > td {
  padding-bottom: 169px;
}

tr.pl-169px > td {
  padding-left: 169px;
}

tr.pr-169px > td {
  padding-right: 169px;
}

tr.py-169px > td {
  padding-top: 169px;
  padding-bottom: 169px;
}

tr.px-169px > td {
  padding-left: 169px;
  padding-right: 169px;
}

tr.pi-169px > td {
  padding: 169px !important;
}

tr.pti-169px > td {
  padding-top: 169px !important;
}

tr.pbi-169px > td {
  padding-bottom: 169px !important;
}

tr.pli-169px > td {
  padding-left: 169px !important;
}

tr.pri-169px > td {
  padding-right: 169px !important;
}

tr.pyi-169px > td {
  padding-top: 169px !important;
  padding-bottom: 169px !important;
}

tr.pxi-169px > td {
  padding-left: 169px !important;
  padding-right: 169px !important;
}

tr.pxi-169px > td {
  padding-left: 169px !important;
  padding-right: 169px !important;
}

.m-170px {
  margin: 170px;
}

.mt-170px {
  margin-top: 170px;
}

.mb-170px {
  margin-bottom: 170px;
}

.ml-170px {
  margin-left: 170px;
}

.mr-170px {
  margin-right: 170px;
}

.mt--170px {
  margin-top: -170px;
}

.mb--170px {
  margin-bottom: -170px;
}

.ml--170px {
  margin-left: -170px;
}

.mr--170px {
  margin-right: -170px;
}

.my-170px {
  margin-top: 170px;
  margin-bottom: 170px;
}

.mx-170px {
  margin-left: 170px;
  margin-right: 170px;
}

.mi-170px {
  margin: 170px !important;
}

.mti-170px {
  margin-top: 170px !important;
}

.mbi-170px {
  margin-bottom: 170px !important;
}

.mli-170px {
  margin-left: 170px !important;
}

.mri-170px {
  margin-right: 170px !important;
}

.mti--170px {
  margin-top: -170px !important;
}

.mbi--170px {
  margin-bottom: -170px !important;
}

.mli--170px {
  margin-left: -170px !important;
}

.mri--170px {
  margin-right: -170px !important;
}

.myi-170px {
  margin-top: 170px !important;
  margin-bottom: 170px !important;
}

.mxi-170px {
  margin-left: 170px !important;
  margin-right: 170px !important;
}

.p-170px {
  padding: 170px;
}

.pt-170px {
  padding-top: 170px;
}

.pb-170px {
  padding-bottom: 170px;
}

.pl-170px {
  padding-left: 170px;
}

.pr-170px {
  padding-right: 170px;
}

.py-170px {
  padding-top: 170px;
  padding-bottom: 170px;
}

.px-170px {
  padding-left: 170px;
  padding-right: 170px;
}

.pi-170px {
  padding: 170px !important;
}

.pti-170px {
  padding-top: 170px !important;
}

.pbi-170px {
  padding-bottom: 170px !important;
}

.pli-170px {
  padding-left: 170px !important;
}

.pri-170px {
  padding-right: 170px !important;
}

.pyi-170px {
  padding-top: 170px !important;
  padding-bottom: 170px !important;
}

.pxi-170px {
  padding-left: 170px !important;
  padding-right: 170px !important;
}

tr.p-170px > td {
  padding: 170px;
}

tr.pt-170px > td {
  padding-top: 170px;
}

tr.pb-170px > td {
  padding-bottom: 170px;
}

tr.pl-170px > td {
  padding-left: 170px;
}

tr.pr-170px > td {
  padding-right: 170px;
}

tr.py-170px > td {
  padding-top: 170px;
  padding-bottom: 170px;
}

tr.px-170px > td {
  padding-left: 170px;
  padding-right: 170px;
}

tr.pi-170px > td {
  padding: 170px !important;
}

tr.pti-170px > td {
  padding-top: 170px !important;
}

tr.pbi-170px > td {
  padding-bottom: 170px !important;
}

tr.pli-170px > td {
  padding-left: 170px !important;
}

tr.pri-170px > td {
  padding-right: 170px !important;
}

tr.pyi-170px > td {
  padding-top: 170px !important;
  padding-bottom: 170px !important;
}

tr.pxi-170px > td {
  padding-left: 170px !important;
  padding-right: 170px !important;
}

tr.pxi-170px > td {
  padding-left: 170px !important;
  padding-right: 170px !important;
}

.m-171px {
  margin: 171px;
}

.mt-171px {
  margin-top: 171px;
}

.mb-171px {
  margin-bottom: 171px;
}

.ml-171px {
  margin-left: 171px;
}

.mr-171px {
  margin-right: 171px;
}

.mt--171px {
  margin-top: -171px;
}

.mb--171px {
  margin-bottom: -171px;
}

.ml--171px {
  margin-left: -171px;
}

.mr--171px {
  margin-right: -171px;
}

.my-171px {
  margin-top: 171px;
  margin-bottom: 171px;
}

.mx-171px {
  margin-left: 171px;
  margin-right: 171px;
}

.mi-171px {
  margin: 171px !important;
}

.mti-171px {
  margin-top: 171px !important;
}

.mbi-171px {
  margin-bottom: 171px !important;
}

.mli-171px {
  margin-left: 171px !important;
}

.mri-171px {
  margin-right: 171px !important;
}

.mti--171px {
  margin-top: -171px !important;
}

.mbi--171px {
  margin-bottom: -171px !important;
}

.mli--171px {
  margin-left: -171px !important;
}

.mri--171px {
  margin-right: -171px !important;
}

.myi-171px {
  margin-top: 171px !important;
  margin-bottom: 171px !important;
}

.mxi-171px {
  margin-left: 171px !important;
  margin-right: 171px !important;
}

.p-171px {
  padding: 171px;
}

.pt-171px {
  padding-top: 171px;
}

.pb-171px {
  padding-bottom: 171px;
}

.pl-171px {
  padding-left: 171px;
}

.pr-171px {
  padding-right: 171px;
}

.py-171px {
  padding-top: 171px;
  padding-bottom: 171px;
}

.px-171px {
  padding-left: 171px;
  padding-right: 171px;
}

.pi-171px {
  padding: 171px !important;
}

.pti-171px {
  padding-top: 171px !important;
}

.pbi-171px {
  padding-bottom: 171px !important;
}

.pli-171px {
  padding-left: 171px !important;
}

.pri-171px {
  padding-right: 171px !important;
}

.pyi-171px {
  padding-top: 171px !important;
  padding-bottom: 171px !important;
}

.pxi-171px {
  padding-left: 171px !important;
  padding-right: 171px !important;
}

tr.p-171px > td {
  padding: 171px;
}

tr.pt-171px > td {
  padding-top: 171px;
}

tr.pb-171px > td {
  padding-bottom: 171px;
}

tr.pl-171px > td {
  padding-left: 171px;
}

tr.pr-171px > td {
  padding-right: 171px;
}

tr.py-171px > td {
  padding-top: 171px;
  padding-bottom: 171px;
}

tr.px-171px > td {
  padding-left: 171px;
  padding-right: 171px;
}

tr.pi-171px > td {
  padding: 171px !important;
}

tr.pti-171px > td {
  padding-top: 171px !important;
}

tr.pbi-171px > td {
  padding-bottom: 171px !important;
}

tr.pli-171px > td {
  padding-left: 171px !important;
}

tr.pri-171px > td {
  padding-right: 171px !important;
}

tr.pyi-171px > td {
  padding-top: 171px !important;
  padding-bottom: 171px !important;
}

tr.pxi-171px > td {
  padding-left: 171px !important;
  padding-right: 171px !important;
}

tr.pxi-171px > td {
  padding-left: 171px !important;
  padding-right: 171px !important;
}

.m-172px {
  margin: 172px;
}

.mt-172px {
  margin-top: 172px;
}

.mb-172px {
  margin-bottom: 172px;
}

.ml-172px {
  margin-left: 172px;
}

.mr-172px {
  margin-right: 172px;
}

.mt--172px {
  margin-top: -172px;
}

.mb--172px {
  margin-bottom: -172px;
}

.ml--172px {
  margin-left: -172px;
}

.mr--172px {
  margin-right: -172px;
}

.my-172px {
  margin-top: 172px;
  margin-bottom: 172px;
}

.mx-172px {
  margin-left: 172px;
  margin-right: 172px;
}

.mi-172px {
  margin: 172px !important;
}

.mti-172px {
  margin-top: 172px !important;
}

.mbi-172px {
  margin-bottom: 172px !important;
}

.mli-172px {
  margin-left: 172px !important;
}

.mri-172px {
  margin-right: 172px !important;
}

.mti--172px {
  margin-top: -172px !important;
}

.mbi--172px {
  margin-bottom: -172px !important;
}

.mli--172px {
  margin-left: -172px !important;
}

.mri--172px {
  margin-right: -172px !important;
}

.myi-172px {
  margin-top: 172px !important;
  margin-bottom: 172px !important;
}

.mxi-172px {
  margin-left: 172px !important;
  margin-right: 172px !important;
}

.p-172px {
  padding: 172px;
}

.pt-172px {
  padding-top: 172px;
}

.pb-172px {
  padding-bottom: 172px;
}

.pl-172px {
  padding-left: 172px;
}

.pr-172px {
  padding-right: 172px;
}

.py-172px {
  padding-top: 172px;
  padding-bottom: 172px;
}

.px-172px {
  padding-left: 172px;
  padding-right: 172px;
}

.pi-172px {
  padding: 172px !important;
}

.pti-172px {
  padding-top: 172px !important;
}

.pbi-172px {
  padding-bottom: 172px !important;
}

.pli-172px {
  padding-left: 172px !important;
}

.pri-172px {
  padding-right: 172px !important;
}

.pyi-172px {
  padding-top: 172px !important;
  padding-bottom: 172px !important;
}

.pxi-172px {
  padding-left: 172px !important;
  padding-right: 172px !important;
}

tr.p-172px > td {
  padding: 172px;
}

tr.pt-172px > td {
  padding-top: 172px;
}

tr.pb-172px > td {
  padding-bottom: 172px;
}

tr.pl-172px > td {
  padding-left: 172px;
}

tr.pr-172px > td {
  padding-right: 172px;
}

tr.py-172px > td {
  padding-top: 172px;
  padding-bottom: 172px;
}

tr.px-172px > td {
  padding-left: 172px;
  padding-right: 172px;
}

tr.pi-172px > td {
  padding: 172px !important;
}

tr.pti-172px > td {
  padding-top: 172px !important;
}

tr.pbi-172px > td {
  padding-bottom: 172px !important;
}

tr.pli-172px > td {
  padding-left: 172px !important;
}

tr.pri-172px > td {
  padding-right: 172px !important;
}

tr.pyi-172px > td {
  padding-top: 172px !important;
  padding-bottom: 172px !important;
}

tr.pxi-172px > td {
  padding-left: 172px !important;
  padding-right: 172px !important;
}

tr.pxi-172px > td {
  padding-left: 172px !important;
  padding-right: 172px !important;
}

.m-173px {
  margin: 173px;
}

.mt-173px {
  margin-top: 173px;
}

.mb-173px {
  margin-bottom: 173px;
}

.ml-173px {
  margin-left: 173px;
}

.mr-173px {
  margin-right: 173px;
}

.mt--173px {
  margin-top: -173px;
}

.mb--173px {
  margin-bottom: -173px;
}

.ml--173px {
  margin-left: -173px;
}

.mr--173px {
  margin-right: -173px;
}

.my-173px {
  margin-top: 173px;
  margin-bottom: 173px;
}

.mx-173px {
  margin-left: 173px;
  margin-right: 173px;
}

.mi-173px {
  margin: 173px !important;
}

.mti-173px {
  margin-top: 173px !important;
}

.mbi-173px {
  margin-bottom: 173px !important;
}

.mli-173px {
  margin-left: 173px !important;
}

.mri-173px {
  margin-right: 173px !important;
}

.mti--173px {
  margin-top: -173px !important;
}

.mbi--173px {
  margin-bottom: -173px !important;
}

.mli--173px {
  margin-left: -173px !important;
}

.mri--173px {
  margin-right: -173px !important;
}

.myi-173px {
  margin-top: 173px !important;
  margin-bottom: 173px !important;
}

.mxi-173px {
  margin-left: 173px !important;
  margin-right: 173px !important;
}

.p-173px {
  padding: 173px;
}

.pt-173px {
  padding-top: 173px;
}

.pb-173px {
  padding-bottom: 173px;
}

.pl-173px {
  padding-left: 173px;
}

.pr-173px {
  padding-right: 173px;
}

.py-173px {
  padding-top: 173px;
  padding-bottom: 173px;
}

.px-173px {
  padding-left: 173px;
  padding-right: 173px;
}

.pi-173px {
  padding: 173px !important;
}

.pti-173px {
  padding-top: 173px !important;
}

.pbi-173px {
  padding-bottom: 173px !important;
}

.pli-173px {
  padding-left: 173px !important;
}

.pri-173px {
  padding-right: 173px !important;
}

.pyi-173px {
  padding-top: 173px !important;
  padding-bottom: 173px !important;
}

.pxi-173px {
  padding-left: 173px !important;
  padding-right: 173px !important;
}

tr.p-173px > td {
  padding: 173px;
}

tr.pt-173px > td {
  padding-top: 173px;
}

tr.pb-173px > td {
  padding-bottom: 173px;
}

tr.pl-173px > td {
  padding-left: 173px;
}

tr.pr-173px > td {
  padding-right: 173px;
}

tr.py-173px > td {
  padding-top: 173px;
  padding-bottom: 173px;
}

tr.px-173px > td {
  padding-left: 173px;
  padding-right: 173px;
}

tr.pi-173px > td {
  padding: 173px !important;
}

tr.pti-173px > td {
  padding-top: 173px !important;
}

tr.pbi-173px > td {
  padding-bottom: 173px !important;
}

tr.pli-173px > td {
  padding-left: 173px !important;
}

tr.pri-173px > td {
  padding-right: 173px !important;
}

tr.pyi-173px > td {
  padding-top: 173px !important;
  padding-bottom: 173px !important;
}

tr.pxi-173px > td {
  padding-left: 173px !important;
  padding-right: 173px !important;
}

tr.pxi-173px > td {
  padding-left: 173px !important;
  padding-right: 173px !important;
}

.m-174px {
  margin: 174px;
}

.mt-174px {
  margin-top: 174px;
}

.mb-174px {
  margin-bottom: 174px;
}

.ml-174px {
  margin-left: 174px;
}

.mr-174px {
  margin-right: 174px;
}

.mt--174px {
  margin-top: -174px;
}

.mb--174px {
  margin-bottom: -174px;
}

.ml--174px {
  margin-left: -174px;
}

.mr--174px {
  margin-right: -174px;
}

.my-174px {
  margin-top: 174px;
  margin-bottom: 174px;
}

.mx-174px {
  margin-left: 174px;
  margin-right: 174px;
}

.mi-174px {
  margin: 174px !important;
}

.mti-174px {
  margin-top: 174px !important;
}

.mbi-174px {
  margin-bottom: 174px !important;
}

.mli-174px {
  margin-left: 174px !important;
}

.mri-174px {
  margin-right: 174px !important;
}

.mti--174px {
  margin-top: -174px !important;
}

.mbi--174px {
  margin-bottom: -174px !important;
}

.mli--174px {
  margin-left: -174px !important;
}

.mri--174px {
  margin-right: -174px !important;
}

.myi-174px {
  margin-top: 174px !important;
  margin-bottom: 174px !important;
}

.mxi-174px {
  margin-left: 174px !important;
  margin-right: 174px !important;
}

.p-174px {
  padding: 174px;
}

.pt-174px {
  padding-top: 174px;
}

.pb-174px {
  padding-bottom: 174px;
}

.pl-174px {
  padding-left: 174px;
}

.pr-174px {
  padding-right: 174px;
}

.py-174px {
  padding-top: 174px;
  padding-bottom: 174px;
}

.px-174px {
  padding-left: 174px;
  padding-right: 174px;
}

.pi-174px {
  padding: 174px !important;
}

.pti-174px {
  padding-top: 174px !important;
}

.pbi-174px {
  padding-bottom: 174px !important;
}

.pli-174px {
  padding-left: 174px !important;
}

.pri-174px {
  padding-right: 174px !important;
}

.pyi-174px {
  padding-top: 174px !important;
  padding-bottom: 174px !important;
}

.pxi-174px {
  padding-left: 174px !important;
  padding-right: 174px !important;
}

tr.p-174px > td {
  padding: 174px;
}

tr.pt-174px > td {
  padding-top: 174px;
}

tr.pb-174px > td {
  padding-bottom: 174px;
}

tr.pl-174px > td {
  padding-left: 174px;
}

tr.pr-174px > td {
  padding-right: 174px;
}

tr.py-174px > td {
  padding-top: 174px;
  padding-bottom: 174px;
}

tr.px-174px > td {
  padding-left: 174px;
  padding-right: 174px;
}

tr.pi-174px > td {
  padding: 174px !important;
}

tr.pti-174px > td {
  padding-top: 174px !important;
}

tr.pbi-174px > td {
  padding-bottom: 174px !important;
}

tr.pli-174px > td {
  padding-left: 174px !important;
}

tr.pri-174px > td {
  padding-right: 174px !important;
}

tr.pyi-174px > td {
  padding-top: 174px !important;
  padding-bottom: 174px !important;
}

tr.pxi-174px > td {
  padding-left: 174px !important;
  padding-right: 174px !important;
}

tr.pxi-174px > td {
  padding-left: 174px !important;
  padding-right: 174px !important;
}

.m-175px {
  margin: 175px;
}

.mt-175px {
  margin-top: 175px;
}

.mb-175px {
  margin-bottom: 175px;
}

.ml-175px {
  margin-left: 175px;
}

.mr-175px {
  margin-right: 175px;
}

.mt--175px {
  margin-top: -175px;
}

.mb--175px {
  margin-bottom: -175px;
}

.ml--175px {
  margin-left: -175px;
}

.mr--175px {
  margin-right: -175px;
}

.my-175px {
  margin-top: 175px;
  margin-bottom: 175px;
}

.mx-175px {
  margin-left: 175px;
  margin-right: 175px;
}

.mi-175px {
  margin: 175px !important;
}

.mti-175px {
  margin-top: 175px !important;
}

.mbi-175px {
  margin-bottom: 175px !important;
}

.mli-175px {
  margin-left: 175px !important;
}

.mri-175px {
  margin-right: 175px !important;
}

.mti--175px {
  margin-top: -175px !important;
}

.mbi--175px {
  margin-bottom: -175px !important;
}

.mli--175px {
  margin-left: -175px !important;
}

.mri--175px {
  margin-right: -175px !important;
}

.myi-175px {
  margin-top: 175px !important;
  margin-bottom: 175px !important;
}

.mxi-175px {
  margin-left: 175px !important;
  margin-right: 175px !important;
}

.p-175px {
  padding: 175px;
}

.pt-175px {
  padding-top: 175px;
}

.pb-175px {
  padding-bottom: 175px;
}

.pl-175px {
  padding-left: 175px;
}

.pr-175px {
  padding-right: 175px;
}

.py-175px {
  padding-top: 175px;
  padding-bottom: 175px;
}

.px-175px {
  padding-left: 175px;
  padding-right: 175px;
}

.pi-175px {
  padding: 175px !important;
}

.pti-175px {
  padding-top: 175px !important;
}

.pbi-175px {
  padding-bottom: 175px !important;
}

.pli-175px {
  padding-left: 175px !important;
}

.pri-175px {
  padding-right: 175px !important;
}

.pyi-175px {
  padding-top: 175px !important;
  padding-bottom: 175px !important;
}

.pxi-175px {
  padding-left: 175px !important;
  padding-right: 175px !important;
}

tr.p-175px > td {
  padding: 175px;
}

tr.pt-175px > td {
  padding-top: 175px;
}

tr.pb-175px > td {
  padding-bottom: 175px;
}

tr.pl-175px > td {
  padding-left: 175px;
}

tr.pr-175px > td {
  padding-right: 175px;
}

tr.py-175px > td {
  padding-top: 175px;
  padding-bottom: 175px;
}

tr.px-175px > td {
  padding-left: 175px;
  padding-right: 175px;
}

tr.pi-175px > td {
  padding: 175px !important;
}

tr.pti-175px > td {
  padding-top: 175px !important;
}

tr.pbi-175px > td {
  padding-bottom: 175px !important;
}

tr.pli-175px > td {
  padding-left: 175px !important;
}

tr.pri-175px > td {
  padding-right: 175px !important;
}

tr.pyi-175px > td {
  padding-top: 175px !important;
  padding-bottom: 175px !important;
}

tr.pxi-175px > td {
  padding-left: 175px !important;
  padding-right: 175px !important;
}

tr.pxi-175px > td {
  padding-left: 175px !important;
  padding-right: 175px !important;
}

.m-176px {
  margin: 176px;
}

.mt-176px {
  margin-top: 176px;
}

.mb-176px {
  margin-bottom: 176px;
}

.ml-176px {
  margin-left: 176px;
}

.mr-176px {
  margin-right: 176px;
}

.mt--176px {
  margin-top: -176px;
}

.mb--176px {
  margin-bottom: -176px;
}

.ml--176px {
  margin-left: -176px;
}

.mr--176px {
  margin-right: -176px;
}

.my-176px {
  margin-top: 176px;
  margin-bottom: 176px;
}

.mx-176px {
  margin-left: 176px;
  margin-right: 176px;
}

.mi-176px {
  margin: 176px !important;
}

.mti-176px {
  margin-top: 176px !important;
}

.mbi-176px {
  margin-bottom: 176px !important;
}

.mli-176px {
  margin-left: 176px !important;
}

.mri-176px {
  margin-right: 176px !important;
}

.mti--176px {
  margin-top: -176px !important;
}

.mbi--176px {
  margin-bottom: -176px !important;
}

.mli--176px {
  margin-left: -176px !important;
}

.mri--176px {
  margin-right: -176px !important;
}

.myi-176px {
  margin-top: 176px !important;
  margin-bottom: 176px !important;
}

.mxi-176px {
  margin-left: 176px !important;
  margin-right: 176px !important;
}

.p-176px {
  padding: 176px;
}

.pt-176px {
  padding-top: 176px;
}

.pb-176px {
  padding-bottom: 176px;
}

.pl-176px {
  padding-left: 176px;
}

.pr-176px {
  padding-right: 176px;
}

.py-176px {
  padding-top: 176px;
  padding-bottom: 176px;
}

.px-176px {
  padding-left: 176px;
  padding-right: 176px;
}

.pi-176px {
  padding: 176px !important;
}

.pti-176px {
  padding-top: 176px !important;
}

.pbi-176px {
  padding-bottom: 176px !important;
}

.pli-176px {
  padding-left: 176px !important;
}

.pri-176px {
  padding-right: 176px !important;
}

.pyi-176px {
  padding-top: 176px !important;
  padding-bottom: 176px !important;
}

.pxi-176px {
  padding-left: 176px !important;
  padding-right: 176px !important;
}

tr.p-176px > td {
  padding: 176px;
}

tr.pt-176px > td {
  padding-top: 176px;
}

tr.pb-176px > td {
  padding-bottom: 176px;
}

tr.pl-176px > td {
  padding-left: 176px;
}

tr.pr-176px > td {
  padding-right: 176px;
}

tr.py-176px > td {
  padding-top: 176px;
  padding-bottom: 176px;
}

tr.px-176px > td {
  padding-left: 176px;
  padding-right: 176px;
}

tr.pi-176px > td {
  padding: 176px !important;
}

tr.pti-176px > td {
  padding-top: 176px !important;
}

tr.pbi-176px > td {
  padding-bottom: 176px !important;
}

tr.pli-176px > td {
  padding-left: 176px !important;
}

tr.pri-176px > td {
  padding-right: 176px !important;
}

tr.pyi-176px > td {
  padding-top: 176px !important;
  padding-bottom: 176px !important;
}

tr.pxi-176px > td {
  padding-left: 176px !important;
  padding-right: 176px !important;
}

tr.pxi-176px > td {
  padding-left: 176px !important;
  padding-right: 176px !important;
}

.m-177px {
  margin: 177px;
}

.mt-177px {
  margin-top: 177px;
}

.mb-177px {
  margin-bottom: 177px;
}

.ml-177px {
  margin-left: 177px;
}

.mr-177px {
  margin-right: 177px;
}

.mt--177px {
  margin-top: -177px;
}

.mb--177px {
  margin-bottom: -177px;
}

.ml--177px {
  margin-left: -177px;
}

.mr--177px {
  margin-right: -177px;
}

.my-177px {
  margin-top: 177px;
  margin-bottom: 177px;
}

.mx-177px {
  margin-left: 177px;
  margin-right: 177px;
}

.mi-177px {
  margin: 177px !important;
}

.mti-177px {
  margin-top: 177px !important;
}

.mbi-177px {
  margin-bottom: 177px !important;
}

.mli-177px {
  margin-left: 177px !important;
}

.mri-177px {
  margin-right: 177px !important;
}

.mti--177px {
  margin-top: -177px !important;
}

.mbi--177px {
  margin-bottom: -177px !important;
}

.mli--177px {
  margin-left: -177px !important;
}

.mri--177px {
  margin-right: -177px !important;
}

.myi-177px {
  margin-top: 177px !important;
  margin-bottom: 177px !important;
}

.mxi-177px {
  margin-left: 177px !important;
  margin-right: 177px !important;
}

.p-177px {
  padding: 177px;
}

.pt-177px {
  padding-top: 177px;
}

.pb-177px {
  padding-bottom: 177px;
}

.pl-177px {
  padding-left: 177px;
}

.pr-177px {
  padding-right: 177px;
}

.py-177px {
  padding-top: 177px;
  padding-bottom: 177px;
}

.px-177px {
  padding-left: 177px;
  padding-right: 177px;
}

.pi-177px {
  padding: 177px !important;
}

.pti-177px {
  padding-top: 177px !important;
}

.pbi-177px {
  padding-bottom: 177px !important;
}

.pli-177px {
  padding-left: 177px !important;
}

.pri-177px {
  padding-right: 177px !important;
}

.pyi-177px {
  padding-top: 177px !important;
  padding-bottom: 177px !important;
}

.pxi-177px {
  padding-left: 177px !important;
  padding-right: 177px !important;
}

tr.p-177px > td {
  padding: 177px;
}

tr.pt-177px > td {
  padding-top: 177px;
}

tr.pb-177px > td {
  padding-bottom: 177px;
}

tr.pl-177px > td {
  padding-left: 177px;
}

tr.pr-177px > td {
  padding-right: 177px;
}

tr.py-177px > td {
  padding-top: 177px;
  padding-bottom: 177px;
}

tr.px-177px > td {
  padding-left: 177px;
  padding-right: 177px;
}

tr.pi-177px > td {
  padding: 177px !important;
}

tr.pti-177px > td {
  padding-top: 177px !important;
}

tr.pbi-177px > td {
  padding-bottom: 177px !important;
}

tr.pli-177px > td {
  padding-left: 177px !important;
}

tr.pri-177px > td {
  padding-right: 177px !important;
}

tr.pyi-177px > td {
  padding-top: 177px !important;
  padding-bottom: 177px !important;
}

tr.pxi-177px > td {
  padding-left: 177px !important;
  padding-right: 177px !important;
}

tr.pxi-177px > td {
  padding-left: 177px !important;
  padding-right: 177px !important;
}

.m-178px {
  margin: 178px;
}

.mt-178px {
  margin-top: 178px;
}

.mb-178px {
  margin-bottom: 178px;
}

.ml-178px {
  margin-left: 178px;
}

.mr-178px {
  margin-right: 178px;
}

.mt--178px {
  margin-top: -178px;
}

.mb--178px {
  margin-bottom: -178px;
}

.ml--178px {
  margin-left: -178px;
}

.mr--178px {
  margin-right: -178px;
}

.my-178px {
  margin-top: 178px;
  margin-bottom: 178px;
}

.mx-178px {
  margin-left: 178px;
  margin-right: 178px;
}

.mi-178px {
  margin: 178px !important;
}

.mti-178px {
  margin-top: 178px !important;
}

.mbi-178px {
  margin-bottom: 178px !important;
}

.mli-178px {
  margin-left: 178px !important;
}

.mri-178px {
  margin-right: 178px !important;
}

.mti--178px {
  margin-top: -178px !important;
}

.mbi--178px {
  margin-bottom: -178px !important;
}

.mli--178px {
  margin-left: -178px !important;
}

.mri--178px {
  margin-right: -178px !important;
}

.myi-178px {
  margin-top: 178px !important;
  margin-bottom: 178px !important;
}

.mxi-178px {
  margin-left: 178px !important;
  margin-right: 178px !important;
}

.p-178px {
  padding: 178px;
}

.pt-178px {
  padding-top: 178px;
}

.pb-178px {
  padding-bottom: 178px;
}

.pl-178px {
  padding-left: 178px;
}

.pr-178px {
  padding-right: 178px;
}

.py-178px {
  padding-top: 178px;
  padding-bottom: 178px;
}

.px-178px {
  padding-left: 178px;
  padding-right: 178px;
}

.pi-178px {
  padding: 178px !important;
}

.pti-178px {
  padding-top: 178px !important;
}

.pbi-178px {
  padding-bottom: 178px !important;
}

.pli-178px {
  padding-left: 178px !important;
}

.pri-178px {
  padding-right: 178px !important;
}

.pyi-178px {
  padding-top: 178px !important;
  padding-bottom: 178px !important;
}

.pxi-178px {
  padding-left: 178px !important;
  padding-right: 178px !important;
}

tr.p-178px > td {
  padding: 178px;
}

tr.pt-178px > td {
  padding-top: 178px;
}

tr.pb-178px > td {
  padding-bottom: 178px;
}

tr.pl-178px > td {
  padding-left: 178px;
}

tr.pr-178px > td {
  padding-right: 178px;
}

tr.py-178px > td {
  padding-top: 178px;
  padding-bottom: 178px;
}

tr.px-178px > td {
  padding-left: 178px;
  padding-right: 178px;
}

tr.pi-178px > td {
  padding: 178px !important;
}

tr.pti-178px > td {
  padding-top: 178px !important;
}

tr.pbi-178px > td {
  padding-bottom: 178px !important;
}

tr.pli-178px > td {
  padding-left: 178px !important;
}

tr.pri-178px > td {
  padding-right: 178px !important;
}

tr.pyi-178px > td {
  padding-top: 178px !important;
  padding-bottom: 178px !important;
}

tr.pxi-178px > td {
  padding-left: 178px !important;
  padding-right: 178px !important;
}

tr.pxi-178px > td {
  padding-left: 178px !important;
  padding-right: 178px !important;
}

.m-179px {
  margin: 179px;
}

.mt-179px {
  margin-top: 179px;
}

.mb-179px {
  margin-bottom: 179px;
}

.ml-179px {
  margin-left: 179px;
}

.mr-179px {
  margin-right: 179px;
}

.mt--179px {
  margin-top: -179px;
}

.mb--179px {
  margin-bottom: -179px;
}

.ml--179px {
  margin-left: -179px;
}

.mr--179px {
  margin-right: -179px;
}

.my-179px {
  margin-top: 179px;
  margin-bottom: 179px;
}

.mx-179px {
  margin-left: 179px;
  margin-right: 179px;
}

.mi-179px {
  margin: 179px !important;
}

.mti-179px {
  margin-top: 179px !important;
}

.mbi-179px {
  margin-bottom: 179px !important;
}

.mli-179px {
  margin-left: 179px !important;
}

.mri-179px {
  margin-right: 179px !important;
}

.mti--179px {
  margin-top: -179px !important;
}

.mbi--179px {
  margin-bottom: -179px !important;
}

.mli--179px {
  margin-left: -179px !important;
}

.mri--179px {
  margin-right: -179px !important;
}

.myi-179px {
  margin-top: 179px !important;
  margin-bottom: 179px !important;
}

.mxi-179px {
  margin-left: 179px !important;
  margin-right: 179px !important;
}

.p-179px {
  padding: 179px;
}

.pt-179px {
  padding-top: 179px;
}

.pb-179px {
  padding-bottom: 179px;
}

.pl-179px {
  padding-left: 179px;
}

.pr-179px {
  padding-right: 179px;
}

.py-179px {
  padding-top: 179px;
  padding-bottom: 179px;
}

.px-179px {
  padding-left: 179px;
  padding-right: 179px;
}

.pi-179px {
  padding: 179px !important;
}

.pti-179px {
  padding-top: 179px !important;
}

.pbi-179px {
  padding-bottom: 179px !important;
}

.pli-179px {
  padding-left: 179px !important;
}

.pri-179px {
  padding-right: 179px !important;
}

.pyi-179px {
  padding-top: 179px !important;
  padding-bottom: 179px !important;
}

.pxi-179px {
  padding-left: 179px !important;
  padding-right: 179px !important;
}

tr.p-179px > td {
  padding: 179px;
}

tr.pt-179px > td {
  padding-top: 179px;
}

tr.pb-179px > td {
  padding-bottom: 179px;
}

tr.pl-179px > td {
  padding-left: 179px;
}

tr.pr-179px > td {
  padding-right: 179px;
}

tr.py-179px > td {
  padding-top: 179px;
  padding-bottom: 179px;
}

tr.px-179px > td {
  padding-left: 179px;
  padding-right: 179px;
}

tr.pi-179px > td {
  padding: 179px !important;
}

tr.pti-179px > td {
  padding-top: 179px !important;
}

tr.pbi-179px > td {
  padding-bottom: 179px !important;
}

tr.pli-179px > td {
  padding-left: 179px !important;
}

tr.pri-179px > td {
  padding-right: 179px !important;
}

tr.pyi-179px > td {
  padding-top: 179px !important;
  padding-bottom: 179px !important;
}

tr.pxi-179px > td {
  padding-left: 179px !important;
  padding-right: 179px !important;
}

tr.pxi-179px > td {
  padding-left: 179px !important;
  padding-right: 179px !important;
}

.m-180px {
  margin: 180px;
}

.mt-180px {
  margin-top: 180px;
}

.mb-180px {
  margin-bottom: 180px;
}

.ml-180px {
  margin-left: 180px;
}

.mr-180px {
  margin-right: 180px;
}

.mt--180px {
  margin-top: -180px;
}

.mb--180px {
  margin-bottom: -180px;
}

.ml--180px {
  margin-left: -180px;
}

.mr--180px {
  margin-right: -180px;
}

.my-180px {
  margin-top: 180px;
  margin-bottom: 180px;
}

.mx-180px {
  margin-left: 180px;
  margin-right: 180px;
}

.mi-180px {
  margin: 180px !important;
}

.mti-180px {
  margin-top: 180px !important;
}

.mbi-180px {
  margin-bottom: 180px !important;
}

.mli-180px {
  margin-left: 180px !important;
}

.mri-180px {
  margin-right: 180px !important;
}

.mti--180px {
  margin-top: -180px !important;
}

.mbi--180px {
  margin-bottom: -180px !important;
}

.mli--180px {
  margin-left: -180px !important;
}

.mri--180px {
  margin-right: -180px !important;
}

.myi-180px {
  margin-top: 180px !important;
  margin-bottom: 180px !important;
}

.mxi-180px {
  margin-left: 180px !important;
  margin-right: 180px !important;
}

.p-180px {
  padding: 180px;
}

.pt-180px {
  padding-top: 180px;
}

.pb-180px {
  padding-bottom: 180px;
}

.pl-180px {
  padding-left: 180px;
}

.pr-180px {
  padding-right: 180px;
}

.py-180px {
  padding-top: 180px;
  padding-bottom: 180px;
}

.px-180px {
  padding-left: 180px;
  padding-right: 180px;
}

.pi-180px {
  padding: 180px !important;
}

.pti-180px {
  padding-top: 180px !important;
}

.pbi-180px {
  padding-bottom: 180px !important;
}

.pli-180px {
  padding-left: 180px !important;
}

.pri-180px {
  padding-right: 180px !important;
}

.pyi-180px {
  padding-top: 180px !important;
  padding-bottom: 180px !important;
}

.pxi-180px {
  padding-left: 180px !important;
  padding-right: 180px !important;
}

tr.p-180px > td {
  padding: 180px;
}

tr.pt-180px > td {
  padding-top: 180px;
}

tr.pb-180px > td {
  padding-bottom: 180px;
}

tr.pl-180px > td {
  padding-left: 180px;
}

tr.pr-180px > td {
  padding-right: 180px;
}

tr.py-180px > td {
  padding-top: 180px;
  padding-bottom: 180px;
}

tr.px-180px > td {
  padding-left: 180px;
  padding-right: 180px;
}

tr.pi-180px > td {
  padding: 180px !important;
}

tr.pti-180px > td {
  padding-top: 180px !important;
}

tr.pbi-180px > td {
  padding-bottom: 180px !important;
}

tr.pli-180px > td {
  padding-left: 180px !important;
}

tr.pri-180px > td {
  padding-right: 180px !important;
}

tr.pyi-180px > td {
  padding-top: 180px !important;
  padding-bottom: 180px !important;
}

tr.pxi-180px > td {
  padding-left: 180px !important;
  padding-right: 180px !important;
}

tr.pxi-180px > td {
  padding-left: 180px !important;
  padding-right: 180px !important;
}

.m-181px {
  margin: 181px;
}

.mt-181px {
  margin-top: 181px;
}

.mb-181px {
  margin-bottom: 181px;
}

.ml-181px {
  margin-left: 181px;
}

.mr-181px {
  margin-right: 181px;
}

.mt--181px {
  margin-top: -181px;
}

.mb--181px {
  margin-bottom: -181px;
}

.ml--181px {
  margin-left: -181px;
}

.mr--181px {
  margin-right: -181px;
}

.my-181px {
  margin-top: 181px;
  margin-bottom: 181px;
}

.mx-181px {
  margin-left: 181px;
  margin-right: 181px;
}

.mi-181px {
  margin: 181px !important;
}

.mti-181px {
  margin-top: 181px !important;
}

.mbi-181px {
  margin-bottom: 181px !important;
}

.mli-181px {
  margin-left: 181px !important;
}

.mri-181px {
  margin-right: 181px !important;
}

.mti--181px {
  margin-top: -181px !important;
}

.mbi--181px {
  margin-bottom: -181px !important;
}

.mli--181px {
  margin-left: -181px !important;
}

.mri--181px {
  margin-right: -181px !important;
}

.myi-181px {
  margin-top: 181px !important;
  margin-bottom: 181px !important;
}

.mxi-181px {
  margin-left: 181px !important;
  margin-right: 181px !important;
}

.p-181px {
  padding: 181px;
}

.pt-181px {
  padding-top: 181px;
}

.pb-181px {
  padding-bottom: 181px;
}

.pl-181px {
  padding-left: 181px;
}

.pr-181px {
  padding-right: 181px;
}

.py-181px {
  padding-top: 181px;
  padding-bottom: 181px;
}

.px-181px {
  padding-left: 181px;
  padding-right: 181px;
}

.pi-181px {
  padding: 181px !important;
}

.pti-181px {
  padding-top: 181px !important;
}

.pbi-181px {
  padding-bottom: 181px !important;
}

.pli-181px {
  padding-left: 181px !important;
}

.pri-181px {
  padding-right: 181px !important;
}

.pyi-181px {
  padding-top: 181px !important;
  padding-bottom: 181px !important;
}

.pxi-181px {
  padding-left: 181px !important;
  padding-right: 181px !important;
}

tr.p-181px > td {
  padding: 181px;
}

tr.pt-181px > td {
  padding-top: 181px;
}

tr.pb-181px > td {
  padding-bottom: 181px;
}

tr.pl-181px > td {
  padding-left: 181px;
}

tr.pr-181px > td {
  padding-right: 181px;
}

tr.py-181px > td {
  padding-top: 181px;
  padding-bottom: 181px;
}

tr.px-181px > td {
  padding-left: 181px;
  padding-right: 181px;
}

tr.pi-181px > td {
  padding: 181px !important;
}

tr.pti-181px > td {
  padding-top: 181px !important;
}

tr.pbi-181px > td {
  padding-bottom: 181px !important;
}

tr.pli-181px > td {
  padding-left: 181px !important;
}

tr.pri-181px > td {
  padding-right: 181px !important;
}

tr.pyi-181px > td {
  padding-top: 181px !important;
  padding-bottom: 181px !important;
}

tr.pxi-181px > td {
  padding-left: 181px !important;
  padding-right: 181px !important;
}

tr.pxi-181px > td {
  padding-left: 181px !important;
  padding-right: 181px !important;
}

.m-182px {
  margin: 182px;
}

.mt-182px {
  margin-top: 182px;
}

.mb-182px {
  margin-bottom: 182px;
}

.ml-182px {
  margin-left: 182px;
}

.mr-182px {
  margin-right: 182px;
}

.mt--182px {
  margin-top: -182px;
}

.mb--182px {
  margin-bottom: -182px;
}

.ml--182px {
  margin-left: -182px;
}

.mr--182px {
  margin-right: -182px;
}

.my-182px {
  margin-top: 182px;
  margin-bottom: 182px;
}

.mx-182px {
  margin-left: 182px;
  margin-right: 182px;
}

.mi-182px {
  margin: 182px !important;
}

.mti-182px {
  margin-top: 182px !important;
}

.mbi-182px {
  margin-bottom: 182px !important;
}

.mli-182px {
  margin-left: 182px !important;
}

.mri-182px {
  margin-right: 182px !important;
}

.mti--182px {
  margin-top: -182px !important;
}

.mbi--182px {
  margin-bottom: -182px !important;
}

.mli--182px {
  margin-left: -182px !important;
}

.mri--182px {
  margin-right: -182px !important;
}

.myi-182px {
  margin-top: 182px !important;
  margin-bottom: 182px !important;
}

.mxi-182px {
  margin-left: 182px !important;
  margin-right: 182px !important;
}

.p-182px {
  padding: 182px;
}

.pt-182px {
  padding-top: 182px;
}

.pb-182px {
  padding-bottom: 182px;
}

.pl-182px {
  padding-left: 182px;
}

.pr-182px {
  padding-right: 182px;
}

.py-182px {
  padding-top: 182px;
  padding-bottom: 182px;
}

.px-182px {
  padding-left: 182px;
  padding-right: 182px;
}

.pi-182px {
  padding: 182px !important;
}

.pti-182px {
  padding-top: 182px !important;
}

.pbi-182px {
  padding-bottom: 182px !important;
}

.pli-182px {
  padding-left: 182px !important;
}

.pri-182px {
  padding-right: 182px !important;
}

.pyi-182px {
  padding-top: 182px !important;
  padding-bottom: 182px !important;
}

.pxi-182px {
  padding-left: 182px !important;
  padding-right: 182px !important;
}

tr.p-182px > td {
  padding: 182px;
}

tr.pt-182px > td {
  padding-top: 182px;
}

tr.pb-182px > td {
  padding-bottom: 182px;
}

tr.pl-182px > td {
  padding-left: 182px;
}

tr.pr-182px > td {
  padding-right: 182px;
}

tr.py-182px > td {
  padding-top: 182px;
  padding-bottom: 182px;
}

tr.px-182px > td {
  padding-left: 182px;
  padding-right: 182px;
}

tr.pi-182px > td {
  padding: 182px !important;
}

tr.pti-182px > td {
  padding-top: 182px !important;
}

tr.pbi-182px > td {
  padding-bottom: 182px !important;
}

tr.pli-182px > td {
  padding-left: 182px !important;
}

tr.pri-182px > td {
  padding-right: 182px !important;
}

tr.pyi-182px > td {
  padding-top: 182px !important;
  padding-bottom: 182px !important;
}

tr.pxi-182px > td {
  padding-left: 182px !important;
  padding-right: 182px !important;
}

tr.pxi-182px > td {
  padding-left: 182px !important;
  padding-right: 182px !important;
}

.m-183px {
  margin: 183px;
}

.mt-183px {
  margin-top: 183px;
}

.mb-183px {
  margin-bottom: 183px;
}

.ml-183px {
  margin-left: 183px;
}

.mr-183px {
  margin-right: 183px;
}

.mt--183px {
  margin-top: -183px;
}

.mb--183px {
  margin-bottom: -183px;
}

.ml--183px {
  margin-left: -183px;
}

.mr--183px {
  margin-right: -183px;
}

.my-183px {
  margin-top: 183px;
  margin-bottom: 183px;
}

.mx-183px {
  margin-left: 183px;
  margin-right: 183px;
}

.mi-183px {
  margin: 183px !important;
}

.mti-183px {
  margin-top: 183px !important;
}

.mbi-183px {
  margin-bottom: 183px !important;
}

.mli-183px {
  margin-left: 183px !important;
}

.mri-183px {
  margin-right: 183px !important;
}

.mti--183px {
  margin-top: -183px !important;
}

.mbi--183px {
  margin-bottom: -183px !important;
}

.mli--183px {
  margin-left: -183px !important;
}

.mri--183px {
  margin-right: -183px !important;
}

.myi-183px {
  margin-top: 183px !important;
  margin-bottom: 183px !important;
}

.mxi-183px {
  margin-left: 183px !important;
  margin-right: 183px !important;
}

.p-183px {
  padding: 183px;
}

.pt-183px {
  padding-top: 183px;
}

.pb-183px {
  padding-bottom: 183px;
}

.pl-183px {
  padding-left: 183px;
}

.pr-183px {
  padding-right: 183px;
}

.py-183px {
  padding-top: 183px;
  padding-bottom: 183px;
}

.px-183px {
  padding-left: 183px;
  padding-right: 183px;
}

.pi-183px {
  padding: 183px !important;
}

.pti-183px {
  padding-top: 183px !important;
}

.pbi-183px {
  padding-bottom: 183px !important;
}

.pli-183px {
  padding-left: 183px !important;
}

.pri-183px {
  padding-right: 183px !important;
}

.pyi-183px {
  padding-top: 183px !important;
  padding-bottom: 183px !important;
}

.pxi-183px {
  padding-left: 183px !important;
  padding-right: 183px !important;
}

tr.p-183px > td {
  padding: 183px;
}

tr.pt-183px > td {
  padding-top: 183px;
}

tr.pb-183px > td {
  padding-bottom: 183px;
}

tr.pl-183px > td {
  padding-left: 183px;
}

tr.pr-183px > td {
  padding-right: 183px;
}

tr.py-183px > td {
  padding-top: 183px;
  padding-bottom: 183px;
}

tr.px-183px > td {
  padding-left: 183px;
  padding-right: 183px;
}

tr.pi-183px > td {
  padding: 183px !important;
}

tr.pti-183px > td {
  padding-top: 183px !important;
}

tr.pbi-183px > td {
  padding-bottom: 183px !important;
}

tr.pli-183px > td {
  padding-left: 183px !important;
}

tr.pri-183px > td {
  padding-right: 183px !important;
}

tr.pyi-183px > td {
  padding-top: 183px !important;
  padding-bottom: 183px !important;
}

tr.pxi-183px > td {
  padding-left: 183px !important;
  padding-right: 183px !important;
}

tr.pxi-183px > td {
  padding-left: 183px !important;
  padding-right: 183px !important;
}

.m-184px {
  margin: 184px;
}

.mt-184px {
  margin-top: 184px;
}

.mb-184px {
  margin-bottom: 184px;
}

.ml-184px {
  margin-left: 184px;
}

.mr-184px {
  margin-right: 184px;
}

.mt--184px {
  margin-top: -184px;
}

.mb--184px {
  margin-bottom: -184px;
}

.ml--184px {
  margin-left: -184px;
}

.mr--184px {
  margin-right: -184px;
}

.my-184px {
  margin-top: 184px;
  margin-bottom: 184px;
}

.mx-184px {
  margin-left: 184px;
  margin-right: 184px;
}

.mi-184px {
  margin: 184px !important;
}

.mti-184px {
  margin-top: 184px !important;
}

.mbi-184px {
  margin-bottom: 184px !important;
}

.mli-184px {
  margin-left: 184px !important;
}

.mri-184px {
  margin-right: 184px !important;
}

.mti--184px {
  margin-top: -184px !important;
}

.mbi--184px {
  margin-bottom: -184px !important;
}

.mli--184px {
  margin-left: -184px !important;
}

.mri--184px {
  margin-right: -184px !important;
}

.myi-184px {
  margin-top: 184px !important;
  margin-bottom: 184px !important;
}

.mxi-184px {
  margin-left: 184px !important;
  margin-right: 184px !important;
}

.p-184px {
  padding: 184px;
}

.pt-184px {
  padding-top: 184px;
}

.pb-184px {
  padding-bottom: 184px;
}

.pl-184px {
  padding-left: 184px;
}

.pr-184px {
  padding-right: 184px;
}

.py-184px {
  padding-top: 184px;
  padding-bottom: 184px;
}

.px-184px {
  padding-left: 184px;
  padding-right: 184px;
}

.pi-184px {
  padding: 184px !important;
}

.pti-184px {
  padding-top: 184px !important;
}

.pbi-184px {
  padding-bottom: 184px !important;
}

.pli-184px {
  padding-left: 184px !important;
}

.pri-184px {
  padding-right: 184px !important;
}

.pyi-184px {
  padding-top: 184px !important;
  padding-bottom: 184px !important;
}

.pxi-184px {
  padding-left: 184px !important;
  padding-right: 184px !important;
}

tr.p-184px > td {
  padding: 184px;
}

tr.pt-184px > td {
  padding-top: 184px;
}

tr.pb-184px > td {
  padding-bottom: 184px;
}

tr.pl-184px > td {
  padding-left: 184px;
}

tr.pr-184px > td {
  padding-right: 184px;
}

tr.py-184px > td {
  padding-top: 184px;
  padding-bottom: 184px;
}

tr.px-184px > td {
  padding-left: 184px;
  padding-right: 184px;
}

tr.pi-184px > td {
  padding: 184px !important;
}

tr.pti-184px > td {
  padding-top: 184px !important;
}

tr.pbi-184px > td {
  padding-bottom: 184px !important;
}

tr.pli-184px > td {
  padding-left: 184px !important;
}

tr.pri-184px > td {
  padding-right: 184px !important;
}

tr.pyi-184px > td {
  padding-top: 184px !important;
  padding-bottom: 184px !important;
}

tr.pxi-184px > td {
  padding-left: 184px !important;
  padding-right: 184px !important;
}

tr.pxi-184px > td {
  padding-left: 184px !important;
  padding-right: 184px !important;
}

.m-185px {
  margin: 185px;
}

.mt-185px {
  margin-top: 185px;
}

.mb-185px {
  margin-bottom: 185px;
}

.ml-185px {
  margin-left: 185px;
}

.mr-185px {
  margin-right: 185px;
}

.mt--185px {
  margin-top: -185px;
}

.mb--185px {
  margin-bottom: -185px;
}

.ml--185px {
  margin-left: -185px;
}

.mr--185px {
  margin-right: -185px;
}

.my-185px {
  margin-top: 185px;
  margin-bottom: 185px;
}

.mx-185px {
  margin-left: 185px;
  margin-right: 185px;
}

.mi-185px {
  margin: 185px !important;
}

.mti-185px {
  margin-top: 185px !important;
}

.mbi-185px {
  margin-bottom: 185px !important;
}

.mli-185px {
  margin-left: 185px !important;
}

.mri-185px {
  margin-right: 185px !important;
}

.mti--185px {
  margin-top: -185px !important;
}

.mbi--185px {
  margin-bottom: -185px !important;
}

.mli--185px {
  margin-left: -185px !important;
}

.mri--185px {
  margin-right: -185px !important;
}

.myi-185px {
  margin-top: 185px !important;
  margin-bottom: 185px !important;
}

.mxi-185px {
  margin-left: 185px !important;
  margin-right: 185px !important;
}

.p-185px {
  padding: 185px;
}

.pt-185px {
  padding-top: 185px;
}

.pb-185px {
  padding-bottom: 185px;
}

.pl-185px {
  padding-left: 185px;
}

.pr-185px {
  padding-right: 185px;
}

.py-185px {
  padding-top: 185px;
  padding-bottom: 185px;
}

.px-185px {
  padding-left: 185px;
  padding-right: 185px;
}

.pi-185px {
  padding: 185px !important;
}

.pti-185px {
  padding-top: 185px !important;
}

.pbi-185px {
  padding-bottom: 185px !important;
}

.pli-185px {
  padding-left: 185px !important;
}

.pri-185px {
  padding-right: 185px !important;
}

.pyi-185px {
  padding-top: 185px !important;
  padding-bottom: 185px !important;
}

.pxi-185px {
  padding-left: 185px !important;
  padding-right: 185px !important;
}

tr.p-185px > td {
  padding: 185px;
}

tr.pt-185px > td {
  padding-top: 185px;
}

tr.pb-185px > td {
  padding-bottom: 185px;
}

tr.pl-185px > td {
  padding-left: 185px;
}

tr.pr-185px > td {
  padding-right: 185px;
}

tr.py-185px > td {
  padding-top: 185px;
  padding-bottom: 185px;
}

tr.px-185px > td {
  padding-left: 185px;
  padding-right: 185px;
}

tr.pi-185px > td {
  padding: 185px !important;
}

tr.pti-185px > td {
  padding-top: 185px !important;
}

tr.pbi-185px > td {
  padding-bottom: 185px !important;
}

tr.pli-185px > td {
  padding-left: 185px !important;
}

tr.pri-185px > td {
  padding-right: 185px !important;
}

tr.pyi-185px > td {
  padding-top: 185px !important;
  padding-bottom: 185px !important;
}

tr.pxi-185px > td {
  padding-left: 185px !important;
  padding-right: 185px !important;
}

tr.pxi-185px > td {
  padding-left: 185px !important;
  padding-right: 185px !important;
}

.m-186px {
  margin: 186px;
}

.mt-186px {
  margin-top: 186px;
}

.mb-186px {
  margin-bottom: 186px;
}

.ml-186px {
  margin-left: 186px;
}

.mr-186px {
  margin-right: 186px;
}

.mt--186px {
  margin-top: -186px;
}

.mb--186px {
  margin-bottom: -186px;
}

.ml--186px {
  margin-left: -186px;
}

.mr--186px {
  margin-right: -186px;
}

.my-186px {
  margin-top: 186px;
  margin-bottom: 186px;
}

.mx-186px {
  margin-left: 186px;
  margin-right: 186px;
}

.mi-186px {
  margin: 186px !important;
}

.mti-186px {
  margin-top: 186px !important;
}

.mbi-186px {
  margin-bottom: 186px !important;
}

.mli-186px {
  margin-left: 186px !important;
}

.mri-186px {
  margin-right: 186px !important;
}

.mti--186px {
  margin-top: -186px !important;
}

.mbi--186px {
  margin-bottom: -186px !important;
}

.mli--186px {
  margin-left: -186px !important;
}

.mri--186px {
  margin-right: -186px !important;
}

.myi-186px {
  margin-top: 186px !important;
  margin-bottom: 186px !important;
}

.mxi-186px {
  margin-left: 186px !important;
  margin-right: 186px !important;
}

.p-186px {
  padding: 186px;
}

.pt-186px {
  padding-top: 186px;
}

.pb-186px {
  padding-bottom: 186px;
}

.pl-186px {
  padding-left: 186px;
}

.pr-186px {
  padding-right: 186px;
}

.py-186px {
  padding-top: 186px;
  padding-bottom: 186px;
}

.px-186px {
  padding-left: 186px;
  padding-right: 186px;
}

.pi-186px {
  padding: 186px !important;
}

.pti-186px {
  padding-top: 186px !important;
}

.pbi-186px {
  padding-bottom: 186px !important;
}

.pli-186px {
  padding-left: 186px !important;
}

.pri-186px {
  padding-right: 186px !important;
}

.pyi-186px {
  padding-top: 186px !important;
  padding-bottom: 186px !important;
}

.pxi-186px {
  padding-left: 186px !important;
  padding-right: 186px !important;
}

tr.p-186px > td {
  padding: 186px;
}

tr.pt-186px > td {
  padding-top: 186px;
}

tr.pb-186px > td {
  padding-bottom: 186px;
}

tr.pl-186px > td {
  padding-left: 186px;
}

tr.pr-186px > td {
  padding-right: 186px;
}

tr.py-186px > td {
  padding-top: 186px;
  padding-bottom: 186px;
}

tr.px-186px > td {
  padding-left: 186px;
  padding-right: 186px;
}

tr.pi-186px > td {
  padding: 186px !important;
}

tr.pti-186px > td {
  padding-top: 186px !important;
}

tr.pbi-186px > td {
  padding-bottom: 186px !important;
}

tr.pli-186px > td {
  padding-left: 186px !important;
}

tr.pri-186px > td {
  padding-right: 186px !important;
}

tr.pyi-186px > td {
  padding-top: 186px !important;
  padding-bottom: 186px !important;
}

tr.pxi-186px > td {
  padding-left: 186px !important;
  padding-right: 186px !important;
}

tr.pxi-186px > td {
  padding-left: 186px !important;
  padding-right: 186px !important;
}

.m-187px {
  margin: 187px;
}

.mt-187px {
  margin-top: 187px;
}

.mb-187px {
  margin-bottom: 187px;
}

.ml-187px {
  margin-left: 187px;
}

.mr-187px {
  margin-right: 187px;
}

.mt--187px {
  margin-top: -187px;
}

.mb--187px {
  margin-bottom: -187px;
}

.ml--187px {
  margin-left: -187px;
}

.mr--187px {
  margin-right: -187px;
}

.my-187px {
  margin-top: 187px;
  margin-bottom: 187px;
}

.mx-187px {
  margin-left: 187px;
  margin-right: 187px;
}

.mi-187px {
  margin: 187px !important;
}

.mti-187px {
  margin-top: 187px !important;
}

.mbi-187px {
  margin-bottom: 187px !important;
}

.mli-187px {
  margin-left: 187px !important;
}

.mri-187px {
  margin-right: 187px !important;
}

.mti--187px {
  margin-top: -187px !important;
}

.mbi--187px {
  margin-bottom: -187px !important;
}

.mli--187px {
  margin-left: -187px !important;
}

.mri--187px {
  margin-right: -187px !important;
}

.myi-187px {
  margin-top: 187px !important;
  margin-bottom: 187px !important;
}

.mxi-187px {
  margin-left: 187px !important;
  margin-right: 187px !important;
}

.p-187px {
  padding: 187px;
}

.pt-187px {
  padding-top: 187px;
}

.pb-187px {
  padding-bottom: 187px;
}

.pl-187px {
  padding-left: 187px;
}

.pr-187px {
  padding-right: 187px;
}

.py-187px {
  padding-top: 187px;
  padding-bottom: 187px;
}

.px-187px {
  padding-left: 187px;
  padding-right: 187px;
}

.pi-187px {
  padding: 187px !important;
}

.pti-187px {
  padding-top: 187px !important;
}

.pbi-187px {
  padding-bottom: 187px !important;
}

.pli-187px {
  padding-left: 187px !important;
}

.pri-187px {
  padding-right: 187px !important;
}

.pyi-187px {
  padding-top: 187px !important;
  padding-bottom: 187px !important;
}

.pxi-187px {
  padding-left: 187px !important;
  padding-right: 187px !important;
}

tr.p-187px > td {
  padding: 187px;
}

tr.pt-187px > td {
  padding-top: 187px;
}

tr.pb-187px > td {
  padding-bottom: 187px;
}

tr.pl-187px > td {
  padding-left: 187px;
}

tr.pr-187px > td {
  padding-right: 187px;
}

tr.py-187px > td {
  padding-top: 187px;
  padding-bottom: 187px;
}

tr.px-187px > td {
  padding-left: 187px;
  padding-right: 187px;
}

tr.pi-187px > td {
  padding: 187px !important;
}

tr.pti-187px > td {
  padding-top: 187px !important;
}

tr.pbi-187px > td {
  padding-bottom: 187px !important;
}

tr.pli-187px > td {
  padding-left: 187px !important;
}

tr.pri-187px > td {
  padding-right: 187px !important;
}

tr.pyi-187px > td {
  padding-top: 187px !important;
  padding-bottom: 187px !important;
}

tr.pxi-187px > td {
  padding-left: 187px !important;
  padding-right: 187px !important;
}

tr.pxi-187px > td {
  padding-left: 187px !important;
  padding-right: 187px !important;
}

.m-188px {
  margin: 188px;
}

.mt-188px {
  margin-top: 188px;
}

.mb-188px {
  margin-bottom: 188px;
}

.ml-188px {
  margin-left: 188px;
}

.mr-188px {
  margin-right: 188px;
}

.mt--188px {
  margin-top: -188px;
}

.mb--188px {
  margin-bottom: -188px;
}

.ml--188px {
  margin-left: -188px;
}

.mr--188px {
  margin-right: -188px;
}

.my-188px {
  margin-top: 188px;
  margin-bottom: 188px;
}

.mx-188px {
  margin-left: 188px;
  margin-right: 188px;
}

.mi-188px {
  margin: 188px !important;
}

.mti-188px {
  margin-top: 188px !important;
}

.mbi-188px {
  margin-bottom: 188px !important;
}

.mli-188px {
  margin-left: 188px !important;
}

.mri-188px {
  margin-right: 188px !important;
}

.mti--188px {
  margin-top: -188px !important;
}

.mbi--188px {
  margin-bottom: -188px !important;
}

.mli--188px {
  margin-left: -188px !important;
}

.mri--188px {
  margin-right: -188px !important;
}

.myi-188px {
  margin-top: 188px !important;
  margin-bottom: 188px !important;
}

.mxi-188px {
  margin-left: 188px !important;
  margin-right: 188px !important;
}

.p-188px {
  padding: 188px;
}

.pt-188px {
  padding-top: 188px;
}

.pb-188px {
  padding-bottom: 188px;
}

.pl-188px {
  padding-left: 188px;
}

.pr-188px {
  padding-right: 188px;
}

.py-188px {
  padding-top: 188px;
  padding-bottom: 188px;
}

.px-188px {
  padding-left: 188px;
  padding-right: 188px;
}

.pi-188px {
  padding: 188px !important;
}

.pti-188px {
  padding-top: 188px !important;
}

.pbi-188px {
  padding-bottom: 188px !important;
}

.pli-188px {
  padding-left: 188px !important;
}

.pri-188px {
  padding-right: 188px !important;
}

.pyi-188px {
  padding-top: 188px !important;
  padding-bottom: 188px !important;
}

.pxi-188px {
  padding-left: 188px !important;
  padding-right: 188px !important;
}

tr.p-188px > td {
  padding: 188px;
}

tr.pt-188px > td {
  padding-top: 188px;
}

tr.pb-188px > td {
  padding-bottom: 188px;
}

tr.pl-188px > td {
  padding-left: 188px;
}

tr.pr-188px > td {
  padding-right: 188px;
}

tr.py-188px > td {
  padding-top: 188px;
  padding-bottom: 188px;
}

tr.px-188px > td {
  padding-left: 188px;
  padding-right: 188px;
}

tr.pi-188px > td {
  padding: 188px !important;
}

tr.pti-188px > td {
  padding-top: 188px !important;
}

tr.pbi-188px > td {
  padding-bottom: 188px !important;
}

tr.pli-188px > td {
  padding-left: 188px !important;
}

tr.pri-188px > td {
  padding-right: 188px !important;
}

tr.pyi-188px > td {
  padding-top: 188px !important;
  padding-bottom: 188px !important;
}

tr.pxi-188px > td {
  padding-left: 188px !important;
  padding-right: 188px !important;
}

tr.pxi-188px > td {
  padding-left: 188px !important;
  padding-right: 188px !important;
}

.m-189px {
  margin: 189px;
}

.mt-189px {
  margin-top: 189px;
}

.mb-189px {
  margin-bottom: 189px;
}

.ml-189px {
  margin-left: 189px;
}

.mr-189px {
  margin-right: 189px;
}

.mt--189px {
  margin-top: -189px;
}

.mb--189px {
  margin-bottom: -189px;
}

.ml--189px {
  margin-left: -189px;
}

.mr--189px {
  margin-right: -189px;
}

.my-189px {
  margin-top: 189px;
  margin-bottom: 189px;
}

.mx-189px {
  margin-left: 189px;
  margin-right: 189px;
}

.mi-189px {
  margin: 189px !important;
}

.mti-189px {
  margin-top: 189px !important;
}

.mbi-189px {
  margin-bottom: 189px !important;
}

.mli-189px {
  margin-left: 189px !important;
}

.mri-189px {
  margin-right: 189px !important;
}

.mti--189px {
  margin-top: -189px !important;
}

.mbi--189px {
  margin-bottom: -189px !important;
}

.mli--189px {
  margin-left: -189px !important;
}

.mri--189px {
  margin-right: -189px !important;
}

.myi-189px {
  margin-top: 189px !important;
  margin-bottom: 189px !important;
}

.mxi-189px {
  margin-left: 189px !important;
  margin-right: 189px !important;
}

.p-189px {
  padding: 189px;
}

.pt-189px {
  padding-top: 189px;
}

.pb-189px {
  padding-bottom: 189px;
}

.pl-189px {
  padding-left: 189px;
}

.pr-189px {
  padding-right: 189px;
}

.py-189px {
  padding-top: 189px;
  padding-bottom: 189px;
}

.px-189px {
  padding-left: 189px;
  padding-right: 189px;
}

.pi-189px {
  padding: 189px !important;
}

.pti-189px {
  padding-top: 189px !important;
}

.pbi-189px {
  padding-bottom: 189px !important;
}

.pli-189px {
  padding-left: 189px !important;
}

.pri-189px {
  padding-right: 189px !important;
}

.pyi-189px {
  padding-top: 189px !important;
  padding-bottom: 189px !important;
}

.pxi-189px {
  padding-left: 189px !important;
  padding-right: 189px !important;
}

tr.p-189px > td {
  padding: 189px;
}

tr.pt-189px > td {
  padding-top: 189px;
}

tr.pb-189px > td {
  padding-bottom: 189px;
}

tr.pl-189px > td {
  padding-left: 189px;
}

tr.pr-189px > td {
  padding-right: 189px;
}

tr.py-189px > td {
  padding-top: 189px;
  padding-bottom: 189px;
}

tr.px-189px > td {
  padding-left: 189px;
  padding-right: 189px;
}

tr.pi-189px > td {
  padding: 189px !important;
}

tr.pti-189px > td {
  padding-top: 189px !important;
}

tr.pbi-189px > td {
  padding-bottom: 189px !important;
}

tr.pli-189px > td {
  padding-left: 189px !important;
}

tr.pri-189px > td {
  padding-right: 189px !important;
}

tr.pyi-189px > td {
  padding-top: 189px !important;
  padding-bottom: 189px !important;
}

tr.pxi-189px > td {
  padding-left: 189px !important;
  padding-right: 189px !important;
}

tr.pxi-189px > td {
  padding-left: 189px !important;
  padding-right: 189px !important;
}

.m-190px {
  margin: 190px;
}

.mt-190px {
  margin-top: 190px;
}

.mb-190px {
  margin-bottom: 190px;
}

.ml-190px {
  margin-left: 190px;
}

.mr-190px {
  margin-right: 190px;
}

.mt--190px {
  margin-top: -190px;
}

.mb--190px {
  margin-bottom: -190px;
}

.ml--190px {
  margin-left: -190px;
}

.mr--190px {
  margin-right: -190px;
}

.my-190px {
  margin-top: 190px;
  margin-bottom: 190px;
}

.mx-190px {
  margin-left: 190px;
  margin-right: 190px;
}

.mi-190px {
  margin: 190px !important;
}

.mti-190px {
  margin-top: 190px !important;
}

.mbi-190px {
  margin-bottom: 190px !important;
}

.mli-190px {
  margin-left: 190px !important;
}

.mri-190px {
  margin-right: 190px !important;
}

.mti--190px {
  margin-top: -190px !important;
}

.mbi--190px {
  margin-bottom: -190px !important;
}

.mli--190px {
  margin-left: -190px !important;
}

.mri--190px {
  margin-right: -190px !important;
}

.myi-190px {
  margin-top: 190px !important;
  margin-bottom: 190px !important;
}

.mxi-190px {
  margin-left: 190px !important;
  margin-right: 190px !important;
}

.p-190px {
  padding: 190px;
}

.pt-190px {
  padding-top: 190px;
}

.pb-190px {
  padding-bottom: 190px;
}

.pl-190px {
  padding-left: 190px;
}

.pr-190px {
  padding-right: 190px;
}

.py-190px {
  padding-top: 190px;
  padding-bottom: 190px;
}

.px-190px {
  padding-left: 190px;
  padding-right: 190px;
}

.pi-190px {
  padding: 190px !important;
}

.pti-190px {
  padding-top: 190px !important;
}

.pbi-190px {
  padding-bottom: 190px !important;
}

.pli-190px {
  padding-left: 190px !important;
}

.pri-190px {
  padding-right: 190px !important;
}

.pyi-190px {
  padding-top: 190px !important;
  padding-bottom: 190px !important;
}

.pxi-190px {
  padding-left: 190px !important;
  padding-right: 190px !important;
}

tr.p-190px > td {
  padding: 190px;
}

tr.pt-190px > td {
  padding-top: 190px;
}

tr.pb-190px > td {
  padding-bottom: 190px;
}

tr.pl-190px > td {
  padding-left: 190px;
}

tr.pr-190px > td {
  padding-right: 190px;
}

tr.py-190px > td {
  padding-top: 190px;
  padding-bottom: 190px;
}

tr.px-190px > td {
  padding-left: 190px;
  padding-right: 190px;
}

tr.pi-190px > td {
  padding: 190px !important;
}

tr.pti-190px > td {
  padding-top: 190px !important;
}

tr.pbi-190px > td {
  padding-bottom: 190px !important;
}

tr.pli-190px > td {
  padding-left: 190px !important;
}

tr.pri-190px > td {
  padding-right: 190px !important;
}

tr.pyi-190px > td {
  padding-top: 190px !important;
  padding-bottom: 190px !important;
}

tr.pxi-190px > td {
  padding-left: 190px !important;
  padding-right: 190px !important;
}

tr.pxi-190px > td {
  padding-left: 190px !important;
  padding-right: 190px !important;
}

.m-191px {
  margin: 191px;
}

.mt-191px {
  margin-top: 191px;
}

.mb-191px {
  margin-bottom: 191px;
}

.ml-191px {
  margin-left: 191px;
}

.mr-191px {
  margin-right: 191px;
}

.mt--191px {
  margin-top: -191px;
}

.mb--191px {
  margin-bottom: -191px;
}

.ml--191px {
  margin-left: -191px;
}

.mr--191px {
  margin-right: -191px;
}

.my-191px {
  margin-top: 191px;
  margin-bottom: 191px;
}

.mx-191px {
  margin-left: 191px;
  margin-right: 191px;
}

.mi-191px {
  margin: 191px !important;
}

.mti-191px {
  margin-top: 191px !important;
}

.mbi-191px {
  margin-bottom: 191px !important;
}

.mli-191px {
  margin-left: 191px !important;
}

.mri-191px {
  margin-right: 191px !important;
}

.mti--191px {
  margin-top: -191px !important;
}

.mbi--191px {
  margin-bottom: -191px !important;
}

.mli--191px {
  margin-left: -191px !important;
}

.mri--191px {
  margin-right: -191px !important;
}

.myi-191px {
  margin-top: 191px !important;
  margin-bottom: 191px !important;
}

.mxi-191px {
  margin-left: 191px !important;
  margin-right: 191px !important;
}

.p-191px {
  padding: 191px;
}

.pt-191px {
  padding-top: 191px;
}

.pb-191px {
  padding-bottom: 191px;
}

.pl-191px {
  padding-left: 191px;
}

.pr-191px {
  padding-right: 191px;
}

.py-191px {
  padding-top: 191px;
  padding-bottom: 191px;
}

.px-191px {
  padding-left: 191px;
  padding-right: 191px;
}

.pi-191px {
  padding: 191px !important;
}

.pti-191px {
  padding-top: 191px !important;
}

.pbi-191px {
  padding-bottom: 191px !important;
}

.pli-191px {
  padding-left: 191px !important;
}

.pri-191px {
  padding-right: 191px !important;
}

.pyi-191px {
  padding-top: 191px !important;
  padding-bottom: 191px !important;
}

.pxi-191px {
  padding-left: 191px !important;
  padding-right: 191px !important;
}

tr.p-191px > td {
  padding: 191px;
}

tr.pt-191px > td {
  padding-top: 191px;
}

tr.pb-191px > td {
  padding-bottom: 191px;
}

tr.pl-191px > td {
  padding-left: 191px;
}

tr.pr-191px > td {
  padding-right: 191px;
}

tr.py-191px > td {
  padding-top: 191px;
  padding-bottom: 191px;
}

tr.px-191px > td {
  padding-left: 191px;
  padding-right: 191px;
}

tr.pi-191px > td {
  padding: 191px !important;
}

tr.pti-191px > td {
  padding-top: 191px !important;
}

tr.pbi-191px > td {
  padding-bottom: 191px !important;
}

tr.pli-191px > td {
  padding-left: 191px !important;
}

tr.pri-191px > td {
  padding-right: 191px !important;
}

tr.pyi-191px > td {
  padding-top: 191px !important;
  padding-bottom: 191px !important;
}

tr.pxi-191px > td {
  padding-left: 191px !important;
  padding-right: 191px !important;
}

tr.pxi-191px > td {
  padding-left: 191px !important;
  padding-right: 191px !important;
}

.m-192px {
  margin: 192px;
}

.mt-192px {
  margin-top: 192px;
}

.mb-192px {
  margin-bottom: 192px;
}

.ml-192px {
  margin-left: 192px;
}

.mr-192px {
  margin-right: 192px;
}

.mt--192px {
  margin-top: -192px;
}

.mb--192px {
  margin-bottom: -192px;
}

.ml--192px {
  margin-left: -192px;
}

.mr--192px {
  margin-right: -192px;
}

.my-192px {
  margin-top: 192px;
  margin-bottom: 192px;
}

.mx-192px {
  margin-left: 192px;
  margin-right: 192px;
}

.mi-192px {
  margin: 192px !important;
}

.mti-192px {
  margin-top: 192px !important;
}

.mbi-192px {
  margin-bottom: 192px !important;
}

.mli-192px {
  margin-left: 192px !important;
}

.mri-192px {
  margin-right: 192px !important;
}

.mti--192px {
  margin-top: -192px !important;
}

.mbi--192px {
  margin-bottom: -192px !important;
}

.mli--192px {
  margin-left: -192px !important;
}

.mri--192px {
  margin-right: -192px !important;
}

.myi-192px {
  margin-top: 192px !important;
  margin-bottom: 192px !important;
}

.mxi-192px {
  margin-left: 192px !important;
  margin-right: 192px !important;
}

.p-192px {
  padding: 192px;
}

.pt-192px {
  padding-top: 192px;
}

.pb-192px {
  padding-bottom: 192px;
}

.pl-192px {
  padding-left: 192px;
}

.pr-192px {
  padding-right: 192px;
}

.py-192px {
  padding-top: 192px;
  padding-bottom: 192px;
}

.px-192px {
  padding-left: 192px;
  padding-right: 192px;
}

.pi-192px {
  padding: 192px !important;
}

.pti-192px {
  padding-top: 192px !important;
}

.pbi-192px {
  padding-bottom: 192px !important;
}

.pli-192px {
  padding-left: 192px !important;
}

.pri-192px {
  padding-right: 192px !important;
}

.pyi-192px {
  padding-top: 192px !important;
  padding-bottom: 192px !important;
}

.pxi-192px {
  padding-left: 192px !important;
  padding-right: 192px !important;
}

tr.p-192px > td {
  padding: 192px;
}

tr.pt-192px > td {
  padding-top: 192px;
}

tr.pb-192px > td {
  padding-bottom: 192px;
}

tr.pl-192px > td {
  padding-left: 192px;
}

tr.pr-192px > td {
  padding-right: 192px;
}

tr.py-192px > td {
  padding-top: 192px;
  padding-bottom: 192px;
}

tr.px-192px > td {
  padding-left: 192px;
  padding-right: 192px;
}

tr.pi-192px > td {
  padding: 192px !important;
}

tr.pti-192px > td {
  padding-top: 192px !important;
}

tr.pbi-192px > td {
  padding-bottom: 192px !important;
}

tr.pli-192px > td {
  padding-left: 192px !important;
}

tr.pri-192px > td {
  padding-right: 192px !important;
}

tr.pyi-192px > td {
  padding-top: 192px !important;
  padding-bottom: 192px !important;
}

tr.pxi-192px > td {
  padding-left: 192px !important;
  padding-right: 192px !important;
}

tr.pxi-192px > td {
  padding-left: 192px !important;
  padding-right: 192px !important;
}

.m-193px {
  margin: 193px;
}

.mt-193px {
  margin-top: 193px;
}

.mb-193px {
  margin-bottom: 193px;
}

.ml-193px {
  margin-left: 193px;
}

.mr-193px {
  margin-right: 193px;
}

.mt--193px {
  margin-top: -193px;
}

.mb--193px {
  margin-bottom: -193px;
}

.ml--193px {
  margin-left: -193px;
}

.mr--193px {
  margin-right: -193px;
}

.my-193px {
  margin-top: 193px;
  margin-bottom: 193px;
}

.mx-193px {
  margin-left: 193px;
  margin-right: 193px;
}

.mi-193px {
  margin: 193px !important;
}

.mti-193px {
  margin-top: 193px !important;
}

.mbi-193px {
  margin-bottom: 193px !important;
}

.mli-193px {
  margin-left: 193px !important;
}

.mri-193px {
  margin-right: 193px !important;
}

.mti--193px {
  margin-top: -193px !important;
}

.mbi--193px {
  margin-bottom: -193px !important;
}

.mli--193px {
  margin-left: -193px !important;
}

.mri--193px {
  margin-right: -193px !important;
}

.myi-193px {
  margin-top: 193px !important;
  margin-bottom: 193px !important;
}

.mxi-193px {
  margin-left: 193px !important;
  margin-right: 193px !important;
}

.p-193px {
  padding: 193px;
}

.pt-193px {
  padding-top: 193px;
}

.pb-193px {
  padding-bottom: 193px;
}

.pl-193px {
  padding-left: 193px;
}

.pr-193px {
  padding-right: 193px;
}

.py-193px {
  padding-top: 193px;
  padding-bottom: 193px;
}

.px-193px {
  padding-left: 193px;
  padding-right: 193px;
}

.pi-193px {
  padding: 193px !important;
}

.pti-193px {
  padding-top: 193px !important;
}

.pbi-193px {
  padding-bottom: 193px !important;
}

.pli-193px {
  padding-left: 193px !important;
}

.pri-193px {
  padding-right: 193px !important;
}

.pyi-193px {
  padding-top: 193px !important;
  padding-bottom: 193px !important;
}

.pxi-193px {
  padding-left: 193px !important;
  padding-right: 193px !important;
}

tr.p-193px > td {
  padding: 193px;
}

tr.pt-193px > td {
  padding-top: 193px;
}

tr.pb-193px > td {
  padding-bottom: 193px;
}

tr.pl-193px > td {
  padding-left: 193px;
}

tr.pr-193px > td {
  padding-right: 193px;
}

tr.py-193px > td {
  padding-top: 193px;
  padding-bottom: 193px;
}

tr.px-193px > td {
  padding-left: 193px;
  padding-right: 193px;
}

tr.pi-193px > td {
  padding: 193px !important;
}

tr.pti-193px > td {
  padding-top: 193px !important;
}

tr.pbi-193px > td {
  padding-bottom: 193px !important;
}

tr.pli-193px > td {
  padding-left: 193px !important;
}

tr.pri-193px > td {
  padding-right: 193px !important;
}

tr.pyi-193px > td {
  padding-top: 193px !important;
  padding-bottom: 193px !important;
}

tr.pxi-193px > td {
  padding-left: 193px !important;
  padding-right: 193px !important;
}

tr.pxi-193px > td {
  padding-left: 193px !important;
  padding-right: 193px !important;
}

.m-194px {
  margin: 194px;
}

.mt-194px {
  margin-top: 194px;
}

.mb-194px {
  margin-bottom: 194px;
}

.ml-194px {
  margin-left: 194px;
}

.mr-194px {
  margin-right: 194px;
}

.mt--194px {
  margin-top: -194px;
}

.mb--194px {
  margin-bottom: -194px;
}

.ml--194px {
  margin-left: -194px;
}

.mr--194px {
  margin-right: -194px;
}

.my-194px {
  margin-top: 194px;
  margin-bottom: 194px;
}

.mx-194px {
  margin-left: 194px;
  margin-right: 194px;
}

.mi-194px {
  margin: 194px !important;
}

.mti-194px {
  margin-top: 194px !important;
}

.mbi-194px {
  margin-bottom: 194px !important;
}

.mli-194px {
  margin-left: 194px !important;
}

.mri-194px {
  margin-right: 194px !important;
}

.mti--194px {
  margin-top: -194px !important;
}

.mbi--194px {
  margin-bottom: -194px !important;
}

.mli--194px {
  margin-left: -194px !important;
}

.mri--194px {
  margin-right: -194px !important;
}

.myi-194px {
  margin-top: 194px !important;
  margin-bottom: 194px !important;
}

.mxi-194px {
  margin-left: 194px !important;
  margin-right: 194px !important;
}

.p-194px {
  padding: 194px;
}

.pt-194px {
  padding-top: 194px;
}

.pb-194px {
  padding-bottom: 194px;
}

.pl-194px {
  padding-left: 194px;
}

.pr-194px {
  padding-right: 194px;
}

.py-194px {
  padding-top: 194px;
  padding-bottom: 194px;
}

.px-194px {
  padding-left: 194px;
  padding-right: 194px;
}

.pi-194px {
  padding: 194px !important;
}

.pti-194px {
  padding-top: 194px !important;
}

.pbi-194px {
  padding-bottom: 194px !important;
}

.pli-194px {
  padding-left: 194px !important;
}

.pri-194px {
  padding-right: 194px !important;
}

.pyi-194px {
  padding-top: 194px !important;
  padding-bottom: 194px !important;
}

.pxi-194px {
  padding-left: 194px !important;
  padding-right: 194px !important;
}

tr.p-194px > td {
  padding: 194px;
}

tr.pt-194px > td {
  padding-top: 194px;
}

tr.pb-194px > td {
  padding-bottom: 194px;
}

tr.pl-194px > td {
  padding-left: 194px;
}

tr.pr-194px > td {
  padding-right: 194px;
}

tr.py-194px > td {
  padding-top: 194px;
  padding-bottom: 194px;
}

tr.px-194px > td {
  padding-left: 194px;
  padding-right: 194px;
}

tr.pi-194px > td {
  padding: 194px !important;
}

tr.pti-194px > td {
  padding-top: 194px !important;
}

tr.pbi-194px > td {
  padding-bottom: 194px !important;
}

tr.pli-194px > td {
  padding-left: 194px !important;
}

tr.pri-194px > td {
  padding-right: 194px !important;
}

tr.pyi-194px > td {
  padding-top: 194px !important;
  padding-bottom: 194px !important;
}

tr.pxi-194px > td {
  padding-left: 194px !important;
  padding-right: 194px !important;
}

tr.pxi-194px > td {
  padding-left: 194px !important;
  padding-right: 194px !important;
}

.m-195px {
  margin: 195px;
}

.mt-195px {
  margin-top: 195px;
}

.mb-195px {
  margin-bottom: 195px;
}

.ml-195px {
  margin-left: 195px;
}

.mr-195px {
  margin-right: 195px;
}

.mt--195px {
  margin-top: -195px;
}

.mb--195px {
  margin-bottom: -195px;
}

.ml--195px {
  margin-left: -195px;
}

.mr--195px {
  margin-right: -195px;
}

.my-195px {
  margin-top: 195px;
  margin-bottom: 195px;
}

.mx-195px {
  margin-left: 195px;
  margin-right: 195px;
}

.mi-195px {
  margin: 195px !important;
}

.mti-195px {
  margin-top: 195px !important;
}

.mbi-195px {
  margin-bottom: 195px !important;
}

.mli-195px {
  margin-left: 195px !important;
}

.mri-195px {
  margin-right: 195px !important;
}

.mti--195px {
  margin-top: -195px !important;
}

.mbi--195px {
  margin-bottom: -195px !important;
}

.mli--195px {
  margin-left: -195px !important;
}

.mri--195px {
  margin-right: -195px !important;
}

.myi-195px {
  margin-top: 195px !important;
  margin-bottom: 195px !important;
}

.mxi-195px {
  margin-left: 195px !important;
  margin-right: 195px !important;
}

.p-195px {
  padding: 195px;
}

.pt-195px {
  padding-top: 195px;
}

.pb-195px {
  padding-bottom: 195px;
}

.pl-195px {
  padding-left: 195px;
}

.pr-195px {
  padding-right: 195px;
}

.py-195px {
  padding-top: 195px;
  padding-bottom: 195px;
}

.px-195px {
  padding-left: 195px;
  padding-right: 195px;
}

.pi-195px {
  padding: 195px !important;
}

.pti-195px {
  padding-top: 195px !important;
}

.pbi-195px {
  padding-bottom: 195px !important;
}

.pli-195px {
  padding-left: 195px !important;
}

.pri-195px {
  padding-right: 195px !important;
}

.pyi-195px {
  padding-top: 195px !important;
  padding-bottom: 195px !important;
}

.pxi-195px {
  padding-left: 195px !important;
  padding-right: 195px !important;
}

tr.p-195px > td {
  padding: 195px;
}

tr.pt-195px > td {
  padding-top: 195px;
}

tr.pb-195px > td {
  padding-bottom: 195px;
}

tr.pl-195px > td {
  padding-left: 195px;
}

tr.pr-195px > td {
  padding-right: 195px;
}

tr.py-195px > td {
  padding-top: 195px;
  padding-bottom: 195px;
}

tr.px-195px > td {
  padding-left: 195px;
  padding-right: 195px;
}

tr.pi-195px > td {
  padding: 195px !important;
}

tr.pti-195px > td {
  padding-top: 195px !important;
}

tr.pbi-195px > td {
  padding-bottom: 195px !important;
}

tr.pli-195px > td {
  padding-left: 195px !important;
}

tr.pri-195px > td {
  padding-right: 195px !important;
}

tr.pyi-195px > td {
  padding-top: 195px !important;
  padding-bottom: 195px !important;
}

tr.pxi-195px > td {
  padding-left: 195px !important;
  padding-right: 195px !important;
}

tr.pxi-195px > td {
  padding-left: 195px !important;
  padding-right: 195px !important;
}

.m-196px {
  margin: 196px;
}

.mt-196px {
  margin-top: 196px;
}

.mb-196px {
  margin-bottom: 196px;
}

.ml-196px {
  margin-left: 196px;
}

.mr-196px {
  margin-right: 196px;
}

.mt--196px {
  margin-top: -196px;
}

.mb--196px {
  margin-bottom: -196px;
}

.ml--196px {
  margin-left: -196px;
}

.mr--196px {
  margin-right: -196px;
}

.my-196px {
  margin-top: 196px;
  margin-bottom: 196px;
}

.mx-196px {
  margin-left: 196px;
  margin-right: 196px;
}

.mi-196px {
  margin: 196px !important;
}

.mti-196px {
  margin-top: 196px !important;
}

.mbi-196px {
  margin-bottom: 196px !important;
}

.mli-196px {
  margin-left: 196px !important;
}

.mri-196px {
  margin-right: 196px !important;
}

.mti--196px {
  margin-top: -196px !important;
}

.mbi--196px {
  margin-bottom: -196px !important;
}

.mli--196px {
  margin-left: -196px !important;
}

.mri--196px {
  margin-right: -196px !important;
}

.myi-196px {
  margin-top: 196px !important;
  margin-bottom: 196px !important;
}

.mxi-196px {
  margin-left: 196px !important;
  margin-right: 196px !important;
}

.p-196px {
  padding: 196px;
}

.pt-196px {
  padding-top: 196px;
}

.pb-196px {
  padding-bottom: 196px;
}

.pl-196px {
  padding-left: 196px;
}

.pr-196px {
  padding-right: 196px;
}

.py-196px {
  padding-top: 196px;
  padding-bottom: 196px;
}

.px-196px {
  padding-left: 196px;
  padding-right: 196px;
}

.pi-196px {
  padding: 196px !important;
}

.pti-196px {
  padding-top: 196px !important;
}

.pbi-196px {
  padding-bottom: 196px !important;
}

.pli-196px {
  padding-left: 196px !important;
}

.pri-196px {
  padding-right: 196px !important;
}

.pyi-196px {
  padding-top: 196px !important;
  padding-bottom: 196px !important;
}

.pxi-196px {
  padding-left: 196px !important;
  padding-right: 196px !important;
}

tr.p-196px > td {
  padding: 196px;
}

tr.pt-196px > td {
  padding-top: 196px;
}

tr.pb-196px > td {
  padding-bottom: 196px;
}

tr.pl-196px > td {
  padding-left: 196px;
}

tr.pr-196px > td {
  padding-right: 196px;
}

tr.py-196px > td {
  padding-top: 196px;
  padding-bottom: 196px;
}

tr.px-196px > td {
  padding-left: 196px;
  padding-right: 196px;
}

tr.pi-196px > td {
  padding: 196px !important;
}

tr.pti-196px > td {
  padding-top: 196px !important;
}

tr.pbi-196px > td {
  padding-bottom: 196px !important;
}

tr.pli-196px > td {
  padding-left: 196px !important;
}

tr.pri-196px > td {
  padding-right: 196px !important;
}

tr.pyi-196px > td {
  padding-top: 196px !important;
  padding-bottom: 196px !important;
}

tr.pxi-196px > td {
  padding-left: 196px !important;
  padding-right: 196px !important;
}

tr.pxi-196px > td {
  padding-left: 196px !important;
  padding-right: 196px !important;
}

.m-197px {
  margin: 197px;
}

.mt-197px {
  margin-top: 197px;
}

.mb-197px {
  margin-bottom: 197px;
}

.ml-197px {
  margin-left: 197px;
}

.mr-197px {
  margin-right: 197px;
}

.mt--197px {
  margin-top: -197px;
}

.mb--197px {
  margin-bottom: -197px;
}

.ml--197px {
  margin-left: -197px;
}

.mr--197px {
  margin-right: -197px;
}

.my-197px {
  margin-top: 197px;
  margin-bottom: 197px;
}

.mx-197px {
  margin-left: 197px;
  margin-right: 197px;
}

.mi-197px {
  margin: 197px !important;
}

.mti-197px {
  margin-top: 197px !important;
}

.mbi-197px {
  margin-bottom: 197px !important;
}

.mli-197px {
  margin-left: 197px !important;
}

.mri-197px {
  margin-right: 197px !important;
}

.mti--197px {
  margin-top: -197px !important;
}

.mbi--197px {
  margin-bottom: -197px !important;
}

.mli--197px {
  margin-left: -197px !important;
}

.mri--197px {
  margin-right: -197px !important;
}

.myi-197px {
  margin-top: 197px !important;
  margin-bottom: 197px !important;
}

.mxi-197px {
  margin-left: 197px !important;
  margin-right: 197px !important;
}

.p-197px {
  padding: 197px;
}

.pt-197px {
  padding-top: 197px;
}

.pb-197px {
  padding-bottom: 197px;
}

.pl-197px {
  padding-left: 197px;
}

.pr-197px {
  padding-right: 197px;
}

.py-197px {
  padding-top: 197px;
  padding-bottom: 197px;
}

.px-197px {
  padding-left: 197px;
  padding-right: 197px;
}

.pi-197px {
  padding: 197px !important;
}

.pti-197px {
  padding-top: 197px !important;
}

.pbi-197px {
  padding-bottom: 197px !important;
}

.pli-197px {
  padding-left: 197px !important;
}

.pri-197px {
  padding-right: 197px !important;
}

.pyi-197px {
  padding-top: 197px !important;
  padding-bottom: 197px !important;
}

.pxi-197px {
  padding-left: 197px !important;
  padding-right: 197px !important;
}

tr.p-197px > td {
  padding: 197px;
}

tr.pt-197px > td {
  padding-top: 197px;
}

tr.pb-197px > td {
  padding-bottom: 197px;
}

tr.pl-197px > td {
  padding-left: 197px;
}

tr.pr-197px > td {
  padding-right: 197px;
}

tr.py-197px > td {
  padding-top: 197px;
  padding-bottom: 197px;
}

tr.px-197px > td {
  padding-left: 197px;
  padding-right: 197px;
}

tr.pi-197px > td {
  padding: 197px !important;
}

tr.pti-197px > td {
  padding-top: 197px !important;
}

tr.pbi-197px > td {
  padding-bottom: 197px !important;
}

tr.pli-197px > td {
  padding-left: 197px !important;
}

tr.pri-197px > td {
  padding-right: 197px !important;
}

tr.pyi-197px > td {
  padding-top: 197px !important;
  padding-bottom: 197px !important;
}

tr.pxi-197px > td {
  padding-left: 197px !important;
  padding-right: 197px !important;
}

tr.pxi-197px > td {
  padding-left: 197px !important;
  padding-right: 197px !important;
}

.m-198px {
  margin: 198px;
}

.mt-198px {
  margin-top: 198px;
}

.mb-198px {
  margin-bottom: 198px;
}

.ml-198px {
  margin-left: 198px;
}

.mr-198px {
  margin-right: 198px;
}

.mt--198px {
  margin-top: -198px;
}

.mb--198px {
  margin-bottom: -198px;
}

.ml--198px {
  margin-left: -198px;
}

.mr--198px {
  margin-right: -198px;
}

.my-198px {
  margin-top: 198px;
  margin-bottom: 198px;
}

.mx-198px {
  margin-left: 198px;
  margin-right: 198px;
}

.mi-198px {
  margin: 198px !important;
}

.mti-198px {
  margin-top: 198px !important;
}

.mbi-198px {
  margin-bottom: 198px !important;
}

.mli-198px {
  margin-left: 198px !important;
}

.mri-198px {
  margin-right: 198px !important;
}

.mti--198px {
  margin-top: -198px !important;
}

.mbi--198px {
  margin-bottom: -198px !important;
}

.mli--198px {
  margin-left: -198px !important;
}

.mri--198px {
  margin-right: -198px !important;
}

.myi-198px {
  margin-top: 198px !important;
  margin-bottom: 198px !important;
}

.mxi-198px {
  margin-left: 198px !important;
  margin-right: 198px !important;
}

.p-198px {
  padding: 198px;
}

.pt-198px {
  padding-top: 198px;
}

.pb-198px {
  padding-bottom: 198px;
}

.pl-198px {
  padding-left: 198px;
}

.pr-198px {
  padding-right: 198px;
}

.py-198px {
  padding-top: 198px;
  padding-bottom: 198px;
}

.px-198px {
  padding-left: 198px;
  padding-right: 198px;
}

.pi-198px {
  padding: 198px !important;
}

.pti-198px {
  padding-top: 198px !important;
}

.pbi-198px {
  padding-bottom: 198px !important;
}

.pli-198px {
  padding-left: 198px !important;
}

.pri-198px {
  padding-right: 198px !important;
}

.pyi-198px {
  padding-top: 198px !important;
  padding-bottom: 198px !important;
}

.pxi-198px {
  padding-left: 198px !important;
  padding-right: 198px !important;
}

tr.p-198px > td {
  padding: 198px;
}

tr.pt-198px > td {
  padding-top: 198px;
}

tr.pb-198px > td {
  padding-bottom: 198px;
}

tr.pl-198px > td {
  padding-left: 198px;
}

tr.pr-198px > td {
  padding-right: 198px;
}

tr.py-198px > td {
  padding-top: 198px;
  padding-bottom: 198px;
}

tr.px-198px > td {
  padding-left: 198px;
  padding-right: 198px;
}

tr.pi-198px > td {
  padding: 198px !important;
}

tr.pti-198px > td {
  padding-top: 198px !important;
}

tr.pbi-198px > td {
  padding-bottom: 198px !important;
}

tr.pli-198px > td {
  padding-left: 198px !important;
}

tr.pri-198px > td {
  padding-right: 198px !important;
}

tr.pyi-198px > td {
  padding-top: 198px !important;
  padding-bottom: 198px !important;
}

tr.pxi-198px > td {
  padding-left: 198px !important;
  padding-right: 198px !important;
}

tr.pxi-198px > td {
  padding-left: 198px !important;
  padding-right: 198px !important;
}

.m-199px {
  margin: 199px;
}

.mt-199px {
  margin-top: 199px;
}

.mb-199px {
  margin-bottom: 199px;
}

.ml-199px {
  margin-left: 199px;
}

.mr-199px {
  margin-right: 199px;
}

.mt--199px {
  margin-top: -199px;
}

.mb--199px {
  margin-bottom: -199px;
}

.ml--199px {
  margin-left: -199px;
}

.mr--199px {
  margin-right: -199px;
}

.my-199px {
  margin-top: 199px;
  margin-bottom: 199px;
}

.mx-199px {
  margin-left: 199px;
  margin-right: 199px;
}

.mi-199px {
  margin: 199px !important;
}

.mti-199px {
  margin-top: 199px !important;
}

.mbi-199px {
  margin-bottom: 199px !important;
}

.mli-199px {
  margin-left: 199px !important;
}

.mri-199px {
  margin-right: 199px !important;
}

.mti--199px {
  margin-top: -199px !important;
}

.mbi--199px {
  margin-bottom: -199px !important;
}

.mli--199px {
  margin-left: -199px !important;
}

.mri--199px {
  margin-right: -199px !important;
}

.myi-199px {
  margin-top: 199px !important;
  margin-bottom: 199px !important;
}

.mxi-199px {
  margin-left: 199px !important;
  margin-right: 199px !important;
}

.p-199px {
  padding: 199px;
}

.pt-199px {
  padding-top: 199px;
}

.pb-199px {
  padding-bottom: 199px;
}

.pl-199px {
  padding-left: 199px;
}

.pr-199px {
  padding-right: 199px;
}

.py-199px {
  padding-top: 199px;
  padding-bottom: 199px;
}

.px-199px {
  padding-left: 199px;
  padding-right: 199px;
}

.pi-199px {
  padding: 199px !important;
}

.pti-199px {
  padding-top: 199px !important;
}

.pbi-199px {
  padding-bottom: 199px !important;
}

.pli-199px {
  padding-left: 199px !important;
}

.pri-199px {
  padding-right: 199px !important;
}

.pyi-199px {
  padding-top: 199px !important;
  padding-bottom: 199px !important;
}

.pxi-199px {
  padding-left: 199px !important;
  padding-right: 199px !important;
}

tr.p-199px > td {
  padding: 199px;
}

tr.pt-199px > td {
  padding-top: 199px;
}

tr.pb-199px > td {
  padding-bottom: 199px;
}

tr.pl-199px > td {
  padding-left: 199px;
}

tr.pr-199px > td {
  padding-right: 199px;
}

tr.py-199px > td {
  padding-top: 199px;
  padding-bottom: 199px;
}

tr.px-199px > td {
  padding-left: 199px;
  padding-right: 199px;
}

tr.pi-199px > td {
  padding: 199px !important;
}

tr.pti-199px > td {
  padding-top: 199px !important;
}

tr.pbi-199px > td {
  padding-bottom: 199px !important;
}

tr.pli-199px > td {
  padding-left: 199px !important;
}

tr.pri-199px > td {
  padding-right: 199px !important;
}

tr.pyi-199px > td {
  padding-top: 199px !important;
  padding-bottom: 199px !important;
}

tr.pxi-199px > td {
  padding-left: 199px !important;
  padding-right: 199px !important;
}

tr.pxi-199px > td {
  padding-left: 199px !important;
  padding-right: 199px !important;
}

.m-200px {
  margin: 200px;
}

.mt-200px {
  margin-top: 200px;
}

.mb-200px {
  margin-bottom: 200px;
}

.ml-200px {
  margin-left: 200px;
}

.mr-200px {
  margin-right: 200px;
}

.mt--200px {
  margin-top: -200px;
}

.mb--200px {
  margin-bottom: -200px;
}

.ml--200px {
  margin-left: -200px;
}

.mr--200px {
  margin-right: -200px;
}

.my-200px {
  margin-top: 200px;
  margin-bottom: 200px;
}

.mx-200px {
  margin-left: 200px;
  margin-right: 200px;
}

.mi-200px {
  margin: 200px !important;
}

.mti-200px {
  margin-top: 200px !important;
}

.mbi-200px {
  margin-bottom: 200px !important;
}

.mli-200px {
  margin-left: 200px !important;
}

.mri-200px {
  margin-right: 200px !important;
}

.mti--200px {
  margin-top: -200px !important;
}

.mbi--200px {
  margin-bottom: -200px !important;
}

.mli--200px {
  margin-left: -200px !important;
}

.mri--200px {
  margin-right: -200px !important;
}

.myi-200px {
  margin-top: 200px !important;
  margin-bottom: 200px !important;
}

.mxi-200px {
  margin-left: 200px !important;
  margin-right: 200px !important;
}

.p-200px {
  padding: 200px;
}

.pt-200px {
  padding-top: 200px;
}

.pb-200px {
  padding-bottom: 200px;
}

.pl-200px {
  padding-left: 200px;
}

.pr-200px {
  padding-right: 200px;
}

.py-200px {
  padding-top: 200px;
  padding-bottom: 200px;
}

.px-200px {
  padding-left: 200px;
  padding-right: 200px;
}

.pi-200px {
  padding: 200px !important;
}

.pti-200px {
  padding-top: 200px !important;
}

.pbi-200px {
  padding-bottom: 200px !important;
}

.pli-200px {
  padding-left: 200px !important;
}

.pri-200px {
  padding-right: 200px !important;
}

.pyi-200px {
  padding-top: 200px !important;
  padding-bottom: 200px !important;
}

.pxi-200px {
  padding-left: 200px !important;
  padding-right: 200px !important;
}

tr.p-200px > td {
  padding: 200px;
}

tr.pt-200px > td {
  padding-top: 200px;
}

tr.pb-200px > td {
  padding-bottom: 200px;
}

tr.pl-200px > td {
  padding-left: 200px;
}

tr.pr-200px > td {
  padding-right: 200px;
}

tr.py-200px > td {
  padding-top: 200px;
  padding-bottom: 200px;
}

tr.px-200px > td {
  padding-left: 200px;
  padding-right: 200px;
}

tr.pi-200px > td {
  padding: 200px !important;
}

tr.pti-200px > td {
  padding-top: 200px !important;
}

tr.pbi-200px > td {
  padding-bottom: 200px !important;
}

tr.pli-200px > td {
  padding-left: 200px !important;
}

tr.pri-200px > td {
  padding-right: 200px !important;
}

tr.pyi-200px > td {
  padding-top: 200px !important;
  padding-bottom: 200px !important;
}

tr.pxi-200px > td {
  padding-left: 200px !important;
  padding-right: 200px !important;
}

tr.pxi-200px > td {
  padding-left: 200px !important;
  padding-right: 200px !important;
}

.m-0p {
  margin: 0%;
}

.mt-0p {
  margin-top: 0%;
}

.mb-0p {
  margin-bottom: 0%;
}

.ml-0p {
  margin-left: 0%;
}

.mr-0p {
  margin-right: 0%;
}

.mt--0p {
  margin-top: -0%;
}

.mb--0p {
  margin-bottom: -0%;
}

.ml--0p {
  margin-left: -0%;
}

.mr--0p {
  margin-right: -0%;
}

.my-0p {
  margin-top: 0%;
  margin-bottom: 0%;
}

.mx-0p {
  margin-left: 0%;
  margin-right: 0%;
}

.mi-0p {
  margin: 0% !important;
}

.mti-0p {
  margin-top: 0% !important;
}

.mbi-0p {
  margin-bottom: 0% !important;
}

.mli-0p {
  margin-left: 0% !important;
}

.mri-0p {
  margin-right: 0% !important;
}

.mti--0p {
  margin-top: -0% !important;
}

.mbi--0p {
  margin-bottom: -0% !important;
}

.mli--0p {
  margin-left: -0% !important;
}

.mri--0p {
  margin-right: -0% !important;
}

.myi-0p {
  margin-top: 0% !important;
  margin-bottom: 0% !important;
}

.mxi-0p {
  margin-left: 0% !important;
  margin-right: 0% !important;
}

.p-0p {
  padding: 0%;
}

.pt-0p {
  padding-top: 0%;
}

.pb-0p {
  padding-bottom: 0%;
}

.pl-0p {
  padding-left: 0%;
}

.pr-0p {
  padding-right: 0%;
}

.py-0p {
  padding-top: 0%;
  padding-bottom: 0%;
}

.px-0p {
  padding-left: 0%;
  padding-right: 0%;
}

.pi-0p {
  padding: 0% !important;
}

.pti-0p {
  padding-top: 0% !important;
}

.pbi-0p {
  padding-bottom: 0% !important;
}

.pli-0p {
  padding-left: 0% !important;
}

.pri-0p {
  padding-right: 0% !important;
}

.pyi-0p {
  padding-top: 0% !important;
  padding-bottom: 0% !important;
}

.pxi-0p {
  padding-left: 0% !important;
  padding-right: 0% !important;
}

tr.p-0p > td {
  padding: 0%;
}

tr.pt-0p > td {
  padding-top: 0%;
}

tr.pb-0p > td {
  padding-bottom: 0%;
}

tr.pl-0p > td {
  padding-left: 0%;
}

tr.pr-0p > td {
  padding-right: 0%;
}

tr.py-0p > td {
  padding-top: 0%;
  padding-bottom: 0%;
}

tr.px-0p > td {
  padding-left: 0%;
  padding-right: 0%;
}

tr.pi-0p > td {
  padding: 0% !important;
}

tr.pti-0p > td {
  padding-top: 0% !important;
}

tr.pbi-0p > td {
  padding-bottom: 0% !important;
}

tr.pli-0p > td {
  padding-left: 0% !important;
}

tr.pri-0p > td {
  padding-right: 0% !important;
}

tr.pyi-0p > td {
  padding-top: 0% !important;
  padding-bottom: 0% !important;
}

tr.pxi-0p > td {
  padding-left: 0% !important;
  padding-right: 0% !important;
}

.m-1p {
  margin: 1%;
}

.mt-1p {
  margin-top: 1%;
}

.mb-1p {
  margin-bottom: 1%;
}

.ml-1p {
  margin-left: 1%;
}

.mr-1p {
  margin-right: 1%;
}

.mt--1p {
  margin-top: -1%;
}

.mb--1p {
  margin-bottom: -1%;
}

.ml--1p {
  margin-left: -1%;
}

.mr--1p {
  margin-right: -1%;
}

.my-1p {
  margin-top: 1%;
  margin-bottom: 1%;
}

.mx-1p {
  margin-left: 1%;
  margin-right: 1%;
}

.mi-1p {
  margin: 1% !important;
}

.mti-1p {
  margin-top: 1% !important;
}

.mbi-1p {
  margin-bottom: 1% !important;
}

.mli-1p {
  margin-left: 1% !important;
}

.mri-1p {
  margin-right: 1% !important;
}

.mti--1p {
  margin-top: -1% !important;
}

.mbi--1p {
  margin-bottom: -1% !important;
}

.mli--1p {
  margin-left: -1% !important;
}

.mri--1p {
  margin-right: -1% !important;
}

.myi-1p {
  margin-top: 1% !important;
  margin-bottom: 1% !important;
}

.mxi-1p {
  margin-left: 1% !important;
  margin-right: 1% !important;
}

.p-1p {
  padding: 1%;
}

.pt-1p {
  padding-top: 1%;
}

.pb-1p {
  padding-bottom: 1%;
}

.pl-1p {
  padding-left: 1%;
}

.pr-1p {
  padding-right: 1%;
}

.py-1p {
  padding-top: 1%;
  padding-bottom: 1%;
}

.px-1p {
  padding-left: 1%;
  padding-right: 1%;
}

.pi-1p {
  padding: 1% !important;
}

.pti-1p {
  padding-top: 1% !important;
}

.pbi-1p {
  padding-bottom: 1% !important;
}

.pli-1p {
  padding-left: 1% !important;
}

.pri-1p {
  padding-right: 1% !important;
}

.pyi-1p {
  padding-top: 1% !important;
  padding-bottom: 1% !important;
}

.pxi-1p {
  padding-left: 1% !important;
  padding-right: 1% !important;
}

tr.p-1p > td {
  padding: 1%;
}

tr.pt-1p > td {
  padding-top: 1%;
}

tr.pb-1p > td {
  padding-bottom: 1%;
}

tr.pl-1p > td {
  padding-left: 1%;
}

tr.pr-1p > td {
  padding-right: 1%;
}

tr.py-1p > td {
  padding-top: 1%;
  padding-bottom: 1%;
}

tr.px-1p > td {
  padding-left: 1%;
  padding-right: 1%;
}

tr.pi-1p > td {
  padding: 1% !important;
}

tr.pti-1p > td {
  padding-top: 1% !important;
}

tr.pbi-1p > td {
  padding-bottom: 1% !important;
}

tr.pli-1p > td {
  padding-left: 1% !important;
}

tr.pri-1p > td {
  padding-right: 1% !important;
}

tr.pyi-1p > td {
  padding-top: 1% !important;
  padding-bottom: 1% !important;
}

tr.pxi-1p > td {
  padding-left: 1% !important;
  padding-right: 1% !important;
}

.m-2p {
  margin: 2%;
}

.mt-2p {
  margin-top: 2%;
}

.mb-2p {
  margin-bottom: 2%;
}

.ml-2p {
  margin-left: 2%;
}

.mr-2p {
  margin-right: 2%;
}

.mt--2p {
  margin-top: -2%;
}

.mb--2p {
  margin-bottom: -2%;
}

.ml--2p {
  margin-left: -2%;
}

.mr--2p {
  margin-right: -2%;
}

.my-2p {
  margin-top: 2%;
  margin-bottom: 2%;
}

.mx-2p {
  margin-left: 2%;
  margin-right: 2%;
}

.mi-2p {
  margin: 2% !important;
}

.mti-2p {
  margin-top: 2% !important;
}

.mbi-2p {
  margin-bottom: 2% !important;
}

.mli-2p {
  margin-left: 2% !important;
}

.mri-2p {
  margin-right: 2% !important;
}

.mti--2p {
  margin-top: -2% !important;
}

.mbi--2p {
  margin-bottom: -2% !important;
}

.mli--2p {
  margin-left: -2% !important;
}

.mri--2p {
  margin-right: -2% !important;
}

.myi-2p {
  margin-top: 2% !important;
  margin-bottom: 2% !important;
}

.mxi-2p {
  margin-left: 2% !important;
  margin-right: 2% !important;
}

.p-2p {
  padding: 2%;
}

.pt-2p {
  padding-top: 2%;
}

.pb-2p {
  padding-bottom: 2%;
}

.pl-2p {
  padding-left: 2%;
}

.pr-2p {
  padding-right: 2%;
}

.py-2p {
  padding-top: 2%;
  padding-bottom: 2%;
}

.px-2p {
  padding-left: 2%;
  padding-right: 2%;
}

.pi-2p {
  padding: 2% !important;
}

.pti-2p {
  padding-top: 2% !important;
}

.pbi-2p {
  padding-bottom: 2% !important;
}

.pli-2p {
  padding-left: 2% !important;
}

.pri-2p {
  padding-right: 2% !important;
}

.pyi-2p {
  padding-top: 2% !important;
  padding-bottom: 2% !important;
}

.pxi-2p {
  padding-left: 2% !important;
  padding-right: 2% !important;
}

tr.p-2p > td {
  padding: 2%;
}

tr.pt-2p > td {
  padding-top: 2%;
}

tr.pb-2p > td {
  padding-bottom: 2%;
}

tr.pl-2p > td {
  padding-left: 2%;
}

tr.pr-2p > td {
  padding-right: 2%;
}

tr.py-2p > td {
  padding-top: 2%;
  padding-bottom: 2%;
}

tr.px-2p > td {
  padding-left: 2%;
  padding-right: 2%;
}

tr.pi-2p > td {
  padding: 2% !important;
}

tr.pti-2p > td {
  padding-top: 2% !important;
}

tr.pbi-2p > td {
  padding-bottom: 2% !important;
}

tr.pli-2p > td {
  padding-left: 2% !important;
}

tr.pri-2p > td {
  padding-right: 2% !important;
}

tr.pyi-2p > td {
  padding-top: 2% !important;
  padding-bottom: 2% !important;
}

tr.pxi-2p > td {
  padding-left: 2% !important;
  padding-right: 2% !important;
}

.m-3p {
  margin: 3%;
}

.mt-3p {
  margin-top: 3%;
}

.mb-3p {
  margin-bottom: 3%;
}

.ml-3p {
  margin-left: 3%;
}

.mr-3p {
  margin-right: 3%;
}

.mt--3p {
  margin-top: -3%;
}

.mb--3p {
  margin-bottom: -3%;
}

.ml--3p {
  margin-left: -3%;
}

.mr--3p {
  margin-right: -3%;
}

.my-3p {
  margin-top: 3%;
  margin-bottom: 3%;
}

.mx-3p {
  margin-left: 3%;
  margin-right: 3%;
}

.mi-3p {
  margin: 3% !important;
}

.mti-3p {
  margin-top: 3% !important;
}

.mbi-3p {
  margin-bottom: 3% !important;
}

.mli-3p {
  margin-left: 3% !important;
}

.mri-3p {
  margin-right: 3% !important;
}

.mti--3p {
  margin-top: -3% !important;
}

.mbi--3p {
  margin-bottom: -3% !important;
}

.mli--3p {
  margin-left: -3% !important;
}

.mri--3p {
  margin-right: -3% !important;
}

.myi-3p {
  margin-top: 3% !important;
  margin-bottom: 3% !important;
}

.mxi-3p {
  margin-left: 3% !important;
  margin-right: 3% !important;
}

.p-3p {
  padding: 3%;
}

.pt-3p {
  padding-top: 3%;
}

.pb-3p {
  padding-bottom: 3%;
}

.pl-3p {
  padding-left: 3%;
}

.pr-3p {
  padding-right: 3%;
}

.py-3p {
  padding-top: 3%;
  padding-bottom: 3%;
}

.px-3p {
  padding-left: 3%;
  padding-right: 3%;
}

.pi-3p {
  padding: 3% !important;
}

.pti-3p {
  padding-top: 3% !important;
}

.pbi-3p {
  padding-bottom: 3% !important;
}

.pli-3p {
  padding-left: 3% !important;
}

.pri-3p {
  padding-right: 3% !important;
}

.pyi-3p {
  padding-top: 3% !important;
  padding-bottom: 3% !important;
}

.pxi-3p {
  padding-left: 3% !important;
  padding-right: 3% !important;
}

tr.p-3p > td {
  padding: 3%;
}

tr.pt-3p > td {
  padding-top: 3%;
}

tr.pb-3p > td {
  padding-bottom: 3%;
}

tr.pl-3p > td {
  padding-left: 3%;
}

tr.pr-3p > td {
  padding-right: 3%;
}

tr.py-3p > td {
  padding-top: 3%;
  padding-bottom: 3%;
}

tr.px-3p > td {
  padding-left: 3%;
  padding-right: 3%;
}

tr.pi-3p > td {
  padding: 3% !important;
}

tr.pti-3p > td {
  padding-top: 3% !important;
}

tr.pbi-3p > td {
  padding-bottom: 3% !important;
}

tr.pli-3p > td {
  padding-left: 3% !important;
}

tr.pri-3p > td {
  padding-right: 3% !important;
}

tr.pyi-3p > td {
  padding-top: 3% !important;
  padding-bottom: 3% !important;
}

tr.pxi-3p > td {
  padding-left: 3% !important;
  padding-right: 3% !important;
}

.m-4p {
  margin: 4%;
}

.mt-4p {
  margin-top: 4%;
}

.mb-4p {
  margin-bottom: 4%;
}

.ml-4p {
  margin-left: 4%;
}

.mr-4p {
  margin-right: 4%;
}

.mt--4p {
  margin-top: -4%;
}

.mb--4p {
  margin-bottom: -4%;
}

.ml--4p {
  margin-left: -4%;
}

.mr--4p {
  margin-right: -4%;
}

.my-4p {
  margin-top: 4%;
  margin-bottom: 4%;
}

.mx-4p {
  margin-left: 4%;
  margin-right: 4%;
}

.mi-4p {
  margin: 4% !important;
}

.mti-4p {
  margin-top: 4% !important;
}

.mbi-4p {
  margin-bottom: 4% !important;
}

.mli-4p {
  margin-left: 4% !important;
}

.mri-4p {
  margin-right: 4% !important;
}

.mti--4p {
  margin-top: -4% !important;
}

.mbi--4p {
  margin-bottom: -4% !important;
}

.mli--4p {
  margin-left: -4% !important;
}

.mri--4p {
  margin-right: -4% !important;
}

.myi-4p {
  margin-top: 4% !important;
  margin-bottom: 4% !important;
}

.mxi-4p {
  margin-left: 4% !important;
  margin-right: 4% !important;
}

.p-4p {
  padding: 4%;
}

.pt-4p {
  padding-top: 4%;
}

.pb-4p {
  padding-bottom: 4%;
}

.pl-4p {
  padding-left: 4%;
}

.pr-4p {
  padding-right: 4%;
}

.py-4p {
  padding-top: 4%;
  padding-bottom: 4%;
}

.px-4p {
  padding-left: 4%;
  padding-right: 4%;
}

.pi-4p {
  padding: 4% !important;
}

.pti-4p {
  padding-top: 4% !important;
}

.pbi-4p {
  padding-bottom: 4% !important;
}

.pli-4p {
  padding-left: 4% !important;
}

.pri-4p {
  padding-right: 4% !important;
}

.pyi-4p {
  padding-top: 4% !important;
  padding-bottom: 4% !important;
}

.pxi-4p {
  padding-left: 4% !important;
  padding-right: 4% !important;
}

tr.p-4p > td {
  padding: 4%;
}

tr.pt-4p > td {
  padding-top: 4%;
}

tr.pb-4p > td {
  padding-bottom: 4%;
}

tr.pl-4p > td {
  padding-left: 4%;
}

tr.pr-4p > td {
  padding-right: 4%;
}

tr.py-4p > td {
  padding-top: 4%;
  padding-bottom: 4%;
}

tr.px-4p > td {
  padding-left: 4%;
  padding-right: 4%;
}

tr.pi-4p > td {
  padding: 4% !important;
}

tr.pti-4p > td {
  padding-top: 4% !important;
}

tr.pbi-4p > td {
  padding-bottom: 4% !important;
}

tr.pli-4p > td {
  padding-left: 4% !important;
}

tr.pri-4p > td {
  padding-right: 4% !important;
}

tr.pyi-4p > td {
  padding-top: 4% !important;
  padding-bottom: 4% !important;
}

tr.pxi-4p > td {
  padding-left: 4% !important;
  padding-right: 4% !important;
}

.m-5p {
  margin: 5%;
}

.mt-5p {
  margin-top: 5%;
}

.mb-5p {
  margin-bottom: 5%;
}

.ml-5p {
  margin-left: 5%;
}

.mr-5p {
  margin-right: 5%;
}

.mt--5p {
  margin-top: -5%;
}

.mb--5p {
  margin-bottom: -5%;
}

.ml--5p {
  margin-left: -5%;
}

.mr--5p {
  margin-right: -5%;
}

.my-5p {
  margin-top: 5%;
  margin-bottom: 5%;
}

.mx-5p {
  margin-left: 5%;
  margin-right: 5%;
}

.mi-5p {
  margin: 5% !important;
}

.mti-5p {
  margin-top: 5% !important;
}

.mbi-5p {
  margin-bottom: 5% !important;
}

.mli-5p {
  margin-left: 5% !important;
}

.mri-5p {
  margin-right: 5% !important;
}

.mti--5p {
  margin-top: -5% !important;
}

.mbi--5p {
  margin-bottom: -5% !important;
}

.mli--5p {
  margin-left: -5% !important;
}

.mri--5p {
  margin-right: -5% !important;
}

.myi-5p {
  margin-top: 5% !important;
  margin-bottom: 5% !important;
}

.mxi-5p {
  margin-left: 5% !important;
  margin-right: 5% !important;
}

.p-5p {
  padding: 5%;
}

.pt-5p {
  padding-top: 5%;
}

.pb-5p {
  padding-bottom: 5%;
}

.pl-5p {
  padding-left: 5%;
}

.pr-5p {
  padding-right: 5%;
}

.py-5p {
  padding-top: 5%;
  padding-bottom: 5%;
}

.px-5p {
  padding-left: 5%;
  padding-right: 5%;
}

.pi-5p {
  padding: 5% !important;
}

.pti-5p {
  padding-top: 5% !important;
}

.pbi-5p {
  padding-bottom: 5% !important;
}

.pli-5p {
  padding-left: 5% !important;
}

.pri-5p {
  padding-right: 5% !important;
}

.pyi-5p {
  padding-top: 5% !important;
  padding-bottom: 5% !important;
}

.pxi-5p {
  padding-left: 5% !important;
  padding-right: 5% !important;
}

tr.p-5p > td {
  padding: 5%;
}

tr.pt-5p > td {
  padding-top: 5%;
}

tr.pb-5p > td {
  padding-bottom: 5%;
}

tr.pl-5p > td {
  padding-left: 5%;
}

tr.pr-5p > td {
  padding-right: 5%;
}

tr.py-5p > td {
  padding-top: 5%;
  padding-bottom: 5%;
}

tr.px-5p > td {
  padding-left: 5%;
  padding-right: 5%;
}

tr.pi-5p > td {
  padding: 5% !important;
}

tr.pti-5p > td {
  padding-top: 5% !important;
}

tr.pbi-5p > td {
  padding-bottom: 5% !important;
}

tr.pli-5p > td {
  padding-left: 5% !important;
}

tr.pri-5p > td {
  padding-right: 5% !important;
}

tr.pyi-5p > td {
  padding-top: 5% !important;
  padding-bottom: 5% !important;
}

tr.pxi-5p > td {
  padding-left: 5% !important;
  padding-right: 5% !important;
}

.m-6p {
  margin: 6%;
}

.mt-6p {
  margin-top: 6%;
}

.mb-6p {
  margin-bottom: 6%;
}

.ml-6p {
  margin-left: 6%;
}

.mr-6p {
  margin-right: 6%;
}

.mt--6p {
  margin-top: -6%;
}

.mb--6p {
  margin-bottom: -6%;
}

.ml--6p {
  margin-left: -6%;
}

.mr--6p {
  margin-right: -6%;
}

.my-6p {
  margin-top: 6%;
  margin-bottom: 6%;
}

.mx-6p {
  margin-left: 6%;
  margin-right: 6%;
}

.mi-6p {
  margin: 6% !important;
}

.mti-6p {
  margin-top: 6% !important;
}

.mbi-6p {
  margin-bottom: 6% !important;
}

.mli-6p {
  margin-left: 6% !important;
}

.mri-6p {
  margin-right: 6% !important;
}

.mti--6p {
  margin-top: -6% !important;
}

.mbi--6p {
  margin-bottom: -6% !important;
}

.mli--6p {
  margin-left: -6% !important;
}

.mri--6p {
  margin-right: -6% !important;
}

.myi-6p {
  margin-top: 6% !important;
  margin-bottom: 6% !important;
}

.mxi-6p {
  margin-left: 6% !important;
  margin-right: 6% !important;
}

.p-6p {
  padding: 6%;
}

.pt-6p {
  padding-top: 6%;
}

.pb-6p {
  padding-bottom: 6%;
}

.pl-6p {
  padding-left: 6%;
}

.pr-6p {
  padding-right: 6%;
}

.py-6p {
  padding-top: 6%;
  padding-bottom: 6%;
}

.px-6p {
  padding-left: 6%;
  padding-right: 6%;
}

.pi-6p {
  padding: 6% !important;
}

.pti-6p {
  padding-top: 6% !important;
}

.pbi-6p {
  padding-bottom: 6% !important;
}

.pli-6p {
  padding-left: 6% !important;
}

.pri-6p {
  padding-right: 6% !important;
}

.pyi-6p {
  padding-top: 6% !important;
  padding-bottom: 6% !important;
}

.pxi-6p {
  padding-left: 6% !important;
  padding-right: 6% !important;
}

tr.p-6p > td {
  padding: 6%;
}

tr.pt-6p > td {
  padding-top: 6%;
}

tr.pb-6p > td {
  padding-bottom: 6%;
}

tr.pl-6p > td {
  padding-left: 6%;
}

tr.pr-6p > td {
  padding-right: 6%;
}

tr.py-6p > td {
  padding-top: 6%;
  padding-bottom: 6%;
}

tr.px-6p > td {
  padding-left: 6%;
  padding-right: 6%;
}

tr.pi-6p > td {
  padding: 6% !important;
}

tr.pti-6p > td {
  padding-top: 6% !important;
}

tr.pbi-6p > td {
  padding-bottom: 6% !important;
}

tr.pli-6p > td {
  padding-left: 6% !important;
}

tr.pri-6p > td {
  padding-right: 6% !important;
}

tr.pyi-6p > td {
  padding-top: 6% !important;
  padding-bottom: 6% !important;
}

tr.pxi-6p > td {
  padding-left: 6% !important;
  padding-right: 6% !important;
}

.m-7p {
  margin: 7%;
}

.mt-7p {
  margin-top: 7%;
}

.mb-7p {
  margin-bottom: 7%;
}

.ml-7p {
  margin-left: 7%;
}

.mr-7p {
  margin-right: 7%;
}

.mt--7p {
  margin-top: -7%;
}

.mb--7p {
  margin-bottom: -7%;
}

.ml--7p {
  margin-left: -7%;
}

.mr--7p {
  margin-right: -7%;
}

.my-7p {
  margin-top: 7%;
  margin-bottom: 7%;
}

.mx-7p {
  margin-left: 7%;
  margin-right: 7%;
}

.mi-7p {
  margin: 7% !important;
}

.mti-7p {
  margin-top: 7% !important;
}

.mbi-7p {
  margin-bottom: 7% !important;
}

.mli-7p {
  margin-left: 7% !important;
}

.mri-7p {
  margin-right: 7% !important;
}

.mti--7p {
  margin-top: -7% !important;
}

.mbi--7p {
  margin-bottom: -7% !important;
}

.mli--7p {
  margin-left: -7% !important;
}

.mri--7p {
  margin-right: -7% !important;
}

.myi-7p {
  margin-top: 7% !important;
  margin-bottom: 7% !important;
}

.mxi-7p {
  margin-left: 7% !important;
  margin-right: 7% !important;
}

.p-7p {
  padding: 7%;
}

.pt-7p {
  padding-top: 7%;
}

.pb-7p {
  padding-bottom: 7%;
}

.pl-7p {
  padding-left: 7%;
}

.pr-7p {
  padding-right: 7%;
}

.py-7p {
  padding-top: 7%;
  padding-bottom: 7%;
}

.px-7p {
  padding-left: 7%;
  padding-right: 7%;
}

.pi-7p {
  padding: 7% !important;
}

.pti-7p {
  padding-top: 7% !important;
}

.pbi-7p {
  padding-bottom: 7% !important;
}

.pli-7p {
  padding-left: 7% !important;
}

.pri-7p {
  padding-right: 7% !important;
}

.pyi-7p {
  padding-top: 7% !important;
  padding-bottom: 7% !important;
}

.pxi-7p {
  padding-left: 7% !important;
  padding-right: 7% !important;
}

tr.p-7p > td {
  padding: 7%;
}

tr.pt-7p > td {
  padding-top: 7%;
}

tr.pb-7p > td {
  padding-bottom: 7%;
}

tr.pl-7p > td {
  padding-left: 7%;
}

tr.pr-7p > td {
  padding-right: 7%;
}

tr.py-7p > td {
  padding-top: 7%;
  padding-bottom: 7%;
}

tr.px-7p > td {
  padding-left: 7%;
  padding-right: 7%;
}

tr.pi-7p > td {
  padding: 7% !important;
}

tr.pti-7p > td {
  padding-top: 7% !important;
}

tr.pbi-7p > td {
  padding-bottom: 7% !important;
}

tr.pli-7p > td {
  padding-left: 7% !important;
}

tr.pri-7p > td {
  padding-right: 7% !important;
}

tr.pyi-7p > td {
  padding-top: 7% !important;
  padding-bottom: 7% !important;
}

tr.pxi-7p > td {
  padding-left: 7% !important;
  padding-right: 7% !important;
}

.m-8p {
  margin: 8%;
}

.mt-8p {
  margin-top: 8%;
}

.mb-8p {
  margin-bottom: 8%;
}

.ml-8p {
  margin-left: 8%;
}

.mr-8p {
  margin-right: 8%;
}

.mt--8p {
  margin-top: -8%;
}

.mb--8p {
  margin-bottom: -8%;
}

.ml--8p {
  margin-left: -8%;
}

.mr--8p {
  margin-right: -8%;
}

.my-8p {
  margin-top: 8%;
  margin-bottom: 8%;
}

.mx-8p {
  margin-left: 8%;
  margin-right: 8%;
}

.mi-8p {
  margin: 8% !important;
}

.mti-8p {
  margin-top: 8% !important;
}

.mbi-8p {
  margin-bottom: 8% !important;
}

.mli-8p {
  margin-left: 8% !important;
}

.mri-8p {
  margin-right: 8% !important;
}

.mti--8p {
  margin-top: -8% !important;
}

.mbi--8p {
  margin-bottom: -8% !important;
}

.mli--8p {
  margin-left: -8% !important;
}

.mri--8p {
  margin-right: -8% !important;
}

.myi-8p {
  margin-top: 8% !important;
  margin-bottom: 8% !important;
}

.mxi-8p {
  margin-left: 8% !important;
  margin-right: 8% !important;
}

.p-8p {
  padding: 8%;
}

.pt-8p {
  padding-top: 8%;
}

.pb-8p {
  padding-bottom: 8%;
}

.pl-8p {
  padding-left: 8%;
}

.pr-8p {
  padding-right: 8%;
}

.py-8p {
  padding-top: 8%;
  padding-bottom: 8%;
}

.px-8p {
  padding-left: 8%;
  padding-right: 8%;
}

.pi-8p {
  padding: 8% !important;
}

.pti-8p {
  padding-top: 8% !important;
}

.pbi-8p {
  padding-bottom: 8% !important;
}

.pli-8p {
  padding-left: 8% !important;
}

.pri-8p {
  padding-right: 8% !important;
}

.pyi-8p {
  padding-top: 8% !important;
  padding-bottom: 8% !important;
}

.pxi-8p {
  padding-left: 8% !important;
  padding-right: 8% !important;
}

tr.p-8p > td {
  padding: 8%;
}

tr.pt-8p > td {
  padding-top: 8%;
}

tr.pb-8p > td {
  padding-bottom: 8%;
}

tr.pl-8p > td {
  padding-left: 8%;
}

tr.pr-8p > td {
  padding-right: 8%;
}

tr.py-8p > td {
  padding-top: 8%;
  padding-bottom: 8%;
}

tr.px-8p > td {
  padding-left: 8%;
  padding-right: 8%;
}

tr.pi-8p > td {
  padding: 8% !important;
}

tr.pti-8p > td {
  padding-top: 8% !important;
}

tr.pbi-8p > td {
  padding-bottom: 8% !important;
}

tr.pli-8p > td {
  padding-left: 8% !important;
}

tr.pri-8p > td {
  padding-right: 8% !important;
}

tr.pyi-8p > td {
  padding-top: 8% !important;
  padding-bottom: 8% !important;
}

tr.pxi-8p > td {
  padding-left: 8% !important;
  padding-right: 8% !important;
}

.m-9p {
  margin: 9%;
}

.mt-9p {
  margin-top: 9%;
}

.mb-9p {
  margin-bottom: 9%;
}

.ml-9p {
  margin-left: 9%;
}

.mr-9p {
  margin-right: 9%;
}

.mt--9p {
  margin-top: -9%;
}

.mb--9p {
  margin-bottom: -9%;
}

.ml--9p {
  margin-left: -9%;
}

.mr--9p {
  margin-right: -9%;
}

.my-9p {
  margin-top: 9%;
  margin-bottom: 9%;
}

.mx-9p {
  margin-left: 9%;
  margin-right: 9%;
}

.mi-9p {
  margin: 9% !important;
}

.mti-9p {
  margin-top: 9% !important;
}

.mbi-9p {
  margin-bottom: 9% !important;
}

.mli-9p {
  margin-left: 9% !important;
}

.mri-9p {
  margin-right: 9% !important;
}

.mti--9p {
  margin-top: -9% !important;
}

.mbi--9p {
  margin-bottom: -9% !important;
}

.mli--9p {
  margin-left: -9% !important;
}

.mri--9p {
  margin-right: -9% !important;
}

.myi-9p {
  margin-top: 9% !important;
  margin-bottom: 9% !important;
}

.mxi-9p {
  margin-left: 9% !important;
  margin-right: 9% !important;
}

.p-9p {
  padding: 9%;
}

.pt-9p {
  padding-top: 9%;
}

.pb-9p {
  padding-bottom: 9%;
}

.pl-9p {
  padding-left: 9%;
}

.pr-9p {
  padding-right: 9%;
}

.py-9p {
  padding-top: 9%;
  padding-bottom: 9%;
}

.px-9p {
  padding-left: 9%;
  padding-right: 9%;
}

.pi-9p {
  padding: 9% !important;
}

.pti-9p {
  padding-top: 9% !important;
}

.pbi-9p {
  padding-bottom: 9% !important;
}

.pli-9p {
  padding-left: 9% !important;
}

.pri-9p {
  padding-right: 9% !important;
}

.pyi-9p {
  padding-top: 9% !important;
  padding-bottom: 9% !important;
}

.pxi-9p {
  padding-left: 9% !important;
  padding-right: 9% !important;
}

tr.p-9p > td {
  padding: 9%;
}

tr.pt-9p > td {
  padding-top: 9%;
}

tr.pb-9p > td {
  padding-bottom: 9%;
}

tr.pl-9p > td {
  padding-left: 9%;
}

tr.pr-9p > td {
  padding-right: 9%;
}

tr.py-9p > td {
  padding-top: 9%;
  padding-bottom: 9%;
}

tr.px-9p > td {
  padding-left: 9%;
  padding-right: 9%;
}

tr.pi-9p > td {
  padding: 9% !important;
}

tr.pti-9p > td {
  padding-top: 9% !important;
}

tr.pbi-9p > td {
  padding-bottom: 9% !important;
}

tr.pli-9p > td {
  padding-left: 9% !important;
}

tr.pri-9p > td {
  padding-right: 9% !important;
}

tr.pyi-9p > td {
  padding-top: 9% !important;
  padding-bottom: 9% !important;
}

tr.pxi-9p > td {
  padding-left: 9% !important;
  padding-right: 9% !important;
}

.m-10p {
  margin: 10%;
}

.mt-10p {
  margin-top: 10%;
}

.mb-10p {
  margin-bottom: 10%;
}

.ml-10p {
  margin-left: 10%;
}

.mr-10p {
  margin-right: 10%;
}

.mt--10p {
  margin-top: -10%;
}

.mb--10p {
  margin-bottom: -10%;
}

.ml--10p {
  margin-left: -10%;
}

.mr--10p {
  margin-right: -10%;
}

.my-10p {
  margin-top: 10%;
  margin-bottom: 10%;
}

.mx-10p {
  margin-left: 10%;
  margin-right: 10%;
}

.mi-10p {
  margin: 10% !important;
}

.mti-10p {
  margin-top: 10% !important;
}

.mbi-10p {
  margin-bottom: 10% !important;
}

.mli-10p {
  margin-left: 10% !important;
}

.mri-10p {
  margin-right: 10% !important;
}

.mti--10p {
  margin-top: -10% !important;
}

.mbi--10p {
  margin-bottom: -10% !important;
}

.mli--10p {
  margin-left: -10% !important;
}

.mri--10p {
  margin-right: -10% !important;
}

.myi-10p {
  margin-top: 10% !important;
  margin-bottom: 10% !important;
}

.mxi-10p {
  margin-left: 10% !important;
  margin-right: 10% !important;
}

.p-10p {
  padding: 10%;
}

.pt-10p {
  padding-top: 10%;
}

.pb-10p {
  padding-bottom: 10%;
}

.pl-10p {
  padding-left: 10%;
}

.pr-10p {
  padding-right: 10%;
}

.py-10p {
  padding-top: 10%;
  padding-bottom: 10%;
}

.px-10p {
  padding-left: 10%;
  padding-right: 10%;
}

.pi-10p {
  padding: 10% !important;
}

.pti-10p {
  padding-top: 10% !important;
}

.pbi-10p {
  padding-bottom: 10% !important;
}

.pli-10p {
  padding-left: 10% !important;
}

.pri-10p {
  padding-right: 10% !important;
}

.pyi-10p {
  padding-top: 10% !important;
  padding-bottom: 10% !important;
}

.pxi-10p {
  padding-left: 10% !important;
  padding-right: 10% !important;
}

tr.p-10p > td {
  padding: 10%;
}

tr.pt-10p > td {
  padding-top: 10%;
}

tr.pb-10p > td {
  padding-bottom: 10%;
}

tr.pl-10p > td {
  padding-left: 10%;
}

tr.pr-10p > td {
  padding-right: 10%;
}

tr.py-10p > td {
  padding-top: 10%;
  padding-bottom: 10%;
}

tr.px-10p > td {
  padding-left: 10%;
  padding-right: 10%;
}

tr.pi-10p > td {
  padding: 10% !important;
}

tr.pti-10p > td {
  padding-top: 10% !important;
}

tr.pbi-10p > td {
  padding-bottom: 10% !important;
}

tr.pli-10p > td {
  padding-left: 10% !important;
}

tr.pri-10p > td {
  padding-right: 10% !important;
}

tr.pyi-10p > td {
  padding-top: 10% !important;
  padding-bottom: 10% !important;
}

tr.pxi-10p > td {
  padding-left: 10% !important;
  padding-right: 10% !important;
}

.m-11p {
  margin: 11%;
}

.mt-11p {
  margin-top: 11%;
}

.mb-11p {
  margin-bottom: 11%;
}

.ml-11p {
  margin-left: 11%;
}

.mr-11p {
  margin-right: 11%;
}

.mt--11p {
  margin-top: -11%;
}

.mb--11p {
  margin-bottom: -11%;
}

.ml--11p {
  margin-left: -11%;
}

.mr--11p {
  margin-right: -11%;
}

.my-11p {
  margin-top: 11%;
  margin-bottom: 11%;
}

.mx-11p {
  margin-left: 11%;
  margin-right: 11%;
}

.mi-11p {
  margin: 11% !important;
}

.mti-11p {
  margin-top: 11% !important;
}

.mbi-11p {
  margin-bottom: 11% !important;
}

.mli-11p {
  margin-left: 11% !important;
}

.mri-11p {
  margin-right: 11% !important;
}

.mti--11p {
  margin-top: -11% !important;
}

.mbi--11p {
  margin-bottom: -11% !important;
}

.mli--11p {
  margin-left: -11% !important;
}

.mri--11p {
  margin-right: -11% !important;
}

.myi-11p {
  margin-top: 11% !important;
  margin-bottom: 11% !important;
}

.mxi-11p {
  margin-left: 11% !important;
  margin-right: 11% !important;
}

.p-11p {
  padding: 11%;
}

.pt-11p {
  padding-top: 11%;
}

.pb-11p {
  padding-bottom: 11%;
}

.pl-11p {
  padding-left: 11%;
}

.pr-11p {
  padding-right: 11%;
}

.py-11p {
  padding-top: 11%;
  padding-bottom: 11%;
}

.px-11p {
  padding-left: 11%;
  padding-right: 11%;
}

.pi-11p {
  padding: 11% !important;
}

.pti-11p {
  padding-top: 11% !important;
}

.pbi-11p {
  padding-bottom: 11% !important;
}

.pli-11p {
  padding-left: 11% !important;
}

.pri-11p {
  padding-right: 11% !important;
}

.pyi-11p {
  padding-top: 11% !important;
  padding-bottom: 11% !important;
}

.pxi-11p {
  padding-left: 11% !important;
  padding-right: 11% !important;
}

tr.p-11p > td {
  padding: 11%;
}

tr.pt-11p > td {
  padding-top: 11%;
}

tr.pb-11p > td {
  padding-bottom: 11%;
}

tr.pl-11p > td {
  padding-left: 11%;
}

tr.pr-11p > td {
  padding-right: 11%;
}

tr.py-11p > td {
  padding-top: 11%;
  padding-bottom: 11%;
}

tr.px-11p > td {
  padding-left: 11%;
  padding-right: 11%;
}

tr.pi-11p > td {
  padding: 11% !important;
}

tr.pti-11p > td {
  padding-top: 11% !important;
}

tr.pbi-11p > td {
  padding-bottom: 11% !important;
}

tr.pli-11p > td {
  padding-left: 11% !important;
}

tr.pri-11p > td {
  padding-right: 11% !important;
}

tr.pyi-11p > td {
  padding-top: 11% !important;
  padding-bottom: 11% !important;
}

tr.pxi-11p > td {
  padding-left: 11% !important;
  padding-right: 11% !important;
}

.m-12p {
  margin: 12%;
}

.mt-12p {
  margin-top: 12%;
}

.mb-12p {
  margin-bottom: 12%;
}

.ml-12p {
  margin-left: 12%;
}

.mr-12p {
  margin-right: 12%;
}

.mt--12p {
  margin-top: -12%;
}

.mb--12p {
  margin-bottom: -12%;
}

.ml--12p {
  margin-left: -12%;
}

.mr--12p {
  margin-right: -12%;
}

.my-12p {
  margin-top: 12%;
  margin-bottom: 12%;
}

.mx-12p {
  margin-left: 12%;
  margin-right: 12%;
}

.mi-12p {
  margin: 12% !important;
}

.mti-12p {
  margin-top: 12% !important;
}

.mbi-12p {
  margin-bottom: 12% !important;
}

.mli-12p {
  margin-left: 12% !important;
}

.mri-12p {
  margin-right: 12% !important;
}

.mti--12p {
  margin-top: -12% !important;
}

.mbi--12p {
  margin-bottom: -12% !important;
}

.mli--12p {
  margin-left: -12% !important;
}

.mri--12p {
  margin-right: -12% !important;
}

.myi-12p {
  margin-top: 12% !important;
  margin-bottom: 12% !important;
}

.mxi-12p {
  margin-left: 12% !important;
  margin-right: 12% !important;
}

.p-12p {
  padding: 12%;
}

.pt-12p {
  padding-top: 12%;
}

.pb-12p {
  padding-bottom: 12%;
}

.pl-12p {
  padding-left: 12%;
}

.pr-12p {
  padding-right: 12%;
}

.py-12p {
  padding-top: 12%;
  padding-bottom: 12%;
}

.px-12p {
  padding-left: 12%;
  padding-right: 12%;
}

.pi-12p {
  padding: 12% !important;
}

.pti-12p {
  padding-top: 12% !important;
}

.pbi-12p {
  padding-bottom: 12% !important;
}

.pli-12p {
  padding-left: 12% !important;
}

.pri-12p {
  padding-right: 12% !important;
}

.pyi-12p {
  padding-top: 12% !important;
  padding-bottom: 12% !important;
}

.pxi-12p {
  padding-left: 12% !important;
  padding-right: 12% !important;
}

tr.p-12p > td {
  padding: 12%;
}

tr.pt-12p > td {
  padding-top: 12%;
}

tr.pb-12p > td {
  padding-bottom: 12%;
}

tr.pl-12p > td {
  padding-left: 12%;
}

tr.pr-12p > td {
  padding-right: 12%;
}

tr.py-12p > td {
  padding-top: 12%;
  padding-bottom: 12%;
}

tr.px-12p > td {
  padding-left: 12%;
  padding-right: 12%;
}

tr.pi-12p > td {
  padding: 12% !important;
}

tr.pti-12p > td {
  padding-top: 12% !important;
}

tr.pbi-12p > td {
  padding-bottom: 12% !important;
}

tr.pli-12p > td {
  padding-left: 12% !important;
}

tr.pri-12p > td {
  padding-right: 12% !important;
}

tr.pyi-12p > td {
  padding-top: 12% !important;
  padding-bottom: 12% !important;
}

tr.pxi-12p > td {
  padding-left: 12% !important;
  padding-right: 12% !important;
}

.m-13p {
  margin: 13%;
}

.mt-13p {
  margin-top: 13%;
}

.mb-13p {
  margin-bottom: 13%;
}

.ml-13p {
  margin-left: 13%;
}

.mr-13p {
  margin-right: 13%;
}

.mt--13p {
  margin-top: -13%;
}

.mb--13p {
  margin-bottom: -13%;
}

.ml--13p {
  margin-left: -13%;
}

.mr--13p {
  margin-right: -13%;
}

.my-13p {
  margin-top: 13%;
  margin-bottom: 13%;
}

.mx-13p {
  margin-left: 13%;
  margin-right: 13%;
}

.mi-13p {
  margin: 13% !important;
}

.mti-13p {
  margin-top: 13% !important;
}

.mbi-13p {
  margin-bottom: 13% !important;
}

.mli-13p {
  margin-left: 13% !important;
}

.mri-13p {
  margin-right: 13% !important;
}

.mti--13p {
  margin-top: -13% !important;
}

.mbi--13p {
  margin-bottom: -13% !important;
}

.mli--13p {
  margin-left: -13% !important;
}

.mri--13p {
  margin-right: -13% !important;
}

.myi-13p {
  margin-top: 13% !important;
  margin-bottom: 13% !important;
}

.mxi-13p {
  margin-left: 13% !important;
  margin-right: 13% !important;
}

.p-13p {
  padding: 13%;
}

.pt-13p {
  padding-top: 13%;
}

.pb-13p {
  padding-bottom: 13%;
}

.pl-13p {
  padding-left: 13%;
}

.pr-13p {
  padding-right: 13%;
}

.py-13p {
  padding-top: 13%;
  padding-bottom: 13%;
}

.px-13p {
  padding-left: 13%;
  padding-right: 13%;
}

.pi-13p {
  padding: 13% !important;
}

.pti-13p {
  padding-top: 13% !important;
}

.pbi-13p {
  padding-bottom: 13% !important;
}

.pli-13p {
  padding-left: 13% !important;
}

.pri-13p {
  padding-right: 13% !important;
}

.pyi-13p {
  padding-top: 13% !important;
  padding-bottom: 13% !important;
}

.pxi-13p {
  padding-left: 13% !important;
  padding-right: 13% !important;
}

tr.p-13p > td {
  padding: 13%;
}

tr.pt-13p > td {
  padding-top: 13%;
}

tr.pb-13p > td {
  padding-bottom: 13%;
}

tr.pl-13p > td {
  padding-left: 13%;
}

tr.pr-13p > td {
  padding-right: 13%;
}

tr.py-13p > td {
  padding-top: 13%;
  padding-bottom: 13%;
}

tr.px-13p > td {
  padding-left: 13%;
  padding-right: 13%;
}

tr.pi-13p > td {
  padding: 13% !important;
}

tr.pti-13p > td {
  padding-top: 13% !important;
}

tr.pbi-13p > td {
  padding-bottom: 13% !important;
}

tr.pli-13p > td {
  padding-left: 13% !important;
}

tr.pri-13p > td {
  padding-right: 13% !important;
}

tr.pyi-13p > td {
  padding-top: 13% !important;
  padding-bottom: 13% !important;
}

tr.pxi-13p > td {
  padding-left: 13% !important;
  padding-right: 13% !important;
}

.m-14p {
  margin: 14%;
}

.mt-14p {
  margin-top: 14%;
}

.mb-14p {
  margin-bottom: 14%;
}

.ml-14p {
  margin-left: 14%;
}

.mr-14p {
  margin-right: 14%;
}

.mt--14p {
  margin-top: -14%;
}

.mb--14p {
  margin-bottom: -14%;
}

.ml--14p {
  margin-left: -14%;
}

.mr--14p {
  margin-right: -14%;
}

.my-14p {
  margin-top: 14%;
  margin-bottom: 14%;
}

.mx-14p {
  margin-left: 14%;
  margin-right: 14%;
}

.mi-14p {
  margin: 14% !important;
}

.mti-14p {
  margin-top: 14% !important;
}

.mbi-14p {
  margin-bottom: 14% !important;
}

.mli-14p {
  margin-left: 14% !important;
}

.mri-14p {
  margin-right: 14% !important;
}

.mti--14p {
  margin-top: -14% !important;
}

.mbi--14p {
  margin-bottom: -14% !important;
}

.mli--14p {
  margin-left: -14% !important;
}

.mri--14p {
  margin-right: -14% !important;
}

.myi-14p {
  margin-top: 14% !important;
  margin-bottom: 14% !important;
}

.mxi-14p {
  margin-left: 14% !important;
  margin-right: 14% !important;
}

.p-14p {
  padding: 14%;
}

.pt-14p {
  padding-top: 14%;
}

.pb-14p {
  padding-bottom: 14%;
}

.pl-14p {
  padding-left: 14%;
}

.pr-14p {
  padding-right: 14%;
}

.py-14p {
  padding-top: 14%;
  padding-bottom: 14%;
}

.px-14p {
  padding-left: 14%;
  padding-right: 14%;
}

.pi-14p {
  padding: 14% !important;
}

.pti-14p {
  padding-top: 14% !important;
}

.pbi-14p {
  padding-bottom: 14% !important;
}

.pli-14p {
  padding-left: 14% !important;
}

.pri-14p {
  padding-right: 14% !important;
}

.pyi-14p {
  padding-top: 14% !important;
  padding-bottom: 14% !important;
}

.pxi-14p {
  padding-left: 14% !important;
  padding-right: 14% !important;
}

tr.p-14p > td {
  padding: 14%;
}

tr.pt-14p > td {
  padding-top: 14%;
}

tr.pb-14p > td {
  padding-bottom: 14%;
}

tr.pl-14p > td {
  padding-left: 14%;
}

tr.pr-14p > td {
  padding-right: 14%;
}

tr.py-14p > td {
  padding-top: 14%;
  padding-bottom: 14%;
}

tr.px-14p > td {
  padding-left: 14%;
  padding-right: 14%;
}

tr.pi-14p > td {
  padding: 14% !important;
}

tr.pti-14p > td {
  padding-top: 14% !important;
}

tr.pbi-14p > td {
  padding-bottom: 14% !important;
}

tr.pli-14p > td {
  padding-left: 14% !important;
}

tr.pri-14p > td {
  padding-right: 14% !important;
}

tr.pyi-14p > td {
  padding-top: 14% !important;
  padding-bottom: 14% !important;
}

tr.pxi-14p > td {
  padding-left: 14% !important;
  padding-right: 14% !important;
}

.m-15p {
  margin: 15%;
}

.mt-15p {
  margin-top: 15%;
}

.mb-15p {
  margin-bottom: 15%;
}

.ml-15p {
  margin-left: 15%;
}

.mr-15p {
  margin-right: 15%;
}

.mt--15p {
  margin-top: -15%;
}

.mb--15p {
  margin-bottom: -15%;
}

.ml--15p {
  margin-left: -15%;
}

.mr--15p {
  margin-right: -15%;
}

.my-15p {
  margin-top: 15%;
  margin-bottom: 15%;
}

.mx-15p {
  margin-left: 15%;
  margin-right: 15%;
}

.mi-15p {
  margin: 15% !important;
}

.mti-15p {
  margin-top: 15% !important;
}

.mbi-15p {
  margin-bottom: 15% !important;
}

.mli-15p {
  margin-left: 15% !important;
}

.mri-15p {
  margin-right: 15% !important;
}

.mti--15p {
  margin-top: -15% !important;
}

.mbi--15p {
  margin-bottom: -15% !important;
}

.mli--15p {
  margin-left: -15% !important;
}

.mri--15p {
  margin-right: -15% !important;
}

.myi-15p {
  margin-top: 15% !important;
  margin-bottom: 15% !important;
}

.mxi-15p {
  margin-left: 15% !important;
  margin-right: 15% !important;
}

.p-15p {
  padding: 15%;
}

.pt-15p {
  padding-top: 15%;
}

.pb-15p {
  padding-bottom: 15%;
}

.pl-15p {
  padding-left: 15%;
}

.pr-15p {
  padding-right: 15%;
}

.py-15p {
  padding-top: 15%;
  padding-bottom: 15%;
}

.px-15p {
  padding-left: 15%;
  padding-right: 15%;
}

.pi-15p {
  padding: 15% !important;
}

.pti-15p {
  padding-top: 15% !important;
}

.pbi-15p {
  padding-bottom: 15% !important;
}

.pli-15p {
  padding-left: 15% !important;
}

.pri-15p {
  padding-right: 15% !important;
}

.pyi-15p {
  padding-top: 15% !important;
  padding-bottom: 15% !important;
}

.pxi-15p {
  padding-left: 15% !important;
  padding-right: 15% !important;
}

tr.p-15p > td {
  padding: 15%;
}

tr.pt-15p > td {
  padding-top: 15%;
}

tr.pb-15p > td {
  padding-bottom: 15%;
}

tr.pl-15p > td {
  padding-left: 15%;
}

tr.pr-15p > td {
  padding-right: 15%;
}

tr.py-15p > td {
  padding-top: 15%;
  padding-bottom: 15%;
}

tr.px-15p > td {
  padding-left: 15%;
  padding-right: 15%;
}

tr.pi-15p > td {
  padding: 15% !important;
}

tr.pti-15p > td {
  padding-top: 15% !important;
}

tr.pbi-15p > td {
  padding-bottom: 15% !important;
}

tr.pli-15p > td {
  padding-left: 15% !important;
}

tr.pri-15p > td {
  padding-right: 15% !important;
}

tr.pyi-15p > td {
  padding-top: 15% !important;
  padding-bottom: 15% !important;
}

tr.pxi-15p > td {
  padding-left: 15% !important;
  padding-right: 15% !important;
}

.m-16p {
  margin: 16%;
}

.mt-16p {
  margin-top: 16%;
}

.mb-16p {
  margin-bottom: 16%;
}

.ml-16p {
  margin-left: 16%;
}

.mr-16p {
  margin-right: 16%;
}

.mt--16p {
  margin-top: -16%;
}

.mb--16p {
  margin-bottom: -16%;
}

.ml--16p {
  margin-left: -16%;
}

.mr--16p {
  margin-right: -16%;
}

.my-16p {
  margin-top: 16%;
  margin-bottom: 16%;
}

.mx-16p {
  margin-left: 16%;
  margin-right: 16%;
}

.mi-16p {
  margin: 16% !important;
}

.mti-16p {
  margin-top: 16% !important;
}

.mbi-16p {
  margin-bottom: 16% !important;
}

.mli-16p {
  margin-left: 16% !important;
}

.mri-16p {
  margin-right: 16% !important;
}

.mti--16p {
  margin-top: -16% !important;
}

.mbi--16p {
  margin-bottom: -16% !important;
}

.mli--16p {
  margin-left: -16% !important;
}

.mri--16p {
  margin-right: -16% !important;
}

.myi-16p {
  margin-top: 16% !important;
  margin-bottom: 16% !important;
}

.mxi-16p {
  margin-left: 16% !important;
  margin-right: 16% !important;
}

.p-16p {
  padding: 16%;
}

.pt-16p {
  padding-top: 16%;
}

.pb-16p {
  padding-bottom: 16%;
}

.pl-16p {
  padding-left: 16%;
}

.pr-16p {
  padding-right: 16%;
}

.py-16p {
  padding-top: 16%;
  padding-bottom: 16%;
}

.px-16p {
  padding-left: 16%;
  padding-right: 16%;
}

.pi-16p {
  padding: 16% !important;
}

.pti-16p {
  padding-top: 16% !important;
}

.pbi-16p {
  padding-bottom: 16% !important;
}

.pli-16p {
  padding-left: 16% !important;
}

.pri-16p {
  padding-right: 16% !important;
}

.pyi-16p {
  padding-top: 16% !important;
  padding-bottom: 16% !important;
}

.pxi-16p {
  padding-left: 16% !important;
  padding-right: 16% !important;
}

tr.p-16p > td {
  padding: 16%;
}

tr.pt-16p > td {
  padding-top: 16%;
}

tr.pb-16p > td {
  padding-bottom: 16%;
}

tr.pl-16p > td {
  padding-left: 16%;
}

tr.pr-16p > td {
  padding-right: 16%;
}

tr.py-16p > td {
  padding-top: 16%;
  padding-bottom: 16%;
}

tr.px-16p > td {
  padding-left: 16%;
  padding-right: 16%;
}

tr.pi-16p > td {
  padding: 16% !important;
}

tr.pti-16p > td {
  padding-top: 16% !important;
}

tr.pbi-16p > td {
  padding-bottom: 16% !important;
}

tr.pli-16p > td {
  padding-left: 16% !important;
}

tr.pri-16p > td {
  padding-right: 16% !important;
}

tr.pyi-16p > td {
  padding-top: 16% !important;
  padding-bottom: 16% !important;
}

tr.pxi-16p > td {
  padding-left: 16% !important;
  padding-right: 16% !important;
}

.m-17p {
  margin: 17%;
}

.mt-17p {
  margin-top: 17%;
}

.mb-17p {
  margin-bottom: 17%;
}

.ml-17p {
  margin-left: 17%;
}

.mr-17p {
  margin-right: 17%;
}

.mt--17p {
  margin-top: -17%;
}

.mb--17p {
  margin-bottom: -17%;
}

.ml--17p {
  margin-left: -17%;
}

.mr--17p {
  margin-right: -17%;
}

.my-17p {
  margin-top: 17%;
  margin-bottom: 17%;
}

.mx-17p {
  margin-left: 17%;
  margin-right: 17%;
}

.mi-17p {
  margin: 17% !important;
}

.mti-17p {
  margin-top: 17% !important;
}

.mbi-17p {
  margin-bottom: 17% !important;
}

.mli-17p {
  margin-left: 17% !important;
}

.mri-17p {
  margin-right: 17% !important;
}

.mti--17p {
  margin-top: -17% !important;
}

.mbi--17p {
  margin-bottom: -17% !important;
}

.mli--17p {
  margin-left: -17% !important;
}

.mri--17p {
  margin-right: -17% !important;
}

.myi-17p {
  margin-top: 17% !important;
  margin-bottom: 17% !important;
}

.mxi-17p {
  margin-left: 17% !important;
  margin-right: 17% !important;
}

.p-17p {
  padding: 17%;
}

.pt-17p {
  padding-top: 17%;
}

.pb-17p {
  padding-bottom: 17%;
}

.pl-17p {
  padding-left: 17%;
}

.pr-17p {
  padding-right: 17%;
}

.py-17p {
  padding-top: 17%;
  padding-bottom: 17%;
}

.px-17p {
  padding-left: 17%;
  padding-right: 17%;
}

.pi-17p {
  padding: 17% !important;
}

.pti-17p {
  padding-top: 17% !important;
}

.pbi-17p {
  padding-bottom: 17% !important;
}

.pli-17p {
  padding-left: 17% !important;
}

.pri-17p {
  padding-right: 17% !important;
}

.pyi-17p {
  padding-top: 17% !important;
  padding-bottom: 17% !important;
}

.pxi-17p {
  padding-left: 17% !important;
  padding-right: 17% !important;
}

tr.p-17p > td {
  padding: 17%;
}

tr.pt-17p > td {
  padding-top: 17%;
}

tr.pb-17p > td {
  padding-bottom: 17%;
}

tr.pl-17p > td {
  padding-left: 17%;
}

tr.pr-17p > td {
  padding-right: 17%;
}

tr.py-17p > td {
  padding-top: 17%;
  padding-bottom: 17%;
}

tr.px-17p > td {
  padding-left: 17%;
  padding-right: 17%;
}

tr.pi-17p > td {
  padding: 17% !important;
}

tr.pti-17p > td {
  padding-top: 17% !important;
}

tr.pbi-17p > td {
  padding-bottom: 17% !important;
}

tr.pli-17p > td {
  padding-left: 17% !important;
}

tr.pri-17p > td {
  padding-right: 17% !important;
}

tr.pyi-17p > td {
  padding-top: 17% !important;
  padding-bottom: 17% !important;
}

tr.pxi-17p > td {
  padding-left: 17% !important;
  padding-right: 17% !important;
}

.m-18p {
  margin: 18%;
}

.mt-18p {
  margin-top: 18%;
}

.mb-18p {
  margin-bottom: 18%;
}

.ml-18p {
  margin-left: 18%;
}

.mr-18p {
  margin-right: 18%;
}

.mt--18p {
  margin-top: -18%;
}

.mb--18p {
  margin-bottom: -18%;
}

.ml--18p {
  margin-left: -18%;
}

.mr--18p {
  margin-right: -18%;
}

.my-18p {
  margin-top: 18%;
  margin-bottom: 18%;
}

.mx-18p {
  margin-left: 18%;
  margin-right: 18%;
}

.mi-18p {
  margin: 18% !important;
}

.mti-18p {
  margin-top: 18% !important;
}

.mbi-18p {
  margin-bottom: 18% !important;
}

.mli-18p {
  margin-left: 18% !important;
}

.mri-18p {
  margin-right: 18% !important;
}

.mti--18p {
  margin-top: -18% !important;
}

.mbi--18p {
  margin-bottom: -18% !important;
}

.mli--18p {
  margin-left: -18% !important;
}

.mri--18p {
  margin-right: -18% !important;
}

.myi-18p {
  margin-top: 18% !important;
  margin-bottom: 18% !important;
}

.mxi-18p {
  margin-left: 18% !important;
  margin-right: 18% !important;
}

.p-18p {
  padding: 18%;
}

.pt-18p {
  padding-top: 18%;
}

.pb-18p {
  padding-bottom: 18%;
}

.pl-18p {
  padding-left: 18%;
}

.pr-18p {
  padding-right: 18%;
}

.py-18p {
  padding-top: 18%;
  padding-bottom: 18%;
}

.px-18p {
  padding-left: 18%;
  padding-right: 18%;
}

.pi-18p {
  padding: 18% !important;
}

.pti-18p {
  padding-top: 18% !important;
}

.pbi-18p {
  padding-bottom: 18% !important;
}

.pli-18p {
  padding-left: 18% !important;
}

.pri-18p {
  padding-right: 18% !important;
}

.pyi-18p {
  padding-top: 18% !important;
  padding-bottom: 18% !important;
}

.pxi-18p {
  padding-left: 18% !important;
  padding-right: 18% !important;
}

tr.p-18p > td {
  padding: 18%;
}

tr.pt-18p > td {
  padding-top: 18%;
}

tr.pb-18p > td {
  padding-bottom: 18%;
}

tr.pl-18p > td {
  padding-left: 18%;
}

tr.pr-18p > td {
  padding-right: 18%;
}

tr.py-18p > td {
  padding-top: 18%;
  padding-bottom: 18%;
}

tr.px-18p > td {
  padding-left: 18%;
  padding-right: 18%;
}

tr.pi-18p > td {
  padding: 18% !important;
}

tr.pti-18p > td {
  padding-top: 18% !important;
}

tr.pbi-18p > td {
  padding-bottom: 18% !important;
}

tr.pli-18p > td {
  padding-left: 18% !important;
}

tr.pri-18p > td {
  padding-right: 18% !important;
}

tr.pyi-18p > td {
  padding-top: 18% !important;
  padding-bottom: 18% !important;
}

tr.pxi-18p > td {
  padding-left: 18% !important;
  padding-right: 18% !important;
}

.m-19p {
  margin: 19%;
}

.mt-19p {
  margin-top: 19%;
}

.mb-19p {
  margin-bottom: 19%;
}

.ml-19p {
  margin-left: 19%;
}

.mr-19p {
  margin-right: 19%;
}

.mt--19p {
  margin-top: -19%;
}

.mb--19p {
  margin-bottom: -19%;
}

.ml--19p {
  margin-left: -19%;
}

.mr--19p {
  margin-right: -19%;
}

.my-19p {
  margin-top: 19%;
  margin-bottom: 19%;
}

.mx-19p {
  margin-left: 19%;
  margin-right: 19%;
}

.mi-19p {
  margin: 19% !important;
}

.mti-19p {
  margin-top: 19% !important;
}

.mbi-19p {
  margin-bottom: 19% !important;
}

.mli-19p {
  margin-left: 19% !important;
}

.mri-19p {
  margin-right: 19% !important;
}

.mti--19p {
  margin-top: -19% !important;
}

.mbi--19p {
  margin-bottom: -19% !important;
}

.mli--19p {
  margin-left: -19% !important;
}

.mri--19p {
  margin-right: -19% !important;
}

.myi-19p {
  margin-top: 19% !important;
  margin-bottom: 19% !important;
}

.mxi-19p {
  margin-left: 19% !important;
  margin-right: 19% !important;
}

.p-19p {
  padding: 19%;
}

.pt-19p {
  padding-top: 19%;
}

.pb-19p {
  padding-bottom: 19%;
}

.pl-19p {
  padding-left: 19%;
}

.pr-19p {
  padding-right: 19%;
}

.py-19p {
  padding-top: 19%;
  padding-bottom: 19%;
}

.px-19p {
  padding-left: 19%;
  padding-right: 19%;
}

.pi-19p {
  padding: 19% !important;
}

.pti-19p {
  padding-top: 19% !important;
}

.pbi-19p {
  padding-bottom: 19% !important;
}

.pli-19p {
  padding-left: 19% !important;
}

.pri-19p {
  padding-right: 19% !important;
}

.pyi-19p {
  padding-top: 19% !important;
  padding-bottom: 19% !important;
}

.pxi-19p {
  padding-left: 19% !important;
  padding-right: 19% !important;
}

tr.p-19p > td {
  padding: 19%;
}

tr.pt-19p > td {
  padding-top: 19%;
}

tr.pb-19p > td {
  padding-bottom: 19%;
}

tr.pl-19p > td {
  padding-left: 19%;
}

tr.pr-19p > td {
  padding-right: 19%;
}

tr.py-19p > td {
  padding-top: 19%;
  padding-bottom: 19%;
}

tr.px-19p > td {
  padding-left: 19%;
  padding-right: 19%;
}

tr.pi-19p > td {
  padding: 19% !important;
}

tr.pti-19p > td {
  padding-top: 19% !important;
}

tr.pbi-19p > td {
  padding-bottom: 19% !important;
}

tr.pli-19p > td {
  padding-left: 19% !important;
}

tr.pri-19p > td {
  padding-right: 19% !important;
}

tr.pyi-19p > td {
  padding-top: 19% !important;
  padding-bottom: 19% !important;
}

tr.pxi-19p > td {
  padding-left: 19% !important;
  padding-right: 19% !important;
}

.m-20p {
  margin: 20%;
}

.mt-20p {
  margin-top: 20%;
}

.mb-20p {
  margin-bottom: 20%;
}

.ml-20p {
  margin-left: 20%;
}

.mr-20p {
  margin-right: 20%;
}

.mt--20p {
  margin-top: -20%;
}

.mb--20p {
  margin-bottom: -20%;
}

.ml--20p {
  margin-left: -20%;
}

.mr--20p {
  margin-right: -20%;
}

.my-20p {
  margin-top: 20%;
  margin-bottom: 20%;
}

.mx-20p {
  margin-left: 20%;
  margin-right: 20%;
}

.mi-20p {
  margin: 20% !important;
}

.mti-20p {
  margin-top: 20% !important;
}

.mbi-20p {
  margin-bottom: 20% !important;
}

.mli-20p {
  margin-left: 20% !important;
}

.mri-20p {
  margin-right: 20% !important;
}

.mti--20p {
  margin-top: -20% !important;
}

.mbi--20p {
  margin-bottom: -20% !important;
}

.mli--20p {
  margin-left: -20% !important;
}

.mri--20p {
  margin-right: -20% !important;
}

.myi-20p {
  margin-top: 20% !important;
  margin-bottom: 20% !important;
}

.mxi-20p {
  margin-left: 20% !important;
  margin-right: 20% !important;
}

.p-20p {
  padding: 20%;
}

.pt-20p {
  padding-top: 20%;
}

.pb-20p {
  padding-bottom: 20%;
}

.pl-20p {
  padding-left: 20%;
}

.pr-20p {
  padding-right: 20%;
}

.py-20p {
  padding-top: 20%;
  padding-bottom: 20%;
}

.px-20p {
  padding-left: 20%;
  padding-right: 20%;
}

.pi-20p {
  padding: 20% !important;
}

.pti-20p {
  padding-top: 20% !important;
}

.pbi-20p {
  padding-bottom: 20% !important;
}

.pli-20p {
  padding-left: 20% !important;
}

.pri-20p {
  padding-right: 20% !important;
}

.pyi-20p {
  padding-top: 20% !important;
  padding-bottom: 20% !important;
}

.pxi-20p {
  padding-left: 20% !important;
  padding-right: 20% !important;
}

tr.p-20p > td {
  padding: 20%;
}

tr.pt-20p > td {
  padding-top: 20%;
}

tr.pb-20p > td {
  padding-bottom: 20%;
}

tr.pl-20p > td {
  padding-left: 20%;
}

tr.pr-20p > td {
  padding-right: 20%;
}

tr.py-20p > td {
  padding-top: 20%;
  padding-bottom: 20%;
}

tr.px-20p > td {
  padding-left: 20%;
  padding-right: 20%;
}

tr.pi-20p > td {
  padding: 20% !important;
}

tr.pti-20p > td {
  padding-top: 20% !important;
}

tr.pbi-20p > td {
  padding-bottom: 20% !important;
}

tr.pli-20p > td {
  padding-left: 20% !important;
}

tr.pri-20p > td {
  padding-right: 20% !important;
}

tr.pyi-20p > td {
  padding-top: 20% !important;
  padding-bottom: 20% !important;
}

tr.pxi-20p > td {
  padding-left: 20% !important;
  padding-right: 20% !important;
}

.m-21p {
  margin: 21%;
}

.mt-21p {
  margin-top: 21%;
}

.mb-21p {
  margin-bottom: 21%;
}

.ml-21p {
  margin-left: 21%;
}

.mr-21p {
  margin-right: 21%;
}

.mt--21p {
  margin-top: -21%;
}

.mb--21p {
  margin-bottom: -21%;
}

.ml--21p {
  margin-left: -21%;
}

.mr--21p {
  margin-right: -21%;
}

.my-21p {
  margin-top: 21%;
  margin-bottom: 21%;
}

.mx-21p {
  margin-left: 21%;
  margin-right: 21%;
}

.mi-21p {
  margin: 21% !important;
}

.mti-21p {
  margin-top: 21% !important;
}

.mbi-21p {
  margin-bottom: 21% !important;
}

.mli-21p {
  margin-left: 21% !important;
}

.mri-21p {
  margin-right: 21% !important;
}

.mti--21p {
  margin-top: -21% !important;
}

.mbi--21p {
  margin-bottom: -21% !important;
}

.mli--21p {
  margin-left: -21% !important;
}

.mri--21p {
  margin-right: -21% !important;
}

.myi-21p {
  margin-top: 21% !important;
  margin-bottom: 21% !important;
}

.mxi-21p {
  margin-left: 21% !important;
  margin-right: 21% !important;
}

.p-21p {
  padding: 21%;
}

.pt-21p {
  padding-top: 21%;
}

.pb-21p {
  padding-bottom: 21%;
}

.pl-21p {
  padding-left: 21%;
}

.pr-21p {
  padding-right: 21%;
}

.py-21p {
  padding-top: 21%;
  padding-bottom: 21%;
}

.px-21p {
  padding-left: 21%;
  padding-right: 21%;
}

.pi-21p {
  padding: 21% !important;
}

.pti-21p {
  padding-top: 21% !important;
}

.pbi-21p {
  padding-bottom: 21% !important;
}

.pli-21p {
  padding-left: 21% !important;
}

.pri-21p {
  padding-right: 21% !important;
}

.pyi-21p {
  padding-top: 21% !important;
  padding-bottom: 21% !important;
}

.pxi-21p {
  padding-left: 21% !important;
  padding-right: 21% !important;
}

tr.p-21p > td {
  padding: 21%;
}

tr.pt-21p > td {
  padding-top: 21%;
}

tr.pb-21p > td {
  padding-bottom: 21%;
}

tr.pl-21p > td {
  padding-left: 21%;
}

tr.pr-21p > td {
  padding-right: 21%;
}

tr.py-21p > td {
  padding-top: 21%;
  padding-bottom: 21%;
}

tr.px-21p > td {
  padding-left: 21%;
  padding-right: 21%;
}

tr.pi-21p > td {
  padding: 21% !important;
}

tr.pti-21p > td {
  padding-top: 21% !important;
}

tr.pbi-21p > td {
  padding-bottom: 21% !important;
}

tr.pli-21p > td {
  padding-left: 21% !important;
}

tr.pri-21p > td {
  padding-right: 21% !important;
}

tr.pyi-21p > td {
  padding-top: 21% !important;
  padding-bottom: 21% !important;
}

tr.pxi-21p > td {
  padding-left: 21% !important;
  padding-right: 21% !important;
}

.m-22p {
  margin: 22%;
}

.mt-22p {
  margin-top: 22%;
}

.mb-22p {
  margin-bottom: 22%;
}

.ml-22p {
  margin-left: 22%;
}

.mr-22p {
  margin-right: 22%;
}

.mt--22p {
  margin-top: -22%;
}

.mb--22p {
  margin-bottom: -22%;
}

.ml--22p {
  margin-left: -22%;
}

.mr--22p {
  margin-right: -22%;
}

.my-22p {
  margin-top: 22%;
  margin-bottom: 22%;
}

.mx-22p {
  margin-left: 22%;
  margin-right: 22%;
}

.mi-22p {
  margin: 22% !important;
}

.mti-22p {
  margin-top: 22% !important;
}

.mbi-22p {
  margin-bottom: 22% !important;
}

.mli-22p {
  margin-left: 22% !important;
}

.mri-22p {
  margin-right: 22% !important;
}

.mti--22p {
  margin-top: -22% !important;
}

.mbi--22p {
  margin-bottom: -22% !important;
}

.mli--22p {
  margin-left: -22% !important;
}

.mri--22p {
  margin-right: -22% !important;
}

.myi-22p {
  margin-top: 22% !important;
  margin-bottom: 22% !important;
}

.mxi-22p {
  margin-left: 22% !important;
  margin-right: 22% !important;
}

.p-22p {
  padding: 22%;
}

.pt-22p {
  padding-top: 22%;
}

.pb-22p {
  padding-bottom: 22%;
}

.pl-22p {
  padding-left: 22%;
}

.pr-22p {
  padding-right: 22%;
}

.py-22p {
  padding-top: 22%;
  padding-bottom: 22%;
}

.px-22p {
  padding-left: 22%;
  padding-right: 22%;
}

.pi-22p {
  padding: 22% !important;
}

.pti-22p {
  padding-top: 22% !important;
}

.pbi-22p {
  padding-bottom: 22% !important;
}

.pli-22p {
  padding-left: 22% !important;
}

.pri-22p {
  padding-right: 22% !important;
}

.pyi-22p {
  padding-top: 22% !important;
  padding-bottom: 22% !important;
}

.pxi-22p {
  padding-left: 22% !important;
  padding-right: 22% !important;
}

tr.p-22p > td {
  padding: 22%;
}

tr.pt-22p > td {
  padding-top: 22%;
}

tr.pb-22p > td {
  padding-bottom: 22%;
}

tr.pl-22p > td {
  padding-left: 22%;
}

tr.pr-22p > td {
  padding-right: 22%;
}

tr.py-22p > td {
  padding-top: 22%;
  padding-bottom: 22%;
}

tr.px-22p > td {
  padding-left: 22%;
  padding-right: 22%;
}

tr.pi-22p > td {
  padding: 22% !important;
}

tr.pti-22p > td {
  padding-top: 22% !important;
}

tr.pbi-22p > td {
  padding-bottom: 22% !important;
}

tr.pli-22p > td {
  padding-left: 22% !important;
}

tr.pri-22p > td {
  padding-right: 22% !important;
}

tr.pyi-22p > td {
  padding-top: 22% !important;
  padding-bottom: 22% !important;
}

tr.pxi-22p > td {
  padding-left: 22% !important;
  padding-right: 22% !important;
}

.m-23p {
  margin: 23%;
}

.mt-23p {
  margin-top: 23%;
}

.mb-23p {
  margin-bottom: 23%;
}

.ml-23p {
  margin-left: 23%;
}

.mr-23p {
  margin-right: 23%;
}

.mt--23p {
  margin-top: -23%;
}

.mb--23p {
  margin-bottom: -23%;
}

.ml--23p {
  margin-left: -23%;
}

.mr--23p {
  margin-right: -23%;
}

.my-23p {
  margin-top: 23%;
  margin-bottom: 23%;
}

.mx-23p {
  margin-left: 23%;
  margin-right: 23%;
}

.mi-23p {
  margin: 23% !important;
}

.mti-23p {
  margin-top: 23% !important;
}

.mbi-23p {
  margin-bottom: 23% !important;
}

.mli-23p {
  margin-left: 23% !important;
}

.mri-23p {
  margin-right: 23% !important;
}

.mti--23p {
  margin-top: -23% !important;
}

.mbi--23p {
  margin-bottom: -23% !important;
}

.mli--23p {
  margin-left: -23% !important;
}

.mri--23p {
  margin-right: -23% !important;
}

.myi-23p {
  margin-top: 23% !important;
  margin-bottom: 23% !important;
}

.mxi-23p {
  margin-left: 23% !important;
  margin-right: 23% !important;
}

.p-23p {
  padding: 23%;
}

.pt-23p {
  padding-top: 23%;
}

.pb-23p {
  padding-bottom: 23%;
}

.pl-23p {
  padding-left: 23%;
}

.pr-23p {
  padding-right: 23%;
}

.py-23p {
  padding-top: 23%;
  padding-bottom: 23%;
}

.px-23p {
  padding-left: 23%;
  padding-right: 23%;
}

.pi-23p {
  padding: 23% !important;
}

.pti-23p {
  padding-top: 23% !important;
}

.pbi-23p {
  padding-bottom: 23% !important;
}

.pli-23p {
  padding-left: 23% !important;
}

.pri-23p {
  padding-right: 23% !important;
}

.pyi-23p {
  padding-top: 23% !important;
  padding-bottom: 23% !important;
}

.pxi-23p {
  padding-left: 23% !important;
  padding-right: 23% !important;
}

tr.p-23p > td {
  padding: 23%;
}

tr.pt-23p > td {
  padding-top: 23%;
}

tr.pb-23p > td {
  padding-bottom: 23%;
}

tr.pl-23p > td {
  padding-left: 23%;
}

tr.pr-23p > td {
  padding-right: 23%;
}

tr.py-23p > td {
  padding-top: 23%;
  padding-bottom: 23%;
}

tr.px-23p > td {
  padding-left: 23%;
  padding-right: 23%;
}

tr.pi-23p > td {
  padding: 23% !important;
}

tr.pti-23p > td {
  padding-top: 23% !important;
}

tr.pbi-23p > td {
  padding-bottom: 23% !important;
}

tr.pli-23p > td {
  padding-left: 23% !important;
}

tr.pri-23p > td {
  padding-right: 23% !important;
}

tr.pyi-23p > td {
  padding-top: 23% !important;
  padding-bottom: 23% !important;
}

tr.pxi-23p > td {
  padding-left: 23% !important;
  padding-right: 23% !important;
}

.m-24p {
  margin: 24%;
}

.mt-24p {
  margin-top: 24%;
}

.mb-24p {
  margin-bottom: 24%;
}

.ml-24p {
  margin-left: 24%;
}

.mr-24p {
  margin-right: 24%;
}

.mt--24p {
  margin-top: -24%;
}

.mb--24p {
  margin-bottom: -24%;
}

.ml--24p {
  margin-left: -24%;
}

.mr--24p {
  margin-right: -24%;
}

.my-24p {
  margin-top: 24%;
  margin-bottom: 24%;
}

.mx-24p {
  margin-left: 24%;
  margin-right: 24%;
}

.mi-24p {
  margin: 24% !important;
}

.mti-24p {
  margin-top: 24% !important;
}

.mbi-24p {
  margin-bottom: 24% !important;
}

.mli-24p {
  margin-left: 24% !important;
}

.mri-24p {
  margin-right: 24% !important;
}

.mti--24p {
  margin-top: -24% !important;
}

.mbi--24p {
  margin-bottom: -24% !important;
}

.mli--24p {
  margin-left: -24% !important;
}

.mri--24p {
  margin-right: -24% !important;
}

.myi-24p {
  margin-top: 24% !important;
  margin-bottom: 24% !important;
}

.mxi-24p {
  margin-left: 24% !important;
  margin-right: 24% !important;
}

.p-24p {
  padding: 24%;
}

.pt-24p {
  padding-top: 24%;
}

.pb-24p {
  padding-bottom: 24%;
}

.pl-24p {
  padding-left: 24%;
}

.pr-24p {
  padding-right: 24%;
}

.py-24p {
  padding-top: 24%;
  padding-bottom: 24%;
}

.px-24p {
  padding-left: 24%;
  padding-right: 24%;
}

.pi-24p {
  padding: 24% !important;
}

.pti-24p {
  padding-top: 24% !important;
}

.pbi-24p {
  padding-bottom: 24% !important;
}

.pli-24p {
  padding-left: 24% !important;
}

.pri-24p {
  padding-right: 24% !important;
}

.pyi-24p {
  padding-top: 24% !important;
  padding-bottom: 24% !important;
}

.pxi-24p {
  padding-left: 24% !important;
  padding-right: 24% !important;
}

tr.p-24p > td {
  padding: 24%;
}

tr.pt-24p > td {
  padding-top: 24%;
}

tr.pb-24p > td {
  padding-bottom: 24%;
}

tr.pl-24p > td {
  padding-left: 24%;
}

tr.pr-24p > td {
  padding-right: 24%;
}

tr.py-24p > td {
  padding-top: 24%;
  padding-bottom: 24%;
}

tr.px-24p > td {
  padding-left: 24%;
  padding-right: 24%;
}

tr.pi-24p > td {
  padding: 24% !important;
}

tr.pti-24p > td {
  padding-top: 24% !important;
}

tr.pbi-24p > td {
  padding-bottom: 24% !important;
}

tr.pli-24p > td {
  padding-left: 24% !important;
}

tr.pri-24p > td {
  padding-right: 24% !important;
}

tr.pyi-24p > td {
  padding-top: 24% !important;
  padding-bottom: 24% !important;
}

tr.pxi-24p > td {
  padding-left: 24% !important;
  padding-right: 24% !important;
}

.m-25p {
  margin: 25%;
}

.mt-25p {
  margin-top: 25%;
}

.mb-25p {
  margin-bottom: 25%;
}

.ml-25p {
  margin-left: 25%;
}

.mr-25p {
  margin-right: 25%;
}

.mt--25p {
  margin-top: -25%;
}

.mb--25p {
  margin-bottom: -25%;
}

.ml--25p {
  margin-left: -25%;
}

.mr--25p {
  margin-right: -25%;
}

.my-25p {
  margin-top: 25%;
  margin-bottom: 25%;
}

.mx-25p {
  margin-left: 25%;
  margin-right: 25%;
}

.mi-25p {
  margin: 25% !important;
}

.mti-25p {
  margin-top: 25% !important;
}

.mbi-25p {
  margin-bottom: 25% !important;
}

.mli-25p {
  margin-left: 25% !important;
}

.mri-25p {
  margin-right: 25% !important;
}

.mti--25p {
  margin-top: -25% !important;
}

.mbi--25p {
  margin-bottom: -25% !important;
}

.mli--25p {
  margin-left: -25% !important;
}

.mri--25p {
  margin-right: -25% !important;
}

.myi-25p {
  margin-top: 25% !important;
  margin-bottom: 25% !important;
}

.mxi-25p {
  margin-left: 25% !important;
  margin-right: 25% !important;
}

.p-25p {
  padding: 25%;
}

.pt-25p {
  padding-top: 25%;
}

.pb-25p {
  padding-bottom: 25%;
}

.pl-25p {
  padding-left: 25%;
}

.pr-25p {
  padding-right: 25%;
}

.py-25p {
  padding-top: 25%;
  padding-bottom: 25%;
}

.px-25p {
  padding-left: 25%;
  padding-right: 25%;
}

.pi-25p {
  padding: 25% !important;
}

.pti-25p {
  padding-top: 25% !important;
}

.pbi-25p {
  padding-bottom: 25% !important;
}

.pli-25p {
  padding-left: 25% !important;
}

.pri-25p {
  padding-right: 25% !important;
}

.pyi-25p {
  padding-top: 25% !important;
  padding-bottom: 25% !important;
}

.pxi-25p {
  padding-left: 25% !important;
  padding-right: 25% !important;
}

tr.p-25p > td {
  padding: 25%;
}

tr.pt-25p > td {
  padding-top: 25%;
}

tr.pb-25p > td {
  padding-bottom: 25%;
}

tr.pl-25p > td {
  padding-left: 25%;
}

tr.pr-25p > td {
  padding-right: 25%;
}

tr.py-25p > td {
  padding-top: 25%;
  padding-bottom: 25%;
}

tr.px-25p > td {
  padding-left: 25%;
  padding-right: 25%;
}

tr.pi-25p > td {
  padding: 25% !important;
}

tr.pti-25p > td {
  padding-top: 25% !important;
}

tr.pbi-25p > td {
  padding-bottom: 25% !important;
}

tr.pli-25p > td {
  padding-left: 25% !important;
}

tr.pri-25p > td {
  padding-right: 25% !important;
}

tr.pyi-25p > td {
  padding-top: 25% !important;
  padding-bottom: 25% !important;
}

tr.pxi-25p > td {
  padding-left: 25% !important;
  padding-right: 25% !important;
}

.m-26p {
  margin: 26%;
}

.mt-26p {
  margin-top: 26%;
}

.mb-26p {
  margin-bottom: 26%;
}

.ml-26p {
  margin-left: 26%;
}

.mr-26p {
  margin-right: 26%;
}

.mt--26p {
  margin-top: -26%;
}

.mb--26p {
  margin-bottom: -26%;
}

.ml--26p {
  margin-left: -26%;
}

.mr--26p {
  margin-right: -26%;
}

.my-26p {
  margin-top: 26%;
  margin-bottom: 26%;
}

.mx-26p {
  margin-left: 26%;
  margin-right: 26%;
}

.mi-26p {
  margin: 26% !important;
}

.mti-26p {
  margin-top: 26% !important;
}

.mbi-26p {
  margin-bottom: 26% !important;
}

.mli-26p {
  margin-left: 26% !important;
}

.mri-26p {
  margin-right: 26% !important;
}

.mti--26p {
  margin-top: -26% !important;
}

.mbi--26p {
  margin-bottom: -26% !important;
}

.mli--26p {
  margin-left: -26% !important;
}

.mri--26p {
  margin-right: -26% !important;
}

.myi-26p {
  margin-top: 26% !important;
  margin-bottom: 26% !important;
}

.mxi-26p {
  margin-left: 26% !important;
  margin-right: 26% !important;
}

.p-26p {
  padding: 26%;
}

.pt-26p {
  padding-top: 26%;
}

.pb-26p {
  padding-bottom: 26%;
}

.pl-26p {
  padding-left: 26%;
}

.pr-26p {
  padding-right: 26%;
}

.py-26p {
  padding-top: 26%;
  padding-bottom: 26%;
}

.px-26p {
  padding-left: 26%;
  padding-right: 26%;
}

.pi-26p {
  padding: 26% !important;
}

.pti-26p {
  padding-top: 26% !important;
}

.pbi-26p {
  padding-bottom: 26% !important;
}

.pli-26p {
  padding-left: 26% !important;
}

.pri-26p {
  padding-right: 26% !important;
}

.pyi-26p {
  padding-top: 26% !important;
  padding-bottom: 26% !important;
}

.pxi-26p {
  padding-left: 26% !important;
  padding-right: 26% !important;
}

tr.p-26p > td {
  padding: 26%;
}

tr.pt-26p > td {
  padding-top: 26%;
}

tr.pb-26p > td {
  padding-bottom: 26%;
}

tr.pl-26p > td {
  padding-left: 26%;
}

tr.pr-26p > td {
  padding-right: 26%;
}

tr.py-26p > td {
  padding-top: 26%;
  padding-bottom: 26%;
}

tr.px-26p > td {
  padding-left: 26%;
  padding-right: 26%;
}

tr.pi-26p > td {
  padding: 26% !important;
}

tr.pti-26p > td {
  padding-top: 26% !important;
}

tr.pbi-26p > td {
  padding-bottom: 26% !important;
}

tr.pli-26p > td {
  padding-left: 26% !important;
}

tr.pri-26p > td {
  padding-right: 26% !important;
}

tr.pyi-26p > td {
  padding-top: 26% !important;
  padding-bottom: 26% !important;
}

tr.pxi-26p > td {
  padding-left: 26% !important;
  padding-right: 26% !important;
}

.m-27p {
  margin: 27%;
}

.mt-27p {
  margin-top: 27%;
}

.mb-27p {
  margin-bottom: 27%;
}

.ml-27p {
  margin-left: 27%;
}

.mr-27p {
  margin-right: 27%;
}

.mt--27p {
  margin-top: -27%;
}

.mb--27p {
  margin-bottom: -27%;
}

.ml--27p {
  margin-left: -27%;
}

.mr--27p {
  margin-right: -27%;
}

.my-27p {
  margin-top: 27%;
  margin-bottom: 27%;
}

.mx-27p {
  margin-left: 27%;
  margin-right: 27%;
}

.mi-27p {
  margin: 27% !important;
}

.mti-27p {
  margin-top: 27% !important;
}

.mbi-27p {
  margin-bottom: 27% !important;
}

.mli-27p {
  margin-left: 27% !important;
}

.mri-27p {
  margin-right: 27% !important;
}

.mti--27p {
  margin-top: -27% !important;
}

.mbi--27p {
  margin-bottom: -27% !important;
}

.mli--27p {
  margin-left: -27% !important;
}

.mri--27p {
  margin-right: -27% !important;
}

.myi-27p {
  margin-top: 27% !important;
  margin-bottom: 27% !important;
}

.mxi-27p {
  margin-left: 27% !important;
  margin-right: 27% !important;
}

.p-27p {
  padding: 27%;
}

.pt-27p {
  padding-top: 27%;
}

.pb-27p {
  padding-bottom: 27%;
}

.pl-27p {
  padding-left: 27%;
}

.pr-27p {
  padding-right: 27%;
}

.py-27p {
  padding-top: 27%;
  padding-bottom: 27%;
}

.px-27p {
  padding-left: 27%;
  padding-right: 27%;
}

.pi-27p {
  padding: 27% !important;
}

.pti-27p {
  padding-top: 27% !important;
}

.pbi-27p {
  padding-bottom: 27% !important;
}

.pli-27p {
  padding-left: 27% !important;
}

.pri-27p {
  padding-right: 27% !important;
}

.pyi-27p {
  padding-top: 27% !important;
  padding-bottom: 27% !important;
}

.pxi-27p {
  padding-left: 27% !important;
  padding-right: 27% !important;
}

tr.p-27p > td {
  padding: 27%;
}

tr.pt-27p > td {
  padding-top: 27%;
}

tr.pb-27p > td {
  padding-bottom: 27%;
}

tr.pl-27p > td {
  padding-left: 27%;
}

tr.pr-27p > td {
  padding-right: 27%;
}

tr.py-27p > td {
  padding-top: 27%;
  padding-bottom: 27%;
}

tr.px-27p > td {
  padding-left: 27%;
  padding-right: 27%;
}

tr.pi-27p > td {
  padding: 27% !important;
}

tr.pti-27p > td {
  padding-top: 27% !important;
}

tr.pbi-27p > td {
  padding-bottom: 27% !important;
}

tr.pli-27p > td {
  padding-left: 27% !important;
}

tr.pri-27p > td {
  padding-right: 27% !important;
}

tr.pyi-27p > td {
  padding-top: 27% !important;
  padding-bottom: 27% !important;
}

tr.pxi-27p > td {
  padding-left: 27% !important;
  padding-right: 27% !important;
}

.m-28p {
  margin: 28%;
}

.mt-28p {
  margin-top: 28%;
}

.mb-28p {
  margin-bottom: 28%;
}

.ml-28p {
  margin-left: 28%;
}

.mr-28p {
  margin-right: 28%;
}

.mt--28p {
  margin-top: -28%;
}

.mb--28p {
  margin-bottom: -28%;
}

.ml--28p {
  margin-left: -28%;
}

.mr--28p {
  margin-right: -28%;
}

.my-28p {
  margin-top: 28%;
  margin-bottom: 28%;
}

.mx-28p {
  margin-left: 28%;
  margin-right: 28%;
}

.mi-28p {
  margin: 28% !important;
}

.mti-28p {
  margin-top: 28% !important;
}

.mbi-28p {
  margin-bottom: 28% !important;
}

.mli-28p {
  margin-left: 28% !important;
}

.mri-28p {
  margin-right: 28% !important;
}

.mti--28p {
  margin-top: -28% !important;
}

.mbi--28p {
  margin-bottom: -28% !important;
}

.mli--28p {
  margin-left: -28% !important;
}

.mri--28p {
  margin-right: -28% !important;
}

.myi-28p {
  margin-top: 28% !important;
  margin-bottom: 28% !important;
}

.mxi-28p {
  margin-left: 28% !important;
  margin-right: 28% !important;
}

.p-28p {
  padding: 28%;
}

.pt-28p {
  padding-top: 28%;
}

.pb-28p {
  padding-bottom: 28%;
}

.pl-28p {
  padding-left: 28%;
}

.pr-28p {
  padding-right: 28%;
}

.py-28p {
  padding-top: 28%;
  padding-bottom: 28%;
}

.px-28p {
  padding-left: 28%;
  padding-right: 28%;
}

.pi-28p {
  padding: 28% !important;
}

.pti-28p {
  padding-top: 28% !important;
}

.pbi-28p {
  padding-bottom: 28% !important;
}

.pli-28p {
  padding-left: 28% !important;
}

.pri-28p {
  padding-right: 28% !important;
}

.pyi-28p {
  padding-top: 28% !important;
  padding-bottom: 28% !important;
}

.pxi-28p {
  padding-left: 28% !important;
  padding-right: 28% !important;
}

tr.p-28p > td {
  padding: 28%;
}

tr.pt-28p > td {
  padding-top: 28%;
}

tr.pb-28p > td {
  padding-bottom: 28%;
}

tr.pl-28p > td {
  padding-left: 28%;
}

tr.pr-28p > td {
  padding-right: 28%;
}

tr.py-28p > td {
  padding-top: 28%;
  padding-bottom: 28%;
}

tr.px-28p > td {
  padding-left: 28%;
  padding-right: 28%;
}

tr.pi-28p > td {
  padding: 28% !important;
}

tr.pti-28p > td {
  padding-top: 28% !important;
}

tr.pbi-28p > td {
  padding-bottom: 28% !important;
}

tr.pli-28p > td {
  padding-left: 28% !important;
}

tr.pri-28p > td {
  padding-right: 28% !important;
}

tr.pyi-28p > td {
  padding-top: 28% !important;
  padding-bottom: 28% !important;
}

tr.pxi-28p > td {
  padding-left: 28% !important;
  padding-right: 28% !important;
}

.m-29p {
  margin: 29%;
}

.mt-29p {
  margin-top: 29%;
}

.mb-29p {
  margin-bottom: 29%;
}

.ml-29p {
  margin-left: 29%;
}

.mr-29p {
  margin-right: 29%;
}

.mt--29p {
  margin-top: -29%;
}

.mb--29p {
  margin-bottom: -29%;
}

.ml--29p {
  margin-left: -29%;
}

.mr--29p {
  margin-right: -29%;
}

.my-29p {
  margin-top: 29%;
  margin-bottom: 29%;
}

.mx-29p {
  margin-left: 29%;
  margin-right: 29%;
}

.mi-29p {
  margin: 29% !important;
}

.mti-29p {
  margin-top: 29% !important;
}

.mbi-29p {
  margin-bottom: 29% !important;
}

.mli-29p {
  margin-left: 29% !important;
}

.mri-29p {
  margin-right: 29% !important;
}

.mti--29p {
  margin-top: -29% !important;
}

.mbi--29p {
  margin-bottom: -29% !important;
}

.mli--29p {
  margin-left: -29% !important;
}

.mri--29p {
  margin-right: -29% !important;
}

.myi-29p {
  margin-top: 29% !important;
  margin-bottom: 29% !important;
}

.mxi-29p {
  margin-left: 29% !important;
  margin-right: 29% !important;
}

.p-29p {
  padding: 29%;
}

.pt-29p {
  padding-top: 29%;
}

.pb-29p {
  padding-bottom: 29%;
}

.pl-29p {
  padding-left: 29%;
}

.pr-29p {
  padding-right: 29%;
}

.py-29p {
  padding-top: 29%;
  padding-bottom: 29%;
}

.px-29p {
  padding-left: 29%;
  padding-right: 29%;
}

.pi-29p {
  padding: 29% !important;
}

.pti-29p {
  padding-top: 29% !important;
}

.pbi-29p {
  padding-bottom: 29% !important;
}

.pli-29p {
  padding-left: 29% !important;
}

.pri-29p {
  padding-right: 29% !important;
}

.pyi-29p {
  padding-top: 29% !important;
  padding-bottom: 29% !important;
}

.pxi-29p {
  padding-left: 29% !important;
  padding-right: 29% !important;
}

tr.p-29p > td {
  padding: 29%;
}

tr.pt-29p > td {
  padding-top: 29%;
}

tr.pb-29p > td {
  padding-bottom: 29%;
}

tr.pl-29p > td {
  padding-left: 29%;
}

tr.pr-29p > td {
  padding-right: 29%;
}

tr.py-29p > td {
  padding-top: 29%;
  padding-bottom: 29%;
}

tr.px-29p > td {
  padding-left: 29%;
  padding-right: 29%;
}

tr.pi-29p > td {
  padding: 29% !important;
}

tr.pti-29p > td {
  padding-top: 29% !important;
}

tr.pbi-29p > td {
  padding-bottom: 29% !important;
}

tr.pli-29p > td {
  padding-left: 29% !important;
}

tr.pri-29p > td {
  padding-right: 29% !important;
}

tr.pyi-29p > td {
  padding-top: 29% !important;
  padding-bottom: 29% !important;
}

tr.pxi-29p > td {
  padding-left: 29% !important;
  padding-right: 29% !important;
}

.m-30p {
  margin: 30%;
}

.mt-30p {
  margin-top: 30%;
}

.mb-30p {
  margin-bottom: 30%;
}

.ml-30p {
  margin-left: 30%;
}

.mr-30p {
  margin-right: 30%;
}

.mt--30p {
  margin-top: -30%;
}

.mb--30p {
  margin-bottom: -30%;
}

.ml--30p {
  margin-left: -30%;
}

.mr--30p {
  margin-right: -30%;
}

.my-30p {
  margin-top: 30%;
  margin-bottom: 30%;
}

.mx-30p {
  margin-left: 30%;
  margin-right: 30%;
}

.mi-30p {
  margin: 30% !important;
}

.mti-30p {
  margin-top: 30% !important;
}

.mbi-30p {
  margin-bottom: 30% !important;
}

.mli-30p {
  margin-left: 30% !important;
}

.mri-30p {
  margin-right: 30% !important;
}

.mti--30p {
  margin-top: -30% !important;
}

.mbi--30p {
  margin-bottom: -30% !important;
}

.mli--30p {
  margin-left: -30% !important;
}

.mri--30p {
  margin-right: -30% !important;
}

.myi-30p {
  margin-top: 30% !important;
  margin-bottom: 30% !important;
}

.mxi-30p {
  margin-left: 30% !important;
  margin-right: 30% !important;
}

.p-30p {
  padding: 30%;
}

.pt-30p {
  padding-top: 30%;
}

.pb-30p {
  padding-bottom: 30%;
}

.pl-30p {
  padding-left: 30%;
}

.pr-30p {
  padding-right: 30%;
}

.py-30p {
  padding-top: 30%;
  padding-bottom: 30%;
}

.px-30p {
  padding-left: 30%;
  padding-right: 30%;
}

.pi-30p {
  padding: 30% !important;
}

.pti-30p {
  padding-top: 30% !important;
}

.pbi-30p {
  padding-bottom: 30% !important;
}

.pli-30p {
  padding-left: 30% !important;
}

.pri-30p {
  padding-right: 30% !important;
}

.pyi-30p {
  padding-top: 30% !important;
  padding-bottom: 30% !important;
}

.pxi-30p {
  padding-left: 30% !important;
  padding-right: 30% !important;
}

tr.p-30p > td {
  padding: 30%;
}

tr.pt-30p > td {
  padding-top: 30%;
}

tr.pb-30p > td {
  padding-bottom: 30%;
}

tr.pl-30p > td {
  padding-left: 30%;
}

tr.pr-30p > td {
  padding-right: 30%;
}

tr.py-30p > td {
  padding-top: 30%;
  padding-bottom: 30%;
}

tr.px-30p > td {
  padding-left: 30%;
  padding-right: 30%;
}

tr.pi-30p > td {
  padding: 30% !important;
}

tr.pti-30p > td {
  padding-top: 30% !important;
}

tr.pbi-30p > td {
  padding-bottom: 30% !important;
}

tr.pli-30p > td {
  padding-left: 30% !important;
}

tr.pri-30p > td {
  padding-right: 30% !important;
}

tr.pyi-30p > td {
  padding-top: 30% !important;
  padding-bottom: 30% !important;
}

tr.pxi-30p > td {
  padding-left: 30% !important;
  padding-right: 30% !important;
}

.m-31p {
  margin: 31%;
}

.mt-31p {
  margin-top: 31%;
}

.mb-31p {
  margin-bottom: 31%;
}

.ml-31p {
  margin-left: 31%;
}

.mr-31p {
  margin-right: 31%;
}

.mt--31p {
  margin-top: -31%;
}

.mb--31p {
  margin-bottom: -31%;
}

.ml--31p {
  margin-left: -31%;
}

.mr--31p {
  margin-right: -31%;
}

.my-31p {
  margin-top: 31%;
  margin-bottom: 31%;
}

.mx-31p {
  margin-left: 31%;
  margin-right: 31%;
}

.mi-31p {
  margin: 31% !important;
}

.mti-31p {
  margin-top: 31% !important;
}

.mbi-31p {
  margin-bottom: 31% !important;
}

.mli-31p {
  margin-left: 31% !important;
}

.mri-31p {
  margin-right: 31% !important;
}

.mti--31p {
  margin-top: -31% !important;
}

.mbi--31p {
  margin-bottom: -31% !important;
}

.mli--31p {
  margin-left: -31% !important;
}

.mri--31p {
  margin-right: -31% !important;
}

.myi-31p {
  margin-top: 31% !important;
  margin-bottom: 31% !important;
}

.mxi-31p {
  margin-left: 31% !important;
  margin-right: 31% !important;
}

.p-31p {
  padding: 31%;
}

.pt-31p {
  padding-top: 31%;
}

.pb-31p {
  padding-bottom: 31%;
}

.pl-31p {
  padding-left: 31%;
}

.pr-31p {
  padding-right: 31%;
}

.py-31p {
  padding-top: 31%;
  padding-bottom: 31%;
}

.px-31p {
  padding-left: 31%;
  padding-right: 31%;
}

.pi-31p {
  padding: 31% !important;
}

.pti-31p {
  padding-top: 31% !important;
}

.pbi-31p {
  padding-bottom: 31% !important;
}

.pli-31p {
  padding-left: 31% !important;
}

.pri-31p {
  padding-right: 31% !important;
}

.pyi-31p {
  padding-top: 31% !important;
  padding-bottom: 31% !important;
}

.pxi-31p {
  padding-left: 31% !important;
  padding-right: 31% !important;
}

tr.p-31p > td {
  padding: 31%;
}

tr.pt-31p > td {
  padding-top: 31%;
}

tr.pb-31p > td {
  padding-bottom: 31%;
}

tr.pl-31p > td {
  padding-left: 31%;
}

tr.pr-31p > td {
  padding-right: 31%;
}

tr.py-31p > td {
  padding-top: 31%;
  padding-bottom: 31%;
}

tr.px-31p > td {
  padding-left: 31%;
  padding-right: 31%;
}

tr.pi-31p > td {
  padding: 31% !important;
}

tr.pti-31p > td {
  padding-top: 31% !important;
}

tr.pbi-31p > td {
  padding-bottom: 31% !important;
}

tr.pli-31p > td {
  padding-left: 31% !important;
}

tr.pri-31p > td {
  padding-right: 31% !important;
}

tr.pyi-31p > td {
  padding-top: 31% !important;
  padding-bottom: 31% !important;
}

tr.pxi-31p > td {
  padding-left: 31% !important;
  padding-right: 31% !important;
}

.m-32p {
  margin: 32%;
}

.mt-32p {
  margin-top: 32%;
}

.mb-32p {
  margin-bottom: 32%;
}

.ml-32p {
  margin-left: 32%;
}

.mr-32p {
  margin-right: 32%;
}

.mt--32p {
  margin-top: -32%;
}

.mb--32p {
  margin-bottom: -32%;
}

.ml--32p {
  margin-left: -32%;
}

.mr--32p {
  margin-right: -32%;
}

.my-32p {
  margin-top: 32%;
  margin-bottom: 32%;
}

.mx-32p {
  margin-left: 32%;
  margin-right: 32%;
}

.mi-32p {
  margin: 32% !important;
}

.mti-32p {
  margin-top: 32% !important;
}

.mbi-32p {
  margin-bottom: 32% !important;
}

.mli-32p {
  margin-left: 32% !important;
}

.mri-32p {
  margin-right: 32% !important;
}

.mti--32p {
  margin-top: -32% !important;
}

.mbi--32p {
  margin-bottom: -32% !important;
}

.mli--32p {
  margin-left: -32% !important;
}

.mri--32p {
  margin-right: -32% !important;
}

.myi-32p {
  margin-top: 32% !important;
  margin-bottom: 32% !important;
}

.mxi-32p {
  margin-left: 32% !important;
  margin-right: 32% !important;
}

.p-32p {
  padding: 32%;
}

.pt-32p {
  padding-top: 32%;
}

.pb-32p {
  padding-bottom: 32%;
}

.pl-32p {
  padding-left: 32%;
}

.pr-32p {
  padding-right: 32%;
}

.py-32p {
  padding-top: 32%;
  padding-bottom: 32%;
}

.px-32p {
  padding-left: 32%;
  padding-right: 32%;
}

.pi-32p {
  padding: 32% !important;
}

.pti-32p {
  padding-top: 32% !important;
}

.pbi-32p {
  padding-bottom: 32% !important;
}

.pli-32p {
  padding-left: 32% !important;
}

.pri-32p {
  padding-right: 32% !important;
}

.pyi-32p {
  padding-top: 32% !important;
  padding-bottom: 32% !important;
}

.pxi-32p {
  padding-left: 32% !important;
  padding-right: 32% !important;
}

tr.p-32p > td {
  padding: 32%;
}

tr.pt-32p > td {
  padding-top: 32%;
}

tr.pb-32p > td {
  padding-bottom: 32%;
}

tr.pl-32p > td {
  padding-left: 32%;
}

tr.pr-32p > td {
  padding-right: 32%;
}

tr.py-32p > td {
  padding-top: 32%;
  padding-bottom: 32%;
}

tr.px-32p > td {
  padding-left: 32%;
  padding-right: 32%;
}

tr.pi-32p > td {
  padding: 32% !important;
}

tr.pti-32p > td {
  padding-top: 32% !important;
}

tr.pbi-32p > td {
  padding-bottom: 32% !important;
}

tr.pli-32p > td {
  padding-left: 32% !important;
}

tr.pri-32p > td {
  padding-right: 32% !important;
}

tr.pyi-32p > td {
  padding-top: 32% !important;
  padding-bottom: 32% !important;
}

tr.pxi-32p > td {
  padding-left: 32% !important;
  padding-right: 32% !important;
}

.m-33p {
  margin: 33%;
}

.mt-33p {
  margin-top: 33%;
}

.mb-33p {
  margin-bottom: 33%;
}

.ml-33p {
  margin-left: 33%;
}

.mr-33p {
  margin-right: 33%;
}

.mt--33p {
  margin-top: -33%;
}

.mb--33p {
  margin-bottom: -33%;
}

.ml--33p {
  margin-left: -33%;
}

.mr--33p {
  margin-right: -33%;
}

.my-33p {
  margin-top: 33%;
  margin-bottom: 33%;
}

.mx-33p {
  margin-left: 33%;
  margin-right: 33%;
}

.mi-33p {
  margin: 33% !important;
}

.mti-33p {
  margin-top: 33% !important;
}

.mbi-33p {
  margin-bottom: 33% !important;
}

.mli-33p {
  margin-left: 33% !important;
}

.mri-33p {
  margin-right: 33% !important;
}

.mti--33p {
  margin-top: -33% !important;
}

.mbi--33p {
  margin-bottom: -33% !important;
}

.mli--33p {
  margin-left: -33% !important;
}

.mri--33p {
  margin-right: -33% !important;
}

.myi-33p {
  margin-top: 33% !important;
  margin-bottom: 33% !important;
}

.mxi-33p {
  margin-left: 33% !important;
  margin-right: 33% !important;
}

.p-33p {
  padding: 33%;
}

.pt-33p {
  padding-top: 33%;
}

.pb-33p {
  padding-bottom: 33%;
}

.pl-33p {
  padding-left: 33%;
}

.pr-33p {
  padding-right: 33%;
}

.py-33p {
  padding-top: 33%;
  padding-bottom: 33%;
}

.px-33p {
  padding-left: 33%;
  padding-right: 33%;
}

.pi-33p {
  padding: 33% !important;
}

.pti-33p {
  padding-top: 33% !important;
}

.pbi-33p {
  padding-bottom: 33% !important;
}

.pli-33p {
  padding-left: 33% !important;
}

.pri-33p {
  padding-right: 33% !important;
}

.pyi-33p {
  padding-top: 33% !important;
  padding-bottom: 33% !important;
}

.pxi-33p {
  padding-left: 33% !important;
  padding-right: 33% !important;
}

tr.p-33p > td {
  padding: 33%;
}

tr.pt-33p > td {
  padding-top: 33%;
}

tr.pb-33p > td {
  padding-bottom: 33%;
}

tr.pl-33p > td {
  padding-left: 33%;
}

tr.pr-33p > td {
  padding-right: 33%;
}

tr.py-33p > td {
  padding-top: 33%;
  padding-bottom: 33%;
}

tr.px-33p > td {
  padding-left: 33%;
  padding-right: 33%;
}

tr.pi-33p > td {
  padding: 33% !important;
}

tr.pti-33p > td {
  padding-top: 33% !important;
}

tr.pbi-33p > td {
  padding-bottom: 33% !important;
}

tr.pli-33p > td {
  padding-left: 33% !important;
}

tr.pri-33p > td {
  padding-right: 33% !important;
}

tr.pyi-33p > td {
  padding-top: 33% !important;
  padding-bottom: 33% !important;
}

tr.pxi-33p > td {
  padding-left: 33% !important;
  padding-right: 33% !important;
}

.m-34p {
  margin: 34%;
}

.mt-34p {
  margin-top: 34%;
}

.mb-34p {
  margin-bottom: 34%;
}

.ml-34p {
  margin-left: 34%;
}

.mr-34p {
  margin-right: 34%;
}

.mt--34p {
  margin-top: -34%;
}

.mb--34p {
  margin-bottom: -34%;
}

.ml--34p {
  margin-left: -34%;
}

.mr--34p {
  margin-right: -34%;
}

.my-34p {
  margin-top: 34%;
  margin-bottom: 34%;
}

.mx-34p {
  margin-left: 34%;
  margin-right: 34%;
}

.mi-34p {
  margin: 34% !important;
}

.mti-34p {
  margin-top: 34% !important;
}

.mbi-34p {
  margin-bottom: 34% !important;
}

.mli-34p {
  margin-left: 34% !important;
}

.mri-34p {
  margin-right: 34% !important;
}

.mti--34p {
  margin-top: -34% !important;
}

.mbi--34p {
  margin-bottom: -34% !important;
}

.mli--34p {
  margin-left: -34% !important;
}

.mri--34p {
  margin-right: -34% !important;
}

.myi-34p {
  margin-top: 34% !important;
  margin-bottom: 34% !important;
}

.mxi-34p {
  margin-left: 34% !important;
  margin-right: 34% !important;
}

.p-34p {
  padding: 34%;
}

.pt-34p {
  padding-top: 34%;
}

.pb-34p {
  padding-bottom: 34%;
}

.pl-34p {
  padding-left: 34%;
}

.pr-34p {
  padding-right: 34%;
}

.py-34p {
  padding-top: 34%;
  padding-bottom: 34%;
}

.px-34p {
  padding-left: 34%;
  padding-right: 34%;
}

.pi-34p {
  padding: 34% !important;
}

.pti-34p {
  padding-top: 34% !important;
}

.pbi-34p {
  padding-bottom: 34% !important;
}

.pli-34p {
  padding-left: 34% !important;
}

.pri-34p {
  padding-right: 34% !important;
}

.pyi-34p {
  padding-top: 34% !important;
  padding-bottom: 34% !important;
}

.pxi-34p {
  padding-left: 34% !important;
  padding-right: 34% !important;
}

tr.p-34p > td {
  padding: 34%;
}

tr.pt-34p > td {
  padding-top: 34%;
}

tr.pb-34p > td {
  padding-bottom: 34%;
}

tr.pl-34p > td {
  padding-left: 34%;
}

tr.pr-34p > td {
  padding-right: 34%;
}

tr.py-34p > td {
  padding-top: 34%;
  padding-bottom: 34%;
}

tr.px-34p > td {
  padding-left: 34%;
  padding-right: 34%;
}

tr.pi-34p > td {
  padding: 34% !important;
}

tr.pti-34p > td {
  padding-top: 34% !important;
}

tr.pbi-34p > td {
  padding-bottom: 34% !important;
}

tr.pli-34p > td {
  padding-left: 34% !important;
}

tr.pri-34p > td {
  padding-right: 34% !important;
}

tr.pyi-34p > td {
  padding-top: 34% !important;
  padding-bottom: 34% !important;
}

tr.pxi-34p > td {
  padding-left: 34% !important;
  padding-right: 34% !important;
}

.m-35p {
  margin: 35%;
}

.mt-35p {
  margin-top: 35%;
}

.mb-35p {
  margin-bottom: 35%;
}

.ml-35p {
  margin-left: 35%;
}

.mr-35p {
  margin-right: 35%;
}

.mt--35p {
  margin-top: -35%;
}

.mb--35p {
  margin-bottom: -35%;
}

.ml--35p {
  margin-left: -35%;
}

.mr--35p {
  margin-right: -35%;
}

.my-35p {
  margin-top: 35%;
  margin-bottom: 35%;
}

.mx-35p {
  margin-left: 35%;
  margin-right: 35%;
}

.mi-35p {
  margin: 35% !important;
}

.mti-35p {
  margin-top: 35% !important;
}

.mbi-35p {
  margin-bottom: 35% !important;
}

.mli-35p {
  margin-left: 35% !important;
}

.mri-35p {
  margin-right: 35% !important;
}

.mti--35p {
  margin-top: -35% !important;
}

.mbi--35p {
  margin-bottom: -35% !important;
}

.mli--35p {
  margin-left: -35% !important;
}

.mri--35p {
  margin-right: -35% !important;
}

.myi-35p {
  margin-top: 35% !important;
  margin-bottom: 35% !important;
}

.mxi-35p {
  margin-left: 35% !important;
  margin-right: 35% !important;
}

.p-35p {
  padding: 35%;
}

.pt-35p {
  padding-top: 35%;
}

.pb-35p {
  padding-bottom: 35%;
}

.pl-35p {
  padding-left: 35%;
}

.pr-35p {
  padding-right: 35%;
}

.py-35p {
  padding-top: 35%;
  padding-bottom: 35%;
}

.px-35p {
  padding-left: 35%;
  padding-right: 35%;
}

.pi-35p {
  padding: 35% !important;
}

.pti-35p {
  padding-top: 35% !important;
}

.pbi-35p {
  padding-bottom: 35% !important;
}

.pli-35p {
  padding-left: 35% !important;
}

.pri-35p {
  padding-right: 35% !important;
}

.pyi-35p {
  padding-top: 35% !important;
  padding-bottom: 35% !important;
}

.pxi-35p {
  padding-left: 35% !important;
  padding-right: 35% !important;
}

tr.p-35p > td {
  padding: 35%;
}

tr.pt-35p > td {
  padding-top: 35%;
}

tr.pb-35p > td {
  padding-bottom: 35%;
}

tr.pl-35p > td {
  padding-left: 35%;
}

tr.pr-35p > td {
  padding-right: 35%;
}

tr.py-35p > td {
  padding-top: 35%;
  padding-bottom: 35%;
}

tr.px-35p > td {
  padding-left: 35%;
  padding-right: 35%;
}

tr.pi-35p > td {
  padding: 35% !important;
}

tr.pti-35p > td {
  padding-top: 35% !important;
}

tr.pbi-35p > td {
  padding-bottom: 35% !important;
}

tr.pli-35p > td {
  padding-left: 35% !important;
}

tr.pri-35p > td {
  padding-right: 35% !important;
}

tr.pyi-35p > td {
  padding-top: 35% !important;
  padding-bottom: 35% !important;
}

tr.pxi-35p > td {
  padding-left: 35% !important;
  padding-right: 35% !important;
}

.m-36p {
  margin: 36%;
}

.mt-36p {
  margin-top: 36%;
}

.mb-36p {
  margin-bottom: 36%;
}

.ml-36p {
  margin-left: 36%;
}

.mr-36p {
  margin-right: 36%;
}

.mt--36p {
  margin-top: -36%;
}

.mb--36p {
  margin-bottom: -36%;
}

.ml--36p {
  margin-left: -36%;
}

.mr--36p {
  margin-right: -36%;
}

.my-36p {
  margin-top: 36%;
  margin-bottom: 36%;
}

.mx-36p {
  margin-left: 36%;
  margin-right: 36%;
}

.mi-36p {
  margin: 36% !important;
}

.mti-36p {
  margin-top: 36% !important;
}

.mbi-36p {
  margin-bottom: 36% !important;
}

.mli-36p {
  margin-left: 36% !important;
}

.mri-36p {
  margin-right: 36% !important;
}

.mti--36p {
  margin-top: -36% !important;
}

.mbi--36p {
  margin-bottom: -36% !important;
}

.mli--36p {
  margin-left: -36% !important;
}

.mri--36p {
  margin-right: -36% !important;
}

.myi-36p {
  margin-top: 36% !important;
  margin-bottom: 36% !important;
}

.mxi-36p {
  margin-left: 36% !important;
  margin-right: 36% !important;
}

.p-36p {
  padding: 36%;
}

.pt-36p {
  padding-top: 36%;
}

.pb-36p {
  padding-bottom: 36%;
}

.pl-36p {
  padding-left: 36%;
}

.pr-36p {
  padding-right: 36%;
}

.py-36p {
  padding-top: 36%;
  padding-bottom: 36%;
}

.px-36p {
  padding-left: 36%;
  padding-right: 36%;
}

.pi-36p {
  padding: 36% !important;
}

.pti-36p {
  padding-top: 36% !important;
}

.pbi-36p {
  padding-bottom: 36% !important;
}

.pli-36p {
  padding-left: 36% !important;
}

.pri-36p {
  padding-right: 36% !important;
}

.pyi-36p {
  padding-top: 36% !important;
  padding-bottom: 36% !important;
}

.pxi-36p {
  padding-left: 36% !important;
  padding-right: 36% !important;
}

tr.p-36p > td {
  padding: 36%;
}

tr.pt-36p > td {
  padding-top: 36%;
}

tr.pb-36p > td {
  padding-bottom: 36%;
}

tr.pl-36p > td {
  padding-left: 36%;
}

tr.pr-36p > td {
  padding-right: 36%;
}

tr.py-36p > td {
  padding-top: 36%;
  padding-bottom: 36%;
}

tr.px-36p > td {
  padding-left: 36%;
  padding-right: 36%;
}

tr.pi-36p > td {
  padding: 36% !important;
}

tr.pti-36p > td {
  padding-top: 36% !important;
}

tr.pbi-36p > td {
  padding-bottom: 36% !important;
}

tr.pli-36p > td {
  padding-left: 36% !important;
}

tr.pri-36p > td {
  padding-right: 36% !important;
}

tr.pyi-36p > td {
  padding-top: 36% !important;
  padding-bottom: 36% !important;
}

tr.pxi-36p > td {
  padding-left: 36% !important;
  padding-right: 36% !important;
}

.m-37p {
  margin: 37%;
}

.mt-37p {
  margin-top: 37%;
}

.mb-37p {
  margin-bottom: 37%;
}

.ml-37p {
  margin-left: 37%;
}

.mr-37p {
  margin-right: 37%;
}

.mt--37p {
  margin-top: -37%;
}

.mb--37p {
  margin-bottom: -37%;
}

.ml--37p {
  margin-left: -37%;
}

.mr--37p {
  margin-right: -37%;
}

.my-37p {
  margin-top: 37%;
  margin-bottom: 37%;
}

.mx-37p {
  margin-left: 37%;
  margin-right: 37%;
}

.mi-37p {
  margin: 37% !important;
}

.mti-37p {
  margin-top: 37% !important;
}

.mbi-37p {
  margin-bottom: 37% !important;
}

.mli-37p {
  margin-left: 37% !important;
}

.mri-37p {
  margin-right: 37% !important;
}

.mti--37p {
  margin-top: -37% !important;
}

.mbi--37p {
  margin-bottom: -37% !important;
}

.mli--37p {
  margin-left: -37% !important;
}

.mri--37p {
  margin-right: -37% !important;
}

.myi-37p {
  margin-top: 37% !important;
  margin-bottom: 37% !important;
}

.mxi-37p {
  margin-left: 37% !important;
  margin-right: 37% !important;
}

.p-37p {
  padding: 37%;
}

.pt-37p {
  padding-top: 37%;
}

.pb-37p {
  padding-bottom: 37%;
}

.pl-37p {
  padding-left: 37%;
}

.pr-37p {
  padding-right: 37%;
}

.py-37p {
  padding-top: 37%;
  padding-bottom: 37%;
}

.px-37p {
  padding-left: 37%;
  padding-right: 37%;
}

.pi-37p {
  padding: 37% !important;
}

.pti-37p {
  padding-top: 37% !important;
}

.pbi-37p {
  padding-bottom: 37% !important;
}

.pli-37p {
  padding-left: 37% !important;
}

.pri-37p {
  padding-right: 37% !important;
}

.pyi-37p {
  padding-top: 37% !important;
  padding-bottom: 37% !important;
}

.pxi-37p {
  padding-left: 37% !important;
  padding-right: 37% !important;
}

tr.p-37p > td {
  padding: 37%;
}

tr.pt-37p > td {
  padding-top: 37%;
}

tr.pb-37p > td {
  padding-bottom: 37%;
}

tr.pl-37p > td {
  padding-left: 37%;
}

tr.pr-37p > td {
  padding-right: 37%;
}

tr.py-37p > td {
  padding-top: 37%;
  padding-bottom: 37%;
}

tr.px-37p > td {
  padding-left: 37%;
  padding-right: 37%;
}

tr.pi-37p > td {
  padding: 37% !important;
}

tr.pti-37p > td {
  padding-top: 37% !important;
}

tr.pbi-37p > td {
  padding-bottom: 37% !important;
}

tr.pli-37p > td {
  padding-left: 37% !important;
}

tr.pri-37p > td {
  padding-right: 37% !important;
}

tr.pyi-37p > td {
  padding-top: 37% !important;
  padding-bottom: 37% !important;
}

tr.pxi-37p > td {
  padding-left: 37% !important;
  padding-right: 37% !important;
}

.m-38p {
  margin: 38%;
}

.mt-38p {
  margin-top: 38%;
}

.mb-38p {
  margin-bottom: 38%;
}

.ml-38p {
  margin-left: 38%;
}

.mr-38p {
  margin-right: 38%;
}

.mt--38p {
  margin-top: -38%;
}

.mb--38p {
  margin-bottom: -38%;
}

.ml--38p {
  margin-left: -38%;
}

.mr--38p {
  margin-right: -38%;
}

.my-38p {
  margin-top: 38%;
  margin-bottom: 38%;
}

.mx-38p {
  margin-left: 38%;
  margin-right: 38%;
}

.mi-38p {
  margin: 38% !important;
}

.mti-38p {
  margin-top: 38% !important;
}

.mbi-38p {
  margin-bottom: 38% !important;
}

.mli-38p {
  margin-left: 38% !important;
}

.mri-38p {
  margin-right: 38% !important;
}

.mti--38p {
  margin-top: -38% !important;
}

.mbi--38p {
  margin-bottom: -38% !important;
}

.mli--38p {
  margin-left: -38% !important;
}

.mri--38p {
  margin-right: -38% !important;
}

.myi-38p {
  margin-top: 38% !important;
  margin-bottom: 38% !important;
}

.mxi-38p {
  margin-left: 38% !important;
  margin-right: 38% !important;
}

.p-38p {
  padding: 38%;
}

.pt-38p {
  padding-top: 38%;
}

.pb-38p {
  padding-bottom: 38%;
}

.pl-38p {
  padding-left: 38%;
}

.pr-38p {
  padding-right: 38%;
}

.py-38p {
  padding-top: 38%;
  padding-bottom: 38%;
}

.px-38p {
  padding-left: 38%;
  padding-right: 38%;
}

.pi-38p {
  padding: 38% !important;
}

.pti-38p {
  padding-top: 38% !important;
}

.pbi-38p {
  padding-bottom: 38% !important;
}

.pli-38p {
  padding-left: 38% !important;
}

.pri-38p {
  padding-right: 38% !important;
}

.pyi-38p {
  padding-top: 38% !important;
  padding-bottom: 38% !important;
}

.pxi-38p {
  padding-left: 38% !important;
  padding-right: 38% !important;
}

tr.p-38p > td {
  padding: 38%;
}

tr.pt-38p > td {
  padding-top: 38%;
}

tr.pb-38p > td {
  padding-bottom: 38%;
}

tr.pl-38p > td {
  padding-left: 38%;
}

tr.pr-38p > td {
  padding-right: 38%;
}

tr.py-38p > td {
  padding-top: 38%;
  padding-bottom: 38%;
}

tr.px-38p > td {
  padding-left: 38%;
  padding-right: 38%;
}

tr.pi-38p > td {
  padding: 38% !important;
}

tr.pti-38p > td {
  padding-top: 38% !important;
}

tr.pbi-38p > td {
  padding-bottom: 38% !important;
}

tr.pli-38p > td {
  padding-left: 38% !important;
}

tr.pri-38p > td {
  padding-right: 38% !important;
}

tr.pyi-38p > td {
  padding-top: 38% !important;
  padding-bottom: 38% !important;
}

tr.pxi-38p > td {
  padding-left: 38% !important;
  padding-right: 38% !important;
}

.m-39p {
  margin: 39%;
}

.mt-39p {
  margin-top: 39%;
}

.mb-39p {
  margin-bottom: 39%;
}

.ml-39p {
  margin-left: 39%;
}

.mr-39p {
  margin-right: 39%;
}

.mt--39p {
  margin-top: -39%;
}

.mb--39p {
  margin-bottom: -39%;
}

.ml--39p {
  margin-left: -39%;
}

.mr--39p {
  margin-right: -39%;
}

.my-39p {
  margin-top: 39%;
  margin-bottom: 39%;
}

.mx-39p {
  margin-left: 39%;
  margin-right: 39%;
}

.mi-39p {
  margin: 39% !important;
}

.mti-39p {
  margin-top: 39% !important;
}

.mbi-39p {
  margin-bottom: 39% !important;
}

.mli-39p {
  margin-left: 39% !important;
}

.mri-39p {
  margin-right: 39% !important;
}

.mti--39p {
  margin-top: -39% !important;
}

.mbi--39p {
  margin-bottom: -39% !important;
}

.mli--39p {
  margin-left: -39% !important;
}

.mri--39p {
  margin-right: -39% !important;
}

.myi-39p {
  margin-top: 39% !important;
  margin-bottom: 39% !important;
}

.mxi-39p {
  margin-left: 39% !important;
  margin-right: 39% !important;
}

.p-39p {
  padding: 39%;
}

.pt-39p {
  padding-top: 39%;
}

.pb-39p {
  padding-bottom: 39%;
}

.pl-39p {
  padding-left: 39%;
}

.pr-39p {
  padding-right: 39%;
}

.py-39p {
  padding-top: 39%;
  padding-bottom: 39%;
}

.px-39p {
  padding-left: 39%;
  padding-right: 39%;
}

.pi-39p {
  padding: 39% !important;
}

.pti-39p {
  padding-top: 39% !important;
}

.pbi-39p {
  padding-bottom: 39% !important;
}

.pli-39p {
  padding-left: 39% !important;
}

.pri-39p {
  padding-right: 39% !important;
}

.pyi-39p {
  padding-top: 39% !important;
  padding-bottom: 39% !important;
}

.pxi-39p {
  padding-left: 39% !important;
  padding-right: 39% !important;
}

tr.p-39p > td {
  padding: 39%;
}

tr.pt-39p > td {
  padding-top: 39%;
}

tr.pb-39p > td {
  padding-bottom: 39%;
}

tr.pl-39p > td {
  padding-left: 39%;
}

tr.pr-39p > td {
  padding-right: 39%;
}

tr.py-39p > td {
  padding-top: 39%;
  padding-bottom: 39%;
}

tr.px-39p > td {
  padding-left: 39%;
  padding-right: 39%;
}

tr.pi-39p > td {
  padding: 39% !important;
}

tr.pti-39p > td {
  padding-top: 39% !important;
}

tr.pbi-39p > td {
  padding-bottom: 39% !important;
}

tr.pli-39p > td {
  padding-left: 39% !important;
}

tr.pri-39p > td {
  padding-right: 39% !important;
}

tr.pyi-39p > td {
  padding-top: 39% !important;
  padding-bottom: 39% !important;
}

tr.pxi-39p > td {
  padding-left: 39% !important;
  padding-right: 39% !important;
}

.m-40p {
  margin: 40%;
}

.mt-40p {
  margin-top: 40%;
}

.mb-40p {
  margin-bottom: 40%;
}

.ml-40p {
  margin-left: 40%;
}

.mr-40p {
  margin-right: 40%;
}

.mt--40p {
  margin-top: -40%;
}

.mb--40p {
  margin-bottom: -40%;
}

.ml--40p {
  margin-left: -40%;
}

.mr--40p {
  margin-right: -40%;
}

.my-40p {
  margin-top: 40%;
  margin-bottom: 40%;
}

.mx-40p {
  margin-left: 40%;
  margin-right: 40%;
}

.mi-40p {
  margin: 40% !important;
}

.mti-40p {
  margin-top: 40% !important;
}

.mbi-40p {
  margin-bottom: 40% !important;
}

.mli-40p {
  margin-left: 40% !important;
}

.mri-40p {
  margin-right: 40% !important;
}

.mti--40p {
  margin-top: -40% !important;
}

.mbi--40p {
  margin-bottom: -40% !important;
}

.mli--40p {
  margin-left: -40% !important;
}

.mri--40p {
  margin-right: -40% !important;
}

.myi-40p {
  margin-top: 40% !important;
  margin-bottom: 40% !important;
}

.mxi-40p {
  margin-left: 40% !important;
  margin-right: 40% !important;
}

.p-40p {
  padding: 40%;
}

.pt-40p {
  padding-top: 40%;
}

.pb-40p {
  padding-bottom: 40%;
}

.pl-40p {
  padding-left: 40%;
}

.pr-40p {
  padding-right: 40%;
}

.py-40p {
  padding-top: 40%;
  padding-bottom: 40%;
}

.px-40p {
  padding-left: 40%;
  padding-right: 40%;
}

.pi-40p {
  padding: 40% !important;
}

.pti-40p {
  padding-top: 40% !important;
}

.pbi-40p {
  padding-bottom: 40% !important;
}

.pli-40p {
  padding-left: 40% !important;
}

.pri-40p {
  padding-right: 40% !important;
}

.pyi-40p {
  padding-top: 40% !important;
  padding-bottom: 40% !important;
}

.pxi-40p {
  padding-left: 40% !important;
  padding-right: 40% !important;
}

tr.p-40p > td {
  padding: 40%;
}

tr.pt-40p > td {
  padding-top: 40%;
}

tr.pb-40p > td {
  padding-bottom: 40%;
}

tr.pl-40p > td {
  padding-left: 40%;
}

tr.pr-40p > td {
  padding-right: 40%;
}

tr.py-40p > td {
  padding-top: 40%;
  padding-bottom: 40%;
}

tr.px-40p > td {
  padding-left: 40%;
  padding-right: 40%;
}

tr.pi-40p > td {
  padding: 40% !important;
}

tr.pti-40p > td {
  padding-top: 40% !important;
}

tr.pbi-40p > td {
  padding-bottom: 40% !important;
}

tr.pli-40p > td {
  padding-left: 40% !important;
}

tr.pri-40p > td {
  padding-right: 40% !important;
}

tr.pyi-40p > td {
  padding-top: 40% !important;
  padding-bottom: 40% !important;
}

tr.pxi-40p > td {
  padding-left: 40% !important;
  padding-right: 40% !important;
}

.m-41p {
  margin: 41%;
}

.mt-41p {
  margin-top: 41%;
}

.mb-41p {
  margin-bottom: 41%;
}

.ml-41p {
  margin-left: 41%;
}

.mr-41p {
  margin-right: 41%;
}

.mt--41p {
  margin-top: -41%;
}

.mb--41p {
  margin-bottom: -41%;
}

.ml--41p {
  margin-left: -41%;
}

.mr--41p {
  margin-right: -41%;
}

.my-41p {
  margin-top: 41%;
  margin-bottom: 41%;
}

.mx-41p {
  margin-left: 41%;
  margin-right: 41%;
}

.mi-41p {
  margin: 41% !important;
}

.mti-41p {
  margin-top: 41% !important;
}

.mbi-41p {
  margin-bottom: 41% !important;
}

.mli-41p {
  margin-left: 41% !important;
}

.mri-41p {
  margin-right: 41% !important;
}

.mti--41p {
  margin-top: -41% !important;
}

.mbi--41p {
  margin-bottom: -41% !important;
}

.mli--41p {
  margin-left: -41% !important;
}

.mri--41p {
  margin-right: -41% !important;
}

.myi-41p {
  margin-top: 41% !important;
  margin-bottom: 41% !important;
}

.mxi-41p {
  margin-left: 41% !important;
  margin-right: 41% !important;
}

.p-41p {
  padding: 41%;
}

.pt-41p {
  padding-top: 41%;
}

.pb-41p {
  padding-bottom: 41%;
}

.pl-41p {
  padding-left: 41%;
}

.pr-41p {
  padding-right: 41%;
}

.py-41p {
  padding-top: 41%;
  padding-bottom: 41%;
}

.px-41p {
  padding-left: 41%;
  padding-right: 41%;
}

.pi-41p {
  padding: 41% !important;
}

.pti-41p {
  padding-top: 41% !important;
}

.pbi-41p {
  padding-bottom: 41% !important;
}

.pli-41p {
  padding-left: 41% !important;
}

.pri-41p {
  padding-right: 41% !important;
}

.pyi-41p {
  padding-top: 41% !important;
  padding-bottom: 41% !important;
}

.pxi-41p {
  padding-left: 41% !important;
  padding-right: 41% !important;
}

tr.p-41p > td {
  padding: 41%;
}

tr.pt-41p > td {
  padding-top: 41%;
}

tr.pb-41p > td {
  padding-bottom: 41%;
}

tr.pl-41p > td {
  padding-left: 41%;
}

tr.pr-41p > td {
  padding-right: 41%;
}

tr.py-41p > td {
  padding-top: 41%;
  padding-bottom: 41%;
}

tr.px-41p > td {
  padding-left: 41%;
  padding-right: 41%;
}

tr.pi-41p > td {
  padding: 41% !important;
}

tr.pti-41p > td {
  padding-top: 41% !important;
}

tr.pbi-41p > td {
  padding-bottom: 41% !important;
}

tr.pli-41p > td {
  padding-left: 41% !important;
}

tr.pri-41p > td {
  padding-right: 41% !important;
}

tr.pyi-41p > td {
  padding-top: 41% !important;
  padding-bottom: 41% !important;
}

tr.pxi-41p > td {
  padding-left: 41% !important;
  padding-right: 41% !important;
}

.m-42p {
  margin: 42%;
}

.mt-42p {
  margin-top: 42%;
}

.mb-42p {
  margin-bottom: 42%;
}

.ml-42p {
  margin-left: 42%;
}

.mr-42p {
  margin-right: 42%;
}

.mt--42p {
  margin-top: -42%;
}

.mb--42p {
  margin-bottom: -42%;
}

.ml--42p {
  margin-left: -42%;
}

.mr--42p {
  margin-right: -42%;
}

.my-42p {
  margin-top: 42%;
  margin-bottom: 42%;
}

.mx-42p {
  margin-left: 42%;
  margin-right: 42%;
}

.mi-42p {
  margin: 42% !important;
}

.mti-42p {
  margin-top: 42% !important;
}

.mbi-42p {
  margin-bottom: 42% !important;
}

.mli-42p {
  margin-left: 42% !important;
}

.mri-42p {
  margin-right: 42% !important;
}

.mti--42p {
  margin-top: -42% !important;
}

.mbi--42p {
  margin-bottom: -42% !important;
}

.mli--42p {
  margin-left: -42% !important;
}

.mri--42p {
  margin-right: -42% !important;
}

.myi-42p {
  margin-top: 42% !important;
  margin-bottom: 42% !important;
}

.mxi-42p {
  margin-left: 42% !important;
  margin-right: 42% !important;
}

.p-42p {
  padding: 42%;
}

.pt-42p {
  padding-top: 42%;
}

.pb-42p {
  padding-bottom: 42%;
}

.pl-42p {
  padding-left: 42%;
}

.pr-42p {
  padding-right: 42%;
}

.py-42p {
  padding-top: 42%;
  padding-bottom: 42%;
}

.px-42p {
  padding-left: 42%;
  padding-right: 42%;
}

.pi-42p {
  padding: 42% !important;
}

.pti-42p {
  padding-top: 42% !important;
}

.pbi-42p {
  padding-bottom: 42% !important;
}

.pli-42p {
  padding-left: 42% !important;
}

.pri-42p {
  padding-right: 42% !important;
}

.pyi-42p {
  padding-top: 42% !important;
  padding-bottom: 42% !important;
}

.pxi-42p {
  padding-left: 42% !important;
  padding-right: 42% !important;
}

tr.p-42p > td {
  padding: 42%;
}

tr.pt-42p > td {
  padding-top: 42%;
}

tr.pb-42p > td {
  padding-bottom: 42%;
}

tr.pl-42p > td {
  padding-left: 42%;
}

tr.pr-42p > td {
  padding-right: 42%;
}

tr.py-42p > td {
  padding-top: 42%;
  padding-bottom: 42%;
}

tr.px-42p > td {
  padding-left: 42%;
  padding-right: 42%;
}

tr.pi-42p > td {
  padding: 42% !important;
}

tr.pti-42p > td {
  padding-top: 42% !important;
}

tr.pbi-42p > td {
  padding-bottom: 42% !important;
}

tr.pli-42p > td {
  padding-left: 42% !important;
}

tr.pri-42p > td {
  padding-right: 42% !important;
}

tr.pyi-42p > td {
  padding-top: 42% !important;
  padding-bottom: 42% !important;
}

tr.pxi-42p > td {
  padding-left: 42% !important;
  padding-right: 42% !important;
}

.m-43p {
  margin: 43%;
}

.mt-43p {
  margin-top: 43%;
}

.mb-43p {
  margin-bottom: 43%;
}

.ml-43p {
  margin-left: 43%;
}

.mr-43p {
  margin-right: 43%;
}

.mt--43p {
  margin-top: -43%;
}

.mb--43p {
  margin-bottom: -43%;
}

.ml--43p {
  margin-left: -43%;
}

.mr--43p {
  margin-right: -43%;
}

.my-43p {
  margin-top: 43%;
  margin-bottom: 43%;
}

.mx-43p {
  margin-left: 43%;
  margin-right: 43%;
}

.mi-43p {
  margin: 43% !important;
}

.mti-43p {
  margin-top: 43% !important;
}

.mbi-43p {
  margin-bottom: 43% !important;
}

.mli-43p {
  margin-left: 43% !important;
}

.mri-43p {
  margin-right: 43% !important;
}

.mti--43p {
  margin-top: -43% !important;
}

.mbi--43p {
  margin-bottom: -43% !important;
}

.mli--43p {
  margin-left: -43% !important;
}

.mri--43p {
  margin-right: -43% !important;
}

.myi-43p {
  margin-top: 43% !important;
  margin-bottom: 43% !important;
}

.mxi-43p {
  margin-left: 43% !important;
  margin-right: 43% !important;
}

.p-43p {
  padding: 43%;
}

.pt-43p {
  padding-top: 43%;
}

.pb-43p {
  padding-bottom: 43%;
}

.pl-43p {
  padding-left: 43%;
}

.pr-43p {
  padding-right: 43%;
}

.py-43p {
  padding-top: 43%;
  padding-bottom: 43%;
}

.px-43p {
  padding-left: 43%;
  padding-right: 43%;
}

.pi-43p {
  padding: 43% !important;
}

.pti-43p {
  padding-top: 43% !important;
}

.pbi-43p {
  padding-bottom: 43% !important;
}

.pli-43p {
  padding-left: 43% !important;
}

.pri-43p {
  padding-right: 43% !important;
}

.pyi-43p {
  padding-top: 43% !important;
  padding-bottom: 43% !important;
}

.pxi-43p {
  padding-left: 43% !important;
  padding-right: 43% !important;
}

tr.p-43p > td {
  padding: 43%;
}

tr.pt-43p > td {
  padding-top: 43%;
}

tr.pb-43p > td {
  padding-bottom: 43%;
}

tr.pl-43p > td {
  padding-left: 43%;
}

tr.pr-43p > td {
  padding-right: 43%;
}

tr.py-43p > td {
  padding-top: 43%;
  padding-bottom: 43%;
}

tr.px-43p > td {
  padding-left: 43%;
  padding-right: 43%;
}

tr.pi-43p > td {
  padding: 43% !important;
}

tr.pti-43p > td {
  padding-top: 43% !important;
}

tr.pbi-43p > td {
  padding-bottom: 43% !important;
}

tr.pli-43p > td {
  padding-left: 43% !important;
}

tr.pri-43p > td {
  padding-right: 43% !important;
}

tr.pyi-43p > td {
  padding-top: 43% !important;
  padding-bottom: 43% !important;
}

tr.pxi-43p > td {
  padding-left: 43% !important;
  padding-right: 43% !important;
}

.m-44p {
  margin: 44%;
}

.mt-44p {
  margin-top: 44%;
}

.mb-44p {
  margin-bottom: 44%;
}

.ml-44p {
  margin-left: 44%;
}

.mr-44p {
  margin-right: 44%;
}

.mt--44p {
  margin-top: -44%;
}

.mb--44p {
  margin-bottom: -44%;
}

.ml--44p {
  margin-left: -44%;
}

.mr--44p {
  margin-right: -44%;
}

.my-44p {
  margin-top: 44%;
  margin-bottom: 44%;
}

.mx-44p {
  margin-left: 44%;
  margin-right: 44%;
}

.mi-44p {
  margin: 44% !important;
}

.mti-44p {
  margin-top: 44% !important;
}

.mbi-44p {
  margin-bottom: 44% !important;
}

.mli-44p {
  margin-left: 44% !important;
}

.mri-44p {
  margin-right: 44% !important;
}

.mti--44p {
  margin-top: -44% !important;
}

.mbi--44p {
  margin-bottom: -44% !important;
}

.mli--44p {
  margin-left: -44% !important;
}

.mri--44p {
  margin-right: -44% !important;
}

.myi-44p {
  margin-top: 44% !important;
  margin-bottom: 44% !important;
}

.mxi-44p {
  margin-left: 44% !important;
  margin-right: 44% !important;
}

.p-44p {
  padding: 44%;
}

.pt-44p {
  padding-top: 44%;
}

.pb-44p {
  padding-bottom: 44%;
}

.pl-44p {
  padding-left: 44%;
}

.pr-44p {
  padding-right: 44%;
}

.py-44p {
  padding-top: 44%;
  padding-bottom: 44%;
}

.px-44p {
  padding-left: 44%;
  padding-right: 44%;
}

.pi-44p {
  padding: 44% !important;
}

.pti-44p {
  padding-top: 44% !important;
}

.pbi-44p {
  padding-bottom: 44% !important;
}

.pli-44p {
  padding-left: 44% !important;
}

.pri-44p {
  padding-right: 44% !important;
}

.pyi-44p {
  padding-top: 44% !important;
  padding-bottom: 44% !important;
}

.pxi-44p {
  padding-left: 44% !important;
  padding-right: 44% !important;
}

tr.p-44p > td {
  padding: 44%;
}

tr.pt-44p > td {
  padding-top: 44%;
}

tr.pb-44p > td {
  padding-bottom: 44%;
}

tr.pl-44p > td {
  padding-left: 44%;
}

tr.pr-44p > td {
  padding-right: 44%;
}

tr.py-44p > td {
  padding-top: 44%;
  padding-bottom: 44%;
}

tr.px-44p > td {
  padding-left: 44%;
  padding-right: 44%;
}

tr.pi-44p > td {
  padding: 44% !important;
}

tr.pti-44p > td {
  padding-top: 44% !important;
}

tr.pbi-44p > td {
  padding-bottom: 44% !important;
}

tr.pli-44p > td {
  padding-left: 44% !important;
}

tr.pri-44p > td {
  padding-right: 44% !important;
}

tr.pyi-44p > td {
  padding-top: 44% !important;
  padding-bottom: 44% !important;
}

tr.pxi-44p > td {
  padding-left: 44% !important;
  padding-right: 44% !important;
}

.m-45p {
  margin: 45%;
}

.mt-45p {
  margin-top: 45%;
}

.mb-45p {
  margin-bottom: 45%;
}

.ml-45p {
  margin-left: 45%;
}

.mr-45p {
  margin-right: 45%;
}

.mt--45p {
  margin-top: -45%;
}

.mb--45p {
  margin-bottom: -45%;
}

.ml--45p {
  margin-left: -45%;
}

.mr--45p {
  margin-right: -45%;
}

.my-45p {
  margin-top: 45%;
  margin-bottom: 45%;
}

.mx-45p {
  margin-left: 45%;
  margin-right: 45%;
}

.mi-45p {
  margin: 45% !important;
}

.mti-45p {
  margin-top: 45% !important;
}

.mbi-45p {
  margin-bottom: 45% !important;
}

.mli-45p {
  margin-left: 45% !important;
}

.mri-45p {
  margin-right: 45% !important;
}

.mti--45p {
  margin-top: -45% !important;
}

.mbi--45p {
  margin-bottom: -45% !important;
}

.mli--45p {
  margin-left: -45% !important;
}

.mri--45p {
  margin-right: -45% !important;
}

.myi-45p {
  margin-top: 45% !important;
  margin-bottom: 45% !important;
}

.mxi-45p {
  margin-left: 45% !important;
  margin-right: 45% !important;
}

.p-45p {
  padding: 45%;
}

.pt-45p {
  padding-top: 45%;
}

.pb-45p {
  padding-bottom: 45%;
}

.pl-45p {
  padding-left: 45%;
}

.pr-45p {
  padding-right: 45%;
}

.py-45p {
  padding-top: 45%;
  padding-bottom: 45%;
}

.px-45p {
  padding-left: 45%;
  padding-right: 45%;
}

.pi-45p {
  padding: 45% !important;
}

.pti-45p {
  padding-top: 45% !important;
}

.pbi-45p {
  padding-bottom: 45% !important;
}

.pli-45p {
  padding-left: 45% !important;
}

.pri-45p {
  padding-right: 45% !important;
}

.pyi-45p {
  padding-top: 45% !important;
  padding-bottom: 45% !important;
}

.pxi-45p {
  padding-left: 45% !important;
  padding-right: 45% !important;
}

tr.p-45p > td {
  padding: 45%;
}

tr.pt-45p > td {
  padding-top: 45%;
}

tr.pb-45p > td {
  padding-bottom: 45%;
}

tr.pl-45p > td {
  padding-left: 45%;
}

tr.pr-45p > td {
  padding-right: 45%;
}

tr.py-45p > td {
  padding-top: 45%;
  padding-bottom: 45%;
}

tr.px-45p > td {
  padding-left: 45%;
  padding-right: 45%;
}

tr.pi-45p > td {
  padding: 45% !important;
}

tr.pti-45p > td {
  padding-top: 45% !important;
}

tr.pbi-45p > td {
  padding-bottom: 45% !important;
}

tr.pli-45p > td {
  padding-left: 45% !important;
}

tr.pri-45p > td {
  padding-right: 45% !important;
}

tr.pyi-45p > td {
  padding-top: 45% !important;
  padding-bottom: 45% !important;
}

tr.pxi-45p > td {
  padding-left: 45% !important;
  padding-right: 45% !important;
}

.m-46p {
  margin: 46%;
}

.mt-46p {
  margin-top: 46%;
}

.mb-46p {
  margin-bottom: 46%;
}

.ml-46p {
  margin-left: 46%;
}

.mr-46p {
  margin-right: 46%;
}

.mt--46p {
  margin-top: -46%;
}

.mb--46p {
  margin-bottom: -46%;
}

.ml--46p {
  margin-left: -46%;
}

.mr--46p {
  margin-right: -46%;
}

.my-46p {
  margin-top: 46%;
  margin-bottom: 46%;
}

.mx-46p {
  margin-left: 46%;
  margin-right: 46%;
}

.mi-46p {
  margin: 46% !important;
}

.mti-46p {
  margin-top: 46% !important;
}

.mbi-46p {
  margin-bottom: 46% !important;
}

.mli-46p {
  margin-left: 46% !important;
}

.mri-46p {
  margin-right: 46% !important;
}

.mti--46p {
  margin-top: -46% !important;
}

.mbi--46p {
  margin-bottom: -46% !important;
}

.mli--46p {
  margin-left: -46% !important;
}

.mri--46p {
  margin-right: -46% !important;
}

.myi-46p {
  margin-top: 46% !important;
  margin-bottom: 46% !important;
}

.mxi-46p {
  margin-left: 46% !important;
  margin-right: 46% !important;
}

.p-46p {
  padding: 46%;
}

.pt-46p {
  padding-top: 46%;
}

.pb-46p {
  padding-bottom: 46%;
}

.pl-46p {
  padding-left: 46%;
}

.pr-46p {
  padding-right: 46%;
}

.py-46p {
  padding-top: 46%;
  padding-bottom: 46%;
}

.px-46p {
  padding-left: 46%;
  padding-right: 46%;
}

.pi-46p {
  padding: 46% !important;
}

.pti-46p {
  padding-top: 46% !important;
}

.pbi-46p {
  padding-bottom: 46% !important;
}

.pli-46p {
  padding-left: 46% !important;
}

.pri-46p {
  padding-right: 46% !important;
}

.pyi-46p {
  padding-top: 46% !important;
  padding-bottom: 46% !important;
}

.pxi-46p {
  padding-left: 46% !important;
  padding-right: 46% !important;
}

tr.p-46p > td {
  padding: 46%;
}

tr.pt-46p > td {
  padding-top: 46%;
}

tr.pb-46p > td {
  padding-bottom: 46%;
}

tr.pl-46p > td {
  padding-left: 46%;
}

tr.pr-46p > td {
  padding-right: 46%;
}

tr.py-46p > td {
  padding-top: 46%;
  padding-bottom: 46%;
}

tr.px-46p > td {
  padding-left: 46%;
  padding-right: 46%;
}

tr.pi-46p > td {
  padding: 46% !important;
}

tr.pti-46p > td {
  padding-top: 46% !important;
}

tr.pbi-46p > td {
  padding-bottom: 46% !important;
}

tr.pli-46p > td {
  padding-left: 46% !important;
}

tr.pri-46p > td {
  padding-right: 46% !important;
}

tr.pyi-46p > td {
  padding-top: 46% !important;
  padding-bottom: 46% !important;
}

tr.pxi-46p > td {
  padding-left: 46% !important;
  padding-right: 46% !important;
}

.m-47p {
  margin: 47%;
}

.mt-47p {
  margin-top: 47%;
}

.mb-47p {
  margin-bottom: 47%;
}

.ml-47p {
  margin-left: 47%;
}

.mr-47p {
  margin-right: 47%;
}

.mt--47p {
  margin-top: -47%;
}

.mb--47p {
  margin-bottom: -47%;
}

.ml--47p {
  margin-left: -47%;
}

.mr--47p {
  margin-right: -47%;
}

.my-47p {
  margin-top: 47%;
  margin-bottom: 47%;
}

.mx-47p {
  margin-left: 47%;
  margin-right: 47%;
}

.mi-47p {
  margin: 47% !important;
}

.mti-47p {
  margin-top: 47% !important;
}

.mbi-47p {
  margin-bottom: 47% !important;
}

.mli-47p {
  margin-left: 47% !important;
}

.mri-47p {
  margin-right: 47% !important;
}

.mti--47p {
  margin-top: -47% !important;
}

.mbi--47p {
  margin-bottom: -47% !important;
}

.mli--47p {
  margin-left: -47% !important;
}

.mri--47p {
  margin-right: -47% !important;
}

.myi-47p {
  margin-top: 47% !important;
  margin-bottom: 47% !important;
}

.mxi-47p {
  margin-left: 47% !important;
  margin-right: 47% !important;
}

.p-47p {
  padding: 47%;
}

.pt-47p {
  padding-top: 47%;
}

.pb-47p {
  padding-bottom: 47%;
}

.pl-47p {
  padding-left: 47%;
}

.pr-47p {
  padding-right: 47%;
}

.py-47p {
  padding-top: 47%;
  padding-bottom: 47%;
}

.px-47p {
  padding-left: 47%;
  padding-right: 47%;
}

.pi-47p {
  padding: 47% !important;
}

.pti-47p {
  padding-top: 47% !important;
}

.pbi-47p {
  padding-bottom: 47% !important;
}

.pli-47p {
  padding-left: 47% !important;
}

.pri-47p {
  padding-right: 47% !important;
}

.pyi-47p {
  padding-top: 47% !important;
  padding-bottom: 47% !important;
}

.pxi-47p {
  padding-left: 47% !important;
  padding-right: 47% !important;
}

tr.p-47p > td {
  padding: 47%;
}

tr.pt-47p > td {
  padding-top: 47%;
}

tr.pb-47p > td {
  padding-bottom: 47%;
}

tr.pl-47p > td {
  padding-left: 47%;
}

tr.pr-47p > td {
  padding-right: 47%;
}

tr.py-47p > td {
  padding-top: 47%;
  padding-bottom: 47%;
}

tr.px-47p > td {
  padding-left: 47%;
  padding-right: 47%;
}

tr.pi-47p > td {
  padding: 47% !important;
}

tr.pti-47p > td {
  padding-top: 47% !important;
}

tr.pbi-47p > td {
  padding-bottom: 47% !important;
}

tr.pli-47p > td {
  padding-left: 47% !important;
}

tr.pri-47p > td {
  padding-right: 47% !important;
}

tr.pyi-47p > td {
  padding-top: 47% !important;
  padding-bottom: 47% !important;
}

tr.pxi-47p > td {
  padding-left: 47% !important;
  padding-right: 47% !important;
}

.m-48p {
  margin: 48%;
}

.mt-48p {
  margin-top: 48%;
}

.mb-48p {
  margin-bottom: 48%;
}

.ml-48p {
  margin-left: 48%;
}

.mr-48p {
  margin-right: 48%;
}

.mt--48p {
  margin-top: -48%;
}

.mb--48p {
  margin-bottom: -48%;
}

.ml--48p {
  margin-left: -48%;
}

.mr--48p {
  margin-right: -48%;
}

.my-48p {
  margin-top: 48%;
  margin-bottom: 48%;
}

.mx-48p {
  margin-left: 48%;
  margin-right: 48%;
}

.mi-48p {
  margin: 48% !important;
}

.mti-48p {
  margin-top: 48% !important;
}

.mbi-48p {
  margin-bottom: 48% !important;
}

.mli-48p {
  margin-left: 48% !important;
}

.mri-48p {
  margin-right: 48% !important;
}

.mti--48p {
  margin-top: -48% !important;
}

.mbi--48p {
  margin-bottom: -48% !important;
}

.mli--48p {
  margin-left: -48% !important;
}

.mri--48p {
  margin-right: -48% !important;
}

.myi-48p {
  margin-top: 48% !important;
  margin-bottom: 48% !important;
}

.mxi-48p {
  margin-left: 48% !important;
  margin-right: 48% !important;
}

.p-48p {
  padding: 48%;
}

.pt-48p {
  padding-top: 48%;
}

.pb-48p {
  padding-bottom: 48%;
}

.pl-48p {
  padding-left: 48%;
}

.pr-48p {
  padding-right: 48%;
}

.py-48p {
  padding-top: 48%;
  padding-bottom: 48%;
}

.px-48p {
  padding-left: 48%;
  padding-right: 48%;
}

.pi-48p {
  padding: 48% !important;
}

.pti-48p {
  padding-top: 48% !important;
}

.pbi-48p {
  padding-bottom: 48% !important;
}

.pli-48p {
  padding-left: 48% !important;
}

.pri-48p {
  padding-right: 48% !important;
}

.pyi-48p {
  padding-top: 48% !important;
  padding-bottom: 48% !important;
}

.pxi-48p {
  padding-left: 48% !important;
  padding-right: 48% !important;
}

tr.p-48p > td {
  padding: 48%;
}

tr.pt-48p > td {
  padding-top: 48%;
}

tr.pb-48p > td {
  padding-bottom: 48%;
}

tr.pl-48p > td {
  padding-left: 48%;
}

tr.pr-48p > td {
  padding-right: 48%;
}

tr.py-48p > td {
  padding-top: 48%;
  padding-bottom: 48%;
}

tr.px-48p > td {
  padding-left: 48%;
  padding-right: 48%;
}

tr.pi-48p > td {
  padding: 48% !important;
}

tr.pti-48p > td {
  padding-top: 48% !important;
}

tr.pbi-48p > td {
  padding-bottom: 48% !important;
}

tr.pli-48p > td {
  padding-left: 48% !important;
}

tr.pri-48p > td {
  padding-right: 48% !important;
}

tr.pyi-48p > td {
  padding-top: 48% !important;
  padding-bottom: 48% !important;
}

tr.pxi-48p > td {
  padding-left: 48% !important;
  padding-right: 48% !important;
}

.m-49p {
  margin: 49%;
}

.mt-49p {
  margin-top: 49%;
}

.mb-49p {
  margin-bottom: 49%;
}

.ml-49p {
  margin-left: 49%;
}

.mr-49p {
  margin-right: 49%;
}

.mt--49p {
  margin-top: -49%;
}

.mb--49p {
  margin-bottom: -49%;
}

.ml--49p {
  margin-left: -49%;
}

.mr--49p {
  margin-right: -49%;
}

.my-49p {
  margin-top: 49%;
  margin-bottom: 49%;
}

.mx-49p {
  margin-left: 49%;
  margin-right: 49%;
}

.mi-49p {
  margin: 49% !important;
}

.mti-49p {
  margin-top: 49% !important;
}

.mbi-49p {
  margin-bottom: 49% !important;
}

.mli-49p {
  margin-left: 49% !important;
}

.mri-49p {
  margin-right: 49% !important;
}

.mti--49p {
  margin-top: -49% !important;
}

.mbi--49p {
  margin-bottom: -49% !important;
}

.mli--49p {
  margin-left: -49% !important;
}

.mri--49p {
  margin-right: -49% !important;
}

.myi-49p {
  margin-top: 49% !important;
  margin-bottom: 49% !important;
}

.mxi-49p {
  margin-left: 49% !important;
  margin-right: 49% !important;
}

.p-49p {
  padding: 49%;
}

.pt-49p {
  padding-top: 49%;
}

.pb-49p {
  padding-bottom: 49%;
}

.pl-49p {
  padding-left: 49%;
}

.pr-49p {
  padding-right: 49%;
}

.py-49p {
  padding-top: 49%;
  padding-bottom: 49%;
}

.px-49p {
  padding-left: 49%;
  padding-right: 49%;
}

.pi-49p {
  padding: 49% !important;
}

.pti-49p {
  padding-top: 49% !important;
}

.pbi-49p {
  padding-bottom: 49% !important;
}

.pli-49p {
  padding-left: 49% !important;
}

.pri-49p {
  padding-right: 49% !important;
}

.pyi-49p {
  padding-top: 49% !important;
  padding-bottom: 49% !important;
}

.pxi-49p {
  padding-left: 49% !important;
  padding-right: 49% !important;
}

tr.p-49p > td {
  padding: 49%;
}

tr.pt-49p > td {
  padding-top: 49%;
}

tr.pb-49p > td {
  padding-bottom: 49%;
}

tr.pl-49p > td {
  padding-left: 49%;
}

tr.pr-49p > td {
  padding-right: 49%;
}

tr.py-49p > td {
  padding-top: 49%;
  padding-bottom: 49%;
}

tr.px-49p > td {
  padding-left: 49%;
  padding-right: 49%;
}

tr.pi-49p > td {
  padding: 49% !important;
}

tr.pti-49p > td {
  padding-top: 49% !important;
}

tr.pbi-49p > td {
  padding-bottom: 49% !important;
}

tr.pli-49p > td {
  padding-left: 49% !important;
}

tr.pri-49p > td {
  padding-right: 49% !important;
}

tr.pyi-49p > td {
  padding-top: 49% !important;
  padding-bottom: 49% !important;
}

tr.pxi-49p > td {
  padding-left: 49% !important;
  padding-right: 49% !important;
}

.m-50p {
  margin: 50%;
}

.mt-50p {
  margin-top: 50%;
}

.mb-50p {
  margin-bottom: 50%;
}

.ml-50p {
  margin-left: 50%;
}

.mr-50p {
  margin-right: 50%;
}

.mt--50p {
  margin-top: -50%;
}

.mb--50p {
  margin-bottom: -50%;
}

.ml--50p {
  margin-left: -50%;
}

.mr--50p {
  margin-right: -50%;
}

.my-50p {
  margin-top: 50%;
  margin-bottom: 50%;
}

.mx-50p {
  margin-left: 50%;
  margin-right: 50%;
}

.mi-50p {
  margin: 50% !important;
}

.mti-50p {
  margin-top: 50% !important;
}

.mbi-50p {
  margin-bottom: 50% !important;
}

.mli-50p {
  margin-left: 50% !important;
}

.mri-50p {
  margin-right: 50% !important;
}

.mti--50p {
  margin-top: -50% !important;
}

.mbi--50p {
  margin-bottom: -50% !important;
}

.mli--50p {
  margin-left: -50% !important;
}

.mri--50p {
  margin-right: -50% !important;
}

.myi-50p {
  margin-top: 50% !important;
  margin-bottom: 50% !important;
}

.mxi-50p {
  margin-left: 50% !important;
  margin-right: 50% !important;
}

.p-50p {
  padding: 50%;
}

.pt-50p {
  padding-top: 50%;
}

.pb-50p {
  padding-bottom: 50%;
}

.pl-50p {
  padding-left: 50%;
}

.pr-50p {
  padding-right: 50%;
}

.py-50p {
  padding-top: 50%;
  padding-bottom: 50%;
}

.px-50p {
  padding-left: 50%;
  padding-right: 50%;
}

.pi-50p {
  padding: 50% !important;
}

.pti-50p {
  padding-top: 50% !important;
}

.pbi-50p {
  padding-bottom: 50% !important;
}

.pli-50p {
  padding-left: 50% !important;
}

.pri-50p {
  padding-right: 50% !important;
}

.pyi-50p {
  padding-top: 50% !important;
  padding-bottom: 50% !important;
}

.pxi-50p {
  padding-left: 50% !important;
  padding-right: 50% !important;
}

tr.p-50p > td {
  padding: 50%;
}

tr.pt-50p > td {
  padding-top: 50%;
}

tr.pb-50p > td {
  padding-bottom: 50%;
}

tr.pl-50p > td {
  padding-left: 50%;
}

tr.pr-50p > td {
  padding-right: 50%;
}

tr.py-50p > td {
  padding-top: 50%;
  padding-bottom: 50%;
}

tr.px-50p > td {
  padding-left: 50%;
  padding-right: 50%;
}

tr.pi-50p > td {
  padding: 50% !important;
}

tr.pti-50p > td {
  padding-top: 50% !important;
}

tr.pbi-50p > td {
  padding-bottom: 50% !important;
}

tr.pli-50p > td {
  padding-left: 50% !important;
}

tr.pri-50p > td {
  padding-right: 50% !important;
}

tr.pyi-50p > td {
  padding-top: 50% !important;
  padding-bottom: 50% !important;
}

tr.pxi-50p > td {
  padding-left: 50% !important;
  padding-right: 50% !important;
}

.m-51p {
  margin: 51%;
}

.mt-51p {
  margin-top: 51%;
}

.mb-51p {
  margin-bottom: 51%;
}

.ml-51p {
  margin-left: 51%;
}

.mr-51p {
  margin-right: 51%;
}

.mt--51p {
  margin-top: -51%;
}

.mb--51p {
  margin-bottom: -51%;
}

.ml--51p {
  margin-left: -51%;
}

.mr--51p {
  margin-right: -51%;
}

.my-51p {
  margin-top: 51%;
  margin-bottom: 51%;
}

.mx-51p {
  margin-left: 51%;
  margin-right: 51%;
}

.mi-51p {
  margin: 51% !important;
}

.mti-51p {
  margin-top: 51% !important;
}

.mbi-51p {
  margin-bottom: 51% !important;
}

.mli-51p {
  margin-left: 51% !important;
}

.mri-51p {
  margin-right: 51% !important;
}

.mti--51p {
  margin-top: -51% !important;
}

.mbi--51p {
  margin-bottom: -51% !important;
}

.mli--51p {
  margin-left: -51% !important;
}

.mri--51p {
  margin-right: -51% !important;
}

.myi-51p {
  margin-top: 51% !important;
  margin-bottom: 51% !important;
}

.mxi-51p {
  margin-left: 51% !important;
  margin-right: 51% !important;
}

.p-51p {
  padding: 51%;
}

.pt-51p {
  padding-top: 51%;
}

.pb-51p {
  padding-bottom: 51%;
}

.pl-51p {
  padding-left: 51%;
}

.pr-51p {
  padding-right: 51%;
}

.py-51p {
  padding-top: 51%;
  padding-bottom: 51%;
}

.px-51p {
  padding-left: 51%;
  padding-right: 51%;
}

.pi-51p {
  padding: 51% !important;
}

.pti-51p {
  padding-top: 51% !important;
}

.pbi-51p {
  padding-bottom: 51% !important;
}

.pli-51p {
  padding-left: 51% !important;
}

.pri-51p {
  padding-right: 51% !important;
}

.pyi-51p {
  padding-top: 51% !important;
  padding-bottom: 51% !important;
}

.pxi-51p {
  padding-left: 51% !important;
  padding-right: 51% !important;
}

tr.p-51p > td {
  padding: 51%;
}

tr.pt-51p > td {
  padding-top: 51%;
}

tr.pb-51p > td {
  padding-bottom: 51%;
}

tr.pl-51p > td {
  padding-left: 51%;
}

tr.pr-51p > td {
  padding-right: 51%;
}

tr.py-51p > td {
  padding-top: 51%;
  padding-bottom: 51%;
}

tr.px-51p > td {
  padding-left: 51%;
  padding-right: 51%;
}

tr.pi-51p > td {
  padding: 51% !important;
}

tr.pti-51p > td {
  padding-top: 51% !important;
}

tr.pbi-51p > td {
  padding-bottom: 51% !important;
}

tr.pli-51p > td {
  padding-left: 51% !important;
}

tr.pri-51p > td {
  padding-right: 51% !important;
}

tr.pyi-51p > td {
  padding-top: 51% !important;
  padding-bottom: 51% !important;
}

tr.pxi-51p > td {
  padding-left: 51% !important;
  padding-right: 51% !important;
}

.m-52p {
  margin: 52%;
}

.mt-52p {
  margin-top: 52%;
}

.mb-52p {
  margin-bottom: 52%;
}

.ml-52p {
  margin-left: 52%;
}

.mr-52p {
  margin-right: 52%;
}

.mt--52p {
  margin-top: -52%;
}

.mb--52p {
  margin-bottom: -52%;
}

.ml--52p {
  margin-left: -52%;
}

.mr--52p {
  margin-right: -52%;
}

.my-52p {
  margin-top: 52%;
  margin-bottom: 52%;
}

.mx-52p {
  margin-left: 52%;
  margin-right: 52%;
}

.mi-52p {
  margin: 52% !important;
}

.mti-52p {
  margin-top: 52% !important;
}

.mbi-52p {
  margin-bottom: 52% !important;
}

.mli-52p {
  margin-left: 52% !important;
}

.mri-52p {
  margin-right: 52% !important;
}

.mti--52p {
  margin-top: -52% !important;
}

.mbi--52p {
  margin-bottom: -52% !important;
}

.mli--52p {
  margin-left: -52% !important;
}

.mri--52p {
  margin-right: -52% !important;
}

.myi-52p {
  margin-top: 52% !important;
  margin-bottom: 52% !important;
}

.mxi-52p {
  margin-left: 52% !important;
  margin-right: 52% !important;
}

.p-52p {
  padding: 52%;
}

.pt-52p {
  padding-top: 52%;
}

.pb-52p {
  padding-bottom: 52%;
}

.pl-52p {
  padding-left: 52%;
}

.pr-52p {
  padding-right: 52%;
}

.py-52p {
  padding-top: 52%;
  padding-bottom: 52%;
}

.px-52p {
  padding-left: 52%;
  padding-right: 52%;
}

.pi-52p {
  padding: 52% !important;
}

.pti-52p {
  padding-top: 52% !important;
}

.pbi-52p {
  padding-bottom: 52% !important;
}

.pli-52p {
  padding-left: 52% !important;
}

.pri-52p {
  padding-right: 52% !important;
}

.pyi-52p {
  padding-top: 52% !important;
  padding-bottom: 52% !important;
}

.pxi-52p {
  padding-left: 52% !important;
  padding-right: 52% !important;
}

tr.p-52p > td {
  padding: 52%;
}

tr.pt-52p > td {
  padding-top: 52%;
}

tr.pb-52p > td {
  padding-bottom: 52%;
}

tr.pl-52p > td {
  padding-left: 52%;
}

tr.pr-52p > td {
  padding-right: 52%;
}

tr.py-52p > td {
  padding-top: 52%;
  padding-bottom: 52%;
}

tr.px-52p > td {
  padding-left: 52%;
  padding-right: 52%;
}

tr.pi-52p > td {
  padding: 52% !important;
}

tr.pti-52p > td {
  padding-top: 52% !important;
}

tr.pbi-52p > td {
  padding-bottom: 52% !important;
}

tr.pli-52p > td {
  padding-left: 52% !important;
}

tr.pri-52p > td {
  padding-right: 52% !important;
}

tr.pyi-52p > td {
  padding-top: 52% !important;
  padding-bottom: 52% !important;
}

tr.pxi-52p > td {
  padding-left: 52% !important;
  padding-right: 52% !important;
}

.m-53p {
  margin: 53%;
}

.mt-53p {
  margin-top: 53%;
}

.mb-53p {
  margin-bottom: 53%;
}

.ml-53p {
  margin-left: 53%;
}

.mr-53p {
  margin-right: 53%;
}

.mt--53p {
  margin-top: -53%;
}

.mb--53p {
  margin-bottom: -53%;
}

.ml--53p {
  margin-left: -53%;
}

.mr--53p {
  margin-right: -53%;
}

.my-53p {
  margin-top: 53%;
  margin-bottom: 53%;
}

.mx-53p {
  margin-left: 53%;
  margin-right: 53%;
}

.mi-53p {
  margin: 53% !important;
}

.mti-53p {
  margin-top: 53% !important;
}

.mbi-53p {
  margin-bottom: 53% !important;
}

.mli-53p {
  margin-left: 53% !important;
}

.mri-53p {
  margin-right: 53% !important;
}

.mti--53p {
  margin-top: -53% !important;
}

.mbi--53p {
  margin-bottom: -53% !important;
}

.mli--53p {
  margin-left: -53% !important;
}

.mri--53p {
  margin-right: -53% !important;
}

.myi-53p {
  margin-top: 53% !important;
  margin-bottom: 53% !important;
}

.mxi-53p {
  margin-left: 53% !important;
  margin-right: 53% !important;
}

.p-53p {
  padding: 53%;
}

.pt-53p {
  padding-top: 53%;
}

.pb-53p {
  padding-bottom: 53%;
}

.pl-53p {
  padding-left: 53%;
}

.pr-53p {
  padding-right: 53%;
}

.py-53p {
  padding-top: 53%;
  padding-bottom: 53%;
}

.px-53p {
  padding-left: 53%;
  padding-right: 53%;
}

.pi-53p {
  padding: 53% !important;
}

.pti-53p {
  padding-top: 53% !important;
}

.pbi-53p {
  padding-bottom: 53% !important;
}

.pli-53p {
  padding-left: 53% !important;
}

.pri-53p {
  padding-right: 53% !important;
}

.pyi-53p {
  padding-top: 53% !important;
  padding-bottom: 53% !important;
}

.pxi-53p {
  padding-left: 53% !important;
  padding-right: 53% !important;
}

tr.p-53p > td {
  padding: 53%;
}

tr.pt-53p > td {
  padding-top: 53%;
}

tr.pb-53p > td {
  padding-bottom: 53%;
}

tr.pl-53p > td {
  padding-left: 53%;
}

tr.pr-53p > td {
  padding-right: 53%;
}

tr.py-53p > td {
  padding-top: 53%;
  padding-bottom: 53%;
}

tr.px-53p > td {
  padding-left: 53%;
  padding-right: 53%;
}

tr.pi-53p > td {
  padding: 53% !important;
}

tr.pti-53p > td {
  padding-top: 53% !important;
}

tr.pbi-53p > td {
  padding-bottom: 53% !important;
}

tr.pli-53p > td {
  padding-left: 53% !important;
}

tr.pri-53p > td {
  padding-right: 53% !important;
}

tr.pyi-53p > td {
  padding-top: 53% !important;
  padding-bottom: 53% !important;
}

tr.pxi-53p > td {
  padding-left: 53% !important;
  padding-right: 53% !important;
}

.m-54p {
  margin: 54%;
}

.mt-54p {
  margin-top: 54%;
}

.mb-54p {
  margin-bottom: 54%;
}

.ml-54p {
  margin-left: 54%;
}

.mr-54p {
  margin-right: 54%;
}

.mt--54p {
  margin-top: -54%;
}

.mb--54p {
  margin-bottom: -54%;
}

.ml--54p {
  margin-left: -54%;
}

.mr--54p {
  margin-right: -54%;
}

.my-54p {
  margin-top: 54%;
  margin-bottom: 54%;
}

.mx-54p {
  margin-left: 54%;
  margin-right: 54%;
}

.mi-54p {
  margin: 54% !important;
}

.mti-54p {
  margin-top: 54% !important;
}

.mbi-54p {
  margin-bottom: 54% !important;
}

.mli-54p {
  margin-left: 54% !important;
}

.mri-54p {
  margin-right: 54% !important;
}

.mti--54p {
  margin-top: -54% !important;
}

.mbi--54p {
  margin-bottom: -54% !important;
}

.mli--54p {
  margin-left: -54% !important;
}

.mri--54p {
  margin-right: -54% !important;
}

.myi-54p {
  margin-top: 54% !important;
  margin-bottom: 54% !important;
}

.mxi-54p {
  margin-left: 54% !important;
  margin-right: 54% !important;
}

.p-54p {
  padding: 54%;
}

.pt-54p {
  padding-top: 54%;
}

.pb-54p {
  padding-bottom: 54%;
}

.pl-54p {
  padding-left: 54%;
}

.pr-54p {
  padding-right: 54%;
}

.py-54p {
  padding-top: 54%;
  padding-bottom: 54%;
}

.px-54p {
  padding-left: 54%;
  padding-right: 54%;
}

.pi-54p {
  padding: 54% !important;
}

.pti-54p {
  padding-top: 54% !important;
}

.pbi-54p {
  padding-bottom: 54% !important;
}

.pli-54p {
  padding-left: 54% !important;
}

.pri-54p {
  padding-right: 54% !important;
}

.pyi-54p {
  padding-top: 54% !important;
  padding-bottom: 54% !important;
}

.pxi-54p {
  padding-left: 54% !important;
  padding-right: 54% !important;
}

tr.p-54p > td {
  padding: 54%;
}

tr.pt-54p > td {
  padding-top: 54%;
}

tr.pb-54p > td {
  padding-bottom: 54%;
}

tr.pl-54p > td {
  padding-left: 54%;
}

tr.pr-54p > td {
  padding-right: 54%;
}

tr.py-54p > td {
  padding-top: 54%;
  padding-bottom: 54%;
}

tr.px-54p > td {
  padding-left: 54%;
  padding-right: 54%;
}

tr.pi-54p > td {
  padding: 54% !important;
}

tr.pti-54p > td {
  padding-top: 54% !important;
}

tr.pbi-54p > td {
  padding-bottom: 54% !important;
}

tr.pli-54p > td {
  padding-left: 54% !important;
}

tr.pri-54p > td {
  padding-right: 54% !important;
}

tr.pyi-54p > td {
  padding-top: 54% !important;
  padding-bottom: 54% !important;
}

tr.pxi-54p > td {
  padding-left: 54% !important;
  padding-right: 54% !important;
}

.m-55p {
  margin: 55%;
}

.mt-55p {
  margin-top: 55%;
}

.mb-55p {
  margin-bottom: 55%;
}

.ml-55p {
  margin-left: 55%;
}

.mr-55p {
  margin-right: 55%;
}

.mt--55p {
  margin-top: -55%;
}

.mb--55p {
  margin-bottom: -55%;
}

.ml--55p {
  margin-left: -55%;
}

.mr--55p {
  margin-right: -55%;
}

.my-55p {
  margin-top: 55%;
  margin-bottom: 55%;
}

.mx-55p {
  margin-left: 55%;
  margin-right: 55%;
}

.mi-55p {
  margin: 55% !important;
}

.mti-55p {
  margin-top: 55% !important;
}

.mbi-55p {
  margin-bottom: 55% !important;
}

.mli-55p {
  margin-left: 55% !important;
}

.mri-55p {
  margin-right: 55% !important;
}

.mti--55p {
  margin-top: -55% !important;
}

.mbi--55p {
  margin-bottom: -55% !important;
}

.mli--55p {
  margin-left: -55% !important;
}

.mri--55p {
  margin-right: -55% !important;
}

.myi-55p {
  margin-top: 55% !important;
  margin-bottom: 55% !important;
}

.mxi-55p {
  margin-left: 55% !important;
  margin-right: 55% !important;
}

.p-55p {
  padding: 55%;
}

.pt-55p {
  padding-top: 55%;
}

.pb-55p {
  padding-bottom: 55%;
}

.pl-55p {
  padding-left: 55%;
}

.pr-55p {
  padding-right: 55%;
}

.py-55p {
  padding-top: 55%;
  padding-bottom: 55%;
}

.px-55p {
  padding-left: 55%;
  padding-right: 55%;
}

.pi-55p {
  padding: 55% !important;
}

.pti-55p {
  padding-top: 55% !important;
}

.pbi-55p {
  padding-bottom: 55% !important;
}

.pli-55p {
  padding-left: 55% !important;
}

.pri-55p {
  padding-right: 55% !important;
}

.pyi-55p {
  padding-top: 55% !important;
  padding-bottom: 55% !important;
}

.pxi-55p {
  padding-left: 55% !important;
  padding-right: 55% !important;
}

tr.p-55p > td {
  padding: 55%;
}

tr.pt-55p > td {
  padding-top: 55%;
}

tr.pb-55p > td {
  padding-bottom: 55%;
}

tr.pl-55p > td {
  padding-left: 55%;
}

tr.pr-55p > td {
  padding-right: 55%;
}

tr.py-55p > td {
  padding-top: 55%;
  padding-bottom: 55%;
}

tr.px-55p > td {
  padding-left: 55%;
  padding-right: 55%;
}

tr.pi-55p > td {
  padding: 55% !important;
}

tr.pti-55p > td {
  padding-top: 55% !important;
}

tr.pbi-55p > td {
  padding-bottom: 55% !important;
}

tr.pli-55p > td {
  padding-left: 55% !important;
}

tr.pri-55p > td {
  padding-right: 55% !important;
}

tr.pyi-55p > td {
  padding-top: 55% !important;
  padding-bottom: 55% !important;
}

tr.pxi-55p > td {
  padding-left: 55% !important;
  padding-right: 55% !important;
}

.m-56p {
  margin: 56%;
}

.mt-56p {
  margin-top: 56%;
}

.mb-56p {
  margin-bottom: 56%;
}

.ml-56p {
  margin-left: 56%;
}

.mr-56p {
  margin-right: 56%;
}

.mt--56p {
  margin-top: -56%;
}

.mb--56p {
  margin-bottom: -56%;
}

.ml--56p {
  margin-left: -56%;
}

.mr--56p {
  margin-right: -56%;
}

.my-56p {
  margin-top: 56%;
  margin-bottom: 56%;
}

.mx-56p {
  margin-left: 56%;
  margin-right: 56%;
}

.mi-56p {
  margin: 56% !important;
}

.mti-56p {
  margin-top: 56% !important;
}

.mbi-56p {
  margin-bottom: 56% !important;
}

.mli-56p {
  margin-left: 56% !important;
}

.mri-56p {
  margin-right: 56% !important;
}

.mti--56p {
  margin-top: -56% !important;
}

.mbi--56p {
  margin-bottom: -56% !important;
}

.mli--56p {
  margin-left: -56% !important;
}

.mri--56p {
  margin-right: -56% !important;
}

.myi-56p {
  margin-top: 56% !important;
  margin-bottom: 56% !important;
}

.mxi-56p {
  margin-left: 56% !important;
  margin-right: 56% !important;
}

.p-56p {
  padding: 56%;
}

.pt-56p {
  padding-top: 56%;
}

.pb-56p {
  padding-bottom: 56%;
}

.pl-56p {
  padding-left: 56%;
}

.pr-56p {
  padding-right: 56%;
}

.py-56p {
  padding-top: 56%;
  padding-bottom: 56%;
}

.px-56p {
  padding-left: 56%;
  padding-right: 56%;
}

.pi-56p {
  padding: 56% !important;
}

.pti-56p {
  padding-top: 56% !important;
}

.pbi-56p {
  padding-bottom: 56% !important;
}

.pli-56p {
  padding-left: 56% !important;
}

.pri-56p {
  padding-right: 56% !important;
}

.pyi-56p {
  padding-top: 56% !important;
  padding-bottom: 56% !important;
}

.pxi-56p {
  padding-left: 56% !important;
  padding-right: 56% !important;
}

tr.p-56p > td {
  padding: 56%;
}

tr.pt-56p > td {
  padding-top: 56%;
}

tr.pb-56p > td {
  padding-bottom: 56%;
}

tr.pl-56p > td {
  padding-left: 56%;
}

tr.pr-56p > td {
  padding-right: 56%;
}

tr.py-56p > td {
  padding-top: 56%;
  padding-bottom: 56%;
}

tr.px-56p > td {
  padding-left: 56%;
  padding-right: 56%;
}

tr.pi-56p > td {
  padding: 56% !important;
}

tr.pti-56p > td {
  padding-top: 56% !important;
}

tr.pbi-56p > td {
  padding-bottom: 56% !important;
}

tr.pli-56p > td {
  padding-left: 56% !important;
}

tr.pri-56p > td {
  padding-right: 56% !important;
}

tr.pyi-56p > td {
  padding-top: 56% !important;
  padding-bottom: 56% !important;
}

tr.pxi-56p > td {
  padding-left: 56% !important;
  padding-right: 56% !important;
}

.m-57p {
  margin: 57%;
}

.mt-57p {
  margin-top: 57%;
}

.mb-57p {
  margin-bottom: 57%;
}

.ml-57p {
  margin-left: 57%;
}

.mr-57p {
  margin-right: 57%;
}

.mt--57p {
  margin-top: -57%;
}

.mb--57p {
  margin-bottom: -57%;
}

.ml--57p {
  margin-left: -57%;
}

.mr--57p {
  margin-right: -57%;
}

.my-57p {
  margin-top: 57%;
  margin-bottom: 57%;
}

.mx-57p {
  margin-left: 57%;
  margin-right: 57%;
}

.mi-57p {
  margin: 57% !important;
}

.mti-57p {
  margin-top: 57% !important;
}

.mbi-57p {
  margin-bottom: 57% !important;
}

.mli-57p {
  margin-left: 57% !important;
}

.mri-57p {
  margin-right: 57% !important;
}

.mti--57p {
  margin-top: -57% !important;
}

.mbi--57p {
  margin-bottom: -57% !important;
}

.mli--57p {
  margin-left: -57% !important;
}

.mri--57p {
  margin-right: -57% !important;
}

.myi-57p {
  margin-top: 57% !important;
  margin-bottom: 57% !important;
}

.mxi-57p {
  margin-left: 57% !important;
  margin-right: 57% !important;
}

.p-57p {
  padding: 57%;
}

.pt-57p {
  padding-top: 57%;
}

.pb-57p {
  padding-bottom: 57%;
}

.pl-57p {
  padding-left: 57%;
}

.pr-57p {
  padding-right: 57%;
}

.py-57p {
  padding-top: 57%;
  padding-bottom: 57%;
}

.px-57p {
  padding-left: 57%;
  padding-right: 57%;
}

.pi-57p {
  padding: 57% !important;
}

.pti-57p {
  padding-top: 57% !important;
}

.pbi-57p {
  padding-bottom: 57% !important;
}

.pli-57p {
  padding-left: 57% !important;
}

.pri-57p {
  padding-right: 57% !important;
}

.pyi-57p {
  padding-top: 57% !important;
  padding-bottom: 57% !important;
}

.pxi-57p {
  padding-left: 57% !important;
  padding-right: 57% !important;
}

tr.p-57p > td {
  padding: 57%;
}

tr.pt-57p > td {
  padding-top: 57%;
}

tr.pb-57p > td {
  padding-bottom: 57%;
}

tr.pl-57p > td {
  padding-left: 57%;
}

tr.pr-57p > td {
  padding-right: 57%;
}

tr.py-57p > td {
  padding-top: 57%;
  padding-bottom: 57%;
}

tr.px-57p > td {
  padding-left: 57%;
  padding-right: 57%;
}

tr.pi-57p > td {
  padding: 57% !important;
}

tr.pti-57p > td {
  padding-top: 57% !important;
}

tr.pbi-57p > td {
  padding-bottom: 57% !important;
}

tr.pli-57p > td {
  padding-left: 57% !important;
}

tr.pri-57p > td {
  padding-right: 57% !important;
}

tr.pyi-57p > td {
  padding-top: 57% !important;
  padding-bottom: 57% !important;
}

tr.pxi-57p > td {
  padding-left: 57% !important;
  padding-right: 57% !important;
}

.m-58p {
  margin: 58%;
}

.mt-58p {
  margin-top: 58%;
}

.mb-58p {
  margin-bottom: 58%;
}

.ml-58p {
  margin-left: 58%;
}

.mr-58p {
  margin-right: 58%;
}

.mt--58p {
  margin-top: -58%;
}

.mb--58p {
  margin-bottom: -58%;
}

.ml--58p {
  margin-left: -58%;
}

.mr--58p {
  margin-right: -58%;
}

.my-58p {
  margin-top: 58%;
  margin-bottom: 58%;
}

.mx-58p {
  margin-left: 58%;
  margin-right: 58%;
}

.mi-58p {
  margin: 58% !important;
}

.mti-58p {
  margin-top: 58% !important;
}

.mbi-58p {
  margin-bottom: 58% !important;
}

.mli-58p {
  margin-left: 58% !important;
}

.mri-58p {
  margin-right: 58% !important;
}

.mti--58p {
  margin-top: -58% !important;
}

.mbi--58p {
  margin-bottom: -58% !important;
}

.mli--58p {
  margin-left: -58% !important;
}

.mri--58p {
  margin-right: -58% !important;
}

.myi-58p {
  margin-top: 58% !important;
  margin-bottom: 58% !important;
}

.mxi-58p {
  margin-left: 58% !important;
  margin-right: 58% !important;
}

.p-58p {
  padding: 58%;
}

.pt-58p {
  padding-top: 58%;
}

.pb-58p {
  padding-bottom: 58%;
}

.pl-58p {
  padding-left: 58%;
}

.pr-58p {
  padding-right: 58%;
}

.py-58p {
  padding-top: 58%;
  padding-bottom: 58%;
}

.px-58p {
  padding-left: 58%;
  padding-right: 58%;
}

.pi-58p {
  padding: 58% !important;
}

.pti-58p {
  padding-top: 58% !important;
}

.pbi-58p {
  padding-bottom: 58% !important;
}

.pli-58p {
  padding-left: 58% !important;
}

.pri-58p {
  padding-right: 58% !important;
}

.pyi-58p {
  padding-top: 58% !important;
  padding-bottom: 58% !important;
}

.pxi-58p {
  padding-left: 58% !important;
  padding-right: 58% !important;
}

tr.p-58p > td {
  padding: 58%;
}

tr.pt-58p > td {
  padding-top: 58%;
}

tr.pb-58p > td {
  padding-bottom: 58%;
}

tr.pl-58p > td {
  padding-left: 58%;
}

tr.pr-58p > td {
  padding-right: 58%;
}

tr.py-58p > td {
  padding-top: 58%;
  padding-bottom: 58%;
}

tr.px-58p > td {
  padding-left: 58%;
  padding-right: 58%;
}

tr.pi-58p > td {
  padding: 58% !important;
}

tr.pti-58p > td {
  padding-top: 58% !important;
}

tr.pbi-58p > td {
  padding-bottom: 58% !important;
}

tr.pli-58p > td {
  padding-left: 58% !important;
}

tr.pri-58p > td {
  padding-right: 58% !important;
}

tr.pyi-58p > td {
  padding-top: 58% !important;
  padding-bottom: 58% !important;
}

tr.pxi-58p > td {
  padding-left: 58% !important;
  padding-right: 58% !important;
}

.m-59p {
  margin: 59%;
}

.mt-59p {
  margin-top: 59%;
}

.mb-59p {
  margin-bottom: 59%;
}

.ml-59p {
  margin-left: 59%;
}

.mr-59p {
  margin-right: 59%;
}

.mt--59p {
  margin-top: -59%;
}

.mb--59p {
  margin-bottom: -59%;
}

.ml--59p {
  margin-left: -59%;
}

.mr--59p {
  margin-right: -59%;
}

.my-59p {
  margin-top: 59%;
  margin-bottom: 59%;
}

.mx-59p {
  margin-left: 59%;
  margin-right: 59%;
}

.mi-59p {
  margin: 59% !important;
}

.mti-59p {
  margin-top: 59% !important;
}

.mbi-59p {
  margin-bottom: 59% !important;
}

.mli-59p {
  margin-left: 59% !important;
}

.mri-59p {
  margin-right: 59% !important;
}

.mti--59p {
  margin-top: -59% !important;
}

.mbi--59p {
  margin-bottom: -59% !important;
}

.mli--59p {
  margin-left: -59% !important;
}

.mri--59p {
  margin-right: -59% !important;
}

.myi-59p {
  margin-top: 59% !important;
  margin-bottom: 59% !important;
}

.mxi-59p {
  margin-left: 59% !important;
  margin-right: 59% !important;
}

.p-59p {
  padding: 59%;
}

.pt-59p {
  padding-top: 59%;
}

.pb-59p {
  padding-bottom: 59%;
}

.pl-59p {
  padding-left: 59%;
}

.pr-59p {
  padding-right: 59%;
}

.py-59p {
  padding-top: 59%;
  padding-bottom: 59%;
}

.px-59p {
  padding-left: 59%;
  padding-right: 59%;
}

.pi-59p {
  padding: 59% !important;
}

.pti-59p {
  padding-top: 59% !important;
}

.pbi-59p {
  padding-bottom: 59% !important;
}

.pli-59p {
  padding-left: 59% !important;
}

.pri-59p {
  padding-right: 59% !important;
}

.pyi-59p {
  padding-top: 59% !important;
  padding-bottom: 59% !important;
}

.pxi-59p {
  padding-left: 59% !important;
  padding-right: 59% !important;
}

tr.p-59p > td {
  padding: 59%;
}

tr.pt-59p > td {
  padding-top: 59%;
}

tr.pb-59p > td {
  padding-bottom: 59%;
}

tr.pl-59p > td {
  padding-left: 59%;
}

tr.pr-59p > td {
  padding-right: 59%;
}

tr.py-59p > td {
  padding-top: 59%;
  padding-bottom: 59%;
}

tr.px-59p > td {
  padding-left: 59%;
  padding-right: 59%;
}

tr.pi-59p > td {
  padding: 59% !important;
}

tr.pti-59p > td {
  padding-top: 59% !important;
}

tr.pbi-59p > td {
  padding-bottom: 59% !important;
}

tr.pli-59p > td {
  padding-left: 59% !important;
}

tr.pri-59p > td {
  padding-right: 59% !important;
}

tr.pyi-59p > td {
  padding-top: 59% !important;
  padding-bottom: 59% !important;
}

tr.pxi-59p > td {
  padding-left: 59% !important;
  padding-right: 59% !important;
}

.m-60p {
  margin: 60%;
}

.mt-60p {
  margin-top: 60%;
}

.mb-60p {
  margin-bottom: 60%;
}

.ml-60p {
  margin-left: 60%;
}

.mr-60p {
  margin-right: 60%;
}

.mt--60p {
  margin-top: -60%;
}

.mb--60p {
  margin-bottom: -60%;
}

.ml--60p {
  margin-left: -60%;
}

.mr--60p {
  margin-right: -60%;
}

.my-60p {
  margin-top: 60%;
  margin-bottom: 60%;
}

.mx-60p {
  margin-left: 60%;
  margin-right: 60%;
}

.mi-60p {
  margin: 60% !important;
}

.mti-60p {
  margin-top: 60% !important;
}

.mbi-60p {
  margin-bottom: 60% !important;
}

.mli-60p {
  margin-left: 60% !important;
}

.mri-60p {
  margin-right: 60% !important;
}

.mti--60p {
  margin-top: -60% !important;
}

.mbi--60p {
  margin-bottom: -60% !important;
}

.mli--60p {
  margin-left: -60% !important;
}

.mri--60p {
  margin-right: -60% !important;
}

.myi-60p {
  margin-top: 60% !important;
  margin-bottom: 60% !important;
}

.mxi-60p {
  margin-left: 60% !important;
  margin-right: 60% !important;
}

.p-60p {
  padding: 60%;
}

.pt-60p {
  padding-top: 60%;
}

.pb-60p {
  padding-bottom: 60%;
}

.pl-60p {
  padding-left: 60%;
}

.pr-60p {
  padding-right: 60%;
}

.py-60p {
  padding-top: 60%;
  padding-bottom: 60%;
}

.px-60p {
  padding-left: 60%;
  padding-right: 60%;
}

.pi-60p {
  padding: 60% !important;
}

.pti-60p {
  padding-top: 60% !important;
}

.pbi-60p {
  padding-bottom: 60% !important;
}

.pli-60p {
  padding-left: 60% !important;
}

.pri-60p {
  padding-right: 60% !important;
}

.pyi-60p {
  padding-top: 60% !important;
  padding-bottom: 60% !important;
}

.pxi-60p {
  padding-left: 60% !important;
  padding-right: 60% !important;
}

tr.p-60p > td {
  padding: 60%;
}

tr.pt-60p > td {
  padding-top: 60%;
}

tr.pb-60p > td {
  padding-bottom: 60%;
}

tr.pl-60p > td {
  padding-left: 60%;
}

tr.pr-60p > td {
  padding-right: 60%;
}

tr.py-60p > td {
  padding-top: 60%;
  padding-bottom: 60%;
}

tr.px-60p > td {
  padding-left: 60%;
  padding-right: 60%;
}

tr.pi-60p > td {
  padding: 60% !important;
}

tr.pti-60p > td {
  padding-top: 60% !important;
}

tr.pbi-60p > td {
  padding-bottom: 60% !important;
}

tr.pli-60p > td {
  padding-left: 60% !important;
}

tr.pri-60p > td {
  padding-right: 60% !important;
}

tr.pyi-60p > td {
  padding-top: 60% !important;
  padding-bottom: 60% !important;
}

tr.pxi-60p > td {
  padding-left: 60% !important;
  padding-right: 60% !important;
}

.m-61p {
  margin: 61%;
}

.mt-61p {
  margin-top: 61%;
}

.mb-61p {
  margin-bottom: 61%;
}

.ml-61p {
  margin-left: 61%;
}

.mr-61p {
  margin-right: 61%;
}

.mt--61p {
  margin-top: -61%;
}

.mb--61p {
  margin-bottom: -61%;
}

.ml--61p {
  margin-left: -61%;
}

.mr--61p {
  margin-right: -61%;
}

.my-61p {
  margin-top: 61%;
  margin-bottom: 61%;
}

.mx-61p {
  margin-left: 61%;
  margin-right: 61%;
}

.mi-61p {
  margin: 61% !important;
}

.mti-61p {
  margin-top: 61% !important;
}

.mbi-61p {
  margin-bottom: 61% !important;
}

.mli-61p {
  margin-left: 61% !important;
}

.mri-61p {
  margin-right: 61% !important;
}

.mti--61p {
  margin-top: -61% !important;
}

.mbi--61p {
  margin-bottom: -61% !important;
}

.mli--61p {
  margin-left: -61% !important;
}

.mri--61p {
  margin-right: -61% !important;
}

.myi-61p {
  margin-top: 61% !important;
  margin-bottom: 61% !important;
}

.mxi-61p {
  margin-left: 61% !important;
  margin-right: 61% !important;
}

.p-61p {
  padding: 61%;
}

.pt-61p {
  padding-top: 61%;
}

.pb-61p {
  padding-bottom: 61%;
}

.pl-61p {
  padding-left: 61%;
}

.pr-61p {
  padding-right: 61%;
}

.py-61p {
  padding-top: 61%;
  padding-bottom: 61%;
}

.px-61p {
  padding-left: 61%;
  padding-right: 61%;
}

.pi-61p {
  padding: 61% !important;
}

.pti-61p {
  padding-top: 61% !important;
}

.pbi-61p {
  padding-bottom: 61% !important;
}

.pli-61p {
  padding-left: 61% !important;
}

.pri-61p {
  padding-right: 61% !important;
}

.pyi-61p {
  padding-top: 61% !important;
  padding-bottom: 61% !important;
}

.pxi-61p {
  padding-left: 61% !important;
  padding-right: 61% !important;
}

tr.p-61p > td {
  padding: 61%;
}

tr.pt-61p > td {
  padding-top: 61%;
}

tr.pb-61p > td {
  padding-bottom: 61%;
}

tr.pl-61p > td {
  padding-left: 61%;
}

tr.pr-61p > td {
  padding-right: 61%;
}

tr.py-61p > td {
  padding-top: 61%;
  padding-bottom: 61%;
}

tr.px-61p > td {
  padding-left: 61%;
  padding-right: 61%;
}

tr.pi-61p > td {
  padding: 61% !important;
}

tr.pti-61p > td {
  padding-top: 61% !important;
}

tr.pbi-61p > td {
  padding-bottom: 61% !important;
}

tr.pli-61p > td {
  padding-left: 61% !important;
}

tr.pri-61p > td {
  padding-right: 61% !important;
}

tr.pyi-61p > td {
  padding-top: 61% !important;
  padding-bottom: 61% !important;
}

tr.pxi-61p > td {
  padding-left: 61% !important;
  padding-right: 61% !important;
}

.m-62p {
  margin: 62%;
}

.mt-62p {
  margin-top: 62%;
}

.mb-62p {
  margin-bottom: 62%;
}

.ml-62p {
  margin-left: 62%;
}

.mr-62p {
  margin-right: 62%;
}

.mt--62p {
  margin-top: -62%;
}

.mb--62p {
  margin-bottom: -62%;
}

.ml--62p {
  margin-left: -62%;
}

.mr--62p {
  margin-right: -62%;
}

.my-62p {
  margin-top: 62%;
  margin-bottom: 62%;
}

.mx-62p {
  margin-left: 62%;
  margin-right: 62%;
}

.mi-62p {
  margin: 62% !important;
}

.mti-62p {
  margin-top: 62% !important;
}

.mbi-62p {
  margin-bottom: 62% !important;
}

.mli-62p {
  margin-left: 62% !important;
}

.mri-62p {
  margin-right: 62% !important;
}

.mti--62p {
  margin-top: -62% !important;
}

.mbi--62p {
  margin-bottom: -62% !important;
}

.mli--62p {
  margin-left: -62% !important;
}

.mri--62p {
  margin-right: -62% !important;
}

.myi-62p {
  margin-top: 62% !important;
  margin-bottom: 62% !important;
}

.mxi-62p {
  margin-left: 62% !important;
  margin-right: 62% !important;
}

.p-62p {
  padding: 62%;
}

.pt-62p {
  padding-top: 62%;
}

.pb-62p {
  padding-bottom: 62%;
}

.pl-62p {
  padding-left: 62%;
}

.pr-62p {
  padding-right: 62%;
}

.py-62p {
  padding-top: 62%;
  padding-bottom: 62%;
}

.px-62p {
  padding-left: 62%;
  padding-right: 62%;
}

.pi-62p {
  padding: 62% !important;
}

.pti-62p {
  padding-top: 62% !important;
}

.pbi-62p {
  padding-bottom: 62% !important;
}

.pli-62p {
  padding-left: 62% !important;
}

.pri-62p {
  padding-right: 62% !important;
}

.pyi-62p {
  padding-top: 62% !important;
  padding-bottom: 62% !important;
}

.pxi-62p {
  padding-left: 62% !important;
  padding-right: 62% !important;
}

tr.p-62p > td {
  padding: 62%;
}

tr.pt-62p > td {
  padding-top: 62%;
}

tr.pb-62p > td {
  padding-bottom: 62%;
}

tr.pl-62p > td {
  padding-left: 62%;
}

tr.pr-62p > td {
  padding-right: 62%;
}

tr.py-62p > td {
  padding-top: 62%;
  padding-bottom: 62%;
}

tr.px-62p > td {
  padding-left: 62%;
  padding-right: 62%;
}

tr.pi-62p > td {
  padding: 62% !important;
}

tr.pti-62p > td {
  padding-top: 62% !important;
}

tr.pbi-62p > td {
  padding-bottom: 62% !important;
}

tr.pli-62p > td {
  padding-left: 62% !important;
}

tr.pri-62p > td {
  padding-right: 62% !important;
}

tr.pyi-62p > td {
  padding-top: 62% !important;
  padding-bottom: 62% !important;
}

tr.pxi-62p > td {
  padding-left: 62% !important;
  padding-right: 62% !important;
}

.m-63p {
  margin: 63%;
}

.mt-63p {
  margin-top: 63%;
}

.mb-63p {
  margin-bottom: 63%;
}

.ml-63p {
  margin-left: 63%;
}

.mr-63p {
  margin-right: 63%;
}

.mt--63p {
  margin-top: -63%;
}

.mb--63p {
  margin-bottom: -63%;
}

.ml--63p {
  margin-left: -63%;
}

.mr--63p {
  margin-right: -63%;
}

.my-63p {
  margin-top: 63%;
  margin-bottom: 63%;
}

.mx-63p {
  margin-left: 63%;
  margin-right: 63%;
}

.mi-63p {
  margin: 63% !important;
}

.mti-63p {
  margin-top: 63% !important;
}

.mbi-63p {
  margin-bottom: 63% !important;
}

.mli-63p {
  margin-left: 63% !important;
}

.mri-63p {
  margin-right: 63% !important;
}

.mti--63p {
  margin-top: -63% !important;
}

.mbi--63p {
  margin-bottom: -63% !important;
}

.mli--63p {
  margin-left: -63% !important;
}

.mri--63p {
  margin-right: -63% !important;
}

.myi-63p {
  margin-top: 63% !important;
  margin-bottom: 63% !important;
}

.mxi-63p {
  margin-left: 63% !important;
  margin-right: 63% !important;
}

.p-63p {
  padding: 63%;
}

.pt-63p {
  padding-top: 63%;
}

.pb-63p {
  padding-bottom: 63%;
}

.pl-63p {
  padding-left: 63%;
}

.pr-63p {
  padding-right: 63%;
}

.py-63p {
  padding-top: 63%;
  padding-bottom: 63%;
}

.px-63p {
  padding-left: 63%;
  padding-right: 63%;
}

.pi-63p {
  padding: 63% !important;
}

.pti-63p {
  padding-top: 63% !important;
}

.pbi-63p {
  padding-bottom: 63% !important;
}

.pli-63p {
  padding-left: 63% !important;
}

.pri-63p {
  padding-right: 63% !important;
}

.pyi-63p {
  padding-top: 63% !important;
  padding-bottom: 63% !important;
}

.pxi-63p {
  padding-left: 63% !important;
  padding-right: 63% !important;
}

tr.p-63p > td {
  padding: 63%;
}

tr.pt-63p > td {
  padding-top: 63%;
}

tr.pb-63p > td {
  padding-bottom: 63%;
}

tr.pl-63p > td {
  padding-left: 63%;
}

tr.pr-63p > td {
  padding-right: 63%;
}

tr.py-63p > td {
  padding-top: 63%;
  padding-bottom: 63%;
}

tr.px-63p > td {
  padding-left: 63%;
  padding-right: 63%;
}

tr.pi-63p > td {
  padding: 63% !important;
}

tr.pti-63p > td {
  padding-top: 63% !important;
}

tr.pbi-63p > td {
  padding-bottom: 63% !important;
}

tr.pli-63p > td {
  padding-left: 63% !important;
}

tr.pri-63p > td {
  padding-right: 63% !important;
}

tr.pyi-63p > td {
  padding-top: 63% !important;
  padding-bottom: 63% !important;
}

tr.pxi-63p > td {
  padding-left: 63% !important;
  padding-right: 63% !important;
}

.m-64p {
  margin: 64%;
}

.mt-64p {
  margin-top: 64%;
}

.mb-64p {
  margin-bottom: 64%;
}

.ml-64p {
  margin-left: 64%;
}

.mr-64p {
  margin-right: 64%;
}

.mt--64p {
  margin-top: -64%;
}

.mb--64p {
  margin-bottom: -64%;
}

.ml--64p {
  margin-left: -64%;
}

.mr--64p {
  margin-right: -64%;
}

.my-64p {
  margin-top: 64%;
  margin-bottom: 64%;
}

.mx-64p {
  margin-left: 64%;
  margin-right: 64%;
}

.mi-64p {
  margin: 64% !important;
}

.mti-64p {
  margin-top: 64% !important;
}

.mbi-64p {
  margin-bottom: 64% !important;
}

.mli-64p {
  margin-left: 64% !important;
}

.mri-64p {
  margin-right: 64% !important;
}

.mti--64p {
  margin-top: -64% !important;
}

.mbi--64p {
  margin-bottom: -64% !important;
}

.mli--64p {
  margin-left: -64% !important;
}

.mri--64p {
  margin-right: -64% !important;
}

.myi-64p {
  margin-top: 64% !important;
  margin-bottom: 64% !important;
}

.mxi-64p {
  margin-left: 64% !important;
  margin-right: 64% !important;
}

.p-64p {
  padding: 64%;
}

.pt-64p {
  padding-top: 64%;
}

.pb-64p {
  padding-bottom: 64%;
}

.pl-64p {
  padding-left: 64%;
}

.pr-64p {
  padding-right: 64%;
}

.py-64p {
  padding-top: 64%;
  padding-bottom: 64%;
}

.px-64p {
  padding-left: 64%;
  padding-right: 64%;
}

.pi-64p {
  padding: 64% !important;
}

.pti-64p {
  padding-top: 64% !important;
}

.pbi-64p {
  padding-bottom: 64% !important;
}

.pli-64p {
  padding-left: 64% !important;
}

.pri-64p {
  padding-right: 64% !important;
}

.pyi-64p {
  padding-top: 64% !important;
  padding-bottom: 64% !important;
}

.pxi-64p {
  padding-left: 64% !important;
  padding-right: 64% !important;
}

tr.p-64p > td {
  padding: 64%;
}

tr.pt-64p > td {
  padding-top: 64%;
}

tr.pb-64p > td {
  padding-bottom: 64%;
}

tr.pl-64p > td {
  padding-left: 64%;
}

tr.pr-64p > td {
  padding-right: 64%;
}

tr.py-64p > td {
  padding-top: 64%;
  padding-bottom: 64%;
}

tr.px-64p > td {
  padding-left: 64%;
  padding-right: 64%;
}

tr.pi-64p > td {
  padding: 64% !important;
}

tr.pti-64p > td {
  padding-top: 64% !important;
}

tr.pbi-64p > td {
  padding-bottom: 64% !important;
}

tr.pli-64p > td {
  padding-left: 64% !important;
}

tr.pri-64p > td {
  padding-right: 64% !important;
}

tr.pyi-64p > td {
  padding-top: 64% !important;
  padding-bottom: 64% !important;
}

tr.pxi-64p > td {
  padding-left: 64% !important;
  padding-right: 64% !important;
}

.m-65p {
  margin: 65%;
}

.mt-65p {
  margin-top: 65%;
}

.mb-65p {
  margin-bottom: 65%;
}

.ml-65p {
  margin-left: 65%;
}

.mr-65p {
  margin-right: 65%;
}

.mt--65p {
  margin-top: -65%;
}

.mb--65p {
  margin-bottom: -65%;
}

.ml--65p {
  margin-left: -65%;
}

.mr--65p {
  margin-right: -65%;
}

.my-65p {
  margin-top: 65%;
  margin-bottom: 65%;
}

.mx-65p {
  margin-left: 65%;
  margin-right: 65%;
}

.mi-65p {
  margin: 65% !important;
}

.mti-65p {
  margin-top: 65% !important;
}

.mbi-65p {
  margin-bottom: 65% !important;
}

.mli-65p {
  margin-left: 65% !important;
}

.mri-65p {
  margin-right: 65% !important;
}

.mti--65p {
  margin-top: -65% !important;
}

.mbi--65p {
  margin-bottom: -65% !important;
}

.mli--65p {
  margin-left: -65% !important;
}

.mri--65p {
  margin-right: -65% !important;
}

.myi-65p {
  margin-top: 65% !important;
  margin-bottom: 65% !important;
}

.mxi-65p {
  margin-left: 65% !important;
  margin-right: 65% !important;
}

.p-65p {
  padding: 65%;
}

.pt-65p {
  padding-top: 65%;
}

.pb-65p {
  padding-bottom: 65%;
}

.pl-65p {
  padding-left: 65%;
}

.pr-65p {
  padding-right: 65%;
}

.py-65p {
  padding-top: 65%;
  padding-bottom: 65%;
}

.px-65p {
  padding-left: 65%;
  padding-right: 65%;
}

.pi-65p {
  padding: 65% !important;
}

.pti-65p {
  padding-top: 65% !important;
}

.pbi-65p {
  padding-bottom: 65% !important;
}

.pli-65p {
  padding-left: 65% !important;
}

.pri-65p {
  padding-right: 65% !important;
}

.pyi-65p {
  padding-top: 65% !important;
  padding-bottom: 65% !important;
}

.pxi-65p {
  padding-left: 65% !important;
  padding-right: 65% !important;
}

tr.p-65p > td {
  padding: 65%;
}

tr.pt-65p > td {
  padding-top: 65%;
}

tr.pb-65p > td {
  padding-bottom: 65%;
}

tr.pl-65p > td {
  padding-left: 65%;
}

tr.pr-65p > td {
  padding-right: 65%;
}

tr.py-65p > td {
  padding-top: 65%;
  padding-bottom: 65%;
}

tr.px-65p > td {
  padding-left: 65%;
  padding-right: 65%;
}

tr.pi-65p > td {
  padding: 65% !important;
}

tr.pti-65p > td {
  padding-top: 65% !important;
}

tr.pbi-65p > td {
  padding-bottom: 65% !important;
}

tr.pli-65p > td {
  padding-left: 65% !important;
}

tr.pri-65p > td {
  padding-right: 65% !important;
}

tr.pyi-65p > td {
  padding-top: 65% !important;
  padding-bottom: 65% !important;
}

tr.pxi-65p > td {
  padding-left: 65% !important;
  padding-right: 65% !important;
}

.m-66p {
  margin: 66%;
}

.mt-66p {
  margin-top: 66%;
}

.mb-66p {
  margin-bottom: 66%;
}

.ml-66p {
  margin-left: 66%;
}

.mr-66p {
  margin-right: 66%;
}

.mt--66p {
  margin-top: -66%;
}

.mb--66p {
  margin-bottom: -66%;
}

.ml--66p {
  margin-left: -66%;
}

.mr--66p {
  margin-right: -66%;
}

.my-66p {
  margin-top: 66%;
  margin-bottom: 66%;
}

.mx-66p {
  margin-left: 66%;
  margin-right: 66%;
}

.mi-66p {
  margin: 66% !important;
}

.mti-66p {
  margin-top: 66% !important;
}

.mbi-66p {
  margin-bottom: 66% !important;
}

.mli-66p {
  margin-left: 66% !important;
}

.mri-66p {
  margin-right: 66% !important;
}

.mti--66p {
  margin-top: -66% !important;
}

.mbi--66p {
  margin-bottom: -66% !important;
}

.mli--66p {
  margin-left: -66% !important;
}

.mri--66p {
  margin-right: -66% !important;
}

.myi-66p {
  margin-top: 66% !important;
  margin-bottom: 66% !important;
}

.mxi-66p {
  margin-left: 66% !important;
  margin-right: 66% !important;
}

.p-66p {
  padding: 66%;
}

.pt-66p {
  padding-top: 66%;
}

.pb-66p {
  padding-bottom: 66%;
}

.pl-66p {
  padding-left: 66%;
}

.pr-66p {
  padding-right: 66%;
}

.py-66p {
  padding-top: 66%;
  padding-bottom: 66%;
}

.px-66p {
  padding-left: 66%;
  padding-right: 66%;
}

.pi-66p {
  padding: 66% !important;
}

.pti-66p {
  padding-top: 66% !important;
}

.pbi-66p {
  padding-bottom: 66% !important;
}

.pli-66p {
  padding-left: 66% !important;
}

.pri-66p {
  padding-right: 66% !important;
}

.pyi-66p {
  padding-top: 66% !important;
  padding-bottom: 66% !important;
}

.pxi-66p {
  padding-left: 66% !important;
  padding-right: 66% !important;
}

tr.p-66p > td {
  padding: 66%;
}

tr.pt-66p > td {
  padding-top: 66%;
}

tr.pb-66p > td {
  padding-bottom: 66%;
}

tr.pl-66p > td {
  padding-left: 66%;
}

tr.pr-66p > td {
  padding-right: 66%;
}

tr.py-66p > td {
  padding-top: 66%;
  padding-bottom: 66%;
}

tr.px-66p > td {
  padding-left: 66%;
  padding-right: 66%;
}

tr.pi-66p > td {
  padding: 66% !important;
}

tr.pti-66p > td {
  padding-top: 66% !important;
}

tr.pbi-66p > td {
  padding-bottom: 66% !important;
}

tr.pli-66p > td {
  padding-left: 66% !important;
}

tr.pri-66p > td {
  padding-right: 66% !important;
}

tr.pyi-66p > td {
  padding-top: 66% !important;
  padding-bottom: 66% !important;
}

tr.pxi-66p > td {
  padding-left: 66% !important;
  padding-right: 66% !important;
}

.m-67p {
  margin: 67%;
}

.mt-67p {
  margin-top: 67%;
}

.mb-67p {
  margin-bottom: 67%;
}

.ml-67p {
  margin-left: 67%;
}

.mr-67p {
  margin-right: 67%;
}

.mt--67p {
  margin-top: -67%;
}

.mb--67p {
  margin-bottom: -67%;
}

.ml--67p {
  margin-left: -67%;
}

.mr--67p {
  margin-right: -67%;
}

.my-67p {
  margin-top: 67%;
  margin-bottom: 67%;
}

.mx-67p {
  margin-left: 67%;
  margin-right: 67%;
}

.mi-67p {
  margin: 67% !important;
}

.mti-67p {
  margin-top: 67% !important;
}

.mbi-67p {
  margin-bottom: 67% !important;
}

.mli-67p {
  margin-left: 67% !important;
}

.mri-67p {
  margin-right: 67% !important;
}

.mti--67p {
  margin-top: -67% !important;
}

.mbi--67p {
  margin-bottom: -67% !important;
}

.mli--67p {
  margin-left: -67% !important;
}

.mri--67p {
  margin-right: -67% !important;
}

.myi-67p {
  margin-top: 67% !important;
  margin-bottom: 67% !important;
}

.mxi-67p {
  margin-left: 67% !important;
  margin-right: 67% !important;
}

.p-67p {
  padding: 67%;
}

.pt-67p {
  padding-top: 67%;
}

.pb-67p {
  padding-bottom: 67%;
}

.pl-67p {
  padding-left: 67%;
}

.pr-67p {
  padding-right: 67%;
}

.py-67p {
  padding-top: 67%;
  padding-bottom: 67%;
}

.px-67p {
  padding-left: 67%;
  padding-right: 67%;
}

.pi-67p {
  padding: 67% !important;
}

.pti-67p {
  padding-top: 67% !important;
}

.pbi-67p {
  padding-bottom: 67% !important;
}

.pli-67p {
  padding-left: 67% !important;
}

.pri-67p {
  padding-right: 67% !important;
}

.pyi-67p {
  padding-top: 67% !important;
  padding-bottom: 67% !important;
}

.pxi-67p {
  padding-left: 67% !important;
  padding-right: 67% !important;
}

tr.p-67p > td {
  padding: 67%;
}

tr.pt-67p > td {
  padding-top: 67%;
}

tr.pb-67p > td {
  padding-bottom: 67%;
}

tr.pl-67p > td {
  padding-left: 67%;
}

tr.pr-67p > td {
  padding-right: 67%;
}

tr.py-67p > td {
  padding-top: 67%;
  padding-bottom: 67%;
}

tr.px-67p > td {
  padding-left: 67%;
  padding-right: 67%;
}

tr.pi-67p > td {
  padding: 67% !important;
}

tr.pti-67p > td {
  padding-top: 67% !important;
}

tr.pbi-67p > td {
  padding-bottom: 67% !important;
}

tr.pli-67p > td {
  padding-left: 67% !important;
}

tr.pri-67p > td {
  padding-right: 67% !important;
}

tr.pyi-67p > td {
  padding-top: 67% !important;
  padding-bottom: 67% !important;
}

tr.pxi-67p > td {
  padding-left: 67% !important;
  padding-right: 67% !important;
}

.m-68p {
  margin: 68%;
}

.mt-68p {
  margin-top: 68%;
}

.mb-68p {
  margin-bottom: 68%;
}

.ml-68p {
  margin-left: 68%;
}

.mr-68p {
  margin-right: 68%;
}

.mt--68p {
  margin-top: -68%;
}

.mb--68p {
  margin-bottom: -68%;
}

.ml--68p {
  margin-left: -68%;
}

.mr--68p {
  margin-right: -68%;
}

.my-68p {
  margin-top: 68%;
  margin-bottom: 68%;
}

.mx-68p {
  margin-left: 68%;
  margin-right: 68%;
}

.mi-68p {
  margin: 68% !important;
}

.mti-68p {
  margin-top: 68% !important;
}

.mbi-68p {
  margin-bottom: 68% !important;
}

.mli-68p {
  margin-left: 68% !important;
}

.mri-68p {
  margin-right: 68% !important;
}

.mti--68p {
  margin-top: -68% !important;
}

.mbi--68p {
  margin-bottom: -68% !important;
}

.mli--68p {
  margin-left: -68% !important;
}

.mri--68p {
  margin-right: -68% !important;
}

.myi-68p {
  margin-top: 68% !important;
  margin-bottom: 68% !important;
}

.mxi-68p {
  margin-left: 68% !important;
  margin-right: 68% !important;
}

.p-68p {
  padding: 68%;
}

.pt-68p {
  padding-top: 68%;
}

.pb-68p {
  padding-bottom: 68%;
}

.pl-68p {
  padding-left: 68%;
}

.pr-68p {
  padding-right: 68%;
}

.py-68p {
  padding-top: 68%;
  padding-bottom: 68%;
}

.px-68p {
  padding-left: 68%;
  padding-right: 68%;
}

.pi-68p {
  padding: 68% !important;
}

.pti-68p {
  padding-top: 68% !important;
}

.pbi-68p {
  padding-bottom: 68% !important;
}

.pli-68p {
  padding-left: 68% !important;
}

.pri-68p {
  padding-right: 68% !important;
}

.pyi-68p {
  padding-top: 68% !important;
  padding-bottom: 68% !important;
}

.pxi-68p {
  padding-left: 68% !important;
  padding-right: 68% !important;
}

tr.p-68p > td {
  padding: 68%;
}

tr.pt-68p > td {
  padding-top: 68%;
}

tr.pb-68p > td {
  padding-bottom: 68%;
}

tr.pl-68p > td {
  padding-left: 68%;
}

tr.pr-68p > td {
  padding-right: 68%;
}

tr.py-68p > td {
  padding-top: 68%;
  padding-bottom: 68%;
}

tr.px-68p > td {
  padding-left: 68%;
  padding-right: 68%;
}

tr.pi-68p > td {
  padding: 68% !important;
}

tr.pti-68p > td {
  padding-top: 68% !important;
}

tr.pbi-68p > td {
  padding-bottom: 68% !important;
}

tr.pli-68p > td {
  padding-left: 68% !important;
}

tr.pri-68p > td {
  padding-right: 68% !important;
}

tr.pyi-68p > td {
  padding-top: 68% !important;
  padding-bottom: 68% !important;
}

tr.pxi-68p > td {
  padding-left: 68% !important;
  padding-right: 68% !important;
}

.m-69p {
  margin: 69%;
}

.mt-69p {
  margin-top: 69%;
}

.mb-69p {
  margin-bottom: 69%;
}

.ml-69p {
  margin-left: 69%;
}

.mr-69p {
  margin-right: 69%;
}

.mt--69p {
  margin-top: -69%;
}

.mb--69p {
  margin-bottom: -69%;
}

.ml--69p {
  margin-left: -69%;
}

.mr--69p {
  margin-right: -69%;
}

.my-69p {
  margin-top: 69%;
  margin-bottom: 69%;
}

.mx-69p {
  margin-left: 69%;
  margin-right: 69%;
}

.mi-69p {
  margin: 69% !important;
}

.mti-69p {
  margin-top: 69% !important;
}

.mbi-69p {
  margin-bottom: 69% !important;
}

.mli-69p {
  margin-left: 69% !important;
}

.mri-69p {
  margin-right: 69% !important;
}

.mti--69p {
  margin-top: -69% !important;
}

.mbi--69p {
  margin-bottom: -69% !important;
}

.mli--69p {
  margin-left: -69% !important;
}

.mri--69p {
  margin-right: -69% !important;
}

.myi-69p {
  margin-top: 69% !important;
  margin-bottom: 69% !important;
}

.mxi-69p {
  margin-left: 69% !important;
  margin-right: 69% !important;
}

.p-69p {
  padding: 69%;
}

.pt-69p {
  padding-top: 69%;
}

.pb-69p {
  padding-bottom: 69%;
}

.pl-69p {
  padding-left: 69%;
}

.pr-69p {
  padding-right: 69%;
}

.py-69p {
  padding-top: 69%;
  padding-bottom: 69%;
}

.px-69p {
  padding-left: 69%;
  padding-right: 69%;
}

.pi-69p {
  padding: 69% !important;
}

.pti-69p {
  padding-top: 69% !important;
}

.pbi-69p {
  padding-bottom: 69% !important;
}

.pli-69p {
  padding-left: 69% !important;
}

.pri-69p {
  padding-right: 69% !important;
}

.pyi-69p {
  padding-top: 69% !important;
  padding-bottom: 69% !important;
}

.pxi-69p {
  padding-left: 69% !important;
  padding-right: 69% !important;
}

tr.p-69p > td {
  padding: 69%;
}

tr.pt-69p > td {
  padding-top: 69%;
}

tr.pb-69p > td {
  padding-bottom: 69%;
}

tr.pl-69p > td {
  padding-left: 69%;
}

tr.pr-69p > td {
  padding-right: 69%;
}

tr.py-69p > td {
  padding-top: 69%;
  padding-bottom: 69%;
}

tr.px-69p > td {
  padding-left: 69%;
  padding-right: 69%;
}

tr.pi-69p > td {
  padding: 69% !important;
}

tr.pti-69p > td {
  padding-top: 69% !important;
}

tr.pbi-69p > td {
  padding-bottom: 69% !important;
}

tr.pli-69p > td {
  padding-left: 69% !important;
}

tr.pri-69p > td {
  padding-right: 69% !important;
}

tr.pyi-69p > td {
  padding-top: 69% !important;
  padding-bottom: 69% !important;
}

tr.pxi-69p > td {
  padding-left: 69% !important;
  padding-right: 69% !important;
}

.m-70p {
  margin: 70%;
}

.mt-70p {
  margin-top: 70%;
}

.mb-70p {
  margin-bottom: 70%;
}

.ml-70p {
  margin-left: 70%;
}

.mr-70p {
  margin-right: 70%;
}

.mt--70p {
  margin-top: -70%;
}

.mb--70p {
  margin-bottom: -70%;
}

.ml--70p {
  margin-left: -70%;
}

.mr--70p {
  margin-right: -70%;
}

.my-70p {
  margin-top: 70%;
  margin-bottom: 70%;
}

.mx-70p {
  margin-left: 70%;
  margin-right: 70%;
}

.mi-70p {
  margin: 70% !important;
}

.mti-70p {
  margin-top: 70% !important;
}

.mbi-70p {
  margin-bottom: 70% !important;
}

.mli-70p {
  margin-left: 70% !important;
}

.mri-70p {
  margin-right: 70% !important;
}

.mti--70p {
  margin-top: -70% !important;
}

.mbi--70p {
  margin-bottom: -70% !important;
}

.mli--70p {
  margin-left: -70% !important;
}

.mri--70p {
  margin-right: -70% !important;
}

.myi-70p {
  margin-top: 70% !important;
  margin-bottom: 70% !important;
}

.mxi-70p {
  margin-left: 70% !important;
  margin-right: 70% !important;
}

.p-70p {
  padding: 70%;
}

.pt-70p {
  padding-top: 70%;
}

.pb-70p {
  padding-bottom: 70%;
}

.pl-70p {
  padding-left: 70%;
}

.pr-70p {
  padding-right: 70%;
}

.py-70p {
  padding-top: 70%;
  padding-bottom: 70%;
}

.px-70p {
  padding-left: 70%;
  padding-right: 70%;
}

.pi-70p {
  padding: 70% !important;
}

.pti-70p {
  padding-top: 70% !important;
}

.pbi-70p {
  padding-bottom: 70% !important;
}

.pli-70p {
  padding-left: 70% !important;
}

.pri-70p {
  padding-right: 70% !important;
}

.pyi-70p {
  padding-top: 70% !important;
  padding-bottom: 70% !important;
}

.pxi-70p {
  padding-left: 70% !important;
  padding-right: 70% !important;
}

tr.p-70p > td {
  padding: 70%;
}

tr.pt-70p > td {
  padding-top: 70%;
}

tr.pb-70p > td {
  padding-bottom: 70%;
}

tr.pl-70p > td {
  padding-left: 70%;
}

tr.pr-70p > td {
  padding-right: 70%;
}

tr.py-70p > td {
  padding-top: 70%;
  padding-bottom: 70%;
}

tr.px-70p > td {
  padding-left: 70%;
  padding-right: 70%;
}

tr.pi-70p > td {
  padding: 70% !important;
}

tr.pti-70p > td {
  padding-top: 70% !important;
}

tr.pbi-70p > td {
  padding-bottom: 70% !important;
}

tr.pli-70p > td {
  padding-left: 70% !important;
}

tr.pri-70p > td {
  padding-right: 70% !important;
}

tr.pyi-70p > td {
  padding-top: 70% !important;
  padding-bottom: 70% !important;
}

tr.pxi-70p > td {
  padding-left: 70% !important;
  padding-right: 70% !important;
}

.m-71p {
  margin: 71%;
}

.mt-71p {
  margin-top: 71%;
}

.mb-71p {
  margin-bottom: 71%;
}

.ml-71p {
  margin-left: 71%;
}

.mr-71p {
  margin-right: 71%;
}

.mt--71p {
  margin-top: -71%;
}

.mb--71p {
  margin-bottom: -71%;
}

.ml--71p {
  margin-left: -71%;
}

.mr--71p {
  margin-right: -71%;
}

.my-71p {
  margin-top: 71%;
  margin-bottom: 71%;
}

.mx-71p {
  margin-left: 71%;
  margin-right: 71%;
}

.mi-71p {
  margin: 71% !important;
}

.mti-71p {
  margin-top: 71% !important;
}

.mbi-71p {
  margin-bottom: 71% !important;
}

.mli-71p {
  margin-left: 71% !important;
}

.mri-71p {
  margin-right: 71% !important;
}

.mti--71p {
  margin-top: -71% !important;
}

.mbi--71p {
  margin-bottom: -71% !important;
}

.mli--71p {
  margin-left: -71% !important;
}

.mri--71p {
  margin-right: -71% !important;
}

.myi-71p {
  margin-top: 71% !important;
  margin-bottom: 71% !important;
}

.mxi-71p {
  margin-left: 71% !important;
  margin-right: 71% !important;
}

.p-71p {
  padding: 71%;
}

.pt-71p {
  padding-top: 71%;
}

.pb-71p {
  padding-bottom: 71%;
}

.pl-71p {
  padding-left: 71%;
}

.pr-71p {
  padding-right: 71%;
}

.py-71p {
  padding-top: 71%;
  padding-bottom: 71%;
}

.px-71p {
  padding-left: 71%;
  padding-right: 71%;
}

.pi-71p {
  padding: 71% !important;
}

.pti-71p {
  padding-top: 71% !important;
}

.pbi-71p {
  padding-bottom: 71% !important;
}

.pli-71p {
  padding-left: 71% !important;
}

.pri-71p {
  padding-right: 71% !important;
}

.pyi-71p {
  padding-top: 71% !important;
  padding-bottom: 71% !important;
}

.pxi-71p {
  padding-left: 71% !important;
  padding-right: 71% !important;
}

tr.p-71p > td {
  padding: 71%;
}

tr.pt-71p > td {
  padding-top: 71%;
}

tr.pb-71p > td {
  padding-bottom: 71%;
}

tr.pl-71p > td {
  padding-left: 71%;
}

tr.pr-71p > td {
  padding-right: 71%;
}

tr.py-71p > td {
  padding-top: 71%;
  padding-bottom: 71%;
}

tr.px-71p > td {
  padding-left: 71%;
  padding-right: 71%;
}

tr.pi-71p > td {
  padding: 71% !important;
}

tr.pti-71p > td {
  padding-top: 71% !important;
}

tr.pbi-71p > td {
  padding-bottom: 71% !important;
}

tr.pli-71p > td {
  padding-left: 71% !important;
}

tr.pri-71p > td {
  padding-right: 71% !important;
}

tr.pyi-71p > td {
  padding-top: 71% !important;
  padding-bottom: 71% !important;
}

tr.pxi-71p > td {
  padding-left: 71% !important;
  padding-right: 71% !important;
}

.m-72p {
  margin: 72%;
}

.mt-72p {
  margin-top: 72%;
}

.mb-72p {
  margin-bottom: 72%;
}

.ml-72p {
  margin-left: 72%;
}

.mr-72p {
  margin-right: 72%;
}

.mt--72p {
  margin-top: -72%;
}

.mb--72p {
  margin-bottom: -72%;
}

.ml--72p {
  margin-left: -72%;
}

.mr--72p {
  margin-right: -72%;
}

.my-72p {
  margin-top: 72%;
  margin-bottom: 72%;
}

.mx-72p {
  margin-left: 72%;
  margin-right: 72%;
}

.mi-72p {
  margin: 72% !important;
}

.mti-72p {
  margin-top: 72% !important;
}

.mbi-72p {
  margin-bottom: 72% !important;
}

.mli-72p {
  margin-left: 72% !important;
}

.mri-72p {
  margin-right: 72% !important;
}

.mti--72p {
  margin-top: -72% !important;
}

.mbi--72p {
  margin-bottom: -72% !important;
}

.mli--72p {
  margin-left: -72% !important;
}

.mri--72p {
  margin-right: -72% !important;
}

.myi-72p {
  margin-top: 72% !important;
  margin-bottom: 72% !important;
}

.mxi-72p {
  margin-left: 72% !important;
  margin-right: 72% !important;
}

.p-72p {
  padding: 72%;
}

.pt-72p {
  padding-top: 72%;
}

.pb-72p {
  padding-bottom: 72%;
}

.pl-72p {
  padding-left: 72%;
}

.pr-72p {
  padding-right: 72%;
}

.py-72p {
  padding-top: 72%;
  padding-bottom: 72%;
}

.px-72p {
  padding-left: 72%;
  padding-right: 72%;
}

.pi-72p {
  padding: 72% !important;
}

.pti-72p {
  padding-top: 72% !important;
}

.pbi-72p {
  padding-bottom: 72% !important;
}

.pli-72p {
  padding-left: 72% !important;
}

.pri-72p {
  padding-right: 72% !important;
}

.pyi-72p {
  padding-top: 72% !important;
  padding-bottom: 72% !important;
}

.pxi-72p {
  padding-left: 72% !important;
  padding-right: 72% !important;
}

tr.p-72p > td {
  padding: 72%;
}

tr.pt-72p > td {
  padding-top: 72%;
}

tr.pb-72p > td {
  padding-bottom: 72%;
}

tr.pl-72p > td {
  padding-left: 72%;
}

tr.pr-72p > td {
  padding-right: 72%;
}

tr.py-72p > td {
  padding-top: 72%;
  padding-bottom: 72%;
}

tr.px-72p > td {
  padding-left: 72%;
  padding-right: 72%;
}

tr.pi-72p > td {
  padding: 72% !important;
}

tr.pti-72p > td {
  padding-top: 72% !important;
}

tr.pbi-72p > td {
  padding-bottom: 72% !important;
}

tr.pli-72p > td {
  padding-left: 72% !important;
}

tr.pri-72p > td {
  padding-right: 72% !important;
}

tr.pyi-72p > td {
  padding-top: 72% !important;
  padding-bottom: 72% !important;
}

tr.pxi-72p > td {
  padding-left: 72% !important;
  padding-right: 72% !important;
}

.m-73p {
  margin: 73%;
}

.mt-73p {
  margin-top: 73%;
}

.mb-73p {
  margin-bottom: 73%;
}

.ml-73p {
  margin-left: 73%;
}

.mr-73p {
  margin-right: 73%;
}

.mt--73p {
  margin-top: -73%;
}

.mb--73p {
  margin-bottom: -73%;
}

.ml--73p {
  margin-left: -73%;
}

.mr--73p {
  margin-right: -73%;
}

.my-73p {
  margin-top: 73%;
  margin-bottom: 73%;
}

.mx-73p {
  margin-left: 73%;
  margin-right: 73%;
}

.mi-73p {
  margin: 73% !important;
}

.mti-73p {
  margin-top: 73% !important;
}

.mbi-73p {
  margin-bottom: 73% !important;
}

.mli-73p {
  margin-left: 73% !important;
}

.mri-73p {
  margin-right: 73% !important;
}

.mti--73p {
  margin-top: -73% !important;
}

.mbi--73p {
  margin-bottom: -73% !important;
}

.mli--73p {
  margin-left: -73% !important;
}

.mri--73p {
  margin-right: -73% !important;
}

.myi-73p {
  margin-top: 73% !important;
  margin-bottom: 73% !important;
}

.mxi-73p {
  margin-left: 73% !important;
  margin-right: 73% !important;
}

.p-73p {
  padding: 73%;
}

.pt-73p {
  padding-top: 73%;
}

.pb-73p {
  padding-bottom: 73%;
}

.pl-73p {
  padding-left: 73%;
}

.pr-73p {
  padding-right: 73%;
}

.py-73p {
  padding-top: 73%;
  padding-bottom: 73%;
}

.px-73p {
  padding-left: 73%;
  padding-right: 73%;
}

.pi-73p {
  padding: 73% !important;
}

.pti-73p {
  padding-top: 73% !important;
}

.pbi-73p {
  padding-bottom: 73% !important;
}

.pli-73p {
  padding-left: 73% !important;
}

.pri-73p {
  padding-right: 73% !important;
}

.pyi-73p {
  padding-top: 73% !important;
  padding-bottom: 73% !important;
}

.pxi-73p {
  padding-left: 73% !important;
  padding-right: 73% !important;
}

tr.p-73p > td {
  padding: 73%;
}

tr.pt-73p > td {
  padding-top: 73%;
}

tr.pb-73p > td {
  padding-bottom: 73%;
}

tr.pl-73p > td {
  padding-left: 73%;
}

tr.pr-73p > td {
  padding-right: 73%;
}

tr.py-73p > td {
  padding-top: 73%;
  padding-bottom: 73%;
}

tr.px-73p > td {
  padding-left: 73%;
  padding-right: 73%;
}

tr.pi-73p > td {
  padding: 73% !important;
}

tr.pti-73p > td {
  padding-top: 73% !important;
}

tr.pbi-73p > td {
  padding-bottom: 73% !important;
}

tr.pli-73p > td {
  padding-left: 73% !important;
}

tr.pri-73p > td {
  padding-right: 73% !important;
}

tr.pyi-73p > td {
  padding-top: 73% !important;
  padding-bottom: 73% !important;
}

tr.pxi-73p > td {
  padding-left: 73% !important;
  padding-right: 73% !important;
}

.m-74p {
  margin: 74%;
}

.mt-74p {
  margin-top: 74%;
}

.mb-74p {
  margin-bottom: 74%;
}

.ml-74p {
  margin-left: 74%;
}

.mr-74p {
  margin-right: 74%;
}

.mt--74p {
  margin-top: -74%;
}

.mb--74p {
  margin-bottom: -74%;
}

.ml--74p {
  margin-left: -74%;
}

.mr--74p {
  margin-right: -74%;
}

.my-74p {
  margin-top: 74%;
  margin-bottom: 74%;
}

.mx-74p {
  margin-left: 74%;
  margin-right: 74%;
}

.mi-74p {
  margin: 74% !important;
}

.mti-74p {
  margin-top: 74% !important;
}

.mbi-74p {
  margin-bottom: 74% !important;
}

.mli-74p {
  margin-left: 74% !important;
}

.mri-74p {
  margin-right: 74% !important;
}

.mti--74p {
  margin-top: -74% !important;
}

.mbi--74p {
  margin-bottom: -74% !important;
}

.mli--74p {
  margin-left: -74% !important;
}

.mri--74p {
  margin-right: -74% !important;
}

.myi-74p {
  margin-top: 74% !important;
  margin-bottom: 74% !important;
}

.mxi-74p {
  margin-left: 74% !important;
  margin-right: 74% !important;
}

.p-74p {
  padding: 74%;
}

.pt-74p {
  padding-top: 74%;
}

.pb-74p {
  padding-bottom: 74%;
}

.pl-74p {
  padding-left: 74%;
}

.pr-74p {
  padding-right: 74%;
}

.py-74p {
  padding-top: 74%;
  padding-bottom: 74%;
}

.px-74p {
  padding-left: 74%;
  padding-right: 74%;
}

.pi-74p {
  padding: 74% !important;
}

.pti-74p {
  padding-top: 74% !important;
}

.pbi-74p {
  padding-bottom: 74% !important;
}

.pli-74p {
  padding-left: 74% !important;
}

.pri-74p {
  padding-right: 74% !important;
}

.pyi-74p {
  padding-top: 74% !important;
  padding-bottom: 74% !important;
}

.pxi-74p {
  padding-left: 74% !important;
  padding-right: 74% !important;
}

tr.p-74p > td {
  padding: 74%;
}

tr.pt-74p > td {
  padding-top: 74%;
}

tr.pb-74p > td {
  padding-bottom: 74%;
}

tr.pl-74p > td {
  padding-left: 74%;
}

tr.pr-74p > td {
  padding-right: 74%;
}

tr.py-74p > td {
  padding-top: 74%;
  padding-bottom: 74%;
}

tr.px-74p > td {
  padding-left: 74%;
  padding-right: 74%;
}

tr.pi-74p > td {
  padding: 74% !important;
}

tr.pti-74p > td {
  padding-top: 74% !important;
}

tr.pbi-74p > td {
  padding-bottom: 74% !important;
}

tr.pli-74p > td {
  padding-left: 74% !important;
}

tr.pri-74p > td {
  padding-right: 74% !important;
}

tr.pyi-74p > td {
  padding-top: 74% !important;
  padding-bottom: 74% !important;
}

tr.pxi-74p > td {
  padding-left: 74% !important;
  padding-right: 74% !important;
}

.m-75p {
  margin: 75%;
}

.mt-75p {
  margin-top: 75%;
}

.mb-75p {
  margin-bottom: 75%;
}

.ml-75p {
  margin-left: 75%;
}

.mr-75p {
  margin-right: 75%;
}

.mt--75p {
  margin-top: -75%;
}

.mb--75p {
  margin-bottom: -75%;
}

.ml--75p {
  margin-left: -75%;
}

.mr--75p {
  margin-right: -75%;
}

.my-75p {
  margin-top: 75%;
  margin-bottom: 75%;
}

.mx-75p {
  margin-left: 75%;
  margin-right: 75%;
}

.mi-75p {
  margin: 75% !important;
}

.mti-75p {
  margin-top: 75% !important;
}

.mbi-75p {
  margin-bottom: 75% !important;
}

.mli-75p {
  margin-left: 75% !important;
}

.mri-75p {
  margin-right: 75% !important;
}

.mti--75p {
  margin-top: -75% !important;
}

.mbi--75p {
  margin-bottom: -75% !important;
}

.mli--75p {
  margin-left: -75% !important;
}

.mri--75p {
  margin-right: -75% !important;
}

.myi-75p {
  margin-top: 75% !important;
  margin-bottom: 75% !important;
}

.mxi-75p {
  margin-left: 75% !important;
  margin-right: 75% !important;
}

.p-75p {
  padding: 75%;
}

.pt-75p {
  padding-top: 75%;
}

.pb-75p {
  padding-bottom: 75%;
}

.pl-75p {
  padding-left: 75%;
}

.pr-75p {
  padding-right: 75%;
}

.py-75p {
  padding-top: 75%;
  padding-bottom: 75%;
}

.px-75p {
  padding-left: 75%;
  padding-right: 75%;
}

.pi-75p {
  padding: 75% !important;
}

.pti-75p {
  padding-top: 75% !important;
}

.pbi-75p {
  padding-bottom: 75% !important;
}

.pli-75p {
  padding-left: 75% !important;
}

.pri-75p {
  padding-right: 75% !important;
}

.pyi-75p {
  padding-top: 75% !important;
  padding-bottom: 75% !important;
}

.pxi-75p {
  padding-left: 75% !important;
  padding-right: 75% !important;
}

tr.p-75p > td {
  padding: 75%;
}

tr.pt-75p > td {
  padding-top: 75%;
}

tr.pb-75p > td {
  padding-bottom: 75%;
}

tr.pl-75p > td {
  padding-left: 75%;
}

tr.pr-75p > td {
  padding-right: 75%;
}

tr.py-75p > td {
  padding-top: 75%;
  padding-bottom: 75%;
}

tr.px-75p > td {
  padding-left: 75%;
  padding-right: 75%;
}

tr.pi-75p > td {
  padding: 75% !important;
}

tr.pti-75p > td {
  padding-top: 75% !important;
}

tr.pbi-75p > td {
  padding-bottom: 75% !important;
}

tr.pli-75p > td {
  padding-left: 75% !important;
}

tr.pri-75p > td {
  padding-right: 75% !important;
}

tr.pyi-75p > td {
  padding-top: 75% !important;
  padding-bottom: 75% !important;
}

tr.pxi-75p > td {
  padding-left: 75% !important;
  padding-right: 75% !important;
}

.m-76p {
  margin: 76%;
}

.mt-76p {
  margin-top: 76%;
}

.mb-76p {
  margin-bottom: 76%;
}

.ml-76p {
  margin-left: 76%;
}

.mr-76p {
  margin-right: 76%;
}

.mt--76p {
  margin-top: -76%;
}

.mb--76p {
  margin-bottom: -76%;
}

.ml--76p {
  margin-left: -76%;
}

.mr--76p {
  margin-right: -76%;
}

.my-76p {
  margin-top: 76%;
  margin-bottom: 76%;
}

.mx-76p {
  margin-left: 76%;
  margin-right: 76%;
}

.mi-76p {
  margin: 76% !important;
}

.mti-76p {
  margin-top: 76% !important;
}

.mbi-76p {
  margin-bottom: 76% !important;
}

.mli-76p {
  margin-left: 76% !important;
}

.mri-76p {
  margin-right: 76% !important;
}

.mti--76p {
  margin-top: -76% !important;
}

.mbi--76p {
  margin-bottom: -76% !important;
}

.mli--76p {
  margin-left: -76% !important;
}

.mri--76p {
  margin-right: -76% !important;
}

.myi-76p {
  margin-top: 76% !important;
  margin-bottom: 76% !important;
}

.mxi-76p {
  margin-left: 76% !important;
  margin-right: 76% !important;
}

.p-76p {
  padding: 76%;
}

.pt-76p {
  padding-top: 76%;
}

.pb-76p {
  padding-bottom: 76%;
}

.pl-76p {
  padding-left: 76%;
}

.pr-76p {
  padding-right: 76%;
}

.py-76p {
  padding-top: 76%;
  padding-bottom: 76%;
}

.px-76p {
  padding-left: 76%;
  padding-right: 76%;
}

.pi-76p {
  padding: 76% !important;
}

.pti-76p {
  padding-top: 76% !important;
}

.pbi-76p {
  padding-bottom: 76% !important;
}

.pli-76p {
  padding-left: 76% !important;
}

.pri-76p {
  padding-right: 76% !important;
}

.pyi-76p {
  padding-top: 76% !important;
  padding-bottom: 76% !important;
}

.pxi-76p {
  padding-left: 76% !important;
  padding-right: 76% !important;
}

tr.p-76p > td {
  padding: 76%;
}

tr.pt-76p > td {
  padding-top: 76%;
}

tr.pb-76p > td {
  padding-bottom: 76%;
}

tr.pl-76p > td {
  padding-left: 76%;
}

tr.pr-76p > td {
  padding-right: 76%;
}

tr.py-76p > td {
  padding-top: 76%;
  padding-bottom: 76%;
}

tr.px-76p > td {
  padding-left: 76%;
  padding-right: 76%;
}

tr.pi-76p > td {
  padding: 76% !important;
}

tr.pti-76p > td {
  padding-top: 76% !important;
}

tr.pbi-76p > td {
  padding-bottom: 76% !important;
}

tr.pli-76p > td {
  padding-left: 76% !important;
}

tr.pri-76p > td {
  padding-right: 76% !important;
}

tr.pyi-76p > td {
  padding-top: 76% !important;
  padding-bottom: 76% !important;
}

tr.pxi-76p > td {
  padding-left: 76% !important;
  padding-right: 76% !important;
}

.m-77p {
  margin: 77%;
}

.mt-77p {
  margin-top: 77%;
}

.mb-77p {
  margin-bottom: 77%;
}

.ml-77p {
  margin-left: 77%;
}

.mr-77p {
  margin-right: 77%;
}

.mt--77p {
  margin-top: -77%;
}

.mb--77p {
  margin-bottom: -77%;
}

.ml--77p {
  margin-left: -77%;
}

.mr--77p {
  margin-right: -77%;
}

.my-77p {
  margin-top: 77%;
  margin-bottom: 77%;
}

.mx-77p {
  margin-left: 77%;
  margin-right: 77%;
}

.mi-77p {
  margin: 77% !important;
}

.mti-77p {
  margin-top: 77% !important;
}

.mbi-77p {
  margin-bottom: 77% !important;
}

.mli-77p {
  margin-left: 77% !important;
}

.mri-77p {
  margin-right: 77% !important;
}

.mti--77p {
  margin-top: -77% !important;
}

.mbi--77p {
  margin-bottom: -77% !important;
}

.mli--77p {
  margin-left: -77% !important;
}

.mri--77p {
  margin-right: -77% !important;
}

.myi-77p {
  margin-top: 77% !important;
  margin-bottom: 77% !important;
}

.mxi-77p {
  margin-left: 77% !important;
  margin-right: 77% !important;
}

.p-77p {
  padding: 77%;
}

.pt-77p {
  padding-top: 77%;
}

.pb-77p {
  padding-bottom: 77%;
}

.pl-77p {
  padding-left: 77%;
}

.pr-77p {
  padding-right: 77%;
}

.py-77p {
  padding-top: 77%;
  padding-bottom: 77%;
}

.px-77p {
  padding-left: 77%;
  padding-right: 77%;
}

.pi-77p {
  padding: 77% !important;
}

.pti-77p {
  padding-top: 77% !important;
}

.pbi-77p {
  padding-bottom: 77% !important;
}

.pli-77p {
  padding-left: 77% !important;
}

.pri-77p {
  padding-right: 77% !important;
}

.pyi-77p {
  padding-top: 77% !important;
  padding-bottom: 77% !important;
}

.pxi-77p {
  padding-left: 77% !important;
  padding-right: 77% !important;
}

tr.p-77p > td {
  padding: 77%;
}

tr.pt-77p > td {
  padding-top: 77%;
}

tr.pb-77p > td {
  padding-bottom: 77%;
}

tr.pl-77p > td {
  padding-left: 77%;
}

tr.pr-77p > td {
  padding-right: 77%;
}

tr.py-77p > td {
  padding-top: 77%;
  padding-bottom: 77%;
}

tr.px-77p > td {
  padding-left: 77%;
  padding-right: 77%;
}

tr.pi-77p > td {
  padding: 77% !important;
}

tr.pti-77p > td {
  padding-top: 77% !important;
}

tr.pbi-77p > td {
  padding-bottom: 77% !important;
}

tr.pli-77p > td {
  padding-left: 77% !important;
}

tr.pri-77p > td {
  padding-right: 77% !important;
}

tr.pyi-77p > td {
  padding-top: 77% !important;
  padding-bottom: 77% !important;
}

tr.pxi-77p > td {
  padding-left: 77% !important;
  padding-right: 77% !important;
}

.m-78p {
  margin: 78%;
}

.mt-78p {
  margin-top: 78%;
}

.mb-78p {
  margin-bottom: 78%;
}

.ml-78p {
  margin-left: 78%;
}

.mr-78p {
  margin-right: 78%;
}

.mt--78p {
  margin-top: -78%;
}

.mb--78p {
  margin-bottom: -78%;
}

.ml--78p {
  margin-left: -78%;
}

.mr--78p {
  margin-right: -78%;
}

.my-78p {
  margin-top: 78%;
  margin-bottom: 78%;
}

.mx-78p {
  margin-left: 78%;
  margin-right: 78%;
}

.mi-78p {
  margin: 78% !important;
}

.mti-78p {
  margin-top: 78% !important;
}

.mbi-78p {
  margin-bottom: 78% !important;
}

.mli-78p {
  margin-left: 78% !important;
}

.mri-78p {
  margin-right: 78% !important;
}

.mti--78p {
  margin-top: -78% !important;
}

.mbi--78p {
  margin-bottom: -78% !important;
}

.mli--78p {
  margin-left: -78% !important;
}

.mri--78p {
  margin-right: -78% !important;
}

.myi-78p {
  margin-top: 78% !important;
  margin-bottom: 78% !important;
}

.mxi-78p {
  margin-left: 78% !important;
  margin-right: 78% !important;
}

.p-78p {
  padding: 78%;
}

.pt-78p {
  padding-top: 78%;
}

.pb-78p {
  padding-bottom: 78%;
}

.pl-78p {
  padding-left: 78%;
}

.pr-78p {
  padding-right: 78%;
}

.py-78p {
  padding-top: 78%;
  padding-bottom: 78%;
}

.px-78p {
  padding-left: 78%;
  padding-right: 78%;
}

.pi-78p {
  padding: 78% !important;
}

.pti-78p {
  padding-top: 78% !important;
}

.pbi-78p {
  padding-bottom: 78% !important;
}

.pli-78p {
  padding-left: 78% !important;
}

.pri-78p {
  padding-right: 78% !important;
}

.pyi-78p {
  padding-top: 78% !important;
  padding-bottom: 78% !important;
}

.pxi-78p {
  padding-left: 78% !important;
  padding-right: 78% !important;
}

tr.p-78p > td {
  padding: 78%;
}

tr.pt-78p > td {
  padding-top: 78%;
}

tr.pb-78p > td {
  padding-bottom: 78%;
}

tr.pl-78p > td {
  padding-left: 78%;
}

tr.pr-78p > td {
  padding-right: 78%;
}

tr.py-78p > td {
  padding-top: 78%;
  padding-bottom: 78%;
}

tr.px-78p > td {
  padding-left: 78%;
  padding-right: 78%;
}

tr.pi-78p > td {
  padding: 78% !important;
}

tr.pti-78p > td {
  padding-top: 78% !important;
}

tr.pbi-78p > td {
  padding-bottom: 78% !important;
}

tr.pli-78p > td {
  padding-left: 78% !important;
}

tr.pri-78p > td {
  padding-right: 78% !important;
}

tr.pyi-78p > td {
  padding-top: 78% !important;
  padding-bottom: 78% !important;
}

tr.pxi-78p > td {
  padding-left: 78% !important;
  padding-right: 78% !important;
}

.m-79p {
  margin: 79%;
}

.mt-79p {
  margin-top: 79%;
}

.mb-79p {
  margin-bottom: 79%;
}

.ml-79p {
  margin-left: 79%;
}

.mr-79p {
  margin-right: 79%;
}

.mt--79p {
  margin-top: -79%;
}

.mb--79p {
  margin-bottom: -79%;
}

.ml--79p {
  margin-left: -79%;
}

.mr--79p {
  margin-right: -79%;
}

.my-79p {
  margin-top: 79%;
  margin-bottom: 79%;
}

.mx-79p {
  margin-left: 79%;
  margin-right: 79%;
}

.mi-79p {
  margin: 79% !important;
}

.mti-79p {
  margin-top: 79% !important;
}

.mbi-79p {
  margin-bottom: 79% !important;
}

.mli-79p {
  margin-left: 79% !important;
}

.mri-79p {
  margin-right: 79% !important;
}

.mti--79p {
  margin-top: -79% !important;
}

.mbi--79p {
  margin-bottom: -79% !important;
}

.mli--79p {
  margin-left: -79% !important;
}

.mri--79p {
  margin-right: -79% !important;
}

.myi-79p {
  margin-top: 79% !important;
  margin-bottom: 79% !important;
}

.mxi-79p {
  margin-left: 79% !important;
  margin-right: 79% !important;
}

.p-79p {
  padding: 79%;
}

.pt-79p {
  padding-top: 79%;
}

.pb-79p {
  padding-bottom: 79%;
}

.pl-79p {
  padding-left: 79%;
}

.pr-79p {
  padding-right: 79%;
}

.py-79p {
  padding-top: 79%;
  padding-bottom: 79%;
}

.px-79p {
  padding-left: 79%;
  padding-right: 79%;
}

.pi-79p {
  padding: 79% !important;
}

.pti-79p {
  padding-top: 79% !important;
}

.pbi-79p {
  padding-bottom: 79% !important;
}

.pli-79p {
  padding-left: 79% !important;
}

.pri-79p {
  padding-right: 79% !important;
}

.pyi-79p {
  padding-top: 79% !important;
  padding-bottom: 79% !important;
}

.pxi-79p {
  padding-left: 79% !important;
  padding-right: 79% !important;
}

tr.p-79p > td {
  padding: 79%;
}

tr.pt-79p > td {
  padding-top: 79%;
}

tr.pb-79p > td {
  padding-bottom: 79%;
}

tr.pl-79p > td {
  padding-left: 79%;
}

tr.pr-79p > td {
  padding-right: 79%;
}

tr.py-79p > td {
  padding-top: 79%;
  padding-bottom: 79%;
}

tr.px-79p > td {
  padding-left: 79%;
  padding-right: 79%;
}

tr.pi-79p > td {
  padding: 79% !important;
}

tr.pti-79p > td {
  padding-top: 79% !important;
}

tr.pbi-79p > td {
  padding-bottom: 79% !important;
}

tr.pli-79p > td {
  padding-left: 79% !important;
}

tr.pri-79p > td {
  padding-right: 79% !important;
}

tr.pyi-79p > td {
  padding-top: 79% !important;
  padding-bottom: 79% !important;
}

tr.pxi-79p > td {
  padding-left: 79% !important;
  padding-right: 79% !important;
}

.m-80p {
  margin: 80%;
}

.mt-80p {
  margin-top: 80%;
}

.mb-80p {
  margin-bottom: 80%;
}

.ml-80p {
  margin-left: 80%;
}

.mr-80p {
  margin-right: 80%;
}

.mt--80p {
  margin-top: -80%;
}

.mb--80p {
  margin-bottom: -80%;
}

.ml--80p {
  margin-left: -80%;
}

.mr--80p {
  margin-right: -80%;
}

.my-80p {
  margin-top: 80%;
  margin-bottom: 80%;
}

.mx-80p {
  margin-left: 80%;
  margin-right: 80%;
}

.mi-80p {
  margin: 80% !important;
}

.mti-80p {
  margin-top: 80% !important;
}

.mbi-80p {
  margin-bottom: 80% !important;
}

.mli-80p {
  margin-left: 80% !important;
}

.mri-80p {
  margin-right: 80% !important;
}

.mti--80p {
  margin-top: -80% !important;
}

.mbi--80p {
  margin-bottom: -80% !important;
}

.mli--80p {
  margin-left: -80% !important;
}

.mri--80p {
  margin-right: -80% !important;
}

.myi-80p {
  margin-top: 80% !important;
  margin-bottom: 80% !important;
}

.mxi-80p {
  margin-left: 80% !important;
  margin-right: 80% !important;
}

.p-80p {
  padding: 80%;
}

.pt-80p {
  padding-top: 80%;
}

.pb-80p {
  padding-bottom: 80%;
}

.pl-80p {
  padding-left: 80%;
}

.pr-80p {
  padding-right: 80%;
}

.py-80p {
  padding-top: 80%;
  padding-bottom: 80%;
}

.px-80p {
  padding-left: 80%;
  padding-right: 80%;
}

.pi-80p {
  padding: 80% !important;
}

.pti-80p {
  padding-top: 80% !important;
}

.pbi-80p {
  padding-bottom: 80% !important;
}

.pli-80p {
  padding-left: 80% !important;
}

.pri-80p {
  padding-right: 80% !important;
}

.pyi-80p {
  padding-top: 80% !important;
  padding-bottom: 80% !important;
}

.pxi-80p {
  padding-left: 80% !important;
  padding-right: 80% !important;
}

tr.p-80p > td {
  padding: 80%;
}

tr.pt-80p > td {
  padding-top: 80%;
}

tr.pb-80p > td {
  padding-bottom: 80%;
}

tr.pl-80p > td {
  padding-left: 80%;
}

tr.pr-80p > td {
  padding-right: 80%;
}

tr.py-80p > td {
  padding-top: 80%;
  padding-bottom: 80%;
}

tr.px-80p > td {
  padding-left: 80%;
  padding-right: 80%;
}

tr.pi-80p > td {
  padding: 80% !important;
}

tr.pti-80p > td {
  padding-top: 80% !important;
}

tr.pbi-80p > td {
  padding-bottom: 80% !important;
}

tr.pli-80p > td {
  padding-left: 80% !important;
}

tr.pri-80p > td {
  padding-right: 80% !important;
}

tr.pyi-80p > td {
  padding-top: 80% !important;
  padding-bottom: 80% !important;
}

tr.pxi-80p > td {
  padding-left: 80% !important;
  padding-right: 80% !important;
}

.m-81p {
  margin: 81%;
}

.mt-81p {
  margin-top: 81%;
}

.mb-81p {
  margin-bottom: 81%;
}

.ml-81p {
  margin-left: 81%;
}

.mr-81p {
  margin-right: 81%;
}

.mt--81p {
  margin-top: -81%;
}

.mb--81p {
  margin-bottom: -81%;
}

.ml--81p {
  margin-left: -81%;
}

.mr--81p {
  margin-right: -81%;
}

.my-81p {
  margin-top: 81%;
  margin-bottom: 81%;
}

.mx-81p {
  margin-left: 81%;
  margin-right: 81%;
}

.mi-81p {
  margin: 81% !important;
}

.mti-81p {
  margin-top: 81% !important;
}

.mbi-81p {
  margin-bottom: 81% !important;
}

.mli-81p {
  margin-left: 81% !important;
}

.mri-81p {
  margin-right: 81% !important;
}

.mti--81p {
  margin-top: -81% !important;
}

.mbi--81p {
  margin-bottom: -81% !important;
}

.mli--81p {
  margin-left: -81% !important;
}

.mri--81p {
  margin-right: -81% !important;
}

.myi-81p {
  margin-top: 81% !important;
  margin-bottom: 81% !important;
}

.mxi-81p {
  margin-left: 81% !important;
  margin-right: 81% !important;
}

.p-81p {
  padding: 81%;
}

.pt-81p {
  padding-top: 81%;
}

.pb-81p {
  padding-bottom: 81%;
}

.pl-81p {
  padding-left: 81%;
}

.pr-81p {
  padding-right: 81%;
}

.py-81p {
  padding-top: 81%;
  padding-bottom: 81%;
}

.px-81p {
  padding-left: 81%;
  padding-right: 81%;
}

.pi-81p {
  padding: 81% !important;
}

.pti-81p {
  padding-top: 81% !important;
}

.pbi-81p {
  padding-bottom: 81% !important;
}

.pli-81p {
  padding-left: 81% !important;
}

.pri-81p {
  padding-right: 81% !important;
}

.pyi-81p {
  padding-top: 81% !important;
  padding-bottom: 81% !important;
}

.pxi-81p {
  padding-left: 81% !important;
  padding-right: 81% !important;
}

tr.p-81p > td {
  padding: 81%;
}

tr.pt-81p > td {
  padding-top: 81%;
}

tr.pb-81p > td {
  padding-bottom: 81%;
}

tr.pl-81p > td {
  padding-left: 81%;
}

tr.pr-81p > td {
  padding-right: 81%;
}

tr.py-81p > td {
  padding-top: 81%;
  padding-bottom: 81%;
}

tr.px-81p > td {
  padding-left: 81%;
  padding-right: 81%;
}

tr.pi-81p > td {
  padding: 81% !important;
}

tr.pti-81p > td {
  padding-top: 81% !important;
}

tr.pbi-81p > td {
  padding-bottom: 81% !important;
}

tr.pli-81p > td {
  padding-left: 81% !important;
}

tr.pri-81p > td {
  padding-right: 81% !important;
}

tr.pyi-81p > td {
  padding-top: 81% !important;
  padding-bottom: 81% !important;
}

tr.pxi-81p > td {
  padding-left: 81% !important;
  padding-right: 81% !important;
}

.m-82p {
  margin: 82%;
}

.mt-82p {
  margin-top: 82%;
}

.mb-82p {
  margin-bottom: 82%;
}

.ml-82p {
  margin-left: 82%;
}

.mr-82p {
  margin-right: 82%;
}

.mt--82p {
  margin-top: -82%;
}

.mb--82p {
  margin-bottom: -82%;
}

.ml--82p {
  margin-left: -82%;
}

.mr--82p {
  margin-right: -82%;
}

.my-82p {
  margin-top: 82%;
  margin-bottom: 82%;
}

.mx-82p {
  margin-left: 82%;
  margin-right: 82%;
}

.mi-82p {
  margin: 82% !important;
}

.mti-82p {
  margin-top: 82% !important;
}

.mbi-82p {
  margin-bottom: 82% !important;
}

.mli-82p {
  margin-left: 82% !important;
}

.mri-82p {
  margin-right: 82% !important;
}

.mti--82p {
  margin-top: -82% !important;
}

.mbi--82p {
  margin-bottom: -82% !important;
}

.mli--82p {
  margin-left: -82% !important;
}

.mri--82p {
  margin-right: -82% !important;
}

.myi-82p {
  margin-top: 82% !important;
  margin-bottom: 82% !important;
}

.mxi-82p {
  margin-left: 82% !important;
  margin-right: 82% !important;
}

.p-82p {
  padding: 82%;
}

.pt-82p {
  padding-top: 82%;
}

.pb-82p {
  padding-bottom: 82%;
}

.pl-82p {
  padding-left: 82%;
}

.pr-82p {
  padding-right: 82%;
}

.py-82p {
  padding-top: 82%;
  padding-bottom: 82%;
}

.px-82p {
  padding-left: 82%;
  padding-right: 82%;
}

.pi-82p {
  padding: 82% !important;
}

.pti-82p {
  padding-top: 82% !important;
}

.pbi-82p {
  padding-bottom: 82% !important;
}

.pli-82p {
  padding-left: 82% !important;
}

.pri-82p {
  padding-right: 82% !important;
}

.pyi-82p {
  padding-top: 82% !important;
  padding-bottom: 82% !important;
}

.pxi-82p {
  padding-left: 82% !important;
  padding-right: 82% !important;
}

tr.p-82p > td {
  padding: 82%;
}

tr.pt-82p > td {
  padding-top: 82%;
}

tr.pb-82p > td {
  padding-bottom: 82%;
}

tr.pl-82p > td {
  padding-left: 82%;
}

tr.pr-82p > td {
  padding-right: 82%;
}

tr.py-82p > td {
  padding-top: 82%;
  padding-bottom: 82%;
}

tr.px-82p > td {
  padding-left: 82%;
  padding-right: 82%;
}

tr.pi-82p > td {
  padding: 82% !important;
}

tr.pti-82p > td {
  padding-top: 82% !important;
}

tr.pbi-82p > td {
  padding-bottom: 82% !important;
}

tr.pli-82p > td {
  padding-left: 82% !important;
}

tr.pri-82p > td {
  padding-right: 82% !important;
}

tr.pyi-82p > td {
  padding-top: 82% !important;
  padding-bottom: 82% !important;
}

tr.pxi-82p > td {
  padding-left: 82% !important;
  padding-right: 82% !important;
}

.m-83p {
  margin: 83%;
}

.mt-83p {
  margin-top: 83%;
}

.mb-83p {
  margin-bottom: 83%;
}

.ml-83p {
  margin-left: 83%;
}

.mr-83p {
  margin-right: 83%;
}

.mt--83p {
  margin-top: -83%;
}

.mb--83p {
  margin-bottom: -83%;
}

.ml--83p {
  margin-left: -83%;
}

.mr--83p {
  margin-right: -83%;
}

.my-83p {
  margin-top: 83%;
  margin-bottom: 83%;
}

.mx-83p {
  margin-left: 83%;
  margin-right: 83%;
}

.mi-83p {
  margin: 83% !important;
}

.mti-83p {
  margin-top: 83% !important;
}

.mbi-83p {
  margin-bottom: 83% !important;
}

.mli-83p {
  margin-left: 83% !important;
}

.mri-83p {
  margin-right: 83% !important;
}

.mti--83p {
  margin-top: -83% !important;
}

.mbi--83p {
  margin-bottom: -83% !important;
}

.mli--83p {
  margin-left: -83% !important;
}

.mri--83p {
  margin-right: -83% !important;
}

.myi-83p {
  margin-top: 83% !important;
  margin-bottom: 83% !important;
}

.mxi-83p {
  margin-left: 83% !important;
  margin-right: 83% !important;
}

.p-83p {
  padding: 83%;
}

.pt-83p {
  padding-top: 83%;
}

.pb-83p {
  padding-bottom: 83%;
}

.pl-83p {
  padding-left: 83%;
}

.pr-83p {
  padding-right: 83%;
}

.py-83p {
  padding-top: 83%;
  padding-bottom: 83%;
}

.px-83p {
  padding-left: 83%;
  padding-right: 83%;
}

.pi-83p {
  padding: 83% !important;
}

.pti-83p {
  padding-top: 83% !important;
}

.pbi-83p {
  padding-bottom: 83% !important;
}

.pli-83p {
  padding-left: 83% !important;
}

.pri-83p {
  padding-right: 83% !important;
}

.pyi-83p {
  padding-top: 83% !important;
  padding-bottom: 83% !important;
}

.pxi-83p {
  padding-left: 83% !important;
  padding-right: 83% !important;
}

tr.p-83p > td {
  padding: 83%;
}

tr.pt-83p > td {
  padding-top: 83%;
}

tr.pb-83p > td {
  padding-bottom: 83%;
}

tr.pl-83p > td {
  padding-left: 83%;
}

tr.pr-83p > td {
  padding-right: 83%;
}

tr.py-83p > td {
  padding-top: 83%;
  padding-bottom: 83%;
}

tr.px-83p > td {
  padding-left: 83%;
  padding-right: 83%;
}

tr.pi-83p > td {
  padding: 83% !important;
}

tr.pti-83p > td {
  padding-top: 83% !important;
}

tr.pbi-83p > td {
  padding-bottom: 83% !important;
}

tr.pli-83p > td {
  padding-left: 83% !important;
}

tr.pri-83p > td {
  padding-right: 83% !important;
}

tr.pyi-83p > td {
  padding-top: 83% !important;
  padding-bottom: 83% !important;
}

tr.pxi-83p > td {
  padding-left: 83% !important;
  padding-right: 83% !important;
}

.m-84p {
  margin: 84%;
}

.mt-84p {
  margin-top: 84%;
}

.mb-84p {
  margin-bottom: 84%;
}

.ml-84p {
  margin-left: 84%;
}

.mr-84p {
  margin-right: 84%;
}

.mt--84p {
  margin-top: -84%;
}

.mb--84p {
  margin-bottom: -84%;
}

.ml--84p {
  margin-left: -84%;
}

.mr--84p {
  margin-right: -84%;
}

.my-84p {
  margin-top: 84%;
  margin-bottom: 84%;
}

.mx-84p {
  margin-left: 84%;
  margin-right: 84%;
}

.mi-84p {
  margin: 84% !important;
}

.mti-84p {
  margin-top: 84% !important;
}

.mbi-84p {
  margin-bottom: 84% !important;
}

.mli-84p {
  margin-left: 84% !important;
}

.mri-84p {
  margin-right: 84% !important;
}

.mti--84p {
  margin-top: -84% !important;
}

.mbi--84p {
  margin-bottom: -84% !important;
}

.mli--84p {
  margin-left: -84% !important;
}

.mri--84p {
  margin-right: -84% !important;
}

.myi-84p {
  margin-top: 84% !important;
  margin-bottom: 84% !important;
}

.mxi-84p {
  margin-left: 84% !important;
  margin-right: 84% !important;
}

.p-84p {
  padding: 84%;
}

.pt-84p {
  padding-top: 84%;
}

.pb-84p {
  padding-bottom: 84%;
}

.pl-84p {
  padding-left: 84%;
}

.pr-84p {
  padding-right: 84%;
}

.py-84p {
  padding-top: 84%;
  padding-bottom: 84%;
}

.px-84p {
  padding-left: 84%;
  padding-right: 84%;
}

.pi-84p {
  padding: 84% !important;
}

.pti-84p {
  padding-top: 84% !important;
}

.pbi-84p {
  padding-bottom: 84% !important;
}

.pli-84p {
  padding-left: 84% !important;
}

.pri-84p {
  padding-right: 84% !important;
}

.pyi-84p {
  padding-top: 84% !important;
  padding-bottom: 84% !important;
}

.pxi-84p {
  padding-left: 84% !important;
  padding-right: 84% !important;
}

tr.p-84p > td {
  padding: 84%;
}

tr.pt-84p > td {
  padding-top: 84%;
}

tr.pb-84p > td {
  padding-bottom: 84%;
}

tr.pl-84p > td {
  padding-left: 84%;
}

tr.pr-84p > td {
  padding-right: 84%;
}

tr.py-84p > td {
  padding-top: 84%;
  padding-bottom: 84%;
}

tr.px-84p > td {
  padding-left: 84%;
  padding-right: 84%;
}

tr.pi-84p > td {
  padding: 84% !important;
}

tr.pti-84p > td {
  padding-top: 84% !important;
}

tr.pbi-84p > td {
  padding-bottom: 84% !important;
}

tr.pli-84p > td {
  padding-left: 84% !important;
}

tr.pri-84p > td {
  padding-right: 84% !important;
}

tr.pyi-84p > td {
  padding-top: 84% !important;
  padding-bottom: 84% !important;
}

tr.pxi-84p > td {
  padding-left: 84% !important;
  padding-right: 84% !important;
}

.m-85p {
  margin: 85%;
}

.mt-85p {
  margin-top: 85%;
}

.mb-85p {
  margin-bottom: 85%;
}

.ml-85p {
  margin-left: 85%;
}

.mr-85p {
  margin-right: 85%;
}

.mt--85p {
  margin-top: -85%;
}

.mb--85p {
  margin-bottom: -85%;
}

.ml--85p {
  margin-left: -85%;
}

.mr--85p {
  margin-right: -85%;
}

.my-85p {
  margin-top: 85%;
  margin-bottom: 85%;
}

.mx-85p {
  margin-left: 85%;
  margin-right: 85%;
}

.mi-85p {
  margin: 85% !important;
}

.mti-85p {
  margin-top: 85% !important;
}

.mbi-85p {
  margin-bottom: 85% !important;
}

.mli-85p {
  margin-left: 85% !important;
}

.mri-85p {
  margin-right: 85% !important;
}

.mti--85p {
  margin-top: -85% !important;
}

.mbi--85p {
  margin-bottom: -85% !important;
}

.mli--85p {
  margin-left: -85% !important;
}

.mri--85p {
  margin-right: -85% !important;
}

.myi-85p {
  margin-top: 85% !important;
  margin-bottom: 85% !important;
}

.mxi-85p {
  margin-left: 85% !important;
  margin-right: 85% !important;
}

.p-85p {
  padding: 85%;
}

.pt-85p {
  padding-top: 85%;
}

.pb-85p {
  padding-bottom: 85%;
}

.pl-85p {
  padding-left: 85%;
}

.pr-85p {
  padding-right: 85%;
}

.py-85p {
  padding-top: 85%;
  padding-bottom: 85%;
}

.px-85p {
  padding-left: 85%;
  padding-right: 85%;
}

.pi-85p {
  padding: 85% !important;
}

.pti-85p {
  padding-top: 85% !important;
}

.pbi-85p {
  padding-bottom: 85% !important;
}

.pli-85p {
  padding-left: 85% !important;
}

.pri-85p {
  padding-right: 85% !important;
}

.pyi-85p {
  padding-top: 85% !important;
  padding-bottom: 85% !important;
}

.pxi-85p {
  padding-left: 85% !important;
  padding-right: 85% !important;
}

tr.p-85p > td {
  padding: 85%;
}

tr.pt-85p > td {
  padding-top: 85%;
}

tr.pb-85p > td {
  padding-bottom: 85%;
}

tr.pl-85p > td {
  padding-left: 85%;
}

tr.pr-85p > td {
  padding-right: 85%;
}

tr.py-85p > td {
  padding-top: 85%;
  padding-bottom: 85%;
}

tr.px-85p > td {
  padding-left: 85%;
  padding-right: 85%;
}

tr.pi-85p > td {
  padding: 85% !important;
}

tr.pti-85p > td {
  padding-top: 85% !important;
}

tr.pbi-85p > td {
  padding-bottom: 85% !important;
}

tr.pli-85p > td {
  padding-left: 85% !important;
}

tr.pri-85p > td {
  padding-right: 85% !important;
}

tr.pyi-85p > td {
  padding-top: 85% !important;
  padding-bottom: 85% !important;
}

tr.pxi-85p > td {
  padding-left: 85% !important;
  padding-right: 85% !important;
}

.m-86p {
  margin: 86%;
}

.mt-86p {
  margin-top: 86%;
}

.mb-86p {
  margin-bottom: 86%;
}

.ml-86p {
  margin-left: 86%;
}

.mr-86p {
  margin-right: 86%;
}

.mt--86p {
  margin-top: -86%;
}

.mb--86p {
  margin-bottom: -86%;
}

.ml--86p {
  margin-left: -86%;
}

.mr--86p {
  margin-right: -86%;
}

.my-86p {
  margin-top: 86%;
  margin-bottom: 86%;
}

.mx-86p {
  margin-left: 86%;
  margin-right: 86%;
}

.mi-86p {
  margin: 86% !important;
}

.mti-86p {
  margin-top: 86% !important;
}

.mbi-86p {
  margin-bottom: 86% !important;
}

.mli-86p {
  margin-left: 86% !important;
}

.mri-86p {
  margin-right: 86% !important;
}

.mti--86p {
  margin-top: -86% !important;
}

.mbi--86p {
  margin-bottom: -86% !important;
}

.mli--86p {
  margin-left: -86% !important;
}

.mri--86p {
  margin-right: -86% !important;
}

.myi-86p {
  margin-top: 86% !important;
  margin-bottom: 86% !important;
}

.mxi-86p {
  margin-left: 86% !important;
  margin-right: 86% !important;
}

.p-86p {
  padding: 86%;
}

.pt-86p {
  padding-top: 86%;
}

.pb-86p {
  padding-bottom: 86%;
}

.pl-86p {
  padding-left: 86%;
}

.pr-86p {
  padding-right: 86%;
}

.py-86p {
  padding-top: 86%;
  padding-bottom: 86%;
}

.px-86p {
  padding-left: 86%;
  padding-right: 86%;
}

.pi-86p {
  padding: 86% !important;
}

.pti-86p {
  padding-top: 86% !important;
}

.pbi-86p {
  padding-bottom: 86% !important;
}

.pli-86p {
  padding-left: 86% !important;
}

.pri-86p {
  padding-right: 86% !important;
}

.pyi-86p {
  padding-top: 86% !important;
  padding-bottom: 86% !important;
}

.pxi-86p {
  padding-left: 86% !important;
  padding-right: 86% !important;
}

tr.p-86p > td {
  padding: 86%;
}

tr.pt-86p > td {
  padding-top: 86%;
}

tr.pb-86p > td {
  padding-bottom: 86%;
}

tr.pl-86p > td {
  padding-left: 86%;
}

tr.pr-86p > td {
  padding-right: 86%;
}

tr.py-86p > td {
  padding-top: 86%;
  padding-bottom: 86%;
}

tr.px-86p > td {
  padding-left: 86%;
  padding-right: 86%;
}

tr.pi-86p > td {
  padding: 86% !important;
}

tr.pti-86p > td {
  padding-top: 86% !important;
}

tr.pbi-86p > td {
  padding-bottom: 86% !important;
}

tr.pli-86p > td {
  padding-left: 86% !important;
}

tr.pri-86p > td {
  padding-right: 86% !important;
}

tr.pyi-86p > td {
  padding-top: 86% !important;
  padding-bottom: 86% !important;
}

tr.pxi-86p > td {
  padding-left: 86% !important;
  padding-right: 86% !important;
}

.m-87p {
  margin: 87%;
}

.mt-87p {
  margin-top: 87%;
}

.mb-87p {
  margin-bottom: 87%;
}

.ml-87p {
  margin-left: 87%;
}

.mr-87p {
  margin-right: 87%;
}

.mt--87p {
  margin-top: -87%;
}

.mb--87p {
  margin-bottom: -87%;
}

.ml--87p {
  margin-left: -87%;
}

.mr--87p {
  margin-right: -87%;
}

.my-87p {
  margin-top: 87%;
  margin-bottom: 87%;
}

.mx-87p {
  margin-left: 87%;
  margin-right: 87%;
}

.mi-87p {
  margin: 87% !important;
}

.mti-87p {
  margin-top: 87% !important;
}

.mbi-87p {
  margin-bottom: 87% !important;
}

.mli-87p {
  margin-left: 87% !important;
}

.mri-87p {
  margin-right: 87% !important;
}

.mti--87p {
  margin-top: -87% !important;
}

.mbi--87p {
  margin-bottom: -87% !important;
}

.mli--87p {
  margin-left: -87% !important;
}

.mri--87p {
  margin-right: -87% !important;
}

.myi-87p {
  margin-top: 87% !important;
  margin-bottom: 87% !important;
}

.mxi-87p {
  margin-left: 87% !important;
  margin-right: 87% !important;
}

.p-87p {
  padding: 87%;
}

.pt-87p {
  padding-top: 87%;
}

.pb-87p {
  padding-bottom: 87%;
}

.pl-87p {
  padding-left: 87%;
}

.pr-87p {
  padding-right: 87%;
}

.py-87p {
  padding-top: 87%;
  padding-bottom: 87%;
}

.px-87p {
  padding-left: 87%;
  padding-right: 87%;
}

.pi-87p {
  padding: 87% !important;
}

.pti-87p {
  padding-top: 87% !important;
}

.pbi-87p {
  padding-bottom: 87% !important;
}

.pli-87p {
  padding-left: 87% !important;
}

.pri-87p {
  padding-right: 87% !important;
}

.pyi-87p {
  padding-top: 87% !important;
  padding-bottom: 87% !important;
}

.pxi-87p {
  padding-left: 87% !important;
  padding-right: 87% !important;
}

tr.p-87p > td {
  padding: 87%;
}

tr.pt-87p > td {
  padding-top: 87%;
}

tr.pb-87p > td {
  padding-bottom: 87%;
}

tr.pl-87p > td {
  padding-left: 87%;
}

tr.pr-87p > td {
  padding-right: 87%;
}

tr.py-87p > td {
  padding-top: 87%;
  padding-bottom: 87%;
}

tr.px-87p > td {
  padding-left: 87%;
  padding-right: 87%;
}

tr.pi-87p > td {
  padding: 87% !important;
}

tr.pti-87p > td {
  padding-top: 87% !important;
}

tr.pbi-87p > td {
  padding-bottom: 87% !important;
}

tr.pli-87p > td {
  padding-left: 87% !important;
}

tr.pri-87p > td {
  padding-right: 87% !important;
}

tr.pyi-87p > td {
  padding-top: 87% !important;
  padding-bottom: 87% !important;
}

tr.pxi-87p > td {
  padding-left: 87% !important;
  padding-right: 87% !important;
}

.m-88p {
  margin: 88%;
}

.mt-88p {
  margin-top: 88%;
}

.mb-88p {
  margin-bottom: 88%;
}

.ml-88p {
  margin-left: 88%;
}

.mr-88p {
  margin-right: 88%;
}

.mt--88p {
  margin-top: -88%;
}

.mb--88p {
  margin-bottom: -88%;
}

.ml--88p {
  margin-left: -88%;
}

.mr--88p {
  margin-right: -88%;
}

.my-88p {
  margin-top: 88%;
  margin-bottom: 88%;
}

.mx-88p {
  margin-left: 88%;
  margin-right: 88%;
}

.mi-88p {
  margin: 88% !important;
}

.mti-88p {
  margin-top: 88% !important;
}

.mbi-88p {
  margin-bottom: 88% !important;
}

.mli-88p {
  margin-left: 88% !important;
}

.mri-88p {
  margin-right: 88% !important;
}

.mti--88p {
  margin-top: -88% !important;
}

.mbi--88p {
  margin-bottom: -88% !important;
}

.mli--88p {
  margin-left: -88% !important;
}

.mri--88p {
  margin-right: -88% !important;
}

.myi-88p {
  margin-top: 88% !important;
  margin-bottom: 88% !important;
}

.mxi-88p {
  margin-left: 88% !important;
  margin-right: 88% !important;
}

.p-88p {
  padding: 88%;
}

.pt-88p {
  padding-top: 88%;
}

.pb-88p {
  padding-bottom: 88%;
}

.pl-88p {
  padding-left: 88%;
}

.pr-88p {
  padding-right: 88%;
}

.py-88p {
  padding-top: 88%;
  padding-bottom: 88%;
}

.px-88p {
  padding-left: 88%;
  padding-right: 88%;
}

.pi-88p {
  padding: 88% !important;
}

.pti-88p {
  padding-top: 88% !important;
}

.pbi-88p {
  padding-bottom: 88% !important;
}

.pli-88p {
  padding-left: 88% !important;
}

.pri-88p {
  padding-right: 88% !important;
}

.pyi-88p {
  padding-top: 88% !important;
  padding-bottom: 88% !important;
}

.pxi-88p {
  padding-left: 88% !important;
  padding-right: 88% !important;
}

tr.p-88p > td {
  padding: 88%;
}

tr.pt-88p > td {
  padding-top: 88%;
}

tr.pb-88p > td {
  padding-bottom: 88%;
}

tr.pl-88p > td {
  padding-left: 88%;
}

tr.pr-88p > td {
  padding-right: 88%;
}

tr.py-88p > td {
  padding-top: 88%;
  padding-bottom: 88%;
}

tr.px-88p > td {
  padding-left: 88%;
  padding-right: 88%;
}

tr.pi-88p > td {
  padding: 88% !important;
}

tr.pti-88p > td {
  padding-top: 88% !important;
}

tr.pbi-88p > td {
  padding-bottom: 88% !important;
}

tr.pli-88p > td {
  padding-left: 88% !important;
}

tr.pri-88p > td {
  padding-right: 88% !important;
}

tr.pyi-88p > td {
  padding-top: 88% !important;
  padding-bottom: 88% !important;
}

tr.pxi-88p > td {
  padding-left: 88% !important;
  padding-right: 88% !important;
}

.m-89p {
  margin: 89%;
}

.mt-89p {
  margin-top: 89%;
}

.mb-89p {
  margin-bottom: 89%;
}

.ml-89p {
  margin-left: 89%;
}

.mr-89p {
  margin-right: 89%;
}

.mt--89p {
  margin-top: -89%;
}

.mb--89p {
  margin-bottom: -89%;
}

.ml--89p {
  margin-left: -89%;
}

.mr--89p {
  margin-right: -89%;
}

.my-89p {
  margin-top: 89%;
  margin-bottom: 89%;
}

.mx-89p {
  margin-left: 89%;
  margin-right: 89%;
}

.mi-89p {
  margin: 89% !important;
}

.mti-89p {
  margin-top: 89% !important;
}

.mbi-89p {
  margin-bottom: 89% !important;
}

.mli-89p {
  margin-left: 89% !important;
}

.mri-89p {
  margin-right: 89% !important;
}

.mti--89p {
  margin-top: -89% !important;
}

.mbi--89p {
  margin-bottom: -89% !important;
}

.mli--89p {
  margin-left: -89% !important;
}

.mri--89p {
  margin-right: -89% !important;
}

.myi-89p {
  margin-top: 89% !important;
  margin-bottom: 89% !important;
}

.mxi-89p {
  margin-left: 89% !important;
  margin-right: 89% !important;
}

.p-89p {
  padding: 89%;
}

.pt-89p {
  padding-top: 89%;
}

.pb-89p {
  padding-bottom: 89%;
}

.pl-89p {
  padding-left: 89%;
}

.pr-89p {
  padding-right: 89%;
}

.py-89p {
  padding-top: 89%;
  padding-bottom: 89%;
}

.px-89p {
  padding-left: 89%;
  padding-right: 89%;
}

.pi-89p {
  padding: 89% !important;
}

.pti-89p {
  padding-top: 89% !important;
}

.pbi-89p {
  padding-bottom: 89% !important;
}

.pli-89p {
  padding-left: 89% !important;
}

.pri-89p {
  padding-right: 89% !important;
}

.pyi-89p {
  padding-top: 89% !important;
  padding-bottom: 89% !important;
}

.pxi-89p {
  padding-left: 89% !important;
  padding-right: 89% !important;
}

tr.p-89p > td {
  padding: 89%;
}

tr.pt-89p > td {
  padding-top: 89%;
}

tr.pb-89p > td {
  padding-bottom: 89%;
}

tr.pl-89p > td {
  padding-left: 89%;
}

tr.pr-89p > td {
  padding-right: 89%;
}

tr.py-89p > td {
  padding-top: 89%;
  padding-bottom: 89%;
}

tr.px-89p > td {
  padding-left: 89%;
  padding-right: 89%;
}

tr.pi-89p > td {
  padding: 89% !important;
}

tr.pti-89p > td {
  padding-top: 89% !important;
}

tr.pbi-89p > td {
  padding-bottom: 89% !important;
}

tr.pli-89p > td {
  padding-left: 89% !important;
}

tr.pri-89p > td {
  padding-right: 89% !important;
}

tr.pyi-89p > td {
  padding-top: 89% !important;
  padding-bottom: 89% !important;
}

tr.pxi-89p > td {
  padding-left: 89% !important;
  padding-right: 89% !important;
}

.m-90p {
  margin: 90%;
}

.mt-90p {
  margin-top: 90%;
}

.mb-90p {
  margin-bottom: 90%;
}

.ml-90p {
  margin-left: 90%;
}

.mr-90p {
  margin-right: 90%;
}

.mt--90p {
  margin-top: -90%;
}

.mb--90p {
  margin-bottom: -90%;
}

.ml--90p {
  margin-left: -90%;
}

.mr--90p {
  margin-right: -90%;
}

.my-90p {
  margin-top: 90%;
  margin-bottom: 90%;
}

.mx-90p {
  margin-left: 90%;
  margin-right: 90%;
}

.mi-90p {
  margin: 90% !important;
}

.mti-90p {
  margin-top: 90% !important;
}

.mbi-90p {
  margin-bottom: 90% !important;
}

.mli-90p {
  margin-left: 90% !important;
}

.mri-90p {
  margin-right: 90% !important;
}

.mti--90p {
  margin-top: -90% !important;
}

.mbi--90p {
  margin-bottom: -90% !important;
}

.mli--90p {
  margin-left: -90% !important;
}

.mri--90p {
  margin-right: -90% !important;
}

.myi-90p {
  margin-top: 90% !important;
  margin-bottom: 90% !important;
}

.mxi-90p {
  margin-left: 90% !important;
  margin-right: 90% !important;
}

.p-90p {
  padding: 90%;
}

.pt-90p {
  padding-top: 90%;
}

.pb-90p {
  padding-bottom: 90%;
}

.pl-90p {
  padding-left: 90%;
}

.pr-90p {
  padding-right: 90%;
}

.py-90p {
  padding-top: 90%;
  padding-bottom: 90%;
}

.px-90p {
  padding-left: 90%;
  padding-right: 90%;
}

.pi-90p {
  padding: 90% !important;
}

.pti-90p {
  padding-top: 90% !important;
}

.pbi-90p {
  padding-bottom: 90% !important;
}

.pli-90p {
  padding-left: 90% !important;
}

.pri-90p {
  padding-right: 90% !important;
}

.pyi-90p {
  padding-top: 90% !important;
  padding-bottom: 90% !important;
}

.pxi-90p {
  padding-left: 90% !important;
  padding-right: 90% !important;
}

tr.p-90p > td {
  padding: 90%;
}

tr.pt-90p > td {
  padding-top: 90%;
}

tr.pb-90p > td {
  padding-bottom: 90%;
}

tr.pl-90p > td {
  padding-left: 90%;
}

tr.pr-90p > td {
  padding-right: 90%;
}

tr.py-90p > td {
  padding-top: 90%;
  padding-bottom: 90%;
}

tr.px-90p > td {
  padding-left: 90%;
  padding-right: 90%;
}

tr.pi-90p > td {
  padding: 90% !important;
}

tr.pti-90p > td {
  padding-top: 90% !important;
}

tr.pbi-90p > td {
  padding-bottom: 90% !important;
}

tr.pli-90p > td {
  padding-left: 90% !important;
}

tr.pri-90p > td {
  padding-right: 90% !important;
}

tr.pyi-90p > td {
  padding-top: 90% !important;
  padding-bottom: 90% !important;
}

tr.pxi-90p > td {
  padding-left: 90% !important;
  padding-right: 90% !important;
}

.m-91p {
  margin: 91%;
}

.mt-91p {
  margin-top: 91%;
}

.mb-91p {
  margin-bottom: 91%;
}

.ml-91p {
  margin-left: 91%;
}

.mr-91p {
  margin-right: 91%;
}

.mt--91p {
  margin-top: -91%;
}

.mb--91p {
  margin-bottom: -91%;
}

.ml--91p {
  margin-left: -91%;
}

.mr--91p {
  margin-right: -91%;
}

.my-91p {
  margin-top: 91%;
  margin-bottom: 91%;
}

.mx-91p {
  margin-left: 91%;
  margin-right: 91%;
}

.mi-91p {
  margin: 91% !important;
}

.mti-91p {
  margin-top: 91% !important;
}

.mbi-91p {
  margin-bottom: 91% !important;
}

.mli-91p {
  margin-left: 91% !important;
}

.mri-91p {
  margin-right: 91% !important;
}

.mti--91p {
  margin-top: -91% !important;
}

.mbi--91p {
  margin-bottom: -91% !important;
}

.mli--91p {
  margin-left: -91% !important;
}

.mri--91p {
  margin-right: -91% !important;
}

.myi-91p {
  margin-top: 91% !important;
  margin-bottom: 91% !important;
}

.mxi-91p {
  margin-left: 91% !important;
  margin-right: 91% !important;
}

.p-91p {
  padding: 91%;
}

.pt-91p {
  padding-top: 91%;
}

.pb-91p {
  padding-bottom: 91%;
}

.pl-91p {
  padding-left: 91%;
}

.pr-91p {
  padding-right: 91%;
}

.py-91p {
  padding-top: 91%;
  padding-bottom: 91%;
}

.px-91p {
  padding-left: 91%;
  padding-right: 91%;
}

.pi-91p {
  padding: 91% !important;
}

.pti-91p {
  padding-top: 91% !important;
}

.pbi-91p {
  padding-bottom: 91% !important;
}

.pli-91p {
  padding-left: 91% !important;
}

.pri-91p {
  padding-right: 91% !important;
}

.pyi-91p {
  padding-top: 91% !important;
  padding-bottom: 91% !important;
}

.pxi-91p {
  padding-left: 91% !important;
  padding-right: 91% !important;
}

tr.p-91p > td {
  padding: 91%;
}

tr.pt-91p > td {
  padding-top: 91%;
}

tr.pb-91p > td {
  padding-bottom: 91%;
}

tr.pl-91p > td {
  padding-left: 91%;
}

tr.pr-91p > td {
  padding-right: 91%;
}

tr.py-91p > td {
  padding-top: 91%;
  padding-bottom: 91%;
}

tr.px-91p > td {
  padding-left: 91%;
  padding-right: 91%;
}

tr.pi-91p > td {
  padding: 91% !important;
}

tr.pti-91p > td {
  padding-top: 91% !important;
}

tr.pbi-91p > td {
  padding-bottom: 91% !important;
}

tr.pli-91p > td {
  padding-left: 91% !important;
}

tr.pri-91p > td {
  padding-right: 91% !important;
}

tr.pyi-91p > td {
  padding-top: 91% !important;
  padding-bottom: 91% !important;
}

tr.pxi-91p > td {
  padding-left: 91% !important;
  padding-right: 91% !important;
}

.m-92p {
  margin: 92%;
}

.mt-92p {
  margin-top: 92%;
}

.mb-92p {
  margin-bottom: 92%;
}

.ml-92p {
  margin-left: 92%;
}

.mr-92p {
  margin-right: 92%;
}

.mt--92p {
  margin-top: -92%;
}

.mb--92p {
  margin-bottom: -92%;
}

.ml--92p {
  margin-left: -92%;
}

.mr--92p {
  margin-right: -92%;
}

.my-92p {
  margin-top: 92%;
  margin-bottom: 92%;
}

.mx-92p {
  margin-left: 92%;
  margin-right: 92%;
}

.mi-92p {
  margin: 92% !important;
}

.mti-92p {
  margin-top: 92% !important;
}

.mbi-92p {
  margin-bottom: 92% !important;
}

.mli-92p {
  margin-left: 92% !important;
}

.mri-92p {
  margin-right: 92% !important;
}

.mti--92p {
  margin-top: -92% !important;
}

.mbi--92p {
  margin-bottom: -92% !important;
}

.mli--92p {
  margin-left: -92% !important;
}

.mri--92p {
  margin-right: -92% !important;
}

.myi-92p {
  margin-top: 92% !important;
  margin-bottom: 92% !important;
}

.mxi-92p {
  margin-left: 92% !important;
  margin-right: 92% !important;
}

.p-92p {
  padding: 92%;
}

.pt-92p {
  padding-top: 92%;
}

.pb-92p {
  padding-bottom: 92%;
}

.pl-92p {
  padding-left: 92%;
}

.pr-92p {
  padding-right: 92%;
}

.py-92p {
  padding-top: 92%;
  padding-bottom: 92%;
}

.px-92p {
  padding-left: 92%;
  padding-right: 92%;
}

.pi-92p {
  padding: 92% !important;
}

.pti-92p {
  padding-top: 92% !important;
}

.pbi-92p {
  padding-bottom: 92% !important;
}

.pli-92p {
  padding-left: 92% !important;
}

.pri-92p {
  padding-right: 92% !important;
}

.pyi-92p {
  padding-top: 92% !important;
  padding-bottom: 92% !important;
}

.pxi-92p {
  padding-left: 92% !important;
  padding-right: 92% !important;
}

tr.p-92p > td {
  padding: 92%;
}

tr.pt-92p > td {
  padding-top: 92%;
}

tr.pb-92p > td {
  padding-bottom: 92%;
}

tr.pl-92p > td {
  padding-left: 92%;
}

tr.pr-92p > td {
  padding-right: 92%;
}

tr.py-92p > td {
  padding-top: 92%;
  padding-bottom: 92%;
}

tr.px-92p > td {
  padding-left: 92%;
  padding-right: 92%;
}

tr.pi-92p > td {
  padding: 92% !important;
}

tr.pti-92p > td {
  padding-top: 92% !important;
}

tr.pbi-92p > td {
  padding-bottom: 92% !important;
}

tr.pli-92p > td {
  padding-left: 92% !important;
}

tr.pri-92p > td {
  padding-right: 92% !important;
}

tr.pyi-92p > td {
  padding-top: 92% !important;
  padding-bottom: 92% !important;
}

tr.pxi-92p > td {
  padding-left: 92% !important;
  padding-right: 92% !important;
}

.m-93p {
  margin: 93%;
}

.mt-93p {
  margin-top: 93%;
}

.mb-93p {
  margin-bottom: 93%;
}

.ml-93p {
  margin-left: 93%;
}

.mr-93p {
  margin-right: 93%;
}

.mt--93p {
  margin-top: -93%;
}

.mb--93p {
  margin-bottom: -93%;
}

.ml--93p {
  margin-left: -93%;
}

.mr--93p {
  margin-right: -93%;
}

.my-93p {
  margin-top: 93%;
  margin-bottom: 93%;
}

.mx-93p {
  margin-left: 93%;
  margin-right: 93%;
}

.mi-93p {
  margin: 93% !important;
}

.mti-93p {
  margin-top: 93% !important;
}

.mbi-93p {
  margin-bottom: 93% !important;
}

.mli-93p {
  margin-left: 93% !important;
}

.mri-93p {
  margin-right: 93% !important;
}

.mti--93p {
  margin-top: -93% !important;
}

.mbi--93p {
  margin-bottom: -93% !important;
}

.mli--93p {
  margin-left: -93% !important;
}

.mri--93p {
  margin-right: -93% !important;
}

.myi-93p {
  margin-top: 93% !important;
  margin-bottom: 93% !important;
}

.mxi-93p {
  margin-left: 93% !important;
  margin-right: 93% !important;
}

.p-93p {
  padding: 93%;
}

.pt-93p {
  padding-top: 93%;
}

.pb-93p {
  padding-bottom: 93%;
}

.pl-93p {
  padding-left: 93%;
}

.pr-93p {
  padding-right: 93%;
}

.py-93p {
  padding-top: 93%;
  padding-bottom: 93%;
}

.px-93p {
  padding-left: 93%;
  padding-right: 93%;
}

.pi-93p {
  padding: 93% !important;
}

.pti-93p {
  padding-top: 93% !important;
}

.pbi-93p {
  padding-bottom: 93% !important;
}

.pli-93p {
  padding-left: 93% !important;
}

.pri-93p {
  padding-right: 93% !important;
}

.pyi-93p {
  padding-top: 93% !important;
  padding-bottom: 93% !important;
}

.pxi-93p {
  padding-left: 93% !important;
  padding-right: 93% !important;
}

tr.p-93p > td {
  padding: 93%;
}

tr.pt-93p > td {
  padding-top: 93%;
}

tr.pb-93p > td {
  padding-bottom: 93%;
}

tr.pl-93p > td {
  padding-left: 93%;
}

tr.pr-93p > td {
  padding-right: 93%;
}

tr.py-93p > td {
  padding-top: 93%;
  padding-bottom: 93%;
}

tr.px-93p > td {
  padding-left: 93%;
  padding-right: 93%;
}

tr.pi-93p > td {
  padding: 93% !important;
}

tr.pti-93p > td {
  padding-top: 93% !important;
}

tr.pbi-93p > td {
  padding-bottom: 93% !important;
}

tr.pli-93p > td {
  padding-left: 93% !important;
}

tr.pri-93p > td {
  padding-right: 93% !important;
}

tr.pyi-93p > td {
  padding-top: 93% !important;
  padding-bottom: 93% !important;
}

tr.pxi-93p > td {
  padding-left: 93% !important;
  padding-right: 93% !important;
}

.m-94p {
  margin: 94%;
}

.mt-94p {
  margin-top: 94%;
}

.mb-94p {
  margin-bottom: 94%;
}

.ml-94p {
  margin-left: 94%;
}

.mr-94p {
  margin-right: 94%;
}

.mt--94p {
  margin-top: -94%;
}

.mb--94p {
  margin-bottom: -94%;
}

.ml--94p {
  margin-left: -94%;
}

.mr--94p {
  margin-right: -94%;
}

.my-94p {
  margin-top: 94%;
  margin-bottom: 94%;
}

.mx-94p {
  margin-left: 94%;
  margin-right: 94%;
}

.mi-94p {
  margin: 94% !important;
}

.mti-94p {
  margin-top: 94% !important;
}

.mbi-94p {
  margin-bottom: 94% !important;
}

.mli-94p {
  margin-left: 94% !important;
}

.mri-94p {
  margin-right: 94% !important;
}

.mti--94p {
  margin-top: -94% !important;
}

.mbi--94p {
  margin-bottom: -94% !important;
}

.mli--94p {
  margin-left: -94% !important;
}

.mri--94p {
  margin-right: -94% !important;
}

.myi-94p {
  margin-top: 94% !important;
  margin-bottom: 94% !important;
}

.mxi-94p {
  margin-left: 94% !important;
  margin-right: 94% !important;
}

.p-94p {
  padding: 94%;
}

.pt-94p {
  padding-top: 94%;
}

.pb-94p {
  padding-bottom: 94%;
}

.pl-94p {
  padding-left: 94%;
}

.pr-94p {
  padding-right: 94%;
}

.py-94p {
  padding-top: 94%;
  padding-bottom: 94%;
}

.px-94p {
  padding-left: 94%;
  padding-right: 94%;
}

.pi-94p {
  padding: 94% !important;
}

.pti-94p {
  padding-top: 94% !important;
}

.pbi-94p {
  padding-bottom: 94% !important;
}

.pli-94p {
  padding-left: 94% !important;
}

.pri-94p {
  padding-right: 94% !important;
}

.pyi-94p {
  padding-top: 94% !important;
  padding-bottom: 94% !important;
}

.pxi-94p {
  padding-left: 94% !important;
  padding-right: 94% !important;
}

tr.p-94p > td {
  padding: 94%;
}

tr.pt-94p > td {
  padding-top: 94%;
}

tr.pb-94p > td {
  padding-bottom: 94%;
}

tr.pl-94p > td {
  padding-left: 94%;
}

tr.pr-94p > td {
  padding-right: 94%;
}

tr.py-94p > td {
  padding-top: 94%;
  padding-bottom: 94%;
}

tr.px-94p > td {
  padding-left: 94%;
  padding-right: 94%;
}

tr.pi-94p > td {
  padding: 94% !important;
}

tr.pti-94p > td {
  padding-top: 94% !important;
}

tr.pbi-94p > td {
  padding-bottom: 94% !important;
}

tr.pli-94p > td {
  padding-left: 94% !important;
}

tr.pri-94p > td {
  padding-right: 94% !important;
}

tr.pyi-94p > td {
  padding-top: 94% !important;
  padding-bottom: 94% !important;
}

tr.pxi-94p > td {
  padding-left: 94% !important;
  padding-right: 94% !important;
}

.m-95p {
  margin: 95%;
}

.mt-95p {
  margin-top: 95%;
}

.mb-95p {
  margin-bottom: 95%;
}

.ml-95p {
  margin-left: 95%;
}

.mr-95p {
  margin-right: 95%;
}

.mt--95p {
  margin-top: -95%;
}

.mb--95p {
  margin-bottom: -95%;
}

.ml--95p {
  margin-left: -95%;
}

.mr--95p {
  margin-right: -95%;
}

.my-95p {
  margin-top: 95%;
  margin-bottom: 95%;
}

.mx-95p {
  margin-left: 95%;
  margin-right: 95%;
}

.mi-95p {
  margin: 95% !important;
}

.mti-95p {
  margin-top: 95% !important;
}

.mbi-95p {
  margin-bottom: 95% !important;
}

.mli-95p {
  margin-left: 95% !important;
}

.mri-95p {
  margin-right: 95% !important;
}

.mti--95p {
  margin-top: -95% !important;
}

.mbi--95p {
  margin-bottom: -95% !important;
}

.mli--95p {
  margin-left: -95% !important;
}

.mri--95p {
  margin-right: -95% !important;
}

.myi-95p {
  margin-top: 95% !important;
  margin-bottom: 95% !important;
}

.mxi-95p {
  margin-left: 95% !important;
  margin-right: 95% !important;
}

.p-95p {
  padding: 95%;
}

.pt-95p {
  padding-top: 95%;
}

.pb-95p {
  padding-bottom: 95%;
}

.pl-95p {
  padding-left: 95%;
}

.pr-95p {
  padding-right: 95%;
}

.py-95p {
  padding-top: 95%;
  padding-bottom: 95%;
}

.px-95p {
  padding-left: 95%;
  padding-right: 95%;
}

.pi-95p {
  padding: 95% !important;
}

.pti-95p {
  padding-top: 95% !important;
}

.pbi-95p {
  padding-bottom: 95% !important;
}

.pli-95p {
  padding-left: 95% !important;
}

.pri-95p {
  padding-right: 95% !important;
}

.pyi-95p {
  padding-top: 95% !important;
  padding-bottom: 95% !important;
}

.pxi-95p {
  padding-left: 95% !important;
  padding-right: 95% !important;
}

tr.p-95p > td {
  padding: 95%;
}

tr.pt-95p > td {
  padding-top: 95%;
}

tr.pb-95p > td {
  padding-bottom: 95%;
}

tr.pl-95p > td {
  padding-left: 95%;
}

tr.pr-95p > td {
  padding-right: 95%;
}

tr.py-95p > td {
  padding-top: 95%;
  padding-bottom: 95%;
}

tr.px-95p > td {
  padding-left: 95%;
  padding-right: 95%;
}

tr.pi-95p > td {
  padding: 95% !important;
}

tr.pti-95p > td {
  padding-top: 95% !important;
}

tr.pbi-95p > td {
  padding-bottom: 95% !important;
}

tr.pli-95p > td {
  padding-left: 95% !important;
}

tr.pri-95p > td {
  padding-right: 95% !important;
}

tr.pyi-95p > td {
  padding-top: 95% !important;
  padding-bottom: 95% !important;
}

tr.pxi-95p > td {
  padding-left: 95% !important;
  padding-right: 95% !important;
}

.m-96p {
  margin: 96%;
}

.mt-96p {
  margin-top: 96%;
}

.mb-96p {
  margin-bottom: 96%;
}

.ml-96p {
  margin-left: 96%;
}

.mr-96p {
  margin-right: 96%;
}

.mt--96p {
  margin-top: -96%;
}

.mb--96p {
  margin-bottom: -96%;
}

.ml--96p {
  margin-left: -96%;
}

.mr--96p {
  margin-right: -96%;
}

.my-96p {
  margin-top: 96%;
  margin-bottom: 96%;
}

.mx-96p {
  margin-left: 96%;
  margin-right: 96%;
}

.mi-96p {
  margin: 96% !important;
}

.mti-96p {
  margin-top: 96% !important;
}

.mbi-96p {
  margin-bottom: 96% !important;
}

.mli-96p {
  margin-left: 96% !important;
}

.mri-96p {
  margin-right: 96% !important;
}

.mti--96p {
  margin-top: -96% !important;
}

.mbi--96p {
  margin-bottom: -96% !important;
}

.mli--96p {
  margin-left: -96% !important;
}

.mri--96p {
  margin-right: -96% !important;
}

.myi-96p {
  margin-top: 96% !important;
  margin-bottom: 96% !important;
}

.mxi-96p {
  margin-left: 96% !important;
  margin-right: 96% !important;
}

.p-96p {
  padding: 96%;
}

.pt-96p {
  padding-top: 96%;
}

.pb-96p {
  padding-bottom: 96%;
}

.pl-96p {
  padding-left: 96%;
}

.pr-96p {
  padding-right: 96%;
}

.py-96p {
  padding-top: 96%;
  padding-bottom: 96%;
}

.px-96p {
  padding-left: 96%;
  padding-right: 96%;
}

.pi-96p {
  padding: 96% !important;
}

.pti-96p {
  padding-top: 96% !important;
}

.pbi-96p {
  padding-bottom: 96% !important;
}

.pli-96p {
  padding-left: 96% !important;
}

.pri-96p {
  padding-right: 96% !important;
}

.pyi-96p {
  padding-top: 96% !important;
  padding-bottom: 96% !important;
}

.pxi-96p {
  padding-left: 96% !important;
  padding-right: 96% !important;
}

tr.p-96p > td {
  padding: 96%;
}

tr.pt-96p > td {
  padding-top: 96%;
}

tr.pb-96p > td {
  padding-bottom: 96%;
}

tr.pl-96p > td {
  padding-left: 96%;
}

tr.pr-96p > td {
  padding-right: 96%;
}

tr.py-96p > td {
  padding-top: 96%;
  padding-bottom: 96%;
}

tr.px-96p > td {
  padding-left: 96%;
  padding-right: 96%;
}

tr.pi-96p > td {
  padding: 96% !important;
}

tr.pti-96p > td {
  padding-top: 96% !important;
}

tr.pbi-96p > td {
  padding-bottom: 96% !important;
}

tr.pli-96p > td {
  padding-left: 96% !important;
}

tr.pri-96p > td {
  padding-right: 96% !important;
}

tr.pyi-96p > td {
  padding-top: 96% !important;
  padding-bottom: 96% !important;
}

tr.pxi-96p > td {
  padding-left: 96% !important;
  padding-right: 96% !important;
}

.m-97p {
  margin: 97%;
}

.mt-97p {
  margin-top: 97%;
}

.mb-97p {
  margin-bottom: 97%;
}

.ml-97p {
  margin-left: 97%;
}

.mr-97p {
  margin-right: 97%;
}

.mt--97p {
  margin-top: -97%;
}

.mb--97p {
  margin-bottom: -97%;
}

.ml--97p {
  margin-left: -97%;
}

.mr--97p {
  margin-right: -97%;
}

.my-97p {
  margin-top: 97%;
  margin-bottom: 97%;
}

.mx-97p {
  margin-left: 97%;
  margin-right: 97%;
}

.mi-97p {
  margin: 97% !important;
}

.mti-97p {
  margin-top: 97% !important;
}

.mbi-97p {
  margin-bottom: 97% !important;
}

.mli-97p {
  margin-left: 97% !important;
}

.mri-97p {
  margin-right: 97% !important;
}

.mti--97p {
  margin-top: -97% !important;
}

.mbi--97p {
  margin-bottom: -97% !important;
}

.mli--97p {
  margin-left: -97% !important;
}

.mri--97p {
  margin-right: -97% !important;
}

.myi-97p {
  margin-top: 97% !important;
  margin-bottom: 97% !important;
}

.mxi-97p {
  margin-left: 97% !important;
  margin-right: 97% !important;
}

.p-97p {
  padding: 97%;
}

.pt-97p {
  padding-top: 97%;
}

.pb-97p {
  padding-bottom: 97%;
}

.pl-97p {
  padding-left: 97%;
}

.pr-97p {
  padding-right: 97%;
}

.py-97p {
  padding-top: 97%;
  padding-bottom: 97%;
}

.px-97p {
  padding-left: 97%;
  padding-right: 97%;
}

.pi-97p {
  padding: 97% !important;
}

.pti-97p {
  padding-top: 97% !important;
}

.pbi-97p {
  padding-bottom: 97% !important;
}

.pli-97p {
  padding-left: 97% !important;
}

.pri-97p {
  padding-right: 97% !important;
}

.pyi-97p {
  padding-top: 97% !important;
  padding-bottom: 97% !important;
}

.pxi-97p {
  padding-left: 97% !important;
  padding-right: 97% !important;
}

tr.p-97p > td {
  padding: 97%;
}

tr.pt-97p > td {
  padding-top: 97%;
}

tr.pb-97p > td {
  padding-bottom: 97%;
}

tr.pl-97p > td {
  padding-left: 97%;
}

tr.pr-97p > td {
  padding-right: 97%;
}

tr.py-97p > td {
  padding-top: 97%;
  padding-bottom: 97%;
}

tr.px-97p > td {
  padding-left: 97%;
  padding-right: 97%;
}

tr.pi-97p > td {
  padding: 97% !important;
}

tr.pti-97p > td {
  padding-top: 97% !important;
}

tr.pbi-97p > td {
  padding-bottom: 97% !important;
}

tr.pli-97p > td {
  padding-left: 97% !important;
}

tr.pri-97p > td {
  padding-right: 97% !important;
}

tr.pyi-97p > td {
  padding-top: 97% !important;
  padding-bottom: 97% !important;
}

tr.pxi-97p > td {
  padding-left: 97% !important;
  padding-right: 97% !important;
}

.m-98p {
  margin: 98%;
}

.mt-98p {
  margin-top: 98%;
}

.mb-98p {
  margin-bottom: 98%;
}

.ml-98p {
  margin-left: 98%;
}

.mr-98p {
  margin-right: 98%;
}

.mt--98p {
  margin-top: -98%;
}

.mb--98p {
  margin-bottom: -98%;
}

.ml--98p {
  margin-left: -98%;
}

.mr--98p {
  margin-right: -98%;
}

.my-98p {
  margin-top: 98%;
  margin-bottom: 98%;
}

.mx-98p {
  margin-left: 98%;
  margin-right: 98%;
}

.mi-98p {
  margin: 98% !important;
}

.mti-98p {
  margin-top: 98% !important;
}

.mbi-98p {
  margin-bottom: 98% !important;
}

.mli-98p {
  margin-left: 98% !important;
}

.mri-98p {
  margin-right: 98% !important;
}

.mti--98p {
  margin-top: -98% !important;
}

.mbi--98p {
  margin-bottom: -98% !important;
}

.mli--98p {
  margin-left: -98% !important;
}

.mri--98p {
  margin-right: -98% !important;
}

.myi-98p {
  margin-top: 98% !important;
  margin-bottom: 98% !important;
}

.mxi-98p {
  margin-left: 98% !important;
  margin-right: 98% !important;
}

.p-98p {
  padding: 98%;
}

.pt-98p {
  padding-top: 98%;
}

.pb-98p {
  padding-bottom: 98%;
}

.pl-98p {
  padding-left: 98%;
}

.pr-98p {
  padding-right: 98%;
}

.py-98p {
  padding-top: 98%;
  padding-bottom: 98%;
}

.px-98p {
  padding-left: 98%;
  padding-right: 98%;
}

.pi-98p {
  padding: 98% !important;
}

.pti-98p {
  padding-top: 98% !important;
}

.pbi-98p {
  padding-bottom: 98% !important;
}

.pli-98p {
  padding-left: 98% !important;
}

.pri-98p {
  padding-right: 98% !important;
}

.pyi-98p {
  padding-top: 98% !important;
  padding-bottom: 98% !important;
}

.pxi-98p {
  padding-left: 98% !important;
  padding-right: 98% !important;
}

tr.p-98p > td {
  padding: 98%;
}

tr.pt-98p > td {
  padding-top: 98%;
}

tr.pb-98p > td {
  padding-bottom: 98%;
}

tr.pl-98p > td {
  padding-left: 98%;
}

tr.pr-98p > td {
  padding-right: 98%;
}

tr.py-98p > td {
  padding-top: 98%;
  padding-bottom: 98%;
}

tr.px-98p > td {
  padding-left: 98%;
  padding-right: 98%;
}

tr.pi-98p > td {
  padding: 98% !important;
}

tr.pti-98p > td {
  padding-top: 98% !important;
}

tr.pbi-98p > td {
  padding-bottom: 98% !important;
}

tr.pli-98p > td {
  padding-left: 98% !important;
}

tr.pri-98p > td {
  padding-right: 98% !important;
}

tr.pyi-98p > td {
  padding-top: 98% !important;
  padding-bottom: 98% !important;
}

tr.pxi-98p > td {
  padding-left: 98% !important;
  padding-right: 98% !important;
}

.m-99p {
  margin: 99%;
}

.mt-99p {
  margin-top: 99%;
}

.mb-99p {
  margin-bottom: 99%;
}

.ml-99p {
  margin-left: 99%;
}

.mr-99p {
  margin-right: 99%;
}

.mt--99p {
  margin-top: -99%;
}

.mb--99p {
  margin-bottom: -99%;
}

.ml--99p {
  margin-left: -99%;
}

.mr--99p {
  margin-right: -99%;
}

.my-99p {
  margin-top: 99%;
  margin-bottom: 99%;
}

.mx-99p {
  margin-left: 99%;
  margin-right: 99%;
}

.mi-99p {
  margin: 99% !important;
}

.mti-99p {
  margin-top: 99% !important;
}

.mbi-99p {
  margin-bottom: 99% !important;
}

.mli-99p {
  margin-left: 99% !important;
}

.mri-99p {
  margin-right: 99% !important;
}

.mti--99p {
  margin-top: -99% !important;
}

.mbi--99p {
  margin-bottom: -99% !important;
}

.mli--99p {
  margin-left: -99% !important;
}

.mri--99p {
  margin-right: -99% !important;
}

.myi-99p {
  margin-top: 99% !important;
  margin-bottom: 99% !important;
}

.mxi-99p {
  margin-left: 99% !important;
  margin-right: 99% !important;
}

.p-99p {
  padding: 99%;
}

.pt-99p {
  padding-top: 99%;
}

.pb-99p {
  padding-bottom: 99%;
}

.pl-99p {
  padding-left: 99%;
}

.pr-99p {
  padding-right: 99%;
}

.py-99p {
  padding-top: 99%;
  padding-bottom: 99%;
}

.px-99p {
  padding-left: 99%;
  padding-right: 99%;
}

.pi-99p {
  padding: 99% !important;
}

.pti-99p {
  padding-top: 99% !important;
}

.pbi-99p {
  padding-bottom: 99% !important;
}

.pli-99p {
  padding-left: 99% !important;
}

.pri-99p {
  padding-right: 99% !important;
}

.pyi-99p {
  padding-top: 99% !important;
  padding-bottom: 99% !important;
}

.pxi-99p {
  padding-left: 99% !important;
  padding-right: 99% !important;
}

tr.p-99p > td {
  padding: 99%;
}

tr.pt-99p > td {
  padding-top: 99%;
}

tr.pb-99p > td {
  padding-bottom: 99%;
}

tr.pl-99p > td {
  padding-left: 99%;
}

tr.pr-99p > td {
  padding-right: 99%;
}

tr.py-99p > td {
  padding-top: 99%;
  padding-bottom: 99%;
}

tr.px-99p > td {
  padding-left: 99%;
  padding-right: 99%;
}

tr.pi-99p > td {
  padding: 99% !important;
}

tr.pti-99p > td {
  padding-top: 99% !important;
}

tr.pbi-99p > td {
  padding-bottom: 99% !important;
}

tr.pli-99p > td {
  padding-left: 99% !important;
}

tr.pri-99p > td {
  padding-right: 99% !important;
}

tr.pyi-99p > td {
  padding-top: 99% !important;
  padding-bottom: 99% !important;
}

tr.pxi-99p > td {
  padding-left: 99% !important;
  padding-right: 99% !important;
}

.m-100p {
  margin: 100%;
}

.mt-100p {
  margin-top: 100%;
}

.mb-100p {
  margin-bottom: 100%;
}

.ml-100p {
  margin-left: 100%;
}

.mr-100p {
  margin-right: 100%;
}

.mt--100p {
  margin-top: -100%;
}

.mb--100p {
  margin-bottom: -100%;
}

.ml--100p {
  margin-left: -100%;
}

.mr--100p {
  margin-right: -100%;
}

.my-100p {
  margin-top: 100%;
  margin-bottom: 100%;
}

.mx-100p {
  margin-left: 100%;
  margin-right: 100%;
}

.mi-100p {
  margin: 100% !important;
}

.mti-100p {
  margin-top: 100% !important;
}

.mbi-100p {
  margin-bottom: 100% !important;
}

.mli-100p {
  margin-left: 100% !important;
}

.mri-100p {
  margin-right: 100% !important;
}

.mti--100p {
  margin-top: -100% !important;
}

.mbi--100p {
  margin-bottom: -100% !important;
}

.mli--100p {
  margin-left: -100% !important;
}

.mri--100p {
  margin-right: -100% !important;
}

.myi-100p {
  margin-top: 100% !important;
  margin-bottom: 100% !important;
}

.mxi-100p {
  margin-left: 100% !important;
  margin-right: 100% !important;
}

.p-100p {
  padding: 100%;
}

.pt-100p {
  padding-top: 100%;
}

.pb-100p {
  padding-bottom: 100%;
}

.pl-100p {
  padding-left: 100%;
}

.pr-100p {
  padding-right: 100%;
}

.py-100p {
  padding-top: 100%;
  padding-bottom: 100%;
}

.px-100p {
  padding-left: 100%;
  padding-right: 100%;
}

.pi-100p {
  padding: 100% !important;
}

.pti-100p {
  padding-top: 100% !important;
}

.pbi-100p {
  padding-bottom: 100% !important;
}

.pli-100p {
  padding-left: 100% !important;
}

.pri-100p {
  padding-right: 100% !important;
}

.pyi-100p {
  padding-top: 100% !important;
  padding-bottom: 100% !important;
}

.pxi-100p {
  padding-left: 100% !important;
  padding-right: 100% !important;
}

tr.p-100p > td {
  padding: 100%;
}

tr.pt-100p > td {
  padding-top: 100%;
}

tr.pb-100p > td {
  padding-bottom: 100%;
}

tr.pl-100p > td {
  padding-left: 100%;
}

tr.pr-100p > td {
  padding-right: 100%;
}

tr.py-100p > td {
  padding-top: 100%;
  padding-bottom: 100%;
}

tr.px-100p > td {
  padding-left: 100%;
  padding-right: 100%;
}

tr.pi-100p > td {
  padding: 100% !important;
}

tr.pti-100p > td {
  padding-top: 100% !important;
}

tr.pbi-100p > td {
  padding-bottom: 100% !important;
}

tr.pli-100p > td {
  padding-left: 100% !important;
}

tr.pri-100p > td {
  padding-right: 100% !important;
}

tr.pyi-100p > td {
  padding-top: 100% !important;
  padding-bottom: 100% !important;
}

tr.pxi-100p > td {
  padding-left: 100% !important;
  padding-right: 100% !important;
}

.m-0 {
  margin: 0rem;
}

.mt-0 {
  margin-top: 0rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.ml-0 {
  margin-left: 0rem;
}

.mr-0 {
  margin-right: 0rem;
}

.mt--0 {
  margin-top: -0rem;
}

.mb--0 {
  margin-bottom: -0rem;
}

.ml--0 {
  margin-left: -0rem;
}

.mr--0 {
  margin-right: -0rem;
}

.my-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

.mx-0 {
  margin-left: 0rem;
  margin-right: 0rem;
}

.mi-0 {
  margin: 0rem !important;
}

.mti-0 {
  margin-top: 0rem !important;
}

.mbi-0 {
  margin-bottom: 0rem !important;
}

.mli-0 {
  margin-left: 0rem !important;
}

.mri-0 {
  margin-right: 0rem !important;
}

.mti--0 {
  margin-top: -0rem !important;
}

.mbi--0 {
  margin-bottom: -0rem !important;
}

.mli--0 {
  margin-left: -0rem !important;
}

.mri--0 {
  margin-right: -0rem !important;
}

.myi-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.mxi-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.p-0 {
  padding: 0rem;
}

.pt-0 {
  padding-top: 0rem;
}

.pb-0 {
  padding-bottom: 0rem;
}

.pl-0 {
  padding-left: 0rem;
}

.pr-0 {
  padding-right: 0rem;
}

.py-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.px-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}

.pt--0 {
  padding-top: -0rem;
}

.pb--0 {
  padding-bottom: -0rem;
}

.pl--0 {
  padding-left: -0rem;
}

.pr--0 {
  padding-right: -0rem;
}

.pi-0 {
  padding: 0rem !important;
}

.pti-0 {
  padding-top: 0rem !important;
}

.pbi-0 {
  padding-bottom: 0rem !important;
}

.pli-0 {
  padding-left: 0rem !important;
}

.pri-0 {
  padding-right: 0rem !important;
}

.pti--0 {
  padding-top: -0rem !important;
}

.pbi--0 {
  padding-bottom: -0rem !important;
}

.pli--0 {
  padding-left: -0rem !important;
}

.pri--0 {
  padding-right: -0rem !important;
}

.pyi-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.pxi-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.m-1 {
  margin: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mt--1 {
  margin-top: -1rem;
}

.mb--1 {
  margin-bottom: -1rem;
}

.ml--1 {
  margin-left: -1rem;
}

.mr--1 {
  margin-right: -1rem;
}

.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mx-1 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.mi-1 {
  margin: 1rem !important;
}

.mti-1 {
  margin-top: 1rem !important;
}

.mbi-1 {
  margin-bottom: 1rem !important;
}

.mli-1 {
  margin-left: 1rem !important;
}

.mri-1 {
  margin-right: 1rem !important;
}

.mti--1 {
  margin-top: -1rem !important;
}

.mbi--1 {
  margin-bottom: -1rem !important;
}

.mli--1 {
  margin-left: -1rem !important;
}

.mri--1 {
  margin-right: -1rem !important;
}

.myi-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.mxi-1 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.p-1 {
  padding: 1rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pr-1 {
  padding-right: 1rem;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.pt--1 {
  padding-top: -1rem;
}

.pb--1 {
  padding-bottom: -1rem;
}

.pl--1 {
  padding-left: -1rem;
}

.pr--1 {
  padding-right: -1rem;
}

.pi-1 {
  padding: 1rem !important;
}

.pti-1 {
  padding-top: 1rem !important;
}

.pbi-1 {
  padding-bottom: 1rem !important;
}

.pli-1 {
  padding-left: 1rem !important;
}

.pri-1 {
  padding-right: 1rem !important;
}

.pti--1 {
  padding-top: -1rem !important;
}

.pbi--1 {
  padding-bottom: -1rem !important;
}

.pli--1 {
  padding-left: -1rem !important;
}

.pri--1 {
  padding-right: -1rem !important;
}

.pyi-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.pxi-1 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.m-2 {
  margin: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.ml-2 {
  margin-left: 2rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mt--2 {
  margin-top: -2rem;
}

.mb--2 {
  margin-bottom: -2rem;
}

.ml--2 {
  margin-left: -2rem;
}

.mr--2 {
  margin-right: -2rem;
}

.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mx-2 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.mi-2 {
  margin: 2rem !important;
}

.mti-2 {
  margin-top: 2rem !important;
}

.mbi-2 {
  margin-bottom: 2rem !important;
}

.mli-2 {
  margin-left: 2rem !important;
}

.mri-2 {
  margin-right: 2rem !important;
}

.mti--2 {
  margin-top: -2rem !important;
}

.mbi--2 {
  margin-bottom: -2rem !important;
}

.mli--2 {
  margin-left: -2rem !important;
}

.mri--2 {
  margin-right: -2rem !important;
}

.myi-2 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.mxi-2 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.p-2 {
  padding: 2rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pr-2 {
  padding-right: 2rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.pt--2 {
  padding-top: -2rem;
}

.pb--2 {
  padding-bottom: -2rem;
}

.pl--2 {
  padding-left: -2rem;
}

.pr--2 {
  padding-right: -2rem;
}

.pi-2 {
  padding: 2rem !important;
}

.pti-2 {
  padding-top: 2rem !important;
}

.pbi-2 {
  padding-bottom: 2rem !important;
}

.pli-2 {
  padding-left: 2rem !important;
}

.pri-2 {
  padding-right: 2rem !important;
}

.pti--2 {
  padding-top: -2rem !important;
}

.pbi--2 {
  padding-bottom: -2rem !important;
}

.pli--2 {
  padding-left: -2rem !important;
}

.pri--2 {
  padding-right: -2rem !important;
}

.pyi-2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.pxi-2 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.m-3 {
  margin: 3rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.ml-3 {
  margin-left: 3rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mt--3 {
  margin-top: -3rem;
}

.mb--3 {
  margin-bottom: -3rem;
}

.ml--3 {
  margin-left: -3rem;
}

.mr--3 {
  margin-right: -3rem;
}

.my-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mx-3 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.mi-3 {
  margin: 3rem !important;
}

.mti-3 {
  margin-top: 3rem !important;
}

.mbi-3 {
  margin-bottom: 3rem !important;
}

.mli-3 {
  margin-left: 3rem !important;
}

.mri-3 {
  margin-right: 3rem !important;
}

.mti--3 {
  margin-top: -3rem !important;
}

.mbi--3 {
  margin-bottom: -3rem !important;
}

.mli--3 {
  margin-left: -3rem !important;
}

.mri--3 {
  margin-right: -3rem !important;
}

.myi-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mxi-3 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.p-3 {
  padding: 3rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pr-3 {
  padding-right: 3rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.pt--3 {
  padding-top: -3rem;
}

.pb--3 {
  padding-bottom: -3rem;
}

.pl--3 {
  padding-left: -3rem;
}

.pr--3 {
  padding-right: -3rem;
}

.pi-3 {
  padding: 3rem !important;
}

.pti-3 {
  padding-top: 3rem !important;
}

.pbi-3 {
  padding-bottom: 3rem !important;
}

.pli-3 {
  padding-left: 3rem !important;
}

.pri-3 {
  padding-right: 3rem !important;
}

.pti--3 {
  padding-top: -3rem !important;
}

.pbi--3 {
  padding-bottom: -3rem !important;
}

.pli--3 {
  padding-left: -3rem !important;
}

.pri--3 {
  padding-right: -3rem !important;
}

.pyi-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pxi-3 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.m-4 {
  margin: 4rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.ml-4 {
  margin-left: 4rem;
}

.mr-4 {
  margin-right: 4rem;
}

.mt--4 {
  margin-top: -4rem;
}

.mb--4 {
  margin-bottom: -4rem;
}

.ml--4 {
  margin-left: -4rem;
}

.mr--4 {
  margin-right: -4rem;
}

.my-4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.mx-4 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.mi-4 {
  margin: 4rem !important;
}

.mti-4 {
  margin-top: 4rem !important;
}

.mbi-4 {
  margin-bottom: 4rem !important;
}

.mli-4 {
  margin-left: 4rem !important;
}

.mri-4 {
  margin-right: 4rem !important;
}

.mti--4 {
  margin-top: -4rem !important;
}

.mbi--4 {
  margin-bottom: -4rem !important;
}

.mli--4 {
  margin-left: -4rem !important;
}

.mri--4 {
  margin-right: -4rem !important;
}

.myi-4 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.mxi-4 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.p-4 {
  padding: 4rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pl-4 {
  padding-left: 4rem;
}

.pr-4 {
  padding-right: 4rem;
}

.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.px-4 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.pt--4 {
  padding-top: -4rem;
}

.pb--4 {
  padding-bottom: -4rem;
}

.pl--4 {
  padding-left: -4rem;
}

.pr--4 {
  padding-right: -4rem;
}

.pi-4 {
  padding: 4rem !important;
}

.pti-4 {
  padding-top: 4rem !important;
}

.pbi-4 {
  padding-bottom: 4rem !important;
}

.pli-4 {
  padding-left: 4rem !important;
}

.pri-4 {
  padding-right: 4rem !important;
}

.pti--4 {
  padding-top: -4rem !important;
}

.pbi--4 {
  padding-bottom: -4rem !important;
}

.pli--4 {
  padding-left: -4rem !important;
}

.pri--4 {
  padding-right: -4rem !important;
}

.pyi-4 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.pxi-4 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.m-5 {
  margin: 5rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.ml-5 {
  margin-left: 5rem;
}

.mr-5 {
  margin-right: 5rem;
}

.mt--5 {
  margin-top: -5rem;
}

.mb--5 {
  margin-bottom: -5rem;
}

.ml--5 {
  margin-left: -5rem;
}

.mr--5 {
  margin-right: -5rem;
}

.my-5 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.mx-5 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.mi-5 {
  margin: 5rem !important;
}

.mti-5 {
  margin-top: 5rem !important;
}

.mbi-5 {
  margin-bottom: 5rem !important;
}

.mli-5 {
  margin-left: 5rem !important;
}

.mri-5 {
  margin-right: 5rem !important;
}

.mti--5 {
  margin-top: -5rem !important;
}

.mbi--5 {
  margin-bottom: -5rem !important;
}

.mli--5 {
  margin-left: -5rem !important;
}

.mri--5 {
  margin-right: -5rem !important;
}

.myi-5 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.mxi-5 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.p-5 {
  padding: 5rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pl-5 {
  padding-left: 5rem;
}

.pr-5 {
  padding-right: 5rem;
}

.py-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-5 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.pt--5 {
  padding-top: -5rem;
}

.pb--5 {
  padding-bottom: -5rem;
}

.pl--5 {
  padding-left: -5rem;
}

.pr--5 {
  padding-right: -5rem;
}

.pi-5 {
  padding: 5rem !important;
}

.pti-5 {
  padding-top: 5rem !important;
}

.pbi-5 {
  padding-bottom: 5rem !important;
}

.pli-5 {
  padding-left: 5rem !important;
}

.pri-5 {
  padding-right: 5rem !important;
}

.pti--5 {
  padding-top: -5rem !important;
}

.pbi--5 {
  padding-bottom: -5rem !important;
}

.pli--5 {
  padding-left: -5rem !important;
}

.pri--5 {
  padding-right: -5rem !important;
}

.pyi-5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.pxi-5 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.m-6 {
  margin: 6rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.ml-6 {
  margin-left: 6rem;
}

.mr-6 {
  margin-right: 6rem;
}

.mt--6 {
  margin-top: -6rem;
}

.mb--6 {
  margin-bottom: -6rem;
}

.ml--6 {
  margin-left: -6rem;
}

.mr--6 {
  margin-right: -6rem;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.mx-6 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.mi-6 {
  margin: 6rem !important;
}

.mti-6 {
  margin-top: 6rem !important;
}

.mbi-6 {
  margin-bottom: 6rem !important;
}

.mli-6 {
  margin-left: 6rem !important;
}

.mri-6 {
  margin-right: 6rem !important;
}

.mti--6 {
  margin-top: -6rem !important;
}

.mbi--6 {
  margin-bottom: -6rem !important;
}

.mli--6 {
  margin-left: -6rem !important;
}

.mri--6 {
  margin-right: -6rem !important;
}

.myi-6 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.mxi-6 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.p-6 {
  padding: 6rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pl-6 {
  padding-left: 6rem;
}

.pr-6 {
  padding-right: 6rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.px-6 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.pt--6 {
  padding-top: -6rem;
}

.pb--6 {
  padding-bottom: -6rem;
}

.pl--6 {
  padding-left: -6rem;
}

.pr--6 {
  padding-right: -6rem;
}

.pi-6 {
  padding: 6rem !important;
}

.pti-6 {
  padding-top: 6rem !important;
}

.pbi-6 {
  padding-bottom: 6rem !important;
}

.pli-6 {
  padding-left: 6rem !important;
}

.pri-6 {
  padding-right: 6rem !important;
}

.pti--6 {
  padding-top: -6rem !important;
}

.pbi--6 {
  padding-bottom: -6rem !important;
}

.pli--6 {
  padding-left: -6rem !important;
}

.pri--6 {
  padding-right: -6rem !important;
}

.pyi-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.pxi-6 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.m-7 {
  margin: 7rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.ml-7 {
  margin-left: 7rem;
}

.mr-7 {
  margin-right: 7rem;
}

.mt--7 {
  margin-top: -7rem;
}

.mb--7 {
  margin-bottom: -7rem;
}

.ml--7 {
  margin-left: -7rem;
}

.mr--7 {
  margin-right: -7rem;
}

.my-7 {
  margin-top: 7rem;
  margin-bottom: 7rem;
}

.mx-7 {
  margin-left: 7rem;
  margin-right: 7rem;
}

.mi-7 {
  margin: 7rem !important;
}

.mti-7 {
  margin-top: 7rem !important;
}

.mbi-7 {
  margin-bottom: 7rem !important;
}

.mli-7 {
  margin-left: 7rem !important;
}

.mri-7 {
  margin-right: 7rem !important;
}

.mti--7 {
  margin-top: -7rem !important;
}

.mbi--7 {
  margin-bottom: -7rem !important;
}

.mli--7 {
  margin-left: -7rem !important;
}

.mri--7 {
  margin-right: -7rem !important;
}

.myi-7 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.mxi-7 {
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

.p-7 {
  padding: 7rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pl-7 {
  padding-left: 7rem;
}

.pr-7 {
  padding-right: 7rem;
}

.py-7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.px-7 {
  padding-left: 7rem;
  padding-right: 7rem;
}

.pt--7 {
  padding-top: -7rem;
}

.pb--7 {
  padding-bottom: -7rem;
}

.pl--7 {
  padding-left: -7rem;
}

.pr--7 {
  padding-right: -7rem;
}

.pi-7 {
  padding: 7rem !important;
}

.pti-7 {
  padding-top: 7rem !important;
}

.pbi-7 {
  padding-bottom: 7rem !important;
}

.pli-7 {
  padding-left: 7rem !important;
}

.pri-7 {
  padding-right: 7rem !important;
}

.pti--7 {
  padding-top: -7rem !important;
}

.pbi--7 {
  padding-bottom: -7rem !important;
}

.pli--7 {
  padding-left: -7rem !important;
}

.pri--7 {
  padding-right: -7rem !important;
}

.pyi-7 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.pxi-7 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.m-8 {
  margin: 8rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.ml-8 {
  margin-left: 8rem;
}

.mr-8 {
  margin-right: 8rem;
}

.mt--8 {
  margin-top: -8rem;
}

.mb--8 {
  margin-bottom: -8rem;
}

.ml--8 {
  margin-left: -8rem;
}

.mr--8 {
  margin-right: -8rem;
}

.my-8 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.mx-8 {
  margin-left: 8rem;
  margin-right: 8rem;
}

.mi-8 {
  margin: 8rem !important;
}

.mti-8 {
  margin-top: 8rem !important;
}

.mbi-8 {
  margin-bottom: 8rem !important;
}

.mli-8 {
  margin-left: 8rem !important;
}

.mri-8 {
  margin-right: 8rem !important;
}

.mti--8 {
  margin-top: -8rem !important;
}

.mbi--8 {
  margin-bottom: -8rem !important;
}

.mli--8 {
  margin-left: -8rem !important;
}

.mri--8 {
  margin-right: -8rem !important;
}

.myi-8 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.mxi-8 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.p-8 {
  padding: 8rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pl-8 {
  padding-left: 8rem;
}

.pr-8 {
  padding-right: 8rem;
}

.py-8 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.px-8 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.pt--8 {
  padding-top: -8rem;
}

.pb--8 {
  padding-bottom: -8rem;
}

.pl--8 {
  padding-left: -8rem;
}

.pr--8 {
  padding-right: -8rem;
}

.pi-8 {
  padding: 8rem !important;
}

.pti-8 {
  padding-top: 8rem !important;
}

.pbi-8 {
  padding-bottom: 8rem !important;
}

.pli-8 {
  padding-left: 8rem !important;
}

.pri-8 {
  padding-right: 8rem !important;
}

.pti--8 {
  padding-top: -8rem !important;
}

.pbi--8 {
  padding-bottom: -8rem !important;
}

.pli--8 {
  padding-left: -8rem !important;
}

.pri--8 {
  padding-right: -8rem !important;
}

.pyi-8 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.pxi-8 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.m-9 {
  margin: 9rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.ml-9 {
  margin-left: 9rem;
}

.mr-9 {
  margin-right: 9rem;
}

.mt--9 {
  margin-top: -9rem;
}

.mb--9 {
  margin-bottom: -9rem;
}

.ml--9 {
  margin-left: -9rem;
}

.mr--9 {
  margin-right: -9rem;
}

.my-9 {
  margin-top: 9rem;
  margin-bottom: 9rem;
}

.mx-9 {
  margin-left: 9rem;
  margin-right: 9rem;
}

.mi-9 {
  margin: 9rem !important;
}

.mti-9 {
  margin-top: 9rem !important;
}

.mbi-9 {
  margin-bottom: 9rem !important;
}

.mli-9 {
  margin-left: 9rem !important;
}

.mri-9 {
  margin-right: 9rem !important;
}

.mti--9 {
  margin-top: -9rem !important;
}

.mbi--9 {
  margin-bottom: -9rem !important;
}

.mli--9 {
  margin-left: -9rem !important;
}

.mri--9 {
  margin-right: -9rem !important;
}

.myi-9 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.mxi-9 {
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}

.p-9 {
  padding: 9rem;
}

.pt-9 {
  padding-top: 9rem;
}

.pb-9 {
  padding-bottom: 9rem;
}

.pl-9 {
  padding-left: 9rem;
}

.pr-9 {
  padding-right: 9rem;
}

.py-9 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

.px-9 {
  padding-left: 9rem;
  padding-right: 9rem;
}

.pt--9 {
  padding-top: -9rem;
}

.pb--9 {
  padding-bottom: -9rem;
}

.pl--9 {
  padding-left: -9rem;
}

.pr--9 {
  padding-right: -9rem;
}

.pi-9 {
  padding: 9rem !important;
}

.pti-9 {
  padding-top: 9rem !important;
}

.pbi-9 {
  padding-bottom: 9rem !important;
}

.pli-9 {
  padding-left: 9rem !important;
}

.pri-9 {
  padding-right: 9rem !important;
}

.pti--9 {
  padding-top: -9rem !important;
}

.pbi--9 {
  padding-bottom: -9rem !important;
}

.pli--9 {
  padding-left: -9rem !important;
}

.pri--9 {
  padding-right: -9rem !important;
}

.pyi-9 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.pxi-9 {
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}

.m-10 {
  margin: 10rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.ml-10 {
  margin-left: 10rem;
}

.mr-10 {
  margin-right: 10rem;
}

.mt--10 {
  margin-top: -10rem;
}

.mb--10 {
  margin-bottom: -10rem;
}

.ml--10 {
  margin-left: -10rem;
}

.mr--10 {
  margin-right: -10rem;
}

.my-10 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.mx-10 {
  margin-left: 10rem;
  margin-right: 10rem;
}

.mi-10 {
  margin: 10rem !important;
}

.mti-10 {
  margin-top: 10rem !important;
}

.mbi-10 {
  margin-bottom: 10rem !important;
}

.mli-10 {
  margin-left: 10rem !important;
}

.mri-10 {
  margin-right: 10rem !important;
}

.mti--10 {
  margin-top: -10rem !important;
}

.mbi--10 {
  margin-bottom: -10rem !important;
}

.mli--10 {
  margin-left: -10rem !important;
}

.mri--10 {
  margin-right: -10rem !important;
}

.myi-10 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.mxi-10 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.p-10 {
  padding: 10rem;
}

.pt-10 {
  padding-top: 10rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

.pl-10 {
  padding-left: 10rem;
}

.pr-10 {
  padding-right: 10rem;
}

.py-10 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.px-10 {
  padding-left: 10rem;
  padding-right: 10rem;
}

.pt--10 {
  padding-top: -10rem;
}

.pb--10 {
  padding-bottom: -10rem;
}

.pl--10 {
  padding-left: -10rem;
}

.pr--10 {
  padding-right: -10rem;
}

.pi-10 {
  padding: 10rem !important;
}

.pti-10 {
  padding-top: 10rem !important;
}

.pbi-10 {
  padding-bottom: 10rem !important;
}

.pli-10 {
  padding-left: 10rem !important;
}

.pri-10 {
  padding-right: 10rem !important;
}

.pti--10 {
  padding-top: -10rem !important;
}

.pbi--10 {
  padding-bottom: -10rem !important;
}

.pli--10 {
  padding-left: -10rem !important;
}

.pri--10 {
  padding-right: -10rem !important;
}

.pyi-10 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.pxi-10 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.m-11 {
  margin: 11rem;
}

.mt-11 {
  margin-top: 11rem;
}

.mb-11 {
  margin-bottom: 11rem;
}

.ml-11 {
  margin-left: 11rem;
}

.mr-11 {
  margin-right: 11rem;
}

.mt--11 {
  margin-top: -11rem;
}

.mb--11 {
  margin-bottom: -11rem;
}

.ml--11 {
  margin-left: -11rem;
}

.mr--11 {
  margin-right: -11rem;
}

.my-11 {
  margin-top: 11rem;
  margin-bottom: 11rem;
}

.mx-11 {
  margin-left: 11rem;
  margin-right: 11rem;
}

.mi-11 {
  margin: 11rem !important;
}

.mti-11 {
  margin-top: 11rem !important;
}

.mbi-11 {
  margin-bottom: 11rem !important;
}

.mli-11 {
  margin-left: 11rem !important;
}

.mri-11 {
  margin-right: 11rem !important;
}

.mti--11 {
  margin-top: -11rem !important;
}

.mbi--11 {
  margin-bottom: -11rem !important;
}

.mli--11 {
  margin-left: -11rem !important;
}

.mri--11 {
  margin-right: -11rem !important;
}

.myi-11 {
  margin-top: 11rem !important;
  margin-bottom: 11rem !important;
}

.mxi-11 {
  margin-left: 11rem !important;
  margin-right: 11rem !important;
}

.p-11 {
  padding: 11rem;
}

.pt-11 {
  padding-top: 11rem;
}

.pb-11 {
  padding-bottom: 11rem;
}

.pl-11 {
  padding-left: 11rem;
}

.pr-11 {
  padding-right: 11rem;
}

.py-11 {
  padding-top: 11rem;
  padding-bottom: 11rem;
}

.px-11 {
  padding-left: 11rem;
  padding-right: 11rem;
}

.pt--11 {
  padding-top: -11rem;
}

.pb--11 {
  padding-bottom: -11rem;
}

.pl--11 {
  padding-left: -11rem;
}

.pr--11 {
  padding-right: -11rem;
}

.pi-11 {
  padding: 11rem !important;
}

.pti-11 {
  padding-top: 11rem !important;
}

.pbi-11 {
  padding-bottom: 11rem !important;
}

.pli-11 {
  padding-left: 11rem !important;
}

.pri-11 {
  padding-right: 11rem !important;
}

.pti--11 {
  padding-top: -11rem !important;
}

.pbi--11 {
  padding-bottom: -11rem !important;
}

.pli--11 {
  padding-left: -11rem !important;
}

.pri--11 {
  padding-right: -11rem !important;
}

.pyi-11 {
  padding-top: 11rem !important;
  padding-bottom: 11rem !important;
}

.pxi-11 {
  padding-left: 11rem !important;
  padding-right: 11rem !important;
}

.m-12 {
  margin: 12rem;
}

.mt-12 {
  margin-top: 12rem;
}

.mb-12 {
  margin-bottom: 12rem;
}

.ml-12 {
  margin-left: 12rem;
}

.mr-12 {
  margin-right: 12rem;
}

.mt--12 {
  margin-top: -12rem;
}

.mb--12 {
  margin-bottom: -12rem;
}

.ml--12 {
  margin-left: -12rem;
}

.mr--12 {
  margin-right: -12rem;
}

.my-12 {
  margin-top: 12rem;
  margin-bottom: 12rem;
}

.mx-12 {
  margin-left: 12rem;
  margin-right: 12rem;
}

.mi-12 {
  margin: 12rem !important;
}

.mti-12 {
  margin-top: 12rem !important;
}

.mbi-12 {
  margin-bottom: 12rem !important;
}

.mli-12 {
  margin-left: 12rem !important;
}

.mri-12 {
  margin-right: 12rem !important;
}

.mti--12 {
  margin-top: -12rem !important;
}

.mbi--12 {
  margin-bottom: -12rem !important;
}

.mli--12 {
  margin-left: -12rem !important;
}

.mri--12 {
  margin-right: -12rem !important;
}

.myi-12 {
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}

.mxi-12 {
  margin-left: 12rem !important;
  margin-right: 12rem !important;
}

.p-12 {
  padding: 12rem;
}

.pt-12 {
  padding-top: 12rem;
}

.pb-12 {
  padding-bottom: 12rem;
}

.pl-12 {
  padding-left: 12rem;
}

.pr-12 {
  padding-right: 12rem;
}

.py-12 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.px-12 {
  padding-left: 12rem;
  padding-right: 12rem;
}

.pt--12 {
  padding-top: -12rem;
}

.pb--12 {
  padding-bottom: -12rem;
}

.pl--12 {
  padding-left: -12rem;
}

.pr--12 {
  padding-right: -12rem;
}

.pi-12 {
  padding: 12rem !important;
}

.pti-12 {
  padding-top: 12rem !important;
}

.pbi-12 {
  padding-bottom: 12rem !important;
}

.pli-12 {
  padding-left: 12rem !important;
}

.pri-12 {
  padding-right: 12rem !important;
}

.pti--12 {
  padding-top: -12rem !important;
}

.pbi--12 {
  padding-bottom: -12rem !important;
}

.pli--12 {
  padding-left: -12rem !important;
}

.pri--12 {
  padding-right: -12rem !important;
}

.pyi-12 {
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}

.pxi-12 {
  padding-left: 12rem !important;
  padding-right: 12rem !important;
}

.m-13 {
  margin: 13rem;
}

.mt-13 {
  margin-top: 13rem;
}

.mb-13 {
  margin-bottom: 13rem;
}

.ml-13 {
  margin-left: 13rem;
}

.mr-13 {
  margin-right: 13rem;
}

.mt--13 {
  margin-top: -13rem;
}

.mb--13 {
  margin-bottom: -13rem;
}

.ml--13 {
  margin-left: -13rem;
}

.mr--13 {
  margin-right: -13rem;
}

.my-13 {
  margin-top: 13rem;
  margin-bottom: 13rem;
}

.mx-13 {
  margin-left: 13rem;
  margin-right: 13rem;
}

.mi-13 {
  margin: 13rem !important;
}

.mti-13 {
  margin-top: 13rem !important;
}

.mbi-13 {
  margin-bottom: 13rem !important;
}

.mli-13 {
  margin-left: 13rem !important;
}

.mri-13 {
  margin-right: 13rem !important;
}

.mti--13 {
  margin-top: -13rem !important;
}

.mbi--13 {
  margin-bottom: -13rem !important;
}

.mli--13 {
  margin-left: -13rem !important;
}

.mri--13 {
  margin-right: -13rem !important;
}

.myi-13 {
  margin-top: 13rem !important;
  margin-bottom: 13rem !important;
}

.mxi-13 {
  margin-left: 13rem !important;
  margin-right: 13rem !important;
}

.p-13 {
  padding: 13rem;
}

.pt-13 {
  padding-top: 13rem;
}

.pb-13 {
  padding-bottom: 13rem;
}

.pl-13 {
  padding-left: 13rem;
}

.pr-13 {
  padding-right: 13rem;
}

.py-13 {
  padding-top: 13rem;
  padding-bottom: 13rem;
}

.px-13 {
  padding-left: 13rem;
  padding-right: 13rem;
}

.pt--13 {
  padding-top: -13rem;
}

.pb--13 {
  padding-bottom: -13rem;
}

.pl--13 {
  padding-left: -13rem;
}

.pr--13 {
  padding-right: -13rem;
}

.pi-13 {
  padding: 13rem !important;
}

.pti-13 {
  padding-top: 13rem !important;
}

.pbi-13 {
  padding-bottom: 13rem !important;
}

.pli-13 {
  padding-left: 13rem !important;
}

.pri-13 {
  padding-right: 13rem !important;
}

.pti--13 {
  padding-top: -13rem !important;
}

.pbi--13 {
  padding-bottom: -13rem !important;
}

.pli--13 {
  padding-left: -13rem !important;
}

.pri--13 {
  padding-right: -13rem !important;
}

.pyi-13 {
  padding-top: 13rem !important;
  padding-bottom: 13rem !important;
}

.pxi-13 {
  padding-left: 13rem !important;
  padding-right: 13rem !important;
}

.m-14 {
  margin: 14rem;
}

.mt-14 {
  margin-top: 14rem;
}

.mb-14 {
  margin-bottom: 14rem;
}

.ml-14 {
  margin-left: 14rem;
}

.mr-14 {
  margin-right: 14rem;
}

.mt--14 {
  margin-top: -14rem;
}

.mb--14 {
  margin-bottom: -14rem;
}

.ml--14 {
  margin-left: -14rem;
}

.mr--14 {
  margin-right: -14rem;
}

.my-14 {
  margin-top: 14rem;
  margin-bottom: 14rem;
}

.mx-14 {
  margin-left: 14rem;
  margin-right: 14rem;
}

.mi-14 {
  margin: 14rem !important;
}

.mti-14 {
  margin-top: 14rem !important;
}

.mbi-14 {
  margin-bottom: 14rem !important;
}

.mli-14 {
  margin-left: 14rem !important;
}

.mri-14 {
  margin-right: 14rem !important;
}

.mti--14 {
  margin-top: -14rem !important;
}

.mbi--14 {
  margin-bottom: -14rem !important;
}

.mli--14 {
  margin-left: -14rem !important;
}

.mri--14 {
  margin-right: -14rem !important;
}

.myi-14 {
  margin-top: 14rem !important;
  margin-bottom: 14rem !important;
}

.mxi-14 {
  margin-left: 14rem !important;
  margin-right: 14rem !important;
}

.p-14 {
  padding: 14rem;
}

.pt-14 {
  padding-top: 14rem;
}

.pb-14 {
  padding-bottom: 14rem;
}

.pl-14 {
  padding-left: 14rem;
}

.pr-14 {
  padding-right: 14rem;
}

.py-14 {
  padding-top: 14rem;
  padding-bottom: 14rem;
}

.px-14 {
  padding-left: 14rem;
  padding-right: 14rem;
}

.pt--14 {
  padding-top: -14rem;
}

.pb--14 {
  padding-bottom: -14rem;
}

.pl--14 {
  padding-left: -14rem;
}

.pr--14 {
  padding-right: -14rem;
}

.pi-14 {
  padding: 14rem !important;
}

.pti-14 {
  padding-top: 14rem !important;
}

.pbi-14 {
  padding-bottom: 14rem !important;
}

.pli-14 {
  padding-left: 14rem !important;
}

.pri-14 {
  padding-right: 14rem !important;
}

.pti--14 {
  padding-top: -14rem !important;
}

.pbi--14 {
  padding-bottom: -14rem !important;
}

.pli--14 {
  padding-left: -14rem !important;
}

.pri--14 {
  padding-right: -14rem !important;
}

.pyi-14 {
  padding-top: 14rem !important;
  padding-bottom: 14rem !important;
}

.pxi-14 {
  padding-left: 14rem !important;
  padding-right: 14rem !important;
}

.m-15 {
  margin: 15rem;
}

.mt-15 {
  margin-top: 15rem;
}

.mb-15 {
  margin-bottom: 15rem;
}

.ml-15 {
  margin-left: 15rem;
}

.mr-15 {
  margin-right: 15rem;
}

.mt--15 {
  margin-top: -15rem;
}

.mb--15 {
  margin-bottom: -15rem;
}

.ml--15 {
  margin-left: -15rem;
}

.mr--15 {
  margin-right: -15rem;
}

.my-15 {
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.mx-15 {
  margin-left: 15rem;
  margin-right: 15rem;
}

.mi-15 {
  margin: 15rem !important;
}

.mti-15 {
  margin-top: 15rem !important;
}

.mbi-15 {
  margin-bottom: 15rem !important;
}

.mli-15 {
  margin-left: 15rem !important;
}

.mri-15 {
  margin-right: 15rem !important;
}

.mti--15 {
  margin-top: -15rem !important;
}

.mbi--15 {
  margin-bottom: -15rem !important;
}

.mli--15 {
  margin-left: -15rem !important;
}

.mri--15 {
  margin-right: -15rem !important;
}

.myi-15 {
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}

.mxi-15 {
  margin-left: 15rem !important;
  margin-right: 15rem !important;
}

.p-15 {
  padding: 15rem;
}

.pt-15 {
  padding-top: 15rem;
}

.pb-15 {
  padding-bottom: 15rem;
}

.pl-15 {
  padding-left: 15rem;
}

.pr-15 {
  padding-right: 15rem;
}

.py-15 {
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.px-15 {
  padding-left: 15rem;
  padding-right: 15rem;
}

.pt--15 {
  padding-top: -15rem;
}

.pb--15 {
  padding-bottom: -15rem;
}

.pl--15 {
  padding-left: -15rem;
}

.pr--15 {
  padding-right: -15rem;
}

.pi-15 {
  padding: 15rem !important;
}

.pti-15 {
  padding-top: 15rem !important;
}

.pbi-15 {
  padding-bottom: 15rem !important;
}

.pli-15 {
  padding-left: 15rem !important;
}

.pri-15 {
  padding-right: 15rem !important;
}

.pti--15 {
  padding-top: -15rem !important;
}

.pbi--15 {
  padding-bottom: -15rem !important;
}

.pli--15 {
  padding-left: -15rem !important;
}

.pri--15 {
  padding-right: -15rem !important;
}

.pyi-15 {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

.pxi-15 {
  padding-left: 15rem !important;
  padding-right: 15rem !important;
}

.m-16 {
  margin: 16rem;
}

.mt-16 {
  margin-top: 16rem;
}

.mb-16 {
  margin-bottom: 16rem;
}

.ml-16 {
  margin-left: 16rem;
}

.mr-16 {
  margin-right: 16rem;
}

.mt--16 {
  margin-top: -16rem;
}

.mb--16 {
  margin-bottom: -16rem;
}

.ml--16 {
  margin-left: -16rem;
}

.mr--16 {
  margin-right: -16rem;
}

.my-16 {
  margin-top: 16rem;
  margin-bottom: 16rem;
}

.mx-16 {
  margin-left: 16rem;
  margin-right: 16rem;
}

.mi-16 {
  margin: 16rem !important;
}

.mti-16 {
  margin-top: 16rem !important;
}

.mbi-16 {
  margin-bottom: 16rem !important;
}

.mli-16 {
  margin-left: 16rem !important;
}

.mri-16 {
  margin-right: 16rem !important;
}

.mti--16 {
  margin-top: -16rem !important;
}

.mbi--16 {
  margin-bottom: -16rem !important;
}

.mli--16 {
  margin-left: -16rem !important;
}

.mri--16 {
  margin-right: -16rem !important;
}

.myi-16 {
  margin-top: 16rem !important;
  margin-bottom: 16rem !important;
}

.mxi-16 {
  margin-left: 16rem !important;
  margin-right: 16rem !important;
}

.p-16 {
  padding: 16rem;
}

.pt-16 {
  padding-top: 16rem;
}

.pb-16 {
  padding-bottom: 16rem;
}

.pl-16 {
  padding-left: 16rem;
}

.pr-16 {
  padding-right: 16rem;
}

.py-16 {
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.px-16 {
  padding-left: 16rem;
  padding-right: 16rem;
}

.pt--16 {
  padding-top: -16rem;
}

.pb--16 {
  padding-bottom: -16rem;
}

.pl--16 {
  padding-left: -16rem;
}

.pr--16 {
  padding-right: -16rem;
}

.pi-16 {
  padding: 16rem !important;
}

.pti-16 {
  padding-top: 16rem !important;
}

.pbi-16 {
  padding-bottom: 16rem !important;
}

.pli-16 {
  padding-left: 16rem !important;
}

.pri-16 {
  padding-right: 16rem !important;
}

.pti--16 {
  padding-top: -16rem !important;
}

.pbi--16 {
  padding-bottom: -16rem !important;
}

.pli--16 {
  padding-left: -16rem !important;
}

.pri--16 {
  padding-right: -16rem !important;
}

.pyi-16 {
  padding-top: 16rem !important;
  padding-bottom: 16rem !important;
}

.pxi-16 {
  padding-left: 16rem !important;
  padding-right: 16rem !important;
}

.m-17 {
  margin: 17rem;
}

.mt-17 {
  margin-top: 17rem;
}

.mb-17 {
  margin-bottom: 17rem;
}

.ml-17 {
  margin-left: 17rem;
}

.mr-17 {
  margin-right: 17rem;
}

.mt--17 {
  margin-top: -17rem;
}

.mb--17 {
  margin-bottom: -17rem;
}

.ml--17 {
  margin-left: -17rem;
}

.mr--17 {
  margin-right: -17rem;
}

.my-17 {
  margin-top: 17rem;
  margin-bottom: 17rem;
}

.mx-17 {
  margin-left: 17rem;
  margin-right: 17rem;
}

.mi-17 {
  margin: 17rem !important;
}

.mti-17 {
  margin-top: 17rem !important;
}

.mbi-17 {
  margin-bottom: 17rem !important;
}

.mli-17 {
  margin-left: 17rem !important;
}

.mri-17 {
  margin-right: 17rem !important;
}

.mti--17 {
  margin-top: -17rem !important;
}

.mbi--17 {
  margin-bottom: -17rem !important;
}

.mli--17 {
  margin-left: -17rem !important;
}

.mri--17 {
  margin-right: -17rem !important;
}

.myi-17 {
  margin-top: 17rem !important;
  margin-bottom: 17rem !important;
}

.mxi-17 {
  margin-left: 17rem !important;
  margin-right: 17rem !important;
}

.p-17 {
  padding: 17rem;
}

.pt-17 {
  padding-top: 17rem;
}

.pb-17 {
  padding-bottom: 17rem;
}

.pl-17 {
  padding-left: 17rem;
}

.pr-17 {
  padding-right: 17rem;
}

.py-17 {
  padding-top: 17rem;
  padding-bottom: 17rem;
}

.px-17 {
  padding-left: 17rem;
  padding-right: 17rem;
}

.pt--17 {
  padding-top: -17rem;
}

.pb--17 {
  padding-bottom: -17rem;
}

.pl--17 {
  padding-left: -17rem;
}

.pr--17 {
  padding-right: -17rem;
}

.pi-17 {
  padding: 17rem !important;
}

.pti-17 {
  padding-top: 17rem !important;
}

.pbi-17 {
  padding-bottom: 17rem !important;
}

.pli-17 {
  padding-left: 17rem !important;
}

.pri-17 {
  padding-right: 17rem !important;
}

.pti--17 {
  padding-top: -17rem !important;
}

.pbi--17 {
  padding-bottom: -17rem !important;
}

.pli--17 {
  padding-left: -17rem !important;
}

.pri--17 {
  padding-right: -17rem !important;
}

.pyi-17 {
  padding-top: 17rem !important;
  padding-bottom: 17rem !important;
}

.pxi-17 {
  padding-left: 17rem !important;
  padding-right: 17rem !important;
}

.m-18 {
  margin: 18rem;
}

.mt-18 {
  margin-top: 18rem;
}

.mb-18 {
  margin-bottom: 18rem;
}

.ml-18 {
  margin-left: 18rem;
}

.mr-18 {
  margin-right: 18rem;
}

.mt--18 {
  margin-top: -18rem;
}

.mb--18 {
  margin-bottom: -18rem;
}

.ml--18 {
  margin-left: -18rem;
}

.mr--18 {
  margin-right: -18rem;
}

.my-18 {
  margin-top: 18rem;
  margin-bottom: 18rem;
}

.mx-18 {
  margin-left: 18rem;
  margin-right: 18rem;
}

.mi-18 {
  margin: 18rem !important;
}

.mti-18 {
  margin-top: 18rem !important;
}

.mbi-18 {
  margin-bottom: 18rem !important;
}

.mli-18 {
  margin-left: 18rem !important;
}

.mri-18 {
  margin-right: 18rem !important;
}

.mti--18 {
  margin-top: -18rem !important;
}

.mbi--18 {
  margin-bottom: -18rem !important;
}

.mli--18 {
  margin-left: -18rem !important;
}

.mri--18 {
  margin-right: -18rem !important;
}

.myi-18 {
  margin-top: 18rem !important;
  margin-bottom: 18rem !important;
}

.mxi-18 {
  margin-left: 18rem !important;
  margin-right: 18rem !important;
}

.p-18 {
  padding: 18rem;
}

.pt-18 {
  padding-top: 18rem;
}

.pb-18 {
  padding-bottom: 18rem;
}

.pl-18 {
  padding-left: 18rem;
}

.pr-18 {
  padding-right: 18rem;
}

.py-18 {
  padding-top: 18rem;
  padding-bottom: 18rem;
}

.px-18 {
  padding-left: 18rem;
  padding-right: 18rem;
}

.pt--18 {
  padding-top: -18rem;
}

.pb--18 {
  padding-bottom: -18rem;
}

.pl--18 {
  padding-left: -18rem;
}

.pr--18 {
  padding-right: -18rem;
}

.pi-18 {
  padding: 18rem !important;
}

.pti-18 {
  padding-top: 18rem !important;
}

.pbi-18 {
  padding-bottom: 18rem !important;
}

.pli-18 {
  padding-left: 18rem !important;
}

.pri-18 {
  padding-right: 18rem !important;
}

.pti--18 {
  padding-top: -18rem !important;
}

.pbi--18 {
  padding-bottom: -18rem !important;
}

.pli--18 {
  padding-left: -18rem !important;
}

.pri--18 {
  padding-right: -18rem !important;
}

.pyi-18 {
  padding-top: 18rem !important;
  padding-bottom: 18rem !important;
}

.pxi-18 {
  padding-left: 18rem !important;
  padding-right: 18rem !important;
}

.m-19 {
  margin: 19rem;
}

.mt-19 {
  margin-top: 19rem;
}

.mb-19 {
  margin-bottom: 19rem;
}

.ml-19 {
  margin-left: 19rem;
}

.mr-19 {
  margin-right: 19rem;
}

.mt--19 {
  margin-top: -19rem;
}

.mb--19 {
  margin-bottom: -19rem;
}

.ml--19 {
  margin-left: -19rem;
}

.mr--19 {
  margin-right: -19rem;
}

.my-19 {
  margin-top: 19rem;
  margin-bottom: 19rem;
}

.mx-19 {
  margin-left: 19rem;
  margin-right: 19rem;
}

.mi-19 {
  margin: 19rem !important;
}

.mti-19 {
  margin-top: 19rem !important;
}

.mbi-19 {
  margin-bottom: 19rem !important;
}

.mli-19 {
  margin-left: 19rem !important;
}

.mri-19 {
  margin-right: 19rem !important;
}

.mti--19 {
  margin-top: -19rem !important;
}

.mbi--19 {
  margin-bottom: -19rem !important;
}

.mli--19 {
  margin-left: -19rem !important;
}

.mri--19 {
  margin-right: -19rem !important;
}

.myi-19 {
  margin-top: 19rem !important;
  margin-bottom: 19rem !important;
}

.mxi-19 {
  margin-left: 19rem !important;
  margin-right: 19rem !important;
}

.p-19 {
  padding: 19rem;
}

.pt-19 {
  padding-top: 19rem;
}

.pb-19 {
  padding-bottom: 19rem;
}

.pl-19 {
  padding-left: 19rem;
}

.pr-19 {
  padding-right: 19rem;
}

.py-19 {
  padding-top: 19rem;
  padding-bottom: 19rem;
}

.px-19 {
  padding-left: 19rem;
  padding-right: 19rem;
}

.pt--19 {
  padding-top: -19rem;
}

.pb--19 {
  padding-bottom: -19rem;
}

.pl--19 {
  padding-left: -19rem;
}

.pr--19 {
  padding-right: -19rem;
}

.pi-19 {
  padding: 19rem !important;
}

.pti-19 {
  padding-top: 19rem !important;
}

.pbi-19 {
  padding-bottom: 19rem !important;
}

.pli-19 {
  padding-left: 19rem !important;
}

.pri-19 {
  padding-right: 19rem !important;
}

.pti--19 {
  padding-top: -19rem !important;
}

.pbi--19 {
  padding-bottom: -19rem !important;
}

.pli--19 {
  padding-left: -19rem !important;
}

.pri--19 {
  padding-right: -19rem !important;
}

.pyi-19 {
  padding-top: 19rem !important;
  padding-bottom: 19rem !important;
}

.pxi-19 {
  padding-left: 19rem !important;
  padding-right: 19rem !important;
}

.m-20 {
  margin: 20rem;
}

.mt-20 {
  margin-top: 20rem;
}

.mb-20 {
  margin-bottom: 20rem;
}

.ml-20 {
  margin-left: 20rem;
}

.mr-20 {
  margin-right: 20rem;
}

.mt--20 {
  margin-top: -20rem;
}

.mb--20 {
  margin-bottom: -20rem;
}

.ml--20 {
  margin-left: -20rem;
}

.mr--20 {
  margin-right: -20rem;
}

.my-20 {
  margin-top: 20rem;
  margin-bottom: 20rem;
}

.mx-20 {
  margin-left: 20rem;
  margin-right: 20rem;
}

.mi-20 {
  margin: 20rem !important;
}

.mti-20 {
  margin-top: 20rem !important;
}

.mbi-20 {
  margin-bottom: 20rem !important;
}

.mli-20 {
  margin-left: 20rem !important;
}

.mri-20 {
  margin-right: 20rem !important;
}

.mti--20 {
  margin-top: -20rem !important;
}

.mbi--20 {
  margin-bottom: -20rem !important;
}

.mli--20 {
  margin-left: -20rem !important;
}

.mri--20 {
  margin-right: -20rem !important;
}

.myi-20 {
  margin-top: 20rem !important;
  margin-bottom: 20rem !important;
}

.mxi-20 {
  margin-left: 20rem !important;
  margin-right: 20rem !important;
}

.p-20 {
  padding: 20rem;
}

.pt-20 {
  padding-top: 20rem;
}

.pb-20 {
  padding-bottom: 20rem;
}

.pl-20 {
  padding-left: 20rem;
}

.pr-20 {
  padding-right: 20rem;
}

.py-20 {
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.px-20 {
  padding-left: 20rem;
  padding-right: 20rem;
}

.pt--20 {
  padding-top: -20rem;
}

.pb--20 {
  padding-bottom: -20rem;
}

.pl--20 {
  padding-left: -20rem;
}

.pr--20 {
  padding-right: -20rem;
}

.pi-20 {
  padding: 20rem !important;
}

.pti-20 {
  padding-top: 20rem !important;
}

.pbi-20 {
  padding-bottom: 20rem !important;
}

.pli-20 {
  padding-left: 20rem !important;
}

.pri-20 {
  padding-right: 20rem !important;
}

.pti--20 {
  padding-top: -20rem !important;
}

.pbi--20 {
  padding-bottom: -20rem !important;
}

.pli--20 {
  padding-left: -20rem !important;
}

.pri--20 {
  padding-right: -20rem !important;
}

.pyi-20 {
  padding-top: 20rem !important;
  padding-bottom: 20rem !important;
}

.pxi-20 {
  padding-left: 20rem !important;
  padding-right: 20rem !important;
}

.w-0px {
  width: 0px;
}

.h-0px {
  height: 0px;
}

.wi-0px {
  width: 0px !important;
}

.hi-0px {
  height: 0px !important;
}

.w-max-0px {
  max-width: 0px;
}

.w-min-0px {
  min-width: 0px;
}

.t-0px {
  top: 0px;
}

.l-0px {
  left: 0px;
}

.r-0px {
  right: 0px;
}

.b-0px {
  bottom: 0px;
}

.ti-0px {
  top: 0px !important;
}

.li-0px {
  left: 0px !important;
}

.ri-0px {
  right: 0px !important;
}

.bi-0px {
  bottom: 0px !important;
}

.w-1px {
  width: 1px;
}

.h-1px {
  height: 1px;
}

.wi-1px {
  width: 1px !important;
}

.hi-1px {
  height: 1px !important;
}

.w-max-1px {
  max-width: 1px;
}

.w-min-1px {
  min-width: 1px;
}

.t-1px {
  top: 1px;
}

.l-1px {
  left: 1px;
}

.r-1px {
  right: 1px;
}

.b-1px {
  bottom: 1px;
}

.ti-1px {
  top: 1px !important;
}

.li-1px {
  left: 1px !important;
}

.ri-1px {
  right: 1px !important;
}

.bi-1px {
  bottom: 1px !important;
}

.w-2px {
  width: 2px;
}

.h-2px {
  height: 2px;
}

.wi-2px {
  width: 2px !important;
}

.hi-2px {
  height: 2px !important;
}

.w-max-2px {
  max-width: 2px;
}

.w-min-2px {
  min-width: 2px;
}

.t-2px {
  top: 2px;
}

.l-2px {
  left: 2px;
}

.r-2px {
  right: 2px;
}

.b-2px {
  bottom: 2px;
}

.ti-2px {
  top: 2px !important;
}

.li-2px {
  left: 2px !important;
}

.ri-2px {
  right: 2px !important;
}

.bi-2px {
  bottom: 2px !important;
}

.w-3px {
  width: 3px;
}

.h-3px {
  height: 3px;
}

.wi-3px {
  width: 3px !important;
}

.hi-3px {
  height: 3px !important;
}

.w-max-3px {
  max-width: 3px;
}

.w-min-3px {
  min-width: 3px;
}

.t-3px {
  top: 3px;
}

.l-3px {
  left: 3px;
}

.r-3px {
  right: 3px;
}

.b-3px {
  bottom: 3px;
}

.ti-3px {
  top: 3px !important;
}

.li-3px {
  left: 3px !important;
}

.ri-3px {
  right: 3px !important;
}

.bi-3px {
  bottom: 3px !important;
}

.w-4px {
  width: 4px;
}

.h-4px {
  height: 4px;
}

.wi-4px {
  width: 4px !important;
}

.hi-4px {
  height: 4px !important;
}

.w-max-4px {
  max-width: 4px;
}

.w-min-4px {
  min-width: 4px;
}

.t-4px {
  top: 4px;
}

.l-4px {
  left: 4px;
}

.r-4px {
  right: 4px;
}

.b-4px {
  bottom: 4px;
}

.ti-4px {
  top: 4px !important;
}

.li-4px {
  left: 4px !important;
}

.ri-4px {
  right: 4px !important;
}

.bi-4px {
  bottom: 4px !important;
}

.w-5px {
  width: 5px;
}

.h-5px {
  height: 5px;
}

.wi-5px {
  width: 5px !important;
}

.hi-5px {
  height: 5px !important;
}

.w-max-5px {
  max-width: 5px;
}

.w-min-5px {
  min-width: 5px;
}

.t-5px {
  top: 5px;
}

.l-5px {
  left: 5px;
}

.r-5px {
  right: 5px;
}

.b-5px {
  bottom: 5px;
}

.ti-5px {
  top: 5px !important;
}

.li-5px {
  left: 5px !important;
}

.ri-5px {
  right: 5px !important;
}

.bi-5px {
  bottom: 5px !important;
}

.w-6px {
  width: 6px;
}

.h-6px {
  height: 6px;
}

.wi-6px {
  width: 6px !important;
}

.hi-6px {
  height: 6px !important;
}

.w-max-6px {
  max-width: 6px;
}

.w-min-6px {
  min-width: 6px;
}

.t-6px {
  top: 6px;
}

.l-6px {
  left: 6px;
}

.r-6px {
  right: 6px;
}

.b-6px {
  bottom: 6px;
}

.ti-6px {
  top: 6px !important;
}

.li-6px {
  left: 6px !important;
}

.ri-6px {
  right: 6px !important;
}

.bi-6px {
  bottom: 6px !important;
}

.w-7px {
  width: 7px;
}

.h-7px {
  height: 7px;
}

.wi-7px {
  width: 7px !important;
}

.hi-7px {
  height: 7px !important;
}

.w-max-7px {
  max-width: 7px;
}

.w-min-7px {
  min-width: 7px;
}

.t-7px {
  top: 7px;
}

.l-7px {
  left: 7px;
}

.r-7px {
  right: 7px;
}

.b-7px {
  bottom: 7px;
}

.ti-7px {
  top: 7px !important;
}

.li-7px {
  left: 7px !important;
}

.ri-7px {
  right: 7px !important;
}

.bi-7px {
  bottom: 7px !important;
}

.w-8px {
  width: 8px;
}

.h-8px {
  height: 8px;
}

.wi-8px {
  width: 8px !important;
}

.hi-8px {
  height: 8px !important;
}

.w-max-8px {
  max-width: 8px;
}

.w-min-8px {
  min-width: 8px;
}

.t-8px {
  top: 8px;
}

.l-8px {
  left: 8px;
}

.r-8px {
  right: 8px;
}

.b-8px {
  bottom: 8px;
}

.ti-8px {
  top: 8px !important;
}

.li-8px {
  left: 8px !important;
}

.ri-8px {
  right: 8px !important;
}

.bi-8px {
  bottom: 8px !important;
}

.w-9px {
  width: 9px;
}

.h-9px {
  height: 9px;
}

.wi-9px {
  width: 9px !important;
}

.hi-9px {
  height: 9px !important;
}

.w-max-9px {
  max-width: 9px;
}

.w-min-9px {
  min-width: 9px;
}

.t-9px {
  top: 9px;
}

.l-9px {
  left: 9px;
}

.r-9px {
  right: 9px;
}

.b-9px {
  bottom: 9px;
}

.ti-9px {
  top: 9px !important;
}

.li-9px {
  left: 9px !important;
}

.ri-9px {
  right: 9px !important;
}

.bi-9px {
  bottom: 9px !important;
}

.w-10px {
  width: 10px;
}

.h-10px {
  height: 10px;
}

.wi-10px {
  width: 10px !important;
}

.hi-10px {
  height: 10px !important;
}

.w-max-10px {
  max-width: 10px;
}

.w-min-10px {
  min-width: 10px;
}

.t-10px {
  top: 10px;
}

.l-10px {
  left: 10px;
}

.r-10px {
  right: 10px;
}

.b-10px {
  bottom: 10px;
}

.ti-10px {
  top: 10px !important;
}

.li-10px {
  left: 10px !important;
}

.ri-10px {
  right: 10px !important;
}

.bi-10px {
  bottom: 10px !important;
}

.w-11px {
  width: 11px;
}

.h-11px {
  height: 11px;
}

.wi-11px {
  width: 11px !important;
}

.hi-11px {
  height: 11px !important;
}

.w-max-11px {
  max-width: 11px;
}

.w-min-11px {
  min-width: 11px;
}

.t-11px {
  top: 11px;
}

.l-11px {
  left: 11px;
}

.r-11px {
  right: 11px;
}

.b-11px {
  bottom: 11px;
}

.ti-11px {
  top: 11px !important;
}

.li-11px {
  left: 11px !important;
}

.ri-11px {
  right: 11px !important;
}

.bi-11px {
  bottom: 11px !important;
}

.w-12px {
  width: 12px;
}

.h-12px {
  height: 12px;
}

.wi-12px {
  width: 12px !important;
}

.hi-12px {
  height: 12px !important;
}

.w-max-12px {
  max-width: 12px;
}

.w-min-12px {
  min-width: 12px;
}

.t-12px {
  top: 12px;
}

.l-12px {
  left: 12px;
}

.r-12px {
  right: 12px;
}

.b-12px {
  bottom: 12px;
}

.ti-12px {
  top: 12px !important;
}

.li-12px {
  left: 12px !important;
}

.ri-12px {
  right: 12px !important;
}

.bi-12px {
  bottom: 12px !important;
}

.w-13px {
  width: 13px;
}

.h-13px {
  height: 13px;
}

.wi-13px {
  width: 13px !important;
}

.hi-13px {
  height: 13px !important;
}

.w-max-13px {
  max-width: 13px;
}

.w-min-13px {
  min-width: 13px;
}

.t-13px {
  top: 13px;
}

.l-13px {
  left: 13px;
}

.r-13px {
  right: 13px;
}

.b-13px {
  bottom: 13px;
}

.ti-13px {
  top: 13px !important;
}

.li-13px {
  left: 13px !important;
}

.ri-13px {
  right: 13px !important;
}

.bi-13px {
  bottom: 13px !important;
}

.w-14px {
  width: 14px;
}

.h-14px {
  height: 14px;
}

.wi-14px {
  width: 14px !important;
}

.hi-14px {
  height: 14px !important;
}

.w-max-14px {
  max-width: 14px;
}

.w-min-14px {
  min-width: 14px;
}

.t-14px {
  top: 14px;
}

.l-14px {
  left: 14px;
}

.r-14px {
  right: 14px;
}

.b-14px {
  bottom: 14px;
}

.ti-14px {
  top: 14px !important;
}

.li-14px {
  left: 14px !important;
}

.ri-14px {
  right: 14px !important;
}

.bi-14px {
  bottom: 14px !important;
}

.w-15px {
  width: 15px;
}

.h-15px {
  height: 15px;
}

.wi-15px {
  width: 15px !important;
}

.hi-15px {
  height: 15px !important;
}

.w-max-15px {
  max-width: 15px;
}

.w-min-15px {
  min-width: 15px;
}

.t-15px {
  top: 15px;
}

.l-15px {
  left: 15px;
}

.r-15px {
  right: 15px;
}

.b-15px {
  bottom: 15px;
}

.ti-15px {
  top: 15px !important;
}

.li-15px {
  left: 15px !important;
}

.ri-15px {
  right: 15px !important;
}

.bi-15px {
  bottom: 15px !important;
}

.w-16px {
  width: 16px;
}

.h-16px {
  height: 16px;
}

.wi-16px {
  width: 16px !important;
}

.hi-16px {
  height: 16px !important;
}

.w-max-16px {
  max-width: 16px;
}

.w-min-16px {
  min-width: 16px;
}

.t-16px {
  top: 16px;
}

.l-16px {
  left: 16px;
}

.r-16px {
  right: 16px;
}

.b-16px {
  bottom: 16px;
}

.ti-16px {
  top: 16px !important;
}

.li-16px {
  left: 16px !important;
}

.ri-16px {
  right: 16px !important;
}

.bi-16px {
  bottom: 16px !important;
}

.w-17px {
  width: 17px;
}

.h-17px {
  height: 17px;
}

.wi-17px {
  width: 17px !important;
}

.hi-17px {
  height: 17px !important;
}

.w-max-17px {
  max-width: 17px;
}

.w-min-17px {
  min-width: 17px;
}

.t-17px {
  top: 17px;
}

.l-17px {
  left: 17px;
}

.r-17px {
  right: 17px;
}

.b-17px {
  bottom: 17px;
}

.ti-17px {
  top: 17px !important;
}

.li-17px {
  left: 17px !important;
}

.ri-17px {
  right: 17px !important;
}

.bi-17px {
  bottom: 17px !important;
}

.w-18px {
  width: 18px;
}

.h-18px {
  height: 18px;
}

.wi-18px {
  width: 18px !important;
}

.hi-18px {
  height: 18px !important;
}

.w-max-18px {
  max-width: 18px;
}

.w-min-18px {
  min-width: 18px;
}

.t-18px {
  top: 18px;
}

.l-18px {
  left: 18px;
}

.r-18px {
  right: 18px;
}

.b-18px {
  bottom: 18px;
}

.ti-18px {
  top: 18px !important;
}

.li-18px {
  left: 18px !important;
}

.ri-18px {
  right: 18px !important;
}

.bi-18px {
  bottom: 18px !important;
}

.w-19px {
  width: 19px;
}

.h-19px {
  height: 19px;
}

.wi-19px {
  width: 19px !important;
}

.hi-19px {
  height: 19px !important;
}

.w-max-19px {
  max-width: 19px;
}

.w-min-19px {
  min-width: 19px;
}

.t-19px {
  top: 19px;
}

.l-19px {
  left: 19px;
}

.r-19px {
  right: 19px;
}

.b-19px {
  bottom: 19px;
}

.ti-19px {
  top: 19px !important;
}

.li-19px {
  left: 19px !important;
}

.ri-19px {
  right: 19px !important;
}

.bi-19px {
  bottom: 19px !important;
}

.w-20px {
  width: 20px;
}

.h-20px {
  height: 20px;
}

.wi-20px {
  width: 20px !important;
}

.hi-20px {
  height: 20px !important;
}

.w-max-20px {
  max-width: 20px;
}

.w-min-20px {
  min-width: 20px;
}

.t-20px {
  top: 20px;
}

.l-20px {
  left: 20px;
}

.r-20px {
  right: 20px;
}

.b-20px {
  bottom: 20px;
}

.ti-20px {
  top: 20px !important;
}

.li-20px {
  left: 20px !important;
}

.ri-20px {
  right: 20px !important;
}

.bi-20px {
  bottom: 20px !important;
}

.w-21px {
  width: 21px;
}

.h-21px {
  height: 21px;
}

.wi-21px {
  width: 21px !important;
}

.hi-21px {
  height: 21px !important;
}

.w-max-21px {
  max-width: 21px;
}

.w-min-21px {
  min-width: 21px;
}

.t-21px {
  top: 21px;
}

.l-21px {
  left: 21px;
}

.r-21px {
  right: 21px;
}

.b-21px {
  bottom: 21px;
}

.ti-21px {
  top: 21px !important;
}

.li-21px {
  left: 21px !important;
}

.ri-21px {
  right: 21px !important;
}

.bi-21px {
  bottom: 21px !important;
}

.w-22px {
  width: 22px;
}

.h-22px {
  height: 22px;
}

.wi-22px {
  width: 22px !important;
}

.hi-22px {
  height: 22px !important;
}

.w-max-22px {
  max-width: 22px;
}

.w-min-22px {
  min-width: 22px;
}

.t-22px {
  top: 22px;
}

.l-22px {
  left: 22px;
}

.r-22px {
  right: 22px;
}

.b-22px {
  bottom: 22px;
}

.ti-22px {
  top: 22px !important;
}

.li-22px {
  left: 22px !important;
}

.ri-22px {
  right: 22px !important;
}

.bi-22px {
  bottom: 22px !important;
}

.w-23px {
  width: 23px;
}

.h-23px {
  height: 23px;
}

.wi-23px {
  width: 23px !important;
}

.hi-23px {
  height: 23px !important;
}

.w-max-23px {
  max-width: 23px;
}

.w-min-23px {
  min-width: 23px;
}

.t-23px {
  top: 23px;
}

.l-23px {
  left: 23px;
}

.r-23px {
  right: 23px;
}

.b-23px {
  bottom: 23px;
}

.ti-23px {
  top: 23px !important;
}

.li-23px {
  left: 23px !important;
}

.ri-23px {
  right: 23px !important;
}

.bi-23px {
  bottom: 23px !important;
}

.w-24px {
  width: 24px;
}

.h-24px {
  height: 24px;
}

.wi-24px {
  width: 24px !important;
}

.hi-24px {
  height: 24px !important;
}

.w-max-24px {
  max-width: 24px;
}

.w-min-24px {
  min-width: 24px;
}

.t-24px {
  top: 24px;
}

.l-24px {
  left: 24px;
}

.r-24px {
  right: 24px;
}

.b-24px {
  bottom: 24px;
}

.ti-24px {
  top: 24px !important;
}

.li-24px {
  left: 24px !important;
}

.ri-24px {
  right: 24px !important;
}

.bi-24px {
  bottom: 24px !important;
}

.w-25px {
  width: 25px;
}

.h-25px {
  height: 25px;
}

.wi-25px {
  width: 25px !important;
}

.hi-25px {
  height: 25px !important;
}

.w-max-25px {
  max-width: 25px;
}

.w-min-25px {
  min-width: 25px;
}

.t-25px {
  top: 25px;
}

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

.r-25px {
  right: 25px;
}

.b-25px {
  bottom: 25px;
}

.ti-25px {
  top: 25px !important;
}

.li-25px {
  left: 25px !important;
}

.ri-25px {
  right: 25px !important;
}

.bi-25px {
  bottom: 25px !important;
}

.w-26px {
  width: 26px;
}

.h-26px {
  height: 26px;
}

.wi-26px {
  width: 26px !important;
}

.hi-26px {
  height: 26px !important;
}

.w-max-26px {
  max-width: 26px;
}

.w-min-26px {
  min-width: 26px;
}

.t-26px {
  top: 26px;
}

.l-26px {
  left: 26px;
}

.r-26px {
  right: 26px;
}

.b-26px {
  bottom: 26px;
}

.ti-26px {
  top: 26px !important;
}

.li-26px {
  left: 26px !important;
}

.ri-26px {
  right: 26px !important;
}

.bi-26px {
  bottom: 26px !important;
}

.w-27px {
  width: 27px;
}

.h-27px {
  height: 27px;
}

.wi-27px {
  width: 27px !important;
}

.hi-27px {
  height: 27px !important;
}

.w-max-27px {
  max-width: 27px;
}

.w-min-27px {
  min-width: 27px;
}

.t-27px {
  top: 27px;
}

.l-27px {
  left: 27px;
}

.r-27px {
  right: 27px;
}

.b-27px {
  bottom: 27px;
}

.ti-27px {
  top: 27px !important;
}

.li-27px {
  left: 27px !important;
}

.ri-27px {
  right: 27px !important;
}

.bi-27px {
  bottom: 27px !important;
}

.w-28px {
  width: 28px;
}

.h-28px {
  height: 28px;
}

.wi-28px {
  width: 28px !important;
}

.hi-28px {
  height: 28px !important;
}

.w-max-28px {
  max-width: 28px;
}

.w-min-28px {
  min-width: 28px;
}

.t-28px {
  top: 28px;
}

.l-28px {
  left: 28px;
}

.r-28px {
  right: 28px;
}

.b-28px {
  bottom: 28px;
}

.ti-28px {
  top: 28px !important;
}

.li-28px {
  left: 28px !important;
}

.ri-28px {
  right: 28px !important;
}

.bi-28px {
  bottom: 28px !important;
}

.w-29px {
  width: 29px;
}

.h-29px {
  height: 29px;
}

.wi-29px {
  width: 29px !important;
}

.hi-29px {
  height: 29px !important;
}

.w-max-29px {
  max-width: 29px;
}

.w-min-29px {
  min-width: 29px;
}

.t-29px {
  top: 29px;
}

.l-29px {
  left: 29px;
}

.r-29px {
  right: 29px;
}

.b-29px {
  bottom: 29px;
}

.ti-29px {
  top: 29px !important;
}

.li-29px {
  left: 29px !important;
}

.ri-29px {
  right: 29px !important;
}

.bi-29px {
  bottom: 29px !important;
}

.w-30px {
  width: 30px;
}

.h-30px {
  height: 30px;
}

.wi-30px {
  width: 30px !important;
}

.hi-30px {
  height: 30px !important;
}

.w-max-30px {
  max-width: 30px;
}

.w-min-30px {
  min-width: 30px;
}

.t-30px {
  top: 30px;
}

.l-30px {
  left: 30px;
}

.r-30px {
  right: 30px;
}

.b-30px {
  bottom: 30px;
}

.ti-30px {
  top: 30px !important;
}

.li-30px {
  left: 30px !important;
}

.ri-30px {
  right: 30px !important;
}

.bi-30px {
  bottom: 30px !important;
}

.w-31px {
  width: 31px;
}

.h-31px {
  height: 31px;
}

.wi-31px {
  width: 31px !important;
}

.hi-31px {
  height: 31px !important;
}

.w-max-31px {
  max-width: 31px;
}

.w-min-31px {
  min-width: 31px;
}

.t-31px {
  top: 31px;
}

.l-31px {
  left: 31px;
}

.r-31px {
  right: 31px;
}

.b-31px {
  bottom: 31px;
}

.ti-31px {
  top: 31px !important;
}

.li-31px {
  left: 31px !important;
}

.ri-31px {
  right: 31px !important;
}

.bi-31px {
  bottom: 31px !important;
}

.w-32px {
  width: 32px;
}

.h-32px {
  height: 32px;
}

.wi-32px {
  width: 32px !important;
}

.hi-32px {
  height: 32px !important;
}

.w-max-32px {
  max-width: 32px;
}

.w-min-32px {
  min-width: 32px;
}

.t-32px {
  top: 32px;
}

.l-32px {
  left: 32px;
}

.r-32px {
  right: 32px;
}

.b-32px {
  bottom: 32px;
}

.ti-32px {
  top: 32px !important;
}

.li-32px {
  left: 32px !important;
}

.ri-32px {
  right: 32px !important;
}

.bi-32px {
  bottom: 32px !important;
}

.w-33px {
  width: 33px;
}

.h-33px {
  height: 33px;
}

.wi-33px {
  width: 33px !important;
}

.hi-33px {
  height: 33px !important;
}

.w-max-33px {
  max-width: 33px;
}

.w-min-33px {
  min-width: 33px;
}

.t-33px {
  top: 33px;
}

.l-33px {
  left: 33px;
}

.r-33px {
  right: 33px;
}

.b-33px {
  bottom: 33px;
}

.ti-33px {
  top: 33px !important;
}

.li-33px {
  left: 33px !important;
}

.ri-33px {
  right: 33px !important;
}

.bi-33px {
  bottom: 33px !important;
}

.w-34px {
  width: 34px;
}

.h-34px {
  height: 34px;
}

.wi-34px {
  width: 34px !important;
}

.hi-34px {
  height: 34px !important;
}

.w-max-34px {
  max-width: 34px;
}

.w-min-34px {
  min-width: 34px;
}

.t-34px {
  top: 34px;
}

.l-34px {
  left: 34px;
}

.r-34px {
  right: 34px;
}

.b-34px {
  bottom: 34px;
}

.ti-34px {
  top: 34px !important;
}

.li-34px {
  left: 34px !important;
}

.ri-34px {
  right: 34px !important;
}

.bi-34px {
  bottom: 34px !important;
}

.w-35px {
  width: 35px;
}

.h-35px {
  height: 35px;
}

.wi-35px {
  width: 35px !important;
}

.hi-35px {
  height: 35px !important;
}

.w-max-35px {
  max-width: 35px;
}

.w-min-35px {
  min-width: 35px;
}

.t-35px {
  top: 35px;
}

.l-35px {
  left: 35px;
}

.r-35px {
  right: 35px;
}

.b-35px {
  bottom: 35px;
}

.ti-35px {
  top: 35px !important;
}

.li-35px {
  left: 35px !important;
}

.ri-35px {
  right: 35px !important;
}

.bi-35px {
  bottom: 35px !important;
}

.w-36px {
  width: 36px;
}

.h-36px {
  height: 36px;
}

.wi-36px {
  width: 36px !important;
}

.hi-36px {
  height: 36px !important;
}

.w-max-36px {
  max-width: 36px;
}

.w-min-36px {
  min-width: 36px;
}

.t-36px {
  top: 36px;
}

.l-36px {
  left: 36px;
}

.r-36px {
  right: 36px;
}

.b-36px {
  bottom: 36px;
}

.ti-36px {
  top: 36px !important;
}

.li-36px {
  left: 36px !important;
}

.ri-36px {
  right: 36px !important;
}

.bi-36px {
  bottom: 36px !important;
}

.w-37px {
  width: 37px;
}

.h-37px {
  height: 37px;
}

.wi-37px {
  width: 37px !important;
}

.hi-37px {
  height: 37px !important;
}

.w-max-37px {
  max-width: 37px;
}

.w-min-37px {
  min-width: 37px;
}

.t-37px {
  top: 37px;
}

.l-37px {
  left: 37px;
}

.r-37px {
  right: 37px;
}

.b-37px {
  bottom: 37px;
}

.ti-37px {
  top: 37px !important;
}

.li-37px {
  left: 37px !important;
}

.ri-37px {
  right: 37px !important;
}

.bi-37px {
  bottom: 37px !important;
}

.w-38px {
  width: 38px;
}

.h-38px {
  height: 38px;
}

.wi-38px {
  width: 38px !important;
}

.hi-38px {
  height: 38px !important;
}

.w-max-38px {
  max-width: 38px;
}

.w-min-38px {
  min-width: 38px;
}

.t-38px {
  top: 38px;
}

.l-38px {
  left: 38px;
}

.r-38px {
  right: 38px;
}

.b-38px {
  bottom: 38px;
}

.ti-38px {
  top: 38px !important;
}

.li-38px {
  left: 38px !important;
}

.ri-38px {
  right: 38px !important;
}

.bi-38px {
  bottom: 38px !important;
}

.w-39px {
  width: 39px;
}

.h-39px {
  height: 39px;
}

.wi-39px {
  width: 39px !important;
}

.hi-39px {
  height: 39px !important;
}

.w-max-39px {
  max-width: 39px;
}

.w-min-39px {
  min-width: 39px;
}

.t-39px {
  top: 39px;
}

.l-39px {
  left: 39px;
}

.r-39px {
  right: 39px;
}

.b-39px {
  bottom: 39px;
}

.ti-39px {
  top: 39px !important;
}

.li-39px {
  left: 39px !important;
}

.ri-39px {
  right: 39px !important;
}

.bi-39px {
  bottom: 39px !important;
}

.w-40px {
  width: 40px;
}

.h-40px {
  height: 40px;
}

.wi-40px {
  width: 40px !important;
}

.hi-40px {
  height: 40px !important;
}

.w-max-40px {
  max-width: 40px;
}

.w-min-40px {
  min-width: 40px;
}

.t-40px {
  top: 40px;
}

.l-40px {
  left: 40px;
}

.r-40px {
  right: 40px;
}

.b-40px {
  bottom: 40px;
}

.ti-40px {
  top: 40px !important;
}

.li-40px {
  left: 40px !important;
}

.ri-40px {
  right: 40px !important;
}

.bi-40px {
  bottom: 40px !important;
}

.w-41px {
  width: 41px;
}

.h-41px {
  height: 41px;
}

.wi-41px {
  width: 41px !important;
}

.hi-41px {
  height: 41px !important;
}

.w-max-41px {
  max-width: 41px;
}

.w-min-41px {
  min-width: 41px;
}

.t-41px {
  top: 41px;
}

.l-41px {
  left: 41px;
}

.r-41px {
  right: 41px;
}

.b-41px {
  bottom: 41px;
}

.ti-41px {
  top: 41px !important;
}

.li-41px {
  left: 41px !important;
}

.ri-41px {
  right: 41px !important;
}

.bi-41px {
  bottom: 41px !important;
}

.w-42px {
  width: 42px;
}

.h-42px {
  height: 42px;
}

.wi-42px {
  width: 42px !important;
}

.hi-42px {
  height: 42px !important;
}

.w-max-42px {
  max-width: 42px;
}

.w-min-42px {
  min-width: 42px;
}

.t-42px {
  top: 42px;
}

.l-42px {
  left: 42px;
}

.r-42px {
  right: 42px;
}

.b-42px {
  bottom: 42px;
}

.ti-42px {
  top: 42px !important;
}

.li-42px {
  left: 42px !important;
}

.ri-42px {
  right: 42px !important;
}

.bi-42px {
  bottom: 42px !important;
}

.w-43px {
  width: 43px;
}

.h-43px {
  height: 43px;
}

.wi-43px {
  width: 43px !important;
}

.hi-43px {
  height: 43px !important;
}

.w-max-43px {
  max-width: 43px;
}

.w-min-43px {
  min-width: 43px;
}

.t-43px {
  top: 43px;
}

.l-43px {
  left: 43px;
}

.r-43px {
  right: 43px;
}

.b-43px {
  bottom: 43px;
}

.ti-43px {
  top: 43px !important;
}

.li-43px {
  left: 43px !important;
}

.ri-43px {
  right: 43px !important;
}

.bi-43px {
  bottom: 43px !important;
}

.w-44px {
  width: 44px;
}

.h-44px {
  height: 44px;
}

.wi-44px {
  width: 44px !important;
}

.hi-44px {
  height: 44px !important;
}

.w-max-44px {
  max-width: 44px;
}

.w-min-44px {
  min-width: 44px;
}

.t-44px {
  top: 44px;
}

.l-44px {
  left: 44px;
}

.r-44px {
  right: 44px;
}

.b-44px {
  bottom: 44px;
}

.ti-44px {
  top: 44px !important;
}

.li-44px {
  left: 44px !important;
}

.ri-44px {
  right: 44px !important;
}

.bi-44px {
  bottom: 44px !important;
}

.w-45px {
  width: 45px;
}

.h-45px {
  height: 45px;
}

.wi-45px {
  width: 45px !important;
}

.hi-45px {
  height: 45px !important;
}

.w-max-45px {
  max-width: 45px;
}

.w-min-45px {
  min-width: 45px;
}

.t-45px {
  top: 45px;
}

.l-45px {
  left: 45px;
}

.r-45px {
  right: 45px;
}

.b-45px {
  bottom: 45px;
}

.ti-45px {
  top: 45px !important;
}

.li-45px {
  left: 45px !important;
}

.ri-45px {
  right: 45px !important;
}

.bi-45px {
  bottom: 45px !important;
}

.w-46px {
  width: 46px;
}

.h-46px {
  height: 46px;
}

.wi-46px {
  width: 46px !important;
}

.hi-46px {
  height: 46px !important;
}

.w-max-46px {
  max-width: 46px;
}

.w-min-46px {
  min-width: 46px;
}

.t-46px {
  top: 46px;
}

.l-46px {
  left: 46px;
}

.r-46px {
  right: 46px;
}

.b-46px {
  bottom: 46px;
}

.ti-46px {
  top: 46px !important;
}

.li-46px {
  left: 46px !important;
}

.ri-46px {
  right: 46px !important;
}

.bi-46px {
  bottom: 46px !important;
}

.w-47px {
  width: 47px;
}

.h-47px {
  height: 47px;
}

.wi-47px {
  width: 47px !important;
}

.hi-47px {
  height: 47px !important;
}

.w-max-47px {
  max-width: 47px;
}

.w-min-47px {
  min-width: 47px;
}

.t-47px {
  top: 47px;
}

.l-47px {
  left: 47px;
}

.r-47px {
  right: 47px;
}

.b-47px {
  bottom: 47px;
}

.ti-47px {
  top: 47px !important;
}

.li-47px {
  left: 47px !important;
}

.ri-47px {
  right: 47px !important;
}

.bi-47px {
  bottom: 47px !important;
}

.w-48px {
  width: 48px;
}

.h-48px {
  height: 48px;
}

.wi-48px {
  width: 48px !important;
}

.hi-48px {
  height: 48px !important;
}

.w-max-48px {
  max-width: 48px;
}

.w-min-48px {
  min-width: 48px;
}

.t-48px {
  top: 48px;
}

.l-48px {
  left: 48px;
}

.r-48px {
  right: 48px;
}

.b-48px {
  bottom: 48px;
}

.ti-48px {
  top: 48px !important;
}

.li-48px {
  left: 48px !important;
}

.ri-48px {
  right: 48px !important;
}

.bi-48px {
  bottom: 48px !important;
}

.w-49px {
  width: 49px;
}

.h-49px {
  height: 49px;
}

.wi-49px {
  width: 49px !important;
}

.hi-49px {
  height: 49px !important;
}

.w-max-49px {
  max-width: 49px;
}

.w-min-49px {
  min-width: 49px;
}

.t-49px {
  top: 49px;
}

.l-49px {
  left: 49px;
}

.r-49px {
  right: 49px;
}

.b-49px {
  bottom: 49px;
}

.ti-49px {
  top: 49px !important;
}

.li-49px {
  left: 49px !important;
}

.ri-49px {
  right: 49px !important;
}

.bi-49px {
  bottom: 49px !important;
}

.w-50px {
  width: 50px;
}

.h-50px {
  height: 50px;
}

.wi-50px {
  width: 50px !important;
}

.hi-50px {
  height: 50px !important;
}

.w-max-50px {
  max-width: 50px;
}

.w-min-50px {
  min-width: 50px;
}

.t-50px {
  top: 50px;
}

.l-50px {
  left: 50px;
}

.r-50px {
  right: 50px;
}

.b-50px {
  bottom: 50px;
}

.ti-50px {
  top: 50px !important;
}

.li-50px {
  left: 50px !important;
}

.ri-50px {
  right: 50px !important;
}

.bi-50px {
  bottom: 50px !important;
}

.w-51px {
  width: 51px;
}

.h-51px {
  height: 51px;
}

.wi-51px {
  width: 51px !important;
}

.hi-51px {
  height: 51px !important;
}

.w-max-51px {
  max-width: 51px;
}

.w-min-51px {
  min-width: 51px;
}

.t-51px {
  top: 51px;
}

.l-51px {
  left: 51px;
}

.r-51px {
  right: 51px;
}

.b-51px {
  bottom: 51px;
}

.ti-51px {
  top: 51px !important;
}

.li-51px {
  left: 51px !important;
}

.ri-51px {
  right: 51px !important;
}

.bi-51px {
  bottom: 51px !important;
}

.w-52px {
  width: 52px;
}

.h-52px {
  height: 52px;
}

.wi-52px {
  width: 52px !important;
}

.hi-52px {
  height: 52px !important;
}

.w-max-52px {
  max-width: 52px;
}

.w-min-52px {
  min-width: 52px;
}

.t-52px {
  top: 52px;
}

.l-52px {
  left: 52px;
}

.r-52px {
  right: 52px;
}

.b-52px {
  bottom: 52px;
}

.ti-52px {
  top: 52px !important;
}

.li-52px {
  left: 52px !important;
}

.ri-52px {
  right: 52px !important;
}

.bi-52px {
  bottom: 52px !important;
}

.w-53px {
  width: 53px;
}

.h-53px {
  height: 53px;
}

.wi-53px {
  width: 53px !important;
}

.hi-53px {
  height: 53px !important;
}

.w-max-53px {
  max-width: 53px;
}

.w-min-53px {
  min-width: 53px;
}

.t-53px {
  top: 53px;
}

.l-53px {
  left: 53px;
}

.r-53px {
  right: 53px;
}

.b-53px {
  bottom: 53px;
}

.ti-53px {
  top: 53px !important;
}

.li-53px {
  left: 53px !important;
}

.ri-53px {
  right: 53px !important;
}

.bi-53px {
  bottom: 53px !important;
}

.w-54px {
  width: 54px;
}

.h-54px {
  height: 54px;
}

.wi-54px {
  width: 54px !important;
}

.hi-54px {
  height: 54px !important;
}

.w-max-54px {
  max-width: 54px;
}

.w-min-54px {
  min-width: 54px;
}

.t-54px {
  top: 54px;
}

.l-54px {
  left: 54px;
}

.r-54px {
  right: 54px;
}

.b-54px {
  bottom: 54px;
}

.ti-54px {
  top: 54px !important;
}

.li-54px {
  left: 54px !important;
}

.ri-54px {
  right: 54px !important;
}

.bi-54px {
  bottom: 54px !important;
}

.w-55px {
  width: 55px;
}

.h-55px {
  height: 55px;
}

.wi-55px {
  width: 55px !important;
}

.hi-55px {
  height: 55px !important;
}

.w-max-55px {
  max-width: 55px;
}

.w-min-55px {
  min-width: 55px;
}

.t-55px {
  top: 55px;
}

.l-55px {
  left: 55px;
}

.r-55px {
  right: 55px;
}

.b-55px {
  bottom: 55px;
}

.ti-55px {
  top: 55px !important;
}

.li-55px {
  left: 55px !important;
}

.ri-55px {
  right: 55px !important;
}

.bi-55px {
  bottom: 55px !important;
}

.w-56px {
  width: 56px;
}

.h-56px {
  height: 56px;
}

.wi-56px {
  width: 56px !important;
}

.hi-56px {
  height: 56px !important;
}

.w-max-56px {
  max-width: 56px;
}

.w-min-56px {
  min-width: 56px;
}

.t-56px {
  top: 56px;
}

.l-56px {
  left: 56px;
}

.r-56px {
  right: 56px;
}

.b-56px {
  bottom: 56px;
}

.ti-56px {
  top: 56px !important;
}

.li-56px {
  left: 56px !important;
}

.ri-56px {
  right: 56px !important;
}

.bi-56px {
  bottom: 56px !important;
}

.w-57px {
  width: 57px;
}

.h-57px {
  height: 57px;
}

.wi-57px {
  width: 57px !important;
}

.hi-57px {
  height: 57px !important;
}

.w-max-57px {
  max-width: 57px;
}

.w-min-57px {
  min-width: 57px;
}

.t-57px {
  top: 57px;
}

.l-57px {
  left: 57px;
}

.r-57px {
  right: 57px;
}

.b-57px {
  bottom: 57px;
}

.ti-57px {
  top: 57px !important;
}

.li-57px {
  left: 57px !important;
}

.ri-57px {
  right: 57px !important;
}

.bi-57px {
  bottom: 57px !important;
}

.w-58px {
  width: 58px;
}

.h-58px {
  height: 58px;
}

.wi-58px {
  width: 58px !important;
}

.hi-58px {
  height: 58px !important;
}

.w-max-58px {
  max-width: 58px;
}

.w-min-58px {
  min-width: 58px;
}

.t-58px {
  top: 58px;
}

.l-58px {
  left: 58px;
}

.r-58px {
  right: 58px;
}

.b-58px {
  bottom: 58px;
}

.ti-58px {
  top: 58px !important;
}

.li-58px {
  left: 58px !important;
}

.ri-58px {
  right: 58px !important;
}

.bi-58px {
  bottom: 58px !important;
}

.w-59px {
  width: 59px;
}

.h-59px {
  height: 59px;
}

.wi-59px {
  width: 59px !important;
}

.hi-59px {
  height: 59px !important;
}

.w-max-59px {
  max-width: 59px;
}

.w-min-59px {
  min-width: 59px;
}

.t-59px {
  top: 59px;
}

.l-59px {
  left: 59px;
}

.r-59px {
  right: 59px;
}

.b-59px {
  bottom: 59px;
}

.ti-59px {
  top: 59px !important;
}

.li-59px {
  left: 59px !important;
}

.ri-59px {
  right: 59px !important;
}

.bi-59px {
  bottom: 59px !important;
}

.w-60px {
  width: 60px;
}

.h-60px {
  height: 60px;
}

.wi-60px {
  width: 60px !important;
}

.hi-60px {
  height: 60px !important;
}

.w-max-60px {
  max-width: 60px;
}

.w-min-60px {
  min-width: 60px;
}

.t-60px {
  top: 60px;
}

.l-60px {
  left: 60px;
}

.r-60px {
  right: 60px;
}

.b-60px {
  bottom: 60px;
}

.ti-60px {
  top: 60px !important;
}

.li-60px {
  left: 60px !important;
}

.ri-60px {
  right: 60px !important;
}

.bi-60px {
  bottom: 60px !important;
}

.w-61px {
  width: 61px;
}

.h-61px {
  height: 61px;
}

.wi-61px {
  width: 61px !important;
}

.hi-61px {
  height: 61px !important;
}

.w-max-61px {
  max-width: 61px;
}

.w-min-61px {
  min-width: 61px;
}

.t-61px {
  top: 61px;
}

.l-61px {
  left: 61px;
}

.r-61px {
  right: 61px;
}

.b-61px {
  bottom: 61px;
}

.ti-61px {
  top: 61px !important;
}

.li-61px {
  left: 61px !important;
}

.ri-61px {
  right: 61px !important;
}

.bi-61px {
  bottom: 61px !important;
}

.w-62px {
  width: 62px;
}

.h-62px {
  height: 62px;
}

.wi-62px {
  width: 62px !important;
}

.hi-62px {
  height: 62px !important;
}

.w-max-62px {
  max-width: 62px;
}

.w-min-62px {
  min-width: 62px;
}

.t-62px {
  top: 62px;
}

.l-62px {
  left: 62px;
}

.r-62px {
  right: 62px;
}

.b-62px {
  bottom: 62px;
}

.ti-62px {
  top: 62px !important;
}

.li-62px {
  left: 62px !important;
}

.ri-62px {
  right: 62px !important;
}

.bi-62px {
  bottom: 62px !important;
}

.w-63px {
  width: 63px;
}

.h-63px {
  height: 63px;
}

.wi-63px {
  width: 63px !important;
}

.hi-63px {
  height: 63px !important;
}

.w-max-63px {
  max-width: 63px;
}

.w-min-63px {
  min-width: 63px;
}

.t-63px {
  top: 63px;
}

.l-63px {
  left: 63px;
}

.r-63px {
  right: 63px;
}

.b-63px {
  bottom: 63px;
}

.ti-63px {
  top: 63px !important;
}

.li-63px {
  left: 63px !important;
}

.ri-63px {
  right: 63px !important;
}

.bi-63px {
  bottom: 63px !important;
}

.w-64px {
  width: 64px;
}

.h-64px {
  height: 64px;
}

.wi-64px {
  width: 64px !important;
}

.hi-64px {
  height: 64px !important;
}

.w-max-64px {
  max-width: 64px;
}

.w-min-64px {
  min-width: 64px;
}

.t-64px {
  top: 64px;
}

.l-64px {
  left: 64px;
}

.r-64px {
  right: 64px;
}

.b-64px {
  bottom: 64px;
}

.ti-64px {
  top: 64px !important;
}

.li-64px {
  left: 64px !important;
}

.ri-64px {
  right: 64px !important;
}

.bi-64px {
  bottom: 64px !important;
}

.w-65px {
  width: 65px;
}

.h-65px {
  height: 65px;
}

.wi-65px {
  width: 65px !important;
}

.hi-65px {
  height: 65px !important;
}

.w-max-65px {
  max-width: 65px;
}

.w-min-65px {
  min-width: 65px;
}

.t-65px {
  top: 65px;
}

.l-65px {
  left: 65px;
}

.r-65px {
  right: 65px;
}

.b-65px {
  bottom: 65px;
}

.ti-65px {
  top: 65px !important;
}

.li-65px {
  left: 65px !important;
}

.ri-65px {
  right: 65px !important;
}

.bi-65px {
  bottom: 65px !important;
}

.w-66px {
  width: 66px;
}

.h-66px {
  height: 66px;
}

.wi-66px {
  width: 66px !important;
}

.hi-66px {
  height: 66px !important;
}

.w-max-66px {
  max-width: 66px;
}

.w-min-66px {
  min-width: 66px;
}

.t-66px {
  top: 66px;
}

.l-66px {
  left: 66px;
}

.r-66px {
  right: 66px;
}

.b-66px {
  bottom: 66px;
}

.ti-66px {
  top: 66px !important;
}

.li-66px {
  left: 66px !important;
}

.ri-66px {
  right: 66px !important;
}

.bi-66px {
  bottom: 66px !important;
}

.w-67px {
  width: 67px;
}

.h-67px {
  height: 67px;
}

.wi-67px {
  width: 67px !important;
}

.hi-67px {
  height: 67px !important;
}

.w-max-67px {
  max-width: 67px;
}

.w-min-67px {
  min-width: 67px;
}

.t-67px {
  top: 67px;
}

.l-67px {
  left: 67px;
}

.r-67px {
  right: 67px;
}

.b-67px {
  bottom: 67px;
}

.ti-67px {
  top: 67px !important;
}

.li-67px {
  left: 67px !important;
}

.ri-67px {
  right: 67px !important;
}

.bi-67px {
  bottom: 67px !important;
}

.w-68px {
  width: 68px;
}

.h-68px {
  height: 68px;
}

.wi-68px {
  width: 68px !important;
}

.hi-68px {
  height: 68px !important;
}

.w-max-68px {
  max-width: 68px;
}

.w-min-68px {
  min-width: 68px;
}

.t-68px {
  top: 68px;
}

.l-68px {
  left: 68px;
}

.r-68px {
  right: 68px;
}

.b-68px {
  bottom: 68px;
}

.ti-68px {
  top: 68px !important;
}

.li-68px {
  left: 68px !important;
}

.ri-68px {
  right: 68px !important;
}

.bi-68px {
  bottom: 68px !important;
}

.w-69px {
  width: 69px;
}

.h-69px {
  height: 69px;
}

.wi-69px {
  width: 69px !important;
}

.hi-69px {
  height: 69px !important;
}

.w-max-69px {
  max-width: 69px;
}

.w-min-69px {
  min-width: 69px;
}

.t-69px {
  top: 69px;
}

.l-69px {
  left: 69px;
}

.r-69px {
  right: 69px;
}

.b-69px {
  bottom: 69px;
}

.ti-69px {
  top: 69px !important;
}

.li-69px {
  left: 69px !important;
}

.ri-69px {
  right: 69px !important;
}

.bi-69px {
  bottom: 69px !important;
}

.w-70px {
  width: 70px;
}

.h-70px {
  height: 70px;
}

.wi-70px {
  width: 70px !important;
}

.hi-70px {
  height: 70px !important;
}

.w-max-70px {
  max-width: 70px;
}

.w-min-70px {
  min-width: 70px;
}

.t-70px {
  top: 70px;
}

.l-70px {
  left: 70px;
}

.r-70px {
  right: 70px;
}

.b-70px {
  bottom: 70px;
}

.ti-70px {
  top: 70px !important;
}

.li-70px {
  left: 70px !important;
}

.ri-70px {
  right: 70px !important;
}

.bi-70px {
  bottom: 70px !important;
}

.w-71px {
  width: 71px;
}

.h-71px {
  height: 71px;
}

.wi-71px {
  width: 71px !important;
}

.hi-71px {
  height: 71px !important;
}

.w-max-71px {
  max-width: 71px;
}

.w-min-71px {
  min-width: 71px;
}

.t-71px {
  top: 71px;
}

.l-71px {
  left: 71px;
}

.r-71px {
  right: 71px;
}

.b-71px {
  bottom: 71px;
}

.ti-71px {
  top: 71px !important;
}

.li-71px {
  left: 71px !important;
}

.ri-71px {
  right: 71px !important;
}

.bi-71px {
  bottom: 71px !important;
}

.w-72px {
  width: 72px;
}

.h-72px {
  height: 72px;
}

.wi-72px {
  width: 72px !important;
}

.hi-72px {
  height: 72px !important;
}

.w-max-72px {
  max-width: 72px;
}

.w-min-72px {
  min-width: 72px;
}

.t-72px {
  top: 72px;
}

.l-72px {
  left: 72px;
}

.r-72px {
  right: 72px;
}

.b-72px {
  bottom: 72px;
}

.ti-72px {
  top: 72px !important;
}

.li-72px {
  left: 72px !important;
}

.ri-72px {
  right: 72px !important;
}

.bi-72px {
  bottom: 72px !important;
}

.w-73px {
  width: 73px;
}

.h-73px {
  height: 73px;
}

.wi-73px {
  width: 73px !important;
}

.hi-73px {
  height: 73px !important;
}

.w-max-73px {
  max-width: 73px;
}

.w-min-73px {
  min-width: 73px;
}

.t-73px {
  top: 73px;
}

.l-73px {
  left: 73px;
}

.r-73px {
  right: 73px;
}

.b-73px {
  bottom: 73px;
}

.ti-73px {
  top: 73px !important;
}

.li-73px {
  left: 73px !important;
}

.ri-73px {
  right: 73px !important;
}

.bi-73px {
  bottom: 73px !important;
}

.w-74px {
  width: 74px;
}

.h-74px {
  height: 74px;
}

.wi-74px {
  width: 74px !important;
}

.hi-74px {
  height: 74px !important;
}

.w-max-74px {
  max-width: 74px;
}

.w-min-74px {
  min-width: 74px;
}

.t-74px {
  top: 74px;
}

.l-74px {
  left: 74px;
}

.r-74px {
  right: 74px;
}

.b-74px {
  bottom: 74px;
}

.ti-74px {
  top: 74px !important;
}

.li-74px {
  left: 74px !important;
}

.ri-74px {
  right: 74px !important;
}

.bi-74px {
  bottom: 74px !important;
}

.w-75px {
  width: 75px;
}

.h-75px {
  height: 75px;
}

.wi-75px {
  width: 75px !important;
}

.hi-75px {
  height: 75px !important;
}

.w-max-75px {
  max-width: 75px;
}

.w-min-75px {
  min-width: 75px;
}

.t-75px {
  top: 75px;
}

.l-75px {
  left: 75px;
}

.r-75px {
  right: 75px;
}

.b-75px {
  bottom: 75px;
}

.ti-75px {
  top: 75px !important;
}

.li-75px {
  left: 75px !important;
}

.ri-75px {
  right: 75px !important;
}

.bi-75px {
  bottom: 75px !important;
}

.w-76px {
  width: 76px;
}

.h-76px {
  height: 76px;
}

.wi-76px {
  width: 76px !important;
}

.hi-76px {
  height: 76px !important;
}

.w-max-76px {
  max-width: 76px;
}

.w-min-76px {
  min-width: 76px;
}

.t-76px {
  top: 76px;
}

.l-76px {
  left: 76px;
}

.r-76px {
  right: 76px;
}

.b-76px {
  bottom: 76px;
}

.ti-76px {
  top: 76px !important;
}

.li-76px {
  left: 76px !important;
}

.ri-76px {
  right: 76px !important;
}

.bi-76px {
  bottom: 76px !important;
}

.w-77px {
  width: 77px;
}

.h-77px {
  height: 77px;
}

.wi-77px {
  width: 77px !important;
}

.hi-77px {
  height: 77px !important;
}

.w-max-77px {
  max-width: 77px;
}

.w-min-77px {
  min-width: 77px;
}

.t-77px {
  top: 77px;
}

.l-77px {
  left: 77px;
}

.r-77px {
  right: 77px;
}

.b-77px {
  bottom: 77px;
}

.ti-77px {
  top: 77px !important;
}

.li-77px {
  left: 77px !important;
}

.ri-77px {
  right: 77px !important;
}

.bi-77px {
  bottom: 77px !important;
}

.w-78px {
  width: 78px;
}

.h-78px {
  height: 78px;
}

.wi-78px {
  width: 78px !important;
}

.hi-78px {
  height: 78px !important;
}

.w-max-78px {
  max-width: 78px;
}

.w-min-78px {
  min-width: 78px;
}

.t-78px {
  top: 78px;
}

.l-78px {
  left: 78px;
}

.r-78px {
  right: 78px;
}

.b-78px {
  bottom: 78px;
}

.ti-78px {
  top: 78px !important;
}

.li-78px {
  left: 78px !important;
}

.ri-78px {
  right: 78px !important;
}

.bi-78px {
  bottom: 78px !important;
}

.w-79px {
  width: 79px;
}

.h-79px {
  height: 79px;
}

.wi-79px {
  width: 79px !important;
}

.hi-79px {
  height: 79px !important;
}

.w-max-79px {
  max-width: 79px;
}

.w-min-79px {
  min-width: 79px;
}

.t-79px {
  top: 79px;
}

.l-79px {
  left: 79px;
}

.r-79px {
  right: 79px;
}

.b-79px {
  bottom: 79px;
}

.ti-79px {
  top: 79px !important;
}

.li-79px {
  left: 79px !important;
}

.ri-79px {
  right: 79px !important;
}

.bi-79px {
  bottom: 79px !important;
}

.w-80px {
  width: 80px;
}

.h-80px {
  height: 80px;
}

.wi-80px {
  width: 80px !important;
}

.hi-80px {
  height: 80px !important;
}

.w-max-80px {
  max-width: 80px;
}

.w-min-80px {
  min-width: 80px;
}

.t-80px {
  top: 80px;
}

.l-80px {
  left: 80px;
}

.r-80px {
  right: 80px;
}

.b-80px {
  bottom: 80px;
}

.ti-80px {
  top: 80px !important;
}

.li-80px {
  left: 80px !important;
}

.ri-80px {
  right: 80px !important;
}

.bi-80px {
  bottom: 80px !important;
}

.w-81px {
  width: 81px;
}

.h-81px {
  height: 81px;
}

.wi-81px {
  width: 81px !important;
}

.hi-81px {
  height: 81px !important;
}

.w-max-81px {
  max-width: 81px;
}

.w-min-81px {
  min-width: 81px;
}

.t-81px {
  top: 81px;
}

.l-81px {
  left: 81px;
}

.r-81px {
  right: 81px;
}

.b-81px {
  bottom: 81px;
}

.ti-81px {
  top: 81px !important;
}

.li-81px {
  left: 81px !important;
}

.ri-81px {
  right: 81px !important;
}

.bi-81px {
  bottom: 81px !important;
}

.w-82px {
  width: 82px;
}

.h-82px {
  height: 82px;
}

.wi-82px {
  width: 82px !important;
}

.hi-82px {
  height: 82px !important;
}

.w-max-82px {
  max-width: 82px;
}

.w-min-82px {
  min-width: 82px;
}

.t-82px {
  top: 82px;
}

.l-82px {
  left: 82px;
}

.r-82px {
  right: 82px;
}

.b-82px {
  bottom: 82px;
}

.ti-82px {
  top: 82px !important;
}

.li-82px {
  left: 82px !important;
}

.ri-82px {
  right: 82px !important;
}

.bi-82px {
  bottom: 82px !important;
}

.w-83px {
  width: 83px;
}

.h-83px {
  height: 83px;
}

.wi-83px {
  width: 83px !important;
}

.hi-83px {
  height: 83px !important;
}

.w-max-83px {
  max-width: 83px;
}

.w-min-83px {
  min-width: 83px;
}

.t-83px {
  top: 83px;
}

.l-83px {
  left: 83px;
}

.r-83px {
  right: 83px;
}

.b-83px {
  bottom: 83px;
}

.ti-83px {
  top: 83px !important;
}

.li-83px {
  left: 83px !important;
}

.ri-83px {
  right: 83px !important;
}

.bi-83px {
  bottom: 83px !important;
}

.w-84px {
  width: 84px;
}

.h-84px {
  height: 84px;
}

.wi-84px {
  width: 84px !important;
}

.hi-84px {
  height: 84px !important;
}

.w-max-84px {
  max-width: 84px;
}

.w-min-84px {
  min-width: 84px;
}

.t-84px {
  top: 84px;
}

.l-84px {
  left: 84px;
}

.r-84px {
  right: 84px;
}

.b-84px {
  bottom: 84px;
}

.ti-84px {
  top: 84px !important;
}

.li-84px {
  left: 84px !important;
}

.ri-84px {
  right: 84px !important;
}

.bi-84px {
  bottom: 84px !important;
}

.w-85px {
  width: 85px;
}

.h-85px {
  height: 85px;
}

.wi-85px {
  width: 85px !important;
}

.hi-85px {
  height: 85px !important;
}

.w-max-85px {
  max-width: 85px;
}

.w-min-85px {
  min-width: 85px;
}

.t-85px {
  top: 85px;
}

.l-85px {
  left: 85px;
}

.r-85px {
  right: 85px;
}

.b-85px {
  bottom: 85px;
}

.ti-85px {
  top: 85px !important;
}

.li-85px {
  left: 85px !important;
}

.ri-85px {
  right: 85px !important;
}

.bi-85px {
  bottom: 85px !important;
}

.w-86px {
  width: 86px;
}

.h-86px {
  height: 86px;
}

.wi-86px {
  width: 86px !important;
}

.hi-86px {
  height: 86px !important;
}

.w-max-86px {
  max-width: 86px;
}

.w-min-86px {
  min-width: 86px;
}

.t-86px {
  top: 86px;
}

.l-86px {
  left: 86px;
}

.r-86px {
  right: 86px;
}

.b-86px {
  bottom: 86px;
}

.ti-86px {
  top: 86px !important;
}

.li-86px {
  left: 86px !important;
}

.ri-86px {
  right: 86px !important;
}

.bi-86px {
  bottom: 86px !important;
}

.w-87px {
  width: 87px;
}

.h-87px {
  height: 87px;
}

.wi-87px {
  width: 87px !important;
}

.hi-87px {
  height: 87px !important;
}

.w-max-87px {
  max-width: 87px;
}

.w-min-87px {
  min-width: 87px;
}

.t-87px {
  top: 87px;
}

.l-87px {
  left: 87px;
}

.r-87px {
  right: 87px;
}

.b-87px {
  bottom: 87px;
}

.ti-87px {
  top: 87px !important;
}

.li-87px {
  left: 87px !important;
}

.ri-87px {
  right: 87px !important;
}

.bi-87px {
  bottom: 87px !important;
}

.w-88px {
  width: 88px;
}

.h-88px {
  height: 88px;
}

.wi-88px {
  width: 88px !important;
}

.hi-88px {
  height: 88px !important;
}

.w-max-88px {
  max-width: 88px;
}

.w-min-88px {
  min-width: 88px;
}

.t-88px {
  top: 88px;
}

.l-88px {
  left: 88px;
}

.r-88px {
  right: 88px;
}

.b-88px {
  bottom: 88px;
}

.ti-88px {
  top: 88px !important;
}

.li-88px {
  left: 88px !important;
}

.ri-88px {
  right: 88px !important;
}

.bi-88px {
  bottom: 88px !important;
}

.w-89px {
  width: 89px;
}

.h-89px {
  height: 89px;
}

.wi-89px {
  width: 89px !important;
}

.hi-89px {
  height: 89px !important;
}

.w-max-89px {
  max-width: 89px;
}

.w-min-89px {
  min-width: 89px;
}

.t-89px {
  top: 89px;
}

.l-89px {
  left: 89px;
}

.r-89px {
  right: 89px;
}

.b-89px {
  bottom: 89px;
}

.ti-89px {
  top: 89px !important;
}

.li-89px {
  left: 89px !important;
}

.ri-89px {
  right: 89px !important;
}

.bi-89px {
  bottom: 89px !important;
}

.w-90px {
  width: 90px;
}

.h-90px {
  height: 90px;
}

.wi-90px {
  width: 90px !important;
}

.hi-90px {
  height: 90px !important;
}

.w-max-90px {
  max-width: 90px;
}

.w-min-90px {
  min-width: 90px;
}

.t-90px {
  top: 90px;
}

.l-90px {
  left: 90px;
}

.r-90px {
  right: 90px;
}

.b-90px {
  bottom: 90px;
}

.ti-90px {
  top: 90px !important;
}

.li-90px {
  left: 90px !important;
}

.ri-90px {
  right: 90px !important;
}

.bi-90px {
  bottom: 90px !important;
}

.w-91px {
  width: 91px;
}

.h-91px {
  height: 91px;
}

.wi-91px {
  width: 91px !important;
}

.hi-91px {
  height: 91px !important;
}

.w-max-91px {
  max-width: 91px;
}

.w-min-91px {
  min-width: 91px;
}

.t-91px {
  top: 91px;
}

.l-91px {
  left: 91px;
}

.r-91px {
  right: 91px;
}

.b-91px {
  bottom: 91px;
}

.ti-91px {
  top: 91px !important;
}

.li-91px {
  left: 91px !important;
}

.ri-91px {
  right: 91px !important;
}

.bi-91px {
  bottom: 91px !important;
}

.w-92px {
  width: 92px;
}

.h-92px {
  height: 92px;
}

.wi-92px {
  width: 92px !important;
}

.hi-92px {
  height: 92px !important;
}

.w-max-92px {
  max-width: 92px;
}

.w-min-92px {
  min-width: 92px;
}

.t-92px {
  top: 92px;
}

.l-92px {
  left: 92px;
}

.r-92px {
  right: 92px;
}

.b-92px {
  bottom: 92px;
}

.ti-92px {
  top: 92px !important;
}

.li-92px {
  left: 92px !important;
}

.ri-92px {
  right: 92px !important;
}

.bi-92px {
  bottom: 92px !important;
}

.w-93px {
  width: 93px;
}

.h-93px {
  height: 93px;
}

.wi-93px {
  width: 93px !important;
}

.hi-93px {
  height: 93px !important;
}

.w-max-93px {
  max-width: 93px;
}

.w-min-93px {
  min-width: 93px;
}

.t-93px {
  top: 93px;
}

.l-93px {
  left: 93px;
}

.r-93px {
  right: 93px;
}

.b-93px {
  bottom: 93px;
}

.ti-93px {
  top: 93px !important;
}

.li-93px {
  left: 93px !important;
}

.ri-93px {
  right: 93px !important;
}

.bi-93px {
  bottom: 93px !important;
}

.w-94px {
  width: 94px;
}

.h-94px {
  height: 94px;
}

.wi-94px {
  width: 94px !important;
}

.hi-94px {
  height: 94px !important;
}

.w-max-94px {
  max-width: 94px;
}

.w-min-94px {
  min-width: 94px;
}

.t-94px {
  top: 94px;
}

.l-94px {
  left: 94px;
}

.r-94px {
  right: 94px;
}

.b-94px {
  bottom: 94px;
}

.ti-94px {
  top: 94px !important;
}

.li-94px {
  left: 94px !important;
}

.ri-94px {
  right: 94px !important;
}

.bi-94px {
  bottom: 94px !important;
}

.w-95px {
  width: 95px;
}

.h-95px {
  height: 95px;
}

.wi-95px {
  width: 95px !important;
}

.hi-95px {
  height: 95px !important;
}

.w-max-95px {
  max-width: 95px;
}

.w-min-95px {
  min-width: 95px;
}

.t-95px {
  top: 95px;
}

.l-95px {
  left: 95px;
}

.r-95px {
  right: 95px;
}

.b-95px {
  bottom: 95px;
}

.ti-95px {
  top: 95px !important;
}

.li-95px {
  left: 95px !important;
}

.ri-95px {
  right: 95px !important;
}

.bi-95px {
  bottom: 95px !important;
}

.w-96px {
  width: 96px;
}

.h-96px {
  height: 96px;
}

.wi-96px {
  width: 96px !important;
}

.hi-96px {
  height: 96px !important;
}

.w-max-96px {
  max-width: 96px;
}

.w-min-96px {
  min-width: 96px;
}

.t-96px {
  top: 96px;
}

.l-96px {
  left: 96px;
}

.r-96px {
  right: 96px;
}

.b-96px {
  bottom: 96px;
}

.ti-96px {
  top: 96px !important;
}

.li-96px {
  left: 96px !important;
}

.ri-96px {
  right: 96px !important;
}

.bi-96px {
  bottom: 96px !important;
}

.w-97px {
  width: 97px;
}

.h-97px {
  height: 97px;
}

.wi-97px {
  width: 97px !important;
}

.hi-97px {
  height: 97px !important;
}

.w-max-97px {
  max-width: 97px;
}

.w-min-97px {
  min-width: 97px;
}

.t-97px {
  top: 97px;
}

.l-97px {
  left: 97px;
}

.r-97px {
  right: 97px;
}

.b-97px {
  bottom: 97px;
}

.ti-97px {
  top: 97px !important;
}

.li-97px {
  left: 97px !important;
}

.ri-97px {
  right: 97px !important;
}

.bi-97px {
  bottom: 97px !important;
}

.w-98px {
  width: 98px;
}

.h-98px {
  height: 98px;
}

.wi-98px {
  width: 98px !important;
}

.hi-98px {
  height: 98px !important;
}

.w-max-98px {
  max-width: 98px;
}

.w-min-98px {
  min-width: 98px;
}

.t-98px {
  top: 98px;
}

.l-98px {
  left: 98px;
}

.r-98px {
  right: 98px;
}

.b-98px {
  bottom: 98px;
}

.ti-98px {
  top: 98px !important;
}

.li-98px {
  left: 98px !important;
}

.ri-98px {
  right: 98px !important;
}

.bi-98px {
  bottom: 98px !important;
}

.w-99px {
  width: 99px;
}

.h-99px {
  height: 99px;
}

.wi-99px {
  width: 99px !important;
}

.hi-99px {
  height: 99px !important;
}

.w-max-99px {
  max-width: 99px;
}

.w-min-99px {
  min-width: 99px;
}

.t-99px {
  top: 99px;
}

.l-99px {
  left: 99px;
}

.r-99px {
  right: 99px;
}

.b-99px {
  bottom: 99px;
}

.ti-99px {
  top: 99px !important;
}

.li-99px {
  left: 99px !important;
}

.ri-99px {
  right: 99px !important;
}

.bi-99px {
  bottom: 99px !important;
}

.w-100px {
  width: 100px;
}

.h-100px {
  height: 100px;
}

.wi-100px {
  width: 100px !important;
}

.hi-100px {
  height: 100px !important;
}

.w-max-100px {
  max-width: 100px;
}

.w-min-100px {
  min-width: 100px;
}

.t-100px {
  top: 100px;
}

.l-100px {
  left: 100px;
}

.r-100px {
  right: 100px;
}

.b-100px {
  bottom: 100px;
}

.ti-100px {
  top: 100px !important;
}

.li-100px {
  left: 100px !important;
}

.ri-100px {
  right: 100px !important;
}

.bi-100px {
  bottom: 100px !important;
}

.w-101px {
  width: 101px;
}

.h-101px {
  height: 101px;
}

.wi-101px {
  width: 101px !important;
}

.hi-101px {
  height: 101px !important;
}

.w-max-101px {
  max-width: 101px;
}

.w-min-101px {
  min-width: 101px;
}

.t-101px {
  top: 101px;
}

.l-101px {
  left: 101px;
}

.r-101px {
  right: 101px;
}

.b-101px {
  bottom: 101px;
}

.ti-101px {
  top: 101px !important;
}

.li-101px {
  left: 101px !important;
}

.ri-101px {
  right: 101px !important;
}

.bi-101px {
  bottom: 101px !important;
}

.w-102px {
  width: 102px;
}

.h-102px {
  height: 102px;
}

.wi-102px {
  width: 102px !important;
}

.hi-102px {
  height: 102px !important;
}

.w-max-102px {
  max-width: 102px;
}

.w-min-102px {
  min-width: 102px;
}

.t-102px {
  top: 102px;
}

.l-102px {
  left: 102px;
}

.r-102px {
  right: 102px;
}

.b-102px {
  bottom: 102px;
}

.ti-102px {
  top: 102px !important;
}

.li-102px {
  left: 102px !important;
}

.ri-102px {
  right: 102px !important;
}

.bi-102px {
  bottom: 102px !important;
}

.w-103px {
  width: 103px;
}

.h-103px {
  height: 103px;
}

.wi-103px {
  width: 103px !important;
}

.hi-103px {
  height: 103px !important;
}

.w-max-103px {
  max-width: 103px;
}

.w-min-103px {
  min-width: 103px;
}

.t-103px {
  top: 103px;
}

.l-103px {
  left: 103px;
}

.r-103px {
  right: 103px;
}

.b-103px {
  bottom: 103px;
}

.ti-103px {
  top: 103px !important;
}

.li-103px {
  left: 103px !important;
}

.ri-103px {
  right: 103px !important;
}

.bi-103px {
  bottom: 103px !important;
}

.w-104px {
  width: 104px;
}

.h-104px {
  height: 104px;
}

.wi-104px {
  width: 104px !important;
}

.hi-104px {
  height: 104px !important;
}

.w-max-104px {
  max-width: 104px;
}

.w-min-104px {
  min-width: 104px;
}

.t-104px {
  top: 104px;
}

.l-104px {
  left: 104px;
}

.r-104px {
  right: 104px;
}

.b-104px {
  bottom: 104px;
}

.ti-104px {
  top: 104px !important;
}

.li-104px {
  left: 104px !important;
}

.ri-104px {
  right: 104px !important;
}

.bi-104px {
  bottom: 104px !important;
}

.w-105px {
  width: 105px;
}

.h-105px {
  height: 105px;
}

.wi-105px {
  width: 105px !important;
}

.hi-105px {
  height: 105px !important;
}

.w-max-105px {
  max-width: 105px;
}

.w-min-105px {
  min-width: 105px;
}

.t-105px {
  top: 105px;
}

.l-105px {
  left: 105px;
}

.r-105px {
  right: 105px;
}

.b-105px {
  bottom: 105px;
}

.ti-105px {
  top: 105px !important;
}

.li-105px {
  left: 105px !important;
}

.ri-105px {
  right: 105px !important;
}

.bi-105px {
  bottom: 105px !important;
}

.w-106px {
  width: 106px;
}

.h-106px {
  height: 106px;
}

.wi-106px {
  width: 106px !important;
}

.hi-106px {
  height: 106px !important;
}

.w-max-106px {
  max-width: 106px;
}

.w-min-106px {
  min-width: 106px;
}

.t-106px {
  top: 106px;
}

.l-106px {
  left: 106px;
}

.r-106px {
  right: 106px;
}

.b-106px {
  bottom: 106px;
}

.ti-106px {
  top: 106px !important;
}

.li-106px {
  left: 106px !important;
}

.ri-106px {
  right: 106px !important;
}

.bi-106px {
  bottom: 106px !important;
}

.w-107px {
  width: 107px;
}

.h-107px {
  height: 107px;
}

.wi-107px {
  width: 107px !important;
}

.hi-107px {
  height: 107px !important;
}

.w-max-107px {
  max-width: 107px;
}

.w-min-107px {
  min-width: 107px;
}

.t-107px {
  top: 107px;
}

.l-107px {
  left: 107px;
}

.r-107px {
  right: 107px;
}

.b-107px {
  bottom: 107px;
}

.ti-107px {
  top: 107px !important;
}

.li-107px {
  left: 107px !important;
}

.ri-107px {
  right: 107px !important;
}

.bi-107px {
  bottom: 107px !important;
}

.w-108px {
  width: 108px;
}

.h-108px {
  height: 108px;
}

.wi-108px {
  width: 108px !important;
}

.hi-108px {
  height: 108px !important;
}

.w-max-108px {
  max-width: 108px;
}

.w-min-108px {
  min-width: 108px;
}

.t-108px {
  top: 108px;
}

.l-108px {
  left: 108px;
}

.r-108px {
  right: 108px;
}

.b-108px {
  bottom: 108px;
}

.ti-108px {
  top: 108px !important;
}

.li-108px {
  left: 108px !important;
}

.ri-108px {
  right: 108px !important;
}

.bi-108px {
  bottom: 108px !important;
}

.w-109px {
  width: 109px;
}

.h-109px {
  height: 109px;
}

.wi-109px {
  width: 109px !important;
}

.hi-109px {
  height: 109px !important;
}

.w-max-109px {
  max-width: 109px;
}

.w-min-109px {
  min-width: 109px;
}

.t-109px {
  top: 109px;
}

.l-109px {
  left: 109px;
}

.r-109px {
  right: 109px;
}

.b-109px {
  bottom: 109px;
}

.ti-109px {
  top: 109px !important;
}

.li-109px {
  left: 109px !important;
}

.ri-109px {
  right: 109px !important;
}

.bi-109px {
  bottom: 109px !important;
}

.w-110px {
  width: 110px;
}

.h-110px {
  height: 110px;
}

.wi-110px {
  width: 110px !important;
}

.hi-110px {
  height: 110px !important;
}

.w-max-110px {
  max-width: 110px;
}

.w-min-110px {
  min-width: 110px;
}

.t-110px {
  top: 110px;
}

.l-110px {
  left: 110px;
}

.r-110px {
  right: 110px;
}

.b-110px {
  bottom: 110px;
}

.ti-110px {
  top: 110px !important;
}

.li-110px {
  left: 110px !important;
}

.ri-110px {
  right: 110px !important;
}

.bi-110px {
  bottom: 110px !important;
}

.w-111px {
  width: 111px;
}

.h-111px {
  height: 111px;
}

.wi-111px {
  width: 111px !important;
}

.hi-111px {
  height: 111px !important;
}

.w-max-111px {
  max-width: 111px;
}

.w-min-111px {
  min-width: 111px;
}

.t-111px {
  top: 111px;
}

.l-111px {
  left: 111px;
}

.r-111px {
  right: 111px;
}

.b-111px {
  bottom: 111px;
}

.ti-111px {
  top: 111px !important;
}

.li-111px {
  left: 111px !important;
}

.ri-111px {
  right: 111px !important;
}

.bi-111px {
  bottom: 111px !important;
}

.w-112px {
  width: 112px;
}

.h-112px {
  height: 112px;
}

.wi-112px {
  width: 112px !important;
}

.hi-112px {
  height: 112px !important;
}

.w-max-112px {
  max-width: 112px;
}

.w-min-112px {
  min-width: 112px;
}

.t-112px {
  top: 112px;
}

.l-112px {
  left: 112px;
}

.r-112px {
  right: 112px;
}

.b-112px {
  bottom: 112px;
}

.ti-112px {
  top: 112px !important;
}

.li-112px {
  left: 112px !important;
}

.ri-112px {
  right: 112px !important;
}

.bi-112px {
  bottom: 112px !important;
}

.w-113px {
  width: 113px;
}

.h-113px {
  height: 113px;
}

.wi-113px {
  width: 113px !important;
}

.hi-113px {
  height: 113px !important;
}

.w-max-113px {
  max-width: 113px;
}

.w-min-113px {
  min-width: 113px;
}

.t-113px {
  top: 113px;
}

.l-113px {
  left: 113px;
}

.r-113px {
  right: 113px;
}

.b-113px {
  bottom: 113px;
}

.ti-113px {
  top: 113px !important;
}

.li-113px {
  left: 113px !important;
}

.ri-113px {
  right: 113px !important;
}

.bi-113px {
  bottom: 113px !important;
}

.w-114px {
  width: 114px;
}

.h-114px {
  height: 114px;
}

.wi-114px {
  width: 114px !important;
}

.hi-114px {
  height: 114px !important;
}

.w-max-114px {
  max-width: 114px;
}

.w-min-114px {
  min-width: 114px;
}

.t-114px {
  top: 114px;
}

.l-114px {
  left: 114px;
}

.r-114px {
  right: 114px;
}

.b-114px {
  bottom: 114px;
}

.ti-114px {
  top: 114px !important;
}

.li-114px {
  left: 114px !important;
}

.ri-114px {
  right: 114px !important;
}

.bi-114px {
  bottom: 114px !important;
}

.w-115px {
  width: 115px;
}

.h-115px {
  height: 115px;
}

.wi-115px {
  width: 115px !important;
}

.hi-115px {
  height: 115px !important;
}

.w-max-115px {
  max-width: 115px;
}

.w-min-115px {
  min-width: 115px;
}

.t-115px {
  top: 115px;
}

.l-115px {
  left: 115px;
}

.r-115px {
  right: 115px;
}

.b-115px {
  bottom: 115px;
}

.ti-115px {
  top: 115px !important;
}

.li-115px {
  left: 115px !important;
}

.ri-115px {
  right: 115px !important;
}

.bi-115px {
  bottom: 115px !important;
}

.w-116px {
  width: 116px;
}

.h-116px {
  height: 116px;
}

.wi-116px {
  width: 116px !important;
}

.hi-116px {
  height: 116px !important;
}

.w-max-116px {
  max-width: 116px;
}

.w-min-116px {
  min-width: 116px;
}

.t-116px {
  top: 116px;
}

.l-116px {
  left: 116px;
}

.r-116px {
  right: 116px;
}

.b-116px {
  bottom: 116px;
}

.ti-116px {
  top: 116px !important;
}

.li-116px {
  left: 116px !important;
}

.ri-116px {
  right: 116px !important;
}

.bi-116px {
  bottom: 116px !important;
}

.w-117px {
  width: 117px;
}

.h-117px {
  height: 117px;
}

.wi-117px {
  width: 117px !important;
}

.hi-117px {
  height: 117px !important;
}

.w-max-117px {
  max-width: 117px;
}

.w-min-117px {
  min-width: 117px;
}

.t-117px {
  top: 117px;
}

.l-117px {
  left: 117px;
}

.r-117px {
  right: 117px;
}

.b-117px {
  bottom: 117px;
}

.ti-117px {
  top: 117px !important;
}

.li-117px {
  left: 117px !important;
}

.ri-117px {
  right: 117px !important;
}

.bi-117px {
  bottom: 117px !important;
}

.w-118px {
  width: 118px;
}

.h-118px {
  height: 118px;
}

.wi-118px {
  width: 118px !important;
}

.hi-118px {
  height: 118px !important;
}

.w-max-118px {
  max-width: 118px;
}

.w-min-118px {
  min-width: 118px;
}

.t-118px {
  top: 118px;
}

.l-118px {
  left: 118px;
}

.r-118px {
  right: 118px;
}

.b-118px {
  bottom: 118px;
}

.ti-118px {
  top: 118px !important;
}

.li-118px {
  left: 118px !important;
}

.ri-118px {
  right: 118px !important;
}

.bi-118px {
  bottom: 118px !important;
}

.w-119px {
  width: 119px;
}

.h-119px {
  height: 119px;
}

.wi-119px {
  width: 119px !important;
}

.hi-119px {
  height: 119px !important;
}

.w-max-119px {
  max-width: 119px;
}

.w-min-119px {
  min-width: 119px;
}

.t-119px {
  top: 119px;
}

.l-119px {
  left: 119px;
}

.r-119px {
  right: 119px;
}

.b-119px {
  bottom: 119px;
}

.ti-119px {
  top: 119px !important;
}

.li-119px {
  left: 119px !important;
}

.ri-119px {
  right: 119px !important;
}

.bi-119px {
  bottom: 119px !important;
}

.w-120px {
  width: 120px;
}

.h-120px {
  height: 120px;
}

.wi-120px {
  width: 120px !important;
}

.hi-120px {
  height: 120px !important;
}

.w-max-120px {
  max-width: 120px;
}

.w-min-120px {
  min-width: 120px;
}

.t-120px {
  top: 120px;
}

.l-120px {
  left: 120px;
}

.r-120px {
  right: 120px;
}

.b-120px {
  bottom: 120px;
}

.ti-120px {
  top: 120px !important;
}

.li-120px {
  left: 120px !important;
}

.ri-120px {
  right: 120px !important;
}

.bi-120px {
  bottom: 120px !important;
}

.w-121px {
  width: 121px;
}

.h-121px {
  height: 121px;
}

.wi-121px {
  width: 121px !important;
}

.hi-121px {
  height: 121px !important;
}

.w-max-121px {
  max-width: 121px;
}

.w-min-121px {
  min-width: 121px;
}

.t-121px {
  top: 121px;
}

.l-121px {
  left: 121px;
}

.r-121px {
  right: 121px;
}

.b-121px {
  bottom: 121px;
}

.ti-121px {
  top: 121px !important;
}

.li-121px {
  left: 121px !important;
}

.ri-121px {
  right: 121px !important;
}

.bi-121px {
  bottom: 121px !important;
}

.w-122px {
  width: 122px;
}

.h-122px {
  height: 122px;
}

.wi-122px {
  width: 122px !important;
}

.hi-122px {
  height: 122px !important;
}

.w-max-122px {
  max-width: 122px;
}

.w-min-122px {
  min-width: 122px;
}

.t-122px {
  top: 122px;
}

.l-122px {
  left: 122px;
}

.r-122px {
  right: 122px;
}

.b-122px {
  bottom: 122px;
}

.ti-122px {
  top: 122px !important;
}

.li-122px {
  left: 122px !important;
}

.ri-122px {
  right: 122px !important;
}

.bi-122px {
  bottom: 122px !important;
}

.w-123px {
  width: 123px;
}

.h-123px {
  height: 123px;
}

.wi-123px {
  width: 123px !important;
}

.hi-123px {
  height: 123px !important;
}

.w-max-123px {
  max-width: 123px;
}

.w-min-123px {
  min-width: 123px;
}

.t-123px {
  top: 123px;
}

.l-123px {
  left: 123px;
}

.r-123px {
  right: 123px;
}

.b-123px {
  bottom: 123px;
}

.ti-123px {
  top: 123px !important;
}

.li-123px {
  left: 123px !important;
}

.ri-123px {
  right: 123px !important;
}

.bi-123px {
  bottom: 123px !important;
}

.w-124px {
  width: 124px;
}

.h-124px {
  height: 124px;
}

.wi-124px {
  width: 124px !important;
}

.hi-124px {
  height: 124px !important;
}

.w-max-124px {
  max-width: 124px;
}

.w-min-124px {
  min-width: 124px;
}

.t-124px {
  top: 124px;
}

.l-124px {
  left: 124px;
}

.r-124px {
  right: 124px;
}

.b-124px {
  bottom: 124px;
}

.ti-124px {
  top: 124px !important;
}

.li-124px {
  left: 124px !important;
}

.ri-124px {
  right: 124px !important;
}

.bi-124px {
  bottom: 124px !important;
}

.w-125px {
  width: 125px;
}

.h-125px {
  height: 125px;
}

.wi-125px {
  width: 125px !important;
}

.hi-125px {
  height: 125px !important;
}

.w-max-125px {
  max-width: 125px;
}

.w-min-125px {
  min-width: 125px;
}

.t-125px {
  top: 125px;
}

.l-125px {
  left: 125px;
}

.r-125px {
  right: 125px;
}

.b-125px {
  bottom: 125px;
}

.ti-125px {
  top: 125px !important;
}

.li-125px {
  left: 125px !important;
}

.ri-125px {
  right: 125px !important;
}

.bi-125px {
  bottom: 125px !important;
}

.w-126px {
  width: 126px;
}

.h-126px {
  height: 126px;
}

.wi-126px {
  width: 126px !important;
}

.hi-126px {
  height: 126px !important;
}

.w-max-126px {
  max-width: 126px;
}

.w-min-126px {
  min-width: 126px;
}

.t-126px {
  top: 126px;
}

.l-126px {
  left: 126px;
}

.r-126px {
  right: 126px;
}

.b-126px {
  bottom: 126px;
}

.ti-126px {
  top: 126px !important;
}

.li-126px {
  left: 126px !important;
}

.ri-126px {
  right: 126px !important;
}

.bi-126px {
  bottom: 126px !important;
}

.w-127px {
  width: 127px;
}

.h-127px {
  height: 127px;
}

.wi-127px {
  width: 127px !important;
}

.hi-127px {
  height: 127px !important;
}

.w-max-127px {
  max-width: 127px;
}

.w-min-127px {
  min-width: 127px;
}

.t-127px {
  top: 127px;
}

.l-127px {
  left: 127px;
}

.r-127px {
  right: 127px;
}

.b-127px {
  bottom: 127px;
}

.ti-127px {
  top: 127px !important;
}

.li-127px {
  left: 127px !important;
}

.ri-127px {
  right: 127px !important;
}

.bi-127px {
  bottom: 127px !important;
}

.w-128px {
  width: 128px;
}

.h-128px {
  height: 128px;
}

.wi-128px {
  width: 128px !important;
}

.hi-128px {
  height: 128px !important;
}

.w-max-128px {
  max-width: 128px;
}

.w-min-128px {
  min-width: 128px;
}

.t-128px {
  top: 128px;
}

.l-128px {
  left: 128px;
}

.r-128px {
  right: 128px;
}

.b-128px {
  bottom: 128px;
}

.ti-128px {
  top: 128px !important;
}

.li-128px {
  left: 128px !important;
}

.ri-128px {
  right: 128px !important;
}

.bi-128px {
  bottom: 128px !important;
}

.w-129px {
  width: 129px;
}

.h-129px {
  height: 129px;
}

.wi-129px {
  width: 129px !important;
}

.hi-129px {
  height: 129px !important;
}

.w-max-129px {
  max-width: 129px;
}

.w-min-129px {
  min-width: 129px;
}

.t-129px {
  top: 129px;
}

.l-129px {
  left: 129px;
}

.r-129px {
  right: 129px;
}

.b-129px {
  bottom: 129px;
}

.ti-129px {
  top: 129px !important;
}

.li-129px {
  left: 129px !important;
}

.ri-129px {
  right: 129px !important;
}

.bi-129px {
  bottom: 129px !important;
}

.w-130px {
  width: 130px;
}

.h-130px {
  height: 130px;
}

.wi-130px {
  width: 130px !important;
}

.hi-130px {
  height: 130px !important;
}

.w-max-130px {
  max-width: 130px;
}

.w-min-130px {
  min-width: 130px;
}

.t-130px {
  top: 130px;
}

.l-130px {
  left: 130px;
}

.r-130px {
  right: 130px;
}

.b-130px {
  bottom: 130px;
}

.ti-130px {
  top: 130px !important;
}

.li-130px {
  left: 130px !important;
}

.ri-130px {
  right: 130px !important;
}

.bi-130px {
  bottom: 130px !important;
}

.w-131px {
  width: 131px;
}

.h-131px {
  height: 131px;
}

.wi-131px {
  width: 131px !important;
}

.hi-131px {
  height: 131px !important;
}

.w-max-131px {
  max-width: 131px;
}

.w-min-131px {
  min-width: 131px;
}

.t-131px {
  top: 131px;
}

.l-131px {
  left: 131px;
}

.r-131px {
  right: 131px;
}

.b-131px {
  bottom: 131px;
}

.ti-131px {
  top: 131px !important;
}

.li-131px {
  left: 131px !important;
}

.ri-131px {
  right: 131px !important;
}

.bi-131px {
  bottom: 131px !important;
}

.w-132px {
  width: 132px;
}

.h-132px {
  height: 132px;
}

.wi-132px {
  width: 132px !important;
}

.hi-132px {
  height: 132px !important;
}

.w-max-132px {
  max-width: 132px;
}

.w-min-132px {
  min-width: 132px;
}

.t-132px {
  top: 132px;
}

.l-132px {
  left: 132px;
}

.r-132px {
  right: 132px;
}

.b-132px {
  bottom: 132px;
}

.ti-132px {
  top: 132px !important;
}

.li-132px {
  left: 132px !important;
}

.ri-132px {
  right: 132px !important;
}

.bi-132px {
  bottom: 132px !important;
}

.w-133px {
  width: 133px;
}

.h-133px {
  height: 133px;
}

.wi-133px {
  width: 133px !important;
}

.hi-133px {
  height: 133px !important;
}

.w-max-133px {
  max-width: 133px;
}

.w-min-133px {
  min-width: 133px;
}

.t-133px {
  top: 133px;
}

.l-133px {
  left: 133px;
}

.r-133px {
  right: 133px;
}

.b-133px {
  bottom: 133px;
}

.ti-133px {
  top: 133px !important;
}

.li-133px {
  left: 133px !important;
}

.ri-133px {
  right: 133px !important;
}

.bi-133px {
  bottom: 133px !important;
}

.w-134px {
  width: 134px;
}

.h-134px {
  height: 134px;
}

.wi-134px {
  width: 134px !important;
}

.hi-134px {
  height: 134px !important;
}

.w-max-134px {
  max-width: 134px;
}

.w-min-134px {
  min-width: 134px;
}

.t-134px {
  top: 134px;
}

.l-134px {
  left: 134px;
}

.r-134px {
  right: 134px;
}

.b-134px {
  bottom: 134px;
}

.ti-134px {
  top: 134px !important;
}

.li-134px {
  left: 134px !important;
}

.ri-134px {
  right: 134px !important;
}

.bi-134px {
  bottom: 134px !important;
}

.w-135px {
  width: 135px;
}

.h-135px {
  height: 135px;
}

.wi-135px {
  width: 135px !important;
}

.hi-135px {
  height: 135px !important;
}

.w-max-135px {
  max-width: 135px;
}

.w-min-135px {
  min-width: 135px;
}

.t-135px {
  top: 135px;
}

.l-135px {
  left: 135px;
}

.r-135px {
  right: 135px;
}

.b-135px {
  bottom: 135px;
}

.ti-135px {
  top: 135px !important;
}

.li-135px {
  left: 135px !important;
}

.ri-135px {
  right: 135px !important;
}

.bi-135px {
  bottom: 135px !important;
}

.w-136px {
  width: 136px;
}

.h-136px {
  height: 136px;
}

.wi-136px {
  width: 136px !important;
}

.hi-136px {
  height: 136px !important;
}

.w-max-136px {
  max-width: 136px;
}

.w-min-136px {
  min-width: 136px;
}

.t-136px {
  top: 136px;
}

.l-136px {
  left: 136px;
}

.r-136px {
  right: 136px;
}

.b-136px {
  bottom: 136px;
}

.ti-136px {
  top: 136px !important;
}

.li-136px {
  left: 136px !important;
}

.ri-136px {
  right: 136px !important;
}

.bi-136px {
  bottom: 136px !important;
}

.w-137px {
  width: 137px;
}

.h-137px {
  height: 137px;
}

.wi-137px {
  width: 137px !important;
}

.hi-137px {
  height: 137px !important;
}

.w-max-137px {
  max-width: 137px;
}

.w-min-137px {
  min-width: 137px;
}

.t-137px {
  top: 137px;
}

.l-137px {
  left: 137px;
}

.r-137px {
  right: 137px;
}

.b-137px {
  bottom: 137px;
}

.ti-137px {
  top: 137px !important;
}

.li-137px {
  left: 137px !important;
}

.ri-137px {
  right: 137px !important;
}

.bi-137px {
  bottom: 137px !important;
}

.w-138px {
  width: 138px;
}

.h-138px {
  height: 138px;
}

.wi-138px {
  width: 138px !important;
}

.hi-138px {
  height: 138px !important;
}

.w-max-138px {
  max-width: 138px;
}

.w-min-138px {
  min-width: 138px;
}

.t-138px {
  top: 138px;
}

.l-138px {
  left: 138px;
}

.r-138px {
  right: 138px;
}

.b-138px {
  bottom: 138px;
}

.ti-138px {
  top: 138px !important;
}

.li-138px {
  left: 138px !important;
}

.ri-138px {
  right: 138px !important;
}

.bi-138px {
  bottom: 138px !important;
}

.w-139px {
  width: 139px;
}

.h-139px {
  height: 139px;
}

.wi-139px {
  width: 139px !important;
}

.hi-139px {
  height: 139px !important;
}

.w-max-139px {
  max-width: 139px;
}

.w-min-139px {
  min-width: 139px;
}

.t-139px {
  top: 139px;
}

.l-139px {
  left: 139px;
}

.r-139px {
  right: 139px;
}

.b-139px {
  bottom: 139px;
}

.ti-139px {
  top: 139px !important;
}

.li-139px {
  left: 139px !important;
}

.ri-139px {
  right: 139px !important;
}

.bi-139px {
  bottom: 139px !important;
}

.w-140px {
  width: 140px;
}

.h-140px {
  height: 140px;
}

.wi-140px {
  width: 140px !important;
}

.hi-140px {
  height: 140px !important;
}

.w-max-140px {
  max-width: 140px;
}

.w-min-140px {
  min-width: 140px;
}

.t-140px {
  top: 140px;
}

.l-140px {
  left: 140px;
}

.r-140px {
  right: 140px;
}

.b-140px {
  bottom: 140px;
}

.ti-140px {
  top: 140px !important;
}

.li-140px {
  left: 140px !important;
}

.ri-140px {
  right: 140px !important;
}

.bi-140px {
  bottom: 140px !important;
}

.w-141px {
  width: 141px;
}

.h-141px {
  height: 141px;
}

.wi-141px {
  width: 141px !important;
}

.hi-141px {
  height: 141px !important;
}

.w-max-141px {
  max-width: 141px;
}

.w-min-141px {
  min-width: 141px;
}

.t-141px {
  top: 141px;
}

.l-141px {
  left: 141px;
}

.r-141px {
  right: 141px;
}

.b-141px {
  bottom: 141px;
}

.ti-141px {
  top: 141px !important;
}

.li-141px {
  left: 141px !important;
}

.ri-141px {
  right: 141px !important;
}

.bi-141px {
  bottom: 141px !important;
}

.w-142px {
  width: 142px;
}

.h-142px {
  height: 142px;
}

.wi-142px {
  width: 142px !important;
}

.hi-142px {
  height: 142px !important;
}

.w-max-142px {
  max-width: 142px;
}

.w-min-142px {
  min-width: 142px;
}

.t-142px {
  top: 142px;
}

.l-142px {
  left: 142px;
}

.r-142px {
  right: 142px;
}

.b-142px {
  bottom: 142px;
}

.ti-142px {
  top: 142px !important;
}

.li-142px {
  left: 142px !important;
}

.ri-142px {
  right: 142px !important;
}

.bi-142px {
  bottom: 142px !important;
}

.w-143px {
  width: 143px;
}

.h-143px {
  height: 143px;
}

.wi-143px {
  width: 143px !important;
}

.hi-143px {
  height: 143px !important;
}

.w-max-143px {
  max-width: 143px;
}

.w-min-143px {
  min-width: 143px;
}

.t-143px {
  top: 143px;
}

.l-143px {
  left: 143px;
}

.r-143px {
  right: 143px;
}

.b-143px {
  bottom: 143px;
}

.ti-143px {
  top: 143px !important;
}

.li-143px {
  left: 143px !important;
}

.ri-143px {
  right: 143px !important;
}

.bi-143px {
  bottom: 143px !important;
}

.w-144px {
  width: 144px;
}

.h-144px {
  height: 144px;
}

.wi-144px {
  width: 144px !important;
}

.hi-144px {
  height: 144px !important;
}

.w-max-144px {
  max-width: 144px;
}

.w-min-144px {
  min-width: 144px;
}

.t-144px {
  top: 144px;
}

.l-144px {
  left: 144px;
}

.r-144px {
  right: 144px;
}

.b-144px {
  bottom: 144px;
}

.ti-144px {
  top: 144px !important;
}

.li-144px {
  left: 144px !important;
}

.ri-144px {
  right: 144px !important;
}

.bi-144px {
  bottom: 144px !important;
}

.w-145px {
  width: 145px;
}

.h-145px {
  height: 145px;
}

.wi-145px {
  width: 145px !important;
}

.hi-145px {
  height: 145px !important;
}

.w-max-145px {
  max-width: 145px;
}

.w-min-145px {
  min-width: 145px;
}

.t-145px {
  top: 145px;
}

.l-145px {
  left: 145px;
}

.r-145px {
  right: 145px;
}

.b-145px {
  bottom: 145px;
}

.ti-145px {
  top: 145px !important;
}

.li-145px {
  left: 145px !important;
}

.ri-145px {
  right: 145px !important;
}

.bi-145px {
  bottom: 145px !important;
}

.w-146px {
  width: 146px;
}

.h-146px {
  height: 146px;
}

.wi-146px {
  width: 146px !important;
}

.hi-146px {
  height: 146px !important;
}

.w-max-146px {
  max-width: 146px;
}

.w-min-146px {
  min-width: 146px;
}

.t-146px {
  top: 146px;
}

.l-146px {
  left: 146px;
}

.r-146px {
  right: 146px;
}

.b-146px {
  bottom: 146px;
}

.ti-146px {
  top: 146px !important;
}

.li-146px {
  left: 146px !important;
}

.ri-146px {
  right: 146px !important;
}

.bi-146px {
  bottom: 146px !important;
}

.w-147px {
  width: 147px;
}

.h-147px {
  height: 147px;
}

.wi-147px {
  width: 147px !important;
}

.hi-147px {
  height: 147px !important;
}

.w-max-147px {
  max-width: 147px;
}

.w-min-147px {
  min-width: 147px;
}

.t-147px {
  top: 147px;
}

.l-147px {
  left: 147px;
}

.r-147px {
  right: 147px;
}

.b-147px {
  bottom: 147px;
}

.ti-147px {
  top: 147px !important;
}

.li-147px {
  left: 147px !important;
}

.ri-147px {
  right: 147px !important;
}

.bi-147px {
  bottom: 147px !important;
}

.w-148px {
  width: 148px;
}

.h-148px {
  height: 148px;
}

.wi-148px {
  width: 148px !important;
}

.hi-148px {
  height: 148px !important;
}

.w-max-148px {
  max-width: 148px;
}

.w-min-148px {
  min-width: 148px;
}

.t-148px {
  top: 148px;
}

.l-148px {
  left: 148px;
}

.r-148px {
  right: 148px;
}

.b-148px {
  bottom: 148px;
}

.ti-148px {
  top: 148px !important;
}

.li-148px {
  left: 148px !important;
}

.ri-148px {
  right: 148px !important;
}

.bi-148px {
  bottom: 148px !important;
}

.w-149px {
  width: 149px;
}

.h-149px {
  height: 149px;
}

.wi-149px {
  width: 149px !important;
}

.hi-149px {
  height: 149px !important;
}

.w-max-149px {
  max-width: 149px;
}

.w-min-149px {
  min-width: 149px;
}

.t-149px {
  top: 149px;
}

.l-149px {
  left: 149px;
}

.r-149px {
  right: 149px;
}

.b-149px {
  bottom: 149px;
}

.ti-149px {
  top: 149px !important;
}

.li-149px {
  left: 149px !important;
}

.ri-149px {
  right: 149px !important;
}

.bi-149px {
  bottom: 149px !important;
}

.w-150px {
  width: 150px;
}

.h-150px {
  height: 150px;
}

.wi-150px {
  width: 150px !important;
}

.hi-150px {
  height: 150px !important;
}

.w-max-150px {
  max-width: 150px;
}

.w-min-150px {
  min-width: 150px;
}

.t-150px {
  top: 150px;
}

.l-150px {
  left: 150px;
}

.r-150px {
  right: 150px;
}

.b-150px {
  bottom: 150px;
}

.ti-150px {
  top: 150px !important;
}

.li-150px {
  left: 150px !important;
}

.ri-150px {
  right: 150px !important;
}

.bi-150px {
  bottom: 150px !important;
}

.w-151px {
  width: 151px;
}

.h-151px {
  height: 151px;
}

.wi-151px {
  width: 151px !important;
}

.hi-151px {
  height: 151px !important;
}

.w-max-151px {
  max-width: 151px;
}

.w-min-151px {
  min-width: 151px;
}

.t-151px {
  top: 151px;
}

.l-151px {
  left: 151px;
}

.r-151px {
  right: 151px;
}

.b-151px {
  bottom: 151px;
}

.ti-151px {
  top: 151px !important;
}

.li-151px {
  left: 151px !important;
}

.ri-151px {
  right: 151px !important;
}

.bi-151px {
  bottom: 151px !important;
}

.w-152px {
  width: 152px;
}

.h-152px {
  height: 152px;
}

.wi-152px {
  width: 152px !important;
}

.hi-152px {
  height: 152px !important;
}

.w-max-152px {
  max-width: 152px;
}

.w-min-152px {
  min-width: 152px;
}

.t-152px {
  top: 152px;
}

.l-152px {
  left: 152px;
}

.r-152px {
  right: 152px;
}

.b-152px {
  bottom: 152px;
}

.ti-152px {
  top: 152px !important;
}

.li-152px {
  left: 152px !important;
}

.ri-152px {
  right: 152px !important;
}

.bi-152px {
  bottom: 152px !important;
}

.w-153px {
  width: 153px;
}

.h-153px {
  height: 153px;
}

.wi-153px {
  width: 153px !important;
}

.hi-153px {
  height: 153px !important;
}

.w-max-153px {
  max-width: 153px;
}

.w-min-153px {
  min-width: 153px;
}

.t-153px {
  top: 153px;
}

.l-153px {
  left: 153px;
}

.r-153px {
  right: 153px;
}

.b-153px {
  bottom: 153px;
}

.ti-153px {
  top: 153px !important;
}

.li-153px {
  left: 153px !important;
}

.ri-153px {
  right: 153px !important;
}

.bi-153px {
  bottom: 153px !important;
}

.w-154px {
  width: 154px;
}

.h-154px {
  height: 154px;
}

.wi-154px {
  width: 154px !important;
}

.hi-154px {
  height: 154px !important;
}

.w-max-154px {
  max-width: 154px;
}

.w-min-154px {
  min-width: 154px;
}

.t-154px {
  top: 154px;
}

.l-154px {
  left: 154px;
}

.r-154px {
  right: 154px;
}

.b-154px {
  bottom: 154px;
}

.ti-154px {
  top: 154px !important;
}

.li-154px {
  left: 154px !important;
}

.ri-154px {
  right: 154px !important;
}

.bi-154px {
  bottom: 154px !important;
}

.w-155px {
  width: 155px;
}

.h-155px {
  height: 155px;
}

.wi-155px {
  width: 155px !important;
}

.hi-155px {
  height: 155px !important;
}

.w-max-155px {
  max-width: 155px;
}

.w-min-155px {
  min-width: 155px;
}

.t-155px {
  top: 155px;
}

.l-155px {
  left: 155px;
}

.r-155px {
  right: 155px;
}

.b-155px {
  bottom: 155px;
}

.ti-155px {
  top: 155px !important;
}

.li-155px {
  left: 155px !important;
}

.ri-155px {
  right: 155px !important;
}

.bi-155px {
  bottom: 155px !important;
}

.w-156px {
  width: 156px;
}

.h-156px {
  height: 156px;
}

.wi-156px {
  width: 156px !important;
}

.hi-156px {
  height: 156px !important;
}

.w-max-156px {
  max-width: 156px;
}

.w-min-156px {
  min-width: 156px;
}

.t-156px {
  top: 156px;
}

.l-156px {
  left: 156px;
}

.r-156px {
  right: 156px;
}

.b-156px {
  bottom: 156px;
}

.ti-156px {
  top: 156px !important;
}

.li-156px {
  left: 156px !important;
}

.ri-156px {
  right: 156px !important;
}

.bi-156px {
  bottom: 156px !important;
}

.w-157px {
  width: 157px;
}

.h-157px {
  height: 157px;
}

.wi-157px {
  width: 157px !important;
}

.hi-157px {
  height: 157px !important;
}

.w-max-157px {
  max-width: 157px;
}

.w-min-157px {
  min-width: 157px;
}

.t-157px {
  top: 157px;
}

.l-157px {
  left: 157px;
}

.r-157px {
  right: 157px;
}

.b-157px {
  bottom: 157px;
}

.ti-157px {
  top: 157px !important;
}

.li-157px {
  left: 157px !important;
}

.ri-157px {
  right: 157px !important;
}

.bi-157px {
  bottom: 157px !important;
}

.w-158px {
  width: 158px;
}

.h-158px {
  height: 158px;
}

.wi-158px {
  width: 158px !important;
}

.hi-158px {
  height: 158px !important;
}

.w-max-158px {
  max-width: 158px;
}

.w-min-158px {
  min-width: 158px;
}

.t-158px {
  top: 158px;
}

.l-158px {
  left: 158px;
}

.r-158px {
  right: 158px;
}

.b-158px {
  bottom: 158px;
}

.ti-158px {
  top: 158px !important;
}

.li-158px {
  left: 158px !important;
}

.ri-158px {
  right: 158px !important;
}

.bi-158px {
  bottom: 158px !important;
}

.w-159px {
  width: 159px;
}

.h-159px {
  height: 159px;
}

.wi-159px {
  width: 159px !important;
}

.hi-159px {
  height: 159px !important;
}

.w-max-159px {
  max-width: 159px;
}

.w-min-159px {
  min-width: 159px;
}

.t-159px {
  top: 159px;
}

.l-159px {
  left: 159px;
}

.r-159px {
  right: 159px;
}

.b-159px {
  bottom: 159px;
}

.ti-159px {
  top: 159px !important;
}

.li-159px {
  left: 159px !important;
}

.ri-159px {
  right: 159px !important;
}

.bi-159px {
  bottom: 159px !important;
}

.w-160px {
  width: 160px;
}

.h-160px {
  height: 160px;
}

.wi-160px {
  width: 160px !important;
}

.hi-160px {
  height: 160px !important;
}

.w-max-160px {
  max-width: 160px;
}

.w-min-160px {
  min-width: 160px;
}

.t-160px {
  top: 160px;
}

.l-160px {
  left: 160px;
}

.r-160px {
  right: 160px;
}

.b-160px {
  bottom: 160px;
}

.ti-160px {
  top: 160px !important;
}

.li-160px {
  left: 160px !important;
}

.ri-160px {
  right: 160px !important;
}

.bi-160px {
  bottom: 160px !important;
}

.w-161px {
  width: 161px;
}

.h-161px {
  height: 161px;
}

.wi-161px {
  width: 161px !important;
}

.hi-161px {
  height: 161px !important;
}

.w-max-161px {
  max-width: 161px;
}

.w-min-161px {
  min-width: 161px;
}

.t-161px {
  top: 161px;
}

.l-161px {
  left: 161px;
}

.r-161px {
  right: 161px;
}

.b-161px {
  bottom: 161px;
}

.ti-161px {
  top: 161px !important;
}

.li-161px {
  left: 161px !important;
}

.ri-161px {
  right: 161px !important;
}

.bi-161px {
  bottom: 161px !important;
}

.w-162px {
  width: 162px;
}

.h-162px {
  height: 162px;
}

.wi-162px {
  width: 162px !important;
}

.hi-162px {
  height: 162px !important;
}

.w-max-162px {
  max-width: 162px;
}

.w-min-162px {
  min-width: 162px;
}

.t-162px {
  top: 162px;
}

.l-162px {
  left: 162px;
}

.r-162px {
  right: 162px;
}

.b-162px {
  bottom: 162px;
}

.ti-162px {
  top: 162px !important;
}

.li-162px {
  left: 162px !important;
}

.ri-162px {
  right: 162px !important;
}

.bi-162px {
  bottom: 162px !important;
}

.w-163px {
  width: 163px;
}

.h-163px {
  height: 163px;
}

.wi-163px {
  width: 163px !important;
}

.hi-163px {
  height: 163px !important;
}

.w-max-163px {
  max-width: 163px;
}

.w-min-163px {
  min-width: 163px;
}

.t-163px {
  top: 163px;
}

.l-163px {
  left: 163px;
}

.r-163px {
  right: 163px;
}

.b-163px {
  bottom: 163px;
}

.ti-163px {
  top: 163px !important;
}

.li-163px {
  left: 163px !important;
}

.ri-163px {
  right: 163px !important;
}

.bi-163px {
  bottom: 163px !important;
}

.w-164px {
  width: 164px;
}

.h-164px {
  height: 164px;
}

.wi-164px {
  width: 164px !important;
}

.hi-164px {
  height: 164px !important;
}

.w-max-164px {
  max-width: 164px;
}

.w-min-164px {
  min-width: 164px;
}

.t-164px {
  top: 164px;
}

.l-164px {
  left: 164px;
}

.r-164px {
  right: 164px;
}

.b-164px {
  bottom: 164px;
}

.ti-164px {
  top: 164px !important;
}

.li-164px {
  left: 164px !important;
}

.ri-164px {
  right: 164px !important;
}

.bi-164px {
  bottom: 164px !important;
}

.w-165px {
  width: 165px;
}

.h-165px {
  height: 165px;
}

.wi-165px {
  width: 165px !important;
}

.hi-165px {
  height: 165px !important;
}

.w-max-165px {
  max-width: 165px;
}

.w-min-165px {
  min-width: 165px;
}

.t-165px {
  top: 165px;
}

.l-165px {
  left: 165px;
}

.r-165px {
  right: 165px;
}

.b-165px {
  bottom: 165px;
}

.ti-165px {
  top: 165px !important;
}

.li-165px {
  left: 165px !important;
}

.ri-165px {
  right: 165px !important;
}

.bi-165px {
  bottom: 165px !important;
}

.w-166px {
  width: 166px;
}

.h-166px {
  height: 166px;
}

.wi-166px {
  width: 166px !important;
}

.hi-166px {
  height: 166px !important;
}

.w-max-166px {
  max-width: 166px;
}

.w-min-166px {
  min-width: 166px;
}

.t-166px {
  top: 166px;
}

.l-166px {
  left: 166px;
}

.r-166px {
  right: 166px;
}

.b-166px {
  bottom: 166px;
}

.ti-166px {
  top: 166px !important;
}

.li-166px {
  left: 166px !important;
}

.ri-166px {
  right: 166px !important;
}

.bi-166px {
  bottom: 166px !important;
}

.w-167px {
  width: 167px;
}

.h-167px {
  height: 167px;
}

.wi-167px {
  width: 167px !important;
}

.hi-167px {
  height: 167px !important;
}

.w-max-167px {
  max-width: 167px;
}

.w-min-167px {
  min-width: 167px;
}

.t-167px {
  top: 167px;
}

.l-167px {
  left: 167px;
}

.r-167px {
  right: 167px;
}

.b-167px {
  bottom: 167px;
}

.ti-167px {
  top: 167px !important;
}

.li-167px {
  left: 167px !important;
}

.ri-167px {
  right: 167px !important;
}

.bi-167px {
  bottom: 167px !important;
}

.w-168px {
  width: 168px;
}

.h-168px {
  height: 168px;
}

.wi-168px {
  width: 168px !important;
}

.hi-168px {
  height: 168px !important;
}

.w-max-168px {
  max-width: 168px;
}

.w-min-168px {
  min-width: 168px;
}

.t-168px {
  top: 168px;
}

.l-168px {
  left: 168px;
}

.r-168px {
  right: 168px;
}

.b-168px {
  bottom: 168px;
}

.ti-168px {
  top: 168px !important;
}

.li-168px {
  left: 168px !important;
}

.ri-168px {
  right: 168px !important;
}

.bi-168px {
  bottom: 168px !important;
}

.w-169px {
  width: 169px;
}

.h-169px {
  height: 169px;
}

.wi-169px {
  width: 169px !important;
}

.hi-169px {
  height: 169px !important;
}

.w-max-169px {
  max-width: 169px;
}

.w-min-169px {
  min-width: 169px;
}

.t-169px {
  top: 169px;
}

.l-169px {
  left: 169px;
}

.r-169px {
  right: 169px;
}

.b-169px {
  bottom: 169px;
}

.ti-169px {
  top: 169px !important;
}

.li-169px {
  left: 169px !important;
}

.ri-169px {
  right: 169px !important;
}

.bi-169px {
  bottom: 169px !important;
}

.w-170px {
  width: 170px;
}

.h-170px {
  height: 170px;
}

.wi-170px {
  width: 170px !important;
}

.hi-170px {
  height: 170px !important;
}

.w-max-170px {
  max-width: 170px;
}

.w-min-170px {
  min-width: 170px;
}

.t-170px {
  top: 170px;
}

.l-170px {
  left: 170px;
}

.r-170px {
  right: 170px;
}

.b-170px {
  bottom: 170px;
}

.ti-170px {
  top: 170px !important;
}

.li-170px {
  left: 170px !important;
}

.ri-170px {
  right: 170px !important;
}

.bi-170px {
  bottom: 170px !important;
}

.w-171px {
  width: 171px;
}

.h-171px {
  height: 171px;
}

.wi-171px {
  width: 171px !important;
}

.hi-171px {
  height: 171px !important;
}

.w-max-171px {
  max-width: 171px;
}

.w-min-171px {
  min-width: 171px;
}

.t-171px {
  top: 171px;
}

.l-171px {
  left: 171px;
}

.r-171px {
  right: 171px;
}

.b-171px {
  bottom: 171px;
}

.ti-171px {
  top: 171px !important;
}

.li-171px {
  left: 171px !important;
}

.ri-171px {
  right: 171px !important;
}

.bi-171px {
  bottom: 171px !important;
}

.w-172px {
  width: 172px;
}

.h-172px {
  height: 172px;
}

.wi-172px {
  width: 172px !important;
}

.hi-172px {
  height: 172px !important;
}

.w-max-172px {
  max-width: 172px;
}

.w-min-172px {
  min-width: 172px;
}

.t-172px {
  top: 172px;
}

.l-172px {
  left: 172px;
}

.r-172px {
  right: 172px;
}

.b-172px {
  bottom: 172px;
}

.ti-172px {
  top: 172px !important;
}

.li-172px {
  left: 172px !important;
}

.ri-172px {
  right: 172px !important;
}

.bi-172px {
  bottom: 172px !important;
}

.w-173px {
  width: 173px;
}

.h-173px {
  height: 173px;
}

.wi-173px {
  width: 173px !important;
}

.hi-173px {
  height: 173px !important;
}

.w-max-173px {
  max-width: 173px;
}

.w-min-173px {
  min-width: 173px;
}

.t-173px {
  top: 173px;
}

.l-173px {
  left: 173px;
}

.r-173px {
  right: 173px;
}

.b-173px {
  bottom: 173px;
}

.ti-173px {
  top: 173px !important;
}

.li-173px {
  left: 173px !important;
}

.ri-173px {
  right: 173px !important;
}

.bi-173px {
  bottom: 173px !important;
}

.w-174px {
  width: 174px;
}

.h-174px {
  height: 174px;
}

.wi-174px {
  width: 174px !important;
}

.hi-174px {
  height: 174px !important;
}

.w-max-174px {
  max-width: 174px;
}

.w-min-174px {
  min-width: 174px;
}

.t-174px {
  top: 174px;
}

.l-174px {
  left: 174px;
}

.r-174px {
  right: 174px;
}

.b-174px {
  bottom: 174px;
}

.ti-174px {
  top: 174px !important;
}

.li-174px {
  left: 174px !important;
}

.ri-174px {
  right: 174px !important;
}

.bi-174px {
  bottom: 174px !important;
}

.w-175px {
  width: 175px;
}

.h-175px {
  height: 175px;
}

.wi-175px {
  width: 175px !important;
}

.hi-175px {
  height: 175px !important;
}

.w-max-175px {
  max-width: 175px;
}

.w-min-175px {
  min-width: 175px;
}

.t-175px {
  top: 175px;
}

.l-175px {
  left: 175px;
}

.r-175px {
  right: 175px;
}

.b-175px {
  bottom: 175px;
}

.ti-175px {
  top: 175px !important;
}

.li-175px {
  left: 175px !important;
}

.ri-175px {
  right: 175px !important;
}

.bi-175px {
  bottom: 175px !important;
}

.w-176px {
  width: 176px;
}

.h-176px {
  height: 176px;
}

.wi-176px {
  width: 176px !important;
}

.hi-176px {
  height: 176px !important;
}

.w-max-176px {
  max-width: 176px;
}

.w-min-176px {
  min-width: 176px;
}

.t-176px {
  top: 176px;
}

.l-176px {
  left: 176px;
}

.r-176px {
  right: 176px;
}

.b-176px {
  bottom: 176px;
}

.ti-176px {
  top: 176px !important;
}

.li-176px {
  left: 176px !important;
}

.ri-176px {
  right: 176px !important;
}

.bi-176px {
  bottom: 176px !important;
}

.w-177px {
  width: 177px;
}

.h-177px {
  height: 177px;
}

.wi-177px {
  width: 177px !important;
}

.hi-177px {
  height: 177px !important;
}

.w-max-177px {
  max-width: 177px;
}

.w-min-177px {
  min-width: 177px;
}

.t-177px {
  top: 177px;
}

.l-177px {
  left: 177px;
}

.r-177px {
  right: 177px;
}

.b-177px {
  bottom: 177px;
}

.ti-177px {
  top: 177px !important;
}

.li-177px {
  left: 177px !important;
}

.ri-177px {
  right: 177px !important;
}

.bi-177px {
  bottom: 177px !important;
}

.w-178px {
  width: 178px;
}

.h-178px {
  height: 178px;
}

.wi-178px {
  width: 178px !important;
}

.hi-178px {
  height: 178px !important;
}

.w-max-178px {
  max-width: 178px;
}

.w-min-178px {
  min-width: 178px;
}

.t-178px {
  top: 178px;
}

.l-178px {
  left: 178px;
}

.r-178px {
  right: 178px;
}

.b-178px {
  bottom: 178px;
}

.ti-178px {
  top: 178px !important;
}

.li-178px {
  left: 178px !important;
}

.ri-178px {
  right: 178px !important;
}

.bi-178px {
  bottom: 178px !important;
}

.w-179px {
  width: 179px;
}

.h-179px {
  height: 179px;
}

.wi-179px {
  width: 179px !important;
}

.hi-179px {
  height: 179px !important;
}

.w-max-179px {
  max-width: 179px;
}

.w-min-179px {
  min-width: 179px;
}

.t-179px {
  top: 179px;
}

.l-179px {
  left: 179px;
}

.r-179px {
  right: 179px;
}

.b-179px {
  bottom: 179px;
}

.ti-179px {
  top: 179px !important;
}

.li-179px {
  left: 179px !important;
}

.ri-179px {
  right: 179px !important;
}

.bi-179px {
  bottom: 179px !important;
}

.w-180px {
  width: 180px;
}

.h-180px {
  height: 180px;
}

.wi-180px {
  width: 180px !important;
}

.hi-180px {
  height: 180px !important;
}

.w-max-180px {
  max-width: 180px;
}

.w-min-180px {
  min-width: 180px;
}

.t-180px {
  top: 180px;
}

.l-180px {
  left: 180px;
}

.r-180px {
  right: 180px;
}

.b-180px {
  bottom: 180px;
}

.ti-180px {
  top: 180px !important;
}

.li-180px {
  left: 180px !important;
}

.ri-180px {
  right: 180px !important;
}

.bi-180px {
  bottom: 180px !important;
}

.w-181px {
  width: 181px;
}

.h-181px {
  height: 181px;
}

.wi-181px {
  width: 181px !important;
}

.hi-181px {
  height: 181px !important;
}

.w-max-181px {
  max-width: 181px;
}

.w-min-181px {
  min-width: 181px;
}

.t-181px {
  top: 181px;
}

.l-181px {
  left: 181px;
}

.r-181px {
  right: 181px;
}

.b-181px {
  bottom: 181px;
}

.ti-181px {
  top: 181px !important;
}

.li-181px {
  left: 181px !important;
}

.ri-181px {
  right: 181px !important;
}

.bi-181px {
  bottom: 181px !important;
}

.w-182px {
  width: 182px;
}

.h-182px {
  height: 182px;
}

.wi-182px {
  width: 182px !important;
}

.hi-182px {
  height: 182px !important;
}

.w-max-182px {
  max-width: 182px;
}

.w-min-182px {
  min-width: 182px;
}

.t-182px {
  top: 182px;
}

.l-182px {
  left: 182px;
}

.r-182px {
  right: 182px;
}

.b-182px {
  bottom: 182px;
}

.ti-182px {
  top: 182px !important;
}

.li-182px {
  left: 182px !important;
}

.ri-182px {
  right: 182px !important;
}

.bi-182px {
  bottom: 182px !important;
}

.w-183px {
  width: 183px;
}

.h-183px {
  height: 183px;
}

.wi-183px {
  width: 183px !important;
}

.hi-183px {
  height: 183px !important;
}

.w-max-183px {
  max-width: 183px;
}

.w-min-183px {
  min-width: 183px;
}

.t-183px {
  top: 183px;
}

.l-183px {
  left: 183px;
}

.r-183px {
  right: 183px;
}

.b-183px {
  bottom: 183px;
}

.ti-183px {
  top: 183px !important;
}

.li-183px {
  left: 183px !important;
}

.ri-183px {
  right: 183px !important;
}

.bi-183px {
  bottom: 183px !important;
}

.w-184px {
  width: 184px;
}

.h-184px {
  height: 184px;
}

.wi-184px {
  width: 184px !important;
}

.hi-184px {
  height: 184px !important;
}

.w-max-184px {
  max-width: 184px;
}

.w-min-184px {
  min-width: 184px;
}

.t-184px {
  top: 184px;
}

.l-184px {
  left: 184px;
}

.r-184px {
  right: 184px;
}

.b-184px {
  bottom: 184px;
}

.ti-184px {
  top: 184px !important;
}

.li-184px {
  left: 184px !important;
}

.ri-184px {
  right: 184px !important;
}

.bi-184px {
  bottom: 184px !important;
}

.w-185px {
  width: 185px;
}

.h-185px {
  height: 185px;
}

.wi-185px {
  width: 185px !important;
}

.hi-185px {
  height: 185px !important;
}

.w-max-185px {
  max-width: 185px;
}

.w-min-185px {
  min-width: 185px;
}

.t-185px {
  top: 185px;
}

.l-185px {
  left: 185px;
}

.r-185px {
  right: 185px;
}

.b-185px {
  bottom: 185px;
}

.ti-185px {
  top: 185px !important;
}

.li-185px {
  left: 185px !important;
}

.ri-185px {
  right: 185px !important;
}

.bi-185px {
  bottom: 185px !important;
}

.w-186px {
  width: 186px;
}

.h-186px {
  height: 186px;
}

.wi-186px {
  width: 186px !important;
}

.hi-186px {
  height: 186px !important;
}

.w-max-186px {
  max-width: 186px;
}

.w-min-186px {
  min-width: 186px;
}

.t-186px {
  top: 186px;
}

.l-186px {
  left: 186px;
}

.r-186px {
  right: 186px;
}

.b-186px {
  bottom: 186px;
}

.ti-186px {
  top: 186px !important;
}

.li-186px {
  left: 186px !important;
}

.ri-186px {
  right: 186px !important;
}

.bi-186px {
  bottom: 186px !important;
}

.w-187px {
  width: 187px;
}

.h-187px {
  height: 187px;
}

.wi-187px {
  width: 187px !important;
}

.hi-187px {
  height: 187px !important;
}

.w-max-187px {
  max-width: 187px;
}

.w-min-187px {
  min-width: 187px;
}

.t-187px {
  top: 187px;
}

.l-187px {
  left: 187px;
}

.r-187px {
  right: 187px;
}

.b-187px {
  bottom: 187px;
}

.ti-187px {
  top: 187px !important;
}

.li-187px {
  left: 187px !important;
}

.ri-187px {
  right: 187px !important;
}

.bi-187px {
  bottom: 187px !important;
}

.w-188px {
  width: 188px;
}

.h-188px {
  height: 188px;
}

.wi-188px {
  width: 188px !important;
}

.hi-188px {
  height: 188px !important;
}

.w-max-188px {
  max-width: 188px;
}

.w-min-188px {
  min-width: 188px;
}

.t-188px {
  top: 188px;
}

.l-188px {
  left: 188px;
}

.r-188px {
  right: 188px;
}

.b-188px {
  bottom: 188px;
}

.ti-188px {
  top: 188px !important;
}

.li-188px {
  left: 188px !important;
}

.ri-188px {
  right: 188px !important;
}

.bi-188px {
  bottom: 188px !important;
}

.w-189px {
  width: 189px;
}

.h-189px {
  height: 189px;
}

.wi-189px {
  width: 189px !important;
}

.hi-189px {
  height: 189px !important;
}

.w-max-189px {
  max-width: 189px;
}

.w-min-189px {
  min-width: 189px;
}

.t-189px {
  top: 189px;
}

.l-189px {
  left: 189px;
}

.r-189px {
  right: 189px;
}

.b-189px {
  bottom: 189px;
}

.ti-189px {
  top: 189px !important;
}

.li-189px {
  left: 189px !important;
}

.ri-189px {
  right: 189px !important;
}

.bi-189px {
  bottom: 189px !important;
}

.w-190px {
  width: 190px;
}

.h-190px {
  height: 190px;
}

.wi-190px {
  width: 190px !important;
}

.hi-190px {
  height: 190px !important;
}

.w-max-190px {
  max-width: 190px;
}

.w-min-190px {
  min-width: 190px;
}

.t-190px {
  top: 190px;
}

.l-190px {
  left: 190px;
}

.r-190px {
  right: 190px;
}

.b-190px {
  bottom: 190px;
}

.ti-190px {
  top: 190px !important;
}

.li-190px {
  left: 190px !important;
}

.ri-190px {
  right: 190px !important;
}

.bi-190px {
  bottom: 190px !important;
}

.w-191px {
  width: 191px;
}

.h-191px {
  height: 191px;
}

.wi-191px {
  width: 191px !important;
}

.hi-191px {
  height: 191px !important;
}

.w-max-191px {
  max-width: 191px;
}

.w-min-191px {
  min-width: 191px;
}

.t-191px {
  top: 191px;
}

.l-191px {
  left: 191px;
}

.r-191px {
  right: 191px;
}

.b-191px {
  bottom: 191px;
}

.ti-191px {
  top: 191px !important;
}

.li-191px {
  left: 191px !important;
}

.ri-191px {
  right: 191px !important;
}

.bi-191px {
  bottom: 191px !important;
}

.w-192px {
  width: 192px;
}

.h-192px {
  height: 192px;
}

.wi-192px {
  width: 192px !important;
}

.hi-192px {
  height: 192px !important;
}

.w-max-192px {
  max-width: 192px;
}

.w-min-192px {
  min-width: 192px;
}

.t-192px {
  top: 192px;
}

.l-192px {
  left: 192px;
}

.r-192px {
  right: 192px;
}

.b-192px {
  bottom: 192px;
}

.ti-192px {
  top: 192px !important;
}

.li-192px {
  left: 192px !important;
}

.ri-192px {
  right: 192px !important;
}

.bi-192px {
  bottom: 192px !important;
}

.w-193px {
  width: 193px;
}

.h-193px {
  height: 193px;
}

.wi-193px {
  width: 193px !important;
}

.hi-193px {
  height: 193px !important;
}

.w-max-193px {
  max-width: 193px;
}

.w-min-193px {
  min-width: 193px;
}

.t-193px {
  top: 193px;
}

.l-193px {
  left: 193px;
}

.r-193px {
  right: 193px;
}

.b-193px {
  bottom: 193px;
}

.ti-193px {
  top: 193px !important;
}

.li-193px {
  left: 193px !important;
}

.ri-193px {
  right: 193px !important;
}

.bi-193px {
  bottom: 193px !important;
}

.w-194px {
  width: 194px;
}

.h-194px {
  height: 194px;
}

.wi-194px {
  width: 194px !important;
}

.hi-194px {
  height: 194px !important;
}

.w-max-194px {
  max-width: 194px;
}

.w-min-194px {
  min-width: 194px;
}

.t-194px {
  top: 194px;
}

.l-194px {
  left: 194px;
}

.r-194px {
  right: 194px;
}

.b-194px {
  bottom: 194px;
}

.ti-194px {
  top: 194px !important;
}

.li-194px {
  left: 194px !important;
}

.ri-194px {
  right: 194px !important;
}

.bi-194px {
  bottom: 194px !important;
}

.w-195px {
  width: 195px;
}

.h-195px {
  height: 195px;
}

.wi-195px {
  width: 195px !important;
}

.hi-195px {
  height: 195px !important;
}

.w-max-195px {
  max-width: 195px;
}

.w-min-195px {
  min-width: 195px;
}

.t-195px {
  top: 195px;
}

.l-195px {
  left: 195px;
}

.r-195px {
  right: 195px;
}

.b-195px {
  bottom: 195px;
}

.ti-195px {
  top: 195px !important;
}

.li-195px {
  left: 195px !important;
}

.ri-195px {
  right: 195px !important;
}

.bi-195px {
  bottom: 195px !important;
}

.w-196px {
  width: 196px;
}

.h-196px {
  height: 196px;
}

.wi-196px {
  width: 196px !important;
}

.hi-196px {
  height: 196px !important;
}

.w-max-196px {
  max-width: 196px;
}

.w-min-196px {
  min-width: 196px;
}

.t-196px {
  top: 196px;
}

.l-196px {
  left: 196px;
}

.r-196px {
  right: 196px;
}

.b-196px {
  bottom: 196px;
}

.ti-196px {
  top: 196px !important;
}

.li-196px {
  left: 196px !important;
}

.ri-196px {
  right: 196px !important;
}

.bi-196px {
  bottom: 196px !important;
}

.w-197px {
  width: 197px;
}

.h-197px {
  height: 197px;
}

.wi-197px {
  width: 197px !important;
}

.hi-197px {
  height: 197px !important;
}

.w-max-197px {
  max-width: 197px;
}

.w-min-197px {
  min-width: 197px;
}

.t-197px {
  top: 197px;
}

.l-197px {
  left: 197px;
}

.r-197px {
  right: 197px;
}

.b-197px {
  bottom: 197px;
}

.ti-197px {
  top: 197px !important;
}

.li-197px {
  left: 197px !important;
}

.ri-197px {
  right: 197px !important;
}

.bi-197px {
  bottom: 197px !important;
}

.w-198px {
  width: 198px;
}

.h-198px {
  height: 198px;
}

.wi-198px {
  width: 198px !important;
}

.hi-198px {
  height: 198px !important;
}

.w-max-198px {
  max-width: 198px;
}

.w-min-198px {
  min-width: 198px;
}

.t-198px {
  top: 198px;
}

.l-198px {
  left: 198px;
}

.r-198px {
  right: 198px;
}

.b-198px {
  bottom: 198px;
}

.ti-198px {
  top: 198px !important;
}

.li-198px {
  left: 198px !important;
}

.ri-198px {
  right: 198px !important;
}

.bi-198px {
  bottom: 198px !important;
}

.w-199px {
  width: 199px;
}

.h-199px {
  height: 199px;
}

.wi-199px {
  width: 199px !important;
}

.hi-199px {
  height: 199px !important;
}

.w-max-199px {
  max-width: 199px;
}

.w-min-199px {
  min-width: 199px;
}

.t-199px {
  top: 199px;
}

.l-199px {
  left: 199px;
}

.r-199px {
  right: 199px;
}

.b-199px {
  bottom: 199px;
}

.ti-199px {
  top: 199px !important;
}

.li-199px {
  left: 199px !important;
}

.ri-199px {
  right: 199px !important;
}

.bi-199px {
  bottom: 199px !important;
}

.w-200px {
  width: 200px;
}

.h-200px {
  height: 200px;
}

.wi-200px {
  width: 200px !important;
}

.hi-200px {
  height: 200px !important;
}

.w-max-200px {
  max-width: 200px;
}

.w-min-200px {
  min-width: 200px;
}

.t-200px {
  top: 200px;
}

.l-200px {
  left: 200px;
}

.r-200px {
  right: 200px;
}

.b-200px {
  bottom: 200px;
}

.ti-200px {
  top: 200px !important;
}

.li-200px {
  left: 200px !important;
}

.ri-200px {
  right: 200px !important;
}

.bi-200px {
  bottom: 200px !important;
}

.w-201px {
  width: 201px;
}

.h-201px {
  height: 201px;
}

.wi-201px {
  width: 201px !important;
}

.hi-201px {
  height: 201px !important;
}

.w-max-201px {
  max-width: 201px;
}

.w-min-201px {
  min-width: 201px;
}

.t-201px {
  top: 201px;
}

.l-201px {
  left: 201px;
}

.r-201px {
  right: 201px;
}

.b-201px {
  bottom: 201px;
}

.ti-201px {
  top: 201px !important;
}

.li-201px {
  left: 201px !important;
}

.ri-201px {
  right: 201px !important;
}

.bi-201px {
  bottom: 201px !important;
}

.w-202px {
  width: 202px;
}

.h-202px {
  height: 202px;
}

.wi-202px {
  width: 202px !important;
}

.hi-202px {
  height: 202px !important;
}

.w-max-202px {
  max-width: 202px;
}

.w-min-202px {
  min-width: 202px;
}

.t-202px {
  top: 202px;
}

.l-202px {
  left: 202px;
}

.r-202px {
  right: 202px;
}

.b-202px {
  bottom: 202px;
}

.ti-202px {
  top: 202px !important;
}

.li-202px {
  left: 202px !important;
}

.ri-202px {
  right: 202px !important;
}

.bi-202px {
  bottom: 202px !important;
}

.w-203px {
  width: 203px;
}

.h-203px {
  height: 203px;
}

.wi-203px {
  width: 203px !important;
}

.hi-203px {
  height: 203px !important;
}

.w-max-203px {
  max-width: 203px;
}

.w-min-203px {
  min-width: 203px;
}

.t-203px {
  top: 203px;
}

.l-203px {
  left: 203px;
}

.r-203px {
  right: 203px;
}

.b-203px {
  bottom: 203px;
}

.ti-203px {
  top: 203px !important;
}

.li-203px {
  left: 203px !important;
}

.ri-203px {
  right: 203px !important;
}

.bi-203px {
  bottom: 203px !important;
}

.w-204px {
  width: 204px;
}

.h-204px {
  height: 204px;
}

.wi-204px {
  width: 204px !important;
}

.hi-204px {
  height: 204px !important;
}

.w-max-204px {
  max-width: 204px;
}

.w-min-204px {
  min-width: 204px;
}

.t-204px {
  top: 204px;
}

.l-204px {
  left: 204px;
}

.r-204px {
  right: 204px;
}

.b-204px {
  bottom: 204px;
}

.ti-204px {
  top: 204px !important;
}

.li-204px {
  left: 204px !important;
}

.ri-204px {
  right: 204px !important;
}

.bi-204px {
  bottom: 204px !important;
}

.w-205px {
  width: 205px;
}

.h-205px {
  height: 205px;
}

.wi-205px {
  width: 205px !important;
}

.hi-205px {
  height: 205px !important;
}

.w-max-205px {
  max-width: 205px;
}

.w-min-205px {
  min-width: 205px;
}

.t-205px {
  top: 205px;
}

.l-205px {
  left: 205px;
}

.r-205px {
  right: 205px;
}

.b-205px {
  bottom: 205px;
}

.ti-205px {
  top: 205px !important;
}

.li-205px {
  left: 205px !important;
}

.ri-205px {
  right: 205px !important;
}

.bi-205px {
  bottom: 205px !important;
}

.w-206px {
  width: 206px;
}

.h-206px {
  height: 206px;
}

.wi-206px {
  width: 206px !important;
}

.hi-206px {
  height: 206px !important;
}

.w-max-206px {
  max-width: 206px;
}

.w-min-206px {
  min-width: 206px;
}

.t-206px {
  top: 206px;
}

.l-206px {
  left: 206px;
}

.r-206px {
  right: 206px;
}

.b-206px {
  bottom: 206px;
}

.ti-206px {
  top: 206px !important;
}

.li-206px {
  left: 206px !important;
}

.ri-206px {
  right: 206px !important;
}

.bi-206px {
  bottom: 206px !important;
}

.w-207px {
  width: 207px;
}

.h-207px {
  height: 207px;
}

.wi-207px {
  width: 207px !important;
}

.hi-207px {
  height: 207px !important;
}

.w-max-207px {
  max-width: 207px;
}

.w-min-207px {
  min-width: 207px;
}

.t-207px {
  top: 207px;
}

.l-207px {
  left: 207px;
}

.r-207px {
  right: 207px;
}

.b-207px {
  bottom: 207px;
}

.ti-207px {
  top: 207px !important;
}

.li-207px {
  left: 207px !important;
}

.ri-207px {
  right: 207px !important;
}

.bi-207px {
  bottom: 207px !important;
}

.w-208px {
  width: 208px;
}

.h-208px {
  height: 208px;
}

.wi-208px {
  width: 208px !important;
}

.hi-208px {
  height: 208px !important;
}

.w-max-208px {
  max-width: 208px;
}

.w-min-208px {
  min-width: 208px;
}

.t-208px {
  top: 208px;
}

.l-208px {
  left: 208px;
}

.r-208px {
  right: 208px;
}

.b-208px {
  bottom: 208px;
}

.ti-208px {
  top: 208px !important;
}

.li-208px {
  left: 208px !important;
}

.ri-208px {
  right: 208px !important;
}

.bi-208px {
  bottom: 208px !important;
}

.w-209px {
  width: 209px;
}

.h-209px {
  height: 209px;
}

.wi-209px {
  width: 209px !important;
}

.hi-209px {
  height: 209px !important;
}

.w-max-209px {
  max-width: 209px;
}

.w-min-209px {
  min-width: 209px;
}

.t-209px {
  top: 209px;
}

.l-209px {
  left: 209px;
}

.r-209px {
  right: 209px;
}

.b-209px {
  bottom: 209px;
}

.ti-209px {
  top: 209px !important;
}

.li-209px {
  left: 209px !important;
}

.ri-209px {
  right: 209px !important;
}

.bi-209px {
  bottom: 209px !important;
}

.w-210px {
  width: 210px;
}

.h-210px {
  height: 210px;
}

.wi-210px {
  width: 210px !important;
}

.hi-210px {
  height: 210px !important;
}

.w-max-210px {
  max-width: 210px;
}

.w-min-210px {
  min-width: 210px;
}

.t-210px {
  top: 210px;
}

.l-210px {
  left: 210px;
}

.r-210px {
  right: 210px;
}

.b-210px {
  bottom: 210px;
}

.ti-210px {
  top: 210px !important;
}

.li-210px {
  left: 210px !important;
}

.ri-210px {
  right: 210px !important;
}

.bi-210px {
  bottom: 210px !important;
}

.w-211px {
  width: 211px;
}

.h-211px {
  height: 211px;
}

.wi-211px {
  width: 211px !important;
}

.hi-211px {
  height: 211px !important;
}

.w-max-211px {
  max-width: 211px;
}

.w-min-211px {
  min-width: 211px;
}

.t-211px {
  top: 211px;
}

.l-211px {
  left: 211px;
}

.r-211px {
  right: 211px;
}

.b-211px {
  bottom: 211px;
}

.ti-211px {
  top: 211px !important;
}

.li-211px {
  left: 211px !important;
}

.ri-211px {
  right: 211px !important;
}

.bi-211px {
  bottom: 211px !important;
}

.w-212px {
  width: 212px;
}

.h-212px {
  height: 212px;
}

.wi-212px {
  width: 212px !important;
}

.hi-212px {
  height: 212px !important;
}

.w-max-212px {
  max-width: 212px;
}

.w-min-212px {
  min-width: 212px;
}

.t-212px {
  top: 212px;
}

.l-212px {
  left: 212px;
}

.r-212px {
  right: 212px;
}

.b-212px {
  bottom: 212px;
}

.ti-212px {
  top: 212px !important;
}

.li-212px {
  left: 212px !important;
}

.ri-212px {
  right: 212px !important;
}

.bi-212px {
  bottom: 212px !important;
}

.w-213px {
  width: 213px;
}

.h-213px {
  height: 213px;
}

.wi-213px {
  width: 213px !important;
}

.hi-213px {
  height: 213px !important;
}

.w-max-213px {
  max-width: 213px;
}

.w-min-213px {
  min-width: 213px;
}

.t-213px {
  top: 213px;
}

.l-213px {
  left: 213px;
}

.r-213px {
  right: 213px;
}

.b-213px {
  bottom: 213px;
}

.ti-213px {
  top: 213px !important;
}

.li-213px {
  left: 213px !important;
}

.ri-213px {
  right: 213px !important;
}

.bi-213px {
  bottom: 213px !important;
}

.w-214px {
  width: 214px;
}

.h-214px {
  height: 214px;
}

.wi-214px {
  width: 214px !important;
}

.hi-214px {
  height: 214px !important;
}

.w-max-214px {
  max-width: 214px;
}

.w-min-214px {
  min-width: 214px;
}

.t-214px {
  top: 214px;
}

.l-214px {
  left: 214px;
}

.r-214px {
  right: 214px;
}

.b-214px {
  bottom: 214px;
}

.ti-214px {
  top: 214px !important;
}

.li-214px {
  left: 214px !important;
}

.ri-214px {
  right: 214px !important;
}

.bi-214px {
  bottom: 214px !important;
}

.w-215px {
  width: 215px;
}

.h-215px {
  height: 215px;
}

.wi-215px {
  width: 215px !important;
}

.hi-215px {
  height: 215px !important;
}

.w-max-215px {
  max-width: 215px;
}

.w-min-215px {
  min-width: 215px;
}

.t-215px {
  top: 215px;
}

.l-215px {
  left: 215px;
}

.r-215px {
  right: 215px;
}

.b-215px {
  bottom: 215px;
}

.ti-215px {
  top: 215px !important;
}

.li-215px {
  left: 215px !important;
}

.ri-215px {
  right: 215px !important;
}

.bi-215px {
  bottom: 215px !important;
}

.w-216px {
  width: 216px;
}

.h-216px {
  height: 216px;
}

.wi-216px {
  width: 216px !important;
}

.hi-216px {
  height: 216px !important;
}

.w-max-216px {
  max-width: 216px;
}

.w-min-216px {
  min-width: 216px;
}

.t-216px {
  top: 216px;
}

.l-216px {
  left: 216px;
}

.r-216px {
  right: 216px;
}

.b-216px {
  bottom: 216px;
}

.ti-216px {
  top: 216px !important;
}

.li-216px {
  left: 216px !important;
}

.ri-216px {
  right: 216px !important;
}

.bi-216px {
  bottom: 216px !important;
}

.w-217px {
  width: 217px;
}

.h-217px {
  height: 217px;
}

.wi-217px {
  width: 217px !important;
}

.hi-217px {
  height: 217px !important;
}

.w-max-217px {
  max-width: 217px;
}

.w-min-217px {
  min-width: 217px;
}

.t-217px {
  top: 217px;
}

.l-217px {
  left: 217px;
}

.r-217px {
  right: 217px;
}

.b-217px {
  bottom: 217px;
}

.ti-217px {
  top: 217px !important;
}

.li-217px {
  left: 217px !important;
}

.ri-217px {
  right: 217px !important;
}

.bi-217px {
  bottom: 217px !important;
}

.w-218px {
  width: 218px;
}

.h-218px {
  height: 218px;
}

.wi-218px {
  width: 218px !important;
}

.hi-218px {
  height: 218px !important;
}

.w-max-218px {
  max-width: 218px;
}

.w-min-218px {
  min-width: 218px;
}

.t-218px {
  top: 218px;
}

.l-218px {
  left: 218px;
}

.r-218px {
  right: 218px;
}

.b-218px {
  bottom: 218px;
}

.ti-218px {
  top: 218px !important;
}

.li-218px {
  left: 218px !important;
}

.ri-218px {
  right: 218px !important;
}

.bi-218px {
  bottom: 218px !important;
}

.w-219px {
  width: 219px;
}

.h-219px {
  height: 219px;
}

.wi-219px {
  width: 219px !important;
}

.hi-219px {
  height: 219px !important;
}

.w-max-219px {
  max-width: 219px;
}

.w-min-219px {
  min-width: 219px;
}

.t-219px {
  top: 219px;
}

.l-219px {
  left: 219px;
}

.r-219px {
  right: 219px;
}

.b-219px {
  bottom: 219px;
}

.ti-219px {
  top: 219px !important;
}

.li-219px {
  left: 219px !important;
}

.ri-219px {
  right: 219px !important;
}

.bi-219px {
  bottom: 219px !important;
}

.w-220px {
  width: 220px;
}

.h-220px {
  height: 220px;
}

.wi-220px {
  width: 220px !important;
}

.hi-220px {
  height: 220px !important;
}

.w-max-220px {
  max-width: 220px;
}

.w-min-220px {
  min-width: 220px;
}

.t-220px {
  top: 220px;
}

.l-220px {
  left: 220px;
}

.r-220px {
  right: 220px;
}

.b-220px {
  bottom: 220px;
}

.ti-220px {
  top: 220px !important;
}

.li-220px {
  left: 220px !important;
}

.ri-220px {
  right: 220px !important;
}

.bi-220px {
  bottom: 220px !important;
}

.w-221px {
  width: 221px;
}

.h-221px {
  height: 221px;
}

.wi-221px {
  width: 221px !important;
}

.hi-221px {
  height: 221px !important;
}

.w-max-221px {
  max-width: 221px;
}

.w-min-221px {
  min-width: 221px;
}

.t-221px {
  top: 221px;
}

.l-221px {
  left: 221px;
}

.r-221px {
  right: 221px;
}

.b-221px {
  bottom: 221px;
}

.ti-221px {
  top: 221px !important;
}

.li-221px {
  left: 221px !important;
}

.ri-221px {
  right: 221px !important;
}

.bi-221px {
  bottom: 221px !important;
}

.w-222px {
  width: 222px;
}

.h-222px {
  height: 222px;
}

.wi-222px {
  width: 222px !important;
}

.hi-222px {
  height: 222px !important;
}

.w-max-222px {
  max-width: 222px;
}

.w-min-222px {
  min-width: 222px;
}

.t-222px {
  top: 222px;
}

.l-222px {
  left: 222px;
}

.r-222px {
  right: 222px;
}

.b-222px {
  bottom: 222px;
}

.ti-222px {
  top: 222px !important;
}

.li-222px {
  left: 222px !important;
}

.ri-222px {
  right: 222px !important;
}

.bi-222px {
  bottom: 222px !important;
}

.w-223px {
  width: 223px;
}

.h-223px {
  height: 223px;
}

.wi-223px {
  width: 223px !important;
}

.hi-223px {
  height: 223px !important;
}

.w-max-223px {
  max-width: 223px;
}

.w-min-223px {
  min-width: 223px;
}

.t-223px {
  top: 223px;
}

.l-223px {
  left: 223px;
}

.r-223px {
  right: 223px;
}

.b-223px {
  bottom: 223px;
}

.ti-223px {
  top: 223px !important;
}

.li-223px {
  left: 223px !important;
}

.ri-223px {
  right: 223px !important;
}

.bi-223px {
  bottom: 223px !important;
}

.w-224px {
  width: 224px;
}

.h-224px {
  height: 224px;
}

.wi-224px {
  width: 224px !important;
}

.hi-224px {
  height: 224px !important;
}

.w-max-224px {
  max-width: 224px;
}

.w-min-224px {
  min-width: 224px;
}

.t-224px {
  top: 224px;
}

.l-224px {
  left: 224px;
}

.r-224px {
  right: 224px;
}

.b-224px {
  bottom: 224px;
}

.ti-224px {
  top: 224px !important;
}

.li-224px {
  left: 224px !important;
}

.ri-224px {
  right: 224px !important;
}

.bi-224px {
  bottom: 224px !important;
}

.w-225px {
  width: 225px;
}

.h-225px {
  height: 225px;
}

.wi-225px {
  width: 225px !important;
}

.hi-225px {
  height: 225px !important;
}

.w-max-225px {
  max-width: 225px;
}

.w-min-225px {
  min-width: 225px;
}

.t-225px {
  top: 225px;
}

.l-225px {
  left: 225px;
}

.r-225px {
  right: 225px;
}

.b-225px {
  bottom: 225px;
}

.ti-225px {
  top: 225px !important;
}

.li-225px {
  left: 225px !important;
}

.ri-225px {
  right: 225px !important;
}

.bi-225px {
  bottom: 225px !important;
}

.w-226px {
  width: 226px;
}

.h-226px {
  height: 226px;
}

.wi-226px {
  width: 226px !important;
}

.hi-226px {
  height: 226px !important;
}

.w-max-226px {
  max-width: 226px;
}

.w-min-226px {
  min-width: 226px;
}

.t-226px {
  top: 226px;
}

.l-226px {
  left: 226px;
}

.r-226px {
  right: 226px;
}

.b-226px {
  bottom: 226px;
}

.ti-226px {
  top: 226px !important;
}

.li-226px {
  left: 226px !important;
}

.ri-226px {
  right: 226px !important;
}

.bi-226px {
  bottom: 226px !important;
}

.w-227px {
  width: 227px;
}

.h-227px {
  height: 227px;
}

.wi-227px {
  width: 227px !important;
}

.hi-227px {
  height: 227px !important;
}

.w-max-227px {
  max-width: 227px;
}

.w-min-227px {
  min-width: 227px;
}

.t-227px {
  top: 227px;
}

.l-227px {
  left: 227px;
}

.r-227px {
  right: 227px;
}

.b-227px {
  bottom: 227px;
}

.ti-227px {
  top: 227px !important;
}

.li-227px {
  left: 227px !important;
}

.ri-227px {
  right: 227px !important;
}

.bi-227px {
  bottom: 227px !important;
}

.w-228px {
  width: 228px;
}

.h-228px {
  height: 228px;
}

.wi-228px {
  width: 228px !important;
}

.hi-228px {
  height: 228px !important;
}

.w-max-228px {
  max-width: 228px;
}

.w-min-228px {
  min-width: 228px;
}

.t-228px {
  top: 228px;
}

.l-228px {
  left: 228px;
}

.r-228px {
  right: 228px;
}

.b-228px {
  bottom: 228px;
}

.ti-228px {
  top: 228px !important;
}

.li-228px {
  left: 228px !important;
}

.ri-228px {
  right: 228px !important;
}

.bi-228px {
  bottom: 228px !important;
}

.w-229px {
  width: 229px;
}

.h-229px {
  height: 229px;
}

.wi-229px {
  width: 229px !important;
}

.hi-229px {
  height: 229px !important;
}

.w-max-229px {
  max-width: 229px;
}

.w-min-229px {
  min-width: 229px;
}

.t-229px {
  top: 229px;
}

.l-229px {
  left: 229px;
}

.r-229px {
  right: 229px;
}

.b-229px {
  bottom: 229px;
}

.ti-229px {
  top: 229px !important;
}

.li-229px {
  left: 229px !important;
}

.ri-229px {
  right: 229px !important;
}

.bi-229px {
  bottom: 229px !important;
}

.w-230px {
  width: 230px;
}

.h-230px {
  height: 230px;
}

.wi-230px {
  width: 230px !important;
}

.hi-230px {
  height: 230px !important;
}

.w-max-230px {
  max-width: 230px;
}

.w-min-230px {
  min-width: 230px;
}

.t-230px {
  top: 230px;
}

.l-230px {
  left: 230px;
}

.r-230px {
  right: 230px;
}

.b-230px {
  bottom: 230px;
}

.ti-230px {
  top: 230px !important;
}

.li-230px {
  left: 230px !important;
}

.ri-230px {
  right: 230px !important;
}

.bi-230px {
  bottom: 230px !important;
}

.w-231px {
  width: 231px;
}

.h-231px {
  height: 231px;
}

.wi-231px {
  width: 231px !important;
}

.hi-231px {
  height: 231px !important;
}

.w-max-231px {
  max-width: 231px;
}

.w-min-231px {
  min-width: 231px;
}

.t-231px {
  top: 231px;
}

.l-231px {
  left: 231px;
}

.r-231px {
  right: 231px;
}

.b-231px {
  bottom: 231px;
}

.ti-231px {
  top: 231px !important;
}

.li-231px {
  left: 231px !important;
}

.ri-231px {
  right: 231px !important;
}

.bi-231px {
  bottom: 231px !important;
}

.w-232px {
  width: 232px;
}

.h-232px {
  height: 232px;
}

.wi-232px {
  width: 232px !important;
}

.hi-232px {
  height: 232px !important;
}

.w-max-232px {
  max-width: 232px;
}

.w-min-232px {
  min-width: 232px;
}

.t-232px {
  top: 232px;
}

.l-232px {
  left: 232px;
}

.r-232px {
  right: 232px;
}

.b-232px {
  bottom: 232px;
}

.ti-232px {
  top: 232px !important;
}

.li-232px {
  left: 232px !important;
}

.ri-232px {
  right: 232px !important;
}

.bi-232px {
  bottom: 232px !important;
}

.w-233px {
  width: 233px;
}

.h-233px {
  height: 233px;
}

.wi-233px {
  width: 233px !important;
}

.hi-233px {
  height: 233px !important;
}

.w-max-233px {
  max-width: 233px;
}

.w-min-233px {
  min-width: 233px;
}

.t-233px {
  top: 233px;
}

.l-233px {
  left: 233px;
}

.r-233px {
  right: 233px;
}

.b-233px {
  bottom: 233px;
}

.ti-233px {
  top: 233px !important;
}

.li-233px {
  left: 233px !important;
}

.ri-233px {
  right: 233px !important;
}

.bi-233px {
  bottom: 233px !important;
}

.w-234px {
  width: 234px;
}

.h-234px {
  height: 234px;
}

.wi-234px {
  width: 234px !important;
}

.hi-234px {
  height: 234px !important;
}

.w-max-234px {
  max-width: 234px;
}

.w-min-234px {
  min-width: 234px;
}

.t-234px {
  top: 234px;
}

.l-234px {
  left: 234px;
}

.r-234px {
  right: 234px;
}

.b-234px {
  bottom: 234px;
}

.ti-234px {
  top: 234px !important;
}

.li-234px {
  left: 234px !important;
}

.ri-234px {
  right: 234px !important;
}

.bi-234px {
  bottom: 234px !important;
}

.w-235px {
  width: 235px;
}

.h-235px {
  height: 235px;
}

.wi-235px {
  width: 235px !important;
}

.hi-235px {
  height: 235px !important;
}

.w-max-235px {
  max-width: 235px;
}

.w-min-235px {
  min-width: 235px;
}

.t-235px {
  top: 235px;
}

.l-235px {
  left: 235px;
}

.r-235px {
  right: 235px;
}

.b-235px {
  bottom: 235px;
}

.ti-235px {
  top: 235px !important;
}

.li-235px {
  left: 235px !important;
}

.ri-235px {
  right: 235px !important;
}

.bi-235px {
  bottom: 235px !important;
}

.w-236px {
  width: 236px;
}

.h-236px {
  height: 236px;
}

.wi-236px {
  width: 236px !important;
}

.hi-236px {
  height: 236px !important;
}

.w-max-236px {
  max-width: 236px;
}

.w-min-236px {
  min-width: 236px;
}

.t-236px {
  top: 236px;
}

.l-236px {
  left: 236px;
}

.r-236px {
  right: 236px;
}

.b-236px {
  bottom: 236px;
}

.ti-236px {
  top: 236px !important;
}

.li-236px {
  left: 236px !important;
}

.ri-236px {
  right: 236px !important;
}

.bi-236px {
  bottom: 236px !important;
}

.w-237px {
  width: 237px;
}

.h-237px {
  height: 237px;
}

.wi-237px {
  width: 237px !important;
}

.hi-237px {
  height: 237px !important;
}

.w-max-237px {
  max-width: 237px;
}

.w-min-237px {
  min-width: 237px;
}

.t-237px {
  top: 237px;
}

.l-237px {
  left: 237px;
}

.r-237px {
  right: 237px;
}

.b-237px {
  bottom: 237px;
}

.ti-237px {
  top: 237px !important;
}

.li-237px {
  left: 237px !important;
}

.ri-237px {
  right: 237px !important;
}

.bi-237px {
  bottom: 237px !important;
}

.w-238px {
  width: 238px;
}

.h-238px {
  height: 238px;
}

.wi-238px {
  width: 238px !important;
}

.hi-238px {
  height: 238px !important;
}

.w-max-238px {
  max-width: 238px;
}

.w-min-238px {
  min-width: 238px;
}

.t-238px {
  top: 238px;
}

.l-238px {
  left: 238px;
}

.r-238px {
  right: 238px;
}

.b-238px {
  bottom: 238px;
}

.ti-238px {
  top: 238px !important;
}

.li-238px {
  left: 238px !important;
}

.ri-238px {
  right: 238px !important;
}

.bi-238px {
  bottom: 238px !important;
}

.w-239px {
  width: 239px;
}

.h-239px {
  height: 239px;
}

.wi-239px {
  width: 239px !important;
}

.hi-239px {
  height: 239px !important;
}

.w-max-239px {
  max-width: 239px;
}

.w-min-239px {
  min-width: 239px;
}

.t-239px {
  top: 239px;
}

.l-239px {
  left: 239px;
}

.r-239px {
  right: 239px;
}

.b-239px {
  bottom: 239px;
}

.ti-239px {
  top: 239px !important;
}

.li-239px {
  left: 239px !important;
}

.ri-239px {
  right: 239px !important;
}

.bi-239px {
  bottom: 239px !important;
}

.w-240px {
  width: 240px;
}

.h-240px {
  height: 240px;
}

.wi-240px {
  width: 240px !important;
}

.hi-240px {
  height: 240px !important;
}

.w-max-240px {
  max-width: 240px;
}

.w-min-240px {
  min-width: 240px;
}

.t-240px {
  top: 240px;
}

.l-240px {
  left: 240px;
}

.r-240px {
  right: 240px;
}

.b-240px {
  bottom: 240px;
}

.ti-240px {
  top: 240px !important;
}

.li-240px {
  left: 240px !important;
}

.ri-240px {
  right: 240px !important;
}

.bi-240px {
  bottom: 240px !important;
}

.w-241px {
  width: 241px;
}

.h-241px {
  height: 241px;
}

.wi-241px {
  width: 241px !important;
}

.hi-241px {
  height: 241px !important;
}

.w-max-241px {
  max-width: 241px;
}

.w-min-241px {
  min-width: 241px;
}

.t-241px {
  top: 241px;
}

.l-241px {
  left: 241px;
}

.r-241px {
  right: 241px;
}

.b-241px {
  bottom: 241px;
}

.ti-241px {
  top: 241px !important;
}

.li-241px {
  left: 241px !important;
}

.ri-241px {
  right: 241px !important;
}

.bi-241px {
  bottom: 241px !important;
}

.w-242px {
  width: 242px;
}

.h-242px {
  height: 242px;
}

.wi-242px {
  width: 242px !important;
}

.hi-242px {
  height: 242px !important;
}

.w-max-242px {
  max-width: 242px;
}

.w-min-242px {
  min-width: 242px;
}

.t-242px {
  top: 242px;
}

.l-242px {
  left: 242px;
}

.r-242px {
  right: 242px;
}

.b-242px {
  bottom: 242px;
}

.ti-242px {
  top: 242px !important;
}

.li-242px {
  left: 242px !important;
}

.ri-242px {
  right: 242px !important;
}

.bi-242px {
  bottom: 242px !important;
}

.w-243px {
  width: 243px;
}

.h-243px {
  height: 243px;
}

.wi-243px {
  width: 243px !important;
}

.hi-243px {
  height: 243px !important;
}

.w-max-243px {
  max-width: 243px;
}

.w-min-243px {
  min-width: 243px;
}

.t-243px {
  top: 243px;
}

.l-243px {
  left: 243px;
}

.r-243px {
  right: 243px;
}

.b-243px {
  bottom: 243px;
}

.ti-243px {
  top: 243px !important;
}

.li-243px {
  left: 243px !important;
}

.ri-243px {
  right: 243px !important;
}

.bi-243px {
  bottom: 243px !important;
}

.w-244px {
  width: 244px;
}

.h-244px {
  height: 244px;
}

.wi-244px {
  width: 244px !important;
}

.hi-244px {
  height: 244px !important;
}

.w-max-244px {
  max-width: 244px;
}

.w-min-244px {
  min-width: 244px;
}

.t-244px {
  top: 244px;
}

.l-244px {
  left: 244px;
}

.r-244px {
  right: 244px;
}

.b-244px {
  bottom: 244px;
}

.ti-244px {
  top: 244px !important;
}

.li-244px {
  left: 244px !important;
}

.ri-244px {
  right: 244px !important;
}

.bi-244px {
  bottom: 244px !important;
}

.w-245px {
  width: 245px;
}

.h-245px {
  height: 245px;
}

.wi-245px {
  width: 245px !important;
}

.hi-245px {
  height: 245px !important;
}

.w-max-245px {
  max-width: 245px;
}

.w-min-245px {
  min-width: 245px;
}

.t-245px {
  top: 245px;
}

.l-245px {
  left: 245px;
}

.r-245px {
  right: 245px;
}

.b-245px {
  bottom: 245px;
}

.ti-245px {
  top: 245px !important;
}

.li-245px {
  left: 245px !important;
}

.ri-245px {
  right: 245px !important;
}

.bi-245px {
  bottom: 245px !important;
}

.w-246px {
  width: 246px;
}

.h-246px {
  height: 246px;
}

.wi-246px {
  width: 246px !important;
}

.hi-246px {
  height: 246px !important;
}

.w-max-246px {
  max-width: 246px;
}

.w-min-246px {
  min-width: 246px;
}

.t-246px {
  top: 246px;
}

.l-246px {
  left: 246px;
}

.r-246px {
  right: 246px;
}

.b-246px {
  bottom: 246px;
}

.ti-246px {
  top: 246px !important;
}

.li-246px {
  left: 246px !important;
}

.ri-246px {
  right: 246px !important;
}

.bi-246px {
  bottom: 246px !important;
}

.w-247px {
  width: 247px;
}

.h-247px {
  height: 247px;
}

.wi-247px {
  width: 247px !important;
}

.hi-247px {
  height: 247px !important;
}

.w-max-247px {
  max-width: 247px;
}

.w-min-247px {
  min-width: 247px;
}

.t-247px {
  top: 247px;
}

.l-247px {
  left: 247px;
}

.r-247px {
  right: 247px;
}

.b-247px {
  bottom: 247px;
}

.ti-247px {
  top: 247px !important;
}

.li-247px {
  left: 247px !important;
}

.ri-247px {
  right: 247px !important;
}

.bi-247px {
  bottom: 247px !important;
}

.w-248px {
  width: 248px;
}

.h-248px {
  height: 248px;
}

.wi-248px {
  width: 248px !important;
}

.hi-248px {
  height: 248px !important;
}

.w-max-248px {
  max-width: 248px;
}

.w-min-248px {
  min-width: 248px;
}

.t-248px {
  top: 248px;
}

.l-248px {
  left: 248px;
}

.r-248px {
  right: 248px;
}

.b-248px {
  bottom: 248px;
}

.ti-248px {
  top: 248px !important;
}

.li-248px {
  left: 248px !important;
}

.ri-248px {
  right: 248px !important;
}

.bi-248px {
  bottom: 248px !important;
}

.w-249px {
  width: 249px;
}

.h-249px {
  height: 249px;
}

.wi-249px {
  width: 249px !important;
}

.hi-249px {
  height: 249px !important;
}

.w-max-249px {
  max-width: 249px;
}

.w-min-249px {
  min-width: 249px;
}

.t-249px {
  top: 249px;
}

.l-249px {
  left: 249px;
}

.r-249px {
  right: 249px;
}

.b-249px {
  bottom: 249px;
}

.ti-249px {
  top: 249px !important;
}

.li-249px {
  left: 249px !important;
}

.ri-249px {
  right: 249px !important;
}

.bi-249px {
  bottom: 249px !important;
}

.w-250px {
  width: 250px;
}

.h-250px {
  height: 250px;
}

.wi-250px {
  width: 250px !important;
}

.hi-250px {
  height: 250px !important;
}

.w-max-250px {
  max-width: 250px;
}

.w-min-250px {
  min-width: 250px;
}

.t-250px {
  top: 250px;
}

.l-250px {
  left: 250px;
}

.r-250px {
  right: 250px;
}

.b-250px {
  bottom: 250px;
}

.ti-250px {
  top: 250px !important;
}

.li-250px {
  left: 250px !important;
}

.ri-250px {
  right: 250px !important;
}

.bi-250px {
  bottom: 250px !important;
}

.w-251px {
  width: 251px;
}

.h-251px {
  height: 251px;
}

.wi-251px {
  width: 251px !important;
}

.hi-251px {
  height: 251px !important;
}

.w-max-251px {
  max-width: 251px;
}

.w-min-251px {
  min-width: 251px;
}

.t-251px {
  top: 251px;
}

.l-251px {
  left: 251px;
}

.r-251px {
  right: 251px;
}

.b-251px {
  bottom: 251px;
}

.ti-251px {
  top: 251px !important;
}

.li-251px {
  left: 251px !important;
}

.ri-251px {
  right: 251px !important;
}

.bi-251px {
  bottom: 251px !important;
}

.w-252px {
  width: 252px;
}

.h-252px {
  height: 252px;
}

.wi-252px {
  width: 252px !important;
}

.hi-252px {
  height: 252px !important;
}

.w-max-252px {
  max-width: 252px;
}

.w-min-252px {
  min-width: 252px;
}

.t-252px {
  top: 252px;
}

.l-252px {
  left: 252px;
}

.r-252px {
  right: 252px;
}

.b-252px {
  bottom: 252px;
}

.ti-252px {
  top: 252px !important;
}

.li-252px {
  left: 252px !important;
}

.ri-252px {
  right: 252px !important;
}

.bi-252px {
  bottom: 252px !important;
}

.w-253px {
  width: 253px;
}

.h-253px {
  height: 253px;
}

.wi-253px {
  width: 253px !important;
}

.hi-253px {
  height: 253px !important;
}

.w-max-253px {
  max-width: 253px;
}

.w-min-253px {
  min-width: 253px;
}

.t-253px {
  top: 253px;
}

.l-253px {
  left: 253px;
}

.r-253px {
  right: 253px;
}

.b-253px {
  bottom: 253px;
}

.ti-253px {
  top: 253px !important;
}

.li-253px {
  left: 253px !important;
}

.ri-253px {
  right: 253px !important;
}

.bi-253px {
  bottom: 253px !important;
}

.w-254px {
  width: 254px;
}

.h-254px {
  height: 254px;
}

.wi-254px {
  width: 254px !important;
}

.hi-254px {
  height: 254px !important;
}

.w-max-254px {
  max-width: 254px;
}

.w-min-254px {
  min-width: 254px;
}

.t-254px {
  top: 254px;
}

.l-254px {
  left: 254px;
}

.r-254px {
  right: 254px;
}

.b-254px {
  bottom: 254px;
}

.ti-254px {
  top: 254px !important;
}

.li-254px {
  left: 254px !important;
}

.ri-254px {
  right: 254px !important;
}

.bi-254px {
  bottom: 254px !important;
}

.w-255px {
  width: 255px;
}

.h-255px {
  height: 255px;
}

.wi-255px {
  width: 255px !important;
}

.hi-255px {
  height: 255px !important;
}

.w-max-255px {
  max-width: 255px;
}

.w-min-255px {
  min-width: 255px;
}

.t-255px {
  top: 255px;
}

.l-255px {
  left: 255px;
}

.r-255px {
  right: 255px;
}

.b-255px {
  bottom: 255px;
}

.ti-255px {
  top: 255px !important;
}

.li-255px {
  left: 255px !important;
}

.ri-255px {
  right: 255px !important;
}

.bi-255px {
  bottom: 255px !important;
}

.w-256px {
  width: 256px;
}

.h-256px {
  height: 256px;
}

.wi-256px {
  width: 256px !important;
}

.hi-256px {
  height: 256px !important;
}

.w-max-256px {
  max-width: 256px;
}

.w-min-256px {
  min-width: 256px;
}

.t-256px {
  top: 256px;
}

.l-256px {
  left: 256px;
}

.r-256px {
  right: 256px;
}

.b-256px {
  bottom: 256px;
}

.ti-256px {
  top: 256px !important;
}

.li-256px {
  left: 256px !important;
}

.ri-256px {
  right: 256px !important;
}

.bi-256px {
  bottom: 256px !important;
}

.w-257px {
  width: 257px;
}

.h-257px {
  height: 257px;
}

.wi-257px {
  width: 257px !important;
}

.hi-257px {
  height: 257px !important;
}

.w-max-257px {
  max-width: 257px;
}

.w-min-257px {
  min-width: 257px;
}

.t-257px {
  top: 257px;
}

.l-257px {
  left: 257px;
}

.r-257px {
  right: 257px;
}

.b-257px {
  bottom: 257px;
}

.ti-257px {
  top: 257px !important;
}

.li-257px {
  left: 257px !important;
}

.ri-257px {
  right: 257px !important;
}

.bi-257px {
  bottom: 257px !important;
}

.w-258px {
  width: 258px;
}

.h-258px {
  height: 258px;
}

.wi-258px {
  width: 258px !important;
}

.hi-258px {
  height: 258px !important;
}

.w-max-258px {
  max-width: 258px;
}

.w-min-258px {
  min-width: 258px;
}

.t-258px {
  top: 258px;
}

.l-258px {
  left: 258px;
}

.r-258px {
  right: 258px;
}

.b-258px {
  bottom: 258px;
}

.ti-258px {
  top: 258px !important;
}

.li-258px {
  left: 258px !important;
}

.ri-258px {
  right: 258px !important;
}

.bi-258px {
  bottom: 258px !important;
}

.w-259px {
  width: 259px;
}

.h-259px {
  height: 259px;
}

.wi-259px {
  width: 259px !important;
}

.hi-259px {
  height: 259px !important;
}

.w-max-259px {
  max-width: 259px;
}

.w-min-259px {
  min-width: 259px;
}

.t-259px {
  top: 259px;
}

.l-259px {
  left: 259px;
}

.r-259px {
  right: 259px;
}

.b-259px {
  bottom: 259px;
}

.ti-259px {
  top: 259px !important;
}

.li-259px {
  left: 259px !important;
}

.ri-259px {
  right: 259px !important;
}

.bi-259px {
  bottom: 259px !important;
}

.w-260px {
  width: 260px;
}

.h-260px {
  height: 260px;
}

.wi-260px {
  width: 260px !important;
}

.hi-260px {
  height: 260px !important;
}

.w-max-260px {
  max-width: 260px;
}

.w-min-260px {
  min-width: 260px;
}

.t-260px {
  top: 260px;
}

.l-260px {
  left: 260px;
}

.r-260px {
  right: 260px;
}

.b-260px {
  bottom: 260px;
}

.ti-260px {
  top: 260px !important;
}

.li-260px {
  left: 260px !important;
}

.ri-260px {
  right: 260px !important;
}

.bi-260px {
  bottom: 260px !important;
}

.w-261px {
  width: 261px;
}

.h-261px {
  height: 261px;
}

.wi-261px {
  width: 261px !important;
}

.hi-261px {
  height: 261px !important;
}

.w-max-261px {
  max-width: 261px;
}

.w-min-261px {
  min-width: 261px;
}

.t-261px {
  top: 261px;
}

.l-261px {
  left: 261px;
}

.r-261px {
  right: 261px;
}

.b-261px {
  bottom: 261px;
}

.ti-261px {
  top: 261px !important;
}

.li-261px {
  left: 261px !important;
}

.ri-261px {
  right: 261px !important;
}

.bi-261px {
  bottom: 261px !important;
}

.w-262px {
  width: 262px;
}

.h-262px {
  height: 262px;
}

.wi-262px {
  width: 262px !important;
}

.hi-262px {
  height: 262px !important;
}

.w-max-262px {
  max-width: 262px;
}

.w-min-262px {
  min-width: 262px;
}

.t-262px {
  top: 262px;
}

.l-262px {
  left: 262px;
}

.r-262px {
  right: 262px;
}

.b-262px {
  bottom: 262px;
}

.ti-262px {
  top: 262px !important;
}

.li-262px {
  left: 262px !important;
}

.ri-262px {
  right: 262px !important;
}

.bi-262px {
  bottom: 262px !important;
}

.w-263px {
  width: 263px;
}

.h-263px {
  height: 263px;
}

.wi-263px {
  width: 263px !important;
}

.hi-263px {
  height: 263px !important;
}

.w-max-263px {
  max-width: 263px;
}

.w-min-263px {
  min-width: 263px;
}

.t-263px {
  top: 263px;
}

.l-263px {
  left: 263px;
}

.r-263px {
  right: 263px;
}

.b-263px {
  bottom: 263px;
}

.ti-263px {
  top: 263px !important;
}

.li-263px {
  left: 263px !important;
}

.ri-263px {
  right: 263px !important;
}

.bi-263px {
  bottom: 263px !important;
}

.w-264px {
  width: 264px;
}

.h-264px {
  height: 264px;
}

.wi-264px {
  width: 264px !important;
}

.hi-264px {
  height: 264px !important;
}

.w-max-264px {
  max-width: 264px;
}

.w-min-264px {
  min-width: 264px;
}

.t-264px {
  top: 264px;
}

.l-264px {
  left: 264px;
}

.r-264px {
  right: 264px;
}

.b-264px {
  bottom: 264px;
}

.ti-264px {
  top: 264px !important;
}

.li-264px {
  left: 264px !important;
}

.ri-264px {
  right: 264px !important;
}

.bi-264px {
  bottom: 264px !important;
}

.w-265px {
  width: 265px;
}

.h-265px {
  height: 265px;
}

.wi-265px {
  width: 265px !important;
}

.hi-265px {
  height: 265px !important;
}

.w-max-265px {
  max-width: 265px;
}

.w-min-265px {
  min-width: 265px;
}

.t-265px {
  top: 265px;
}

.l-265px {
  left: 265px;
}

.r-265px {
  right: 265px;
}

.b-265px {
  bottom: 265px;
}

.ti-265px {
  top: 265px !important;
}

.li-265px {
  left: 265px !important;
}

.ri-265px {
  right: 265px !important;
}

.bi-265px {
  bottom: 265px !important;
}

.w-266px {
  width: 266px;
}

.h-266px {
  height: 266px;
}

.wi-266px {
  width: 266px !important;
}

.hi-266px {
  height: 266px !important;
}

.w-max-266px {
  max-width: 266px;
}

.w-min-266px {
  min-width: 266px;
}

.t-266px {
  top: 266px;
}

.l-266px {
  left: 266px;
}

.r-266px {
  right: 266px;
}

.b-266px {
  bottom: 266px;
}

.ti-266px {
  top: 266px !important;
}

.li-266px {
  left: 266px !important;
}

.ri-266px {
  right: 266px !important;
}

.bi-266px {
  bottom: 266px !important;
}

.w-267px {
  width: 267px;
}

.h-267px {
  height: 267px;
}

.wi-267px {
  width: 267px !important;
}

.hi-267px {
  height: 267px !important;
}

.w-max-267px {
  max-width: 267px;
}

.w-min-267px {
  min-width: 267px;
}

.t-267px {
  top: 267px;
}

.l-267px {
  left: 267px;
}

.r-267px {
  right: 267px;
}

.b-267px {
  bottom: 267px;
}

.ti-267px {
  top: 267px !important;
}

.li-267px {
  left: 267px !important;
}

.ri-267px {
  right: 267px !important;
}

.bi-267px {
  bottom: 267px !important;
}

.w-268px {
  width: 268px;
}

.h-268px {
  height: 268px;
}

.wi-268px {
  width: 268px !important;
}

.hi-268px {
  height: 268px !important;
}

.w-max-268px {
  max-width: 268px;
}

.w-min-268px {
  min-width: 268px;
}

.t-268px {
  top: 268px;
}

.l-268px {
  left: 268px;
}

.r-268px {
  right: 268px;
}

.b-268px {
  bottom: 268px;
}

.ti-268px {
  top: 268px !important;
}

.li-268px {
  left: 268px !important;
}

.ri-268px {
  right: 268px !important;
}

.bi-268px {
  bottom: 268px !important;
}

.w-269px {
  width: 269px;
}

.h-269px {
  height: 269px;
}

.wi-269px {
  width: 269px !important;
}

.hi-269px {
  height: 269px !important;
}

.w-max-269px {
  max-width: 269px;
}

.w-min-269px {
  min-width: 269px;
}

.t-269px {
  top: 269px;
}

.l-269px {
  left: 269px;
}

.r-269px {
  right: 269px;
}

.b-269px {
  bottom: 269px;
}

.ti-269px {
  top: 269px !important;
}

.li-269px {
  left: 269px !important;
}

.ri-269px {
  right: 269px !important;
}

.bi-269px {
  bottom: 269px !important;
}

.w-270px {
  width: 270px;
}

.h-270px {
  height: 270px;
}

.wi-270px {
  width: 270px !important;
}

.hi-270px {
  height: 270px !important;
}

.w-max-270px {
  max-width: 270px;
}

.w-min-270px {
  min-width: 270px;
}

.t-270px {
  top: 270px;
}

.l-270px {
  left: 270px;
}

.r-270px {
  right: 270px;
}

.b-270px {
  bottom: 270px;
}

.ti-270px {
  top: 270px !important;
}

.li-270px {
  left: 270px !important;
}

.ri-270px {
  right: 270px !important;
}

.bi-270px {
  bottom: 270px !important;
}

.w-271px {
  width: 271px;
}

.h-271px {
  height: 271px;
}

.wi-271px {
  width: 271px !important;
}

.hi-271px {
  height: 271px !important;
}

.w-max-271px {
  max-width: 271px;
}

.w-min-271px {
  min-width: 271px;
}

.t-271px {
  top: 271px;
}

.l-271px {
  left: 271px;
}

.r-271px {
  right: 271px;
}

.b-271px {
  bottom: 271px;
}

.ti-271px {
  top: 271px !important;
}

.li-271px {
  left: 271px !important;
}

.ri-271px {
  right: 271px !important;
}

.bi-271px {
  bottom: 271px !important;
}

.w-272px {
  width: 272px;
}

.h-272px {
  height: 272px;
}

.wi-272px {
  width: 272px !important;
}

.hi-272px {
  height: 272px !important;
}

.w-max-272px {
  max-width: 272px;
}

.w-min-272px {
  min-width: 272px;
}

.t-272px {
  top: 272px;
}

.l-272px {
  left: 272px;
}

.r-272px {
  right: 272px;
}

.b-272px {
  bottom: 272px;
}

.ti-272px {
  top: 272px !important;
}

.li-272px {
  left: 272px !important;
}

.ri-272px {
  right: 272px !important;
}

.bi-272px {
  bottom: 272px !important;
}

.w-273px {
  width: 273px;
}

.h-273px {
  height: 273px;
}

.wi-273px {
  width: 273px !important;
}

.hi-273px {
  height: 273px !important;
}

.w-max-273px {
  max-width: 273px;
}

.w-min-273px {
  min-width: 273px;
}

.t-273px {
  top: 273px;
}

.l-273px {
  left: 273px;
}

.r-273px {
  right: 273px;
}

.b-273px {
  bottom: 273px;
}

.ti-273px {
  top: 273px !important;
}

.li-273px {
  left: 273px !important;
}

.ri-273px {
  right: 273px !important;
}

.bi-273px {
  bottom: 273px !important;
}

.w-274px {
  width: 274px;
}

.h-274px {
  height: 274px;
}

.wi-274px {
  width: 274px !important;
}

.hi-274px {
  height: 274px !important;
}

.w-max-274px {
  max-width: 274px;
}

.w-min-274px {
  min-width: 274px;
}

.t-274px {
  top: 274px;
}

.l-274px {
  left: 274px;
}

.r-274px {
  right: 274px;
}

.b-274px {
  bottom: 274px;
}

.ti-274px {
  top: 274px !important;
}

.li-274px {
  left: 274px !important;
}

.ri-274px {
  right: 274px !important;
}

.bi-274px {
  bottom: 274px !important;
}

.w-275px {
  width: 275px;
}

.h-275px {
  height: 275px;
}

.wi-275px {
  width: 275px !important;
}

.hi-275px {
  height: 275px !important;
}

.w-max-275px {
  max-width: 275px;
}

.w-min-275px {
  min-width: 275px;
}

.t-275px {
  top: 275px;
}

.l-275px {
  left: 275px;
}

.r-275px {
  right: 275px;
}

.b-275px {
  bottom: 275px;
}

.ti-275px {
  top: 275px !important;
}

.li-275px {
  left: 275px !important;
}

.ri-275px {
  right: 275px !important;
}

.bi-275px {
  bottom: 275px !important;
}

.w-276px {
  width: 276px;
}

.h-276px {
  height: 276px;
}

.wi-276px {
  width: 276px !important;
}

.hi-276px {
  height: 276px !important;
}

.w-max-276px {
  max-width: 276px;
}

.w-min-276px {
  min-width: 276px;
}

.t-276px {
  top: 276px;
}

.l-276px {
  left: 276px;
}

.r-276px {
  right: 276px;
}

.b-276px {
  bottom: 276px;
}

.ti-276px {
  top: 276px !important;
}

.li-276px {
  left: 276px !important;
}

.ri-276px {
  right: 276px !important;
}

.bi-276px {
  bottom: 276px !important;
}

.w-277px {
  width: 277px;
}

.h-277px {
  height: 277px;
}

.wi-277px {
  width: 277px !important;
}

.hi-277px {
  height: 277px !important;
}

.w-max-277px {
  max-width: 277px;
}

.w-min-277px {
  min-width: 277px;
}

.t-277px {
  top: 277px;
}

.l-277px {
  left: 277px;
}

.r-277px {
  right: 277px;
}

.b-277px {
  bottom: 277px;
}

.ti-277px {
  top: 277px !important;
}

.li-277px {
  left: 277px !important;
}

.ri-277px {
  right: 277px !important;
}

.bi-277px {
  bottom: 277px !important;
}

.w-278px {
  width: 278px;
}

.h-278px {
  height: 278px;
}

.wi-278px {
  width: 278px !important;
}

.hi-278px {
  height: 278px !important;
}

.w-max-278px {
  max-width: 278px;
}

.w-min-278px {
  min-width: 278px;
}

.t-278px {
  top: 278px;
}

.l-278px {
  left: 278px;
}

.r-278px {
  right: 278px;
}

.b-278px {
  bottom: 278px;
}

.ti-278px {
  top: 278px !important;
}

.li-278px {
  left: 278px !important;
}

.ri-278px {
  right: 278px !important;
}

.bi-278px {
  bottom: 278px !important;
}

.w-279px {
  width: 279px;
}

.h-279px {
  height: 279px;
}

.wi-279px {
  width: 279px !important;
}

.hi-279px {
  height: 279px !important;
}

.w-max-279px {
  max-width: 279px;
}

.w-min-279px {
  min-width: 279px;
}

.t-279px {
  top: 279px;
}

.l-279px {
  left: 279px;
}

.r-279px {
  right: 279px;
}

.b-279px {
  bottom: 279px;
}

.ti-279px {
  top: 279px !important;
}

.li-279px {
  left: 279px !important;
}

.ri-279px {
  right: 279px !important;
}

.bi-279px {
  bottom: 279px !important;
}

.w-280px {
  width: 280px;
}

.h-280px {
  height: 280px;
}

.wi-280px {
  width: 280px !important;
}

.hi-280px {
  height: 280px !important;
}

.w-max-280px {
  max-width: 280px;
}

.w-min-280px {
  min-width: 280px;
}

.t-280px {
  top: 280px;
}

.l-280px {
  left: 280px;
}

.r-280px {
  right: 280px;
}

.b-280px {
  bottom: 280px;
}

.ti-280px {
  top: 280px !important;
}

.li-280px {
  left: 280px !important;
}

.ri-280px {
  right: 280px !important;
}

.bi-280px {
  bottom: 280px !important;
}

.w-281px {
  width: 281px;
}

.h-281px {
  height: 281px;
}

.wi-281px {
  width: 281px !important;
}

.hi-281px {
  height: 281px !important;
}

.w-max-281px {
  max-width: 281px;
}

.w-min-281px {
  min-width: 281px;
}

.t-281px {
  top: 281px;
}

.l-281px {
  left: 281px;
}

.r-281px {
  right: 281px;
}

.b-281px {
  bottom: 281px;
}

.ti-281px {
  top: 281px !important;
}

.li-281px {
  left: 281px !important;
}

.ri-281px {
  right: 281px !important;
}

.bi-281px {
  bottom: 281px !important;
}

.w-282px {
  width: 282px;
}

.h-282px {
  height: 282px;
}

.wi-282px {
  width: 282px !important;
}

.hi-282px {
  height: 282px !important;
}

.w-max-282px {
  max-width: 282px;
}

.w-min-282px {
  min-width: 282px;
}

.t-282px {
  top: 282px;
}

.l-282px {
  left: 282px;
}

.r-282px {
  right: 282px;
}

.b-282px {
  bottom: 282px;
}

.ti-282px {
  top: 282px !important;
}

.li-282px {
  left: 282px !important;
}

.ri-282px {
  right: 282px !important;
}

.bi-282px {
  bottom: 282px !important;
}

.w-283px {
  width: 283px;
}

.h-283px {
  height: 283px;
}

.wi-283px {
  width: 283px !important;
}

.hi-283px {
  height: 283px !important;
}

.w-max-283px {
  max-width: 283px;
}

.w-min-283px {
  min-width: 283px;
}

.t-283px {
  top: 283px;
}

.l-283px {
  left: 283px;
}

.r-283px {
  right: 283px;
}

.b-283px {
  bottom: 283px;
}

.ti-283px {
  top: 283px !important;
}

.li-283px {
  left: 283px !important;
}

.ri-283px {
  right: 283px !important;
}

.bi-283px {
  bottom: 283px !important;
}

.w-284px {
  width: 284px;
}

.h-284px {
  height: 284px;
}

.wi-284px {
  width: 284px !important;
}

.hi-284px {
  height: 284px !important;
}

.w-max-284px {
  max-width: 284px;
}

.w-min-284px {
  min-width: 284px;
}

.t-284px {
  top: 284px;
}

.l-284px {
  left: 284px;
}

.r-284px {
  right: 284px;
}

.b-284px {
  bottom: 284px;
}

.ti-284px {
  top: 284px !important;
}

.li-284px {
  left: 284px !important;
}

.ri-284px {
  right: 284px !important;
}

.bi-284px {
  bottom: 284px !important;
}

.w-285px {
  width: 285px;
}

.h-285px {
  height: 285px;
}

.wi-285px {
  width: 285px !important;
}

.hi-285px {
  height: 285px !important;
}

.w-max-285px {
  max-width: 285px;
}

.w-min-285px {
  min-width: 285px;
}

.t-285px {
  top: 285px;
}

.l-285px {
  left: 285px;
}

.r-285px {
  right: 285px;
}

.b-285px {
  bottom: 285px;
}

.ti-285px {
  top: 285px !important;
}

.li-285px {
  left: 285px !important;
}

.ri-285px {
  right: 285px !important;
}

.bi-285px {
  bottom: 285px !important;
}

.w-286px {
  width: 286px;
}

.h-286px {
  height: 286px;
}

.wi-286px {
  width: 286px !important;
}

.hi-286px {
  height: 286px !important;
}

.w-max-286px {
  max-width: 286px;
}

.w-min-286px {
  min-width: 286px;
}

.t-286px {
  top: 286px;
}

.l-286px {
  left: 286px;
}

.r-286px {
  right: 286px;
}

.b-286px {
  bottom: 286px;
}

.ti-286px {
  top: 286px !important;
}

.li-286px {
  left: 286px !important;
}

.ri-286px {
  right: 286px !important;
}

.bi-286px {
  bottom: 286px !important;
}

.w-287px {
  width: 287px;
}

.h-287px {
  height: 287px;
}

.wi-287px {
  width: 287px !important;
}

.hi-287px {
  height: 287px !important;
}

.w-max-287px {
  max-width: 287px;
}

.w-min-287px {
  min-width: 287px;
}

.t-287px {
  top: 287px;
}

.l-287px {
  left: 287px;
}

.r-287px {
  right: 287px;
}

.b-287px {
  bottom: 287px;
}

.ti-287px {
  top: 287px !important;
}

.li-287px {
  left: 287px !important;
}

.ri-287px {
  right: 287px !important;
}

.bi-287px {
  bottom: 287px !important;
}

.w-288px {
  width: 288px;
}

.h-288px {
  height: 288px;
}

.wi-288px {
  width: 288px !important;
}

.hi-288px {
  height: 288px !important;
}

.w-max-288px {
  max-width: 288px;
}

.w-min-288px {
  min-width: 288px;
}

.t-288px {
  top: 288px;
}

.l-288px {
  left: 288px;
}

.r-288px {
  right: 288px;
}

.b-288px {
  bottom: 288px;
}

.ti-288px {
  top: 288px !important;
}

.li-288px {
  left: 288px !important;
}

.ri-288px {
  right: 288px !important;
}

.bi-288px {
  bottom: 288px !important;
}

.w-289px {
  width: 289px;
}

.h-289px {
  height: 289px;
}

.wi-289px {
  width: 289px !important;
}

.hi-289px {
  height: 289px !important;
}

.w-max-289px {
  max-width: 289px;
}

.w-min-289px {
  min-width: 289px;
}

.t-289px {
  top: 289px;
}

.l-289px {
  left: 289px;
}

.r-289px {
  right: 289px;
}

.b-289px {
  bottom: 289px;
}

.ti-289px {
  top: 289px !important;
}

.li-289px {
  left: 289px !important;
}

.ri-289px {
  right: 289px !important;
}

.bi-289px {
  bottom: 289px !important;
}

.w-290px {
  width: 290px;
}

.h-290px {
  height: 290px;
}

.wi-290px {
  width: 290px !important;
}

.hi-290px {
  height: 290px !important;
}

.w-max-290px {
  max-width: 290px;
}

.w-min-290px {
  min-width: 290px;
}

.t-290px {
  top: 290px;
}

.l-290px {
  left: 290px;
}

.r-290px {
  right: 290px;
}

.b-290px {
  bottom: 290px;
}

.ti-290px {
  top: 290px !important;
}

.li-290px {
  left: 290px !important;
}

.ri-290px {
  right: 290px !important;
}

.bi-290px {
  bottom: 290px !important;
}

.w-291px {
  width: 291px;
}

.h-291px {
  height: 291px;
}

.wi-291px {
  width: 291px !important;
}

.hi-291px {
  height: 291px !important;
}

.w-max-291px {
  max-width: 291px;
}

.w-min-291px {
  min-width: 291px;
}

.t-291px {
  top: 291px;
}

.l-291px {
  left: 291px;
}

.r-291px {
  right: 291px;
}

.b-291px {
  bottom: 291px;
}

.ti-291px {
  top: 291px !important;
}

.li-291px {
  left: 291px !important;
}

.ri-291px {
  right: 291px !important;
}

.bi-291px {
  bottom: 291px !important;
}

.w-292px {
  width: 292px;
}

.h-292px {
  height: 292px;
}

.wi-292px {
  width: 292px !important;
}

.hi-292px {
  height: 292px !important;
}

.w-max-292px {
  max-width: 292px;
}

.w-min-292px {
  min-width: 292px;
}

.t-292px {
  top: 292px;
}

.l-292px {
  left: 292px;
}

.r-292px {
  right: 292px;
}

.b-292px {
  bottom: 292px;
}

.ti-292px {
  top: 292px !important;
}

.li-292px {
  left: 292px !important;
}

.ri-292px {
  right: 292px !important;
}

.bi-292px {
  bottom: 292px !important;
}

.w-293px {
  width: 293px;
}

.h-293px {
  height: 293px;
}

.wi-293px {
  width: 293px !important;
}

.hi-293px {
  height: 293px !important;
}

.w-max-293px {
  max-width: 293px;
}

.w-min-293px {
  min-width: 293px;
}

.t-293px {
  top: 293px;
}

.l-293px {
  left: 293px;
}

.r-293px {
  right: 293px;
}

.b-293px {
  bottom: 293px;
}

.ti-293px {
  top: 293px !important;
}

.li-293px {
  left: 293px !important;
}

.ri-293px {
  right: 293px !important;
}

.bi-293px {
  bottom: 293px !important;
}

.w-294px {
  width: 294px;
}

.h-294px {
  height: 294px;
}

.wi-294px {
  width: 294px !important;
}

.hi-294px {
  height: 294px !important;
}

.w-max-294px {
  max-width: 294px;
}

.w-min-294px {
  min-width: 294px;
}

.t-294px {
  top: 294px;
}

.l-294px {
  left: 294px;
}

.r-294px {
  right: 294px;
}

.b-294px {
  bottom: 294px;
}

.ti-294px {
  top: 294px !important;
}

.li-294px {
  left: 294px !important;
}

.ri-294px {
  right: 294px !important;
}

.bi-294px {
  bottom: 294px !important;
}

.w-295px {
  width: 295px;
}

.h-295px {
  height: 295px;
}

.wi-295px {
  width: 295px !important;
}

.hi-295px {
  height: 295px !important;
}

.w-max-295px {
  max-width: 295px;
}

.w-min-295px {
  min-width: 295px;
}

.t-295px {
  top: 295px;
}

.l-295px {
  left: 295px;
}

.r-295px {
  right: 295px;
}

.b-295px {
  bottom: 295px;
}

.ti-295px {
  top: 295px !important;
}

.li-295px {
  left: 295px !important;
}

.ri-295px {
  right: 295px !important;
}

.bi-295px {
  bottom: 295px !important;
}

.w-296px {
  width: 296px;
}

.h-296px {
  height: 296px;
}

.wi-296px {
  width: 296px !important;
}

.hi-296px {
  height: 296px !important;
}

.w-max-296px {
  max-width: 296px;
}

.w-min-296px {
  min-width: 296px;
}

.t-296px {
  top: 296px;
}

.l-296px {
  left: 296px;
}

.r-296px {
  right: 296px;
}

.b-296px {
  bottom: 296px;
}

.ti-296px {
  top: 296px !important;
}

.li-296px {
  left: 296px !important;
}

.ri-296px {
  right: 296px !important;
}

.bi-296px {
  bottom: 296px !important;
}

.w-297px {
  width: 297px;
}

.h-297px {
  height: 297px;
}

.wi-297px {
  width: 297px !important;
}

.hi-297px {
  height: 297px !important;
}

.w-max-297px {
  max-width: 297px;
}

.w-min-297px {
  min-width: 297px;
}

.t-297px {
  top: 297px;
}

.l-297px {
  left: 297px;
}

.r-297px {
  right: 297px;
}

.b-297px {
  bottom: 297px;
}

.ti-297px {
  top: 297px !important;
}

.li-297px {
  left: 297px !important;
}

.ri-297px {
  right: 297px !important;
}

.bi-297px {
  bottom: 297px !important;
}

.w-298px {
  width: 298px;
}

.h-298px {
  height: 298px;
}

.wi-298px {
  width: 298px !important;
}

.hi-298px {
  height: 298px !important;
}

.w-max-298px {
  max-width: 298px;
}

.w-min-298px {
  min-width: 298px;
}

.t-298px {
  top: 298px;
}

.l-298px {
  left: 298px;
}

.r-298px {
  right: 298px;
}

.b-298px {
  bottom: 298px;
}

.ti-298px {
  top: 298px !important;
}

.li-298px {
  left: 298px !important;
}

.ri-298px {
  right: 298px !important;
}

.bi-298px {
  bottom: 298px !important;
}

.w-299px {
  width: 299px;
}

.h-299px {
  height: 299px;
}

.wi-299px {
  width: 299px !important;
}

.hi-299px {
  height: 299px !important;
}

.w-max-299px {
  max-width: 299px;
}

.w-min-299px {
  min-width: 299px;
}

.t-299px {
  top: 299px;
}

.l-299px {
  left: 299px;
}

.r-299px {
  right: 299px;
}

.b-299px {
  bottom: 299px;
}

.ti-299px {
  top: 299px !important;
}

.li-299px {
  left: 299px !important;
}

.ri-299px {
  right: 299px !important;
}

.bi-299px {
  bottom: 299px !important;
}

.w-300px {
  width: 300px;
}

.h-300px {
  height: 300px;
}

.wi-300px {
  width: 300px !important;
}

.hi-300px {
  height: 300px !important;
}

.w-max-300px {
  max-width: 300px;
}

.w-min-300px {
  min-width: 300px;
}

.t-300px {
  top: 300px;
}

.l-300px {
  left: 300px;
}

.r-300px {
  right: 300px;
}

.b-300px {
  bottom: 300px;
}

.ti-300px {
  top: 300px !important;
}

.li-300px {
  left: 300px !important;
}

.ri-300px {
  right: 300px !important;
}

.bi-300px {
  bottom: 300px !important;
}

.w-301px {
  width: 301px;
}

.h-301px {
  height: 301px;
}

.wi-301px {
  width: 301px !important;
}

.hi-301px {
  height: 301px !important;
}

.w-max-301px {
  max-width: 301px;
}

.w-min-301px {
  min-width: 301px;
}

.t-301px {
  top: 301px;
}

.l-301px {
  left: 301px;
}

.r-301px {
  right: 301px;
}

.b-301px {
  bottom: 301px;
}

.ti-301px {
  top: 301px !important;
}

.li-301px {
  left: 301px !important;
}

.ri-301px {
  right: 301px !important;
}

.bi-301px {
  bottom: 301px !important;
}

.w-302px {
  width: 302px;
}

.h-302px {
  height: 302px;
}

.wi-302px {
  width: 302px !important;
}

.hi-302px {
  height: 302px !important;
}

.w-max-302px {
  max-width: 302px;
}

.w-min-302px {
  min-width: 302px;
}

.t-302px {
  top: 302px;
}

.l-302px {
  left: 302px;
}

.r-302px {
  right: 302px;
}

.b-302px {
  bottom: 302px;
}

.ti-302px {
  top: 302px !important;
}

.li-302px {
  left: 302px !important;
}

.ri-302px {
  right: 302px !important;
}

.bi-302px {
  bottom: 302px !important;
}

.w-303px {
  width: 303px;
}

.h-303px {
  height: 303px;
}

.wi-303px {
  width: 303px !important;
}

.hi-303px {
  height: 303px !important;
}

.w-max-303px {
  max-width: 303px;
}

.w-min-303px {
  min-width: 303px;
}

.t-303px {
  top: 303px;
}

.l-303px {
  left: 303px;
}

.r-303px {
  right: 303px;
}

.b-303px {
  bottom: 303px;
}

.ti-303px {
  top: 303px !important;
}

.li-303px {
  left: 303px !important;
}

.ri-303px {
  right: 303px !important;
}

.bi-303px {
  bottom: 303px !important;
}

.w-304px {
  width: 304px;
}

.h-304px {
  height: 304px;
}

.wi-304px {
  width: 304px !important;
}

.hi-304px {
  height: 304px !important;
}

.w-max-304px {
  max-width: 304px;
}

.w-min-304px {
  min-width: 304px;
}

.t-304px {
  top: 304px;
}

.l-304px {
  left: 304px;
}

.r-304px {
  right: 304px;
}

.b-304px {
  bottom: 304px;
}

.ti-304px {
  top: 304px !important;
}

.li-304px {
  left: 304px !important;
}

.ri-304px {
  right: 304px !important;
}

.bi-304px {
  bottom: 304px !important;
}

.w-305px {
  width: 305px;
}

.h-305px {
  height: 305px;
}

.wi-305px {
  width: 305px !important;
}

.hi-305px {
  height: 305px !important;
}

.w-max-305px {
  max-width: 305px;
}

.w-min-305px {
  min-width: 305px;
}

.t-305px {
  top: 305px;
}

.l-305px {
  left: 305px;
}

.r-305px {
  right: 305px;
}

.b-305px {
  bottom: 305px;
}

.ti-305px {
  top: 305px !important;
}

.li-305px {
  left: 305px !important;
}

.ri-305px {
  right: 305px !important;
}

.bi-305px {
  bottom: 305px !important;
}

.w-306px {
  width: 306px;
}

.h-306px {
  height: 306px;
}

.wi-306px {
  width: 306px !important;
}

.hi-306px {
  height: 306px !important;
}

.w-max-306px {
  max-width: 306px;
}

.w-min-306px {
  min-width: 306px;
}

.t-306px {
  top: 306px;
}

.l-306px {
  left: 306px;
}

.r-306px {
  right: 306px;
}

.b-306px {
  bottom: 306px;
}

.ti-306px {
  top: 306px !important;
}

.li-306px {
  left: 306px !important;
}

.ri-306px {
  right: 306px !important;
}

.bi-306px {
  bottom: 306px !important;
}

.w-307px {
  width: 307px;
}

.h-307px {
  height: 307px;
}

.wi-307px {
  width: 307px !important;
}

.hi-307px {
  height: 307px !important;
}

.w-max-307px {
  max-width: 307px;
}

.w-min-307px {
  min-width: 307px;
}

.t-307px {
  top: 307px;
}

.l-307px {
  left: 307px;
}

.r-307px {
  right: 307px;
}

.b-307px {
  bottom: 307px;
}

.ti-307px {
  top: 307px !important;
}

.li-307px {
  left: 307px !important;
}

.ri-307px {
  right: 307px !important;
}

.bi-307px {
  bottom: 307px !important;
}

.w-308px {
  width: 308px;
}

.h-308px {
  height: 308px;
}

.wi-308px {
  width: 308px !important;
}

.hi-308px {
  height: 308px !important;
}

.w-max-308px {
  max-width: 308px;
}

.w-min-308px {
  min-width: 308px;
}

.t-308px {
  top: 308px;
}

.l-308px {
  left: 308px;
}

.r-308px {
  right: 308px;
}

.b-308px {
  bottom: 308px;
}

.ti-308px {
  top: 308px !important;
}

.li-308px {
  left: 308px !important;
}

.ri-308px {
  right: 308px !important;
}

.bi-308px {
  bottom: 308px !important;
}

.w-309px {
  width: 309px;
}

.h-309px {
  height: 309px;
}

.wi-309px {
  width: 309px !important;
}

.hi-309px {
  height: 309px !important;
}

.w-max-309px {
  max-width: 309px;
}

.w-min-309px {
  min-width: 309px;
}

.t-309px {
  top: 309px;
}

.l-309px {
  left: 309px;
}

.r-309px {
  right: 309px;
}

.b-309px {
  bottom: 309px;
}

.ti-309px {
  top: 309px !important;
}

.li-309px {
  left: 309px !important;
}

.ri-309px {
  right: 309px !important;
}

.bi-309px {
  bottom: 309px !important;
}

.w-310px {
  width: 310px;
}

.h-310px {
  height: 310px;
}

.wi-310px {
  width: 310px !important;
}

.hi-310px {
  height: 310px !important;
}

.w-max-310px {
  max-width: 310px;
}

.w-min-310px {
  min-width: 310px;
}

.t-310px {
  top: 310px;
}

.l-310px {
  left: 310px;
}

.r-310px {
  right: 310px;
}

.b-310px {
  bottom: 310px;
}

.ti-310px {
  top: 310px !important;
}

.li-310px {
  left: 310px !important;
}

.ri-310px {
  right: 310px !important;
}

.bi-310px {
  bottom: 310px !important;
}

.w-311px {
  width: 311px;
}

.h-311px {
  height: 311px;
}

.wi-311px {
  width: 311px !important;
}

.hi-311px {
  height: 311px !important;
}

.w-max-311px {
  max-width: 311px;
}

.w-min-311px {
  min-width: 311px;
}

.t-311px {
  top: 311px;
}

.l-311px {
  left: 311px;
}

.r-311px {
  right: 311px;
}

.b-311px {
  bottom: 311px;
}

.ti-311px {
  top: 311px !important;
}

.li-311px {
  left: 311px !important;
}

.ri-311px {
  right: 311px !important;
}

.bi-311px {
  bottom: 311px !important;
}

.w-312px {
  width: 312px;
}

.h-312px {
  height: 312px;
}

.wi-312px {
  width: 312px !important;
}

.hi-312px {
  height: 312px !important;
}

.w-max-312px {
  max-width: 312px;
}

.w-min-312px {
  min-width: 312px;
}

.t-312px {
  top: 312px;
}

.l-312px {
  left: 312px;
}

.r-312px {
  right: 312px;
}

.b-312px {
  bottom: 312px;
}

.ti-312px {
  top: 312px !important;
}

.li-312px {
  left: 312px !important;
}

.ri-312px {
  right: 312px !important;
}

.bi-312px {
  bottom: 312px !important;
}

.w-313px {
  width: 313px;
}

.h-313px {
  height: 313px;
}

.wi-313px {
  width: 313px !important;
}

.hi-313px {
  height: 313px !important;
}

.w-max-313px {
  max-width: 313px;
}

.w-min-313px {
  min-width: 313px;
}

.t-313px {
  top: 313px;
}

.l-313px {
  left: 313px;
}

.r-313px {
  right: 313px;
}

.b-313px {
  bottom: 313px;
}

.ti-313px {
  top: 313px !important;
}

.li-313px {
  left: 313px !important;
}

.ri-313px {
  right: 313px !important;
}

.bi-313px {
  bottom: 313px !important;
}

.w-314px {
  width: 314px;
}

.h-314px {
  height: 314px;
}

.wi-314px {
  width: 314px !important;
}

.hi-314px {
  height: 314px !important;
}

.w-max-314px {
  max-width: 314px;
}

.w-min-314px {
  min-width: 314px;
}

.t-314px {
  top: 314px;
}

.l-314px {
  left: 314px;
}

.r-314px {
  right: 314px;
}

.b-314px {
  bottom: 314px;
}

.ti-314px {
  top: 314px !important;
}

.li-314px {
  left: 314px !important;
}

.ri-314px {
  right: 314px !important;
}

.bi-314px {
  bottom: 314px !important;
}

.w-315px {
  width: 315px;
}

.h-315px {
  height: 315px;
}

.wi-315px {
  width: 315px !important;
}

.hi-315px {
  height: 315px !important;
}

.w-max-315px {
  max-width: 315px;
}

.w-min-315px {
  min-width: 315px;
}

.t-315px {
  top: 315px;
}

.l-315px {
  left: 315px;
}

.r-315px {
  right: 315px;
}

.b-315px {
  bottom: 315px;
}

.ti-315px {
  top: 315px !important;
}

.li-315px {
  left: 315px !important;
}

.ri-315px {
  right: 315px !important;
}

.bi-315px {
  bottom: 315px !important;
}

.w-316px {
  width: 316px;
}

.h-316px {
  height: 316px;
}

.wi-316px {
  width: 316px !important;
}

.hi-316px {
  height: 316px !important;
}

.w-max-316px {
  max-width: 316px;
}

.w-min-316px {
  min-width: 316px;
}

.t-316px {
  top: 316px;
}

.l-316px {
  left: 316px;
}

.r-316px {
  right: 316px;
}

.b-316px {
  bottom: 316px;
}

.ti-316px {
  top: 316px !important;
}

.li-316px {
  left: 316px !important;
}

.ri-316px {
  right: 316px !important;
}

.bi-316px {
  bottom: 316px !important;
}

.w-317px {
  width: 317px;
}

.h-317px {
  height: 317px;
}

.wi-317px {
  width: 317px !important;
}

.hi-317px {
  height: 317px !important;
}

.w-max-317px {
  max-width: 317px;
}

.w-min-317px {
  min-width: 317px;
}

.t-317px {
  top: 317px;
}

.l-317px {
  left: 317px;
}

.r-317px {
  right: 317px;
}

.b-317px {
  bottom: 317px;
}

.ti-317px {
  top: 317px !important;
}

.li-317px {
  left: 317px !important;
}

.ri-317px {
  right: 317px !important;
}

.bi-317px {
  bottom: 317px !important;
}

.w-318px {
  width: 318px;
}

.h-318px {
  height: 318px;
}

.wi-318px {
  width: 318px !important;
}

.hi-318px {
  height: 318px !important;
}

.w-max-318px {
  max-width: 318px;
}

.w-min-318px {
  min-width: 318px;
}

.t-318px {
  top: 318px;
}

.l-318px {
  left: 318px;
}

.r-318px {
  right: 318px;
}

.b-318px {
  bottom: 318px;
}

.ti-318px {
  top: 318px !important;
}

.li-318px {
  left: 318px !important;
}

.ri-318px {
  right: 318px !important;
}

.bi-318px {
  bottom: 318px !important;
}

.w-319px {
  width: 319px;
}

.h-319px {
  height: 319px;
}

.wi-319px {
  width: 319px !important;
}

.hi-319px {
  height: 319px !important;
}

.w-max-319px {
  max-width: 319px;
}

.w-min-319px {
  min-width: 319px;
}

.t-319px {
  top: 319px;
}

.l-319px {
  left: 319px;
}

.r-319px {
  right: 319px;
}

.b-319px {
  bottom: 319px;
}

.ti-319px {
  top: 319px !important;
}

.li-319px {
  left: 319px !important;
}

.ri-319px {
  right: 319px !important;
}

.bi-319px {
  bottom: 319px !important;
}

.w-320px {
  width: 320px;
}

.h-320px {
  height: 320px;
}

.wi-320px {
  width: 320px !important;
}

.hi-320px {
  height: 320px !important;
}

.w-max-320px {
  max-width: 320px;
}

.w-min-320px {
  min-width: 320px;
}

.t-320px {
  top: 320px;
}

.l-320px {
  left: 320px;
}

.r-320px {
  right: 320px;
}

.b-320px {
  bottom: 320px;
}

.ti-320px {
  top: 320px !important;
}

.li-320px {
  left: 320px !important;
}

.ri-320px {
  right: 320px !important;
}

.bi-320px {
  bottom: 320px !important;
}

.w-321px {
  width: 321px;
}

.h-321px {
  height: 321px;
}

.wi-321px {
  width: 321px !important;
}

.hi-321px {
  height: 321px !important;
}

.w-max-321px {
  max-width: 321px;
}

.w-min-321px {
  min-width: 321px;
}

.t-321px {
  top: 321px;
}

.l-321px {
  left: 321px;
}

.r-321px {
  right: 321px;
}

.b-321px {
  bottom: 321px;
}

.ti-321px {
  top: 321px !important;
}

.li-321px {
  left: 321px !important;
}

.ri-321px {
  right: 321px !important;
}

.bi-321px {
  bottom: 321px !important;
}

.w-322px {
  width: 322px;
}

.h-322px {
  height: 322px;
}

.wi-322px {
  width: 322px !important;
}

.hi-322px {
  height: 322px !important;
}

.w-max-322px {
  max-width: 322px;
}

.w-min-322px {
  min-width: 322px;
}

.t-322px {
  top: 322px;
}

.l-322px {
  left: 322px;
}

.r-322px {
  right: 322px;
}

.b-322px {
  bottom: 322px;
}

.ti-322px {
  top: 322px !important;
}

.li-322px {
  left: 322px !important;
}

.ri-322px {
  right: 322px !important;
}

.bi-322px {
  bottom: 322px !important;
}

.w-323px {
  width: 323px;
}

.h-323px {
  height: 323px;
}

.wi-323px {
  width: 323px !important;
}

.hi-323px {
  height: 323px !important;
}

.w-max-323px {
  max-width: 323px;
}

.w-min-323px {
  min-width: 323px;
}

.t-323px {
  top: 323px;
}

.l-323px {
  left: 323px;
}

.r-323px {
  right: 323px;
}

.b-323px {
  bottom: 323px;
}

.ti-323px {
  top: 323px !important;
}

.li-323px {
  left: 323px !important;
}

.ri-323px {
  right: 323px !important;
}

.bi-323px {
  bottom: 323px !important;
}

.w-324px {
  width: 324px;
}

.h-324px {
  height: 324px;
}

.wi-324px {
  width: 324px !important;
}

.hi-324px {
  height: 324px !important;
}

.w-max-324px {
  max-width: 324px;
}

.w-min-324px {
  min-width: 324px;
}

.t-324px {
  top: 324px;
}

.l-324px {
  left: 324px;
}

.r-324px {
  right: 324px;
}

.b-324px {
  bottom: 324px;
}

.ti-324px {
  top: 324px !important;
}

.li-324px {
  left: 324px !important;
}

.ri-324px {
  right: 324px !important;
}

.bi-324px {
  bottom: 324px !important;
}

.w-325px {
  width: 325px;
}

.h-325px {
  height: 325px;
}

.wi-325px {
  width: 325px !important;
}

.hi-325px {
  height: 325px !important;
}

.w-max-325px {
  max-width: 325px;
}

.w-min-325px {
  min-width: 325px;
}

.t-325px {
  top: 325px;
}

.l-325px {
  left: 325px;
}

.r-325px {
  right: 325px;
}

.b-325px {
  bottom: 325px;
}

.ti-325px {
  top: 325px !important;
}

.li-325px {
  left: 325px !important;
}

.ri-325px {
  right: 325px !important;
}

.bi-325px {
  bottom: 325px !important;
}

.w-326px {
  width: 326px;
}

.h-326px {
  height: 326px;
}

.wi-326px {
  width: 326px !important;
}

.hi-326px {
  height: 326px !important;
}

.w-max-326px {
  max-width: 326px;
}

.w-min-326px {
  min-width: 326px;
}

.t-326px {
  top: 326px;
}

.l-326px {
  left: 326px;
}

.r-326px {
  right: 326px;
}

.b-326px {
  bottom: 326px;
}

.ti-326px {
  top: 326px !important;
}

.li-326px {
  left: 326px !important;
}

.ri-326px {
  right: 326px !important;
}

.bi-326px {
  bottom: 326px !important;
}

.w-327px {
  width: 327px;
}

.h-327px {
  height: 327px;
}

.wi-327px {
  width: 327px !important;
}

.hi-327px {
  height: 327px !important;
}

.w-max-327px {
  max-width: 327px;
}

.w-min-327px {
  min-width: 327px;
}

.t-327px {
  top: 327px;
}

.l-327px {
  left: 327px;
}

.r-327px {
  right: 327px;
}

.b-327px {
  bottom: 327px;
}

.ti-327px {
  top: 327px !important;
}

.li-327px {
  left: 327px !important;
}

.ri-327px {
  right: 327px !important;
}

.bi-327px {
  bottom: 327px !important;
}

.w-328px {
  width: 328px;
}

.h-328px {
  height: 328px;
}

.wi-328px {
  width: 328px !important;
}

.hi-328px {
  height: 328px !important;
}

.w-max-328px {
  max-width: 328px;
}

.w-min-328px {
  min-width: 328px;
}

.t-328px {
  top: 328px;
}

.l-328px {
  left: 328px;
}

.r-328px {
  right: 328px;
}

.b-328px {
  bottom: 328px;
}

.ti-328px {
  top: 328px !important;
}

.li-328px {
  left: 328px !important;
}

.ri-328px {
  right: 328px !important;
}

.bi-328px {
  bottom: 328px !important;
}

.w-329px {
  width: 329px;
}

.h-329px {
  height: 329px;
}

.wi-329px {
  width: 329px !important;
}

.hi-329px {
  height: 329px !important;
}

.w-max-329px {
  max-width: 329px;
}

.w-min-329px {
  min-width: 329px;
}

.t-329px {
  top: 329px;
}

.l-329px {
  left: 329px;
}

.r-329px {
  right: 329px;
}

.b-329px {
  bottom: 329px;
}

.ti-329px {
  top: 329px !important;
}

.li-329px {
  left: 329px !important;
}

.ri-329px {
  right: 329px !important;
}

.bi-329px {
  bottom: 329px !important;
}

.w-330px {
  width: 330px;
}

.h-330px {
  height: 330px;
}

.wi-330px {
  width: 330px !important;
}

.hi-330px {
  height: 330px !important;
}

.w-max-330px {
  max-width: 330px;
}

.w-min-330px {
  min-width: 330px;
}

.t-330px {
  top: 330px;
}

.l-330px {
  left: 330px;
}

.r-330px {
  right: 330px;
}

.b-330px {
  bottom: 330px;
}

.ti-330px {
  top: 330px !important;
}

.li-330px {
  left: 330px !important;
}

.ri-330px {
  right: 330px !important;
}

.bi-330px {
  bottom: 330px !important;
}

.w-331px {
  width: 331px;
}

.h-331px {
  height: 331px;
}

.wi-331px {
  width: 331px !important;
}

.hi-331px {
  height: 331px !important;
}

.w-max-331px {
  max-width: 331px;
}

.w-min-331px {
  min-width: 331px;
}

.t-331px {
  top: 331px;
}

.l-331px {
  left: 331px;
}

.r-331px {
  right: 331px;
}

.b-331px {
  bottom: 331px;
}

.ti-331px {
  top: 331px !important;
}

.li-331px {
  left: 331px !important;
}

.ri-331px {
  right: 331px !important;
}

.bi-331px {
  bottom: 331px !important;
}

.w-332px {
  width: 332px;
}

.h-332px {
  height: 332px;
}

.wi-332px {
  width: 332px !important;
}

.hi-332px {
  height: 332px !important;
}

.w-max-332px {
  max-width: 332px;
}

.w-min-332px {
  min-width: 332px;
}

.t-332px {
  top: 332px;
}

.l-332px {
  left: 332px;
}

.r-332px {
  right: 332px;
}

.b-332px {
  bottom: 332px;
}

.ti-332px {
  top: 332px !important;
}

.li-332px {
  left: 332px !important;
}

.ri-332px {
  right: 332px !important;
}

.bi-332px {
  bottom: 332px !important;
}

.w-333px {
  width: 333px;
}

.h-333px {
  height: 333px;
}

.wi-333px {
  width: 333px !important;
}

.hi-333px {
  height: 333px !important;
}

.w-max-333px {
  max-width: 333px;
}

.w-min-333px {
  min-width: 333px;
}

.t-333px {
  top: 333px;
}

.l-333px {
  left: 333px;
}

.r-333px {
  right: 333px;
}

.b-333px {
  bottom: 333px;
}

.ti-333px {
  top: 333px !important;
}

.li-333px {
  left: 333px !important;
}

.ri-333px {
  right: 333px !important;
}

.bi-333px {
  bottom: 333px !important;
}

.w-334px {
  width: 334px;
}

.h-334px {
  height: 334px;
}

.wi-334px {
  width: 334px !important;
}

.hi-334px {
  height: 334px !important;
}

.w-max-334px {
  max-width: 334px;
}

.w-min-334px {
  min-width: 334px;
}

.t-334px {
  top: 334px;
}

.l-334px {
  left: 334px;
}

.r-334px {
  right: 334px;
}

.b-334px {
  bottom: 334px;
}

.ti-334px {
  top: 334px !important;
}

.li-334px {
  left: 334px !important;
}

.ri-334px {
  right: 334px !important;
}

.bi-334px {
  bottom: 334px !important;
}

.w-335px {
  width: 335px;
}

.h-335px {
  height: 335px;
}

.wi-335px {
  width: 335px !important;
}

.hi-335px {
  height: 335px !important;
}

.w-max-335px {
  max-width: 335px;
}

.w-min-335px {
  min-width: 335px;
}

.t-335px {
  top: 335px;
}

.l-335px {
  left: 335px;
}

.r-335px {
  right: 335px;
}

.b-335px {
  bottom: 335px;
}

.ti-335px {
  top: 335px !important;
}

.li-335px {
  left: 335px !important;
}

.ri-335px {
  right: 335px !important;
}

.bi-335px {
  bottom: 335px !important;
}

.w-336px {
  width: 336px;
}

.h-336px {
  height: 336px;
}

.wi-336px {
  width: 336px !important;
}

.hi-336px {
  height: 336px !important;
}

.w-max-336px {
  max-width: 336px;
}

.w-min-336px {
  min-width: 336px;
}

.t-336px {
  top: 336px;
}

.l-336px {
  left: 336px;
}

.r-336px {
  right: 336px;
}

.b-336px {
  bottom: 336px;
}

.ti-336px {
  top: 336px !important;
}

.li-336px {
  left: 336px !important;
}

.ri-336px {
  right: 336px !important;
}

.bi-336px {
  bottom: 336px !important;
}

.w-337px {
  width: 337px;
}

.h-337px {
  height: 337px;
}

.wi-337px {
  width: 337px !important;
}

.hi-337px {
  height: 337px !important;
}

.w-max-337px {
  max-width: 337px;
}

.w-min-337px {
  min-width: 337px;
}

.t-337px {
  top: 337px;
}

.l-337px {
  left: 337px;
}

.r-337px {
  right: 337px;
}

.b-337px {
  bottom: 337px;
}

.ti-337px {
  top: 337px !important;
}

.li-337px {
  left: 337px !important;
}

.ri-337px {
  right: 337px !important;
}

.bi-337px {
  bottom: 337px !important;
}

.w-338px {
  width: 338px;
}

.h-338px {
  height: 338px;
}

.wi-338px {
  width: 338px !important;
}

.hi-338px {
  height: 338px !important;
}

.w-max-338px {
  max-width: 338px;
}

.w-min-338px {
  min-width: 338px;
}

.t-338px {
  top: 338px;
}

.l-338px {
  left: 338px;
}

.r-338px {
  right: 338px;
}

.b-338px {
  bottom: 338px;
}

.ti-338px {
  top: 338px !important;
}

.li-338px {
  left: 338px !important;
}

.ri-338px {
  right: 338px !important;
}

.bi-338px {
  bottom: 338px !important;
}

.w-339px {
  width: 339px;
}

.h-339px {
  height: 339px;
}

.wi-339px {
  width: 339px !important;
}

.hi-339px {
  height: 339px !important;
}

.w-max-339px {
  max-width: 339px;
}

.w-min-339px {
  min-width: 339px;
}

.t-339px {
  top: 339px;
}

.l-339px {
  left: 339px;
}

.r-339px {
  right: 339px;
}

.b-339px {
  bottom: 339px;
}

.ti-339px {
  top: 339px !important;
}

.li-339px {
  left: 339px !important;
}

.ri-339px {
  right: 339px !important;
}

.bi-339px {
  bottom: 339px !important;
}

.w-340px {
  width: 340px;
}

.h-340px {
  height: 340px;
}

.wi-340px {
  width: 340px !important;
}

.hi-340px {
  height: 340px !important;
}

.w-max-340px {
  max-width: 340px;
}

.w-min-340px {
  min-width: 340px;
}

.t-340px {
  top: 340px;
}

.l-340px {
  left: 340px;
}

.r-340px {
  right: 340px;
}

.b-340px {
  bottom: 340px;
}

.ti-340px {
  top: 340px !important;
}

.li-340px {
  left: 340px !important;
}

.ri-340px {
  right: 340px !important;
}

.bi-340px {
  bottom: 340px !important;
}

.w-341px {
  width: 341px;
}

.h-341px {
  height: 341px;
}

.wi-341px {
  width: 341px !important;
}

.hi-341px {
  height: 341px !important;
}

.w-max-341px {
  max-width: 341px;
}

.w-min-341px {
  min-width: 341px;
}

.t-341px {
  top: 341px;
}

.l-341px {
  left: 341px;
}

.r-341px {
  right: 341px;
}

.b-341px {
  bottom: 341px;
}

.ti-341px {
  top: 341px !important;
}

.li-341px {
  left: 341px !important;
}

.ri-341px {
  right: 341px !important;
}

.bi-341px {
  bottom: 341px !important;
}

.w-342px {
  width: 342px;
}

.h-342px {
  height: 342px;
}

.wi-342px {
  width: 342px !important;
}

.hi-342px {
  height: 342px !important;
}

.w-max-342px {
  max-width: 342px;
}

.w-min-342px {
  min-width: 342px;
}

.t-342px {
  top: 342px;
}

.l-342px {
  left: 342px;
}

.r-342px {
  right: 342px;
}

.b-342px {
  bottom: 342px;
}

.ti-342px {
  top: 342px !important;
}

.li-342px {
  left: 342px !important;
}

.ri-342px {
  right: 342px !important;
}

.bi-342px {
  bottom: 342px !important;
}

.w-343px {
  width: 343px;
}

.h-343px {
  height: 343px;
}

.wi-343px {
  width: 343px !important;
}

.hi-343px {
  height: 343px !important;
}

.w-max-343px {
  max-width: 343px;
}

.w-min-343px {
  min-width: 343px;
}

.t-343px {
  top: 343px;
}

.l-343px {
  left: 343px;
}

.r-343px {
  right: 343px;
}

.b-343px {
  bottom: 343px;
}

.ti-343px {
  top: 343px !important;
}

.li-343px {
  left: 343px !important;
}

.ri-343px {
  right: 343px !important;
}

.bi-343px {
  bottom: 343px !important;
}

.w-344px {
  width: 344px;
}

.h-344px {
  height: 344px;
}

.wi-344px {
  width: 344px !important;
}

.hi-344px {
  height: 344px !important;
}

.w-max-344px {
  max-width: 344px;
}

.w-min-344px {
  min-width: 344px;
}

.t-344px {
  top: 344px;
}

.l-344px {
  left: 344px;
}

.r-344px {
  right: 344px;
}

.b-344px {
  bottom: 344px;
}

.ti-344px {
  top: 344px !important;
}

.li-344px {
  left: 344px !important;
}

.ri-344px {
  right: 344px !important;
}

.bi-344px {
  bottom: 344px !important;
}

.w-345px {
  width: 345px;
}

.h-345px {
  height: 345px;
}

.wi-345px {
  width: 345px !important;
}

.hi-345px {
  height: 345px !important;
}

.w-max-345px {
  max-width: 345px;
}

.w-min-345px {
  min-width: 345px;
}

.t-345px {
  top: 345px;
}

.l-345px {
  left: 345px;
}

.r-345px {
  right: 345px;
}

.b-345px {
  bottom: 345px;
}

.ti-345px {
  top: 345px !important;
}

.li-345px {
  left: 345px !important;
}

.ri-345px {
  right: 345px !important;
}

.bi-345px {
  bottom: 345px !important;
}

.w-346px {
  width: 346px;
}

.h-346px {
  height: 346px;
}

.wi-346px {
  width: 346px !important;
}

.hi-346px {
  height: 346px !important;
}

.w-max-346px {
  max-width: 346px;
}

.w-min-346px {
  min-width: 346px;
}

.t-346px {
  top: 346px;
}

.l-346px {
  left: 346px;
}

.r-346px {
  right: 346px;
}

.b-346px {
  bottom: 346px;
}

.ti-346px {
  top: 346px !important;
}

.li-346px {
  left: 346px !important;
}

.ri-346px {
  right: 346px !important;
}

.bi-346px {
  bottom: 346px !important;
}

.w-347px {
  width: 347px;
}

.h-347px {
  height: 347px;
}

.wi-347px {
  width: 347px !important;
}

.hi-347px {
  height: 347px !important;
}

.w-max-347px {
  max-width: 347px;
}

.w-min-347px {
  min-width: 347px;
}

.t-347px {
  top: 347px;
}

.l-347px {
  left: 347px;
}

.r-347px {
  right: 347px;
}

.b-347px {
  bottom: 347px;
}

.ti-347px {
  top: 347px !important;
}

.li-347px {
  left: 347px !important;
}

.ri-347px {
  right: 347px !important;
}

.bi-347px {
  bottom: 347px !important;
}

.w-348px {
  width: 348px;
}

.h-348px {
  height: 348px;
}

.wi-348px {
  width: 348px !important;
}

.hi-348px {
  height: 348px !important;
}

.w-max-348px {
  max-width: 348px;
}

.w-min-348px {
  min-width: 348px;
}

.t-348px {
  top: 348px;
}

.l-348px {
  left: 348px;
}

.r-348px {
  right: 348px;
}

.b-348px {
  bottom: 348px;
}

.ti-348px {
  top: 348px !important;
}

.li-348px {
  left: 348px !important;
}

.ri-348px {
  right: 348px !important;
}

.bi-348px {
  bottom: 348px !important;
}

.w-349px {
  width: 349px;
}

.h-349px {
  height: 349px;
}

.wi-349px {
  width: 349px !important;
}

.hi-349px {
  height: 349px !important;
}

.w-max-349px {
  max-width: 349px;
}

.w-min-349px {
  min-width: 349px;
}

.t-349px {
  top: 349px;
}

.l-349px {
  left: 349px;
}

.r-349px {
  right: 349px;
}

.b-349px {
  bottom: 349px;
}

.ti-349px {
  top: 349px !important;
}

.li-349px {
  left: 349px !important;
}

.ri-349px {
  right: 349px !important;
}

.bi-349px {
  bottom: 349px !important;
}

.w-350px {
  width: 350px;
}

.h-350px {
  height: 350px;
}

.wi-350px {
  width: 350px !important;
}

.hi-350px {
  height: 350px !important;
}

.w-max-350px {
  max-width: 350px;
}

.w-min-350px {
  min-width: 350px;
}

.t-350px {
  top: 350px;
}

.l-350px {
  left: 350px;
}

.r-350px {
  right: 350px;
}

.b-350px {
  bottom: 350px;
}

.ti-350px {
  top: 350px !important;
}

.li-350px {
  left: 350px !important;
}

.ri-350px {
  right: 350px !important;
}

.bi-350px {
  bottom: 350px !important;
}

.w-351px {
  width: 351px;
}

.h-351px {
  height: 351px;
}

.wi-351px {
  width: 351px !important;
}

.hi-351px {
  height: 351px !important;
}

.w-max-351px {
  max-width: 351px;
}

.w-min-351px {
  min-width: 351px;
}

.t-351px {
  top: 351px;
}

.l-351px {
  left: 351px;
}

.r-351px {
  right: 351px;
}

.b-351px {
  bottom: 351px;
}

.ti-351px {
  top: 351px !important;
}

.li-351px {
  left: 351px !important;
}

.ri-351px {
  right: 351px !important;
}

.bi-351px {
  bottom: 351px !important;
}

.w-352px {
  width: 352px;
}

.h-352px {
  height: 352px;
}

.wi-352px {
  width: 352px !important;
}

.hi-352px {
  height: 352px !important;
}

.w-max-352px {
  max-width: 352px;
}

.w-min-352px {
  min-width: 352px;
}

.t-352px {
  top: 352px;
}

.l-352px {
  left: 352px;
}

.r-352px {
  right: 352px;
}

.b-352px {
  bottom: 352px;
}

.ti-352px {
  top: 352px !important;
}

.li-352px {
  left: 352px !important;
}

.ri-352px {
  right: 352px !important;
}

.bi-352px {
  bottom: 352px !important;
}

.w-353px {
  width: 353px;
}

.h-353px {
  height: 353px;
}

.wi-353px {
  width: 353px !important;
}

.hi-353px {
  height: 353px !important;
}

.w-max-353px {
  max-width: 353px;
}

.w-min-353px {
  min-width: 353px;
}

.t-353px {
  top: 353px;
}

.l-353px {
  left: 353px;
}

.r-353px {
  right: 353px;
}

.b-353px {
  bottom: 353px;
}

.ti-353px {
  top: 353px !important;
}

.li-353px {
  left: 353px !important;
}

.ri-353px {
  right: 353px !important;
}

.bi-353px {
  bottom: 353px !important;
}

.w-354px {
  width: 354px;
}

.h-354px {
  height: 354px;
}

.wi-354px {
  width: 354px !important;
}

.hi-354px {
  height: 354px !important;
}

.w-max-354px {
  max-width: 354px;
}

.w-min-354px {
  min-width: 354px;
}

.t-354px {
  top: 354px;
}

.l-354px {
  left: 354px;
}

.r-354px {
  right: 354px;
}

.b-354px {
  bottom: 354px;
}

.ti-354px {
  top: 354px !important;
}

.li-354px {
  left: 354px !important;
}

.ri-354px {
  right: 354px !important;
}

.bi-354px {
  bottom: 354px !important;
}

.w-355px {
  width: 355px;
}

.h-355px {
  height: 355px;
}

.wi-355px {
  width: 355px !important;
}

.hi-355px {
  height: 355px !important;
}

.w-max-355px {
  max-width: 355px;
}

.w-min-355px {
  min-width: 355px;
}

.t-355px {
  top: 355px;
}

.l-355px {
  left: 355px;
}

.r-355px {
  right: 355px;
}

.b-355px {
  bottom: 355px;
}

.ti-355px {
  top: 355px !important;
}

.li-355px {
  left: 355px !important;
}

.ri-355px {
  right: 355px !important;
}

.bi-355px {
  bottom: 355px !important;
}

.w-356px {
  width: 356px;
}

.h-356px {
  height: 356px;
}

.wi-356px {
  width: 356px !important;
}

.hi-356px {
  height: 356px !important;
}

.w-max-356px {
  max-width: 356px;
}

.w-min-356px {
  min-width: 356px;
}

.t-356px {
  top: 356px;
}

.l-356px {
  left: 356px;
}

.r-356px {
  right: 356px;
}

.b-356px {
  bottom: 356px;
}

.ti-356px {
  top: 356px !important;
}

.li-356px {
  left: 356px !important;
}

.ri-356px {
  right: 356px !important;
}

.bi-356px {
  bottom: 356px !important;
}

.w-357px {
  width: 357px;
}

.h-357px {
  height: 357px;
}

.wi-357px {
  width: 357px !important;
}

.hi-357px {
  height: 357px !important;
}

.w-max-357px {
  max-width: 357px;
}

.w-min-357px {
  min-width: 357px;
}

.t-357px {
  top: 357px;
}

.l-357px {
  left: 357px;
}

.r-357px {
  right: 357px;
}

.b-357px {
  bottom: 357px;
}

.ti-357px {
  top: 357px !important;
}

.li-357px {
  left: 357px !important;
}

.ri-357px {
  right: 357px !important;
}

.bi-357px {
  bottom: 357px !important;
}

.w-358px {
  width: 358px;
}

.h-358px {
  height: 358px;
}

.wi-358px {
  width: 358px !important;
}

.hi-358px {
  height: 358px !important;
}

.w-max-358px {
  max-width: 358px;
}

.w-min-358px {
  min-width: 358px;
}

.t-358px {
  top: 358px;
}

.l-358px {
  left: 358px;
}

.r-358px {
  right: 358px;
}

.b-358px {
  bottom: 358px;
}

.ti-358px {
  top: 358px !important;
}

.li-358px {
  left: 358px !important;
}

.ri-358px {
  right: 358px !important;
}

.bi-358px {
  bottom: 358px !important;
}

.w-359px {
  width: 359px;
}

.h-359px {
  height: 359px;
}

.wi-359px {
  width: 359px !important;
}

.hi-359px {
  height: 359px !important;
}

.w-max-359px {
  max-width: 359px;
}

.w-min-359px {
  min-width: 359px;
}

.t-359px {
  top: 359px;
}

.l-359px {
  left: 359px;
}

.r-359px {
  right: 359px;
}

.b-359px {
  bottom: 359px;
}

.ti-359px {
  top: 359px !important;
}

.li-359px {
  left: 359px !important;
}

.ri-359px {
  right: 359px !important;
}

.bi-359px {
  bottom: 359px !important;
}

.w-360px {
  width: 360px;
}

.h-360px {
  height: 360px;
}

.wi-360px {
  width: 360px !important;
}

.hi-360px {
  height: 360px !important;
}

.w-max-360px {
  max-width: 360px;
}

.w-min-360px {
  min-width: 360px;
}

.t-360px {
  top: 360px;
}

.l-360px {
  left: 360px;
}

.r-360px {
  right: 360px;
}

.b-360px {
  bottom: 360px;
}

.ti-360px {
  top: 360px !important;
}

.li-360px {
  left: 360px !important;
}

.ri-360px {
  right: 360px !important;
}

.bi-360px {
  bottom: 360px !important;
}

.w-361px {
  width: 361px;
}

.h-361px {
  height: 361px;
}

.wi-361px {
  width: 361px !important;
}

.hi-361px {
  height: 361px !important;
}

.w-max-361px {
  max-width: 361px;
}

.w-min-361px {
  min-width: 361px;
}

.t-361px {
  top: 361px;
}

.l-361px {
  left: 361px;
}

.r-361px {
  right: 361px;
}

.b-361px {
  bottom: 361px;
}

.ti-361px {
  top: 361px !important;
}

.li-361px {
  left: 361px !important;
}

.ri-361px {
  right: 361px !important;
}

.bi-361px {
  bottom: 361px !important;
}

.w-362px {
  width: 362px;
}

.h-362px {
  height: 362px;
}

.wi-362px {
  width: 362px !important;
}

.hi-362px {
  height: 362px !important;
}

.w-max-362px {
  max-width: 362px;
}

.w-min-362px {
  min-width: 362px;
}

.t-362px {
  top: 362px;
}

.l-362px {
  left: 362px;
}

.r-362px {
  right: 362px;
}

.b-362px {
  bottom: 362px;
}

.ti-362px {
  top: 362px !important;
}

.li-362px {
  left: 362px !important;
}

.ri-362px {
  right: 362px !important;
}

.bi-362px {
  bottom: 362px !important;
}

.w-363px {
  width: 363px;
}

.h-363px {
  height: 363px;
}

.wi-363px {
  width: 363px !important;
}

.hi-363px {
  height: 363px !important;
}

.w-max-363px {
  max-width: 363px;
}

.w-min-363px {
  min-width: 363px;
}

.t-363px {
  top: 363px;
}

.l-363px {
  left: 363px;
}

.r-363px {
  right: 363px;
}

.b-363px {
  bottom: 363px;
}

.ti-363px {
  top: 363px !important;
}

.li-363px {
  left: 363px !important;
}

.ri-363px {
  right: 363px !important;
}

.bi-363px {
  bottom: 363px !important;
}

.w-364px {
  width: 364px;
}

.h-364px {
  height: 364px;
}

.wi-364px {
  width: 364px !important;
}

.hi-364px {
  height: 364px !important;
}

.w-max-364px {
  max-width: 364px;
}

.w-min-364px {
  min-width: 364px;
}

.t-364px {
  top: 364px;
}

.l-364px {
  left: 364px;
}

.r-364px {
  right: 364px;
}

.b-364px {
  bottom: 364px;
}

.ti-364px {
  top: 364px !important;
}

.li-364px {
  left: 364px !important;
}

.ri-364px {
  right: 364px !important;
}

.bi-364px {
  bottom: 364px !important;
}

.w-365px {
  width: 365px;
}

.h-365px {
  height: 365px;
}

.wi-365px {
  width: 365px !important;
}

.hi-365px {
  height: 365px !important;
}

.w-max-365px {
  max-width: 365px;
}

.w-min-365px {
  min-width: 365px;
}

.t-365px {
  top: 365px;
}

.l-365px {
  left: 365px;
}

.r-365px {
  right: 365px;
}

.b-365px {
  bottom: 365px;
}

.ti-365px {
  top: 365px !important;
}

.li-365px {
  left: 365px !important;
}

.ri-365px {
  right: 365px !important;
}

.bi-365px {
  bottom: 365px !important;
}

.w-366px {
  width: 366px;
}

.h-366px {
  height: 366px;
}

.wi-366px {
  width: 366px !important;
}

.hi-366px {
  height: 366px !important;
}

.w-max-366px {
  max-width: 366px;
}

.w-min-366px {
  min-width: 366px;
}

.t-366px {
  top: 366px;
}

.l-366px {
  left: 366px;
}

.r-366px {
  right: 366px;
}

.b-366px {
  bottom: 366px;
}

.ti-366px {
  top: 366px !important;
}

.li-366px {
  left: 366px !important;
}

.ri-366px {
  right: 366px !important;
}

.bi-366px {
  bottom: 366px !important;
}

.w-367px {
  width: 367px;
}

.h-367px {
  height: 367px;
}

.wi-367px {
  width: 367px !important;
}

.hi-367px {
  height: 367px !important;
}

.w-max-367px {
  max-width: 367px;
}

.w-min-367px {
  min-width: 367px;
}

.t-367px {
  top: 367px;
}

.l-367px {
  left: 367px;
}

.r-367px {
  right: 367px;
}

.b-367px {
  bottom: 367px;
}

.ti-367px {
  top: 367px !important;
}

.li-367px {
  left: 367px !important;
}

.ri-367px {
  right: 367px !important;
}

.bi-367px {
  bottom: 367px !important;
}

.w-368px {
  width: 368px;
}

.h-368px {
  height: 368px;
}

.wi-368px {
  width: 368px !important;
}

.hi-368px {
  height: 368px !important;
}

.w-max-368px {
  max-width: 368px;
}

.w-min-368px {
  min-width: 368px;
}

.t-368px {
  top: 368px;
}

.l-368px {
  left: 368px;
}

.r-368px {
  right: 368px;
}

.b-368px {
  bottom: 368px;
}

.ti-368px {
  top: 368px !important;
}

.li-368px {
  left: 368px !important;
}

.ri-368px {
  right: 368px !important;
}

.bi-368px {
  bottom: 368px !important;
}

.w-369px {
  width: 369px;
}

.h-369px {
  height: 369px;
}

.wi-369px {
  width: 369px !important;
}

.hi-369px {
  height: 369px !important;
}

.w-max-369px {
  max-width: 369px;
}

.w-min-369px {
  min-width: 369px;
}

.t-369px {
  top: 369px;
}

.l-369px {
  left: 369px;
}

.r-369px {
  right: 369px;
}

.b-369px {
  bottom: 369px;
}

.ti-369px {
  top: 369px !important;
}

.li-369px {
  left: 369px !important;
}

.ri-369px {
  right: 369px !important;
}

.bi-369px {
  bottom: 369px !important;
}

.w-370px {
  width: 370px;
}

.h-370px {
  height: 370px;
}

.wi-370px {
  width: 370px !important;
}

.hi-370px {
  height: 370px !important;
}

.w-max-370px {
  max-width: 370px;
}

.w-min-370px {
  min-width: 370px;
}

.t-370px {
  top: 370px;
}

.l-370px {
  left: 370px;
}

.r-370px {
  right: 370px;
}

.b-370px {
  bottom: 370px;
}

.ti-370px {
  top: 370px !important;
}

.li-370px {
  left: 370px !important;
}

.ri-370px {
  right: 370px !important;
}

.bi-370px {
  bottom: 370px !important;
}

.w-371px {
  width: 371px;
}

.h-371px {
  height: 371px;
}

.wi-371px {
  width: 371px !important;
}

.hi-371px {
  height: 371px !important;
}

.w-max-371px {
  max-width: 371px;
}

.w-min-371px {
  min-width: 371px;
}

.t-371px {
  top: 371px;
}

.l-371px {
  left: 371px;
}

.r-371px {
  right: 371px;
}

.b-371px {
  bottom: 371px;
}

.ti-371px {
  top: 371px !important;
}

.li-371px {
  left: 371px !important;
}

.ri-371px {
  right: 371px !important;
}

.bi-371px {
  bottom: 371px !important;
}

.w-372px {
  width: 372px;
}

.h-372px {
  height: 372px;
}

.wi-372px {
  width: 372px !important;
}

.hi-372px {
  height: 372px !important;
}

.w-max-372px {
  max-width: 372px;
}

.w-min-372px {
  min-width: 372px;
}

.t-372px {
  top: 372px;
}

.l-372px {
  left: 372px;
}

.r-372px {
  right: 372px;
}

.b-372px {
  bottom: 372px;
}

.ti-372px {
  top: 372px !important;
}

.li-372px {
  left: 372px !important;
}

.ri-372px {
  right: 372px !important;
}

.bi-372px {
  bottom: 372px !important;
}

.w-373px {
  width: 373px;
}

.h-373px {
  height: 373px;
}

.wi-373px {
  width: 373px !important;
}

.hi-373px {
  height: 373px !important;
}

.w-max-373px {
  max-width: 373px;
}

.w-min-373px {
  min-width: 373px;
}

.t-373px {
  top: 373px;
}

.l-373px {
  left: 373px;
}

.r-373px {
  right: 373px;
}

.b-373px {
  bottom: 373px;
}

.ti-373px {
  top: 373px !important;
}

.li-373px {
  left: 373px !important;
}

.ri-373px {
  right: 373px !important;
}

.bi-373px {
  bottom: 373px !important;
}

.w-374px {
  width: 374px;
}

.h-374px {
  height: 374px;
}

.wi-374px {
  width: 374px !important;
}

.hi-374px {
  height: 374px !important;
}

.w-max-374px {
  max-width: 374px;
}

.w-min-374px {
  min-width: 374px;
}

.t-374px {
  top: 374px;
}

.l-374px {
  left: 374px;
}

.r-374px {
  right: 374px;
}

.b-374px {
  bottom: 374px;
}

.ti-374px {
  top: 374px !important;
}

.li-374px {
  left: 374px !important;
}

.ri-374px {
  right: 374px !important;
}

.bi-374px {
  bottom: 374px !important;
}

.w-375px {
  width: 375px;
}

.h-375px {
  height: 375px;
}

.wi-375px {
  width: 375px !important;
}

.hi-375px {
  height: 375px !important;
}

.w-max-375px {
  max-width: 375px;
}

.w-min-375px {
  min-width: 375px;
}

.t-375px {
  top: 375px;
}

.l-375px {
  left: 375px;
}

.r-375px {
  right: 375px;
}

.b-375px {
  bottom: 375px;
}

.ti-375px {
  top: 375px !important;
}

.li-375px {
  left: 375px !important;
}

.ri-375px {
  right: 375px !important;
}

.bi-375px {
  bottom: 375px !important;
}

.w-376px {
  width: 376px;
}

.h-376px {
  height: 376px;
}

.wi-376px {
  width: 376px !important;
}

.hi-376px {
  height: 376px !important;
}

.w-max-376px {
  max-width: 376px;
}

.w-min-376px {
  min-width: 376px;
}

.t-376px {
  top: 376px;
}

.l-376px {
  left: 376px;
}

.r-376px {
  right: 376px;
}

.b-376px {
  bottom: 376px;
}

.ti-376px {
  top: 376px !important;
}

.li-376px {
  left: 376px !important;
}

.ri-376px {
  right: 376px !important;
}

.bi-376px {
  bottom: 376px !important;
}

.w-377px {
  width: 377px;
}

.h-377px {
  height: 377px;
}

.wi-377px {
  width: 377px !important;
}

.hi-377px {
  height: 377px !important;
}

.w-max-377px {
  max-width: 377px;
}

.w-min-377px {
  min-width: 377px;
}

.t-377px {
  top: 377px;
}

.l-377px {
  left: 377px;
}

.r-377px {
  right: 377px;
}

.b-377px {
  bottom: 377px;
}

.ti-377px {
  top: 377px !important;
}

.li-377px {
  left: 377px !important;
}

.ri-377px {
  right: 377px !important;
}

.bi-377px {
  bottom: 377px !important;
}

.w-378px {
  width: 378px;
}

.h-378px {
  height: 378px;
}

.wi-378px {
  width: 378px !important;
}

.hi-378px {
  height: 378px !important;
}

.w-max-378px {
  max-width: 378px;
}

.w-min-378px {
  min-width: 378px;
}

.t-378px {
  top: 378px;
}

.l-378px {
  left: 378px;
}

.r-378px {
  right: 378px;
}

.b-378px {
  bottom: 378px;
}

.ti-378px {
  top: 378px !important;
}

.li-378px {
  left: 378px !important;
}

.ri-378px {
  right: 378px !important;
}

.bi-378px {
  bottom: 378px !important;
}

.w-379px {
  width: 379px;
}

.h-379px {
  height: 379px;
}

.wi-379px {
  width: 379px !important;
}

.hi-379px {
  height: 379px !important;
}

.w-max-379px {
  max-width: 379px;
}

.w-min-379px {
  min-width: 379px;
}

.t-379px {
  top: 379px;
}

.l-379px {
  left: 379px;
}

.r-379px {
  right: 379px;
}

.b-379px {
  bottom: 379px;
}

.ti-379px {
  top: 379px !important;
}

.li-379px {
  left: 379px !important;
}

.ri-379px {
  right: 379px !important;
}

.bi-379px {
  bottom: 379px !important;
}

.w-380px {
  width: 380px;
}

.h-380px {
  height: 380px;
}

.wi-380px {
  width: 380px !important;
}

.hi-380px {
  height: 380px !important;
}

.w-max-380px {
  max-width: 380px;
}

.w-min-380px {
  min-width: 380px;
}

.t-380px {
  top: 380px;
}

.l-380px {
  left: 380px;
}

.r-380px {
  right: 380px;
}

.b-380px {
  bottom: 380px;
}

.ti-380px {
  top: 380px !important;
}

.li-380px {
  left: 380px !important;
}

.ri-380px {
  right: 380px !important;
}

.bi-380px {
  bottom: 380px !important;
}

.w-381px {
  width: 381px;
}

.h-381px {
  height: 381px;
}

.wi-381px {
  width: 381px !important;
}

.hi-381px {
  height: 381px !important;
}

.w-max-381px {
  max-width: 381px;
}

.w-min-381px {
  min-width: 381px;
}

.t-381px {
  top: 381px;
}

.l-381px {
  left: 381px;
}

.r-381px {
  right: 381px;
}

.b-381px {
  bottom: 381px;
}

.ti-381px {
  top: 381px !important;
}

.li-381px {
  left: 381px !important;
}

.ri-381px {
  right: 381px !important;
}

.bi-381px {
  bottom: 381px !important;
}

.w-382px {
  width: 382px;
}

.h-382px {
  height: 382px;
}

.wi-382px {
  width: 382px !important;
}

.hi-382px {
  height: 382px !important;
}

.w-max-382px {
  max-width: 382px;
}

.w-min-382px {
  min-width: 382px;
}

.t-382px {
  top: 382px;
}

.l-382px {
  left: 382px;
}

.r-382px {
  right: 382px;
}

.b-382px {
  bottom: 382px;
}

.ti-382px {
  top: 382px !important;
}

.li-382px {
  left: 382px !important;
}

.ri-382px {
  right: 382px !important;
}

.bi-382px {
  bottom: 382px !important;
}

.w-383px {
  width: 383px;
}

.h-383px {
  height: 383px;
}

.wi-383px {
  width: 383px !important;
}

.hi-383px {
  height: 383px !important;
}

.w-max-383px {
  max-width: 383px;
}

.w-min-383px {
  min-width: 383px;
}

.t-383px {
  top: 383px;
}

.l-383px {
  left: 383px;
}

.r-383px {
  right: 383px;
}

.b-383px {
  bottom: 383px;
}

.ti-383px {
  top: 383px !important;
}

.li-383px {
  left: 383px !important;
}

.ri-383px {
  right: 383px !important;
}

.bi-383px {
  bottom: 383px !important;
}

.w-384px {
  width: 384px;
}

.h-384px {
  height: 384px;
}

.wi-384px {
  width: 384px !important;
}

.hi-384px {
  height: 384px !important;
}

.w-max-384px {
  max-width: 384px;
}

.w-min-384px {
  min-width: 384px;
}

.t-384px {
  top: 384px;
}

.l-384px {
  left: 384px;
}

.r-384px {
  right: 384px;
}

.b-384px {
  bottom: 384px;
}

.ti-384px {
  top: 384px !important;
}

.li-384px {
  left: 384px !important;
}

.ri-384px {
  right: 384px !important;
}

.bi-384px {
  bottom: 384px !important;
}

.w-385px {
  width: 385px;
}

.h-385px {
  height: 385px;
}

.wi-385px {
  width: 385px !important;
}

.hi-385px {
  height: 385px !important;
}

.w-max-385px {
  max-width: 385px;
}

.w-min-385px {
  min-width: 385px;
}

.t-385px {
  top: 385px;
}

.l-385px {
  left: 385px;
}

.r-385px {
  right: 385px;
}

.b-385px {
  bottom: 385px;
}

.ti-385px {
  top: 385px !important;
}

.li-385px {
  left: 385px !important;
}

.ri-385px {
  right: 385px !important;
}

.bi-385px {
  bottom: 385px !important;
}

.w-386px {
  width: 386px;
}

.h-386px {
  height: 386px;
}

.wi-386px {
  width: 386px !important;
}

.hi-386px {
  height: 386px !important;
}

.w-max-386px {
  max-width: 386px;
}

.w-min-386px {
  min-width: 386px;
}

.t-386px {
  top: 386px;
}

.l-386px {
  left: 386px;
}

.r-386px {
  right: 386px;
}

.b-386px {
  bottom: 386px;
}

.ti-386px {
  top: 386px !important;
}

.li-386px {
  left: 386px !important;
}

.ri-386px {
  right: 386px !important;
}

.bi-386px {
  bottom: 386px !important;
}

.w-387px {
  width: 387px;
}

.h-387px {
  height: 387px;
}

.wi-387px {
  width: 387px !important;
}

.hi-387px {
  height: 387px !important;
}

.w-max-387px {
  max-width: 387px;
}

.w-min-387px {
  min-width: 387px;
}

.t-387px {
  top: 387px;
}

.l-387px {
  left: 387px;
}

.r-387px {
  right: 387px;
}

.b-387px {
  bottom: 387px;
}

.ti-387px {
  top: 387px !important;
}

.li-387px {
  left: 387px !important;
}

.ri-387px {
  right: 387px !important;
}

.bi-387px {
  bottom: 387px !important;
}

.w-388px {
  width: 388px;
}

.h-388px {
  height: 388px;
}

.wi-388px {
  width: 388px !important;
}

.hi-388px {
  height: 388px !important;
}

.w-max-388px {
  max-width: 388px;
}

.w-min-388px {
  min-width: 388px;
}

.t-388px {
  top: 388px;
}

.l-388px {
  left: 388px;
}

.r-388px {
  right: 388px;
}

.b-388px {
  bottom: 388px;
}

.ti-388px {
  top: 388px !important;
}

.li-388px {
  left: 388px !important;
}

.ri-388px {
  right: 388px !important;
}

.bi-388px {
  bottom: 388px !important;
}

.w-389px {
  width: 389px;
}

.h-389px {
  height: 389px;
}

.wi-389px {
  width: 389px !important;
}

.hi-389px {
  height: 389px !important;
}

.w-max-389px {
  max-width: 389px;
}

.w-min-389px {
  min-width: 389px;
}

.t-389px {
  top: 389px;
}

.l-389px {
  left: 389px;
}

.r-389px {
  right: 389px;
}

.b-389px {
  bottom: 389px;
}

.ti-389px {
  top: 389px !important;
}

.li-389px {
  left: 389px !important;
}

.ri-389px {
  right: 389px !important;
}

.bi-389px {
  bottom: 389px !important;
}

.w-390px {
  width: 390px;
}

.h-390px {
  height: 390px;
}

.wi-390px {
  width: 390px !important;
}

.hi-390px {
  height: 390px !important;
}

.w-max-390px {
  max-width: 390px;
}

.w-min-390px {
  min-width: 390px;
}

.t-390px {
  top: 390px;
}

.l-390px {
  left: 390px;
}

.r-390px {
  right: 390px;
}

.b-390px {
  bottom: 390px;
}

.ti-390px {
  top: 390px !important;
}

.li-390px {
  left: 390px !important;
}

.ri-390px {
  right: 390px !important;
}

.bi-390px {
  bottom: 390px !important;
}

.w-391px {
  width: 391px;
}

.h-391px {
  height: 391px;
}

.wi-391px {
  width: 391px !important;
}

.hi-391px {
  height: 391px !important;
}

.w-max-391px {
  max-width: 391px;
}

.w-min-391px {
  min-width: 391px;
}

.t-391px {
  top: 391px;
}

.l-391px {
  left: 391px;
}

.r-391px {
  right: 391px;
}

.b-391px {
  bottom: 391px;
}

.ti-391px {
  top: 391px !important;
}

.li-391px {
  left: 391px !important;
}

.ri-391px {
  right: 391px !important;
}

.bi-391px {
  bottom: 391px !important;
}

.w-392px {
  width: 392px;
}

.h-392px {
  height: 392px;
}

.wi-392px {
  width: 392px !important;
}

.hi-392px {
  height: 392px !important;
}

.w-max-392px {
  max-width: 392px;
}

.w-min-392px {
  min-width: 392px;
}

.t-392px {
  top: 392px;
}

.l-392px {
  left: 392px;
}

.r-392px {
  right: 392px;
}

.b-392px {
  bottom: 392px;
}

.ti-392px {
  top: 392px !important;
}

.li-392px {
  left: 392px !important;
}

.ri-392px {
  right: 392px !important;
}

.bi-392px {
  bottom: 392px !important;
}

.w-393px {
  width: 393px;
}

.h-393px {
  height: 393px;
}

.wi-393px {
  width: 393px !important;
}

.hi-393px {
  height: 393px !important;
}

.w-max-393px {
  max-width: 393px;
}

.w-min-393px {
  min-width: 393px;
}

.t-393px {
  top: 393px;
}

.l-393px {
  left: 393px;
}

.r-393px {
  right: 393px;
}

.b-393px {
  bottom: 393px;
}

.ti-393px {
  top: 393px !important;
}

.li-393px {
  left: 393px !important;
}

.ri-393px {
  right: 393px !important;
}

.bi-393px {
  bottom: 393px !important;
}

.w-394px {
  width: 394px;
}

.h-394px {
  height: 394px;
}

.wi-394px {
  width: 394px !important;
}

.hi-394px {
  height: 394px !important;
}

.w-max-394px {
  max-width: 394px;
}

.w-min-394px {
  min-width: 394px;
}

.t-394px {
  top: 394px;
}

.l-394px {
  left: 394px;
}

.r-394px {
  right: 394px;
}

.b-394px {
  bottom: 394px;
}

.ti-394px {
  top: 394px !important;
}

.li-394px {
  left: 394px !important;
}

.ri-394px {
  right: 394px !important;
}

.bi-394px {
  bottom: 394px !important;
}

.w-395px {
  width: 395px;
}

.h-395px {
  height: 395px;
}

.wi-395px {
  width: 395px !important;
}

.hi-395px {
  height: 395px !important;
}

.w-max-395px {
  max-width: 395px;
}

.w-min-395px {
  min-width: 395px;
}

.t-395px {
  top: 395px;
}

.l-395px {
  left: 395px;
}

.r-395px {
  right: 395px;
}

.b-395px {
  bottom: 395px;
}

.ti-395px {
  top: 395px !important;
}

.li-395px {
  left: 395px !important;
}

.ri-395px {
  right: 395px !important;
}

.bi-395px {
  bottom: 395px !important;
}

.w-396px {
  width: 396px;
}

.h-396px {
  height: 396px;
}

.wi-396px {
  width: 396px !important;
}

.hi-396px {
  height: 396px !important;
}

.w-max-396px {
  max-width: 396px;
}

.w-min-396px {
  min-width: 396px;
}

.t-396px {
  top: 396px;
}

.l-396px {
  left: 396px;
}

.r-396px {
  right: 396px;
}

.b-396px {
  bottom: 396px;
}

.ti-396px {
  top: 396px !important;
}

.li-396px {
  left: 396px !important;
}

.ri-396px {
  right: 396px !important;
}

.bi-396px {
  bottom: 396px !important;
}

.w-397px {
  width: 397px;
}

.h-397px {
  height: 397px;
}

.wi-397px {
  width: 397px !important;
}

.hi-397px {
  height: 397px !important;
}

.w-max-397px {
  max-width: 397px;
}

.w-min-397px {
  min-width: 397px;
}

.t-397px {
  top: 397px;
}

.l-397px {
  left: 397px;
}

.r-397px {
  right: 397px;
}

.b-397px {
  bottom: 397px;
}

.ti-397px {
  top: 397px !important;
}

.li-397px {
  left: 397px !important;
}

.ri-397px {
  right: 397px !important;
}

.bi-397px {
  bottom: 397px !important;
}

.w-398px {
  width: 398px;
}

.h-398px {
  height: 398px;
}

.wi-398px {
  width: 398px !important;
}

.hi-398px {
  height: 398px !important;
}

.w-max-398px {
  max-width: 398px;
}

.w-min-398px {
  min-width: 398px;
}

.t-398px {
  top: 398px;
}

.l-398px {
  left: 398px;
}

.r-398px {
  right: 398px;
}

.b-398px {
  bottom: 398px;
}

.ti-398px {
  top: 398px !important;
}

.li-398px {
  left: 398px !important;
}

.ri-398px {
  right: 398px !important;
}

.bi-398px {
  bottom: 398px !important;
}

.w-399px {
  width: 399px;
}

.h-399px {
  height: 399px;
}

.wi-399px {
  width: 399px !important;
}

.hi-399px {
  height: 399px !important;
}

.w-max-399px {
  max-width: 399px;
}

.w-min-399px {
  min-width: 399px;
}

.t-399px {
  top: 399px;
}

.l-399px {
  left: 399px;
}

.r-399px {
  right: 399px;
}

.b-399px {
  bottom: 399px;
}

.ti-399px {
  top: 399px !important;
}

.li-399px {
  left: 399px !important;
}

.ri-399px {
  right: 399px !important;
}

.bi-399px {
  bottom: 399px !important;
}

.w-400px {
  width: 400px;
}

.h-400px {
  height: 400px;
}

.wi-400px {
  width: 400px !important;
}

.hi-400px {
  height: 400px !important;
}

.w-max-400px {
  max-width: 400px;
}

.w-min-400px {
  min-width: 400px;
}

.t-400px {
  top: 400px;
}

.l-400px {
  left: 400px;
}

.r-400px {
  right: 400px;
}

.b-400px {
  bottom: 400px;
}

.ti-400px {
  top: 400px !important;
}

.li-400px {
  left: 400px !important;
}

.ri-400px {
  right: 400px !important;
}

.bi-400px {
  bottom: 400px !important;
}

.w-401px {
  width: 401px;
}

.h-401px {
  height: 401px;
}

.wi-401px {
  width: 401px !important;
}

.hi-401px {
  height: 401px !important;
}

.w-max-401px {
  max-width: 401px;
}

.w-min-401px {
  min-width: 401px;
}

.t-401px {
  top: 401px;
}

.l-401px {
  left: 401px;
}

.r-401px {
  right: 401px;
}

.b-401px {
  bottom: 401px;
}

.ti-401px {
  top: 401px !important;
}

.li-401px {
  left: 401px !important;
}

.ri-401px {
  right: 401px !important;
}

.bi-401px {
  bottom: 401px !important;
}

.w-402px {
  width: 402px;
}

.h-402px {
  height: 402px;
}

.wi-402px {
  width: 402px !important;
}

.hi-402px {
  height: 402px !important;
}

.w-max-402px {
  max-width: 402px;
}

.w-min-402px {
  min-width: 402px;
}

.t-402px {
  top: 402px;
}

.l-402px {
  left: 402px;
}

.r-402px {
  right: 402px;
}

.b-402px {
  bottom: 402px;
}

.ti-402px {
  top: 402px !important;
}

.li-402px {
  left: 402px !important;
}

.ri-402px {
  right: 402px !important;
}

.bi-402px {
  bottom: 402px !important;
}

.w-403px {
  width: 403px;
}

.h-403px {
  height: 403px;
}

.wi-403px {
  width: 403px !important;
}

.hi-403px {
  height: 403px !important;
}

.w-max-403px {
  max-width: 403px;
}

.w-min-403px {
  min-width: 403px;
}

.t-403px {
  top: 403px;
}

.l-403px {
  left: 403px;
}

.r-403px {
  right: 403px;
}

.b-403px {
  bottom: 403px;
}

.ti-403px {
  top: 403px !important;
}

.li-403px {
  left: 403px !important;
}

.ri-403px {
  right: 403px !important;
}

.bi-403px {
  bottom: 403px !important;
}

.w-404px {
  width: 404px;
}

.h-404px {
  height: 404px;
}

.wi-404px {
  width: 404px !important;
}

.hi-404px {
  height: 404px !important;
}

.w-max-404px {
  max-width: 404px;
}

.w-min-404px {
  min-width: 404px;
}

.t-404px {
  top: 404px;
}

.l-404px {
  left: 404px;
}

.r-404px {
  right: 404px;
}

.b-404px {
  bottom: 404px;
}

.ti-404px {
  top: 404px !important;
}

.li-404px {
  left: 404px !important;
}

.ri-404px {
  right: 404px !important;
}

.bi-404px {
  bottom: 404px !important;
}

.w-405px {
  width: 405px;
}

.h-405px {
  height: 405px;
}

.wi-405px {
  width: 405px !important;
}

.hi-405px {
  height: 405px !important;
}

.w-max-405px {
  max-width: 405px;
}

.w-min-405px {
  min-width: 405px;
}

.t-405px {
  top: 405px;
}

.l-405px {
  left: 405px;
}

.r-405px {
  right: 405px;
}

.b-405px {
  bottom: 405px;
}

.ti-405px {
  top: 405px !important;
}

.li-405px {
  left: 405px !important;
}

.ri-405px {
  right: 405px !important;
}

.bi-405px {
  bottom: 405px !important;
}

.w-406px {
  width: 406px;
}

.h-406px {
  height: 406px;
}

.wi-406px {
  width: 406px !important;
}

.hi-406px {
  height: 406px !important;
}

.w-max-406px {
  max-width: 406px;
}

.w-min-406px {
  min-width: 406px;
}

.t-406px {
  top: 406px;
}

.l-406px {
  left: 406px;
}

.r-406px {
  right: 406px;
}

.b-406px {
  bottom: 406px;
}

.ti-406px {
  top: 406px !important;
}

.li-406px {
  left: 406px !important;
}

.ri-406px {
  right: 406px !important;
}

.bi-406px {
  bottom: 406px !important;
}

.w-407px {
  width: 407px;
}

.h-407px {
  height: 407px;
}

.wi-407px {
  width: 407px !important;
}

.hi-407px {
  height: 407px !important;
}

.w-max-407px {
  max-width: 407px;
}

.w-min-407px {
  min-width: 407px;
}

.t-407px {
  top: 407px;
}

.l-407px {
  left: 407px;
}

.r-407px {
  right: 407px;
}

.b-407px {
  bottom: 407px;
}

.ti-407px {
  top: 407px !important;
}

.li-407px {
  left: 407px !important;
}

.ri-407px {
  right: 407px !important;
}

.bi-407px {
  bottom: 407px !important;
}

.w-408px {
  width: 408px;
}

.h-408px {
  height: 408px;
}

.wi-408px {
  width: 408px !important;
}

.hi-408px {
  height: 408px !important;
}

.w-max-408px {
  max-width: 408px;
}

.w-min-408px {
  min-width: 408px;
}

.t-408px {
  top: 408px;
}

.l-408px {
  left: 408px;
}

.r-408px {
  right: 408px;
}

.b-408px {
  bottom: 408px;
}

.ti-408px {
  top: 408px !important;
}

.li-408px {
  left: 408px !important;
}

.ri-408px {
  right: 408px !important;
}

.bi-408px {
  bottom: 408px !important;
}

.w-409px {
  width: 409px;
}

.h-409px {
  height: 409px;
}

.wi-409px {
  width: 409px !important;
}

.hi-409px {
  height: 409px !important;
}

.w-max-409px {
  max-width: 409px;
}

.w-min-409px {
  min-width: 409px;
}

.t-409px {
  top: 409px;
}

.l-409px {
  left: 409px;
}

.r-409px {
  right: 409px;
}

.b-409px {
  bottom: 409px;
}

.ti-409px {
  top: 409px !important;
}

.li-409px {
  left: 409px !important;
}

.ri-409px {
  right: 409px !important;
}

.bi-409px {
  bottom: 409px !important;
}

.w-410px {
  width: 410px;
}

.h-410px {
  height: 410px;
}

.wi-410px {
  width: 410px !important;
}

.hi-410px {
  height: 410px !important;
}

.w-max-410px {
  max-width: 410px;
}

.w-min-410px {
  min-width: 410px;
}

.t-410px {
  top: 410px;
}

.l-410px {
  left: 410px;
}

.r-410px {
  right: 410px;
}

.b-410px {
  bottom: 410px;
}

.ti-410px {
  top: 410px !important;
}

.li-410px {
  left: 410px !important;
}

.ri-410px {
  right: 410px !important;
}

.bi-410px {
  bottom: 410px !important;
}

.w-411px {
  width: 411px;
}

.h-411px {
  height: 411px;
}

.wi-411px {
  width: 411px !important;
}

.hi-411px {
  height: 411px !important;
}

.w-max-411px {
  max-width: 411px;
}

.w-min-411px {
  min-width: 411px;
}

.t-411px {
  top: 411px;
}

.l-411px {
  left: 411px;
}

.r-411px {
  right: 411px;
}

.b-411px {
  bottom: 411px;
}

.ti-411px {
  top: 411px !important;
}

.li-411px {
  left: 411px !important;
}

.ri-411px {
  right: 411px !important;
}

.bi-411px {
  bottom: 411px !important;
}

.w-412px {
  width: 412px;
}

.h-412px {
  height: 412px;
}

.wi-412px {
  width: 412px !important;
}

.hi-412px {
  height: 412px !important;
}

.w-max-412px {
  max-width: 412px;
}

.w-min-412px {
  min-width: 412px;
}

.t-412px {
  top: 412px;
}

.l-412px {
  left: 412px;
}

.r-412px {
  right: 412px;
}

.b-412px {
  bottom: 412px;
}

.ti-412px {
  top: 412px !important;
}

.li-412px {
  left: 412px !important;
}

.ri-412px {
  right: 412px !important;
}

.bi-412px {
  bottom: 412px !important;
}

.w-413px {
  width: 413px;
}

.h-413px {
  height: 413px;
}

.wi-413px {
  width: 413px !important;
}

.hi-413px {
  height: 413px !important;
}

.w-max-413px {
  max-width: 413px;
}

.w-min-413px {
  min-width: 413px;
}

.t-413px {
  top: 413px;
}

.l-413px {
  left: 413px;
}

.r-413px {
  right: 413px;
}

.b-413px {
  bottom: 413px;
}

.ti-413px {
  top: 413px !important;
}

.li-413px {
  left: 413px !important;
}

.ri-413px {
  right: 413px !important;
}

.bi-413px {
  bottom: 413px !important;
}

.w-414px {
  width: 414px;
}

.h-414px {
  height: 414px;
}

.wi-414px {
  width: 414px !important;
}

.hi-414px {
  height: 414px !important;
}

.w-max-414px {
  max-width: 414px;
}

.w-min-414px {
  min-width: 414px;
}

.t-414px {
  top: 414px;
}

.l-414px {
  left: 414px;
}

.r-414px {
  right: 414px;
}

.b-414px {
  bottom: 414px;
}

.ti-414px {
  top: 414px !important;
}

.li-414px {
  left: 414px !important;
}

.ri-414px {
  right: 414px !important;
}

.bi-414px {
  bottom: 414px !important;
}

.w-415px {
  width: 415px;
}

.h-415px {
  height: 415px;
}

.wi-415px {
  width: 415px !important;
}

.hi-415px {
  height: 415px !important;
}

.w-max-415px {
  max-width: 415px;
}

.w-min-415px {
  min-width: 415px;
}

.t-415px {
  top: 415px;
}

.l-415px {
  left: 415px;
}

.r-415px {
  right: 415px;
}

.b-415px {
  bottom: 415px;
}

.ti-415px {
  top: 415px !important;
}

.li-415px {
  left: 415px !important;
}

.ri-415px {
  right: 415px !important;
}

.bi-415px {
  bottom: 415px !important;
}

.w-416px {
  width: 416px;
}

.h-416px {
  height: 416px;
}

.wi-416px {
  width: 416px !important;
}

.hi-416px {
  height: 416px !important;
}

.w-max-416px {
  max-width: 416px;
}

.w-min-416px {
  min-width: 416px;
}

.t-416px {
  top: 416px;
}

.l-416px {
  left: 416px;
}

.r-416px {
  right: 416px;
}

.b-416px {
  bottom: 416px;
}

.ti-416px {
  top: 416px !important;
}

.li-416px {
  left: 416px !important;
}

.ri-416px {
  right: 416px !important;
}

.bi-416px {
  bottom: 416px !important;
}

.w-417px {
  width: 417px;
}

.h-417px {
  height: 417px;
}

.wi-417px {
  width: 417px !important;
}

.hi-417px {
  height: 417px !important;
}

.w-max-417px {
  max-width: 417px;
}

.w-min-417px {
  min-width: 417px;
}

.t-417px {
  top: 417px;
}

.l-417px {
  left: 417px;
}

.r-417px {
  right: 417px;
}

.b-417px {
  bottom: 417px;
}

.ti-417px {
  top: 417px !important;
}

.li-417px {
  left: 417px !important;
}

.ri-417px {
  right: 417px !important;
}

.bi-417px {
  bottom: 417px !important;
}

.w-418px {
  width: 418px;
}

.h-418px {
  height: 418px;
}

.wi-418px {
  width: 418px !important;
}

.hi-418px {
  height: 418px !important;
}

.w-max-418px {
  max-width: 418px;
}

.w-min-418px {
  min-width: 418px;
}

.t-418px {
  top: 418px;
}

.l-418px {
  left: 418px;
}

.r-418px {
  right: 418px;
}

.b-418px {
  bottom: 418px;
}

.ti-418px {
  top: 418px !important;
}

.li-418px {
  left: 418px !important;
}

.ri-418px {
  right: 418px !important;
}

.bi-418px {
  bottom: 418px !important;
}

.w-419px {
  width: 419px;
}

.h-419px {
  height: 419px;
}

.wi-419px {
  width: 419px !important;
}

.hi-419px {
  height: 419px !important;
}

.w-max-419px {
  max-width: 419px;
}

.w-min-419px {
  min-width: 419px;
}

.t-419px {
  top: 419px;
}

.l-419px {
  left: 419px;
}

.r-419px {
  right: 419px;
}

.b-419px {
  bottom: 419px;
}

.ti-419px {
  top: 419px !important;
}

.li-419px {
  left: 419px !important;
}

.ri-419px {
  right: 419px !important;
}

.bi-419px {
  bottom: 419px !important;
}

.w-420px {
  width: 420px;
}

.h-420px {
  height: 420px;
}

.wi-420px {
  width: 420px !important;
}

.hi-420px {
  height: 420px !important;
}

.w-max-420px {
  max-width: 420px;
}

.w-min-420px {
  min-width: 420px;
}

.t-420px {
  top: 420px;
}

.l-420px {
  left: 420px;
}

.r-420px {
  right: 420px;
}

.b-420px {
  bottom: 420px;
}

.ti-420px {
  top: 420px !important;
}

.li-420px {
  left: 420px !important;
}

.ri-420px {
  right: 420px !important;
}

.bi-420px {
  bottom: 420px !important;
}

.w-421px {
  width: 421px;
}

.h-421px {
  height: 421px;
}

.wi-421px {
  width: 421px !important;
}

.hi-421px {
  height: 421px !important;
}

.w-max-421px {
  max-width: 421px;
}

.w-min-421px {
  min-width: 421px;
}

.t-421px {
  top: 421px;
}

.l-421px {
  left: 421px;
}

.r-421px {
  right: 421px;
}

.b-421px {
  bottom: 421px;
}

.ti-421px {
  top: 421px !important;
}

.li-421px {
  left: 421px !important;
}

.ri-421px {
  right: 421px !important;
}

.bi-421px {
  bottom: 421px !important;
}

.w-422px {
  width: 422px;
}

.h-422px {
  height: 422px;
}

.wi-422px {
  width: 422px !important;
}

.hi-422px {
  height: 422px !important;
}

.w-max-422px {
  max-width: 422px;
}

.w-min-422px {
  min-width: 422px;
}

.t-422px {
  top: 422px;
}

.l-422px {
  left: 422px;
}

.r-422px {
  right: 422px;
}

.b-422px {
  bottom: 422px;
}

.ti-422px {
  top: 422px !important;
}

.li-422px {
  left: 422px !important;
}

.ri-422px {
  right: 422px !important;
}

.bi-422px {
  bottom: 422px !important;
}

.w-423px {
  width: 423px;
}

.h-423px {
  height: 423px;
}

.wi-423px {
  width: 423px !important;
}

.hi-423px {
  height: 423px !important;
}

.w-max-423px {
  max-width: 423px;
}

.w-min-423px {
  min-width: 423px;
}

.t-423px {
  top: 423px;
}

.l-423px {
  left: 423px;
}

.r-423px {
  right: 423px;
}

.b-423px {
  bottom: 423px;
}

.ti-423px {
  top: 423px !important;
}

.li-423px {
  left: 423px !important;
}

.ri-423px {
  right: 423px !important;
}

.bi-423px {
  bottom: 423px !important;
}

.w-424px {
  width: 424px;
}

.h-424px {
  height: 424px;
}

.wi-424px {
  width: 424px !important;
}

.hi-424px {
  height: 424px !important;
}

.w-max-424px {
  max-width: 424px;
}

.w-min-424px {
  min-width: 424px;
}

.t-424px {
  top: 424px;
}

.l-424px {
  left: 424px;
}

.r-424px {
  right: 424px;
}

.b-424px {
  bottom: 424px;
}

.ti-424px {
  top: 424px !important;
}

.li-424px {
  left: 424px !important;
}

.ri-424px {
  right: 424px !important;
}

.bi-424px {
  bottom: 424px !important;
}

.w-425px {
  width: 425px;
}

.h-425px {
  height: 425px;
}

.wi-425px {
  width: 425px !important;
}

.hi-425px {
  height: 425px !important;
}

.w-max-425px {
  max-width: 425px;
}

.w-min-425px {
  min-width: 425px;
}

.t-425px {
  top: 425px;
}

.l-425px {
  left: 425px;
}

.r-425px {
  right: 425px;
}

.b-425px {
  bottom: 425px;
}

.ti-425px {
  top: 425px !important;
}

.li-425px {
  left: 425px !important;
}

.ri-425px {
  right: 425px !important;
}

.bi-425px {
  bottom: 425px !important;
}

.w-426px {
  width: 426px;
}

.h-426px {
  height: 426px;
}

.wi-426px {
  width: 426px !important;
}

.hi-426px {
  height: 426px !important;
}

.w-max-426px {
  max-width: 426px;
}

.w-min-426px {
  min-width: 426px;
}

.t-426px {
  top: 426px;
}

.l-426px {
  left: 426px;
}

.r-426px {
  right: 426px;
}

.b-426px {
  bottom: 426px;
}

.ti-426px {
  top: 426px !important;
}

.li-426px {
  left: 426px !important;
}

.ri-426px {
  right: 426px !important;
}

.bi-426px {
  bottom: 426px !important;
}

.w-427px {
  width: 427px;
}

.h-427px {
  height: 427px;
}

.wi-427px {
  width: 427px !important;
}

.hi-427px {
  height: 427px !important;
}

.w-max-427px {
  max-width: 427px;
}

.w-min-427px {
  min-width: 427px;
}

.t-427px {
  top: 427px;
}

.l-427px {
  left: 427px;
}

.r-427px {
  right: 427px;
}

.b-427px {
  bottom: 427px;
}

.ti-427px {
  top: 427px !important;
}

.li-427px {
  left: 427px !important;
}

.ri-427px {
  right: 427px !important;
}

.bi-427px {
  bottom: 427px !important;
}

.w-428px {
  width: 428px;
}

.h-428px {
  height: 428px;
}

.wi-428px {
  width: 428px !important;
}

.hi-428px {
  height: 428px !important;
}

.w-max-428px {
  max-width: 428px;
}

.w-min-428px {
  min-width: 428px;
}

.t-428px {
  top: 428px;
}

.l-428px {
  left: 428px;
}

.r-428px {
  right: 428px;
}

.b-428px {
  bottom: 428px;
}

.ti-428px {
  top: 428px !important;
}

.li-428px {
  left: 428px !important;
}

.ri-428px {
  right: 428px !important;
}

.bi-428px {
  bottom: 428px !important;
}

.w-429px {
  width: 429px;
}

.h-429px {
  height: 429px;
}

.wi-429px {
  width: 429px !important;
}

.hi-429px {
  height: 429px !important;
}

.w-max-429px {
  max-width: 429px;
}

.w-min-429px {
  min-width: 429px;
}

.t-429px {
  top: 429px;
}

.l-429px {
  left: 429px;
}

.r-429px {
  right: 429px;
}

.b-429px {
  bottom: 429px;
}

.ti-429px {
  top: 429px !important;
}

.li-429px {
  left: 429px !important;
}

.ri-429px {
  right: 429px !important;
}

.bi-429px {
  bottom: 429px !important;
}

.w-430px {
  width: 430px;
}

.h-430px {
  height: 430px;
}

.wi-430px {
  width: 430px !important;
}

.hi-430px {
  height: 430px !important;
}

.w-max-430px {
  max-width: 430px;
}

.w-min-430px {
  min-width: 430px;
}

.t-430px {
  top: 430px;
}

.l-430px {
  left: 430px;
}

.r-430px {
  right: 430px;
}

.b-430px {
  bottom: 430px;
}

.ti-430px {
  top: 430px !important;
}

.li-430px {
  left: 430px !important;
}

.ri-430px {
  right: 430px !important;
}

.bi-430px {
  bottom: 430px !important;
}

.w-431px {
  width: 431px;
}

.h-431px {
  height: 431px;
}

.wi-431px {
  width: 431px !important;
}

.hi-431px {
  height: 431px !important;
}

.w-max-431px {
  max-width: 431px;
}

.w-min-431px {
  min-width: 431px;
}

.t-431px {
  top: 431px;
}

.l-431px {
  left: 431px;
}

.r-431px {
  right: 431px;
}

.b-431px {
  bottom: 431px;
}

.ti-431px {
  top: 431px !important;
}

.li-431px {
  left: 431px !important;
}

.ri-431px {
  right: 431px !important;
}

.bi-431px {
  bottom: 431px !important;
}

.w-432px {
  width: 432px;
}

.h-432px {
  height: 432px;
}

.wi-432px {
  width: 432px !important;
}

.hi-432px {
  height: 432px !important;
}

.w-max-432px {
  max-width: 432px;
}

.w-min-432px {
  min-width: 432px;
}

.t-432px {
  top: 432px;
}

.l-432px {
  left: 432px;
}

.r-432px {
  right: 432px;
}

.b-432px {
  bottom: 432px;
}

.ti-432px {
  top: 432px !important;
}

.li-432px {
  left: 432px !important;
}

.ri-432px {
  right: 432px !important;
}

.bi-432px {
  bottom: 432px !important;
}

.w-433px {
  width: 433px;
}

.h-433px {
  height: 433px;
}

.wi-433px {
  width: 433px !important;
}

.hi-433px {
  height: 433px !important;
}

.w-max-433px {
  max-width: 433px;
}

.w-min-433px {
  min-width: 433px;
}

.t-433px {
  top: 433px;
}

.l-433px {
  left: 433px;
}

.r-433px {
  right: 433px;
}

.b-433px {
  bottom: 433px;
}

.ti-433px {
  top: 433px !important;
}

.li-433px {
  left: 433px !important;
}

.ri-433px {
  right: 433px !important;
}

.bi-433px {
  bottom: 433px !important;
}

.w-434px {
  width: 434px;
}

.h-434px {
  height: 434px;
}

.wi-434px {
  width: 434px !important;
}

.hi-434px {
  height: 434px !important;
}

.w-max-434px {
  max-width: 434px;
}

.w-min-434px {
  min-width: 434px;
}

.t-434px {
  top: 434px;
}

.l-434px {
  left: 434px;
}

.r-434px {
  right: 434px;
}

.b-434px {
  bottom: 434px;
}

.ti-434px {
  top: 434px !important;
}

.li-434px {
  left: 434px !important;
}

.ri-434px {
  right: 434px !important;
}

.bi-434px {
  bottom: 434px !important;
}

.w-435px {
  width: 435px;
}

.h-435px {
  height: 435px;
}

.wi-435px {
  width: 435px !important;
}

.hi-435px {
  height: 435px !important;
}

.w-max-435px {
  max-width: 435px;
}

.w-min-435px {
  min-width: 435px;
}

.t-435px {
  top: 435px;
}

.l-435px {
  left: 435px;
}

.r-435px {
  right: 435px;
}

.b-435px {
  bottom: 435px;
}

.ti-435px {
  top: 435px !important;
}

.li-435px {
  left: 435px !important;
}

.ri-435px {
  right: 435px !important;
}

.bi-435px {
  bottom: 435px !important;
}

.w-436px {
  width: 436px;
}

.h-436px {
  height: 436px;
}

.wi-436px {
  width: 436px !important;
}

.hi-436px {
  height: 436px !important;
}

.w-max-436px {
  max-width: 436px;
}

.w-min-436px {
  min-width: 436px;
}

.t-436px {
  top: 436px;
}

.l-436px {
  left: 436px;
}

.r-436px {
  right: 436px;
}

.b-436px {
  bottom: 436px;
}

.ti-436px {
  top: 436px !important;
}

.li-436px {
  left: 436px !important;
}

.ri-436px {
  right: 436px !important;
}

.bi-436px {
  bottom: 436px !important;
}

.w-437px {
  width: 437px;
}

.h-437px {
  height: 437px;
}

.wi-437px {
  width: 437px !important;
}

.hi-437px {
  height: 437px !important;
}

.w-max-437px {
  max-width: 437px;
}

.w-min-437px {
  min-width: 437px;
}

.t-437px {
  top: 437px;
}

.l-437px {
  left: 437px;
}

.r-437px {
  right: 437px;
}

.b-437px {
  bottom: 437px;
}

.ti-437px {
  top: 437px !important;
}

.li-437px {
  left: 437px !important;
}

.ri-437px {
  right: 437px !important;
}

.bi-437px {
  bottom: 437px !important;
}

.w-438px {
  width: 438px;
}

.h-438px {
  height: 438px;
}

.wi-438px {
  width: 438px !important;
}

.hi-438px {
  height: 438px !important;
}

.w-max-438px {
  max-width: 438px;
}

.w-min-438px {
  min-width: 438px;
}

.t-438px {
  top: 438px;
}

.l-438px {
  left: 438px;
}

.r-438px {
  right: 438px;
}

.b-438px {
  bottom: 438px;
}

.ti-438px {
  top: 438px !important;
}

.li-438px {
  left: 438px !important;
}

.ri-438px {
  right: 438px !important;
}

.bi-438px {
  bottom: 438px !important;
}

.w-439px {
  width: 439px;
}

.h-439px {
  height: 439px;
}

.wi-439px {
  width: 439px !important;
}

.hi-439px {
  height: 439px !important;
}

.w-max-439px {
  max-width: 439px;
}

.w-min-439px {
  min-width: 439px;
}

.t-439px {
  top: 439px;
}

.l-439px {
  left: 439px;
}

.r-439px {
  right: 439px;
}

.b-439px {
  bottom: 439px;
}

.ti-439px {
  top: 439px !important;
}

.li-439px {
  left: 439px !important;
}

.ri-439px {
  right: 439px !important;
}

.bi-439px {
  bottom: 439px !important;
}

.w-440px {
  width: 440px;
}

.h-440px {
  height: 440px;
}

.wi-440px {
  width: 440px !important;
}

.hi-440px {
  height: 440px !important;
}

.w-max-440px {
  max-width: 440px;
}

.w-min-440px {
  min-width: 440px;
}

.t-440px {
  top: 440px;
}

.l-440px {
  left: 440px;
}

.r-440px {
  right: 440px;
}

.b-440px {
  bottom: 440px;
}

.ti-440px {
  top: 440px !important;
}

.li-440px {
  left: 440px !important;
}

.ri-440px {
  right: 440px !important;
}

.bi-440px {
  bottom: 440px !important;
}

.w-441px {
  width: 441px;
}

.h-441px {
  height: 441px;
}

.wi-441px {
  width: 441px !important;
}

.hi-441px {
  height: 441px !important;
}

.w-max-441px {
  max-width: 441px;
}

.w-min-441px {
  min-width: 441px;
}

.t-441px {
  top: 441px;
}

.l-441px {
  left: 441px;
}

.r-441px {
  right: 441px;
}

.b-441px {
  bottom: 441px;
}

.ti-441px {
  top: 441px !important;
}

.li-441px {
  left: 441px !important;
}

.ri-441px {
  right: 441px !important;
}

.bi-441px {
  bottom: 441px !important;
}

.w-442px {
  width: 442px;
}

.h-442px {
  height: 442px;
}

.wi-442px {
  width: 442px !important;
}

.hi-442px {
  height: 442px !important;
}

.w-max-442px {
  max-width: 442px;
}

.w-min-442px {
  min-width: 442px;
}

.t-442px {
  top: 442px;
}

.l-442px {
  left: 442px;
}

.r-442px {
  right: 442px;
}

.b-442px {
  bottom: 442px;
}

.ti-442px {
  top: 442px !important;
}

.li-442px {
  left: 442px !important;
}

.ri-442px {
  right: 442px !important;
}

.bi-442px {
  bottom: 442px !important;
}

.w-443px {
  width: 443px;
}

.h-443px {
  height: 443px;
}

.wi-443px {
  width: 443px !important;
}

.hi-443px {
  height: 443px !important;
}

.w-max-443px {
  max-width: 443px;
}

.w-min-443px {
  min-width: 443px;
}

.t-443px {
  top: 443px;
}

.l-443px {
  left: 443px;
}

.r-443px {
  right: 443px;
}

.b-443px {
  bottom: 443px;
}

.ti-443px {
  top: 443px !important;
}

.li-443px {
  left: 443px !important;
}

.ri-443px {
  right: 443px !important;
}

.bi-443px {
  bottom: 443px !important;
}

.w-444px {
  width: 444px;
}

.h-444px {
  height: 444px;
}

.wi-444px {
  width: 444px !important;
}

.hi-444px {
  height: 444px !important;
}

.w-max-444px {
  max-width: 444px;
}

.w-min-444px {
  min-width: 444px;
}

.t-444px {
  top: 444px;
}

.l-444px {
  left: 444px;
}

.r-444px {
  right: 444px;
}

.b-444px {
  bottom: 444px;
}

.ti-444px {
  top: 444px !important;
}

.li-444px {
  left: 444px !important;
}

.ri-444px {
  right: 444px !important;
}

.bi-444px {
  bottom: 444px !important;
}

.w-445px {
  width: 445px;
}

.h-445px {
  height: 445px;
}

.wi-445px {
  width: 445px !important;
}

.hi-445px {
  height: 445px !important;
}

.w-max-445px {
  max-width: 445px;
}

.w-min-445px {
  min-width: 445px;
}

.t-445px {
  top: 445px;
}

.l-445px {
  left: 445px;
}

.r-445px {
  right: 445px;
}

.b-445px {
  bottom: 445px;
}

.ti-445px {
  top: 445px !important;
}

.li-445px {
  left: 445px !important;
}

.ri-445px {
  right: 445px !important;
}

.bi-445px {
  bottom: 445px !important;
}

.w-446px {
  width: 446px;
}

.h-446px {
  height: 446px;
}

.wi-446px {
  width: 446px !important;
}

.hi-446px {
  height: 446px !important;
}

.w-max-446px {
  max-width: 446px;
}

.w-min-446px {
  min-width: 446px;
}

.t-446px {
  top: 446px;
}

.l-446px {
  left: 446px;
}

.r-446px {
  right: 446px;
}

.b-446px {
  bottom: 446px;
}

.ti-446px {
  top: 446px !important;
}

.li-446px {
  left: 446px !important;
}

.ri-446px {
  right: 446px !important;
}

.bi-446px {
  bottom: 446px !important;
}

.w-447px {
  width: 447px;
}

.h-447px {
  height: 447px;
}

.wi-447px {
  width: 447px !important;
}

.hi-447px {
  height: 447px !important;
}

.w-max-447px {
  max-width: 447px;
}

.w-min-447px {
  min-width: 447px;
}

.t-447px {
  top: 447px;
}

.l-447px {
  left: 447px;
}

.r-447px {
  right: 447px;
}

.b-447px {
  bottom: 447px;
}

.ti-447px {
  top: 447px !important;
}

.li-447px {
  left: 447px !important;
}

.ri-447px {
  right: 447px !important;
}

.bi-447px {
  bottom: 447px !important;
}

.w-448px {
  width: 448px;
}

.h-448px {
  height: 448px;
}

.wi-448px {
  width: 448px !important;
}

.hi-448px {
  height: 448px !important;
}

.w-max-448px {
  max-width: 448px;
}

.w-min-448px {
  min-width: 448px;
}

.t-448px {
  top: 448px;
}

.l-448px {
  left: 448px;
}

.r-448px {
  right: 448px;
}

.b-448px {
  bottom: 448px;
}

.ti-448px {
  top: 448px !important;
}

.li-448px {
  left: 448px !important;
}

.ri-448px {
  right: 448px !important;
}

.bi-448px {
  bottom: 448px !important;
}

.w-449px {
  width: 449px;
}

.h-449px {
  height: 449px;
}

.wi-449px {
  width: 449px !important;
}

.hi-449px {
  height: 449px !important;
}

.w-max-449px {
  max-width: 449px;
}

.w-min-449px {
  min-width: 449px;
}

.t-449px {
  top: 449px;
}

.l-449px {
  left: 449px;
}

.r-449px {
  right: 449px;
}

.b-449px {
  bottom: 449px;
}

.ti-449px {
  top: 449px !important;
}

.li-449px {
  left: 449px !important;
}

.ri-449px {
  right: 449px !important;
}

.bi-449px {
  bottom: 449px !important;
}

.w-450px {
  width: 450px;
}

.h-450px {
  height: 450px;
}

.wi-450px {
  width: 450px !important;
}

.hi-450px {
  height: 450px !important;
}

.w-max-450px {
  max-width: 450px;
}

.w-min-450px {
  min-width: 450px;
}

.t-450px {
  top: 450px;
}

.l-450px {
  left: 450px;
}

.r-450px {
  right: 450px;
}

.b-450px {
  bottom: 450px;
}

.ti-450px {
  top: 450px !important;
}

.li-450px {
  left: 450px !important;
}

.ri-450px {
  right: 450px !important;
}

.bi-450px {
  bottom: 450px !important;
}

.w-451px {
  width: 451px;
}

.h-451px {
  height: 451px;
}

.wi-451px {
  width: 451px !important;
}

.hi-451px {
  height: 451px !important;
}

.w-max-451px {
  max-width: 451px;
}

.w-min-451px {
  min-width: 451px;
}

.t-451px {
  top: 451px;
}

.l-451px {
  left: 451px;
}

.r-451px {
  right: 451px;
}

.b-451px {
  bottom: 451px;
}

.ti-451px {
  top: 451px !important;
}

.li-451px {
  left: 451px !important;
}

.ri-451px {
  right: 451px !important;
}

.bi-451px {
  bottom: 451px !important;
}

.w-452px {
  width: 452px;
}

.h-452px {
  height: 452px;
}

.wi-452px {
  width: 452px !important;
}

.hi-452px {
  height: 452px !important;
}

.w-max-452px {
  max-width: 452px;
}

.w-min-452px {
  min-width: 452px;
}

.t-452px {
  top: 452px;
}

.l-452px {
  left: 452px;
}

.r-452px {
  right: 452px;
}

.b-452px {
  bottom: 452px;
}

.ti-452px {
  top: 452px !important;
}

.li-452px {
  left: 452px !important;
}

.ri-452px {
  right: 452px !important;
}

.bi-452px {
  bottom: 452px !important;
}

.w-453px {
  width: 453px;
}

.h-453px {
  height: 453px;
}

.wi-453px {
  width: 453px !important;
}

.hi-453px {
  height: 453px !important;
}

.w-max-453px {
  max-width: 453px;
}

.w-min-453px {
  min-width: 453px;
}

.t-453px {
  top: 453px;
}

.l-453px {
  left: 453px;
}

.r-453px {
  right: 453px;
}

.b-453px {
  bottom: 453px;
}

.ti-453px {
  top: 453px !important;
}

.li-453px {
  left: 453px !important;
}

.ri-453px {
  right: 453px !important;
}

.bi-453px {
  bottom: 453px !important;
}

.w-454px {
  width: 454px;
}

.h-454px {
  height: 454px;
}

.wi-454px {
  width: 454px !important;
}

.hi-454px {
  height: 454px !important;
}

.w-max-454px {
  max-width: 454px;
}

.w-min-454px {
  min-width: 454px;
}

.t-454px {
  top: 454px;
}

.l-454px {
  left: 454px;
}

.r-454px {
  right: 454px;
}

.b-454px {
  bottom: 454px;
}

.ti-454px {
  top: 454px !important;
}

.li-454px {
  left: 454px !important;
}

.ri-454px {
  right: 454px !important;
}

.bi-454px {
  bottom: 454px !important;
}

.w-455px {
  width: 455px;
}

.h-455px {
  height: 455px;
}

.wi-455px {
  width: 455px !important;
}

.hi-455px {
  height: 455px !important;
}

.w-max-455px {
  max-width: 455px;
}

.w-min-455px {
  min-width: 455px;
}

.t-455px {
  top: 455px;
}

.l-455px {
  left: 455px;
}

.r-455px {
  right: 455px;
}

.b-455px {
  bottom: 455px;
}

.ti-455px {
  top: 455px !important;
}

.li-455px {
  left: 455px !important;
}

.ri-455px {
  right: 455px !important;
}

.bi-455px {
  bottom: 455px !important;
}

.w-456px {
  width: 456px;
}

.h-456px {
  height: 456px;
}

.wi-456px {
  width: 456px !important;
}

.hi-456px {
  height: 456px !important;
}

.w-max-456px {
  max-width: 456px;
}

.w-min-456px {
  min-width: 456px;
}

.t-456px {
  top: 456px;
}

.l-456px {
  left: 456px;
}

.r-456px {
  right: 456px;
}

.b-456px {
  bottom: 456px;
}

.ti-456px {
  top: 456px !important;
}

.li-456px {
  left: 456px !important;
}

.ri-456px {
  right: 456px !important;
}

.bi-456px {
  bottom: 456px !important;
}

.w-457px {
  width: 457px;
}

.h-457px {
  height: 457px;
}

.wi-457px {
  width: 457px !important;
}

.hi-457px {
  height: 457px !important;
}

.w-max-457px {
  max-width: 457px;
}

.w-min-457px {
  min-width: 457px;
}

.t-457px {
  top: 457px;
}

.l-457px {
  left: 457px;
}

.r-457px {
  right: 457px;
}

.b-457px {
  bottom: 457px;
}

.ti-457px {
  top: 457px !important;
}

.li-457px {
  left: 457px !important;
}

.ri-457px {
  right: 457px !important;
}

.bi-457px {
  bottom: 457px !important;
}

.w-458px {
  width: 458px;
}

.h-458px {
  height: 458px;
}

.wi-458px {
  width: 458px !important;
}

.hi-458px {
  height: 458px !important;
}

.w-max-458px {
  max-width: 458px;
}

.w-min-458px {
  min-width: 458px;
}

.t-458px {
  top: 458px;
}

.l-458px {
  left: 458px;
}

.r-458px {
  right: 458px;
}

.b-458px {
  bottom: 458px;
}

.ti-458px {
  top: 458px !important;
}

.li-458px {
  left: 458px !important;
}

.ri-458px {
  right: 458px !important;
}

.bi-458px {
  bottom: 458px !important;
}

.w-459px {
  width: 459px;
}

.h-459px {
  height: 459px;
}

.wi-459px {
  width: 459px !important;
}

.hi-459px {
  height: 459px !important;
}

.w-max-459px {
  max-width: 459px;
}

.w-min-459px {
  min-width: 459px;
}

.t-459px {
  top: 459px;
}

.l-459px {
  left: 459px;
}

.r-459px {
  right: 459px;
}

.b-459px {
  bottom: 459px;
}

.ti-459px {
  top: 459px !important;
}

.li-459px {
  left: 459px !important;
}

.ri-459px {
  right: 459px !important;
}

.bi-459px {
  bottom: 459px !important;
}

.w-460px {
  width: 460px;
}

.h-460px {
  height: 460px;
}

.wi-460px {
  width: 460px !important;
}

.hi-460px {
  height: 460px !important;
}

.w-max-460px {
  max-width: 460px;
}

.w-min-460px {
  min-width: 460px;
}

.t-460px {
  top: 460px;
}

.l-460px {
  left: 460px;
}

.r-460px {
  right: 460px;
}

.b-460px {
  bottom: 460px;
}

.ti-460px {
  top: 460px !important;
}

.li-460px {
  left: 460px !important;
}

.ri-460px {
  right: 460px !important;
}

.bi-460px {
  bottom: 460px !important;
}

.w-461px {
  width: 461px;
}

.h-461px {
  height: 461px;
}

.wi-461px {
  width: 461px !important;
}

.hi-461px {
  height: 461px !important;
}

.w-max-461px {
  max-width: 461px;
}

.w-min-461px {
  min-width: 461px;
}

.t-461px {
  top: 461px;
}

.l-461px {
  left: 461px;
}

.r-461px {
  right: 461px;
}

.b-461px {
  bottom: 461px;
}

.ti-461px {
  top: 461px !important;
}

.li-461px {
  left: 461px !important;
}

.ri-461px {
  right: 461px !important;
}

.bi-461px {
  bottom: 461px !important;
}

.w-462px {
  width: 462px;
}

.h-462px {
  height: 462px;
}

.wi-462px {
  width: 462px !important;
}

.hi-462px {
  height: 462px !important;
}

.w-max-462px {
  max-width: 462px;
}

.w-min-462px {
  min-width: 462px;
}

.t-462px {
  top: 462px;
}

.l-462px {
  left: 462px;
}

.r-462px {
  right: 462px;
}

.b-462px {
  bottom: 462px;
}

.ti-462px {
  top: 462px !important;
}

.li-462px {
  left: 462px !important;
}

.ri-462px {
  right: 462px !important;
}

.bi-462px {
  bottom: 462px !important;
}

.w-463px {
  width: 463px;
}

.h-463px {
  height: 463px;
}

.wi-463px {
  width: 463px !important;
}

.hi-463px {
  height: 463px !important;
}

.w-max-463px {
  max-width: 463px;
}

.w-min-463px {
  min-width: 463px;
}

.t-463px {
  top: 463px;
}

.l-463px {
  left: 463px;
}

.r-463px {
  right: 463px;
}

.b-463px {
  bottom: 463px;
}

.ti-463px {
  top: 463px !important;
}

.li-463px {
  left: 463px !important;
}

.ri-463px {
  right: 463px !important;
}

.bi-463px {
  bottom: 463px !important;
}

.w-464px {
  width: 464px;
}

.h-464px {
  height: 464px;
}

.wi-464px {
  width: 464px !important;
}

.hi-464px {
  height: 464px !important;
}

.w-max-464px {
  max-width: 464px;
}

.w-min-464px {
  min-width: 464px;
}

.t-464px {
  top: 464px;
}

.l-464px {
  left: 464px;
}

.r-464px {
  right: 464px;
}

.b-464px {
  bottom: 464px;
}

.ti-464px {
  top: 464px !important;
}

.li-464px {
  left: 464px !important;
}

.ri-464px {
  right: 464px !important;
}

.bi-464px {
  bottom: 464px !important;
}

.w-465px {
  width: 465px;
}

.h-465px {
  height: 465px;
}

.wi-465px {
  width: 465px !important;
}

.hi-465px {
  height: 465px !important;
}

.w-max-465px {
  max-width: 465px;
}

.w-min-465px {
  min-width: 465px;
}

.t-465px {
  top: 465px;
}

.l-465px {
  left: 465px;
}

.r-465px {
  right: 465px;
}

.b-465px {
  bottom: 465px;
}

.ti-465px {
  top: 465px !important;
}

.li-465px {
  left: 465px !important;
}

.ri-465px {
  right: 465px !important;
}

.bi-465px {
  bottom: 465px !important;
}

.w-466px {
  width: 466px;
}

.h-466px {
  height: 466px;
}

.wi-466px {
  width: 466px !important;
}

.hi-466px {
  height: 466px !important;
}

.w-max-466px {
  max-width: 466px;
}

.w-min-466px {
  min-width: 466px;
}

.t-466px {
  top: 466px;
}

.l-466px {
  left: 466px;
}

.r-466px {
  right: 466px;
}

.b-466px {
  bottom: 466px;
}

.ti-466px {
  top: 466px !important;
}

.li-466px {
  left: 466px !important;
}

.ri-466px {
  right: 466px !important;
}

.bi-466px {
  bottom: 466px !important;
}

.w-467px {
  width: 467px;
}

.h-467px {
  height: 467px;
}

.wi-467px {
  width: 467px !important;
}

.hi-467px {
  height: 467px !important;
}

.w-max-467px {
  max-width: 467px;
}

.w-min-467px {
  min-width: 467px;
}

.t-467px {
  top: 467px;
}

.l-467px {
  left: 467px;
}

.r-467px {
  right: 467px;
}

.b-467px {
  bottom: 467px;
}

.ti-467px {
  top: 467px !important;
}

.li-467px {
  left: 467px !important;
}

.ri-467px {
  right: 467px !important;
}

.bi-467px {
  bottom: 467px !important;
}

.w-468px {
  width: 468px;
}

.h-468px {
  height: 468px;
}

.wi-468px {
  width: 468px !important;
}

.hi-468px {
  height: 468px !important;
}

.w-max-468px {
  max-width: 468px;
}

.w-min-468px {
  min-width: 468px;
}

.t-468px {
  top: 468px;
}

.l-468px {
  left: 468px;
}

.r-468px {
  right: 468px;
}

.b-468px {
  bottom: 468px;
}

.ti-468px {
  top: 468px !important;
}

.li-468px {
  left: 468px !important;
}

.ri-468px {
  right: 468px !important;
}

.bi-468px {
  bottom: 468px !important;
}

.w-469px {
  width: 469px;
}

.h-469px {
  height: 469px;
}

.wi-469px {
  width: 469px !important;
}

.hi-469px {
  height: 469px !important;
}

.w-max-469px {
  max-width: 469px;
}

.w-min-469px {
  min-width: 469px;
}

.t-469px {
  top: 469px;
}

.l-469px {
  left: 469px;
}

.r-469px {
  right: 469px;
}

.b-469px {
  bottom: 469px;
}

.ti-469px {
  top: 469px !important;
}

.li-469px {
  left: 469px !important;
}

.ri-469px {
  right: 469px !important;
}

.bi-469px {
  bottom: 469px !important;
}

.w-470px {
  width: 470px;
}

.h-470px {
  height: 470px;
}

.wi-470px {
  width: 470px !important;
}

.hi-470px {
  height: 470px !important;
}

.w-max-470px {
  max-width: 470px;
}

.w-min-470px {
  min-width: 470px;
}

.t-470px {
  top: 470px;
}

.l-470px {
  left: 470px;
}

.r-470px {
  right: 470px;
}

.b-470px {
  bottom: 470px;
}

.ti-470px {
  top: 470px !important;
}

.li-470px {
  left: 470px !important;
}

.ri-470px {
  right: 470px !important;
}

.bi-470px {
  bottom: 470px !important;
}

.w-471px {
  width: 471px;
}

.h-471px {
  height: 471px;
}

.wi-471px {
  width: 471px !important;
}

.hi-471px {
  height: 471px !important;
}

.w-max-471px {
  max-width: 471px;
}

.w-min-471px {
  min-width: 471px;
}

.t-471px {
  top: 471px;
}

.l-471px {
  left: 471px;
}

.r-471px {
  right: 471px;
}

.b-471px {
  bottom: 471px;
}

.ti-471px {
  top: 471px !important;
}

.li-471px {
  left: 471px !important;
}

.ri-471px {
  right: 471px !important;
}

.bi-471px {
  bottom: 471px !important;
}

.w-472px {
  width: 472px;
}

.h-472px {
  height: 472px;
}

.wi-472px {
  width: 472px !important;
}

.hi-472px {
  height: 472px !important;
}

.w-max-472px {
  max-width: 472px;
}

.w-min-472px {
  min-width: 472px;
}

.t-472px {
  top: 472px;
}

.l-472px {
  left: 472px;
}

.r-472px {
  right: 472px;
}

.b-472px {
  bottom: 472px;
}

.ti-472px {
  top: 472px !important;
}

.li-472px {
  left: 472px !important;
}

.ri-472px {
  right: 472px !important;
}

.bi-472px {
  bottom: 472px !important;
}

.w-473px {
  width: 473px;
}

.h-473px {
  height: 473px;
}

.wi-473px {
  width: 473px !important;
}

.hi-473px {
  height: 473px !important;
}

.w-max-473px {
  max-width: 473px;
}

.w-min-473px {
  min-width: 473px;
}

.t-473px {
  top: 473px;
}

.l-473px {
  left: 473px;
}

.r-473px {
  right: 473px;
}

.b-473px {
  bottom: 473px;
}

.ti-473px {
  top: 473px !important;
}

.li-473px {
  left: 473px !important;
}

.ri-473px {
  right: 473px !important;
}

.bi-473px {
  bottom: 473px !important;
}

.w-474px {
  width: 474px;
}

.h-474px {
  height: 474px;
}

.wi-474px {
  width: 474px !important;
}

.hi-474px {
  height: 474px !important;
}

.w-max-474px {
  max-width: 474px;
}

.w-min-474px {
  min-width: 474px;
}

.t-474px {
  top: 474px;
}

.l-474px {
  left: 474px;
}

.r-474px {
  right: 474px;
}

.b-474px {
  bottom: 474px;
}

.ti-474px {
  top: 474px !important;
}

.li-474px {
  left: 474px !important;
}

.ri-474px {
  right: 474px !important;
}

.bi-474px {
  bottom: 474px !important;
}

.w-475px {
  width: 475px;
}

.h-475px {
  height: 475px;
}

.wi-475px {
  width: 475px !important;
}

.hi-475px {
  height: 475px !important;
}

.w-max-475px {
  max-width: 475px;
}

.w-min-475px {
  min-width: 475px;
}

.t-475px {
  top: 475px;
}

.l-475px {
  left: 475px;
}

.r-475px {
  right: 475px;
}

.b-475px {
  bottom: 475px;
}

.ti-475px {
  top: 475px !important;
}

.li-475px {
  left: 475px !important;
}

.ri-475px {
  right: 475px !important;
}

.bi-475px {
  bottom: 475px !important;
}

.w-476px {
  width: 476px;
}

.h-476px {
  height: 476px;
}

.wi-476px {
  width: 476px !important;
}

.hi-476px {
  height: 476px !important;
}

.w-max-476px {
  max-width: 476px;
}

.w-min-476px {
  min-width: 476px;
}

.t-476px {
  top: 476px;
}

.l-476px {
  left: 476px;
}

.r-476px {
  right: 476px;
}

.b-476px {
  bottom: 476px;
}

.ti-476px {
  top: 476px !important;
}

.li-476px {
  left: 476px !important;
}

.ri-476px {
  right: 476px !important;
}

.bi-476px {
  bottom: 476px !important;
}

.w-477px {
  width: 477px;
}

.h-477px {
  height: 477px;
}

.wi-477px {
  width: 477px !important;
}

.hi-477px {
  height: 477px !important;
}

.w-max-477px {
  max-width: 477px;
}

.w-min-477px {
  min-width: 477px;
}

.t-477px {
  top: 477px;
}

.l-477px {
  left: 477px;
}

.r-477px {
  right: 477px;
}

.b-477px {
  bottom: 477px;
}

.ti-477px {
  top: 477px !important;
}

.li-477px {
  left: 477px !important;
}

.ri-477px {
  right: 477px !important;
}

.bi-477px {
  bottom: 477px !important;
}

.w-478px {
  width: 478px;
}

.h-478px {
  height: 478px;
}

.wi-478px {
  width: 478px !important;
}

.hi-478px {
  height: 478px !important;
}

.w-max-478px {
  max-width: 478px;
}

.w-min-478px {
  min-width: 478px;
}

.t-478px {
  top: 478px;
}

.l-478px {
  left: 478px;
}

.r-478px {
  right: 478px;
}

.b-478px {
  bottom: 478px;
}

.ti-478px {
  top: 478px !important;
}

.li-478px {
  left: 478px !important;
}

.ri-478px {
  right: 478px !important;
}

.bi-478px {
  bottom: 478px !important;
}

.w-479px {
  width: 479px;
}

.h-479px {
  height: 479px;
}

.wi-479px {
  width: 479px !important;
}

.hi-479px {
  height: 479px !important;
}

.w-max-479px {
  max-width: 479px;
}

.w-min-479px {
  min-width: 479px;
}

.t-479px {
  top: 479px;
}

.l-479px {
  left: 479px;
}

.r-479px {
  right: 479px;
}

.b-479px {
  bottom: 479px;
}

.ti-479px {
  top: 479px !important;
}

.li-479px {
  left: 479px !important;
}

.ri-479px {
  right: 479px !important;
}

.bi-479px {
  bottom: 479px !important;
}

.w-480px {
  width: 480px;
}

.h-480px {
  height: 480px;
}

.wi-480px {
  width: 480px !important;
}

.hi-480px {
  height: 480px !important;
}

.w-max-480px {
  max-width: 480px;
}

.w-min-480px {
  min-width: 480px;
}

.t-480px {
  top: 480px;
}

.l-480px {
  left: 480px;
}

.r-480px {
  right: 480px;
}

.b-480px {
  bottom: 480px;
}

.ti-480px {
  top: 480px !important;
}

.li-480px {
  left: 480px !important;
}

.ri-480px {
  right: 480px !important;
}

.bi-480px {
  bottom: 480px !important;
}

.w-481px {
  width: 481px;
}

.h-481px {
  height: 481px;
}

.wi-481px {
  width: 481px !important;
}

.hi-481px {
  height: 481px !important;
}

.w-max-481px {
  max-width: 481px;
}

.w-min-481px {
  min-width: 481px;
}

.t-481px {
  top: 481px;
}

.l-481px {
  left: 481px;
}

.r-481px {
  right: 481px;
}

.b-481px {
  bottom: 481px;
}

.ti-481px {
  top: 481px !important;
}

.li-481px {
  left: 481px !important;
}

.ri-481px {
  right: 481px !important;
}

.bi-481px {
  bottom: 481px !important;
}

.w-482px {
  width: 482px;
}

.h-482px {
  height: 482px;
}

.wi-482px {
  width: 482px !important;
}

.hi-482px {
  height: 482px !important;
}

.w-max-482px {
  max-width: 482px;
}

.w-min-482px {
  min-width: 482px;
}

.t-482px {
  top: 482px;
}

.l-482px {
  left: 482px;
}

.r-482px {
  right: 482px;
}

.b-482px {
  bottom: 482px;
}

.ti-482px {
  top: 482px !important;
}

.li-482px {
  left: 482px !important;
}

.ri-482px {
  right: 482px !important;
}

.bi-482px {
  bottom: 482px !important;
}

.w-483px {
  width: 483px;
}

.h-483px {
  height: 483px;
}

.wi-483px {
  width: 483px !important;
}

.hi-483px {
  height: 483px !important;
}

.w-max-483px {
  max-width: 483px;
}

.w-min-483px {
  min-width: 483px;
}

.t-483px {
  top: 483px;
}

.l-483px {
  left: 483px;
}

.r-483px {
  right: 483px;
}

.b-483px {
  bottom: 483px;
}

.ti-483px {
  top: 483px !important;
}

.li-483px {
  left: 483px !important;
}

.ri-483px {
  right: 483px !important;
}

.bi-483px {
  bottom: 483px !important;
}

.w-484px {
  width: 484px;
}

.h-484px {
  height: 484px;
}

.wi-484px {
  width: 484px !important;
}

.hi-484px {
  height: 484px !important;
}

.w-max-484px {
  max-width: 484px;
}

.w-min-484px {
  min-width: 484px;
}

.t-484px {
  top: 484px;
}

.l-484px {
  left: 484px;
}

.r-484px {
  right: 484px;
}

.b-484px {
  bottom: 484px;
}

.ti-484px {
  top: 484px !important;
}

.li-484px {
  left: 484px !important;
}

.ri-484px {
  right: 484px !important;
}

.bi-484px {
  bottom: 484px !important;
}

.w-485px {
  width: 485px;
}

.h-485px {
  height: 485px;
}

.wi-485px {
  width: 485px !important;
}

.hi-485px {
  height: 485px !important;
}

.w-max-485px {
  max-width: 485px;
}

.w-min-485px {
  min-width: 485px;
}

.t-485px {
  top: 485px;
}

.l-485px {
  left: 485px;
}

.r-485px {
  right: 485px;
}

.b-485px {
  bottom: 485px;
}

.ti-485px {
  top: 485px !important;
}

.li-485px {
  left: 485px !important;
}

.ri-485px {
  right: 485px !important;
}

.bi-485px {
  bottom: 485px !important;
}

.w-486px {
  width: 486px;
}

.h-486px {
  height: 486px;
}

.wi-486px {
  width: 486px !important;
}

.hi-486px {
  height: 486px !important;
}

.w-max-486px {
  max-width: 486px;
}

.w-min-486px {
  min-width: 486px;
}

.t-486px {
  top: 486px;
}

.l-486px {
  left: 486px;
}

.r-486px {
  right: 486px;
}

.b-486px {
  bottom: 486px;
}

.ti-486px {
  top: 486px !important;
}

.li-486px {
  left: 486px !important;
}

.ri-486px {
  right: 486px !important;
}

.bi-486px {
  bottom: 486px !important;
}

.w-487px {
  width: 487px;
}

.h-487px {
  height: 487px;
}

.wi-487px {
  width: 487px !important;
}

.hi-487px {
  height: 487px !important;
}

.w-max-487px {
  max-width: 487px;
}

.w-min-487px {
  min-width: 487px;
}

.t-487px {
  top: 487px;
}

.l-487px {
  left: 487px;
}

.r-487px {
  right: 487px;
}

.b-487px {
  bottom: 487px;
}

.ti-487px {
  top: 487px !important;
}

.li-487px {
  left: 487px !important;
}

.ri-487px {
  right: 487px !important;
}

.bi-487px {
  bottom: 487px !important;
}

.w-488px {
  width: 488px;
}

.h-488px {
  height: 488px;
}

.wi-488px {
  width: 488px !important;
}

.hi-488px {
  height: 488px !important;
}

.w-max-488px {
  max-width: 488px;
}

.w-min-488px {
  min-width: 488px;
}

.t-488px {
  top: 488px;
}

.l-488px {
  left: 488px;
}

.r-488px {
  right: 488px;
}

.b-488px {
  bottom: 488px;
}

.ti-488px {
  top: 488px !important;
}

.li-488px {
  left: 488px !important;
}

.ri-488px {
  right: 488px !important;
}

.bi-488px {
  bottom: 488px !important;
}

.w-489px {
  width: 489px;
}

.h-489px {
  height: 489px;
}

.wi-489px {
  width: 489px !important;
}

.hi-489px {
  height: 489px !important;
}

.w-max-489px {
  max-width: 489px;
}

.w-min-489px {
  min-width: 489px;
}

.t-489px {
  top: 489px;
}

.l-489px {
  left: 489px;
}

.r-489px {
  right: 489px;
}

.b-489px {
  bottom: 489px;
}

.ti-489px {
  top: 489px !important;
}

.li-489px {
  left: 489px !important;
}

.ri-489px {
  right: 489px !important;
}

.bi-489px {
  bottom: 489px !important;
}

.w-490px {
  width: 490px;
}

.h-490px {
  height: 490px;
}

.wi-490px {
  width: 490px !important;
}

.hi-490px {
  height: 490px !important;
}

.w-max-490px {
  max-width: 490px;
}

.w-min-490px {
  min-width: 490px;
}

.t-490px {
  top: 490px;
}

.l-490px {
  left: 490px;
}

.r-490px {
  right: 490px;
}

.b-490px {
  bottom: 490px;
}

.ti-490px {
  top: 490px !important;
}

.li-490px {
  left: 490px !important;
}

.ri-490px {
  right: 490px !important;
}

.bi-490px {
  bottom: 490px !important;
}

.w-491px {
  width: 491px;
}

.h-491px {
  height: 491px;
}

.wi-491px {
  width: 491px !important;
}

.hi-491px {
  height: 491px !important;
}

.w-max-491px {
  max-width: 491px;
}

.w-min-491px {
  min-width: 491px;
}

.t-491px {
  top: 491px;
}

.l-491px {
  left: 491px;
}

.r-491px {
  right: 491px;
}

.b-491px {
  bottom: 491px;
}

.ti-491px {
  top: 491px !important;
}

.li-491px {
  left: 491px !important;
}

.ri-491px {
  right: 491px !important;
}

.bi-491px {
  bottom: 491px !important;
}

.w-492px {
  width: 492px;
}

.h-492px {
  height: 492px;
}

.wi-492px {
  width: 492px !important;
}

.hi-492px {
  height: 492px !important;
}

.w-max-492px {
  max-width: 492px;
}

.w-min-492px {
  min-width: 492px;
}

.t-492px {
  top: 492px;
}

.l-492px {
  left: 492px;
}

.r-492px {
  right: 492px;
}

.b-492px {
  bottom: 492px;
}

.ti-492px {
  top: 492px !important;
}

.li-492px {
  left: 492px !important;
}

.ri-492px {
  right: 492px !important;
}

.bi-492px {
  bottom: 492px !important;
}

.w-493px {
  width: 493px;
}

.h-493px {
  height: 493px;
}

.wi-493px {
  width: 493px !important;
}

.hi-493px {
  height: 493px !important;
}

.w-max-493px {
  max-width: 493px;
}

.w-min-493px {
  min-width: 493px;
}

.t-493px {
  top: 493px;
}

.l-493px {
  left: 493px;
}

.r-493px {
  right: 493px;
}

.b-493px {
  bottom: 493px;
}

.ti-493px {
  top: 493px !important;
}

.li-493px {
  left: 493px !important;
}

.ri-493px {
  right: 493px !important;
}

.bi-493px {
  bottom: 493px !important;
}

.w-494px {
  width: 494px;
}

.h-494px {
  height: 494px;
}

.wi-494px {
  width: 494px !important;
}

.hi-494px {
  height: 494px !important;
}

.w-max-494px {
  max-width: 494px;
}

.w-min-494px {
  min-width: 494px;
}

.t-494px {
  top: 494px;
}

.l-494px {
  left: 494px;
}

.r-494px {
  right: 494px;
}

.b-494px {
  bottom: 494px;
}

.ti-494px {
  top: 494px !important;
}

.li-494px {
  left: 494px !important;
}

.ri-494px {
  right: 494px !important;
}

.bi-494px {
  bottom: 494px !important;
}

.w-495px {
  width: 495px;
}

.h-495px {
  height: 495px;
}

.wi-495px {
  width: 495px !important;
}

.hi-495px {
  height: 495px !important;
}

.w-max-495px {
  max-width: 495px;
}

.w-min-495px {
  min-width: 495px;
}

.t-495px {
  top: 495px;
}

.l-495px {
  left: 495px;
}

.r-495px {
  right: 495px;
}

.b-495px {
  bottom: 495px;
}

.ti-495px {
  top: 495px !important;
}

.li-495px {
  left: 495px !important;
}

.ri-495px {
  right: 495px !important;
}

.bi-495px {
  bottom: 495px !important;
}

.w-496px {
  width: 496px;
}

.h-496px {
  height: 496px;
}

.wi-496px {
  width: 496px !important;
}

.hi-496px {
  height: 496px !important;
}

.w-max-496px {
  max-width: 496px;
}

.w-min-496px {
  min-width: 496px;
}

.t-496px {
  top: 496px;
}

.l-496px {
  left: 496px;
}

.r-496px {
  right: 496px;
}

.b-496px {
  bottom: 496px;
}

.ti-496px {
  top: 496px !important;
}

.li-496px {
  left: 496px !important;
}

.ri-496px {
  right: 496px !important;
}

.bi-496px {
  bottom: 496px !important;
}

.w-497px {
  width: 497px;
}

.h-497px {
  height: 497px;
}

.wi-497px {
  width: 497px !important;
}

.hi-497px {
  height: 497px !important;
}

.w-max-497px {
  max-width: 497px;
}

.w-min-497px {
  min-width: 497px;
}

.t-497px {
  top: 497px;
}

.l-497px {
  left: 497px;
}

.r-497px {
  right: 497px;
}

.b-497px {
  bottom: 497px;
}

.ti-497px {
  top: 497px !important;
}

.li-497px {
  left: 497px !important;
}

.ri-497px {
  right: 497px !important;
}

.bi-497px {
  bottom: 497px !important;
}

.w-498px {
  width: 498px;
}

.h-498px {
  height: 498px;
}

.wi-498px {
  width: 498px !important;
}

.hi-498px {
  height: 498px !important;
}

.w-max-498px {
  max-width: 498px;
}

.w-min-498px {
  min-width: 498px;
}

.t-498px {
  top: 498px;
}

.l-498px {
  left: 498px;
}

.r-498px {
  right: 498px;
}

.b-498px {
  bottom: 498px;
}

.ti-498px {
  top: 498px !important;
}

.li-498px {
  left: 498px !important;
}

.ri-498px {
  right: 498px !important;
}

.bi-498px {
  bottom: 498px !important;
}

.w-499px {
  width: 499px;
}

.h-499px {
  height: 499px;
}

.wi-499px {
  width: 499px !important;
}

.hi-499px {
  height: 499px !important;
}

.w-max-499px {
  max-width: 499px;
}

.w-min-499px {
  min-width: 499px;
}

.t-499px {
  top: 499px;
}

.l-499px {
  left: 499px;
}

.r-499px {
  right: 499px;
}

.b-499px {
  bottom: 499px;
}

.ti-499px {
  top: 499px !important;
}

.li-499px {
  left: 499px !important;
}

.ri-499px {
  right: 499px !important;
}

.bi-499px {
  bottom: 499px !important;
}

.w-500px {
  width: 500px;
}

.h-500px {
  height: 500px;
}

.wi-500px {
  width: 500px !important;
}

.hi-500px {
  height: 500px !important;
}

.w-max-500px {
  max-width: 500px;
}

.w-min-500px {
  min-width: 500px;
}

.t-500px {
  top: 500px;
}

.l-500px {
  left: 500px;
}

.r-500px {
  right: 500px;
}

.b-500px {
  bottom: 500px;
}

.ti-500px {
  top: 500px !important;
}

.li-500px {
  left: 500px !important;
}

.ri-500px {
  right: 500px !important;
}

.bi-500px {
  bottom: 500px !important;
}

.gap-0px {
  gap: 0px;
}

.gap-1px {
  gap: 1px;
}

.gap-2px {
  gap: 2px;
}

.gap-3px {
  gap: 3px;
}

.gap-4px {
  gap: 4px;
}

.gap-5px {
  gap: 5px;
}

.gap-6px {
  gap: 6px;
}

.gap-7px {
  gap: 7px;
}

.gap-8px {
  gap: 8px;
}

.gap-9px {
  gap: 9px;
}

.gap-10px {
  gap: 10px;
}

.gap-11px {
  gap: 11px;
}

.gap-12px {
  gap: 12px;
}

.gap-13px {
  gap: 13px;
}

.gap-14px {
  gap: 14px;
}

.gap-15px {
  gap: 15px;
}

.gap-16px {
  gap: 16px;
}

.gap-17px {
  gap: 17px;
}

.gap-18px {
  gap: 18px;
}

.gap-19px {
  gap: 19px;
}

.gap-20px {
  gap: 20px;
}

.w-0rem {
  width: 0rem;
}

.h-0rem {
  height: 0rem;
}

.t-0rem {
  top: 0rem;
}

.l-0rem {
  bottom: 0rem;
}

.r-0rem {
  left: 0rem;
}

.b-0rem {
  right: 0rem;
}

.wi-0rem {
  width: 0rem !important;
}

.hi-0rem {
  height: 0rem !important;
}

.ti-0rem {
  top: 0rem !important;
}

.li-0rem {
  bottom: 0rem !important;
}

.ri-0rem {
  left: 0rem !important;
}

.bi-0rem {
  right: 0rem !important;
}

.w-1rem {
  width: 1rem;
}

.h-1rem {
  height: 1rem;
}

.t-1rem {
  top: 1rem;
}

.l-1rem {
  bottom: 1rem;
}

.r-1rem {
  left: 1rem;
}

.b-1rem {
  right: 1rem;
}

.wi-1rem {
  width: 1rem !important;
}

.hi-1rem {
  height: 1rem !important;
}

.ti-1rem {
  top: 1rem !important;
}

.li-1rem {
  bottom: 1rem !important;
}

.ri-1rem {
  left: 1rem !important;
}

.bi-1rem {
  right: 1rem !important;
}

.w-2rem {
  width: 2rem;
}

.h-2rem {
  height: 2rem;
}

.t-2rem {
  top: 2rem;
}

.l-2rem {
  bottom: 2rem;
}

.r-2rem {
  left: 2rem;
}

.b-2rem {
  right: 2rem;
}

.wi-2rem {
  width: 2rem !important;
}

.hi-2rem {
  height: 2rem !important;
}

.ti-2rem {
  top: 2rem !important;
}

.li-2rem {
  bottom: 2rem !important;
}

.ri-2rem {
  left: 2rem !important;
}

.bi-2rem {
  right: 2rem !important;
}

.w-3rem {
  width: 3rem;
}

.h-3rem {
  height: 3rem;
}

.t-3rem {
  top: 3rem;
}

.l-3rem {
  bottom: 3rem;
}

.r-3rem {
  left: 3rem;
}

.b-3rem {
  right: 3rem;
}

.wi-3rem {
  width: 3rem !important;
}

.hi-3rem {
  height: 3rem !important;
}

.ti-3rem {
  top: 3rem !important;
}

.li-3rem {
  bottom: 3rem !important;
}

.ri-3rem {
  left: 3rem !important;
}

.bi-3rem {
  right: 3rem !important;
}

.w-4rem {
  width: 4rem;
}

.h-4rem {
  height: 4rem;
}

.t-4rem {
  top: 4rem;
}

.l-4rem {
  bottom: 4rem;
}

.r-4rem {
  left: 4rem;
}

.b-4rem {
  right: 4rem;
}

.wi-4rem {
  width: 4rem !important;
}

.hi-4rem {
  height: 4rem !important;
}

.ti-4rem {
  top: 4rem !important;
}

.li-4rem {
  bottom: 4rem !important;
}

.ri-4rem {
  left: 4rem !important;
}

.bi-4rem {
  right: 4rem !important;
}

.w-5rem {
  width: 5rem;
}

.h-5rem {
  height: 5rem;
}

.t-5rem {
  top: 5rem;
}

.l-5rem {
  bottom: 5rem;
}

.r-5rem {
  left: 5rem;
}

.b-5rem {
  right: 5rem;
}

.wi-5rem {
  width: 5rem !important;
}

.hi-5rem {
  height: 5rem !important;
}

.ti-5rem {
  top: 5rem !important;
}

.li-5rem {
  bottom: 5rem !important;
}

.ri-5rem {
  left: 5rem !important;
}

.bi-5rem {
  right: 5rem !important;
}

.w-6rem {
  width: 6rem;
}

.h-6rem {
  height: 6rem;
}

.t-6rem {
  top: 6rem;
}

.l-6rem {
  bottom: 6rem;
}

.r-6rem {
  left: 6rem;
}

.b-6rem {
  right: 6rem;
}

.wi-6rem {
  width: 6rem !important;
}

.hi-6rem {
  height: 6rem !important;
}

.ti-6rem {
  top: 6rem !important;
}

.li-6rem {
  bottom: 6rem !important;
}

.ri-6rem {
  left: 6rem !important;
}

.bi-6rem {
  right: 6rem !important;
}

.w-7rem {
  width: 7rem;
}

.h-7rem {
  height: 7rem;
}

.t-7rem {
  top: 7rem;
}

.l-7rem {
  bottom: 7rem;
}

.r-7rem {
  left: 7rem;
}

.b-7rem {
  right: 7rem;
}

.wi-7rem {
  width: 7rem !important;
}

.hi-7rem {
  height: 7rem !important;
}

.ti-7rem {
  top: 7rem !important;
}

.li-7rem {
  bottom: 7rem !important;
}

.ri-7rem {
  left: 7rem !important;
}

.bi-7rem {
  right: 7rem !important;
}

.w-8rem {
  width: 8rem;
}

.h-8rem {
  height: 8rem;
}

.t-8rem {
  top: 8rem;
}

.l-8rem {
  bottom: 8rem;
}

.r-8rem {
  left: 8rem;
}

.b-8rem {
  right: 8rem;
}

.wi-8rem {
  width: 8rem !important;
}

.hi-8rem {
  height: 8rem !important;
}

.ti-8rem {
  top: 8rem !important;
}

.li-8rem {
  bottom: 8rem !important;
}

.ri-8rem {
  left: 8rem !important;
}

.bi-8rem {
  right: 8rem !important;
}

.w-9rem {
  width: 9rem;
}

.h-9rem {
  height: 9rem;
}

.t-9rem {
  top: 9rem;
}

.l-9rem {
  bottom: 9rem;
}

.r-9rem {
  left: 9rem;
}

.b-9rem {
  right: 9rem;
}

.wi-9rem {
  width: 9rem !important;
}

.hi-9rem {
  height: 9rem !important;
}

.ti-9rem {
  top: 9rem !important;
}

.li-9rem {
  bottom: 9rem !important;
}

.ri-9rem {
  left: 9rem !important;
}

.bi-9rem {
  right: 9rem !important;
}

.w-10rem {
  width: 10rem;
}

.h-10rem {
  height: 10rem;
}

.t-10rem {
  top: 10rem;
}

.l-10rem {
  bottom: 10rem;
}

.r-10rem {
  left: 10rem;
}

.b-10rem {
  right: 10rem;
}

.wi-10rem {
  width: 10rem !important;
}

.hi-10rem {
  height: 10rem !important;
}

.ti-10rem {
  top: 10rem !important;
}

.li-10rem {
  bottom: 10rem !important;
}

.ri-10rem {
  left: 10rem !important;
}

.bi-10rem {
  right: 10rem !important;
}

.w-11rem {
  width: 11rem;
}

.h-11rem {
  height: 11rem;
}

.t-11rem {
  top: 11rem;
}

.l-11rem {
  bottom: 11rem;
}

.r-11rem {
  left: 11rem;
}

.b-11rem {
  right: 11rem;
}

.wi-11rem {
  width: 11rem !important;
}

.hi-11rem {
  height: 11rem !important;
}

.ti-11rem {
  top: 11rem !important;
}

.li-11rem {
  bottom: 11rem !important;
}

.ri-11rem {
  left: 11rem !important;
}

.bi-11rem {
  right: 11rem !important;
}

.w-12rem {
  width: 12rem;
}

.h-12rem {
  height: 12rem;
}

.t-12rem {
  top: 12rem;
}

.l-12rem {
  bottom: 12rem;
}

.r-12rem {
  left: 12rem;
}

.b-12rem {
  right: 12rem;
}

.wi-12rem {
  width: 12rem !important;
}

.hi-12rem {
  height: 12rem !important;
}

.ti-12rem {
  top: 12rem !important;
}

.li-12rem {
  bottom: 12rem !important;
}

.ri-12rem {
  left: 12rem !important;
}

.bi-12rem {
  right: 12rem !important;
}

.w-13rem {
  width: 13rem;
}

.h-13rem {
  height: 13rem;
}

.t-13rem {
  top: 13rem;
}

.l-13rem {
  bottom: 13rem;
}

.r-13rem {
  left: 13rem;
}

.b-13rem {
  right: 13rem;
}

.wi-13rem {
  width: 13rem !important;
}

.hi-13rem {
  height: 13rem !important;
}

.ti-13rem {
  top: 13rem !important;
}

.li-13rem {
  bottom: 13rem !important;
}

.ri-13rem {
  left: 13rem !important;
}

.bi-13rem {
  right: 13rem !important;
}

.w-14rem {
  width: 14rem;
}

.h-14rem {
  height: 14rem;
}

.t-14rem {
  top: 14rem;
}

.l-14rem {
  bottom: 14rem;
}

.r-14rem {
  left: 14rem;
}

.b-14rem {
  right: 14rem;
}

.wi-14rem {
  width: 14rem !important;
}

.hi-14rem {
  height: 14rem !important;
}

.ti-14rem {
  top: 14rem !important;
}

.li-14rem {
  bottom: 14rem !important;
}

.ri-14rem {
  left: 14rem !important;
}

.bi-14rem {
  right: 14rem !important;
}

.w-15rem {
  width: 15rem;
}

.h-15rem {
  height: 15rem;
}

.t-15rem {
  top: 15rem;
}

.l-15rem {
  bottom: 15rem;
}

.r-15rem {
  left: 15rem;
}

.b-15rem {
  right: 15rem;
}

.wi-15rem {
  width: 15rem !important;
}

.hi-15rem {
  height: 15rem !important;
}

.ti-15rem {
  top: 15rem !important;
}

.li-15rem {
  bottom: 15rem !important;
}

.ri-15rem {
  left: 15rem !important;
}

.bi-15rem {
  right: 15rem !important;
}

.w-16rem {
  width: 16rem;
}

.h-16rem {
  height: 16rem;
}

.t-16rem {
  top: 16rem;
}

.l-16rem {
  bottom: 16rem;
}

.r-16rem {
  left: 16rem;
}

.b-16rem {
  right: 16rem;
}

.wi-16rem {
  width: 16rem !important;
}

.hi-16rem {
  height: 16rem !important;
}

.ti-16rem {
  top: 16rem !important;
}

.li-16rem {
  bottom: 16rem !important;
}

.ri-16rem {
  left: 16rem !important;
}

.bi-16rem {
  right: 16rem !important;
}

.w-17rem {
  width: 17rem;
}

.h-17rem {
  height: 17rem;
}

.t-17rem {
  top: 17rem;
}

.l-17rem {
  bottom: 17rem;
}

.r-17rem {
  left: 17rem;
}

.b-17rem {
  right: 17rem;
}

.wi-17rem {
  width: 17rem !important;
}

.hi-17rem {
  height: 17rem !important;
}

.ti-17rem {
  top: 17rem !important;
}

.li-17rem {
  bottom: 17rem !important;
}

.ri-17rem {
  left: 17rem !important;
}

.bi-17rem {
  right: 17rem !important;
}

.w-18rem {
  width: 18rem;
}

.h-18rem {
  height: 18rem;
}

.t-18rem {
  top: 18rem;
}

.l-18rem {
  bottom: 18rem;
}

.r-18rem {
  left: 18rem;
}

.b-18rem {
  right: 18rem;
}

.wi-18rem {
  width: 18rem !important;
}

.hi-18rem {
  height: 18rem !important;
}

.ti-18rem {
  top: 18rem !important;
}

.li-18rem {
  bottom: 18rem !important;
}

.ri-18rem {
  left: 18rem !important;
}

.bi-18rem {
  right: 18rem !important;
}

.w-19rem {
  width: 19rem;
}

.h-19rem {
  height: 19rem;
}

.t-19rem {
  top: 19rem;
}

.l-19rem {
  bottom: 19rem;
}

.r-19rem {
  left: 19rem;
}

.b-19rem {
  right: 19rem;
}

.wi-19rem {
  width: 19rem !important;
}

.hi-19rem {
  height: 19rem !important;
}

.ti-19rem {
  top: 19rem !important;
}

.li-19rem {
  bottom: 19rem !important;
}

.ri-19rem {
  left: 19rem !important;
}

.bi-19rem {
  right: 19rem !important;
}

.w-20rem {
  width: 20rem;
}

.h-20rem {
  height: 20rem;
}

.t-20rem {
  top: 20rem;
}

.l-20rem {
  bottom: 20rem;
}

.r-20rem {
  left: 20rem;
}

.b-20rem {
  right: 20rem;
}

.wi-20rem {
  width: 20rem !important;
}

.hi-20rem {
  height: 20rem !important;
}

.ti-20rem {
  top: 20rem !important;
}

.li-20rem {
  bottom: 20rem !important;
}

.ri-20rem {
  left: 20rem !important;
}

.bi-20rem {
  right: 20rem !important;
}

.fs-0px, .font-0px {
  font-size: 0px;
}

.fs-0p {
  font-size: 0%;
}

.lh-0px {
  line-height: 0px;
}

.fs-1px, .font-1px {
  font-size: 1px;
}

.fs-1p {
  font-size: 1%;
}

.lh-1px {
  line-height: 1px;
}

.fs-2px, .font-2px {
  font-size: 2px;
}

.fs-2p {
  font-size: 2%;
}

.lh-2px {
  line-height: 2px;
}

.fs-3px, .font-3px {
  font-size: 3px;
}

.fs-3p {
  font-size: 3%;
}

.lh-3px {
  line-height: 3px;
}

.fs-4px, .font-4px {
  font-size: 4px;
}

.fs-4p {
  font-size: 4%;
}

.lh-4px {
  line-height: 4px;
}

.fs-5px, .font-5px {
  font-size: 5px;
}

.fs-5p {
  font-size: 5%;
}

.lh-5px {
  line-height: 5px;
}

.fs-6px, .font-6px {
  font-size: 6px;
}

.fs-6p {
  font-size: 6%;
}

.lh-6px {
  line-height: 6px;
}

.fs-7px, .font-7px {
  font-size: 7px;
}

.fs-7p {
  font-size: 7%;
}

.lh-7px {
  line-height: 7px;
}

.fs-8px, .font-8px {
  font-size: 8px;
}

.fs-8p {
  font-size: 8%;
}

.lh-8px {
  line-height: 8px;
}

.fs-9px, .font-9px {
  font-size: 9px;
}

.fs-9p {
  font-size: 9%;
}

.lh-9px {
  line-height: 9px;
}

.fs-10px, .font-10px {
  font-size: 10px;
}

.fs-10p {
  font-size: 10%;
}

.lh-10px {
  line-height: 10px;
}

.fs-11px, .font-11px {
  font-size: 11px;
}

.fs-11p {
  font-size: 11%;
}

.lh-11px {
  line-height: 11px;
}

.fs-12px, .font-12px {
  font-size: 12px;
}

.fs-12p {
  font-size: 12%;
}

.lh-12px {
  line-height: 12px;
}

.fs-13px, .font-13px {
  font-size: 13px;
}

.fs-13p {
  font-size: 13%;
}

.lh-13px {
  line-height: 13px;
}

.fs-14px, .font-14px {
  font-size: 14px;
}

.fs-14p {
  font-size: 14%;
}

.lh-14px {
  line-height: 14px;
}

.fs-15px, .font-15px {
  font-size: 15px;
}

.fs-15p {
  font-size: 15%;
}

.lh-15px {
  line-height: 15px;
}

.fs-16px, .font-16px {
  font-size: 16px;
}

.fs-16p {
  font-size: 16%;
}

.lh-16px {
  line-height: 16px;
}

.fs-17px, .font-17px {
  font-size: 17px;
}

.fs-17p {
  font-size: 17%;
}

.lh-17px {
  line-height: 17px;
}

.fs-18px, .font-18px {
  font-size: 18px;
}

.fs-18p {
  font-size: 18%;
}

.lh-18px {
  line-height: 18px;
}

.fs-19px, .font-19px {
  font-size: 19px;
}

.fs-19p {
  font-size: 19%;
}

.lh-19px {
  line-height: 19px;
}

.fs-20px, .font-20px {
  font-size: 20px;
}

.fs-20p {
  font-size: 20%;
}

.lh-20px {
  line-height: 20px;
}

.fs-21px, .font-21px {
  font-size: 21px;
}

.fs-21p {
  font-size: 21%;
}

.lh-21px {
  line-height: 21px;
}

.fs-22px, .font-22px {
  font-size: 22px;
}

.fs-22p {
  font-size: 22%;
}

.lh-22px {
  line-height: 22px;
}

.fs-23px, .font-23px {
  font-size: 23px;
}

.fs-23p {
  font-size: 23%;
}

.lh-23px {
  line-height: 23px;
}

.fs-24px, .font-24px {
  font-size: 24px;
}

.fs-24p {
  font-size: 24%;
}

.lh-24px {
  line-height: 24px;
}

.fs-25px, .font-25px {
  font-size: 25px;
}

.fs-25p {
  font-size: 25%;
}

.lh-25px {
  line-height: 25px;
}

.fs-26px, .font-26px {
  font-size: 26px;
}

.fs-26p {
  font-size: 26%;
}

.lh-26px {
  line-height: 26px;
}

.fs-27px, .font-27px {
  font-size: 27px;
}

.fs-27p {
  font-size: 27%;
}

.lh-27px {
  line-height: 27px;
}

.fs-28px, .font-28px {
  font-size: 28px;
}

.fs-28p {
  font-size: 28%;
}

.lh-28px {
  line-height: 28px;
}

.fs-29px, .font-29px {
  font-size: 29px;
}

.fs-29p {
  font-size: 29%;
}

.lh-29px {
  line-height: 29px;
}

.fs-30px, .font-30px {
  font-size: 30px;
}

.fs-30p {
  font-size: 30%;
}

.lh-30px {
  line-height: 30px;
}

.fs-31px, .font-31px {
  font-size: 31px;
}

.fs-31p {
  font-size: 31%;
}

.lh-31px {
  line-height: 31px;
}

.fs-32px, .font-32px {
  font-size: 32px;
}

.fs-32p {
  font-size: 32%;
}

.lh-32px {
  line-height: 32px;
}

.fs-33px, .font-33px {
  font-size: 33px;
}

.fs-33p {
  font-size: 33%;
}

.lh-33px {
  line-height: 33px;
}

.fs-34px, .font-34px {
  font-size: 34px;
}

.fs-34p {
  font-size: 34%;
}

.lh-34px {
  line-height: 34px;
}

.fs-35px, .font-35px {
  font-size: 35px;
}

.fs-35p {
  font-size: 35%;
}

.lh-35px {
  line-height: 35px;
}

.fs-36px, .font-36px {
  font-size: 36px;
}

.fs-36p {
  font-size: 36%;
}

.lh-36px {
  line-height: 36px;
}

.fs-37px, .font-37px {
  font-size: 37px;
}

.fs-37p {
  font-size: 37%;
}

.lh-37px {
  line-height: 37px;
}

.fs-38px, .font-38px {
  font-size: 38px;
}

.fs-38p {
  font-size: 38%;
}

.lh-38px {
  line-height: 38px;
}

.fs-39px, .font-39px {
  font-size: 39px;
}

.fs-39p {
  font-size: 39%;
}

.lh-39px {
  line-height: 39px;
}

.fs-40px, .font-40px {
  font-size: 40px;
}

.fs-40p {
  font-size: 40%;
}

.lh-40px {
  line-height: 40px;
}

.fs-41px, .font-41px {
  font-size: 41px;
}

.fs-41p {
  font-size: 41%;
}

.lh-41px {
  line-height: 41px;
}

.fs-42px, .font-42px {
  font-size: 42px;
}

.fs-42p {
  font-size: 42%;
}

.lh-42px {
  line-height: 42px;
}

.fs-43px, .font-43px {
  font-size: 43px;
}

.fs-43p {
  font-size: 43%;
}

.lh-43px {
  line-height: 43px;
}

.fs-44px, .font-44px {
  font-size: 44px;
}

.fs-44p {
  font-size: 44%;
}

.lh-44px {
  line-height: 44px;
}

.fs-45px, .font-45px {
  font-size: 45px;
}

.fs-45p {
  font-size: 45%;
}

.lh-45px {
  line-height: 45px;
}

.fs-46px, .font-46px {
  font-size: 46px;
}

.fs-46p {
  font-size: 46%;
}

.lh-46px {
  line-height: 46px;
}

.fs-47px, .font-47px {
  font-size: 47px;
}

.fs-47p {
  font-size: 47%;
}

.lh-47px {
  line-height: 47px;
}

.fs-48px, .font-48px {
  font-size: 48px;
}

.fs-48p {
  font-size: 48%;
}

.lh-48px {
  line-height: 48px;
}

.fs-49px, .font-49px {
  font-size: 49px;
}

.fs-49p {
  font-size: 49%;
}

.lh-49px {
  line-height: 49px;
}

.fs-50px, .font-50px {
  font-size: 50px;
}

.fs-50p {
  font-size: 50%;
}

.lh-50px {
  line-height: 50px;
}

.fs-51px, .font-51px {
  font-size: 51px;
}

.fs-51p {
  font-size: 51%;
}

.lh-51px {
  line-height: 51px;
}

.fs-52px, .font-52px {
  font-size: 52px;
}

.fs-52p {
  font-size: 52%;
}

.lh-52px {
  line-height: 52px;
}

.fs-53px, .font-53px {
  font-size: 53px;
}

.fs-53p {
  font-size: 53%;
}

.lh-53px {
  line-height: 53px;
}

.fs-54px, .font-54px {
  font-size: 54px;
}

.fs-54p {
  font-size: 54%;
}

.lh-54px {
  line-height: 54px;
}

.fs-55px, .font-55px {
  font-size: 55px;
}

.fs-55p {
  font-size: 55%;
}

.lh-55px {
  line-height: 55px;
}

.fs-56px, .font-56px {
  font-size: 56px;
}

.fs-56p {
  font-size: 56%;
}

.lh-56px {
  line-height: 56px;
}

.fs-57px, .font-57px {
  font-size: 57px;
}

.fs-57p {
  font-size: 57%;
}

.lh-57px {
  line-height: 57px;
}

.fs-58px, .font-58px {
  font-size: 58px;
}

.fs-58p {
  font-size: 58%;
}

.lh-58px {
  line-height: 58px;
}

.fs-59px, .font-59px {
  font-size: 59px;
}

.fs-59p {
  font-size: 59%;
}

.lh-59px {
  line-height: 59px;
}

.fs-60px, .font-60px {
  font-size: 60px;
}

.fs-60p {
  font-size: 60%;
}

.lh-60px {
  line-height: 60px;
}

.fs-61px, .font-61px {
  font-size: 61px;
}

.fs-61p {
  font-size: 61%;
}

.lh-61px {
  line-height: 61px;
}

.fs-62px, .font-62px {
  font-size: 62px;
}

.fs-62p {
  font-size: 62%;
}

.lh-62px {
  line-height: 62px;
}

.fs-63px, .font-63px {
  font-size: 63px;
}

.fs-63p {
  font-size: 63%;
}

.lh-63px {
  line-height: 63px;
}

.fs-64px, .font-64px {
  font-size: 64px;
}

.fs-64p {
  font-size: 64%;
}

.lh-64px {
  line-height: 64px;
}

.fs-65px, .font-65px {
  font-size: 65px;
}

.fs-65p {
  font-size: 65%;
}

.lh-65px {
  line-height: 65px;
}

.fs-66px, .font-66px {
  font-size: 66px;
}

.fs-66p {
  font-size: 66%;
}

.lh-66px {
  line-height: 66px;
}

.fs-67px, .font-67px {
  font-size: 67px;
}

.fs-67p {
  font-size: 67%;
}

.lh-67px {
  line-height: 67px;
}

.fs-68px, .font-68px {
  font-size: 68px;
}

.fs-68p {
  font-size: 68%;
}

.lh-68px {
  line-height: 68px;
}

.fs-69px, .font-69px {
  font-size: 69px;
}

.fs-69p {
  font-size: 69%;
}

.lh-69px {
  line-height: 69px;
}

.fs-70px, .font-70px {
  font-size: 70px;
}

.fs-70p {
  font-size: 70%;
}

.lh-70px {
  line-height: 70px;
}

.fs-71px, .font-71px {
  font-size: 71px;
}

.fs-71p {
  font-size: 71%;
}

.lh-71px {
  line-height: 71px;
}

.fs-72px, .font-72px {
  font-size: 72px;
}

.fs-72p {
  font-size: 72%;
}

.lh-72px {
  line-height: 72px;
}

.fs-73px, .font-73px {
  font-size: 73px;
}

.fs-73p {
  font-size: 73%;
}

.lh-73px {
  line-height: 73px;
}

.fs-74px, .font-74px {
  font-size: 74px;
}

.fs-74p {
  font-size: 74%;
}

.lh-74px {
  line-height: 74px;
}

.fs-75px, .font-75px {
  font-size: 75px;
}

.fs-75p {
  font-size: 75%;
}

.lh-75px {
  line-height: 75px;
}

.fs-76px, .font-76px {
  font-size: 76px;
}

.fs-76p {
  font-size: 76%;
}

.lh-76px {
  line-height: 76px;
}

.fs-77px, .font-77px {
  font-size: 77px;
}

.fs-77p {
  font-size: 77%;
}

.lh-77px {
  line-height: 77px;
}

.fs-78px, .font-78px {
  font-size: 78px;
}

.fs-78p {
  font-size: 78%;
}

.lh-78px {
  line-height: 78px;
}

.fs-79px, .font-79px {
  font-size: 79px;
}

.fs-79p {
  font-size: 79%;
}

.lh-79px {
  line-height: 79px;
}

.fs-80px, .font-80px {
  font-size: 80px;
}

.fs-80p {
  font-size: 80%;
}

.lh-80px {
  line-height: 80px;
}

.fs-81px, .font-81px {
  font-size: 81px;
}

.fs-81p {
  font-size: 81%;
}

.lh-81px {
  line-height: 81px;
}

.fs-82px, .font-82px {
  font-size: 82px;
}

.fs-82p {
  font-size: 82%;
}

.lh-82px {
  line-height: 82px;
}

.fs-83px, .font-83px {
  font-size: 83px;
}

.fs-83p {
  font-size: 83%;
}

.lh-83px {
  line-height: 83px;
}

.fs-84px, .font-84px {
  font-size: 84px;
}

.fs-84p {
  font-size: 84%;
}

.lh-84px {
  line-height: 84px;
}

.fs-85px, .font-85px {
  font-size: 85px;
}

.fs-85p {
  font-size: 85%;
}

.lh-85px {
  line-height: 85px;
}

.fs-86px, .font-86px {
  font-size: 86px;
}

.fs-86p {
  font-size: 86%;
}

.lh-86px {
  line-height: 86px;
}

.fs-87px, .font-87px {
  font-size: 87px;
}

.fs-87p {
  font-size: 87%;
}

.lh-87px {
  line-height: 87px;
}

.fs-88px, .font-88px {
  font-size: 88px;
}

.fs-88p {
  font-size: 88%;
}

.lh-88px {
  line-height: 88px;
}

.fs-89px, .font-89px {
  font-size: 89px;
}

.fs-89p {
  font-size: 89%;
}

.lh-89px {
  line-height: 89px;
}

.fs-90px, .font-90px {
  font-size: 90px;
}

.fs-90p {
  font-size: 90%;
}

.lh-90px {
  line-height: 90px;
}

.fs-91px, .font-91px {
  font-size: 91px;
}

.fs-91p {
  font-size: 91%;
}

.lh-91px {
  line-height: 91px;
}

.fs-92px, .font-92px {
  font-size: 92px;
}

.fs-92p {
  font-size: 92%;
}

.lh-92px {
  line-height: 92px;
}

.fs-93px, .font-93px {
  font-size: 93px;
}

.fs-93p {
  font-size: 93%;
}

.lh-93px {
  line-height: 93px;
}

.fs-94px, .font-94px {
  font-size: 94px;
}

.fs-94p {
  font-size: 94%;
}

.lh-94px {
  line-height: 94px;
}

.fs-95px, .font-95px {
  font-size: 95px;
}

.fs-95p {
  font-size: 95%;
}

.lh-95px {
  line-height: 95px;
}

.fs-96px, .font-96px {
  font-size: 96px;
}

.fs-96p {
  font-size: 96%;
}

.lh-96px {
  line-height: 96px;
}

.fs-97px, .font-97px {
  font-size: 97px;
}

.fs-97p {
  font-size: 97%;
}

.lh-97px {
  line-height: 97px;
}

.fs-98px, .font-98px {
  font-size: 98px;
}

.fs-98p {
  font-size: 98%;
}

.lh-98px {
  line-height: 98px;
}

.fs-99px, .font-99px {
  font-size: 99px;
}

.fs-99p {
  font-size: 99%;
}

.lh-99px {
  line-height: 99px;
}

.fs-100px, .font-100px {
  font-size: 100px;
}

.fs-100p {
  font-size: 100%;
}

.lh-100px {
  line-height: 100px;
}

.fs-0rem, .font-0rem {
  font-size: 0rem;
}

.lh-0rem {
  line-height: 0rem;
}

.fs-1rem, .font-1rem {
  font-size: 1rem;
}

.lh-1rem {
  line-height: 1rem;
}

.fs-2rem, .font-2rem {
  font-size: 2rem;
}

.lh-2rem {
  line-height: 2rem;
}

.fs-3rem, .font-3rem {
  font-size: 3rem;
}

.lh-3rem {
  line-height: 3rem;
}

.fs-4rem, .font-4rem {
  font-size: 4rem;
}

.lh-4rem {
  line-height: 4rem;
}

.fs-5rem, .font-5rem {
  font-size: 5rem;
}

.lh-5rem {
  line-height: 5rem;
}

.fs-6rem, .font-6rem {
  font-size: 6rem;
}

.lh-6rem {
  line-height: 6rem;
}

.fs-7rem, .font-7rem {
  font-size: 7rem;
}

.lh-7rem {
  line-height: 7rem;
}

.fs-8rem, .font-8rem {
  font-size: 8rem;
}

.lh-8rem {
  line-height: 8rem;
}

.fs-9rem, .font-9rem {
  font-size: 9rem;
}

.lh-9rem {
  line-height: 9rem;
}

.fs-10rem, .font-10rem {
  font-size: 10rem;
}

.lh-10rem {
  line-height: 10rem;
}

.fs-11rem, .font-11rem {
  font-size: 11rem;
}

.lh-11rem {
  line-height: 11rem;
}

.fs-12rem, .font-12rem {
  font-size: 12rem;
}

.lh-12rem {
  line-height: 12rem;
}

.fs-13rem, .font-13rem {
  font-size: 13rem;
}

.lh-13rem {
  line-height: 13rem;
}

.fs-14rem, .font-14rem {
  font-size: 14rem;
}

.lh-14rem {
  line-height: 14rem;
}

.fs-15rem, .font-15rem {
  font-size: 15rem;
}

.lh-15rem {
  line-height: 15rem;
}

.fs-16rem, .font-16rem {
  font-size: 16rem;
}

.lh-16rem {
  line-height: 16rem;
}

.fs-17rem, .font-17rem {
  font-size: 17rem;
}

.lh-17rem {
  line-height: 17rem;
}

.fs-18rem, .font-18rem {
  font-size: 18rem;
}

.lh-18rem {
  line-height: 18rem;
}

.fs-19rem, .font-19rem {
  font-size: 19rem;
}

.lh-19rem {
  line-height: 19rem;
}

.fs-20rem, .font-20rem {
  font-size: 20rem;
}

.lh-20rem {
  line-height: 20rem;
}

.br-0px {
  border-radius: 0px;
}

.br-0p {
  border-radius: 0%;
}

.br-1px {
  border-radius: 1px;
}

.br-1p {
  border-radius: 1%;
}

.br-2px {
  border-radius: 2px;
}

.br-2p {
  border-radius: 2%;
}

.br-3px {
  border-radius: 3px;
}

.br-3p {
  border-radius: 3%;
}

.br-4px {
  border-radius: 4px;
}

.br-4p {
  border-radius: 4%;
}

.br-5px {
  border-radius: 5px;
}

.br-5p {
  border-radius: 5%;
}

.br-6px {
  border-radius: 6px;
}

.br-6p {
  border-radius: 6%;
}

.br-7px {
  border-radius: 7px;
}

.br-7p {
  border-radius: 7%;
}

.br-8px {
  border-radius: 8px;
}

.br-8p {
  border-radius: 8%;
}

.br-9px {
  border-radius: 9px;
}

.br-9p {
  border-radius: 9%;
}

.br-10px {
  border-radius: 10px;
}

.br-10p {
  border-radius: 10%;
}

.br-11px {
  border-radius: 11px;
}

.br-11p {
  border-radius: 11%;
}

.br-12px {
  border-radius: 12px;
}

.br-12p {
  border-radius: 12%;
}

.br-13px {
  border-radius: 13px;
}

.br-13p {
  border-radius: 13%;
}

.br-14px {
  border-radius: 14px;
}

.br-14p {
  border-radius: 14%;
}

.br-15px {
  border-radius: 15px;
}

.br-15p {
  border-radius: 15%;
}

.br-16px {
  border-radius: 16px;
}

.br-16p {
  border-radius: 16%;
}

.br-17px {
  border-radius: 17px;
}

.br-17p {
  border-radius: 17%;
}

.br-18px {
  border-radius: 18px;
}

.br-18p {
  border-radius: 18%;
}

.br-19px {
  border-radius: 19px;
}

.br-19p {
  border-radius: 19%;
}

.br-20px {
  border-radius: 20px;
}

.br-20p {
  border-radius: 20%;
}

.br-21px {
  border-radius: 21px;
}

.br-21p {
  border-radius: 21%;
}

.br-22px {
  border-radius: 22px;
}

.br-22p {
  border-radius: 22%;
}

.br-23px {
  border-radius: 23px;
}

.br-23p {
  border-radius: 23%;
}

.br-24px {
  border-radius: 24px;
}

.br-24p {
  border-radius: 24%;
}

.br-25px {
  border-radius: 25px;
}

.br-25p {
  border-radius: 25%;
}

.br-26px {
  border-radius: 26px;
}

.br-26p {
  border-radius: 26%;
}

.br-27px {
  border-radius: 27px;
}

.br-27p {
  border-radius: 27%;
}

.br-28px {
  border-radius: 28px;
}

.br-28p {
  border-radius: 28%;
}

.br-29px {
  border-radius: 29px;
}

.br-29p {
  border-radius: 29%;
}

.br-30px {
  border-radius: 30px;
}

.br-30p {
  border-radius: 30%;
}

.br-31px {
  border-radius: 31px;
}

.br-31p {
  border-radius: 31%;
}

.br-32px {
  border-radius: 32px;
}

.br-32p {
  border-radius: 32%;
}

.br-33px {
  border-radius: 33px;
}

.br-33p {
  border-radius: 33%;
}

.br-34px {
  border-radius: 34px;
}

.br-34p {
  border-radius: 34%;
}

.br-35px {
  border-radius: 35px;
}

.br-35p {
  border-radius: 35%;
}

.br-36px {
  border-radius: 36px;
}

.br-36p {
  border-radius: 36%;
}

.br-37px {
  border-radius: 37px;
}

.br-37p {
  border-radius: 37%;
}

.br-38px {
  border-radius: 38px;
}

.br-38p {
  border-radius: 38%;
}

.br-39px {
  border-radius: 39px;
}

.br-39p {
  border-radius: 39%;
}

.br-40px {
  border-radius: 40px;
}

.br-40p {
  border-radius: 40%;
}

.br-41px {
  border-radius: 41px;
}

.br-41p {
  border-radius: 41%;
}

.br-42px {
  border-radius: 42px;
}

.br-42p {
  border-radius: 42%;
}

.br-43px {
  border-radius: 43px;
}

.br-43p {
  border-radius: 43%;
}

.br-44px {
  border-radius: 44px;
}

.br-44p {
  border-radius: 44%;
}

.br-45px {
  border-radius: 45px;
}

.br-45p {
  border-radius: 45%;
}

.br-46px {
  border-radius: 46px;
}

.br-46p {
  border-radius: 46%;
}

.br-47px {
  border-radius: 47px;
}

.br-47p {
  border-radius: 47%;
}

.br-48px {
  border-radius: 48px;
}

.br-48p {
  border-radius: 48%;
}

.br-49px {
  border-radius: 49px;
}

.br-49p {
  border-radius: 49%;
}

.br-50px {
  border-radius: 50px;
}

.br-50p {
  border-radius: 50%;
}

.br-51px {
  border-radius: 51px;
}

.br-51p {
  border-radius: 51%;
}

.br-52px {
  border-radius: 52px;
}

.br-52p {
  border-radius: 52%;
}

.br-53px {
  border-radius: 53px;
}

.br-53p {
  border-radius: 53%;
}

.br-54px {
  border-radius: 54px;
}

.br-54p {
  border-radius: 54%;
}

.br-55px {
  border-radius: 55px;
}

.br-55p {
  border-radius: 55%;
}

.br-56px {
  border-radius: 56px;
}

.br-56p {
  border-radius: 56%;
}

.br-57px {
  border-radius: 57px;
}

.br-57p {
  border-radius: 57%;
}

.br-58px {
  border-radius: 58px;
}

.br-58p {
  border-radius: 58%;
}

.br-59px {
  border-radius: 59px;
}

.br-59p {
  border-radius: 59%;
}

.br-60px {
  border-radius: 60px;
}

.br-60p {
  border-radius: 60%;
}

.br-61px {
  border-radius: 61px;
}

.br-61p {
  border-radius: 61%;
}

.br-62px {
  border-radius: 62px;
}

.br-62p {
  border-radius: 62%;
}

.br-63px {
  border-radius: 63px;
}

.br-63p {
  border-radius: 63%;
}

.br-64px {
  border-radius: 64px;
}

.br-64p {
  border-radius: 64%;
}

.br-65px {
  border-radius: 65px;
}

.br-65p {
  border-radius: 65%;
}

.br-66px {
  border-radius: 66px;
}

.br-66p {
  border-radius: 66%;
}

.br-67px {
  border-radius: 67px;
}

.br-67p {
  border-radius: 67%;
}

.br-68px {
  border-radius: 68px;
}

.br-68p {
  border-radius: 68%;
}

.br-69px {
  border-radius: 69px;
}

.br-69p {
  border-radius: 69%;
}

.br-70px {
  border-radius: 70px;
}

.br-70p {
  border-radius: 70%;
}

.br-71px {
  border-radius: 71px;
}

.br-71p {
  border-radius: 71%;
}

.br-72px {
  border-radius: 72px;
}

.br-72p {
  border-radius: 72%;
}

.br-73px {
  border-radius: 73px;
}

.br-73p {
  border-radius: 73%;
}

.br-74px {
  border-radius: 74px;
}

.br-74p {
  border-radius: 74%;
}

.br-75px {
  border-radius: 75px;
}

.br-75p {
  border-radius: 75%;
}

.br-76px {
  border-radius: 76px;
}

.br-76p {
  border-radius: 76%;
}

.br-77px {
  border-radius: 77px;
}

.br-77p {
  border-radius: 77%;
}

.br-78px {
  border-radius: 78px;
}

.br-78p {
  border-radius: 78%;
}

.br-79px {
  border-radius: 79px;
}

.br-79p {
  border-radius: 79%;
}

.br-80px {
  border-radius: 80px;
}

.br-80p {
  border-radius: 80%;
}

.br-81px {
  border-radius: 81px;
}

.br-81p {
  border-radius: 81%;
}

.br-82px {
  border-radius: 82px;
}

.br-82p {
  border-radius: 82%;
}

.br-83px {
  border-radius: 83px;
}

.br-83p {
  border-radius: 83%;
}

.br-84px {
  border-radius: 84px;
}

.br-84p {
  border-radius: 84%;
}

.br-85px {
  border-radius: 85px;
}

.br-85p {
  border-radius: 85%;
}

.br-86px {
  border-radius: 86px;
}

.br-86p {
  border-radius: 86%;
}

.br-87px {
  border-radius: 87px;
}

.br-87p {
  border-radius: 87%;
}

.br-88px {
  border-radius: 88px;
}

.br-88p {
  border-radius: 88%;
}

.br-89px {
  border-radius: 89px;
}

.br-89p {
  border-radius: 89%;
}

.br-90px {
  border-radius: 90px;
}

.br-90p {
  border-radius: 90%;
}

.br-91px {
  border-radius: 91px;
}

.br-91p {
  border-radius: 91%;
}

.br-92px {
  border-radius: 92px;
}

.br-92p {
  border-radius: 92%;
}

.br-93px {
  border-radius: 93px;
}

.br-93p {
  border-radius: 93%;
}

.br-94px {
  border-radius: 94px;
}

.br-94p {
  border-radius: 94%;
}

.br-95px {
  border-radius: 95px;
}

.br-95p {
  border-radius: 95%;
}

.br-96px {
  border-radius: 96px;
}

.br-96p {
  border-radius: 96%;
}

.br-97px {
  border-radius: 97px;
}

.br-97p {
  border-radius: 97%;
}

.br-98px {
  border-radius: 98px;
}

.br-98p {
  border-radius: 98%;
}

.br-99px {
  border-radius: 99px;
}

.br-99p {
  border-radius: 99%;
}

.br-100px {
  border-radius: 100px;
}

.br-100p {
  border-radius: 100%;
}

.br-0rem {
  border-radius: 0rem;
}

.br-1rem {
  border-radius: 1rem;
}

.br-2rem {
  border-radius: 2rem;
}

.br-3rem {
  border-radius: 3rem;
}

.br-4rem {
  border-radius: 4rem;
}

.br-5rem {
  border-radius: 5rem;
}

.br-6rem {
  border-radius: 6rem;
}

.br-7rem {
  border-radius: 7rem;
}

.br-8rem {
  border-radius: 8rem;
}

.br-9rem {
  border-radius: 9rem;
}

.br-10rem {
  border-radius: 10rem;
}

.br-11rem {
  border-radius: 11rem;
}

.br-12rem {
  border-radius: 12rem;
}

.br-13rem {
  border-radius: 13rem;
}

.br-14rem {
  border-radius: 14rem;
}

.br-15rem {
  border-radius: 15rem;
}

.br-16rem {
  border-radius: 16rem;
}

.br-17rem {
  border-radius: 17rem;
}

.br-18rem {
  border-radius: 18rem;
}

.br-19rem {
  border-radius: 19rem;
}

.br-20rem {
  border-radius: 20rem;
}

/*# sourceMappingURL=layout.css.map*/