@keyframes passing-through {
0% {
    opacity: 0;
    transform: translateY(40px);
}
30%, 70% {
    opacity: 1;
    transform: translateY(0px);
}
100% {
    opacity: 0;
    transform: translateY(-40px);
}
}
@keyframes slide-in {
0% {
    opacity: 0;
    transform: translateY(40px);
}
30% {
    opacity: 1;
    transform: translateY(0px);
}
}
@keyframes pulse {
0% {
    transform: scale(1);
}
10% {
    transform: scale(1.1);
}
20% {
    transform: scale(1);
}
}
.dropzone, .dropzone * {
  box-sizing: border-box;
}
.dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover {
  border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}
.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
  background: white;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
  transform: scale(1.05, 1.05);
  filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}
.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 300ms ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: rgb(190, 38, 38);
  background: linear-gradient(to bottom, rgb(190, 38, 38), rgb(168.75, 33.75, 33.75));
  padding: 0.5em 1.2em;
  color: white;
}
.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgb(190, 38, 38);
}
::-webkit-scrollbar {
  -webkit-appearance: none;
          appearance: none;
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background-color: #8d8989;
}
html {
  overflow: auto !important;
}
body {
  font-family: "Satoshi-Variable", sans-serif;
}
.comet--text {
  color: #595d87 !important;
}
.lynch--text {
  color: #5d7b92 !important;
}
.pzse-tabs-container {
  display: flex;
  overflow: hidden;
  flex-direction: row;
  align-items: center;
  border: 1px solid rgba(23, 29, 100, 0.2) !important;
  border-radius: 10px;
}
.pzse-tabs-container .pzse-tabs {
  font-size: 0.875rem !important;
  color: #171d64;
  cursor: pointer;
  border: 1px solid rgba(23, 29, 100, 0.2) !important;
  border-top: 0px !important;
  border-right: 0px !important;
  border-bottom: 0px !important;
}
.pzse-tabs-container .pzse-tabs:first-child {
  border-left: 0px !important;
}
.pzse-tabs-container .pzse-tabs.active-tab {
  font-weight: bold;
  background-color: rgba(23, 29, 100, 0.1) !important;
}
.v-tour__target--highlighted {
  box-shadow: none;
  border: 2px solid #fbd415;
}
.tour-cover {
  filter: contrast(83%) brightness(90%);
}
.suspend-unsuspend--btn {
  filter: grayscale(1);
  transition: all 0.4s ease;
  background-color: #f2f2f2 !important;
}
.suspend-unsuspend--btn.unsuspend:hover {
  background-color: #fad2d2 !important;
}
.suspend-unsuspend--btn.suspend:hover {
  background-color: #e1f2e2 !important;
}
.suspend-unsuspend--btn:hover {
  filter: grayscale(0);
}
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #ed1800;
}
#nprogress .peg {
  position: absolute;
  right: 0px;
  display: block;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #ed1800, 0 0 5px #ed1800;
  opacity: 1;
  transform: rotate(3deg) translate(0px, -4px);
}
.black--background {
  background-color: #000 !important;
}
.white--background {
  background-color: #fff !important;
}
.scarlet--background {
  background-color: #ed1800 !important;
}
.mercury--background {
  background-color: #e5e5e5 !important;
}
.concrete-solid--background {
  background-color: #f2f2f2 !important;
}
.concrete--background {
  background-color: #f3f3f3 !important;
}
.web-orange--background {
  background-color: #f5a800 !important;
}
.biscay--background {
  background-color: #1d285c !important;
}
.tuna--background {
  background-color: #34313c !important;
}
.dove-gray--background {
  background-color: #707070 !important;
}
.gray-approx--background {
  background-color: #8d8989 !important;
}
.dusty-gray--background {
  background-color: #9c9c9c !important;
}
.gallery--background {
  background-color: #ebebeb !important;
}
.nobel--background {
  background-color: #b6b6b6 !important;
}
.outer-space--background {
  background-color: #343a40 !important;
}
.fiejoa--background {
  background-color: #8ed891 !important;
}
.silver--background {
  background-color: #c7c7c7 !important;
}
.cascade--background {
  background-color: #95a5a6 !important;
}
.sunset-orange--background {
  background-color: #ff5050 !important;
}
.dodger-blue--background {
  background-color: #1b9cfc !important;
}
.fountain-blue--background {
  background-color: #66bbc1 !important;
}
.kashimir-blue--background {
  background-color: #506498 !important;
}
.visa-white--background {
  background-color: #fdfafa !important;
}
.alabaster--background {
  background-color: #f7f7f7 !important;
}
.fern--background {
  background-color: #66bb6a !important;
}
.coral-red--background {
  background-color: #f44 !important;
}
.lucky-point--background {
  background-color: #171d64 !important;
}
.mine-shaft--background {
  background-color: #2d2d2d !important;
}
.gull-gray--background {
  background-color: #90a4ae !important;
}
.chalky--background {
  background-color: #edd49c !important;
}
.red-orange--background {
  background-color: #fd2626 !important;
}
.rose-white--background {
  background-color: #fff8f8 !important;
}
.sun--background {
  background-color: #fbd415 !important;
}
.island-spice--background {
  background-color: #fff9ed !important;
}
.panache--background {
  background-color: #f4f4f4 !important;
}
.zircon--background {
  background-color: #f8f9ff !important;
}
.sugar-cane--background {
  background-color: #f8fff8 !important;
}
.twilight-blue--background {
  background-color: #f0feff !important;
}
.alice-blue--background {
  background-color: #f1f9ff !important;
}
.gray-chateau--background {
  background-color: #a0a4a8 !important;
}
.school-bus-yellow--background {
  background-color: #fdda00 !important;
}
.alto--background {
  background-color: #ddd !important;
}
.bunting--background {
  background-color: #191e5a !important;
}
.red--background {
  background-color: #f00 !important;
}
.wild-sand--background {
  background-color: #f6f6f6 !important;
}
.silver-chalice--background {
  background-color: #acacac !important;
}
.sun-glow--background {
  background-color: #ffca28 !important;
}
.gold--background {
  background-color: #fdd600 !important;
}
.pattens-blue--background {
  background-color: #d8e3ff !important;
}
.emperor--background {
  background-color: #514649 !important;
}
.tundora--background {
  background-color: #474747 !important;
}
.white-lilac--background {
  background-color: #f7f7fc !important;
}
.santas-gray--background {
  background-color: #9a9ab0 !important;
}
.ebony--background {
  background-color: #11142d !important;
}
.carnation-pink--background {
  background-color: #ffadc8 !important;
}
.corn--background {
  background-color: #f0c40b !important;
}
.pomegranate--background {
  background-color: #f24822 !important;
}
.yellow--background {
  background-color: #ff0 !important;
}
.lynch--background {
  background-color: #5d7b92 !important;
}
.comet--background {
  background-color: #595d87 !important;
}
.hint-of-green--background {
  background-color: #f2fff3 !important;
}
.black-squeeze--background {
  background-color: #e3eff5 !important;
}
.rock-blue--background {
  background-color: #9cb6c8 !important;
}
.botticelli--background {
  background-color: #cad5e3 !important;
}
.ba-0 {
  border: 0 !important;
}
.bt-0 {
  border-top: 0 !important;
}
.br-0 {
  border-right: 0 !important;
}
.bb-0 {
  border-bottom: 0 !important;
}
.bl-0 {
  border-left: 0 !important;
}
.by-0 {
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.bx-0 {
  border-right: 0 !important;
  border-left: 0 !important;
}
.black--ba-1 {
  border: 1px #000 solid !important;
}
.black--bt-1 {
  border-top: 1px #000 solid !important;
}
.black--br-1 {
  border-right: 1px #000 solid !important;
}
.black--bl-1 {
  border-left: 1px #000 solid !important;
}
.black--bb-1 {
  border-bottom: 1px #000 solid !important;
}
.black--by-1 {
  border-top: 1px #000 solid !important;
  border-bottom: 1px #000 solid !important;
}
.black--bx-1 {
  border-right: 1px #000 solid !important;
  border-left: 1px #000 solid !important;
}
.black--ba-2 {
  border: 2px #000 solid !important;
}
.black--bt-2 {
  border-top: 2px #000 solid !important;
}
.black--br-2 {
  border-right: 2px #000 solid !important;
}
.black--bl-2 {
  border-left: 2px #000 solid !important;
}
.black--bb-2 {
  border-bottom: 2px #000 solid !important;
}
.black--by-2 {
  border-top: 2px #000 solid !important;
  border-bottom: 2px #000 solid !important;
}
.black--bx-2 {
  border-right: 2px #000 solid !important;
  border-left: 2px #000 solid !important;
}
.black--ba-3 {
  border: 3px #000 solid !important;
}
.black--bt-3 {
  border-top: 3px #000 solid !important;
}
.black--br-3 {
  border-right: 3px #000 solid !important;
}
.black--bl-3 {
  border-left: 3px #000 solid !important;
}
.black--bb-3 {
  border-bottom: 3px #000 solid !important;
}
.black--by-3 {
  border-top: 3px #000 solid !important;
  border-bottom: 3px #000 solid !important;
}
.black--bx-3 {
  border-right: 3px #000 solid !important;
  border-left: 3px #000 solid !important;
}
.black--ba-4 {
  border: 4px #000 solid !important;
}
.black--bt-4 {
  border-top: 4px #000 solid !important;
}
.black--br-4 {
  border-right: 4px #000 solid !important;
}
.black--bl-4 {
  border-left: 4px #000 solid !important;
}
.black--bb-4 {
  border-bottom: 4px #000 solid !important;
}
.black--by-4 {
  border-top: 4px #000 solid !important;
  border-bottom: 4px #000 solid !important;
}
.black--bx-4 {
  border-right: 4px #000 solid !important;
  border-left: 4px #000 solid !important;
}
.black--ba-5 {
  border: 5px #000 solid !important;
}
.black--bt-5 {
  border-top: 5px #000 solid !important;
}
.black--br-5 {
  border-right: 5px #000 solid !important;
}
.black--bl-5 {
  border-left: 5px #000 solid !important;
}
.black--bb-5 {
  border-bottom: 5px #000 solid !important;
}
.black--by-5 {
  border-top: 5px #000 solid !important;
  border-bottom: 5px #000 solid !important;
}
.black--bx-5 {
  border-right: 5px #000 solid !important;
  border-left: 5px #000 solid !important;
}
.black--ba-6 {
  border: 6px #000 solid !important;
}
.black--bt-6 {
  border-top: 6px #000 solid !important;
}
.black--br-6 {
  border-right: 6px #000 solid !important;
}
.black--bl-6 {
  border-left: 6px #000 solid !important;
}
.black--bb-6 {
  border-bottom: 6px #000 solid !important;
}
.black--by-6 {
  border-top: 6px #000 solid !important;
  border-bottom: 6px #000 solid !important;
}
.black--bx-6 {
  border-right: 6px #000 solid !important;
  border-left: 6px #000 solid !important;
}
.black--ba-7 {
  border: 7px #000 solid !important;
}
.black--bt-7 {
  border-top: 7px #000 solid !important;
}
.black--br-7 {
  border-right: 7px #000 solid !important;
}
.black--bl-7 {
  border-left: 7px #000 solid !important;
}
.black--bb-7 {
  border-bottom: 7px #000 solid !important;
}
.black--by-7 {
  border-top: 7px #000 solid !important;
  border-bottom: 7px #000 solid !important;
}
.black--bx-7 {
  border-right: 7px #000 solid !important;
  border-left: 7px #000 solid !important;
}
.black--ba-8 {
  border: 8px #000 solid !important;
}
.black--bt-8 {
  border-top: 8px #000 solid !important;
}
.black--br-8 {
  border-right: 8px #000 solid !important;
}
.black--bl-8 {
  border-left: 8px #000 solid !important;
}
.black--bb-8 {
  border-bottom: 8px #000 solid !important;
}
.black--by-8 {
  border-top: 8px #000 solid !important;
  border-bottom: 8px #000 solid !important;
}
.black--bx-8 {
  border-right: 8px #000 solid !important;
  border-left: 8px #000 solid !important;
}
.black--ba-9 {
  border: 9px #000 solid !important;
}
.black--bt-9 {
  border-top: 9px #000 solid !important;
}
.black--br-9 {
  border-right: 9px #000 solid !important;
}
.black--bl-9 {
  border-left: 9px #000 solid !important;
}
.black--bb-9 {
  border-bottom: 9px #000 solid !important;
}
.black--by-9 {
  border-top: 9px #000 solid !important;
  border-bottom: 9px #000 solid !important;
}
.black--bx-9 {
  border-right: 9px #000 solid !important;
  border-left: 9px #000 solid !important;
}
.black--ba-10 {
  border: 10px #000 solid !important;
}
.black--bt-10 {
  border-top: 10px #000 solid !important;
}
.black--br-10 {
  border-right: 10px #000 solid !important;
}
.black--bl-10 {
  border-left: 10px #000 solid !important;
}
.black--bb-10 {
  border-bottom: 10px #000 solid !important;
}
.black--by-10 {
  border-top: 10px #000 solid !important;
  border-bottom: 10px #000 solid !important;
}
.black--bx-10 {
  border-right: 10px #000 solid !important;
  border-left: 10px #000 solid !important;
}
.black--ba-11 {
  border: 11px #000 solid !important;
}
.black--bt-11 {
  border-top: 11px #000 solid !important;
}
.black--br-11 {
  border-right: 11px #000 solid !important;
}
.black--bl-11 {
  border-left: 11px #000 solid !important;
}
.black--bb-11 {
  border-bottom: 11px #000 solid !important;
}
.black--by-11 {
  border-top: 11px #000 solid !important;
  border-bottom: 11px #000 solid !important;
}
.black--bx-11 {
  border-right: 11px #000 solid !important;
  border-left: 11px #000 solid !important;
}
.black--ba-12 {
  border: 12px #000 solid !important;
}
.black--bt-12 {
  border-top: 12px #000 solid !important;
}
.black--br-12 {
  border-right: 12px #000 solid !important;
}
.black--bl-12 {
  border-left: 12px #000 solid !important;
}
.black--bb-12 {
  border-bottom: 12px #000 solid !important;
}
.black--by-12 {
  border-top: 12px #000 solid !important;
  border-bottom: 12px #000 solid !important;
}
.black--bx-12 {
  border-right: 12px #000 solid !important;
  border-left: 12px #000 solid !important;
}
.black--ba-13 {
  border: 13px #000 solid !important;
}
.black--bt-13 {
  border-top: 13px #000 solid !important;
}
.black--br-13 {
  border-right: 13px #000 solid !important;
}
.black--bl-13 {
  border-left: 13px #000 solid !important;
}
.black--bb-13 {
  border-bottom: 13px #000 solid !important;
}
.black--by-13 {
  border-top: 13px #000 solid !important;
  border-bottom: 13px #000 solid !important;
}
.black--bx-13 {
  border-right: 13px #000 solid !important;
  border-left: 13px #000 solid !important;
}
.black--ba-14 {
  border: 14px #000 solid !important;
}
.black--bt-14 {
  border-top: 14px #000 solid !important;
}
.black--br-14 {
  border-right: 14px #000 solid !important;
}
.black--bl-14 {
  border-left: 14px #000 solid !important;
}
.black--bb-14 {
  border-bottom: 14px #000 solid !important;
}
.black--by-14 {
  border-top: 14px #000 solid !important;
  border-bottom: 14px #000 solid !important;
}
.black--bx-14 {
  border-right: 14px #000 solid !important;
  border-left: 14px #000 solid !important;
}
.black--ba-15 {
  border: 15px #000 solid !important;
}
.black--bt-15 {
  border-top: 15px #000 solid !important;
}
.black--br-15 {
  border-right: 15px #000 solid !important;
}
.black--bl-15 {
  border-left: 15px #000 solid !important;
}
.black--bb-15 {
  border-bottom: 15px #000 solid !important;
}
.black--by-15 {
  border-top: 15px #000 solid !important;
  border-bottom: 15px #000 solid !important;
}
.black--bx-15 {
  border-right: 15px #000 solid !important;
  border-left: 15px #000 solid !important;
}
.black--ba-16 {
  border: 16px #000 solid !important;
}
.black--bt-16 {
  border-top: 16px #000 solid !important;
}
.black--br-16 {
  border-right: 16px #000 solid !important;
}
.black--bl-16 {
  border-left: 16px #000 solid !important;
}
.black--bb-16 {
  border-bottom: 16px #000 solid !important;
}
.black--by-16 {
  border-top: 16px #000 solid !important;
  border-bottom: 16px #000 solid !important;
}
.black--bx-16 {
  border-right: 16px #000 solid !important;
  border-left: 16px #000 solid !important;
}
.black--ba-17 {
  border: 17px #000 solid !important;
}
.black--bt-17 {
  border-top: 17px #000 solid !important;
}
.black--br-17 {
  border-right: 17px #000 solid !important;
}
.black--bl-17 {
  border-left: 17px #000 solid !important;
}
.black--bb-17 {
  border-bottom: 17px #000 solid !important;
}
.black--by-17 {
  border-top: 17px #000 solid !important;
  border-bottom: 17px #000 solid !important;
}
.black--bx-17 {
  border-right: 17px #000 solid !important;
  border-left: 17px #000 solid !important;
}
.black--ba-18 {
  border: 18px #000 solid !important;
}
.black--bt-18 {
  border-top: 18px #000 solid !important;
}
.black--br-18 {
  border-right: 18px #000 solid !important;
}
.black--bl-18 {
  border-left: 18px #000 solid !important;
}
.black--bb-18 {
  border-bottom: 18px #000 solid !important;
}
.black--by-18 {
  border-top: 18px #000 solid !important;
  border-bottom: 18px #000 solid !important;
}
.black--bx-18 {
  border-right: 18px #000 solid !important;
  border-left: 18px #000 solid !important;
}
.black--ba-19 {
  border: 19px #000 solid !important;
}
.black--bt-19 {
  border-top: 19px #000 solid !important;
}
.black--br-19 {
  border-right: 19px #000 solid !important;
}
.black--bl-19 {
  border-left: 19px #000 solid !important;
}
.black--bb-19 {
  border-bottom: 19px #000 solid !important;
}
.black--by-19 {
  border-top: 19px #000 solid !important;
  border-bottom: 19px #000 solid !important;
}
.black--bx-19 {
  border-right: 19px #000 solid !important;
  border-left: 19px #000 solid !important;
}
.black--ba-20 {
  border: 20px #000 solid !important;
}
.black--bt-20 {
  border-top: 20px #000 solid !important;
}
.black--br-20 {
  border-right: 20px #000 solid !important;
}
.black--bl-20 {
  border-left: 20px #000 solid !important;
}
.black--bb-20 {
  border-bottom: 20px #000 solid !important;
}
.black--by-20 {
  border-top: 20px #000 solid !important;
  border-bottom: 20px #000 solid !important;
}
.black--bx-20 {
  border-right: 20px #000 solid !important;
  border-left: 20px #000 solid !important;
}
.black--ba-21 {
  border: 21px #000 solid !important;
}
.black--bt-21 {
  border-top: 21px #000 solid !important;
}
.black--br-21 {
  border-right: 21px #000 solid !important;
}
.black--bl-21 {
  border-left: 21px #000 solid !important;
}
.black--bb-21 {
  border-bottom: 21px #000 solid !important;
}
.black--by-21 {
  border-top: 21px #000 solid !important;
  border-bottom: 21px #000 solid !important;
}
.black--bx-21 {
  border-right: 21px #000 solid !important;
  border-left: 21px #000 solid !important;
}
.black--ba-22 {
  border: 22px #000 solid !important;
}
.black--bt-22 {
  border-top: 22px #000 solid !important;
}
.black--br-22 {
  border-right: 22px #000 solid !important;
}
.black--bl-22 {
  border-left: 22px #000 solid !important;
}
.black--bb-22 {
  border-bottom: 22px #000 solid !important;
}
.black--by-22 {
  border-top: 22px #000 solid !important;
  border-bottom: 22px #000 solid !important;
}
.black--bx-22 {
  border-right: 22px #000 solid !important;
  border-left: 22px #000 solid !important;
}
.black--ba-23 {
  border: 23px #000 solid !important;
}
.black--bt-23 {
  border-top: 23px #000 solid !important;
}
.black--br-23 {
  border-right: 23px #000 solid !important;
}
.black--bl-23 {
  border-left: 23px #000 solid !important;
}
.black--bb-23 {
  border-bottom: 23px #000 solid !important;
}
.black--by-23 {
  border-top: 23px #000 solid !important;
  border-bottom: 23px #000 solid !important;
}
.black--bx-23 {
  border-right: 23px #000 solid !important;
  border-left: 23px #000 solid !important;
}
.black--ba-24 {
  border: 24px #000 solid !important;
}
.black--bt-24 {
  border-top: 24px #000 solid !important;
}
.black--br-24 {
  border-right: 24px #000 solid !important;
}
.black--bl-24 {
  border-left: 24px #000 solid !important;
}
.black--bb-24 {
  border-bottom: 24px #000 solid !important;
}
.black--by-24 {
  border-top: 24px #000 solid !important;
  border-bottom: 24px #000 solid !important;
}
.black--bx-24 {
  border-right: 24px #000 solid !important;
  border-left: 24px #000 solid !important;
}
.black--ba-25 {
  border: 25px #000 solid !important;
}
.black--bt-25 {
  border-top: 25px #000 solid !important;
}
.black--br-25 {
  border-right: 25px #000 solid !important;
}
.black--bl-25 {
  border-left: 25px #000 solid !important;
}
.black--bb-25 {
  border-bottom: 25px #000 solid !important;
}
.black--by-25 {
  border-top: 25px #000 solid !important;
  border-bottom: 25px #000 solid !important;
}
.black--bx-25 {
  border-right: 25px #000 solid !important;
  border-left: 25px #000 solid !important;
}
.black--ba-26 {
  border: 26px #000 solid !important;
}
.black--bt-26 {
  border-top: 26px #000 solid !important;
}
.black--br-26 {
  border-right: 26px #000 solid !important;
}
.black--bl-26 {
  border-left: 26px #000 solid !important;
}
.black--bb-26 {
  border-bottom: 26px #000 solid !important;
}
.black--by-26 {
  border-top: 26px #000 solid !important;
  border-bottom: 26px #000 solid !important;
}
.black--bx-26 {
  border-right: 26px #000 solid !important;
  border-left: 26px #000 solid !important;
}
.black--ba-27 {
  border: 27px #000 solid !important;
}
.black--bt-27 {
  border-top: 27px #000 solid !important;
}
.black--br-27 {
  border-right: 27px #000 solid !important;
}
.black--bl-27 {
  border-left: 27px #000 solid !important;
}
.black--bb-27 {
  border-bottom: 27px #000 solid !important;
}
.black--by-27 {
  border-top: 27px #000 solid !important;
  border-bottom: 27px #000 solid !important;
}
.black--bx-27 {
  border-right: 27px #000 solid !important;
  border-left: 27px #000 solid !important;
}
.black--ba-28 {
  border: 28px #000 solid !important;
}
.black--bt-28 {
  border-top: 28px #000 solid !important;
}
.black--br-28 {
  border-right: 28px #000 solid !important;
}
.black--bl-28 {
  border-left: 28px #000 solid !important;
}
.black--bb-28 {
  border-bottom: 28px #000 solid !important;
}
.black--by-28 {
  border-top: 28px #000 solid !important;
  border-bottom: 28px #000 solid !important;
}
.black--bx-28 {
  border-right: 28px #000 solid !important;
  border-left: 28px #000 solid !important;
}
.black--ba-29 {
  border: 29px #000 solid !important;
}
.black--bt-29 {
  border-top: 29px #000 solid !important;
}
.black--br-29 {
  border-right: 29px #000 solid !important;
}
.black--bl-29 {
  border-left: 29px #000 solid !important;
}
.black--bb-29 {
  border-bottom: 29px #000 solid !important;
}
.black--by-29 {
  border-top: 29px #000 solid !important;
  border-bottom: 29px #000 solid !important;
}
.black--bx-29 {
  border-right: 29px #000 solid !important;
  border-left: 29px #000 solid !important;
}
.black--ba-30 {
  border: 30px #000 solid !important;
}
.black--bt-30 {
  border-top: 30px #000 solid !important;
}
.black--br-30 {
  border-right: 30px #000 solid !important;
}
.black--bl-30 {
  border-left: 30px #000 solid !important;
}
.black--bb-30 {
  border-bottom: 30px #000 solid !important;
}
.black--by-30 {
  border-top: 30px #000 solid !important;
  border-bottom: 30px #000 solid !important;
}
.black--bx-30 {
  border-right: 30px #000 solid !important;
  border-left: 30px #000 solid !important;
}
.black--ba-31 {
  border: 31px #000 solid !important;
}
.black--bt-31 {
  border-top: 31px #000 solid !important;
}
.black--br-31 {
  border-right: 31px #000 solid !important;
}
.black--bl-31 {
  border-left: 31px #000 solid !important;
}
.black--bb-31 {
  border-bottom: 31px #000 solid !important;
}
.black--by-31 {
  border-top: 31px #000 solid !important;
  border-bottom: 31px #000 solid !important;
}
.black--bx-31 {
  border-right: 31px #000 solid !important;
  border-left: 31px #000 solid !important;
}
.black--ba-32 {
  border: 32px #000 solid !important;
}
.black--bt-32 {
  border-top: 32px #000 solid !important;
}
.black--br-32 {
  border-right: 32px #000 solid !important;
}
.black--bl-32 {
  border-left: 32px #000 solid !important;
}
.black--bb-32 {
  border-bottom: 32px #000 solid !important;
}
.black--by-32 {
  border-top: 32px #000 solid !important;
  border-bottom: 32px #000 solid !important;
}
.black--bx-32 {
  border-right: 32px #000 solid !important;
  border-left: 32px #000 solid !important;
}
.black--ba-33 {
  border: 33px #000 solid !important;
}
.black--bt-33 {
  border-top: 33px #000 solid !important;
}
.black--br-33 {
  border-right: 33px #000 solid !important;
}
.black--bl-33 {
  border-left: 33px #000 solid !important;
}
.black--bb-33 {
  border-bottom: 33px #000 solid !important;
}
.black--by-33 {
  border-top: 33px #000 solid !important;
  border-bottom: 33px #000 solid !important;
}
.black--bx-33 {
  border-right: 33px #000 solid !important;
  border-left: 33px #000 solid !important;
}
.black--ba-34 {
  border: 34px #000 solid !important;
}
.black--bt-34 {
  border-top: 34px #000 solid !important;
}
.black--br-34 {
  border-right: 34px #000 solid !important;
}
.black--bl-34 {
  border-left: 34px #000 solid !important;
}
.black--bb-34 {
  border-bottom: 34px #000 solid !important;
}
.black--by-34 {
  border-top: 34px #000 solid !important;
  border-bottom: 34px #000 solid !important;
}
.black--bx-34 {
  border-right: 34px #000 solid !important;
  border-left: 34px #000 solid !important;
}
.black--ba-35 {
  border: 35px #000 solid !important;
}
.black--bt-35 {
  border-top: 35px #000 solid !important;
}
.black--br-35 {
  border-right: 35px #000 solid !important;
}
.black--bl-35 {
  border-left: 35px #000 solid !important;
}
.black--bb-35 {
  border-bottom: 35px #000 solid !important;
}
.black--by-35 {
  border-top: 35px #000 solid !important;
  border-bottom: 35px #000 solid !important;
}
.black--bx-35 {
  border-right: 35px #000 solid !important;
  border-left: 35px #000 solid !important;
}
.black--ba-36 {
  border: 36px #000 solid !important;
}
.black--bt-36 {
  border-top: 36px #000 solid !important;
}
.black--br-36 {
  border-right: 36px #000 solid !important;
}
.black--bl-36 {
  border-left: 36px #000 solid !important;
}
.black--bb-36 {
  border-bottom: 36px #000 solid !important;
}
.black--by-36 {
  border-top: 36px #000 solid !important;
  border-bottom: 36px #000 solid !important;
}
.black--bx-36 {
  border-right: 36px #000 solid !important;
  border-left: 36px #000 solid !important;
}
.black--ba-37 {
  border: 37px #000 solid !important;
}
.black--bt-37 {
  border-top: 37px #000 solid !important;
}
.black--br-37 {
  border-right: 37px #000 solid !important;
}
.black--bl-37 {
  border-left: 37px #000 solid !important;
}
.black--bb-37 {
  border-bottom: 37px #000 solid !important;
}
.black--by-37 {
  border-top: 37px #000 solid !important;
  border-bottom: 37px #000 solid !important;
}
.black--bx-37 {
  border-right: 37px #000 solid !important;
  border-left: 37px #000 solid !important;
}
.black--ba-38 {
  border: 38px #000 solid !important;
}
.black--bt-38 {
  border-top: 38px #000 solid !important;
}
.black--br-38 {
  border-right: 38px #000 solid !important;
}
.black--bl-38 {
  border-left: 38px #000 solid !important;
}
.black--bb-38 {
  border-bottom: 38px #000 solid !important;
}
.black--by-38 {
  border-top: 38px #000 solid !important;
  border-bottom: 38px #000 solid !important;
}
.black--bx-38 {
  border-right: 38px #000 solid !important;
  border-left: 38px #000 solid !important;
}
.black--ba-39 {
  border: 39px #000 solid !important;
}
.black--bt-39 {
  border-top: 39px #000 solid !important;
}
.black--br-39 {
  border-right: 39px #000 solid !important;
}
.black--bl-39 {
  border-left: 39px #000 solid !important;
}
.black--bb-39 {
  border-bottom: 39px #000 solid !important;
}
.black--by-39 {
  border-top: 39px #000 solid !important;
  border-bottom: 39px #000 solid !important;
}
.black--bx-39 {
  border-right: 39px #000 solid !important;
  border-left: 39px #000 solid !important;
}
.black--ba-40 {
  border: 40px #000 solid !important;
}
.black--bt-40 {
  border-top: 40px #000 solid !important;
}
.black--br-40 {
  border-right: 40px #000 solid !important;
}
.black--bl-40 {
  border-left: 40px #000 solid !important;
}
.black--bb-40 {
  border-bottom: 40px #000 solid !important;
}
.black--by-40 {
  border-top: 40px #000 solid !important;
  border-bottom: 40px #000 solid !important;
}
.black--bx-40 {
  border-right: 40px #000 solid !important;
  border-left: 40px #000 solid !important;
}
.black--ba-41 {
  border: 41px #000 solid !important;
}
.black--bt-41 {
  border-top: 41px #000 solid !important;
}
.black--br-41 {
  border-right: 41px #000 solid !important;
}
.black--bl-41 {
  border-left: 41px #000 solid !important;
}
.black--bb-41 {
  border-bottom: 41px #000 solid !important;
}
.black--by-41 {
  border-top: 41px #000 solid !important;
  border-bottom: 41px #000 solid !important;
}
.black--bx-41 {
  border-right: 41px #000 solid !important;
  border-left: 41px #000 solid !important;
}
.black--ba-42 {
  border: 42px #000 solid !important;
}
.black--bt-42 {
  border-top: 42px #000 solid !important;
}
.black--br-42 {
  border-right: 42px #000 solid !important;
}
.black--bl-42 {
  border-left: 42px #000 solid !important;
}
.black--bb-42 {
  border-bottom: 42px #000 solid !important;
}
.black--by-42 {
  border-top: 42px #000 solid !important;
  border-bottom: 42px #000 solid !important;
}
.black--bx-42 {
  border-right: 42px #000 solid !important;
  border-left: 42px #000 solid !important;
}
.black--ba-43 {
  border: 43px #000 solid !important;
}
.black--bt-43 {
  border-top: 43px #000 solid !important;
}
.black--br-43 {
  border-right: 43px #000 solid !important;
}
.black--bl-43 {
  border-left: 43px #000 solid !important;
}
.black--bb-43 {
  border-bottom: 43px #000 solid !important;
}
.black--by-43 {
  border-top: 43px #000 solid !important;
  border-bottom: 43px #000 solid !important;
}
.black--bx-43 {
  border-right: 43px #000 solid !important;
  border-left: 43px #000 solid !important;
}
.black--ba-44 {
  border: 44px #000 solid !important;
}
.black--bt-44 {
  border-top: 44px #000 solid !important;
}
.black--br-44 {
  border-right: 44px #000 solid !important;
}
.black--bl-44 {
  border-left: 44px #000 solid !important;
}
.black--bb-44 {
  border-bottom: 44px #000 solid !important;
}
.black--by-44 {
  border-top: 44px #000 solid !important;
  border-bottom: 44px #000 solid !important;
}
.black--bx-44 {
  border-right: 44px #000 solid !important;
  border-left: 44px #000 solid !important;
}
.black--ba-45 {
  border: 45px #000 solid !important;
}
.black--bt-45 {
  border-top: 45px #000 solid !important;
}
.black--br-45 {
  border-right: 45px #000 solid !important;
}
.black--bl-45 {
  border-left: 45px #000 solid !important;
}
.black--bb-45 {
  border-bottom: 45px #000 solid !important;
}
.black--by-45 {
  border-top: 45px #000 solid !important;
  border-bottom: 45px #000 solid !important;
}
.black--bx-45 {
  border-right: 45px #000 solid !important;
  border-left: 45px #000 solid !important;
}
.black--ba-46 {
  border: 46px #000 solid !important;
}
.black--bt-46 {
  border-top: 46px #000 solid !important;
}
.black--br-46 {
  border-right: 46px #000 solid !important;
}
.black--bl-46 {
  border-left: 46px #000 solid !important;
}
.black--bb-46 {
  border-bottom: 46px #000 solid !important;
}
.black--by-46 {
  border-top: 46px #000 solid !important;
  border-bottom: 46px #000 solid !important;
}
.black--bx-46 {
  border-right: 46px #000 solid !important;
  border-left: 46px #000 solid !important;
}
.black--ba-47 {
  border: 47px #000 solid !important;
}
.black--bt-47 {
  border-top: 47px #000 solid !important;
}
.black--br-47 {
  border-right: 47px #000 solid !important;
}
.black--bl-47 {
  border-left: 47px #000 solid !important;
}
.black--bb-47 {
  border-bottom: 47px #000 solid !important;
}
.black--by-47 {
  border-top: 47px #000 solid !important;
  border-bottom: 47px #000 solid !important;
}
.black--bx-47 {
  border-right: 47px #000 solid !important;
  border-left: 47px #000 solid !important;
}
.black--ba-48 {
  border: 48px #000 solid !important;
}
.black--bt-48 {
  border-top: 48px #000 solid !important;
}
.black--br-48 {
  border-right: 48px #000 solid !important;
}
.black--bl-48 {
  border-left: 48px #000 solid !important;
}
.black--bb-48 {
  border-bottom: 48px #000 solid !important;
}
.black--by-48 {
  border-top: 48px #000 solid !important;
  border-bottom: 48px #000 solid !important;
}
.black--bx-48 {
  border-right: 48px #000 solid !important;
  border-left: 48px #000 solid !important;
}
.black--ba-49 {
  border: 49px #000 solid !important;
}
.black--bt-49 {
  border-top: 49px #000 solid !important;
}
.black--br-49 {
  border-right: 49px #000 solid !important;
}
.black--bl-49 {
  border-left: 49px #000 solid !important;
}
.black--bb-49 {
  border-bottom: 49px #000 solid !important;
}
.black--by-49 {
  border-top: 49px #000 solid !important;
  border-bottom: 49px #000 solid !important;
}
.black--bx-49 {
  border-right: 49px #000 solid !important;
  border-left: 49px #000 solid !important;
}
.black--ba-50 {
  border: 50px #000 solid !important;
}
.black--bt-50 {
  border-top: 50px #000 solid !important;
}
.black--br-50 {
  border-right: 50px #000 solid !important;
}
.black--bl-50 {
  border-left: 50px #000 solid !important;
}
.black--bb-50 {
  border-bottom: 50px #000 solid !important;
}
.black--by-50 {
  border-top: 50px #000 solid !important;
  border-bottom: 50px #000 solid !important;
}
.black--bx-50 {
  border-right: 50px #000 solid !important;
  border-left: 50px #000 solid !important;
}
.black--ba-51 {
  border: 51px #000 solid !important;
}
.black--bt-51 {
  border-top: 51px #000 solid !important;
}
.black--br-51 {
  border-right: 51px #000 solid !important;
}
.black--bl-51 {
  border-left: 51px #000 solid !important;
}
.black--bb-51 {
  border-bottom: 51px #000 solid !important;
}
.black--by-51 {
  border-top: 51px #000 solid !important;
  border-bottom: 51px #000 solid !important;
}
.black--bx-51 {
  border-right: 51px #000 solid !important;
  border-left: 51px #000 solid !important;
}
.black--ba-52 {
  border: 52px #000 solid !important;
}
.black--bt-52 {
  border-top: 52px #000 solid !important;
}
.black--br-52 {
  border-right: 52px #000 solid !important;
}
.black--bl-52 {
  border-left: 52px #000 solid !important;
}
.black--bb-52 {
  border-bottom: 52px #000 solid !important;
}
.black--by-52 {
  border-top: 52px #000 solid !important;
  border-bottom: 52px #000 solid !important;
}
.black--bx-52 {
  border-right: 52px #000 solid !important;
  border-left: 52px #000 solid !important;
}
.black--ba-53 {
  border: 53px #000 solid !important;
}
.black--bt-53 {
  border-top: 53px #000 solid !important;
}
.black--br-53 {
  border-right: 53px #000 solid !important;
}
.black--bl-53 {
  border-left: 53px #000 solid !important;
}
.black--bb-53 {
  border-bottom: 53px #000 solid !important;
}
.black--by-53 {
  border-top: 53px #000 solid !important;
  border-bottom: 53px #000 solid !important;
}
.black--bx-53 {
  border-right: 53px #000 solid !important;
  border-left: 53px #000 solid !important;
}
.black--ba-54 {
  border: 54px #000 solid !important;
}
.black--bt-54 {
  border-top: 54px #000 solid !important;
}
.black--br-54 {
  border-right: 54px #000 solid !important;
}
.black--bl-54 {
  border-left: 54px #000 solid !important;
}
.black--bb-54 {
  border-bottom: 54px #000 solid !important;
}
.black--by-54 {
  border-top: 54px #000 solid !important;
  border-bottom: 54px #000 solid !important;
}
.black--bx-54 {
  border-right: 54px #000 solid !important;
  border-left: 54px #000 solid !important;
}
.black--ba-55 {
  border: 55px #000 solid !important;
}
.black--bt-55 {
  border-top: 55px #000 solid !important;
}
.black--br-55 {
  border-right: 55px #000 solid !important;
}
.black--bl-55 {
  border-left: 55px #000 solid !important;
}
.black--bb-55 {
  border-bottom: 55px #000 solid !important;
}
.black--by-55 {
  border-top: 55px #000 solid !important;
  border-bottom: 55px #000 solid !important;
}
.black--bx-55 {
  border-right: 55px #000 solid !important;
  border-left: 55px #000 solid !important;
}
.black--ba-56 {
  border: 56px #000 solid !important;
}
.black--bt-56 {
  border-top: 56px #000 solid !important;
}
.black--br-56 {
  border-right: 56px #000 solid !important;
}
.black--bl-56 {
  border-left: 56px #000 solid !important;
}
.black--bb-56 {
  border-bottom: 56px #000 solid !important;
}
.black--by-56 {
  border-top: 56px #000 solid !important;
  border-bottom: 56px #000 solid !important;
}
.black--bx-56 {
  border-right: 56px #000 solid !important;
  border-left: 56px #000 solid !important;
}
.black--ba-57 {
  border: 57px #000 solid !important;
}
.black--bt-57 {
  border-top: 57px #000 solid !important;
}
.black--br-57 {
  border-right: 57px #000 solid !important;
}
.black--bl-57 {
  border-left: 57px #000 solid !important;
}
.black--bb-57 {
  border-bottom: 57px #000 solid !important;
}
.black--by-57 {
  border-top: 57px #000 solid !important;
  border-bottom: 57px #000 solid !important;
}
.black--bx-57 {
  border-right: 57px #000 solid !important;
  border-left: 57px #000 solid !important;
}
.black--ba-58 {
  border: 58px #000 solid !important;
}
.black--bt-58 {
  border-top: 58px #000 solid !important;
}
.black--br-58 {
  border-right: 58px #000 solid !important;
}
.black--bl-58 {
  border-left: 58px #000 solid !important;
}
.black--bb-58 {
  border-bottom: 58px #000 solid !important;
}
.black--by-58 {
  border-top: 58px #000 solid !important;
  border-bottom: 58px #000 solid !important;
}
.black--bx-58 {
  border-right: 58px #000 solid !important;
  border-left: 58px #000 solid !important;
}
.black--ba-59 {
  border: 59px #000 solid !important;
}
.black--bt-59 {
  border-top: 59px #000 solid !important;
}
.black--br-59 {
  border-right: 59px #000 solid !important;
}
.black--bl-59 {
  border-left: 59px #000 solid !important;
}
.black--bb-59 {
  border-bottom: 59px #000 solid !important;
}
.black--by-59 {
  border-top: 59px #000 solid !important;
  border-bottom: 59px #000 solid !important;
}
.black--bx-59 {
  border-right: 59px #000 solid !important;
  border-left: 59px #000 solid !important;
}
.black--ba-60 {
  border: 60px #000 solid !important;
}
.black--bt-60 {
  border-top: 60px #000 solid !important;
}
.black--br-60 {
  border-right: 60px #000 solid !important;
}
.black--bl-60 {
  border-left: 60px #000 solid !important;
}
.black--bb-60 {
  border-bottom: 60px #000 solid !important;
}
.black--by-60 {
  border-top: 60px #000 solid !important;
  border-bottom: 60px #000 solid !important;
}
.black--bx-60 {
  border-right: 60px #000 solid !important;
  border-left: 60px #000 solid !important;
}
.black--ba-61 {
  border: 61px #000 solid !important;
}
.black--bt-61 {
  border-top: 61px #000 solid !important;
}
.black--br-61 {
  border-right: 61px #000 solid !important;
}
.black--bl-61 {
  border-left: 61px #000 solid !important;
}
.black--bb-61 {
  border-bottom: 61px #000 solid !important;
}
.black--by-61 {
  border-top: 61px #000 solid !important;
  border-bottom: 61px #000 solid !important;
}
.black--bx-61 {
  border-right: 61px #000 solid !important;
  border-left: 61px #000 solid !important;
}
.black--ba-62 {
  border: 62px #000 solid !important;
}
.black--bt-62 {
  border-top: 62px #000 solid !important;
}
.black--br-62 {
  border-right: 62px #000 solid !important;
}
.black--bl-62 {
  border-left: 62px #000 solid !important;
}
.black--bb-62 {
  border-bottom: 62px #000 solid !important;
}
.black--by-62 {
  border-top: 62px #000 solid !important;
  border-bottom: 62px #000 solid !important;
}
.black--bx-62 {
  border-right: 62px #000 solid !important;
  border-left: 62px #000 solid !important;
}
.black--ba-63 {
  border: 63px #000 solid !important;
}
.black--bt-63 {
  border-top: 63px #000 solid !important;
}
.black--br-63 {
  border-right: 63px #000 solid !important;
}
.black--bl-63 {
  border-left: 63px #000 solid !important;
}
.black--bb-63 {
  border-bottom: 63px #000 solid !important;
}
.black--by-63 {
  border-top: 63px #000 solid !important;
  border-bottom: 63px #000 solid !important;
}
.black--bx-63 {
  border-right: 63px #000 solid !important;
  border-left: 63px #000 solid !important;
}
.black--ba-64 {
  border: 64px #000 solid !important;
}
.black--bt-64 {
  border-top: 64px #000 solid !important;
}
.black--br-64 {
  border-right: 64px #000 solid !important;
}
.black--bl-64 {
  border-left: 64px #000 solid !important;
}
.black--bb-64 {
  border-bottom: 64px #000 solid !important;
}
.black--by-64 {
  border-top: 64px #000 solid !important;
  border-bottom: 64px #000 solid !important;
}
.black--bx-64 {
  border-right: 64px #000 solid !important;
  border-left: 64px #000 solid !important;
}
.black--ba-65 {
  border: 65px #000 solid !important;
}
.black--bt-65 {
  border-top: 65px #000 solid !important;
}
.black--br-65 {
  border-right: 65px #000 solid !important;
}
.black--bl-65 {
  border-left: 65px #000 solid !important;
}
.black--bb-65 {
  border-bottom: 65px #000 solid !important;
}
.black--by-65 {
  border-top: 65px #000 solid !important;
  border-bottom: 65px #000 solid !important;
}
.black--bx-65 {
  border-right: 65px #000 solid !important;
  border-left: 65px #000 solid !important;
}
.black--ba-66 {
  border: 66px #000 solid !important;
}
.black--bt-66 {
  border-top: 66px #000 solid !important;
}
.black--br-66 {
  border-right: 66px #000 solid !important;
}
.black--bl-66 {
  border-left: 66px #000 solid !important;
}
.black--bb-66 {
  border-bottom: 66px #000 solid !important;
}
.black--by-66 {
  border-top: 66px #000 solid !important;
  border-bottom: 66px #000 solid !important;
}
.black--bx-66 {
  border-right: 66px #000 solid !important;
  border-left: 66px #000 solid !important;
}
.black--ba-67 {
  border: 67px #000 solid !important;
}
.black--bt-67 {
  border-top: 67px #000 solid !important;
}
.black--br-67 {
  border-right: 67px #000 solid !important;
}
.black--bl-67 {
  border-left: 67px #000 solid !important;
}
.black--bb-67 {
  border-bottom: 67px #000 solid !important;
}
.black--by-67 {
  border-top: 67px #000 solid !important;
  border-bottom: 67px #000 solid !important;
}
.black--bx-67 {
  border-right: 67px #000 solid !important;
  border-left: 67px #000 solid !important;
}
.black--ba-68 {
  border: 68px #000 solid !important;
}
.black--bt-68 {
  border-top: 68px #000 solid !important;
}
.black--br-68 {
  border-right: 68px #000 solid !important;
}
.black--bl-68 {
  border-left: 68px #000 solid !important;
}
.black--bb-68 {
  border-bottom: 68px #000 solid !important;
}
.black--by-68 {
  border-top: 68px #000 solid !important;
  border-bottom: 68px #000 solid !important;
}
.black--bx-68 {
  border-right: 68px #000 solid !important;
  border-left: 68px #000 solid !important;
}
.black--ba-69 {
  border: 69px #000 solid !important;
}
.black--bt-69 {
  border-top: 69px #000 solid !important;
}
.black--br-69 {
  border-right: 69px #000 solid !important;
}
.black--bl-69 {
  border-left: 69px #000 solid !important;
}
.black--bb-69 {
  border-bottom: 69px #000 solid !important;
}
.black--by-69 {
  border-top: 69px #000 solid !important;
  border-bottom: 69px #000 solid !important;
}
.black--bx-69 {
  border-right: 69px #000 solid !important;
  border-left: 69px #000 solid !important;
}
.black--ba-70 {
  border: 70px #000 solid !important;
}
.black--bt-70 {
  border-top: 70px #000 solid !important;
}
.black--br-70 {
  border-right: 70px #000 solid !important;
}
.black--bl-70 {
  border-left: 70px #000 solid !important;
}
.black--bb-70 {
  border-bottom: 70px #000 solid !important;
}
.black--by-70 {
  border-top: 70px #000 solid !important;
  border-bottom: 70px #000 solid !important;
}
.black--bx-70 {
  border-right: 70px #000 solid !important;
  border-left: 70px #000 solid !important;
}
.black--ba-71 {
  border: 71px #000 solid !important;
}
.black--bt-71 {
  border-top: 71px #000 solid !important;
}
.black--br-71 {
  border-right: 71px #000 solid !important;
}
.black--bl-71 {
  border-left: 71px #000 solid !important;
}
.black--bb-71 {
  border-bottom: 71px #000 solid !important;
}
.black--by-71 {
  border-top: 71px #000 solid !important;
  border-bottom: 71px #000 solid !important;
}
.black--bx-71 {
  border-right: 71px #000 solid !important;
  border-left: 71px #000 solid !important;
}
.black--ba-72 {
  border: 72px #000 solid !important;
}
.black--bt-72 {
  border-top: 72px #000 solid !important;
}
.black--br-72 {
  border-right: 72px #000 solid !important;
}
.black--bl-72 {
  border-left: 72px #000 solid !important;
}
.black--bb-72 {
  border-bottom: 72px #000 solid !important;
}
.black--by-72 {
  border-top: 72px #000 solid !important;
  border-bottom: 72px #000 solid !important;
}
.black--bx-72 {
  border-right: 72px #000 solid !important;
  border-left: 72px #000 solid !important;
}
.black--ba-73 {
  border: 73px #000 solid !important;
}
.black--bt-73 {
  border-top: 73px #000 solid !important;
}
.black--br-73 {
  border-right: 73px #000 solid !important;
}
.black--bl-73 {
  border-left: 73px #000 solid !important;
}
.black--bb-73 {
  border-bottom: 73px #000 solid !important;
}
.black--by-73 {
  border-top: 73px #000 solid !important;
  border-bottom: 73px #000 solid !important;
}
.black--bx-73 {
  border-right: 73px #000 solid !important;
  border-left: 73px #000 solid !important;
}
.black--ba-74 {
  border: 74px #000 solid !important;
}
.black--bt-74 {
  border-top: 74px #000 solid !important;
}
.black--br-74 {
  border-right: 74px #000 solid !important;
}
.black--bl-74 {
  border-left: 74px #000 solid !important;
}
.black--bb-74 {
  border-bottom: 74px #000 solid !important;
}
.black--by-74 {
  border-top: 74px #000 solid !important;
  border-bottom: 74px #000 solid !important;
}
.black--bx-74 {
  border-right: 74px #000 solid !important;
  border-left: 74px #000 solid !important;
}
.black--ba-75 {
  border: 75px #000 solid !important;
}
.black--bt-75 {
  border-top: 75px #000 solid !important;
}
.black--br-75 {
  border-right: 75px #000 solid !important;
}
.black--bl-75 {
  border-left: 75px #000 solid !important;
}
.black--bb-75 {
  border-bottom: 75px #000 solid !important;
}
.black--by-75 {
  border-top: 75px #000 solid !important;
  border-bottom: 75px #000 solid !important;
}
.black--bx-75 {
  border-right: 75px #000 solid !important;
  border-left: 75px #000 solid !important;
}
.black--ba-76 {
  border: 76px #000 solid !important;
}
.black--bt-76 {
  border-top: 76px #000 solid !important;
}
.black--br-76 {
  border-right: 76px #000 solid !important;
}
.black--bl-76 {
  border-left: 76px #000 solid !important;
}
.black--bb-76 {
  border-bottom: 76px #000 solid !important;
}
.black--by-76 {
  border-top: 76px #000 solid !important;
  border-bottom: 76px #000 solid !important;
}
.black--bx-76 {
  border-right: 76px #000 solid !important;
  border-left: 76px #000 solid !important;
}
.black--ba-77 {
  border: 77px #000 solid !important;
}
.black--bt-77 {
  border-top: 77px #000 solid !important;
}
.black--br-77 {
  border-right: 77px #000 solid !important;
}
.black--bl-77 {
  border-left: 77px #000 solid !important;
}
.black--bb-77 {
  border-bottom: 77px #000 solid !important;
}
.black--by-77 {
  border-top: 77px #000 solid !important;
  border-bottom: 77px #000 solid !important;
}
.black--bx-77 {
  border-right: 77px #000 solid !important;
  border-left: 77px #000 solid !important;
}
.black--ba-78 {
  border: 78px #000 solid !important;
}
.black--bt-78 {
  border-top: 78px #000 solid !important;
}
.black--br-78 {
  border-right: 78px #000 solid !important;
}
.black--bl-78 {
  border-left: 78px #000 solid !important;
}
.black--bb-78 {
  border-bottom: 78px #000 solid !important;
}
.black--by-78 {
  border-top: 78px #000 solid !important;
  border-bottom: 78px #000 solid !important;
}
.black--bx-78 {
  border-right: 78px #000 solid !important;
  border-left: 78px #000 solid !important;
}
.black--ba-79 {
  border: 79px #000 solid !important;
}
.black--bt-79 {
  border-top: 79px #000 solid !important;
}
.black--br-79 {
  border-right: 79px #000 solid !important;
}
.black--bl-79 {
  border-left: 79px #000 solid !important;
}
.black--bb-79 {
  border-bottom: 79px #000 solid !important;
}
.black--by-79 {
  border-top: 79px #000 solid !important;
  border-bottom: 79px #000 solid !important;
}
.black--bx-79 {
  border-right: 79px #000 solid !important;
  border-left: 79px #000 solid !important;
}
.black--ba-80 {
  border: 80px #000 solid !important;
}
.black--bt-80 {
  border-top: 80px #000 solid !important;
}
.black--br-80 {
  border-right: 80px #000 solid !important;
}
.black--bl-80 {
  border-left: 80px #000 solid !important;
}
.black--bb-80 {
  border-bottom: 80px #000 solid !important;
}
.black--by-80 {
  border-top: 80px #000 solid !important;
  border-bottom: 80px #000 solid !important;
}
.black--bx-80 {
  border-right: 80px #000 solid !important;
  border-left: 80px #000 solid !important;
}
.black--ba-81 {
  border: 81px #000 solid !important;
}
.black--bt-81 {
  border-top: 81px #000 solid !important;
}
.black--br-81 {
  border-right: 81px #000 solid !important;
}
.black--bl-81 {
  border-left: 81px #000 solid !important;
}
.black--bb-81 {
  border-bottom: 81px #000 solid !important;
}
.black--by-81 {
  border-top: 81px #000 solid !important;
  border-bottom: 81px #000 solid !important;
}
.black--bx-81 {
  border-right: 81px #000 solid !important;
  border-left: 81px #000 solid !important;
}
.black--ba-82 {
  border: 82px #000 solid !important;
}
.black--bt-82 {
  border-top: 82px #000 solid !important;
}
.black--br-82 {
  border-right: 82px #000 solid !important;
}
.black--bl-82 {
  border-left: 82px #000 solid !important;
}
.black--bb-82 {
  border-bottom: 82px #000 solid !important;
}
.black--by-82 {
  border-top: 82px #000 solid !important;
  border-bottom: 82px #000 solid !important;
}
.black--bx-82 {
  border-right: 82px #000 solid !important;
  border-left: 82px #000 solid !important;
}
.black--ba-83 {
  border: 83px #000 solid !important;
}
.black--bt-83 {
  border-top: 83px #000 solid !important;
}
.black--br-83 {
  border-right: 83px #000 solid !important;
}
.black--bl-83 {
  border-left: 83px #000 solid !important;
}
.black--bb-83 {
  border-bottom: 83px #000 solid !important;
}
.black--by-83 {
  border-top: 83px #000 solid !important;
  border-bottom: 83px #000 solid !important;
}
.black--bx-83 {
  border-right: 83px #000 solid !important;
  border-left: 83px #000 solid !important;
}
.black--ba-84 {
  border: 84px #000 solid !important;
}
.black--bt-84 {
  border-top: 84px #000 solid !important;
}
.black--br-84 {
  border-right: 84px #000 solid !important;
}
.black--bl-84 {
  border-left: 84px #000 solid !important;
}
.black--bb-84 {
  border-bottom: 84px #000 solid !important;
}
.black--by-84 {
  border-top: 84px #000 solid !important;
  border-bottom: 84px #000 solid !important;
}
.black--bx-84 {
  border-right: 84px #000 solid !important;
  border-left: 84px #000 solid !important;
}
.black--ba-85 {
  border: 85px #000 solid !important;
}
.black--bt-85 {
  border-top: 85px #000 solid !important;
}
.black--br-85 {
  border-right: 85px #000 solid !important;
}
.black--bl-85 {
  border-left: 85px #000 solid !important;
}
.black--bb-85 {
  border-bottom: 85px #000 solid !important;
}
.black--by-85 {
  border-top: 85px #000 solid !important;
  border-bottom: 85px #000 solid !important;
}
.black--bx-85 {
  border-right: 85px #000 solid !important;
  border-left: 85px #000 solid !important;
}
.black--ba-86 {
  border: 86px #000 solid !important;
}
.black--bt-86 {
  border-top: 86px #000 solid !important;
}
.black--br-86 {
  border-right: 86px #000 solid !important;
}
.black--bl-86 {
  border-left: 86px #000 solid !important;
}
.black--bb-86 {
  border-bottom: 86px #000 solid !important;
}
.black--by-86 {
  border-top: 86px #000 solid !important;
  border-bottom: 86px #000 solid !important;
}
.black--bx-86 {
  border-right: 86px #000 solid !important;
  border-left: 86px #000 solid !important;
}
.black--ba-87 {
  border: 87px #000 solid !important;
}
.black--bt-87 {
  border-top: 87px #000 solid !important;
}
.black--br-87 {
  border-right: 87px #000 solid !important;
}
.black--bl-87 {
  border-left: 87px #000 solid !important;
}
.black--bb-87 {
  border-bottom: 87px #000 solid !important;
}
.black--by-87 {
  border-top: 87px #000 solid !important;
  border-bottom: 87px #000 solid !important;
}
.black--bx-87 {
  border-right: 87px #000 solid !important;
  border-left: 87px #000 solid !important;
}
.black--ba-88 {
  border: 88px #000 solid !important;
}
.black--bt-88 {
  border-top: 88px #000 solid !important;
}
.black--br-88 {
  border-right: 88px #000 solid !important;
}
.black--bl-88 {
  border-left: 88px #000 solid !important;
}
.black--bb-88 {
  border-bottom: 88px #000 solid !important;
}
.black--by-88 {
  border-top: 88px #000 solid !important;
  border-bottom: 88px #000 solid !important;
}
.black--bx-88 {
  border-right: 88px #000 solid !important;
  border-left: 88px #000 solid !important;
}
.black--ba-89 {
  border: 89px #000 solid !important;
}
.black--bt-89 {
  border-top: 89px #000 solid !important;
}
.black--br-89 {
  border-right: 89px #000 solid !important;
}
.black--bl-89 {
  border-left: 89px #000 solid !important;
}
.black--bb-89 {
  border-bottom: 89px #000 solid !important;
}
.black--by-89 {
  border-top: 89px #000 solid !important;
  border-bottom: 89px #000 solid !important;
}
.black--bx-89 {
  border-right: 89px #000 solid !important;
  border-left: 89px #000 solid !important;
}
.black--ba-90 {
  border: 90px #000 solid !important;
}
.black--bt-90 {
  border-top: 90px #000 solid !important;
}
.black--br-90 {
  border-right: 90px #000 solid !important;
}
.black--bl-90 {
  border-left: 90px #000 solid !important;
}
.black--bb-90 {
  border-bottom: 90px #000 solid !important;
}
.black--by-90 {
  border-top: 90px #000 solid !important;
  border-bottom: 90px #000 solid !important;
}
.black--bx-90 {
  border-right: 90px #000 solid !important;
  border-left: 90px #000 solid !important;
}
.black--ba-91 {
  border: 91px #000 solid !important;
}
.black--bt-91 {
  border-top: 91px #000 solid !important;
}
.black--br-91 {
  border-right: 91px #000 solid !important;
}
.black--bl-91 {
  border-left: 91px #000 solid !important;
}
.black--bb-91 {
  border-bottom: 91px #000 solid !important;
}
.black--by-91 {
  border-top: 91px #000 solid !important;
  border-bottom: 91px #000 solid !important;
}
.black--bx-91 {
  border-right: 91px #000 solid !important;
  border-left: 91px #000 solid !important;
}
.black--ba-92 {
  border: 92px #000 solid !important;
}
.black--bt-92 {
  border-top: 92px #000 solid !important;
}
.black--br-92 {
  border-right: 92px #000 solid !important;
}
.black--bl-92 {
  border-left: 92px #000 solid !important;
}
.black--bb-92 {
  border-bottom: 92px #000 solid !important;
}
.black--by-92 {
  border-top: 92px #000 solid !important;
  border-bottom: 92px #000 solid !important;
}
.black--bx-92 {
  border-right: 92px #000 solid !important;
  border-left: 92px #000 solid !important;
}
.black--ba-93 {
  border: 93px #000 solid !important;
}
.black--bt-93 {
  border-top: 93px #000 solid !important;
}
.black--br-93 {
  border-right: 93px #000 solid !important;
}
.black--bl-93 {
  border-left: 93px #000 solid !important;
}
.black--bb-93 {
  border-bottom: 93px #000 solid !important;
}
.black--by-93 {
  border-top: 93px #000 solid !important;
  border-bottom: 93px #000 solid !important;
}
.black--bx-93 {
  border-right: 93px #000 solid !important;
  border-left: 93px #000 solid !important;
}
.black--ba-94 {
  border: 94px #000 solid !important;
}
.black--bt-94 {
  border-top: 94px #000 solid !important;
}
.black--br-94 {
  border-right: 94px #000 solid !important;
}
.black--bl-94 {
  border-left: 94px #000 solid !important;
}
.black--bb-94 {
  border-bottom: 94px #000 solid !important;
}
.black--by-94 {
  border-top: 94px #000 solid !important;
  border-bottom: 94px #000 solid !important;
}
.black--bx-94 {
  border-right: 94px #000 solid !important;
  border-left: 94px #000 solid !important;
}
.black--ba-95 {
  border: 95px #000 solid !important;
}
.black--bt-95 {
  border-top: 95px #000 solid !important;
}
.black--br-95 {
  border-right: 95px #000 solid !important;
}
.black--bl-95 {
  border-left: 95px #000 solid !important;
}
.black--bb-95 {
  border-bottom: 95px #000 solid !important;
}
.black--by-95 {
  border-top: 95px #000 solid !important;
  border-bottom: 95px #000 solid !important;
}
.black--bx-95 {
  border-right: 95px #000 solid !important;
  border-left: 95px #000 solid !important;
}
.black--ba-96 {
  border: 96px #000 solid !important;
}
.black--bt-96 {
  border-top: 96px #000 solid !important;
}
.black--br-96 {
  border-right: 96px #000 solid !important;
}
.black--bl-96 {
  border-left: 96px #000 solid !important;
}
.black--bb-96 {
  border-bottom: 96px #000 solid !important;
}
.black--by-96 {
  border-top: 96px #000 solid !important;
  border-bottom: 96px #000 solid !important;
}
.black--bx-96 {
  border-right: 96px #000 solid !important;
  border-left: 96px #000 solid !important;
}
.black--ba-97 {
  border: 97px #000 solid !important;
}
.black--bt-97 {
  border-top: 97px #000 solid !important;
}
.black--br-97 {
  border-right: 97px #000 solid !important;
}
.black--bl-97 {
  border-left: 97px #000 solid !important;
}
.black--bb-97 {
  border-bottom: 97px #000 solid !important;
}
.black--by-97 {
  border-top: 97px #000 solid !important;
  border-bottom: 97px #000 solid !important;
}
.black--bx-97 {
  border-right: 97px #000 solid !important;
  border-left: 97px #000 solid !important;
}
.black--ba-98 {
  border: 98px #000 solid !important;
}
.black--bt-98 {
  border-top: 98px #000 solid !important;
}
.black--br-98 {
  border-right: 98px #000 solid !important;
}
.black--bl-98 {
  border-left: 98px #000 solid !important;
}
.black--bb-98 {
  border-bottom: 98px #000 solid !important;
}
.black--by-98 {
  border-top: 98px #000 solid !important;
  border-bottom: 98px #000 solid !important;
}
.black--bx-98 {
  border-right: 98px #000 solid !important;
  border-left: 98px #000 solid !important;
}
.black--ba-99 {
  border: 99px #000 solid !important;
}
.black--bt-99 {
  border-top: 99px #000 solid !important;
}
.black--br-99 {
  border-right: 99px #000 solid !important;
}
.black--bl-99 {
  border-left: 99px #000 solid !important;
}
.black--bb-99 {
  border-bottom: 99px #000 solid !important;
}
.black--by-99 {
  border-top: 99px #000 solid !important;
  border-bottom: 99px #000 solid !important;
}
.black--bx-99 {
  border-right: 99px #000 solid !important;
  border-left: 99px #000 solid !important;
}
.black--ba-100 {
  border: 100px #000 solid !important;
}
.black--bt-100 {
  border-top: 100px #000 solid !important;
}
.black--br-100 {
  border-right: 100px #000 solid !important;
}
.black--bl-100 {
  border-left: 100px #000 solid !important;
}
.black--bb-100 {
  border-bottom: 100px #000 solid !important;
}
.black--by-100 {
  border-top: 100px #000 solid !important;
  border-bottom: 100px #000 solid !important;
}
.black--bx-100 {
  border-right: 100px #000 solid !important;
  border-left: 100px #000 solid !important;
}
.white--ba-1 {
  border: 1px #fff solid !important;
}
.white--bt-1 {
  border-top: 1px #fff solid !important;
}
.white--br-1 {
  border-right: 1px #fff solid !important;
}
.white--bl-1 {
  border-left: 1px #fff solid !important;
}
.white--bb-1 {
  border-bottom: 1px #fff solid !important;
}
.white--by-1 {
  border-top: 1px #fff solid !important;
  border-bottom: 1px #fff solid !important;
}
.white--bx-1 {
  border-right: 1px #fff solid !important;
  border-left: 1px #fff solid !important;
}
.white--ba-2 {
  border: 2px #fff solid !important;
}
.white--bt-2 {
  border-top: 2px #fff solid !important;
}
.white--br-2 {
  border-right: 2px #fff solid !important;
}
.white--bl-2 {
  border-left: 2px #fff solid !important;
}
.white--bb-2 {
  border-bottom: 2px #fff solid !important;
}
.white--by-2 {
  border-top: 2px #fff solid !important;
  border-bottom: 2px #fff solid !important;
}
.white--bx-2 {
  border-right: 2px #fff solid !important;
  border-left: 2px #fff solid !important;
}
.white--ba-3 {
  border: 3px #fff solid !important;
}
.white--bt-3 {
  border-top: 3px #fff solid !important;
}
.white--br-3 {
  border-right: 3px #fff solid !important;
}
.white--bl-3 {
  border-left: 3px #fff solid !important;
}
.white--bb-3 {
  border-bottom: 3px #fff solid !important;
}
.white--by-3 {
  border-top: 3px #fff solid !important;
  border-bottom: 3px #fff solid !important;
}
.white--bx-3 {
  border-right: 3px #fff solid !important;
  border-left: 3px #fff solid !important;
}
.white--ba-4 {
  border: 4px #fff solid !important;
}
.white--bt-4 {
  border-top: 4px #fff solid !important;
}
.white--br-4 {
  border-right: 4px #fff solid !important;
}
.white--bl-4 {
  border-left: 4px #fff solid !important;
}
.white--bb-4 {
  border-bottom: 4px #fff solid !important;
}
.white--by-4 {
  border-top: 4px #fff solid !important;
  border-bottom: 4px #fff solid !important;
}
.white--bx-4 {
  border-right: 4px #fff solid !important;
  border-left: 4px #fff solid !important;
}
.white--ba-5 {
  border: 5px #fff solid !important;
}
.white--bt-5 {
  border-top: 5px #fff solid !important;
}
.white--br-5 {
  border-right: 5px #fff solid !important;
}
.white--bl-5 {
  border-left: 5px #fff solid !important;
}
.white--bb-5 {
  border-bottom: 5px #fff solid !important;
}
.white--by-5 {
  border-top: 5px #fff solid !important;
  border-bottom: 5px #fff solid !important;
}
.white--bx-5 {
  border-right: 5px #fff solid !important;
  border-left: 5px #fff solid !important;
}
.white--ba-6 {
  border: 6px #fff solid !important;
}
.white--bt-6 {
  border-top: 6px #fff solid !important;
}
.white--br-6 {
  border-right: 6px #fff solid !important;
}
.white--bl-6 {
  border-left: 6px #fff solid !important;
}
.white--bb-6 {
  border-bottom: 6px #fff solid !important;
}
.white--by-6 {
  border-top: 6px #fff solid !important;
  border-bottom: 6px #fff solid !important;
}
.white--bx-6 {
  border-right: 6px #fff solid !important;
  border-left: 6px #fff solid !important;
}
.white--ba-7 {
  border: 7px #fff solid !important;
}
.white--bt-7 {
  border-top: 7px #fff solid !important;
}
.white--br-7 {
  border-right: 7px #fff solid !important;
}
.white--bl-7 {
  border-left: 7px #fff solid !important;
}
.white--bb-7 {
  border-bottom: 7px #fff solid !important;
}
.white--by-7 {
  border-top: 7px #fff solid !important;
  border-bottom: 7px #fff solid !important;
}
.white--bx-7 {
  border-right: 7px #fff solid !important;
  border-left: 7px #fff solid !important;
}
.white--ba-8 {
  border: 8px #fff solid !important;
}
.white--bt-8 {
  border-top: 8px #fff solid !important;
}
.white--br-8 {
  border-right: 8px #fff solid !important;
}
.white--bl-8 {
  border-left: 8px #fff solid !important;
}
.white--bb-8 {
  border-bottom: 8px #fff solid !important;
}
.white--by-8 {
  border-top: 8px #fff solid !important;
  border-bottom: 8px #fff solid !important;
}
.white--bx-8 {
  border-right: 8px #fff solid !important;
  border-left: 8px #fff solid !important;
}
.white--ba-9 {
  border: 9px #fff solid !important;
}
.white--bt-9 {
  border-top: 9px #fff solid !important;
}
.white--br-9 {
  border-right: 9px #fff solid !important;
}
.white--bl-9 {
  border-left: 9px #fff solid !important;
}
.white--bb-9 {
  border-bottom: 9px #fff solid !important;
}
.white--by-9 {
  border-top: 9px #fff solid !important;
  border-bottom: 9px #fff solid !important;
}
.white--bx-9 {
  border-right: 9px #fff solid !important;
  border-left: 9px #fff solid !important;
}
.white--ba-10 {
  border: 10px #fff solid !important;
}
.white--bt-10 {
  border-top: 10px #fff solid !important;
}
.white--br-10 {
  border-right: 10px #fff solid !important;
}
.white--bl-10 {
  border-left: 10px #fff solid !important;
}
.white--bb-10 {
  border-bottom: 10px #fff solid !important;
}
.white--by-10 {
  border-top: 10px #fff solid !important;
  border-bottom: 10px #fff solid !important;
}
.white--bx-10 {
  border-right: 10px #fff solid !important;
  border-left: 10px #fff solid !important;
}
.white--ba-11 {
  border: 11px #fff solid !important;
}
.white--bt-11 {
  border-top: 11px #fff solid !important;
}
.white--br-11 {
  border-right: 11px #fff solid !important;
}
.white--bl-11 {
  border-left: 11px #fff solid !important;
}
.white--bb-11 {
  border-bottom: 11px #fff solid !important;
}
.white--by-11 {
  border-top: 11px #fff solid !important;
  border-bottom: 11px #fff solid !important;
}
.white--bx-11 {
  border-right: 11px #fff solid !important;
  border-left: 11px #fff solid !important;
}
.white--ba-12 {
  border: 12px #fff solid !important;
}
.white--bt-12 {
  border-top: 12px #fff solid !important;
}
.white--br-12 {
  border-right: 12px #fff solid !important;
}
.white--bl-12 {
  border-left: 12px #fff solid !important;
}
.white--bb-12 {
  border-bottom: 12px #fff solid !important;
}
.white--by-12 {
  border-top: 12px #fff solid !important;
  border-bottom: 12px #fff solid !important;
}
.white--bx-12 {
  border-right: 12px #fff solid !important;
  border-left: 12px #fff solid !important;
}
.white--ba-13 {
  border: 13px #fff solid !important;
}
.white--bt-13 {
  border-top: 13px #fff solid !important;
}
.white--br-13 {
  border-right: 13px #fff solid !important;
}
.white--bl-13 {
  border-left: 13px #fff solid !important;
}
.white--bb-13 {
  border-bottom: 13px #fff solid !important;
}
.white--by-13 {
  border-top: 13px #fff solid !important;
  border-bottom: 13px #fff solid !important;
}
.white--bx-13 {
  border-right: 13px #fff solid !important;
  border-left: 13px #fff solid !important;
}
.white--ba-14 {
  border: 14px #fff solid !important;
}
.white--bt-14 {
  border-top: 14px #fff solid !important;
}
.white--br-14 {
  border-right: 14px #fff solid !important;
}
.white--bl-14 {
  border-left: 14px #fff solid !important;
}
.white--bb-14 {
  border-bottom: 14px #fff solid !important;
}
.white--by-14 {
  border-top: 14px #fff solid !important;
  border-bottom: 14px #fff solid !important;
}
.white--bx-14 {
  border-right: 14px #fff solid !important;
  border-left: 14px #fff solid !important;
}
.white--ba-15 {
  border: 15px #fff solid !important;
}
.white--bt-15 {
  border-top: 15px #fff solid !important;
}
.white--br-15 {
  border-right: 15px #fff solid !important;
}
.white--bl-15 {
  border-left: 15px #fff solid !important;
}
.white--bb-15 {
  border-bottom: 15px #fff solid !important;
}
.white--by-15 {
  border-top: 15px #fff solid !important;
  border-bottom: 15px #fff solid !important;
}
.white--bx-15 {
  border-right: 15px #fff solid !important;
  border-left: 15px #fff solid !important;
}
.white--ba-16 {
  border: 16px #fff solid !important;
}
.white--bt-16 {
  border-top: 16px #fff solid !important;
}
.white--br-16 {
  border-right: 16px #fff solid !important;
}
.white--bl-16 {
  border-left: 16px #fff solid !important;
}
.white--bb-16 {
  border-bottom: 16px #fff solid !important;
}
.white--by-16 {
  border-top: 16px #fff solid !important;
  border-bottom: 16px #fff solid !important;
}
.white--bx-16 {
  border-right: 16px #fff solid !important;
  border-left: 16px #fff solid !important;
}
.white--ba-17 {
  border: 17px #fff solid !important;
}
.white--bt-17 {
  border-top: 17px #fff solid !important;
}
.white--br-17 {
  border-right: 17px #fff solid !important;
}
.white--bl-17 {
  border-left: 17px #fff solid !important;
}
.white--bb-17 {
  border-bottom: 17px #fff solid !important;
}
.white--by-17 {
  border-top: 17px #fff solid !important;
  border-bottom: 17px #fff solid !important;
}
.white--bx-17 {
  border-right: 17px #fff solid !important;
  border-left: 17px #fff solid !important;
}
.white--ba-18 {
  border: 18px #fff solid !important;
}
.white--bt-18 {
  border-top: 18px #fff solid !important;
}
.white--br-18 {
  border-right: 18px #fff solid !important;
}
.white--bl-18 {
  border-left: 18px #fff solid !important;
}
.white--bb-18 {
  border-bottom: 18px #fff solid !important;
}
.white--by-18 {
  border-top: 18px #fff solid !important;
  border-bottom: 18px #fff solid !important;
}
.white--bx-18 {
  border-right: 18px #fff solid !important;
  border-left: 18px #fff solid !important;
}
.white--ba-19 {
  border: 19px #fff solid !important;
}
.white--bt-19 {
  border-top: 19px #fff solid !important;
}
.white--br-19 {
  border-right: 19px #fff solid !important;
}
.white--bl-19 {
  border-left: 19px #fff solid !important;
}
.white--bb-19 {
  border-bottom: 19px #fff solid !important;
}
.white--by-19 {
  border-top: 19px #fff solid !important;
  border-bottom: 19px #fff solid !important;
}
.white--bx-19 {
  border-right: 19px #fff solid !important;
  border-left: 19px #fff solid !important;
}
.white--ba-20 {
  border: 20px #fff solid !important;
}
.white--bt-20 {
  border-top: 20px #fff solid !important;
}
.white--br-20 {
  border-right: 20px #fff solid !important;
}
.white--bl-20 {
  border-left: 20px #fff solid !important;
}
.white--bb-20 {
  border-bottom: 20px #fff solid !important;
}
.white--by-20 {
  border-top: 20px #fff solid !important;
  border-bottom: 20px #fff solid !important;
}
.white--bx-20 {
  border-right: 20px #fff solid !important;
  border-left: 20px #fff solid !important;
}
.white--ba-21 {
  border: 21px #fff solid !important;
}
.white--bt-21 {
  border-top: 21px #fff solid !important;
}
.white--br-21 {
  border-right: 21px #fff solid !important;
}
.white--bl-21 {
  border-left: 21px #fff solid !important;
}
.white--bb-21 {
  border-bottom: 21px #fff solid !important;
}
.white--by-21 {
  border-top: 21px #fff solid !important;
  border-bottom: 21px #fff solid !important;
}
.white--bx-21 {
  border-right: 21px #fff solid !important;
  border-left: 21px #fff solid !important;
}
.white--ba-22 {
  border: 22px #fff solid !important;
}
.white--bt-22 {
  border-top: 22px #fff solid !important;
}
.white--br-22 {
  border-right: 22px #fff solid !important;
}
.white--bl-22 {
  border-left: 22px #fff solid !important;
}
.white--bb-22 {
  border-bottom: 22px #fff solid !important;
}
.white--by-22 {
  border-top: 22px #fff solid !important;
  border-bottom: 22px #fff solid !important;
}
.white--bx-22 {
  border-right: 22px #fff solid !important;
  border-left: 22px #fff solid !important;
}
.white--ba-23 {
  border: 23px #fff solid !important;
}
.white--bt-23 {
  border-top: 23px #fff solid !important;
}
.white--br-23 {
  border-right: 23px #fff solid !important;
}
.white--bl-23 {
  border-left: 23px #fff solid !important;
}
.white--bb-23 {
  border-bottom: 23px #fff solid !important;
}
.white--by-23 {
  border-top: 23px #fff solid !important;
  border-bottom: 23px #fff solid !important;
}
.white--bx-23 {
  border-right: 23px #fff solid !important;
  border-left: 23px #fff solid !important;
}
.white--ba-24 {
  border: 24px #fff solid !important;
}
.white--bt-24 {
  border-top: 24px #fff solid !important;
}
.white--br-24 {
  border-right: 24px #fff solid !important;
}
.white--bl-24 {
  border-left: 24px #fff solid !important;
}
.white--bb-24 {
  border-bottom: 24px #fff solid !important;
}
.white--by-24 {
  border-top: 24px #fff solid !important;
  border-bottom: 24px #fff solid !important;
}
.white--bx-24 {
  border-right: 24px #fff solid !important;
  border-left: 24px #fff solid !important;
}
.white--ba-25 {
  border: 25px #fff solid !important;
}
.white--bt-25 {
  border-top: 25px #fff solid !important;
}
.white--br-25 {
  border-right: 25px #fff solid !important;
}
.white--bl-25 {
  border-left: 25px #fff solid !important;
}
.white--bb-25 {
  border-bottom: 25px #fff solid !important;
}
.white--by-25 {
  border-top: 25px #fff solid !important;
  border-bottom: 25px #fff solid !important;
}
.white--bx-25 {
  border-right: 25px #fff solid !important;
  border-left: 25px #fff solid !important;
}
.white--ba-26 {
  border: 26px #fff solid !important;
}
.white--bt-26 {
  border-top: 26px #fff solid !important;
}
.white--br-26 {
  border-right: 26px #fff solid !important;
}
.white--bl-26 {
  border-left: 26px #fff solid !important;
}
.white--bb-26 {
  border-bottom: 26px #fff solid !important;
}
.white--by-26 {
  border-top: 26px #fff solid !important;
  border-bottom: 26px #fff solid !important;
}
.white--bx-26 {
  border-right: 26px #fff solid !important;
  border-left: 26px #fff solid !important;
}
.white--ba-27 {
  border: 27px #fff solid !important;
}
.white--bt-27 {
  border-top: 27px #fff solid !important;
}
.white--br-27 {
  border-right: 27px #fff solid !important;
}
.white--bl-27 {
  border-left: 27px #fff solid !important;
}
.white--bb-27 {
  border-bottom: 27px #fff solid !important;
}
.white--by-27 {
  border-top: 27px #fff solid !important;
  border-bottom: 27px #fff solid !important;
}
.white--bx-27 {
  border-right: 27px #fff solid !important;
  border-left: 27px #fff solid !important;
}
.white--ba-28 {
  border: 28px #fff solid !important;
}
.white--bt-28 {
  border-top: 28px #fff solid !important;
}
.white--br-28 {
  border-right: 28px #fff solid !important;
}
.white--bl-28 {
  border-left: 28px #fff solid !important;
}
.white--bb-28 {
  border-bottom: 28px #fff solid !important;
}
.white--by-28 {
  border-top: 28px #fff solid !important;
  border-bottom: 28px #fff solid !important;
}
.white--bx-28 {
  border-right: 28px #fff solid !important;
  border-left: 28px #fff solid !important;
}
.white--ba-29 {
  border: 29px #fff solid !important;
}
.white--bt-29 {
  border-top: 29px #fff solid !important;
}
.white--br-29 {
  border-right: 29px #fff solid !important;
}
.white--bl-29 {
  border-left: 29px #fff solid !important;
}
.white--bb-29 {
  border-bottom: 29px #fff solid !important;
}
.white--by-29 {
  border-top: 29px #fff solid !important;
  border-bottom: 29px #fff solid !important;
}
.white--bx-29 {
  border-right: 29px #fff solid !important;
  border-left: 29px #fff solid !important;
}
.white--ba-30 {
  border: 30px #fff solid !important;
}
.white--bt-30 {
  border-top: 30px #fff solid !important;
}
.white--br-30 {
  border-right: 30px #fff solid !important;
}
.white--bl-30 {
  border-left: 30px #fff solid !important;
}
.white--bb-30 {
  border-bottom: 30px #fff solid !important;
}
.white--by-30 {
  border-top: 30px #fff solid !important;
  border-bottom: 30px #fff solid !important;
}
.white--bx-30 {
  border-right: 30px #fff solid !important;
  border-left: 30px #fff solid !important;
}
.white--ba-31 {
  border: 31px #fff solid !important;
}
.white--bt-31 {
  border-top: 31px #fff solid !important;
}
.white--br-31 {
  border-right: 31px #fff solid !important;
}
.white--bl-31 {
  border-left: 31px #fff solid !important;
}
.white--bb-31 {
  border-bottom: 31px #fff solid !important;
}
.white--by-31 {
  border-top: 31px #fff solid !important;
  border-bottom: 31px #fff solid !important;
}
.white--bx-31 {
  border-right: 31px #fff solid !important;
  border-left: 31px #fff solid !important;
}
.white--ba-32 {
  border: 32px #fff solid !important;
}
.white--bt-32 {
  border-top: 32px #fff solid !important;
}
.white--br-32 {
  border-right: 32px #fff solid !important;
}
.white--bl-32 {
  border-left: 32px #fff solid !important;
}
.white--bb-32 {
  border-bottom: 32px #fff solid !important;
}
.white--by-32 {
  border-top: 32px #fff solid !important;
  border-bottom: 32px #fff solid !important;
}
.white--bx-32 {
  border-right: 32px #fff solid !important;
  border-left: 32px #fff solid !important;
}
.white--ba-33 {
  border: 33px #fff solid !important;
}
.white--bt-33 {
  border-top: 33px #fff solid !important;
}
.white--br-33 {
  border-right: 33px #fff solid !important;
}
.white--bl-33 {
  border-left: 33px #fff solid !important;
}
.white--bb-33 {
  border-bottom: 33px #fff solid !important;
}
.white--by-33 {
  border-top: 33px #fff solid !important;
  border-bottom: 33px #fff solid !important;
}
.white--bx-33 {
  border-right: 33px #fff solid !important;
  border-left: 33px #fff solid !important;
}
.white--ba-34 {
  border: 34px #fff solid !important;
}
.white--bt-34 {
  border-top: 34px #fff solid !important;
}
.white--br-34 {
  border-right: 34px #fff solid !important;
}
.white--bl-34 {
  border-left: 34px #fff solid !important;
}
.white--bb-34 {
  border-bottom: 34px #fff solid !important;
}
.white--by-34 {
  border-top: 34px #fff solid !important;
  border-bottom: 34px #fff solid !important;
}
.white--bx-34 {
  border-right: 34px #fff solid !important;
  border-left: 34px #fff solid !important;
}
.white--ba-35 {
  border: 35px #fff solid !important;
}
.white--bt-35 {
  border-top: 35px #fff solid !important;
}
.white--br-35 {
  border-right: 35px #fff solid !important;
}
.white--bl-35 {
  border-left: 35px #fff solid !important;
}
.white--bb-35 {
  border-bottom: 35px #fff solid !important;
}
.white--by-35 {
  border-top: 35px #fff solid !important;
  border-bottom: 35px #fff solid !important;
}
.white--bx-35 {
  border-right: 35px #fff solid !important;
  border-left: 35px #fff solid !important;
}
.white--ba-36 {
  border: 36px #fff solid !important;
}
.white--bt-36 {
  border-top: 36px #fff solid !important;
}
.white--br-36 {
  border-right: 36px #fff solid !important;
}
.white--bl-36 {
  border-left: 36px #fff solid !important;
}
.white--bb-36 {
  border-bottom: 36px #fff solid !important;
}
.white--by-36 {
  border-top: 36px #fff solid !important;
  border-bottom: 36px #fff solid !important;
}
.white--bx-36 {
  border-right: 36px #fff solid !important;
  border-left: 36px #fff solid !important;
}
.white--ba-37 {
  border: 37px #fff solid !important;
}
.white--bt-37 {
  border-top: 37px #fff solid !important;
}
.white--br-37 {
  border-right: 37px #fff solid !important;
}
.white--bl-37 {
  border-left: 37px #fff solid !important;
}
.white--bb-37 {
  border-bottom: 37px #fff solid !important;
}
.white--by-37 {
  border-top: 37px #fff solid !important;
  border-bottom: 37px #fff solid !important;
}
.white--bx-37 {
  border-right: 37px #fff solid !important;
  border-left: 37px #fff solid !important;
}
.white--ba-38 {
  border: 38px #fff solid !important;
}
.white--bt-38 {
  border-top: 38px #fff solid !important;
}
.white--br-38 {
  border-right: 38px #fff solid !important;
}
.white--bl-38 {
  border-left: 38px #fff solid !important;
}
.white--bb-38 {
  border-bottom: 38px #fff solid !important;
}
.white--by-38 {
  border-top: 38px #fff solid !important;
  border-bottom: 38px #fff solid !important;
}
.white--bx-38 {
  border-right: 38px #fff solid !important;
  border-left: 38px #fff solid !important;
}
.white--ba-39 {
  border: 39px #fff solid !important;
}
.white--bt-39 {
  border-top: 39px #fff solid !important;
}
.white--br-39 {
  border-right: 39px #fff solid !important;
}
.white--bl-39 {
  border-left: 39px #fff solid !important;
}
.white--bb-39 {
  border-bottom: 39px #fff solid !important;
}
.white--by-39 {
  border-top: 39px #fff solid !important;
  border-bottom: 39px #fff solid !important;
}
.white--bx-39 {
  border-right: 39px #fff solid !important;
  border-left: 39px #fff solid !important;
}
.white--ba-40 {
  border: 40px #fff solid !important;
}
.white--bt-40 {
  border-top: 40px #fff solid !important;
}
.white--br-40 {
  border-right: 40px #fff solid !important;
}
.white--bl-40 {
  border-left: 40px #fff solid !important;
}
.white--bb-40 {
  border-bottom: 40px #fff solid !important;
}
.white--by-40 {
  border-top: 40px #fff solid !important;
  border-bottom: 40px #fff solid !important;
}
.white--bx-40 {
  border-right: 40px #fff solid !important;
  border-left: 40px #fff solid !important;
}
.white--ba-41 {
  border: 41px #fff solid !important;
}
.white--bt-41 {
  border-top: 41px #fff solid !important;
}
.white--br-41 {
  border-right: 41px #fff solid !important;
}
.white--bl-41 {
  border-left: 41px #fff solid !important;
}
.white--bb-41 {
  border-bottom: 41px #fff solid !important;
}
.white--by-41 {
  border-top: 41px #fff solid !important;
  border-bottom: 41px #fff solid !important;
}
.white--bx-41 {
  border-right: 41px #fff solid !important;
  border-left: 41px #fff solid !important;
}
.white--ba-42 {
  border: 42px #fff solid !important;
}
.white--bt-42 {
  border-top: 42px #fff solid !important;
}
.white--br-42 {
  border-right: 42px #fff solid !important;
}
.white--bl-42 {
  border-left: 42px #fff solid !important;
}
.white--bb-42 {
  border-bottom: 42px #fff solid !important;
}
.white--by-42 {
  border-top: 42px #fff solid !important;
  border-bottom: 42px #fff solid !important;
}
.white--bx-42 {
  border-right: 42px #fff solid !important;
  border-left: 42px #fff solid !important;
}
.white--ba-43 {
  border: 43px #fff solid !important;
}
.white--bt-43 {
  border-top: 43px #fff solid !important;
}
.white--br-43 {
  border-right: 43px #fff solid !important;
}
.white--bl-43 {
  border-left: 43px #fff solid !important;
}
.white--bb-43 {
  border-bottom: 43px #fff solid !important;
}
.white--by-43 {
  border-top: 43px #fff solid !important;
  border-bottom: 43px #fff solid !important;
}
.white--bx-43 {
  border-right: 43px #fff solid !important;
  border-left: 43px #fff solid !important;
}
.white--ba-44 {
  border: 44px #fff solid !important;
}
.white--bt-44 {
  border-top: 44px #fff solid !important;
}
.white--br-44 {
  border-right: 44px #fff solid !important;
}
.white--bl-44 {
  border-left: 44px #fff solid !important;
}
.white--bb-44 {
  border-bottom: 44px #fff solid !important;
}
.white--by-44 {
  border-top: 44px #fff solid !important;
  border-bottom: 44px #fff solid !important;
}
.white--bx-44 {
  border-right: 44px #fff solid !important;
  border-left: 44px #fff solid !important;
}
.white--ba-45 {
  border: 45px #fff solid !important;
}
.white--bt-45 {
  border-top: 45px #fff solid !important;
}
.white--br-45 {
  border-right: 45px #fff solid !important;
}
.white--bl-45 {
  border-left: 45px #fff solid !important;
}
.white--bb-45 {
  border-bottom: 45px #fff solid !important;
}
.white--by-45 {
  border-top: 45px #fff solid !important;
  border-bottom: 45px #fff solid !important;
}
.white--bx-45 {
  border-right: 45px #fff solid !important;
  border-left: 45px #fff solid !important;
}
.white--ba-46 {
  border: 46px #fff solid !important;
}
.white--bt-46 {
  border-top: 46px #fff solid !important;
}
.white--br-46 {
  border-right: 46px #fff solid !important;
}
.white--bl-46 {
  border-left: 46px #fff solid !important;
}
.white--bb-46 {
  border-bottom: 46px #fff solid !important;
}
.white--by-46 {
  border-top: 46px #fff solid !important;
  border-bottom: 46px #fff solid !important;
}
.white--bx-46 {
  border-right: 46px #fff solid !important;
  border-left: 46px #fff solid !important;
}
.white--ba-47 {
  border: 47px #fff solid !important;
}
.white--bt-47 {
  border-top: 47px #fff solid !important;
}
.white--br-47 {
  border-right: 47px #fff solid !important;
}
.white--bl-47 {
  border-left: 47px #fff solid !important;
}
.white--bb-47 {
  border-bottom: 47px #fff solid !important;
}
.white--by-47 {
  border-top: 47px #fff solid !important;
  border-bottom: 47px #fff solid !important;
}
.white--bx-47 {
  border-right: 47px #fff solid !important;
  border-left: 47px #fff solid !important;
}
.white--ba-48 {
  border: 48px #fff solid !important;
}
.white--bt-48 {
  border-top: 48px #fff solid !important;
}
.white--br-48 {
  border-right: 48px #fff solid !important;
}
.white--bl-48 {
  border-left: 48px #fff solid !important;
}
.white--bb-48 {
  border-bottom: 48px #fff solid !important;
}
.white--by-48 {
  border-top: 48px #fff solid !important;
  border-bottom: 48px #fff solid !important;
}
.white--bx-48 {
  border-right: 48px #fff solid !important;
  border-left: 48px #fff solid !important;
}
.white--ba-49 {
  border: 49px #fff solid !important;
}
.white--bt-49 {
  border-top: 49px #fff solid !important;
}
.white--br-49 {
  border-right: 49px #fff solid !important;
}
.white--bl-49 {
  border-left: 49px #fff solid !important;
}
.white--bb-49 {
  border-bottom: 49px #fff solid !important;
}
.white--by-49 {
  border-top: 49px #fff solid !important;
  border-bottom: 49px #fff solid !important;
}
.white--bx-49 {
  border-right: 49px #fff solid !important;
  border-left: 49px #fff solid !important;
}
.white--ba-50 {
  border: 50px #fff solid !important;
}
.white--bt-50 {
  border-top: 50px #fff solid !important;
}
.white--br-50 {
  border-right: 50px #fff solid !important;
}
.white--bl-50 {
  border-left: 50px #fff solid !important;
}
.white--bb-50 {
  border-bottom: 50px #fff solid !important;
}
.white--by-50 {
  border-top: 50px #fff solid !important;
  border-bottom: 50px #fff solid !important;
}
.white--bx-50 {
  border-right: 50px #fff solid !important;
  border-left: 50px #fff solid !important;
}
.white--ba-51 {
  border: 51px #fff solid !important;
}
.white--bt-51 {
  border-top: 51px #fff solid !important;
}
.white--br-51 {
  border-right: 51px #fff solid !important;
}
.white--bl-51 {
  border-left: 51px #fff solid !important;
}
.white--bb-51 {
  border-bottom: 51px #fff solid !important;
}
.white--by-51 {
  border-top: 51px #fff solid !important;
  border-bottom: 51px #fff solid !important;
}
.white--bx-51 {
  border-right: 51px #fff solid !important;
  border-left: 51px #fff solid !important;
}
.white--ba-52 {
  border: 52px #fff solid !important;
}
.white--bt-52 {
  border-top: 52px #fff solid !important;
}
.white--br-52 {
  border-right: 52px #fff solid !important;
}
.white--bl-52 {
  border-left: 52px #fff solid !important;
}
.white--bb-52 {
  border-bottom: 52px #fff solid !important;
}
.white--by-52 {
  border-top: 52px #fff solid !important;
  border-bottom: 52px #fff solid !important;
}
.white--bx-52 {
  border-right: 52px #fff solid !important;
  border-left: 52px #fff solid !important;
}
.white--ba-53 {
  border: 53px #fff solid !important;
}
.white--bt-53 {
  border-top: 53px #fff solid !important;
}
.white--br-53 {
  border-right: 53px #fff solid !important;
}
.white--bl-53 {
  border-left: 53px #fff solid !important;
}
.white--bb-53 {
  border-bottom: 53px #fff solid !important;
}
.white--by-53 {
  border-top: 53px #fff solid !important;
  border-bottom: 53px #fff solid !important;
}
.white--bx-53 {
  border-right: 53px #fff solid !important;
  border-left: 53px #fff solid !important;
}
.white--ba-54 {
  border: 54px #fff solid !important;
}
.white--bt-54 {
  border-top: 54px #fff solid !important;
}
.white--br-54 {
  border-right: 54px #fff solid !important;
}
.white--bl-54 {
  border-left: 54px #fff solid !important;
}
.white--bb-54 {
  border-bottom: 54px #fff solid !important;
}
.white--by-54 {
  border-top: 54px #fff solid !important;
  border-bottom: 54px #fff solid !important;
}
.white--bx-54 {
  border-right: 54px #fff solid !important;
  border-left: 54px #fff solid !important;
}
.white--ba-55 {
  border: 55px #fff solid !important;
}
.white--bt-55 {
  border-top: 55px #fff solid !important;
}
.white--br-55 {
  border-right: 55px #fff solid !important;
}
.white--bl-55 {
  border-left: 55px #fff solid !important;
}
.white--bb-55 {
  border-bottom: 55px #fff solid !important;
}
.white--by-55 {
  border-top: 55px #fff solid !important;
  border-bottom: 55px #fff solid !important;
}
.white--bx-55 {
  border-right: 55px #fff solid !important;
  border-left: 55px #fff solid !important;
}
.white--ba-56 {
  border: 56px #fff solid !important;
}
.white--bt-56 {
  border-top: 56px #fff solid !important;
}
.white--br-56 {
  border-right: 56px #fff solid !important;
}
.white--bl-56 {
  border-left: 56px #fff solid !important;
}
.white--bb-56 {
  border-bottom: 56px #fff solid !important;
}
.white--by-56 {
  border-top: 56px #fff solid !important;
  border-bottom: 56px #fff solid !important;
}
.white--bx-56 {
  border-right: 56px #fff solid !important;
  border-left: 56px #fff solid !important;
}
.white--ba-57 {
  border: 57px #fff solid !important;
}
.white--bt-57 {
  border-top: 57px #fff solid !important;
}
.white--br-57 {
  border-right: 57px #fff solid !important;
}
.white--bl-57 {
  border-left: 57px #fff solid !important;
}
.white--bb-57 {
  border-bottom: 57px #fff solid !important;
}
.white--by-57 {
  border-top: 57px #fff solid !important;
  border-bottom: 57px #fff solid !important;
}
.white--bx-57 {
  border-right: 57px #fff solid !important;
  border-left: 57px #fff solid !important;
}
.white--ba-58 {
  border: 58px #fff solid !important;
}
.white--bt-58 {
  border-top: 58px #fff solid !important;
}
.white--br-58 {
  border-right: 58px #fff solid !important;
}
.white--bl-58 {
  border-left: 58px #fff solid !important;
}
.white--bb-58 {
  border-bottom: 58px #fff solid !important;
}
.white--by-58 {
  border-top: 58px #fff solid !important;
  border-bottom: 58px #fff solid !important;
}
.white--bx-58 {
  border-right: 58px #fff solid !important;
  border-left: 58px #fff solid !important;
}
.white--ba-59 {
  border: 59px #fff solid !important;
}
.white--bt-59 {
  border-top: 59px #fff solid !important;
}
.white--br-59 {
  border-right: 59px #fff solid !important;
}
.white--bl-59 {
  border-left: 59px #fff solid !important;
}
.white--bb-59 {
  border-bottom: 59px #fff solid !important;
}
.white--by-59 {
  border-top: 59px #fff solid !important;
  border-bottom: 59px #fff solid !important;
}
.white--bx-59 {
  border-right: 59px #fff solid !important;
  border-left: 59px #fff solid !important;
}
.white--ba-60 {
  border: 60px #fff solid !important;
}
.white--bt-60 {
  border-top: 60px #fff solid !important;
}
.white--br-60 {
  border-right: 60px #fff solid !important;
}
.white--bl-60 {
  border-left: 60px #fff solid !important;
}
.white--bb-60 {
  border-bottom: 60px #fff solid !important;
}
.white--by-60 {
  border-top: 60px #fff solid !important;
  border-bottom: 60px #fff solid !important;
}
.white--bx-60 {
  border-right: 60px #fff solid !important;
  border-left: 60px #fff solid !important;
}
.white--ba-61 {
  border: 61px #fff solid !important;
}
.white--bt-61 {
  border-top: 61px #fff solid !important;
}
.white--br-61 {
  border-right: 61px #fff solid !important;
}
.white--bl-61 {
  border-left: 61px #fff solid !important;
}
.white--bb-61 {
  border-bottom: 61px #fff solid !important;
}
.white--by-61 {
  border-top: 61px #fff solid !important;
  border-bottom: 61px #fff solid !important;
}
.white--bx-61 {
  border-right: 61px #fff solid !important;
  border-left: 61px #fff solid !important;
}
.white--ba-62 {
  border: 62px #fff solid !important;
}
.white--bt-62 {
  border-top: 62px #fff solid !important;
}
.white--br-62 {
  border-right: 62px #fff solid !important;
}
.white--bl-62 {
  border-left: 62px #fff solid !important;
}
.white--bb-62 {
  border-bottom: 62px #fff solid !important;
}
.white--by-62 {
  border-top: 62px #fff solid !important;
  border-bottom: 62px #fff solid !important;
}
.white--bx-62 {
  border-right: 62px #fff solid !important;
  border-left: 62px #fff solid !important;
}
.white--ba-63 {
  border: 63px #fff solid !important;
}
.white--bt-63 {
  border-top: 63px #fff solid !important;
}
.white--br-63 {
  border-right: 63px #fff solid !important;
}
.white--bl-63 {
  border-left: 63px #fff solid !important;
}
.white--bb-63 {
  border-bottom: 63px #fff solid !important;
}
.white--by-63 {
  border-top: 63px #fff solid !important;
  border-bottom: 63px #fff solid !important;
}
.white--bx-63 {
  border-right: 63px #fff solid !important;
  border-left: 63px #fff solid !important;
}
.white--ba-64 {
  border: 64px #fff solid !important;
}
.white--bt-64 {
  border-top: 64px #fff solid !important;
}
.white--br-64 {
  border-right: 64px #fff solid !important;
}
.white--bl-64 {
  border-left: 64px #fff solid !important;
}
.white--bb-64 {
  border-bottom: 64px #fff solid !important;
}
.white--by-64 {
  border-top: 64px #fff solid !important;
  border-bottom: 64px #fff solid !important;
}
.white--bx-64 {
  border-right: 64px #fff solid !important;
  border-left: 64px #fff solid !important;
}
.white--ba-65 {
  border: 65px #fff solid !important;
}
.white--bt-65 {
  border-top: 65px #fff solid !important;
}
.white--br-65 {
  border-right: 65px #fff solid !important;
}
.white--bl-65 {
  border-left: 65px #fff solid !important;
}
.white--bb-65 {
  border-bottom: 65px #fff solid !important;
}
.white--by-65 {
  border-top: 65px #fff solid !important;
  border-bottom: 65px #fff solid !important;
}
.white--bx-65 {
  border-right: 65px #fff solid !important;
  border-left: 65px #fff solid !important;
}
.white--ba-66 {
  border: 66px #fff solid !important;
}
.white--bt-66 {
  border-top: 66px #fff solid !important;
}
.white--br-66 {
  border-right: 66px #fff solid !important;
}
.white--bl-66 {
  border-left: 66px #fff solid !important;
}
.white--bb-66 {
  border-bottom: 66px #fff solid !important;
}
.white--by-66 {
  border-top: 66px #fff solid !important;
  border-bottom: 66px #fff solid !important;
}
.white--bx-66 {
  border-right: 66px #fff solid !important;
  border-left: 66px #fff solid !important;
}
.white--ba-67 {
  border: 67px #fff solid !important;
}
.white--bt-67 {
  border-top: 67px #fff solid !important;
}
.white--br-67 {
  border-right: 67px #fff solid !important;
}
.white--bl-67 {
  border-left: 67px #fff solid !important;
}
.white--bb-67 {
  border-bottom: 67px #fff solid !important;
}
.white--by-67 {
  border-top: 67px #fff solid !important;
  border-bottom: 67px #fff solid !important;
}
.white--bx-67 {
  border-right: 67px #fff solid !important;
  border-left: 67px #fff solid !important;
}
.white--ba-68 {
  border: 68px #fff solid !important;
}
.white--bt-68 {
  border-top: 68px #fff solid !important;
}
.white--br-68 {
  border-right: 68px #fff solid !important;
}
.white--bl-68 {
  border-left: 68px #fff solid !important;
}
.white--bb-68 {
  border-bottom: 68px #fff solid !important;
}
.white--by-68 {
  border-top: 68px #fff solid !important;
  border-bottom: 68px #fff solid !important;
}
.white--bx-68 {
  border-right: 68px #fff solid !important;
  border-left: 68px #fff solid !important;
}
.white--ba-69 {
  border: 69px #fff solid !important;
}
.white--bt-69 {
  border-top: 69px #fff solid !important;
}
.white--br-69 {
  border-right: 69px #fff solid !important;
}
.white--bl-69 {
  border-left: 69px #fff solid !important;
}
.white--bb-69 {
  border-bottom: 69px #fff solid !important;
}
.white--by-69 {
  border-top: 69px #fff solid !important;
  border-bottom: 69px #fff solid !important;
}
.white--bx-69 {
  border-right: 69px #fff solid !important;
  border-left: 69px #fff solid !important;
}
.white--ba-70 {
  border: 70px #fff solid !important;
}
.white--bt-70 {
  border-top: 70px #fff solid !important;
}
.white--br-70 {
  border-right: 70px #fff solid !important;
}
.white--bl-70 {
  border-left: 70px #fff solid !important;
}
.white--bb-70 {
  border-bottom: 70px #fff solid !important;
}
.white--by-70 {
  border-top: 70px #fff solid !important;
  border-bottom: 70px #fff solid !important;
}
.white--bx-70 {
  border-right: 70px #fff solid !important;
  border-left: 70px #fff solid !important;
}
.white--ba-71 {
  border: 71px #fff solid !important;
}
.white--bt-71 {
  border-top: 71px #fff solid !important;
}
.white--br-71 {
  border-right: 71px #fff solid !important;
}
.white--bl-71 {
  border-left: 71px #fff solid !important;
}
.white--bb-71 {
  border-bottom: 71px #fff solid !important;
}
.white--by-71 {
  border-top: 71px #fff solid !important;
  border-bottom: 71px #fff solid !important;
}
.white--bx-71 {
  border-right: 71px #fff solid !important;
  border-left: 71px #fff solid !important;
}
.white--ba-72 {
  border: 72px #fff solid !important;
}
.white--bt-72 {
  border-top: 72px #fff solid !important;
}
.white--br-72 {
  border-right: 72px #fff solid !important;
}
.white--bl-72 {
  border-left: 72px #fff solid !important;
}
.white--bb-72 {
  border-bottom: 72px #fff solid !important;
}
.white--by-72 {
  border-top: 72px #fff solid !important;
  border-bottom: 72px #fff solid !important;
}
.white--bx-72 {
  border-right: 72px #fff solid !important;
  border-left: 72px #fff solid !important;
}
.white--ba-73 {
  border: 73px #fff solid !important;
}
.white--bt-73 {
  border-top: 73px #fff solid !important;
}
.white--br-73 {
  border-right: 73px #fff solid !important;
}
.white--bl-73 {
  border-left: 73px #fff solid !important;
}
.white--bb-73 {
  border-bottom: 73px #fff solid !important;
}
.white--by-73 {
  border-top: 73px #fff solid !important;
  border-bottom: 73px #fff solid !important;
}
.white--bx-73 {
  border-right: 73px #fff solid !important;
  border-left: 73px #fff solid !important;
}
.white--ba-74 {
  border: 74px #fff solid !important;
}
.white--bt-74 {
  border-top: 74px #fff solid !important;
}
.white--br-74 {
  border-right: 74px #fff solid !important;
}
.white--bl-74 {
  border-left: 74px #fff solid !important;
}
.white--bb-74 {
  border-bottom: 74px #fff solid !important;
}
.white--by-74 {
  border-top: 74px #fff solid !important;
  border-bottom: 74px #fff solid !important;
}
.white--bx-74 {
  border-right: 74px #fff solid !important;
  border-left: 74px #fff solid !important;
}
.white--ba-75 {
  border: 75px #fff solid !important;
}
.white--bt-75 {
  border-top: 75px #fff solid !important;
}
.white--br-75 {
  border-right: 75px #fff solid !important;
}
.white--bl-75 {
  border-left: 75px #fff solid !important;
}
.white--bb-75 {
  border-bottom: 75px #fff solid !important;
}
.white--by-75 {
  border-top: 75px #fff solid !important;
  border-bottom: 75px #fff solid !important;
}
.white--bx-75 {
  border-right: 75px #fff solid !important;
  border-left: 75px #fff solid !important;
}
.white--ba-76 {
  border: 76px #fff solid !important;
}
.white--bt-76 {
  border-top: 76px #fff solid !important;
}
.white--br-76 {
  border-right: 76px #fff solid !important;
}
.white--bl-76 {
  border-left: 76px #fff solid !important;
}
.white--bb-76 {
  border-bottom: 76px #fff solid !important;
}
.white--by-76 {
  border-top: 76px #fff solid !important;
  border-bottom: 76px #fff solid !important;
}
.white--bx-76 {
  border-right: 76px #fff solid !important;
  border-left: 76px #fff solid !important;
}
.white--ba-77 {
  border: 77px #fff solid !important;
}
.white--bt-77 {
  border-top: 77px #fff solid !important;
}
.white--br-77 {
  border-right: 77px #fff solid !important;
}
.white--bl-77 {
  border-left: 77px #fff solid !important;
}
.white--bb-77 {
  border-bottom: 77px #fff solid !important;
}
.white--by-77 {
  border-top: 77px #fff solid !important;
  border-bottom: 77px #fff solid !important;
}
.white--bx-77 {
  border-right: 77px #fff solid !important;
  border-left: 77px #fff solid !important;
}
.white--ba-78 {
  border: 78px #fff solid !important;
}
.white--bt-78 {
  border-top: 78px #fff solid !important;
}
.white--br-78 {
  border-right: 78px #fff solid !important;
}
.white--bl-78 {
  border-left: 78px #fff solid !important;
}
.white--bb-78 {
  border-bottom: 78px #fff solid !important;
}
.white--by-78 {
  border-top: 78px #fff solid !important;
  border-bottom: 78px #fff solid !important;
}
.white--bx-78 {
  border-right: 78px #fff solid !important;
  border-left: 78px #fff solid !important;
}
.white--ba-79 {
  border: 79px #fff solid !important;
}
.white--bt-79 {
  border-top: 79px #fff solid !important;
}
.white--br-79 {
  border-right: 79px #fff solid !important;
}
.white--bl-79 {
  border-left: 79px #fff solid !important;
}
.white--bb-79 {
  border-bottom: 79px #fff solid !important;
}
.white--by-79 {
  border-top: 79px #fff solid !important;
  border-bottom: 79px #fff solid !important;
}
.white--bx-79 {
  border-right: 79px #fff solid !important;
  border-left: 79px #fff solid !important;
}
.white--ba-80 {
  border: 80px #fff solid !important;
}
.white--bt-80 {
  border-top: 80px #fff solid !important;
}
.white--br-80 {
  border-right: 80px #fff solid !important;
}
.white--bl-80 {
  border-left: 80px #fff solid !important;
}
.white--bb-80 {
  border-bottom: 80px #fff solid !important;
}
.white--by-80 {
  border-top: 80px #fff solid !important;
  border-bottom: 80px #fff solid !important;
}
.white--bx-80 {
  border-right: 80px #fff solid !important;
  border-left: 80px #fff solid !important;
}
.white--ba-81 {
  border: 81px #fff solid !important;
}
.white--bt-81 {
  border-top: 81px #fff solid !important;
}
.white--br-81 {
  border-right: 81px #fff solid !important;
}
.white--bl-81 {
  border-left: 81px #fff solid !important;
}
.white--bb-81 {
  border-bottom: 81px #fff solid !important;
}
.white--by-81 {
  border-top: 81px #fff solid !important;
  border-bottom: 81px #fff solid !important;
}
.white--bx-81 {
  border-right: 81px #fff solid !important;
  border-left: 81px #fff solid !important;
}
.white--ba-82 {
  border: 82px #fff solid !important;
}
.white--bt-82 {
  border-top: 82px #fff solid !important;
}
.white--br-82 {
  border-right: 82px #fff solid !important;
}
.white--bl-82 {
  border-left: 82px #fff solid !important;
}
.white--bb-82 {
  border-bottom: 82px #fff solid !important;
}
.white--by-82 {
  border-top: 82px #fff solid !important;
  border-bottom: 82px #fff solid !important;
}
.white--bx-82 {
  border-right: 82px #fff solid !important;
  border-left: 82px #fff solid !important;
}
.white--ba-83 {
  border: 83px #fff solid !important;
}
.white--bt-83 {
  border-top: 83px #fff solid !important;
}
.white--br-83 {
  border-right: 83px #fff solid !important;
}
.white--bl-83 {
  border-left: 83px #fff solid !important;
}
.white--bb-83 {
  border-bottom: 83px #fff solid !important;
}
.white--by-83 {
  border-top: 83px #fff solid !important;
  border-bottom: 83px #fff solid !important;
}
.white--bx-83 {
  border-right: 83px #fff solid !important;
  border-left: 83px #fff solid !important;
}
.white--ba-84 {
  border: 84px #fff solid !important;
}
.white--bt-84 {
  border-top: 84px #fff solid !important;
}
.white--br-84 {
  border-right: 84px #fff solid !important;
}
.white--bl-84 {
  border-left: 84px #fff solid !important;
}
.white--bb-84 {
  border-bottom: 84px #fff solid !important;
}
.white--by-84 {
  border-top: 84px #fff solid !important;
  border-bottom: 84px #fff solid !important;
}
.white--bx-84 {
  border-right: 84px #fff solid !important;
  border-left: 84px #fff solid !important;
}
.white--ba-85 {
  border: 85px #fff solid !important;
}
.white--bt-85 {
  border-top: 85px #fff solid !important;
}
.white--br-85 {
  border-right: 85px #fff solid !important;
}
.white--bl-85 {
  border-left: 85px #fff solid !important;
}
.white--bb-85 {
  border-bottom: 85px #fff solid !important;
}
.white--by-85 {
  border-top: 85px #fff solid !important;
  border-bottom: 85px #fff solid !important;
}
.white--bx-85 {
  border-right: 85px #fff solid !important;
  border-left: 85px #fff solid !important;
}
.white--ba-86 {
  border: 86px #fff solid !important;
}
.white--bt-86 {
  border-top: 86px #fff solid !important;
}
.white--br-86 {
  border-right: 86px #fff solid !important;
}
.white--bl-86 {
  border-left: 86px #fff solid !important;
}
.white--bb-86 {
  border-bottom: 86px #fff solid !important;
}
.white--by-86 {
  border-top: 86px #fff solid !important;
  border-bottom: 86px #fff solid !important;
}
.white--bx-86 {
  border-right: 86px #fff solid !important;
  border-left: 86px #fff solid !important;
}
.white--ba-87 {
  border: 87px #fff solid !important;
}
.white--bt-87 {
  border-top: 87px #fff solid !important;
}
.white--br-87 {
  border-right: 87px #fff solid !important;
}
.white--bl-87 {
  border-left: 87px #fff solid !important;
}
.white--bb-87 {
  border-bottom: 87px #fff solid !important;
}
.white--by-87 {
  border-top: 87px #fff solid !important;
  border-bottom: 87px #fff solid !important;
}
.white--bx-87 {
  border-right: 87px #fff solid !important;
  border-left: 87px #fff solid !important;
}
.white--ba-88 {
  border: 88px #fff solid !important;
}
.white--bt-88 {
  border-top: 88px #fff solid !important;
}
.white--br-88 {
  border-right: 88px #fff solid !important;
}
.white--bl-88 {
  border-left: 88px #fff solid !important;
}
.white--bb-88 {
  border-bottom: 88px #fff solid !important;
}
.white--by-88 {
  border-top: 88px #fff solid !important;
  border-bottom: 88px #fff solid !important;
}
.white--bx-88 {
  border-right: 88px #fff solid !important;
  border-left: 88px #fff solid !important;
}
.white--ba-89 {
  border: 89px #fff solid !important;
}
.white--bt-89 {
  border-top: 89px #fff solid !important;
}
.white--br-89 {
  border-right: 89px #fff solid !important;
}
.white--bl-89 {
  border-left: 89px #fff solid !important;
}
.white--bb-89 {
  border-bottom: 89px #fff solid !important;
}
.white--by-89 {
  border-top: 89px #fff solid !important;
  border-bottom: 89px #fff solid !important;
}
.white--bx-89 {
  border-right: 89px #fff solid !important;
  border-left: 89px #fff solid !important;
}
.white--ba-90 {
  border: 90px #fff solid !important;
}
.white--bt-90 {
  border-top: 90px #fff solid !important;
}
.white--br-90 {
  border-right: 90px #fff solid !important;
}
.white--bl-90 {
  border-left: 90px #fff solid !important;
}
.white--bb-90 {
  border-bottom: 90px #fff solid !important;
}
.white--by-90 {
  border-top: 90px #fff solid !important;
  border-bottom: 90px #fff solid !important;
}
.white--bx-90 {
  border-right: 90px #fff solid !important;
  border-left: 90px #fff solid !important;
}
.white--ba-91 {
  border: 91px #fff solid !important;
}
.white--bt-91 {
  border-top: 91px #fff solid !important;
}
.white--br-91 {
  border-right: 91px #fff solid !important;
}
.white--bl-91 {
  border-left: 91px #fff solid !important;
}
.white--bb-91 {
  border-bottom: 91px #fff solid !important;
}
.white--by-91 {
  border-top: 91px #fff solid !important;
  border-bottom: 91px #fff solid !important;
}
.white--bx-91 {
  border-right: 91px #fff solid !important;
  border-left: 91px #fff solid !important;
}
.white--ba-92 {
  border: 92px #fff solid !important;
}
.white--bt-92 {
  border-top: 92px #fff solid !important;
}
.white--br-92 {
  border-right: 92px #fff solid !important;
}
.white--bl-92 {
  border-left: 92px #fff solid !important;
}
.white--bb-92 {
  border-bottom: 92px #fff solid !important;
}
.white--by-92 {
  border-top: 92px #fff solid !important;
  border-bottom: 92px #fff solid !important;
}
.white--bx-92 {
  border-right: 92px #fff solid !important;
  border-left: 92px #fff solid !important;
}
.white--ba-93 {
  border: 93px #fff solid !important;
}
.white--bt-93 {
  border-top: 93px #fff solid !important;
}
.white--br-93 {
  border-right: 93px #fff solid !important;
}
.white--bl-93 {
  border-left: 93px #fff solid !important;
}
.white--bb-93 {
  border-bottom: 93px #fff solid !important;
}
.white--by-93 {
  border-top: 93px #fff solid !important;
  border-bottom: 93px #fff solid !important;
}
.white--bx-93 {
  border-right: 93px #fff solid !important;
  border-left: 93px #fff solid !important;
}
.white--ba-94 {
  border: 94px #fff solid !important;
}
.white--bt-94 {
  border-top: 94px #fff solid !important;
}
.white--br-94 {
  border-right: 94px #fff solid !important;
}
.white--bl-94 {
  border-left: 94px #fff solid !important;
}
.white--bb-94 {
  border-bottom: 94px #fff solid !important;
}
.white--by-94 {
  border-top: 94px #fff solid !important;
  border-bottom: 94px #fff solid !important;
}
.white--bx-94 {
  border-right: 94px #fff solid !important;
  border-left: 94px #fff solid !important;
}
.white--ba-95 {
  border: 95px #fff solid !important;
}
.white--bt-95 {
  border-top: 95px #fff solid !important;
}
.white--br-95 {
  border-right: 95px #fff solid !important;
}
.white--bl-95 {
  border-left: 95px #fff solid !important;
}
.white--bb-95 {
  border-bottom: 95px #fff solid !important;
}
.white--by-95 {
  border-top: 95px #fff solid !important;
  border-bottom: 95px #fff solid !important;
}
.white--bx-95 {
  border-right: 95px #fff solid !important;
  border-left: 95px #fff solid !important;
}
.white--ba-96 {
  border: 96px #fff solid !important;
}
.white--bt-96 {
  border-top: 96px #fff solid !important;
}
.white--br-96 {
  border-right: 96px #fff solid !important;
}
.white--bl-96 {
  border-left: 96px #fff solid !important;
}
.white--bb-96 {
  border-bottom: 96px #fff solid !important;
}
.white--by-96 {
  border-top: 96px #fff solid !important;
  border-bottom: 96px #fff solid !important;
}
.white--bx-96 {
  border-right: 96px #fff solid !important;
  border-left: 96px #fff solid !important;
}
.white--ba-97 {
  border: 97px #fff solid !important;
}
.white--bt-97 {
  border-top: 97px #fff solid !important;
}
.white--br-97 {
  border-right: 97px #fff solid !important;
}
.white--bl-97 {
  border-left: 97px #fff solid !important;
}
.white--bb-97 {
  border-bottom: 97px #fff solid !important;
}
.white--by-97 {
  border-top: 97px #fff solid !important;
  border-bottom: 97px #fff solid !important;
}
.white--bx-97 {
  border-right: 97px #fff solid !important;
  border-left: 97px #fff solid !important;
}
.white--ba-98 {
  border: 98px #fff solid !important;
}
.white--bt-98 {
  border-top: 98px #fff solid !important;
}
.white--br-98 {
  border-right: 98px #fff solid !important;
}
.white--bl-98 {
  border-left: 98px #fff solid !important;
}
.white--bb-98 {
  border-bottom: 98px #fff solid !important;
}
.white--by-98 {
  border-top: 98px #fff solid !important;
  border-bottom: 98px #fff solid !important;
}
.white--bx-98 {
  border-right: 98px #fff solid !important;
  border-left: 98px #fff solid !important;
}
.white--ba-99 {
  border: 99px #fff solid !important;
}
.white--bt-99 {
  border-top: 99px #fff solid !important;
}
.white--br-99 {
  border-right: 99px #fff solid !important;
}
.white--bl-99 {
  border-left: 99px #fff solid !important;
}
.white--bb-99 {
  border-bottom: 99px #fff solid !important;
}
.white--by-99 {
  border-top: 99px #fff solid !important;
  border-bottom: 99px #fff solid !important;
}
.white--bx-99 {
  border-right: 99px #fff solid !important;
  border-left: 99px #fff solid !important;
}
.white--ba-100 {
  border: 100px #fff solid !important;
}
.white--bt-100 {
  border-top: 100px #fff solid !important;
}
.white--br-100 {
  border-right: 100px #fff solid !important;
}
.white--bl-100 {
  border-left: 100px #fff solid !important;
}
.white--bb-100 {
  border-bottom: 100px #fff solid !important;
}
.white--by-100 {
  border-top: 100px #fff solid !important;
  border-bottom: 100px #fff solid !important;
}
.white--bx-100 {
  border-right: 100px #fff solid !important;
  border-left: 100px #fff solid !important;
}
.scarlet--ba-1 {
  border: 1px #ed1800 solid !important;
}
.scarlet--bt-1 {
  border-top: 1px #ed1800 solid !important;
}
.scarlet--br-1 {
  border-right: 1px #ed1800 solid !important;
}
.scarlet--bl-1 {
  border-left: 1px #ed1800 solid !important;
}
.scarlet--bb-1 {
  border-bottom: 1px #ed1800 solid !important;
}
.scarlet--by-1 {
  border-top: 1px #ed1800 solid !important;
  border-bottom: 1px #ed1800 solid !important;
}
.scarlet--bx-1 {
  border-right: 1px #ed1800 solid !important;
  border-left: 1px #ed1800 solid !important;
}
.scarlet--ba-2 {
  border: 2px #ed1800 solid !important;
}
.scarlet--bt-2 {
  border-top: 2px #ed1800 solid !important;
}
.scarlet--br-2 {
  border-right: 2px #ed1800 solid !important;
}
.scarlet--bl-2 {
  border-left: 2px #ed1800 solid !important;
}
.scarlet--bb-2 {
  border-bottom: 2px #ed1800 solid !important;
}
.scarlet--by-2 {
  border-top: 2px #ed1800 solid !important;
  border-bottom: 2px #ed1800 solid !important;
}
.scarlet--bx-2 {
  border-right: 2px #ed1800 solid !important;
  border-left: 2px #ed1800 solid !important;
}
.scarlet--ba-3 {
  border: 3px #ed1800 solid !important;
}
.scarlet--bt-3 {
  border-top: 3px #ed1800 solid !important;
}
.scarlet--br-3 {
  border-right: 3px #ed1800 solid !important;
}
.scarlet--bl-3 {
  border-left: 3px #ed1800 solid !important;
}
.scarlet--bb-3 {
  border-bottom: 3px #ed1800 solid !important;
}
.scarlet--by-3 {
  border-top: 3px #ed1800 solid !important;
  border-bottom: 3px #ed1800 solid !important;
}
.scarlet--bx-3 {
  border-right: 3px #ed1800 solid !important;
  border-left: 3px #ed1800 solid !important;
}
.scarlet--ba-4 {
  border: 4px #ed1800 solid !important;
}
.scarlet--bt-4 {
  border-top: 4px #ed1800 solid !important;
}
.scarlet--br-4 {
  border-right: 4px #ed1800 solid !important;
}
.scarlet--bl-4 {
  border-left: 4px #ed1800 solid !important;
}
.scarlet--bb-4 {
  border-bottom: 4px #ed1800 solid !important;
}
.scarlet--by-4 {
  border-top: 4px #ed1800 solid !important;
  border-bottom: 4px #ed1800 solid !important;
}
.scarlet--bx-4 {
  border-right: 4px #ed1800 solid !important;
  border-left: 4px #ed1800 solid !important;
}
.scarlet--ba-5 {
  border: 5px #ed1800 solid !important;
}
.scarlet--bt-5 {
  border-top: 5px #ed1800 solid !important;
}
.scarlet--br-5 {
  border-right: 5px #ed1800 solid !important;
}
.scarlet--bl-5 {
  border-left: 5px #ed1800 solid !important;
}
.scarlet--bb-5 {
  border-bottom: 5px #ed1800 solid !important;
}
.scarlet--by-5 {
  border-top: 5px #ed1800 solid !important;
  border-bottom: 5px #ed1800 solid !important;
}
.scarlet--bx-5 {
  border-right: 5px #ed1800 solid !important;
  border-left: 5px #ed1800 solid !important;
}
.scarlet--ba-6 {
  border: 6px #ed1800 solid !important;
}
.scarlet--bt-6 {
  border-top: 6px #ed1800 solid !important;
}
.scarlet--br-6 {
  border-right: 6px #ed1800 solid !important;
}
.scarlet--bl-6 {
  border-left: 6px #ed1800 solid !important;
}
.scarlet--bb-6 {
  border-bottom: 6px #ed1800 solid !important;
}
.scarlet--by-6 {
  border-top: 6px #ed1800 solid !important;
  border-bottom: 6px #ed1800 solid !important;
}
.scarlet--bx-6 {
  border-right: 6px #ed1800 solid !important;
  border-left: 6px #ed1800 solid !important;
}
.scarlet--ba-7 {
  border: 7px #ed1800 solid !important;
}
.scarlet--bt-7 {
  border-top: 7px #ed1800 solid !important;
}
.scarlet--br-7 {
  border-right: 7px #ed1800 solid !important;
}
.scarlet--bl-7 {
  border-left: 7px #ed1800 solid !important;
}
.scarlet--bb-7 {
  border-bottom: 7px #ed1800 solid !important;
}
.scarlet--by-7 {
  border-top: 7px #ed1800 solid !important;
  border-bottom: 7px #ed1800 solid !important;
}
.scarlet--bx-7 {
  border-right: 7px #ed1800 solid !important;
  border-left: 7px #ed1800 solid !important;
}
.scarlet--ba-8 {
  border: 8px #ed1800 solid !important;
}
.scarlet--bt-8 {
  border-top: 8px #ed1800 solid !important;
}
.scarlet--br-8 {
  border-right: 8px #ed1800 solid !important;
}
.scarlet--bl-8 {
  border-left: 8px #ed1800 solid !important;
}
.scarlet--bb-8 {
  border-bottom: 8px #ed1800 solid !important;
}
.scarlet--by-8 {
  border-top: 8px #ed1800 solid !important;
  border-bottom: 8px #ed1800 solid !important;
}
.scarlet--bx-8 {
  border-right: 8px #ed1800 solid !important;
  border-left: 8px #ed1800 solid !important;
}
.scarlet--ba-9 {
  border: 9px #ed1800 solid !important;
}
.scarlet--bt-9 {
  border-top: 9px #ed1800 solid !important;
}
.scarlet--br-9 {
  border-right: 9px #ed1800 solid !important;
}
.scarlet--bl-9 {
  border-left: 9px #ed1800 solid !important;
}
.scarlet--bb-9 {
  border-bottom: 9px #ed1800 solid !important;
}
.scarlet--by-9 {
  border-top: 9px #ed1800 solid !important;
  border-bottom: 9px #ed1800 solid !important;
}
.scarlet--bx-9 {
  border-right: 9px #ed1800 solid !important;
  border-left: 9px #ed1800 solid !important;
}
.scarlet--ba-10 {
  border: 10px #ed1800 solid !important;
}
.scarlet--bt-10 {
  border-top: 10px #ed1800 solid !important;
}
.scarlet--br-10 {
  border-right: 10px #ed1800 solid !important;
}
.scarlet--bl-10 {
  border-left: 10px #ed1800 solid !important;
}
.scarlet--bb-10 {
  border-bottom: 10px #ed1800 solid !important;
}
.scarlet--by-10 {
  border-top: 10px #ed1800 solid !important;
  border-bottom: 10px #ed1800 solid !important;
}
.scarlet--bx-10 {
  border-right: 10px #ed1800 solid !important;
  border-left: 10px #ed1800 solid !important;
}
.scarlet--ba-11 {
  border: 11px #ed1800 solid !important;
}
.scarlet--bt-11 {
  border-top: 11px #ed1800 solid !important;
}
.scarlet--br-11 {
  border-right: 11px #ed1800 solid !important;
}
.scarlet--bl-11 {
  border-left: 11px #ed1800 solid !important;
}
.scarlet--bb-11 {
  border-bottom: 11px #ed1800 solid !important;
}
.scarlet--by-11 {
  border-top: 11px #ed1800 solid !important;
  border-bottom: 11px #ed1800 solid !important;
}
.scarlet--bx-11 {
  border-right: 11px #ed1800 solid !important;
  border-left: 11px #ed1800 solid !important;
}
.scarlet--ba-12 {
  border: 12px #ed1800 solid !important;
}
.scarlet--bt-12 {
  border-top: 12px #ed1800 solid !important;
}
.scarlet--br-12 {
  border-right: 12px #ed1800 solid !important;
}
.scarlet--bl-12 {
  border-left: 12px #ed1800 solid !important;
}
.scarlet--bb-12 {
  border-bottom: 12px #ed1800 solid !important;
}
.scarlet--by-12 {
  border-top: 12px #ed1800 solid !important;
  border-bottom: 12px #ed1800 solid !important;
}
.scarlet--bx-12 {
  border-right: 12px #ed1800 solid !important;
  border-left: 12px #ed1800 solid !important;
}
.scarlet--ba-13 {
  border: 13px #ed1800 solid !important;
}
.scarlet--bt-13 {
  border-top: 13px #ed1800 solid !important;
}
.scarlet--br-13 {
  border-right: 13px #ed1800 solid !important;
}
.scarlet--bl-13 {
  border-left: 13px #ed1800 solid !important;
}
.scarlet--bb-13 {
  border-bottom: 13px #ed1800 solid !important;
}
.scarlet--by-13 {
  border-top: 13px #ed1800 solid !important;
  border-bottom: 13px #ed1800 solid !important;
}
.scarlet--bx-13 {
  border-right: 13px #ed1800 solid !important;
  border-left: 13px #ed1800 solid !important;
}
.scarlet--ba-14 {
  border: 14px #ed1800 solid !important;
}
.scarlet--bt-14 {
  border-top: 14px #ed1800 solid !important;
}
.scarlet--br-14 {
  border-right: 14px #ed1800 solid !important;
}
.scarlet--bl-14 {
  border-left: 14px #ed1800 solid !important;
}
.scarlet--bb-14 {
  border-bottom: 14px #ed1800 solid !important;
}
.scarlet--by-14 {
  border-top: 14px #ed1800 solid !important;
  border-bottom: 14px #ed1800 solid !important;
}
.scarlet--bx-14 {
  border-right: 14px #ed1800 solid !important;
  border-left: 14px #ed1800 solid !important;
}
.scarlet--ba-15 {
  border: 15px #ed1800 solid !important;
}
.scarlet--bt-15 {
  border-top: 15px #ed1800 solid !important;
}
.scarlet--br-15 {
  border-right: 15px #ed1800 solid !important;
}
.scarlet--bl-15 {
  border-left: 15px #ed1800 solid !important;
}
.scarlet--bb-15 {
  border-bottom: 15px #ed1800 solid !important;
}
.scarlet--by-15 {
  border-top: 15px #ed1800 solid !important;
  border-bottom: 15px #ed1800 solid !important;
}
.scarlet--bx-15 {
  border-right: 15px #ed1800 solid !important;
  border-left: 15px #ed1800 solid !important;
}
.scarlet--ba-16 {
  border: 16px #ed1800 solid !important;
}
.scarlet--bt-16 {
  border-top: 16px #ed1800 solid !important;
}
.scarlet--br-16 {
  border-right: 16px #ed1800 solid !important;
}
.scarlet--bl-16 {
  border-left: 16px #ed1800 solid !important;
}
.scarlet--bb-16 {
  border-bottom: 16px #ed1800 solid !important;
}
.scarlet--by-16 {
  border-top: 16px #ed1800 solid !important;
  border-bottom: 16px #ed1800 solid !important;
}
.scarlet--bx-16 {
  border-right: 16px #ed1800 solid !important;
  border-left: 16px #ed1800 solid !important;
}
.scarlet--ba-17 {
  border: 17px #ed1800 solid !important;
}
.scarlet--bt-17 {
  border-top: 17px #ed1800 solid !important;
}
.scarlet--br-17 {
  border-right: 17px #ed1800 solid !important;
}
.scarlet--bl-17 {
  border-left: 17px #ed1800 solid !important;
}
.scarlet--bb-17 {
  border-bottom: 17px #ed1800 solid !important;
}
.scarlet--by-17 {
  border-top: 17px #ed1800 solid !important;
  border-bottom: 17px #ed1800 solid !important;
}
.scarlet--bx-17 {
  border-right: 17px #ed1800 solid !important;
  border-left: 17px #ed1800 solid !important;
}
.scarlet--ba-18 {
  border: 18px #ed1800 solid !important;
}
.scarlet--bt-18 {
  border-top: 18px #ed1800 solid !important;
}
.scarlet--br-18 {
  border-right: 18px #ed1800 solid !important;
}
.scarlet--bl-18 {
  border-left: 18px #ed1800 solid !important;
}
.scarlet--bb-18 {
  border-bottom: 18px #ed1800 solid !important;
}
.scarlet--by-18 {
  border-top: 18px #ed1800 solid !important;
  border-bottom: 18px #ed1800 solid !important;
}
.scarlet--bx-18 {
  border-right: 18px #ed1800 solid !important;
  border-left: 18px #ed1800 solid !important;
}
.scarlet--ba-19 {
  border: 19px #ed1800 solid !important;
}
.scarlet--bt-19 {
  border-top: 19px #ed1800 solid !important;
}
.scarlet--br-19 {
  border-right: 19px #ed1800 solid !important;
}
.scarlet--bl-19 {
  border-left: 19px #ed1800 solid !important;
}
.scarlet--bb-19 {
  border-bottom: 19px #ed1800 solid !important;
}
.scarlet--by-19 {
  border-top: 19px #ed1800 solid !important;
  border-bottom: 19px #ed1800 solid !important;
}
.scarlet--bx-19 {
  border-right: 19px #ed1800 solid !important;
  border-left: 19px #ed1800 solid !important;
}
.scarlet--ba-20 {
  border: 20px #ed1800 solid !important;
}
.scarlet--bt-20 {
  border-top: 20px #ed1800 solid !important;
}
.scarlet--br-20 {
  border-right: 20px #ed1800 solid !important;
}
.scarlet--bl-20 {
  border-left: 20px #ed1800 solid !important;
}
.scarlet--bb-20 {
  border-bottom: 20px #ed1800 solid !important;
}
.scarlet--by-20 {
  border-top: 20px #ed1800 solid !important;
  border-bottom: 20px #ed1800 solid !important;
}
.scarlet--bx-20 {
  border-right: 20px #ed1800 solid !important;
  border-left: 20px #ed1800 solid !important;
}
.scarlet--ba-21 {
  border: 21px #ed1800 solid !important;
}
.scarlet--bt-21 {
  border-top: 21px #ed1800 solid !important;
}
.scarlet--br-21 {
  border-right: 21px #ed1800 solid !important;
}
.scarlet--bl-21 {
  border-left: 21px #ed1800 solid !important;
}
.scarlet--bb-21 {
  border-bottom: 21px #ed1800 solid !important;
}
.scarlet--by-21 {
  border-top: 21px #ed1800 solid !important;
  border-bottom: 21px #ed1800 solid !important;
}
.scarlet--bx-21 {
  border-right: 21px #ed1800 solid !important;
  border-left: 21px #ed1800 solid !important;
}
.scarlet--ba-22 {
  border: 22px #ed1800 solid !important;
}
.scarlet--bt-22 {
  border-top: 22px #ed1800 solid !important;
}
.scarlet--br-22 {
  border-right: 22px #ed1800 solid !important;
}
.scarlet--bl-22 {
  border-left: 22px #ed1800 solid !important;
}
.scarlet--bb-22 {
  border-bottom: 22px #ed1800 solid !important;
}
.scarlet--by-22 {
  border-top: 22px #ed1800 solid !important;
  border-bottom: 22px #ed1800 solid !important;
}
.scarlet--bx-22 {
  border-right: 22px #ed1800 solid !important;
  border-left: 22px #ed1800 solid !important;
}
.scarlet--ba-23 {
  border: 23px #ed1800 solid !important;
}
.scarlet--bt-23 {
  border-top: 23px #ed1800 solid !important;
}
.scarlet--br-23 {
  border-right: 23px #ed1800 solid !important;
}
.scarlet--bl-23 {
  border-left: 23px #ed1800 solid !important;
}
.scarlet--bb-23 {
  border-bottom: 23px #ed1800 solid !important;
}
.scarlet--by-23 {
  border-top: 23px #ed1800 solid !important;
  border-bottom: 23px #ed1800 solid !important;
}
.scarlet--bx-23 {
  border-right: 23px #ed1800 solid !important;
  border-left: 23px #ed1800 solid !important;
}
.scarlet--ba-24 {
  border: 24px #ed1800 solid !important;
}
.scarlet--bt-24 {
  border-top: 24px #ed1800 solid !important;
}
.scarlet--br-24 {
  border-right: 24px #ed1800 solid !important;
}
.scarlet--bl-24 {
  border-left: 24px #ed1800 solid !important;
}
.scarlet--bb-24 {
  border-bottom: 24px #ed1800 solid !important;
}
.scarlet--by-24 {
  border-top: 24px #ed1800 solid !important;
  border-bottom: 24px #ed1800 solid !important;
}
.scarlet--bx-24 {
  border-right: 24px #ed1800 solid !important;
  border-left: 24px #ed1800 solid !important;
}
.scarlet--ba-25 {
  border: 25px #ed1800 solid !important;
}
.scarlet--bt-25 {
  border-top: 25px #ed1800 solid !important;
}
.scarlet--br-25 {
  border-right: 25px #ed1800 solid !important;
}
.scarlet--bl-25 {
  border-left: 25px #ed1800 solid !important;
}
.scarlet--bb-25 {
  border-bottom: 25px #ed1800 solid !important;
}
.scarlet--by-25 {
  border-top: 25px #ed1800 solid !important;
  border-bottom: 25px #ed1800 solid !important;
}
.scarlet--bx-25 {
  border-right: 25px #ed1800 solid !important;
  border-left: 25px #ed1800 solid !important;
}
.scarlet--ba-26 {
  border: 26px #ed1800 solid !important;
}
.scarlet--bt-26 {
  border-top: 26px #ed1800 solid !important;
}
.scarlet--br-26 {
  border-right: 26px #ed1800 solid !important;
}
.scarlet--bl-26 {
  border-left: 26px #ed1800 solid !important;
}
.scarlet--bb-26 {
  border-bottom: 26px #ed1800 solid !important;
}
.scarlet--by-26 {
  border-top: 26px #ed1800 solid !important;
  border-bottom: 26px #ed1800 solid !important;
}
.scarlet--bx-26 {
  border-right: 26px #ed1800 solid !important;
  border-left: 26px #ed1800 solid !important;
}
.scarlet--ba-27 {
  border: 27px #ed1800 solid !important;
}
.scarlet--bt-27 {
  border-top: 27px #ed1800 solid !important;
}
.scarlet--br-27 {
  border-right: 27px #ed1800 solid !important;
}
.scarlet--bl-27 {
  border-left: 27px #ed1800 solid !important;
}
.scarlet--bb-27 {
  border-bottom: 27px #ed1800 solid !important;
}
.scarlet--by-27 {
  border-top: 27px #ed1800 solid !important;
  border-bottom: 27px #ed1800 solid !important;
}
.scarlet--bx-27 {
  border-right: 27px #ed1800 solid !important;
  border-left: 27px #ed1800 solid !important;
}
.scarlet--ba-28 {
  border: 28px #ed1800 solid !important;
}
.scarlet--bt-28 {
  border-top: 28px #ed1800 solid !important;
}
.scarlet--br-28 {
  border-right: 28px #ed1800 solid !important;
}
.scarlet--bl-28 {
  border-left: 28px #ed1800 solid !important;
}
.scarlet--bb-28 {
  border-bottom: 28px #ed1800 solid !important;
}
.scarlet--by-28 {
  border-top: 28px #ed1800 solid !important;
  border-bottom: 28px #ed1800 solid !important;
}
.scarlet--bx-28 {
  border-right: 28px #ed1800 solid !important;
  border-left: 28px #ed1800 solid !important;
}
.scarlet--ba-29 {
  border: 29px #ed1800 solid !important;
}
.scarlet--bt-29 {
  border-top: 29px #ed1800 solid !important;
}
.scarlet--br-29 {
  border-right: 29px #ed1800 solid !important;
}
.scarlet--bl-29 {
  border-left: 29px #ed1800 solid !important;
}
.scarlet--bb-29 {
  border-bottom: 29px #ed1800 solid !important;
}
.scarlet--by-29 {
  border-top: 29px #ed1800 solid !important;
  border-bottom: 29px #ed1800 solid !important;
}
.scarlet--bx-29 {
  border-right: 29px #ed1800 solid !important;
  border-left: 29px #ed1800 solid !important;
}
.scarlet--ba-30 {
  border: 30px #ed1800 solid !important;
}
.scarlet--bt-30 {
  border-top: 30px #ed1800 solid !important;
}
.scarlet--br-30 {
  border-right: 30px #ed1800 solid !important;
}
.scarlet--bl-30 {
  border-left: 30px #ed1800 solid !important;
}
.scarlet--bb-30 {
  border-bottom: 30px #ed1800 solid !important;
}
.scarlet--by-30 {
  border-top: 30px #ed1800 solid !important;
  border-bottom: 30px #ed1800 solid !important;
}
.scarlet--bx-30 {
  border-right: 30px #ed1800 solid !important;
  border-left: 30px #ed1800 solid !important;
}
.scarlet--ba-31 {
  border: 31px #ed1800 solid !important;
}
.scarlet--bt-31 {
  border-top: 31px #ed1800 solid !important;
}
.scarlet--br-31 {
  border-right: 31px #ed1800 solid !important;
}
.scarlet--bl-31 {
  border-left: 31px #ed1800 solid !important;
}
.scarlet--bb-31 {
  border-bottom: 31px #ed1800 solid !important;
}
.scarlet--by-31 {
  border-top: 31px #ed1800 solid !important;
  border-bottom: 31px #ed1800 solid !important;
}
.scarlet--bx-31 {
  border-right: 31px #ed1800 solid !important;
  border-left: 31px #ed1800 solid !important;
}
.scarlet--ba-32 {
  border: 32px #ed1800 solid !important;
}
.scarlet--bt-32 {
  border-top: 32px #ed1800 solid !important;
}
.scarlet--br-32 {
  border-right: 32px #ed1800 solid !important;
}
.scarlet--bl-32 {
  border-left: 32px #ed1800 solid !important;
}
.scarlet--bb-32 {
  border-bottom: 32px #ed1800 solid !important;
}
.scarlet--by-32 {
  border-top: 32px #ed1800 solid !important;
  border-bottom: 32px #ed1800 solid !important;
}
.scarlet--bx-32 {
  border-right: 32px #ed1800 solid !important;
  border-left: 32px #ed1800 solid !important;
}
.scarlet--ba-33 {
  border: 33px #ed1800 solid !important;
}
.scarlet--bt-33 {
  border-top: 33px #ed1800 solid !important;
}
.scarlet--br-33 {
  border-right: 33px #ed1800 solid !important;
}
.scarlet--bl-33 {
  border-left: 33px #ed1800 solid !important;
}
.scarlet--bb-33 {
  border-bottom: 33px #ed1800 solid !important;
}
.scarlet--by-33 {
  border-top: 33px #ed1800 solid !important;
  border-bottom: 33px #ed1800 solid !important;
}
.scarlet--bx-33 {
  border-right: 33px #ed1800 solid !important;
  border-left: 33px #ed1800 solid !important;
}
.scarlet--ba-34 {
  border: 34px #ed1800 solid !important;
}
.scarlet--bt-34 {
  border-top: 34px #ed1800 solid !important;
}
.scarlet--br-34 {
  border-right: 34px #ed1800 solid !important;
}
.scarlet--bl-34 {
  border-left: 34px #ed1800 solid !important;
}
.scarlet--bb-34 {
  border-bottom: 34px #ed1800 solid !important;
}
.scarlet--by-34 {
  border-top: 34px #ed1800 solid !important;
  border-bottom: 34px #ed1800 solid !important;
}
.scarlet--bx-34 {
  border-right: 34px #ed1800 solid !important;
  border-left: 34px #ed1800 solid !important;
}
.scarlet--ba-35 {
  border: 35px #ed1800 solid !important;
}
.scarlet--bt-35 {
  border-top: 35px #ed1800 solid !important;
}
.scarlet--br-35 {
  border-right: 35px #ed1800 solid !important;
}
.scarlet--bl-35 {
  border-left: 35px #ed1800 solid !important;
}
.scarlet--bb-35 {
  border-bottom: 35px #ed1800 solid !important;
}
.scarlet--by-35 {
  border-top: 35px #ed1800 solid !important;
  border-bottom: 35px #ed1800 solid !important;
}
.scarlet--bx-35 {
  border-right: 35px #ed1800 solid !important;
  border-left: 35px #ed1800 solid !important;
}
.scarlet--ba-36 {
  border: 36px #ed1800 solid !important;
}
.scarlet--bt-36 {
  border-top: 36px #ed1800 solid !important;
}
.scarlet--br-36 {
  border-right: 36px #ed1800 solid !important;
}
.scarlet--bl-36 {
  border-left: 36px #ed1800 solid !important;
}
.scarlet--bb-36 {
  border-bottom: 36px #ed1800 solid !important;
}
.scarlet--by-36 {
  border-top: 36px #ed1800 solid !important;
  border-bottom: 36px #ed1800 solid !important;
}
.scarlet--bx-36 {
  border-right: 36px #ed1800 solid !important;
  border-left: 36px #ed1800 solid !important;
}
.scarlet--ba-37 {
  border: 37px #ed1800 solid !important;
}
.scarlet--bt-37 {
  border-top: 37px #ed1800 solid !important;
}
.scarlet--br-37 {
  border-right: 37px #ed1800 solid !important;
}
.scarlet--bl-37 {
  border-left: 37px #ed1800 solid !important;
}
.scarlet--bb-37 {
  border-bottom: 37px #ed1800 solid !important;
}
.scarlet--by-37 {
  border-top: 37px #ed1800 solid !important;
  border-bottom: 37px #ed1800 solid !important;
}
.scarlet--bx-37 {
  border-right: 37px #ed1800 solid !important;
  border-left: 37px #ed1800 solid !important;
}
.scarlet--ba-38 {
  border: 38px #ed1800 solid !important;
}
.scarlet--bt-38 {
  border-top: 38px #ed1800 solid !important;
}
.scarlet--br-38 {
  border-right: 38px #ed1800 solid !important;
}
.scarlet--bl-38 {
  border-left: 38px #ed1800 solid !important;
}
.scarlet--bb-38 {
  border-bottom: 38px #ed1800 solid !important;
}
.scarlet--by-38 {
  border-top: 38px #ed1800 solid !important;
  border-bottom: 38px #ed1800 solid !important;
}
.scarlet--bx-38 {
  border-right: 38px #ed1800 solid !important;
  border-left: 38px #ed1800 solid !important;
}
.scarlet--ba-39 {
  border: 39px #ed1800 solid !important;
}
.scarlet--bt-39 {
  border-top: 39px #ed1800 solid !important;
}
.scarlet--br-39 {
  border-right: 39px #ed1800 solid !important;
}
.scarlet--bl-39 {
  border-left: 39px #ed1800 solid !important;
}
.scarlet--bb-39 {
  border-bottom: 39px #ed1800 solid !important;
}
.scarlet--by-39 {
  border-top: 39px #ed1800 solid !important;
  border-bottom: 39px #ed1800 solid !important;
}
.scarlet--bx-39 {
  border-right: 39px #ed1800 solid !important;
  border-left: 39px #ed1800 solid !important;
}
.scarlet--ba-40 {
  border: 40px #ed1800 solid !important;
}
.scarlet--bt-40 {
  border-top: 40px #ed1800 solid !important;
}
.scarlet--br-40 {
  border-right: 40px #ed1800 solid !important;
}
.scarlet--bl-40 {
  border-left: 40px #ed1800 solid !important;
}
.scarlet--bb-40 {
  border-bottom: 40px #ed1800 solid !important;
}
.scarlet--by-40 {
  border-top: 40px #ed1800 solid !important;
  border-bottom: 40px #ed1800 solid !important;
}
.scarlet--bx-40 {
  border-right: 40px #ed1800 solid !important;
  border-left: 40px #ed1800 solid !important;
}
.scarlet--ba-41 {
  border: 41px #ed1800 solid !important;
}
.scarlet--bt-41 {
  border-top: 41px #ed1800 solid !important;
}
.scarlet--br-41 {
  border-right: 41px #ed1800 solid !important;
}
.scarlet--bl-41 {
  border-left: 41px #ed1800 solid !important;
}
.scarlet--bb-41 {
  border-bottom: 41px #ed1800 solid !important;
}
.scarlet--by-41 {
  border-top: 41px #ed1800 solid !important;
  border-bottom: 41px #ed1800 solid !important;
}
.scarlet--bx-41 {
  border-right: 41px #ed1800 solid !important;
  border-left: 41px #ed1800 solid !important;
}
.scarlet--ba-42 {
  border: 42px #ed1800 solid !important;
}
.scarlet--bt-42 {
  border-top: 42px #ed1800 solid !important;
}
.scarlet--br-42 {
  border-right: 42px #ed1800 solid !important;
}
.scarlet--bl-42 {
  border-left: 42px #ed1800 solid !important;
}
.scarlet--bb-42 {
  border-bottom: 42px #ed1800 solid !important;
}
.scarlet--by-42 {
  border-top: 42px #ed1800 solid !important;
  border-bottom: 42px #ed1800 solid !important;
}
.scarlet--bx-42 {
  border-right: 42px #ed1800 solid !important;
  border-left: 42px #ed1800 solid !important;
}
.scarlet--ba-43 {
  border: 43px #ed1800 solid !important;
}
.scarlet--bt-43 {
  border-top: 43px #ed1800 solid !important;
}
.scarlet--br-43 {
  border-right: 43px #ed1800 solid !important;
}
.scarlet--bl-43 {
  border-left: 43px #ed1800 solid !important;
}
.scarlet--bb-43 {
  border-bottom: 43px #ed1800 solid !important;
}
.scarlet--by-43 {
  border-top: 43px #ed1800 solid !important;
  border-bottom: 43px #ed1800 solid !important;
}
.scarlet--bx-43 {
  border-right: 43px #ed1800 solid !important;
  border-left: 43px #ed1800 solid !important;
}
.scarlet--ba-44 {
  border: 44px #ed1800 solid !important;
}
.scarlet--bt-44 {
  border-top: 44px #ed1800 solid !important;
}
.scarlet--br-44 {
  border-right: 44px #ed1800 solid !important;
}
.scarlet--bl-44 {
  border-left: 44px #ed1800 solid !important;
}
.scarlet--bb-44 {
  border-bottom: 44px #ed1800 solid !important;
}
.scarlet--by-44 {
  border-top: 44px #ed1800 solid !important;
  border-bottom: 44px #ed1800 solid !important;
}
.scarlet--bx-44 {
  border-right: 44px #ed1800 solid !important;
  border-left: 44px #ed1800 solid !important;
}
.scarlet--ba-45 {
  border: 45px #ed1800 solid !important;
}
.scarlet--bt-45 {
  border-top: 45px #ed1800 solid !important;
}
.scarlet--br-45 {
  border-right: 45px #ed1800 solid !important;
}
.scarlet--bl-45 {
  border-left: 45px #ed1800 solid !important;
}
.scarlet--bb-45 {
  border-bottom: 45px #ed1800 solid !important;
}
.scarlet--by-45 {
  border-top: 45px #ed1800 solid !important;
  border-bottom: 45px #ed1800 solid !important;
}
.scarlet--bx-45 {
  border-right: 45px #ed1800 solid !important;
  border-left: 45px #ed1800 solid !important;
}
.scarlet--ba-46 {
  border: 46px #ed1800 solid !important;
}
.scarlet--bt-46 {
  border-top: 46px #ed1800 solid !important;
}
.scarlet--br-46 {
  border-right: 46px #ed1800 solid !important;
}
.scarlet--bl-46 {
  border-left: 46px #ed1800 solid !important;
}
.scarlet--bb-46 {
  border-bottom: 46px #ed1800 solid !important;
}
.scarlet--by-46 {
  border-top: 46px #ed1800 solid !important;
  border-bottom: 46px #ed1800 solid !important;
}
.scarlet--bx-46 {
  border-right: 46px #ed1800 solid !important;
  border-left: 46px #ed1800 solid !important;
}
.scarlet--ba-47 {
  border: 47px #ed1800 solid !important;
}
.scarlet--bt-47 {
  border-top: 47px #ed1800 solid !important;
}
.scarlet--br-47 {
  border-right: 47px #ed1800 solid !important;
}
.scarlet--bl-47 {
  border-left: 47px #ed1800 solid !important;
}
.scarlet--bb-47 {
  border-bottom: 47px #ed1800 solid !important;
}
.scarlet--by-47 {
  border-top: 47px #ed1800 solid !important;
  border-bottom: 47px #ed1800 solid !important;
}
.scarlet--bx-47 {
  border-right: 47px #ed1800 solid !important;
  border-left: 47px #ed1800 solid !important;
}
.scarlet--ba-48 {
  border: 48px #ed1800 solid !important;
}
.scarlet--bt-48 {
  border-top: 48px #ed1800 solid !important;
}
.scarlet--br-48 {
  border-right: 48px #ed1800 solid !important;
}
.scarlet--bl-48 {
  border-left: 48px #ed1800 solid !important;
}
.scarlet--bb-48 {
  border-bottom: 48px #ed1800 solid !important;
}
.scarlet--by-48 {
  border-top: 48px #ed1800 solid !important;
  border-bottom: 48px #ed1800 solid !important;
}
.scarlet--bx-48 {
  border-right: 48px #ed1800 solid !important;
  border-left: 48px #ed1800 solid !important;
}
.scarlet--ba-49 {
  border: 49px #ed1800 solid !important;
}
.scarlet--bt-49 {
  border-top: 49px #ed1800 solid !important;
}
.scarlet--br-49 {
  border-right: 49px #ed1800 solid !important;
}
.scarlet--bl-49 {
  border-left: 49px #ed1800 solid !important;
}
.scarlet--bb-49 {
  border-bottom: 49px #ed1800 solid !important;
}
.scarlet--by-49 {
  border-top: 49px #ed1800 solid !important;
  border-bottom: 49px #ed1800 solid !important;
}
.scarlet--bx-49 {
  border-right: 49px #ed1800 solid !important;
  border-left: 49px #ed1800 solid !important;
}
.scarlet--ba-50 {
  border: 50px #ed1800 solid !important;
}
.scarlet--bt-50 {
  border-top: 50px #ed1800 solid !important;
}
.scarlet--br-50 {
  border-right: 50px #ed1800 solid !important;
}
.scarlet--bl-50 {
  border-left: 50px #ed1800 solid !important;
}
.scarlet--bb-50 {
  border-bottom: 50px #ed1800 solid !important;
}
.scarlet--by-50 {
  border-top: 50px #ed1800 solid !important;
  border-bottom: 50px #ed1800 solid !important;
}
.scarlet--bx-50 {
  border-right: 50px #ed1800 solid !important;
  border-left: 50px #ed1800 solid !important;
}
.scarlet--ba-51 {
  border: 51px #ed1800 solid !important;
}
.scarlet--bt-51 {
  border-top: 51px #ed1800 solid !important;
}
.scarlet--br-51 {
  border-right: 51px #ed1800 solid !important;
}
.scarlet--bl-51 {
  border-left: 51px #ed1800 solid !important;
}
.scarlet--bb-51 {
  border-bottom: 51px #ed1800 solid !important;
}
.scarlet--by-51 {
  border-top: 51px #ed1800 solid !important;
  border-bottom: 51px #ed1800 solid !important;
}
.scarlet--bx-51 {
  border-right: 51px #ed1800 solid !important;
  border-left: 51px #ed1800 solid !important;
}
.scarlet--ba-52 {
  border: 52px #ed1800 solid !important;
}
.scarlet--bt-52 {
  border-top: 52px #ed1800 solid !important;
}
.scarlet--br-52 {
  border-right: 52px #ed1800 solid !important;
}
.scarlet--bl-52 {
  border-left: 52px #ed1800 solid !important;
}
.scarlet--bb-52 {
  border-bottom: 52px #ed1800 solid !important;
}
.scarlet--by-52 {
  border-top: 52px #ed1800 solid !important;
  border-bottom: 52px #ed1800 solid !important;
}
.scarlet--bx-52 {
  border-right: 52px #ed1800 solid !important;
  border-left: 52px #ed1800 solid !important;
}
.scarlet--ba-53 {
  border: 53px #ed1800 solid !important;
}
.scarlet--bt-53 {
  border-top: 53px #ed1800 solid !important;
}
.scarlet--br-53 {
  border-right: 53px #ed1800 solid !important;
}
.scarlet--bl-53 {
  border-left: 53px #ed1800 solid !important;
}
.scarlet--bb-53 {
  border-bottom: 53px #ed1800 solid !important;
}
.scarlet--by-53 {
  border-top: 53px #ed1800 solid !important;
  border-bottom: 53px #ed1800 solid !important;
}
.scarlet--bx-53 {
  border-right: 53px #ed1800 solid !important;
  border-left: 53px #ed1800 solid !important;
}
.scarlet--ba-54 {
  border: 54px #ed1800 solid !important;
}
.scarlet--bt-54 {
  border-top: 54px #ed1800 solid !important;
}
.scarlet--br-54 {
  border-right: 54px #ed1800 solid !important;
}
.scarlet--bl-54 {
  border-left: 54px #ed1800 solid !important;
}
.scarlet--bb-54 {
  border-bottom: 54px #ed1800 solid !important;
}
.scarlet--by-54 {
  border-top: 54px #ed1800 solid !important;
  border-bottom: 54px #ed1800 solid !important;
}
.scarlet--bx-54 {
  border-right: 54px #ed1800 solid !important;
  border-left: 54px #ed1800 solid !important;
}
.scarlet--ba-55 {
  border: 55px #ed1800 solid !important;
}
.scarlet--bt-55 {
  border-top: 55px #ed1800 solid !important;
}
.scarlet--br-55 {
  border-right: 55px #ed1800 solid !important;
}
.scarlet--bl-55 {
  border-left: 55px #ed1800 solid !important;
}
.scarlet--bb-55 {
  border-bottom: 55px #ed1800 solid !important;
}
.scarlet--by-55 {
  border-top: 55px #ed1800 solid !important;
  border-bottom: 55px #ed1800 solid !important;
}
.scarlet--bx-55 {
  border-right: 55px #ed1800 solid !important;
  border-left: 55px #ed1800 solid !important;
}
.scarlet--ba-56 {
  border: 56px #ed1800 solid !important;
}
.scarlet--bt-56 {
  border-top: 56px #ed1800 solid !important;
}
.scarlet--br-56 {
  border-right: 56px #ed1800 solid !important;
}
.scarlet--bl-56 {
  border-left: 56px #ed1800 solid !important;
}
.scarlet--bb-56 {
  border-bottom: 56px #ed1800 solid !important;
}
.scarlet--by-56 {
  border-top: 56px #ed1800 solid !important;
  border-bottom: 56px #ed1800 solid !important;
}
.scarlet--bx-56 {
  border-right: 56px #ed1800 solid !important;
  border-left: 56px #ed1800 solid !important;
}
.scarlet--ba-57 {
  border: 57px #ed1800 solid !important;
}
.scarlet--bt-57 {
  border-top: 57px #ed1800 solid !important;
}
.scarlet--br-57 {
  border-right: 57px #ed1800 solid !important;
}
.scarlet--bl-57 {
  border-left: 57px #ed1800 solid !important;
}
.scarlet--bb-57 {
  border-bottom: 57px #ed1800 solid !important;
}
.scarlet--by-57 {
  border-top: 57px #ed1800 solid !important;
  border-bottom: 57px #ed1800 solid !important;
}
.scarlet--bx-57 {
  border-right: 57px #ed1800 solid !important;
  border-left: 57px #ed1800 solid !important;
}
.scarlet--ba-58 {
  border: 58px #ed1800 solid !important;
}
.scarlet--bt-58 {
  border-top: 58px #ed1800 solid !important;
}
.scarlet--br-58 {
  border-right: 58px #ed1800 solid !important;
}
.scarlet--bl-58 {
  border-left: 58px #ed1800 solid !important;
}
.scarlet--bb-58 {
  border-bottom: 58px #ed1800 solid !important;
}
.scarlet--by-58 {
  border-top: 58px #ed1800 solid !important;
  border-bottom: 58px #ed1800 solid !important;
}
.scarlet--bx-58 {
  border-right: 58px #ed1800 solid !important;
  border-left: 58px #ed1800 solid !important;
}
.scarlet--ba-59 {
  border: 59px #ed1800 solid !important;
}
.scarlet--bt-59 {
  border-top: 59px #ed1800 solid !important;
}
.scarlet--br-59 {
  border-right: 59px #ed1800 solid !important;
}
.scarlet--bl-59 {
  border-left: 59px #ed1800 solid !important;
}
.scarlet--bb-59 {
  border-bottom: 59px #ed1800 solid !important;
}
.scarlet--by-59 {
  border-top: 59px #ed1800 solid !important;
  border-bottom: 59px #ed1800 solid !important;
}
.scarlet--bx-59 {
  border-right: 59px #ed1800 solid !important;
  border-left: 59px #ed1800 solid !important;
}
.scarlet--ba-60 {
  border: 60px #ed1800 solid !important;
}
.scarlet--bt-60 {
  border-top: 60px #ed1800 solid !important;
}
.scarlet--br-60 {
  border-right: 60px #ed1800 solid !important;
}
.scarlet--bl-60 {
  border-left: 60px #ed1800 solid !important;
}
.scarlet--bb-60 {
  border-bottom: 60px #ed1800 solid !important;
}
.scarlet--by-60 {
  border-top: 60px #ed1800 solid !important;
  border-bottom: 60px #ed1800 solid !important;
}
.scarlet--bx-60 {
  border-right: 60px #ed1800 solid !important;
  border-left: 60px #ed1800 solid !important;
}
.scarlet--ba-61 {
  border: 61px #ed1800 solid !important;
}
.scarlet--bt-61 {
  border-top: 61px #ed1800 solid !important;
}
.scarlet--br-61 {
  border-right: 61px #ed1800 solid !important;
}
.scarlet--bl-61 {
  border-left: 61px #ed1800 solid !important;
}
.scarlet--bb-61 {
  border-bottom: 61px #ed1800 solid !important;
}
.scarlet--by-61 {
  border-top: 61px #ed1800 solid !important;
  border-bottom: 61px #ed1800 solid !important;
}
.scarlet--bx-61 {
  border-right: 61px #ed1800 solid !important;
  border-left: 61px #ed1800 solid !important;
}
.scarlet--ba-62 {
  border: 62px #ed1800 solid !important;
}
.scarlet--bt-62 {
  border-top: 62px #ed1800 solid !important;
}
.scarlet--br-62 {
  border-right: 62px #ed1800 solid !important;
}
.scarlet--bl-62 {
  border-left: 62px #ed1800 solid !important;
}
.scarlet--bb-62 {
  border-bottom: 62px #ed1800 solid !important;
}
.scarlet--by-62 {
  border-top: 62px #ed1800 solid !important;
  border-bottom: 62px #ed1800 solid !important;
}
.scarlet--bx-62 {
  border-right: 62px #ed1800 solid !important;
  border-left: 62px #ed1800 solid !important;
}
.scarlet--ba-63 {
  border: 63px #ed1800 solid !important;
}
.scarlet--bt-63 {
  border-top: 63px #ed1800 solid !important;
}
.scarlet--br-63 {
  border-right: 63px #ed1800 solid !important;
}
.scarlet--bl-63 {
  border-left: 63px #ed1800 solid !important;
}
.scarlet--bb-63 {
  border-bottom: 63px #ed1800 solid !important;
}
.scarlet--by-63 {
  border-top: 63px #ed1800 solid !important;
  border-bottom: 63px #ed1800 solid !important;
}
.scarlet--bx-63 {
  border-right: 63px #ed1800 solid !important;
  border-left: 63px #ed1800 solid !important;
}
.scarlet--ba-64 {
  border: 64px #ed1800 solid !important;
}
.scarlet--bt-64 {
  border-top: 64px #ed1800 solid !important;
}
.scarlet--br-64 {
  border-right: 64px #ed1800 solid !important;
}
.scarlet--bl-64 {
  border-left: 64px #ed1800 solid !important;
}
.scarlet--bb-64 {
  border-bottom: 64px #ed1800 solid !important;
}
.scarlet--by-64 {
  border-top: 64px #ed1800 solid !important;
  border-bottom: 64px #ed1800 solid !important;
}
.scarlet--bx-64 {
  border-right: 64px #ed1800 solid !important;
  border-left: 64px #ed1800 solid !important;
}
.scarlet--ba-65 {
  border: 65px #ed1800 solid !important;
}
.scarlet--bt-65 {
  border-top: 65px #ed1800 solid !important;
}
.scarlet--br-65 {
  border-right: 65px #ed1800 solid !important;
}
.scarlet--bl-65 {
  border-left: 65px #ed1800 solid !important;
}
.scarlet--bb-65 {
  border-bottom: 65px #ed1800 solid !important;
}
.scarlet--by-65 {
  border-top: 65px #ed1800 solid !important;
  border-bottom: 65px #ed1800 solid !important;
}
.scarlet--bx-65 {
  border-right: 65px #ed1800 solid !important;
  border-left: 65px #ed1800 solid !important;
}
.scarlet--ba-66 {
  border: 66px #ed1800 solid !important;
}
.scarlet--bt-66 {
  border-top: 66px #ed1800 solid !important;
}
.scarlet--br-66 {
  border-right: 66px #ed1800 solid !important;
}
.scarlet--bl-66 {
  border-left: 66px #ed1800 solid !important;
}
.scarlet--bb-66 {
  border-bottom: 66px #ed1800 solid !important;
}
.scarlet--by-66 {
  border-top: 66px #ed1800 solid !important;
  border-bottom: 66px #ed1800 solid !important;
}
.scarlet--bx-66 {
  border-right: 66px #ed1800 solid !important;
  border-left: 66px #ed1800 solid !important;
}
.scarlet--ba-67 {
  border: 67px #ed1800 solid !important;
}
.scarlet--bt-67 {
  border-top: 67px #ed1800 solid !important;
}
.scarlet--br-67 {
  border-right: 67px #ed1800 solid !important;
}
.scarlet--bl-67 {
  border-left: 67px #ed1800 solid !important;
}
.scarlet--bb-67 {
  border-bottom: 67px #ed1800 solid !important;
}
.scarlet--by-67 {
  border-top: 67px #ed1800 solid !important;
  border-bottom: 67px #ed1800 solid !important;
}
.scarlet--bx-67 {
  border-right: 67px #ed1800 solid !important;
  border-left: 67px #ed1800 solid !important;
}
.scarlet--ba-68 {
  border: 68px #ed1800 solid !important;
}
.scarlet--bt-68 {
  border-top: 68px #ed1800 solid !important;
}
.scarlet--br-68 {
  border-right: 68px #ed1800 solid !important;
}
.scarlet--bl-68 {
  border-left: 68px #ed1800 solid !important;
}
.scarlet--bb-68 {
  border-bottom: 68px #ed1800 solid !important;
}
.scarlet--by-68 {
  border-top: 68px #ed1800 solid !important;
  border-bottom: 68px #ed1800 solid !important;
}
.scarlet--bx-68 {
  border-right: 68px #ed1800 solid !important;
  border-left: 68px #ed1800 solid !important;
}
.scarlet--ba-69 {
  border: 69px #ed1800 solid !important;
}
.scarlet--bt-69 {
  border-top: 69px #ed1800 solid !important;
}
.scarlet--br-69 {
  border-right: 69px #ed1800 solid !important;
}
.scarlet--bl-69 {
  border-left: 69px #ed1800 solid !important;
}
.scarlet--bb-69 {
  border-bottom: 69px #ed1800 solid !important;
}
.scarlet--by-69 {
  border-top: 69px #ed1800 solid !important;
  border-bottom: 69px #ed1800 solid !important;
}
.scarlet--bx-69 {
  border-right: 69px #ed1800 solid !important;
  border-left: 69px #ed1800 solid !important;
}
.scarlet--ba-70 {
  border: 70px #ed1800 solid !important;
}
.scarlet--bt-70 {
  border-top: 70px #ed1800 solid !important;
}
.scarlet--br-70 {
  border-right: 70px #ed1800 solid !important;
}
.scarlet--bl-70 {
  border-left: 70px #ed1800 solid !important;
}
.scarlet--bb-70 {
  border-bottom: 70px #ed1800 solid !important;
}
.scarlet--by-70 {
  border-top: 70px #ed1800 solid !important;
  border-bottom: 70px #ed1800 solid !important;
}
.scarlet--bx-70 {
  border-right: 70px #ed1800 solid !important;
  border-left: 70px #ed1800 solid !important;
}
.scarlet--ba-71 {
  border: 71px #ed1800 solid !important;
}
.scarlet--bt-71 {
  border-top: 71px #ed1800 solid !important;
}
.scarlet--br-71 {
  border-right: 71px #ed1800 solid !important;
}
.scarlet--bl-71 {
  border-left: 71px #ed1800 solid !important;
}
.scarlet--bb-71 {
  border-bottom: 71px #ed1800 solid !important;
}
.scarlet--by-71 {
  border-top: 71px #ed1800 solid !important;
  border-bottom: 71px #ed1800 solid !important;
}
.scarlet--bx-71 {
  border-right: 71px #ed1800 solid !important;
  border-left: 71px #ed1800 solid !important;
}
.scarlet--ba-72 {
  border: 72px #ed1800 solid !important;
}
.scarlet--bt-72 {
  border-top: 72px #ed1800 solid !important;
}
.scarlet--br-72 {
  border-right: 72px #ed1800 solid !important;
}
.scarlet--bl-72 {
  border-left: 72px #ed1800 solid !important;
}
.scarlet--bb-72 {
  border-bottom: 72px #ed1800 solid !important;
}
.scarlet--by-72 {
  border-top: 72px #ed1800 solid !important;
  border-bottom: 72px #ed1800 solid !important;
}
.scarlet--bx-72 {
  border-right: 72px #ed1800 solid !important;
  border-left: 72px #ed1800 solid !important;
}
.scarlet--ba-73 {
  border: 73px #ed1800 solid !important;
}
.scarlet--bt-73 {
  border-top: 73px #ed1800 solid !important;
}
.scarlet--br-73 {
  border-right: 73px #ed1800 solid !important;
}
.scarlet--bl-73 {
  border-left: 73px #ed1800 solid !important;
}
.scarlet--bb-73 {
  border-bottom: 73px #ed1800 solid !important;
}
.scarlet--by-73 {
  border-top: 73px #ed1800 solid !important;
  border-bottom: 73px #ed1800 solid !important;
}
.scarlet--bx-73 {
  border-right: 73px #ed1800 solid !important;
  border-left: 73px #ed1800 solid !important;
}
.scarlet--ba-74 {
  border: 74px #ed1800 solid !important;
}
.scarlet--bt-74 {
  border-top: 74px #ed1800 solid !important;
}
.scarlet--br-74 {
  border-right: 74px #ed1800 solid !important;
}
.scarlet--bl-74 {
  border-left: 74px #ed1800 solid !important;
}
.scarlet--bb-74 {
  border-bottom: 74px #ed1800 solid !important;
}
.scarlet--by-74 {
  border-top: 74px #ed1800 solid !important;
  border-bottom: 74px #ed1800 solid !important;
}
.scarlet--bx-74 {
  border-right: 74px #ed1800 solid !important;
  border-left: 74px #ed1800 solid !important;
}
.scarlet--ba-75 {
  border: 75px #ed1800 solid !important;
}
.scarlet--bt-75 {
  border-top: 75px #ed1800 solid !important;
}
.scarlet--br-75 {
  border-right: 75px #ed1800 solid !important;
}
.scarlet--bl-75 {
  border-left: 75px #ed1800 solid !important;
}
.scarlet--bb-75 {
  border-bottom: 75px #ed1800 solid !important;
}
.scarlet--by-75 {
  border-top: 75px #ed1800 solid !important;
  border-bottom: 75px #ed1800 solid !important;
}
.scarlet--bx-75 {
  border-right: 75px #ed1800 solid !important;
  border-left: 75px #ed1800 solid !important;
}
.scarlet--ba-76 {
  border: 76px #ed1800 solid !important;
}
.scarlet--bt-76 {
  border-top: 76px #ed1800 solid !important;
}
.scarlet--br-76 {
  border-right: 76px #ed1800 solid !important;
}
.scarlet--bl-76 {
  border-left: 76px #ed1800 solid !important;
}
.scarlet--bb-76 {
  border-bottom: 76px #ed1800 solid !important;
}
.scarlet--by-76 {
  border-top: 76px #ed1800 solid !important;
  border-bottom: 76px #ed1800 solid !important;
}
.scarlet--bx-76 {
  border-right: 76px #ed1800 solid !important;
  border-left: 76px #ed1800 solid !important;
}
.scarlet--ba-77 {
  border: 77px #ed1800 solid !important;
}
.scarlet--bt-77 {
  border-top: 77px #ed1800 solid !important;
}
.scarlet--br-77 {
  border-right: 77px #ed1800 solid !important;
}
.scarlet--bl-77 {
  border-left: 77px #ed1800 solid !important;
}
.scarlet--bb-77 {
  border-bottom: 77px #ed1800 solid !important;
}
.scarlet--by-77 {
  border-top: 77px #ed1800 solid !important;
  border-bottom: 77px #ed1800 solid !important;
}
.scarlet--bx-77 {
  border-right: 77px #ed1800 solid !important;
  border-left: 77px #ed1800 solid !important;
}
.scarlet--ba-78 {
  border: 78px #ed1800 solid !important;
}
.scarlet--bt-78 {
  border-top: 78px #ed1800 solid !important;
}
.scarlet--br-78 {
  border-right: 78px #ed1800 solid !important;
}
.scarlet--bl-78 {
  border-left: 78px #ed1800 solid !important;
}
.scarlet--bb-78 {
  border-bottom: 78px #ed1800 solid !important;
}
.scarlet--by-78 {
  border-top: 78px #ed1800 solid !important;
  border-bottom: 78px #ed1800 solid !important;
}
.scarlet--bx-78 {
  border-right: 78px #ed1800 solid !important;
  border-left: 78px #ed1800 solid !important;
}
.scarlet--ba-79 {
  border: 79px #ed1800 solid !important;
}
.scarlet--bt-79 {
  border-top: 79px #ed1800 solid !important;
}
.scarlet--br-79 {
  border-right: 79px #ed1800 solid !important;
}
.scarlet--bl-79 {
  border-left: 79px #ed1800 solid !important;
}
.scarlet--bb-79 {
  border-bottom: 79px #ed1800 solid !important;
}
.scarlet--by-79 {
  border-top: 79px #ed1800 solid !important;
  border-bottom: 79px #ed1800 solid !important;
}
.scarlet--bx-79 {
  border-right: 79px #ed1800 solid !important;
  border-left: 79px #ed1800 solid !important;
}
.scarlet--ba-80 {
  border: 80px #ed1800 solid !important;
}
.scarlet--bt-80 {
  border-top: 80px #ed1800 solid !important;
}
.scarlet--br-80 {
  border-right: 80px #ed1800 solid !important;
}
.scarlet--bl-80 {
  border-left: 80px #ed1800 solid !important;
}
.scarlet--bb-80 {
  border-bottom: 80px #ed1800 solid !important;
}
.scarlet--by-80 {
  border-top: 80px #ed1800 solid !important;
  border-bottom: 80px #ed1800 solid !important;
}
.scarlet--bx-80 {
  border-right: 80px #ed1800 solid !important;
  border-left: 80px #ed1800 solid !important;
}
.scarlet--ba-81 {
  border: 81px #ed1800 solid !important;
}
.scarlet--bt-81 {
  border-top: 81px #ed1800 solid !important;
}
.scarlet--br-81 {
  border-right: 81px #ed1800 solid !important;
}
.scarlet--bl-81 {
  border-left: 81px #ed1800 solid !important;
}
.scarlet--bb-81 {
  border-bottom: 81px #ed1800 solid !important;
}
.scarlet--by-81 {
  border-top: 81px #ed1800 solid !important;
  border-bottom: 81px #ed1800 solid !important;
}
.scarlet--bx-81 {
  border-right: 81px #ed1800 solid !important;
  border-left: 81px #ed1800 solid !important;
}
.scarlet--ba-82 {
  border: 82px #ed1800 solid !important;
}
.scarlet--bt-82 {
  border-top: 82px #ed1800 solid !important;
}
.scarlet--br-82 {
  border-right: 82px #ed1800 solid !important;
}
.scarlet--bl-82 {
  border-left: 82px #ed1800 solid !important;
}
.scarlet--bb-82 {
  border-bottom: 82px #ed1800 solid !important;
}
.scarlet--by-82 {
  border-top: 82px #ed1800 solid !important;
  border-bottom: 82px #ed1800 solid !important;
}
.scarlet--bx-82 {
  border-right: 82px #ed1800 solid !important;
  border-left: 82px #ed1800 solid !important;
}
.scarlet--ba-83 {
  border: 83px #ed1800 solid !important;
}
.scarlet--bt-83 {
  border-top: 83px #ed1800 solid !important;
}
.scarlet--br-83 {
  border-right: 83px #ed1800 solid !important;
}
.scarlet--bl-83 {
  border-left: 83px #ed1800 solid !important;
}
.scarlet--bb-83 {
  border-bottom: 83px #ed1800 solid !important;
}
.scarlet--by-83 {
  border-top: 83px #ed1800 solid !important;
  border-bottom: 83px #ed1800 solid !important;
}
.scarlet--bx-83 {
  border-right: 83px #ed1800 solid !important;
  border-left: 83px #ed1800 solid !important;
}
.scarlet--ba-84 {
  border: 84px #ed1800 solid !important;
}
.scarlet--bt-84 {
  border-top: 84px #ed1800 solid !important;
}
.scarlet--br-84 {
  border-right: 84px #ed1800 solid !important;
}
.scarlet--bl-84 {
  border-left: 84px #ed1800 solid !important;
}
.scarlet--bb-84 {
  border-bottom: 84px #ed1800 solid !important;
}
.scarlet--by-84 {
  border-top: 84px #ed1800 solid !important;
  border-bottom: 84px #ed1800 solid !important;
}
.scarlet--bx-84 {
  border-right: 84px #ed1800 solid !important;
  border-left: 84px #ed1800 solid !important;
}
.scarlet--ba-85 {
  border: 85px #ed1800 solid !important;
}
.scarlet--bt-85 {
  border-top: 85px #ed1800 solid !important;
}
.scarlet--br-85 {
  border-right: 85px #ed1800 solid !important;
}
.scarlet--bl-85 {
  border-left: 85px #ed1800 solid !important;
}
.scarlet--bb-85 {
  border-bottom: 85px #ed1800 solid !important;
}
.scarlet--by-85 {
  border-top: 85px #ed1800 solid !important;
  border-bottom: 85px #ed1800 solid !important;
}
.scarlet--bx-85 {
  border-right: 85px #ed1800 solid !important;
  border-left: 85px #ed1800 solid !important;
}
.scarlet--ba-86 {
  border: 86px #ed1800 solid !important;
}
.scarlet--bt-86 {
  border-top: 86px #ed1800 solid !important;
}
.scarlet--br-86 {
  border-right: 86px #ed1800 solid !important;
}
.scarlet--bl-86 {
  border-left: 86px #ed1800 solid !important;
}
.scarlet--bb-86 {
  border-bottom: 86px #ed1800 solid !important;
}
.scarlet--by-86 {
  border-top: 86px #ed1800 solid !important;
  border-bottom: 86px #ed1800 solid !important;
}
.scarlet--bx-86 {
  border-right: 86px #ed1800 solid !important;
  border-left: 86px #ed1800 solid !important;
}
.scarlet--ba-87 {
  border: 87px #ed1800 solid !important;
}
.scarlet--bt-87 {
  border-top: 87px #ed1800 solid !important;
}
.scarlet--br-87 {
  border-right: 87px #ed1800 solid !important;
}
.scarlet--bl-87 {
  border-left: 87px #ed1800 solid !important;
}
.scarlet--bb-87 {
  border-bottom: 87px #ed1800 solid !important;
}
.scarlet--by-87 {
  border-top: 87px #ed1800 solid !important;
  border-bottom: 87px #ed1800 solid !important;
}
.scarlet--bx-87 {
  border-right: 87px #ed1800 solid !important;
  border-left: 87px #ed1800 solid !important;
}
.scarlet--ba-88 {
  border: 88px #ed1800 solid !important;
}
.scarlet--bt-88 {
  border-top: 88px #ed1800 solid !important;
}
.scarlet--br-88 {
  border-right: 88px #ed1800 solid !important;
}
.scarlet--bl-88 {
  border-left: 88px #ed1800 solid !important;
}
.scarlet--bb-88 {
  border-bottom: 88px #ed1800 solid !important;
}
.scarlet--by-88 {
  border-top: 88px #ed1800 solid !important;
  border-bottom: 88px #ed1800 solid !important;
}
.scarlet--bx-88 {
  border-right: 88px #ed1800 solid !important;
  border-left: 88px #ed1800 solid !important;
}
.scarlet--ba-89 {
  border: 89px #ed1800 solid !important;
}
.scarlet--bt-89 {
  border-top: 89px #ed1800 solid !important;
}
.scarlet--br-89 {
  border-right: 89px #ed1800 solid !important;
}
.scarlet--bl-89 {
  border-left: 89px #ed1800 solid !important;
}
.scarlet--bb-89 {
  border-bottom: 89px #ed1800 solid !important;
}
.scarlet--by-89 {
  border-top: 89px #ed1800 solid !important;
  border-bottom: 89px #ed1800 solid !important;
}
.scarlet--bx-89 {
  border-right: 89px #ed1800 solid !important;
  border-left: 89px #ed1800 solid !important;
}
.scarlet--ba-90 {
  border: 90px #ed1800 solid !important;
}
.scarlet--bt-90 {
  border-top: 90px #ed1800 solid !important;
}
.scarlet--br-90 {
  border-right: 90px #ed1800 solid !important;
}
.scarlet--bl-90 {
  border-left: 90px #ed1800 solid !important;
}
.scarlet--bb-90 {
  border-bottom: 90px #ed1800 solid !important;
}
.scarlet--by-90 {
  border-top: 90px #ed1800 solid !important;
  border-bottom: 90px #ed1800 solid !important;
}
.scarlet--bx-90 {
  border-right: 90px #ed1800 solid !important;
  border-left: 90px #ed1800 solid !important;
}
.scarlet--ba-91 {
  border: 91px #ed1800 solid !important;
}
.scarlet--bt-91 {
  border-top: 91px #ed1800 solid !important;
}
.scarlet--br-91 {
  border-right: 91px #ed1800 solid !important;
}
.scarlet--bl-91 {
  border-left: 91px #ed1800 solid !important;
}
.scarlet--bb-91 {
  border-bottom: 91px #ed1800 solid !important;
}
.scarlet--by-91 {
  border-top: 91px #ed1800 solid !important;
  border-bottom: 91px #ed1800 solid !important;
}
.scarlet--bx-91 {
  border-right: 91px #ed1800 solid !important;
  border-left: 91px #ed1800 solid !important;
}
.scarlet--ba-92 {
  border: 92px #ed1800 solid !important;
}
.scarlet--bt-92 {
  border-top: 92px #ed1800 solid !important;
}
.scarlet--br-92 {
  border-right: 92px #ed1800 solid !important;
}
.scarlet--bl-92 {
  border-left: 92px #ed1800 solid !important;
}
.scarlet--bb-92 {
  border-bottom: 92px #ed1800 solid !important;
}
.scarlet--by-92 {
  border-top: 92px #ed1800 solid !important;
  border-bottom: 92px #ed1800 solid !important;
}
.scarlet--bx-92 {
  border-right: 92px #ed1800 solid !important;
  border-left: 92px #ed1800 solid !important;
}
.scarlet--ba-93 {
  border: 93px #ed1800 solid !important;
}
.scarlet--bt-93 {
  border-top: 93px #ed1800 solid !important;
}
.scarlet--br-93 {
  border-right: 93px #ed1800 solid !important;
}
.scarlet--bl-93 {
  border-left: 93px #ed1800 solid !important;
}
.scarlet--bb-93 {
  border-bottom: 93px #ed1800 solid !important;
}
.scarlet--by-93 {
  border-top: 93px #ed1800 solid !important;
  border-bottom: 93px #ed1800 solid !important;
}
.scarlet--bx-93 {
  border-right: 93px #ed1800 solid !important;
  border-left: 93px #ed1800 solid !important;
}
.scarlet--ba-94 {
  border: 94px #ed1800 solid !important;
}
.scarlet--bt-94 {
  border-top: 94px #ed1800 solid !important;
}
.scarlet--br-94 {
  border-right: 94px #ed1800 solid !important;
}
.scarlet--bl-94 {
  border-left: 94px #ed1800 solid !important;
}
.scarlet--bb-94 {
  border-bottom: 94px #ed1800 solid !important;
}
.scarlet--by-94 {
  border-top: 94px #ed1800 solid !important;
  border-bottom: 94px #ed1800 solid !important;
}
.scarlet--bx-94 {
  border-right: 94px #ed1800 solid !important;
  border-left: 94px #ed1800 solid !important;
}
.scarlet--ba-95 {
  border: 95px #ed1800 solid !important;
}
.scarlet--bt-95 {
  border-top: 95px #ed1800 solid !important;
}
.scarlet--br-95 {
  border-right: 95px #ed1800 solid !important;
}
.scarlet--bl-95 {
  border-left: 95px #ed1800 solid !important;
}
.scarlet--bb-95 {
  border-bottom: 95px #ed1800 solid !important;
}
.scarlet--by-95 {
  border-top: 95px #ed1800 solid !important;
  border-bottom: 95px #ed1800 solid !important;
}
.scarlet--bx-95 {
  border-right: 95px #ed1800 solid !important;
  border-left: 95px #ed1800 solid !important;
}
.scarlet--ba-96 {
  border: 96px #ed1800 solid !important;
}
.scarlet--bt-96 {
  border-top: 96px #ed1800 solid !important;
}
.scarlet--br-96 {
  border-right: 96px #ed1800 solid !important;
}
.scarlet--bl-96 {
  border-left: 96px #ed1800 solid !important;
}
.scarlet--bb-96 {
  border-bottom: 96px #ed1800 solid !important;
}
.scarlet--by-96 {
  border-top: 96px #ed1800 solid !important;
  border-bottom: 96px #ed1800 solid !important;
}
.scarlet--bx-96 {
  border-right: 96px #ed1800 solid !important;
  border-left: 96px #ed1800 solid !important;
}
.scarlet--ba-97 {
  border: 97px #ed1800 solid !important;
}
.scarlet--bt-97 {
  border-top: 97px #ed1800 solid !important;
}
.scarlet--br-97 {
  border-right: 97px #ed1800 solid !important;
}
.scarlet--bl-97 {
  border-left: 97px #ed1800 solid !important;
}
.scarlet--bb-97 {
  border-bottom: 97px #ed1800 solid !important;
}
.scarlet--by-97 {
  border-top: 97px #ed1800 solid !important;
  border-bottom: 97px #ed1800 solid !important;
}
.scarlet--bx-97 {
  border-right: 97px #ed1800 solid !important;
  border-left: 97px #ed1800 solid !important;
}
.scarlet--ba-98 {
  border: 98px #ed1800 solid !important;
}
.scarlet--bt-98 {
  border-top: 98px #ed1800 solid !important;
}
.scarlet--br-98 {
  border-right: 98px #ed1800 solid !important;
}
.scarlet--bl-98 {
  border-left: 98px #ed1800 solid !important;
}
.scarlet--bb-98 {
  border-bottom: 98px #ed1800 solid !important;
}
.scarlet--by-98 {
  border-top: 98px #ed1800 solid !important;
  border-bottom: 98px #ed1800 solid !important;
}
.scarlet--bx-98 {
  border-right: 98px #ed1800 solid !important;
  border-left: 98px #ed1800 solid !important;
}
.scarlet--ba-99 {
  border: 99px #ed1800 solid !important;
}
.scarlet--bt-99 {
  border-top: 99px #ed1800 solid !important;
}
.scarlet--br-99 {
  border-right: 99px #ed1800 solid !important;
}
.scarlet--bl-99 {
  border-left: 99px #ed1800 solid !important;
}
.scarlet--bb-99 {
  border-bottom: 99px #ed1800 solid !important;
}
.scarlet--by-99 {
  border-top: 99px #ed1800 solid !important;
  border-bottom: 99px #ed1800 solid !important;
}
.scarlet--bx-99 {
  border-right: 99px #ed1800 solid !important;
  border-left: 99px #ed1800 solid !important;
}
.scarlet--ba-100 {
  border: 100px #ed1800 solid !important;
}
.scarlet--bt-100 {
  border-top: 100px #ed1800 solid !important;
}
.scarlet--br-100 {
  border-right: 100px #ed1800 solid !important;
}
.scarlet--bl-100 {
  border-left: 100px #ed1800 solid !important;
}
.scarlet--bb-100 {
  border-bottom: 100px #ed1800 solid !important;
}
.scarlet--by-100 {
  border-top: 100px #ed1800 solid !important;
  border-bottom: 100px #ed1800 solid !important;
}
.scarlet--bx-100 {
  border-right: 100px #ed1800 solid !important;
  border-left: 100px #ed1800 solid !important;
}
.mercury--ba-1 {
  border: 1px #e5e5e5 solid !important;
}
.mercury--bt-1 {
  border-top: 1px #e5e5e5 solid !important;
}
.mercury--br-1 {
  border-right: 1px #e5e5e5 solid !important;
}
.mercury--bl-1 {
  border-left: 1px #e5e5e5 solid !important;
}
.mercury--bb-1 {
  border-bottom: 1px #e5e5e5 solid !important;
}
.mercury--by-1 {
  border-top: 1px #e5e5e5 solid !important;
  border-bottom: 1px #e5e5e5 solid !important;
}
.mercury--bx-1 {
  border-right: 1px #e5e5e5 solid !important;
  border-left: 1px #e5e5e5 solid !important;
}
.mercury--ba-2 {
  border: 2px #e5e5e5 solid !important;
}
.mercury--bt-2 {
  border-top: 2px #e5e5e5 solid !important;
}
.mercury--br-2 {
  border-right: 2px #e5e5e5 solid !important;
}
.mercury--bl-2 {
  border-left: 2px #e5e5e5 solid !important;
}
.mercury--bb-2 {
  border-bottom: 2px #e5e5e5 solid !important;
}
.mercury--by-2 {
  border-top: 2px #e5e5e5 solid !important;
  border-bottom: 2px #e5e5e5 solid !important;
}
.mercury--bx-2 {
  border-right: 2px #e5e5e5 solid !important;
  border-left: 2px #e5e5e5 solid !important;
}
.mercury--ba-3 {
  border: 3px #e5e5e5 solid !important;
}
.mercury--bt-3 {
  border-top: 3px #e5e5e5 solid !important;
}
.mercury--br-3 {
  border-right: 3px #e5e5e5 solid !important;
}
.mercury--bl-3 {
  border-left: 3px #e5e5e5 solid !important;
}
.mercury--bb-3 {
  border-bottom: 3px #e5e5e5 solid !important;
}
.mercury--by-3 {
  border-top: 3px #e5e5e5 solid !important;
  border-bottom: 3px #e5e5e5 solid !important;
}
.mercury--bx-3 {
  border-right: 3px #e5e5e5 solid !important;
  border-left: 3px #e5e5e5 solid !important;
}
.mercury--ba-4 {
  border: 4px #e5e5e5 solid !important;
}
.mercury--bt-4 {
  border-top: 4px #e5e5e5 solid !important;
}
.mercury--br-4 {
  border-right: 4px #e5e5e5 solid !important;
}
.mercury--bl-4 {
  border-left: 4px #e5e5e5 solid !important;
}
.mercury--bb-4 {
  border-bottom: 4px #e5e5e5 solid !important;
}
.mercury--by-4 {
  border-top: 4px #e5e5e5 solid !important;
  border-bottom: 4px #e5e5e5 solid !important;
}
.mercury--bx-4 {
  border-right: 4px #e5e5e5 solid !important;
  border-left: 4px #e5e5e5 solid !important;
}
.mercury--ba-5 {
  border: 5px #e5e5e5 solid !important;
}
.mercury--bt-5 {
  border-top: 5px #e5e5e5 solid !important;
}
.mercury--br-5 {
  border-right: 5px #e5e5e5 solid !important;
}
.mercury--bl-5 {
  border-left: 5px #e5e5e5 solid !important;
}
.mercury--bb-5 {
  border-bottom: 5px #e5e5e5 solid !important;
}
.mercury--by-5 {
  border-top: 5px #e5e5e5 solid !important;
  border-bottom: 5px #e5e5e5 solid !important;
}
.mercury--bx-5 {
  border-right: 5px #e5e5e5 solid !important;
  border-left: 5px #e5e5e5 solid !important;
}
.mercury--ba-6 {
  border: 6px #e5e5e5 solid !important;
}
.mercury--bt-6 {
  border-top: 6px #e5e5e5 solid !important;
}
.mercury--br-6 {
  border-right: 6px #e5e5e5 solid !important;
}
.mercury--bl-6 {
  border-left: 6px #e5e5e5 solid !important;
}
.mercury--bb-6 {
  border-bottom: 6px #e5e5e5 solid !important;
}
.mercury--by-6 {
  border-top: 6px #e5e5e5 solid !important;
  border-bottom: 6px #e5e5e5 solid !important;
}
.mercury--bx-6 {
  border-right: 6px #e5e5e5 solid !important;
  border-left: 6px #e5e5e5 solid !important;
}
.mercury--ba-7 {
  border: 7px #e5e5e5 solid !important;
}
.mercury--bt-7 {
  border-top: 7px #e5e5e5 solid !important;
}
.mercury--br-7 {
  border-right: 7px #e5e5e5 solid !important;
}
.mercury--bl-7 {
  border-left: 7px #e5e5e5 solid !important;
}
.mercury--bb-7 {
  border-bottom: 7px #e5e5e5 solid !important;
}
.mercury--by-7 {
  border-top: 7px #e5e5e5 solid !important;
  border-bottom: 7px #e5e5e5 solid !important;
}
.mercury--bx-7 {
  border-right: 7px #e5e5e5 solid !important;
  border-left: 7px #e5e5e5 solid !important;
}
.mercury--ba-8 {
  border: 8px #e5e5e5 solid !important;
}
.mercury--bt-8 {
  border-top: 8px #e5e5e5 solid !important;
}
.mercury--br-8 {
  border-right: 8px #e5e5e5 solid !important;
}
.mercury--bl-8 {
  border-left: 8px #e5e5e5 solid !important;
}
.mercury--bb-8 {
  border-bottom: 8px #e5e5e5 solid !important;
}
.mercury--by-8 {
  border-top: 8px #e5e5e5 solid !important;
  border-bottom: 8px #e5e5e5 solid !important;
}
.mercury--bx-8 {
  border-right: 8px #e5e5e5 solid !important;
  border-left: 8px #e5e5e5 solid !important;
}
.mercury--ba-9 {
  border: 9px #e5e5e5 solid !important;
}
.mercury--bt-9 {
  border-top: 9px #e5e5e5 solid !important;
}
.mercury--br-9 {
  border-right: 9px #e5e5e5 solid !important;
}
.mercury--bl-9 {
  border-left: 9px #e5e5e5 solid !important;
}
.mercury--bb-9 {
  border-bottom: 9px #e5e5e5 solid !important;
}
.mercury--by-9 {
  border-top: 9px #e5e5e5 solid !important;
  border-bottom: 9px #e5e5e5 solid !important;
}
.mercury--bx-9 {
  border-right: 9px #e5e5e5 solid !important;
  border-left: 9px #e5e5e5 solid !important;
}
.mercury--ba-10 {
  border: 10px #e5e5e5 solid !important;
}
.mercury--bt-10 {
  border-top: 10px #e5e5e5 solid !important;
}
.mercury--br-10 {
  border-right: 10px #e5e5e5 solid !important;
}
.mercury--bl-10 {
  border-left: 10px #e5e5e5 solid !important;
}
.mercury--bb-10 {
  border-bottom: 10px #e5e5e5 solid !important;
}
.mercury--by-10 {
  border-top: 10px #e5e5e5 solid !important;
  border-bottom: 10px #e5e5e5 solid !important;
}
.mercury--bx-10 {
  border-right: 10px #e5e5e5 solid !important;
  border-left: 10px #e5e5e5 solid !important;
}
.mercury--ba-11 {
  border: 11px #e5e5e5 solid !important;
}
.mercury--bt-11 {
  border-top: 11px #e5e5e5 solid !important;
}
.mercury--br-11 {
  border-right: 11px #e5e5e5 solid !important;
}
.mercury--bl-11 {
  border-left: 11px #e5e5e5 solid !important;
}
.mercury--bb-11 {
  border-bottom: 11px #e5e5e5 solid !important;
}
.mercury--by-11 {
  border-top: 11px #e5e5e5 solid !important;
  border-bottom: 11px #e5e5e5 solid !important;
}
.mercury--bx-11 {
  border-right: 11px #e5e5e5 solid !important;
  border-left: 11px #e5e5e5 solid !important;
}
.mercury--ba-12 {
  border: 12px #e5e5e5 solid !important;
}
.mercury--bt-12 {
  border-top: 12px #e5e5e5 solid !important;
}
.mercury--br-12 {
  border-right: 12px #e5e5e5 solid !important;
}
.mercury--bl-12 {
  border-left: 12px #e5e5e5 solid !important;
}
.mercury--bb-12 {
  border-bottom: 12px #e5e5e5 solid !important;
}
.mercury--by-12 {
  border-top: 12px #e5e5e5 solid !important;
  border-bottom: 12px #e5e5e5 solid !important;
}
.mercury--bx-12 {
  border-right: 12px #e5e5e5 solid !important;
  border-left: 12px #e5e5e5 solid !important;
}
.mercury--ba-13 {
  border: 13px #e5e5e5 solid !important;
}
.mercury--bt-13 {
  border-top: 13px #e5e5e5 solid !important;
}
.mercury--br-13 {
  border-right: 13px #e5e5e5 solid !important;
}
.mercury--bl-13 {
  border-left: 13px #e5e5e5 solid !important;
}
.mercury--bb-13 {
  border-bottom: 13px #e5e5e5 solid !important;
}
.mercury--by-13 {
  border-top: 13px #e5e5e5 solid !important;
  border-bottom: 13px #e5e5e5 solid !important;
}
.mercury--bx-13 {
  border-right: 13px #e5e5e5 solid !important;
  border-left: 13px #e5e5e5 solid !important;
}
.mercury--ba-14 {
  border: 14px #e5e5e5 solid !important;
}
.mercury--bt-14 {
  border-top: 14px #e5e5e5 solid !important;
}
.mercury--br-14 {
  border-right: 14px #e5e5e5 solid !important;
}
.mercury--bl-14 {
  border-left: 14px #e5e5e5 solid !important;
}
.mercury--bb-14 {
  border-bottom: 14px #e5e5e5 solid !important;
}
.mercury--by-14 {
  border-top: 14px #e5e5e5 solid !important;
  border-bottom: 14px #e5e5e5 solid !important;
}
.mercury--bx-14 {
  border-right: 14px #e5e5e5 solid !important;
  border-left: 14px #e5e5e5 solid !important;
}
.mercury--ba-15 {
  border: 15px #e5e5e5 solid !important;
}
.mercury--bt-15 {
  border-top: 15px #e5e5e5 solid !important;
}
.mercury--br-15 {
  border-right: 15px #e5e5e5 solid !important;
}
.mercury--bl-15 {
  border-left: 15px #e5e5e5 solid !important;
}
.mercury--bb-15 {
  border-bottom: 15px #e5e5e5 solid !important;
}
.mercury--by-15 {
  border-top: 15px #e5e5e5 solid !important;
  border-bottom: 15px #e5e5e5 solid !important;
}
.mercury--bx-15 {
  border-right: 15px #e5e5e5 solid !important;
  border-left: 15px #e5e5e5 solid !important;
}
.mercury--ba-16 {
  border: 16px #e5e5e5 solid !important;
}
.mercury--bt-16 {
  border-top: 16px #e5e5e5 solid !important;
}
.mercury--br-16 {
  border-right: 16px #e5e5e5 solid !important;
}
.mercury--bl-16 {
  border-left: 16px #e5e5e5 solid !important;
}
.mercury--bb-16 {
  border-bottom: 16px #e5e5e5 solid !important;
}
.mercury--by-16 {
  border-top: 16px #e5e5e5 solid !important;
  border-bottom: 16px #e5e5e5 solid !important;
}
.mercury--bx-16 {
  border-right: 16px #e5e5e5 solid !important;
  border-left: 16px #e5e5e5 solid !important;
}
.mercury--ba-17 {
  border: 17px #e5e5e5 solid !important;
}
.mercury--bt-17 {
  border-top: 17px #e5e5e5 solid !important;
}
.mercury--br-17 {
  border-right: 17px #e5e5e5 solid !important;
}
.mercury--bl-17 {
  border-left: 17px #e5e5e5 solid !important;
}
.mercury--bb-17 {
  border-bottom: 17px #e5e5e5 solid !important;
}
.mercury--by-17 {
  border-top: 17px #e5e5e5 solid !important;
  border-bottom: 17px #e5e5e5 solid !important;
}
.mercury--bx-17 {
  border-right: 17px #e5e5e5 solid !important;
  border-left: 17px #e5e5e5 solid !important;
}
.mercury--ba-18 {
  border: 18px #e5e5e5 solid !important;
}
.mercury--bt-18 {
  border-top: 18px #e5e5e5 solid !important;
}
.mercury--br-18 {
  border-right: 18px #e5e5e5 solid !important;
}
.mercury--bl-18 {
  border-left: 18px #e5e5e5 solid !important;
}
.mercury--bb-18 {
  border-bottom: 18px #e5e5e5 solid !important;
}
.mercury--by-18 {
  border-top: 18px #e5e5e5 solid !important;
  border-bottom: 18px #e5e5e5 solid !important;
}
.mercury--bx-18 {
  border-right: 18px #e5e5e5 solid !important;
  border-left: 18px #e5e5e5 solid !important;
}
.mercury--ba-19 {
  border: 19px #e5e5e5 solid !important;
}
.mercury--bt-19 {
  border-top: 19px #e5e5e5 solid !important;
}
.mercury--br-19 {
  border-right: 19px #e5e5e5 solid !important;
}
.mercury--bl-19 {
  border-left: 19px #e5e5e5 solid !important;
}
.mercury--bb-19 {
  border-bottom: 19px #e5e5e5 solid !important;
}
.mercury--by-19 {
  border-top: 19px #e5e5e5 solid !important;
  border-bottom: 19px #e5e5e5 solid !important;
}
.mercury--bx-19 {
  border-right: 19px #e5e5e5 solid !important;
  border-left: 19px #e5e5e5 solid !important;
}
.mercury--ba-20 {
  border: 20px #e5e5e5 solid !important;
}
.mercury--bt-20 {
  border-top: 20px #e5e5e5 solid !important;
}
.mercury--br-20 {
  border-right: 20px #e5e5e5 solid !important;
}
.mercury--bl-20 {
  border-left: 20px #e5e5e5 solid !important;
}
.mercury--bb-20 {
  border-bottom: 20px #e5e5e5 solid !important;
}
.mercury--by-20 {
  border-top: 20px #e5e5e5 solid !important;
  border-bottom: 20px #e5e5e5 solid !important;
}
.mercury--bx-20 {
  border-right: 20px #e5e5e5 solid !important;
  border-left: 20px #e5e5e5 solid !important;
}
.mercury--ba-21 {
  border: 21px #e5e5e5 solid !important;
}
.mercury--bt-21 {
  border-top: 21px #e5e5e5 solid !important;
}
.mercury--br-21 {
  border-right: 21px #e5e5e5 solid !important;
}
.mercury--bl-21 {
  border-left: 21px #e5e5e5 solid !important;
}
.mercury--bb-21 {
  border-bottom: 21px #e5e5e5 solid !important;
}
.mercury--by-21 {
  border-top: 21px #e5e5e5 solid !important;
  border-bottom: 21px #e5e5e5 solid !important;
}
.mercury--bx-21 {
  border-right: 21px #e5e5e5 solid !important;
  border-left: 21px #e5e5e5 solid !important;
}
.mercury--ba-22 {
  border: 22px #e5e5e5 solid !important;
}
.mercury--bt-22 {
  border-top: 22px #e5e5e5 solid !important;
}
.mercury--br-22 {
  border-right: 22px #e5e5e5 solid !important;
}
.mercury--bl-22 {
  border-left: 22px #e5e5e5 solid !important;
}
.mercury--bb-22 {
  border-bottom: 22px #e5e5e5 solid !important;
}
.mercury--by-22 {
  border-top: 22px #e5e5e5 solid !important;
  border-bottom: 22px #e5e5e5 solid !important;
}
.mercury--bx-22 {
  border-right: 22px #e5e5e5 solid !important;
  border-left: 22px #e5e5e5 solid !important;
}
.mercury--ba-23 {
  border: 23px #e5e5e5 solid !important;
}
.mercury--bt-23 {
  border-top: 23px #e5e5e5 solid !important;
}
.mercury--br-23 {
  border-right: 23px #e5e5e5 solid !important;
}
.mercury--bl-23 {
  border-left: 23px #e5e5e5 solid !important;
}
.mercury--bb-23 {
  border-bottom: 23px #e5e5e5 solid !important;
}
.mercury--by-23 {
  border-top: 23px #e5e5e5 solid !important;
  border-bottom: 23px #e5e5e5 solid !important;
}
.mercury--bx-23 {
  border-right: 23px #e5e5e5 solid !important;
  border-left: 23px #e5e5e5 solid !important;
}
.mercury--ba-24 {
  border: 24px #e5e5e5 solid !important;
}
.mercury--bt-24 {
  border-top: 24px #e5e5e5 solid !important;
}
.mercury--br-24 {
  border-right: 24px #e5e5e5 solid !important;
}
.mercury--bl-24 {
  border-left: 24px #e5e5e5 solid !important;
}
.mercury--bb-24 {
  border-bottom: 24px #e5e5e5 solid !important;
}
.mercury--by-24 {
  border-top: 24px #e5e5e5 solid !important;
  border-bottom: 24px #e5e5e5 solid !important;
}
.mercury--bx-24 {
  border-right: 24px #e5e5e5 solid !important;
  border-left: 24px #e5e5e5 solid !important;
}
.mercury--ba-25 {
  border: 25px #e5e5e5 solid !important;
}
.mercury--bt-25 {
  border-top: 25px #e5e5e5 solid !important;
}
.mercury--br-25 {
  border-right: 25px #e5e5e5 solid !important;
}
.mercury--bl-25 {
  border-left: 25px #e5e5e5 solid !important;
}
.mercury--bb-25 {
  border-bottom: 25px #e5e5e5 solid !important;
}
.mercury--by-25 {
  border-top: 25px #e5e5e5 solid !important;
  border-bottom: 25px #e5e5e5 solid !important;
}
.mercury--bx-25 {
  border-right: 25px #e5e5e5 solid !important;
  border-left: 25px #e5e5e5 solid !important;
}
.mercury--ba-26 {
  border: 26px #e5e5e5 solid !important;
}
.mercury--bt-26 {
  border-top: 26px #e5e5e5 solid !important;
}
.mercury--br-26 {
  border-right: 26px #e5e5e5 solid !important;
}
.mercury--bl-26 {
  border-left: 26px #e5e5e5 solid !important;
}
.mercury--bb-26 {
  border-bottom: 26px #e5e5e5 solid !important;
}
.mercury--by-26 {
  border-top: 26px #e5e5e5 solid !important;
  border-bottom: 26px #e5e5e5 solid !important;
}
.mercury--bx-26 {
  border-right: 26px #e5e5e5 solid !important;
  border-left: 26px #e5e5e5 solid !important;
}
.mercury--ba-27 {
  border: 27px #e5e5e5 solid !important;
}
.mercury--bt-27 {
  border-top: 27px #e5e5e5 solid !important;
}
.mercury--br-27 {
  border-right: 27px #e5e5e5 solid !important;
}
.mercury--bl-27 {
  border-left: 27px #e5e5e5 solid !important;
}
.mercury--bb-27 {
  border-bottom: 27px #e5e5e5 solid !important;
}
.mercury--by-27 {
  border-top: 27px #e5e5e5 solid !important;
  border-bottom: 27px #e5e5e5 solid !important;
}
.mercury--bx-27 {
  border-right: 27px #e5e5e5 solid !important;
  border-left: 27px #e5e5e5 solid !important;
}
.mercury--ba-28 {
  border: 28px #e5e5e5 solid !important;
}
.mercury--bt-28 {
  border-top: 28px #e5e5e5 solid !important;
}
.mercury--br-28 {
  border-right: 28px #e5e5e5 solid !important;
}
.mercury--bl-28 {
  border-left: 28px #e5e5e5 solid !important;
}
.mercury--bb-28 {
  border-bottom: 28px #e5e5e5 solid !important;
}
.mercury--by-28 {
  border-top: 28px #e5e5e5 solid !important;
  border-bottom: 28px #e5e5e5 solid !important;
}
.mercury--bx-28 {
  border-right: 28px #e5e5e5 solid !important;
  border-left: 28px #e5e5e5 solid !important;
}
.mercury--ba-29 {
  border: 29px #e5e5e5 solid !important;
}
.mercury--bt-29 {
  border-top: 29px #e5e5e5 solid !important;
}
.mercury--br-29 {
  border-right: 29px #e5e5e5 solid !important;
}
.mercury--bl-29 {
  border-left: 29px #e5e5e5 solid !important;
}
.mercury--bb-29 {
  border-bottom: 29px #e5e5e5 solid !important;
}
.mercury--by-29 {
  border-top: 29px #e5e5e5 solid !important;
  border-bottom: 29px #e5e5e5 solid !important;
}
.mercury--bx-29 {
  border-right: 29px #e5e5e5 solid !important;
  border-left: 29px #e5e5e5 solid !important;
}
.mercury--ba-30 {
  border: 30px #e5e5e5 solid !important;
}
.mercury--bt-30 {
  border-top: 30px #e5e5e5 solid !important;
}
.mercury--br-30 {
  border-right: 30px #e5e5e5 solid !important;
}
.mercury--bl-30 {
  border-left: 30px #e5e5e5 solid !important;
}
.mercury--bb-30 {
  border-bottom: 30px #e5e5e5 solid !important;
}
.mercury--by-30 {
  border-top: 30px #e5e5e5 solid !important;
  border-bottom: 30px #e5e5e5 solid !important;
}
.mercury--bx-30 {
  border-right: 30px #e5e5e5 solid !important;
  border-left: 30px #e5e5e5 solid !important;
}
.mercury--ba-31 {
  border: 31px #e5e5e5 solid !important;
}
.mercury--bt-31 {
  border-top: 31px #e5e5e5 solid !important;
}
.mercury--br-31 {
  border-right: 31px #e5e5e5 solid !important;
}
.mercury--bl-31 {
  border-left: 31px #e5e5e5 solid !important;
}
.mercury--bb-31 {
  border-bottom: 31px #e5e5e5 solid !important;
}
.mercury--by-31 {
  border-top: 31px #e5e5e5 solid !important;
  border-bottom: 31px #e5e5e5 solid !important;
}
.mercury--bx-31 {
  border-right: 31px #e5e5e5 solid !important;
  border-left: 31px #e5e5e5 solid !important;
}
.mercury--ba-32 {
  border: 32px #e5e5e5 solid !important;
}
.mercury--bt-32 {
  border-top: 32px #e5e5e5 solid !important;
}
.mercury--br-32 {
  border-right: 32px #e5e5e5 solid !important;
}
.mercury--bl-32 {
  border-left: 32px #e5e5e5 solid !important;
}
.mercury--bb-32 {
  border-bottom: 32px #e5e5e5 solid !important;
}
.mercury--by-32 {
  border-top: 32px #e5e5e5 solid !important;
  border-bottom: 32px #e5e5e5 solid !important;
}
.mercury--bx-32 {
  border-right: 32px #e5e5e5 solid !important;
  border-left: 32px #e5e5e5 solid !important;
}
.mercury--ba-33 {
  border: 33px #e5e5e5 solid !important;
}
.mercury--bt-33 {
  border-top: 33px #e5e5e5 solid !important;
}
.mercury--br-33 {
  border-right: 33px #e5e5e5 solid !important;
}
.mercury--bl-33 {
  border-left: 33px #e5e5e5 solid !important;
}
.mercury--bb-33 {
  border-bottom: 33px #e5e5e5 solid !important;
}
.mercury--by-33 {
  border-top: 33px #e5e5e5 solid !important;
  border-bottom: 33px #e5e5e5 solid !important;
}
.mercury--bx-33 {
  border-right: 33px #e5e5e5 solid !important;
  border-left: 33px #e5e5e5 solid !important;
}
.mercury--ba-34 {
  border: 34px #e5e5e5 solid !important;
}
.mercury--bt-34 {
  border-top: 34px #e5e5e5 solid !important;
}
.mercury--br-34 {
  border-right: 34px #e5e5e5 solid !important;
}
.mercury--bl-34 {
  border-left: 34px #e5e5e5 solid !important;
}
.mercury--bb-34 {
  border-bottom: 34px #e5e5e5 solid !important;
}
.mercury--by-34 {
  border-top: 34px #e5e5e5 solid !important;
  border-bottom: 34px #e5e5e5 solid !important;
}
.mercury--bx-34 {
  border-right: 34px #e5e5e5 solid !important;
  border-left: 34px #e5e5e5 solid !important;
}
.mercury--ba-35 {
  border: 35px #e5e5e5 solid !important;
}
.mercury--bt-35 {
  border-top: 35px #e5e5e5 solid !important;
}
.mercury--br-35 {
  border-right: 35px #e5e5e5 solid !important;
}
.mercury--bl-35 {
  border-left: 35px #e5e5e5 solid !important;
}
.mercury--bb-35 {
  border-bottom: 35px #e5e5e5 solid !important;
}
.mercury--by-35 {
  border-top: 35px #e5e5e5 solid !important;
  border-bottom: 35px #e5e5e5 solid !important;
}
.mercury--bx-35 {
  border-right: 35px #e5e5e5 solid !important;
  border-left: 35px #e5e5e5 solid !important;
}
.mercury--ba-36 {
  border: 36px #e5e5e5 solid !important;
}
.mercury--bt-36 {
  border-top: 36px #e5e5e5 solid !important;
}
.mercury--br-36 {
  border-right: 36px #e5e5e5 solid !important;
}
.mercury--bl-36 {
  border-left: 36px #e5e5e5 solid !important;
}
.mercury--bb-36 {
  border-bottom: 36px #e5e5e5 solid !important;
}
.mercury--by-36 {
  border-top: 36px #e5e5e5 solid !important;
  border-bottom: 36px #e5e5e5 solid !important;
}
.mercury--bx-36 {
  border-right: 36px #e5e5e5 solid !important;
  border-left: 36px #e5e5e5 solid !important;
}
.mercury--ba-37 {
  border: 37px #e5e5e5 solid !important;
}
.mercury--bt-37 {
  border-top: 37px #e5e5e5 solid !important;
}
.mercury--br-37 {
  border-right: 37px #e5e5e5 solid !important;
}
.mercury--bl-37 {
  border-left: 37px #e5e5e5 solid !important;
}
.mercury--bb-37 {
  border-bottom: 37px #e5e5e5 solid !important;
}
.mercury--by-37 {
  border-top: 37px #e5e5e5 solid !important;
  border-bottom: 37px #e5e5e5 solid !important;
}
.mercury--bx-37 {
  border-right: 37px #e5e5e5 solid !important;
  border-left: 37px #e5e5e5 solid !important;
}
.mercury--ba-38 {
  border: 38px #e5e5e5 solid !important;
}
.mercury--bt-38 {
  border-top: 38px #e5e5e5 solid !important;
}
.mercury--br-38 {
  border-right: 38px #e5e5e5 solid !important;
}
.mercury--bl-38 {
  border-left: 38px #e5e5e5 solid !important;
}
.mercury--bb-38 {
  border-bottom: 38px #e5e5e5 solid !important;
}
.mercury--by-38 {
  border-top: 38px #e5e5e5 solid !important;
  border-bottom: 38px #e5e5e5 solid !important;
}
.mercury--bx-38 {
  border-right: 38px #e5e5e5 solid !important;
  border-left: 38px #e5e5e5 solid !important;
}
.mercury--ba-39 {
  border: 39px #e5e5e5 solid !important;
}
.mercury--bt-39 {
  border-top: 39px #e5e5e5 solid !important;
}
.mercury--br-39 {
  border-right: 39px #e5e5e5 solid !important;
}
.mercury--bl-39 {
  border-left: 39px #e5e5e5 solid !important;
}
.mercury--bb-39 {
  border-bottom: 39px #e5e5e5 solid !important;
}
.mercury--by-39 {
  border-top: 39px #e5e5e5 solid !important;
  border-bottom: 39px #e5e5e5 solid !important;
}
.mercury--bx-39 {
  border-right: 39px #e5e5e5 solid !important;
  border-left: 39px #e5e5e5 solid !important;
}
.mercury--ba-40 {
  border: 40px #e5e5e5 solid !important;
}
.mercury--bt-40 {
  border-top: 40px #e5e5e5 solid !important;
}
.mercury--br-40 {
  border-right: 40px #e5e5e5 solid !important;
}
.mercury--bl-40 {
  border-left: 40px #e5e5e5 solid !important;
}
.mercury--bb-40 {
  border-bottom: 40px #e5e5e5 solid !important;
}
.mercury--by-40 {
  border-top: 40px #e5e5e5 solid !important;
  border-bottom: 40px #e5e5e5 solid !important;
}
.mercury--bx-40 {
  border-right: 40px #e5e5e5 solid !important;
  border-left: 40px #e5e5e5 solid !important;
}
.mercury--ba-41 {
  border: 41px #e5e5e5 solid !important;
}
.mercury--bt-41 {
  border-top: 41px #e5e5e5 solid !important;
}
.mercury--br-41 {
  border-right: 41px #e5e5e5 solid !important;
}
.mercury--bl-41 {
  border-left: 41px #e5e5e5 solid !important;
}
.mercury--bb-41 {
  border-bottom: 41px #e5e5e5 solid !important;
}
.mercury--by-41 {
  border-top: 41px #e5e5e5 solid !important;
  border-bottom: 41px #e5e5e5 solid !important;
}
.mercury--bx-41 {
  border-right: 41px #e5e5e5 solid !important;
  border-left: 41px #e5e5e5 solid !important;
}
.mercury--ba-42 {
  border: 42px #e5e5e5 solid !important;
}
.mercury--bt-42 {
  border-top: 42px #e5e5e5 solid !important;
}
.mercury--br-42 {
  border-right: 42px #e5e5e5 solid !important;
}
.mercury--bl-42 {
  border-left: 42px #e5e5e5 solid !important;
}
.mercury--bb-42 {
  border-bottom: 42px #e5e5e5 solid !important;
}
.mercury--by-42 {
  border-top: 42px #e5e5e5 solid !important;
  border-bottom: 42px #e5e5e5 solid !important;
}
.mercury--bx-42 {
  border-right: 42px #e5e5e5 solid !important;
  border-left: 42px #e5e5e5 solid !important;
}
.mercury--ba-43 {
  border: 43px #e5e5e5 solid !important;
}
.mercury--bt-43 {
  border-top: 43px #e5e5e5 solid !important;
}
.mercury--br-43 {
  border-right: 43px #e5e5e5 solid !important;
}
.mercury--bl-43 {
  border-left: 43px #e5e5e5 solid !important;
}
.mercury--bb-43 {
  border-bottom: 43px #e5e5e5 solid !important;
}
.mercury--by-43 {
  border-top: 43px #e5e5e5 solid !important;
  border-bottom: 43px #e5e5e5 solid !important;
}
.mercury--bx-43 {
  border-right: 43px #e5e5e5 solid !important;
  border-left: 43px #e5e5e5 solid !important;
}
.mercury--ba-44 {
  border: 44px #e5e5e5 solid !important;
}
.mercury--bt-44 {
  border-top: 44px #e5e5e5 solid !important;
}
.mercury--br-44 {
  border-right: 44px #e5e5e5 solid !important;
}
.mercury--bl-44 {
  border-left: 44px #e5e5e5 solid !important;
}
.mercury--bb-44 {
  border-bottom: 44px #e5e5e5 solid !important;
}
.mercury--by-44 {
  border-top: 44px #e5e5e5 solid !important;
  border-bottom: 44px #e5e5e5 solid !important;
}
.mercury--bx-44 {
  border-right: 44px #e5e5e5 solid !important;
  border-left: 44px #e5e5e5 solid !important;
}
.mercury--ba-45 {
  border: 45px #e5e5e5 solid !important;
}
.mercury--bt-45 {
  border-top: 45px #e5e5e5 solid !important;
}
.mercury--br-45 {
  border-right: 45px #e5e5e5 solid !important;
}
.mercury--bl-45 {
  border-left: 45px #e5e5e5 solid !important;
}
.mercury--bb-45 {
  border-bottom: 45px #e5e5e5 solid !important;
}
.mercury--by-45 {
  border-top: 45px #e5e5e5 solid !important;
  border-bottom: 45px #e5e5e5 solid !important;
}
.mercury--bx-45 {
  border-right: 45px #e5e5e5 solid !important;
  border-left: 45px #e5e5e5 solid !important;
}
.mercury--ba-46 {
  border: 46px #e5e5e5 solid !important;
}
.mercury--bt-46 {
  border-top: 46px #e5e5e5 solid !important;
}
.mercury--br-46 {
  border-right: 46px #e5e5e5 solid !important;
}
.mercury--bl-46 {
  border-left: 46px #e5e5e5 solid !important;
}
.mercury--bb-46 {
  border-bottom: 46px #e5e5e5 solid !important;
}
.mercury--by-46 {
  border-top: 46px #e5e5e5 solid !important;
  border-bottom: 46px #e5e5e5 solid !important;
}
.mercury--bx-46 {
  border-right: 46px #e5e5e5 solid !important;
  border-left: 46px #e5e5e5 solid !important;
}
.mercury--ba-47 {
  border: 47px #e5e5e5 solid !important;
}
.mercury--bt-47 {
  border-top: 47px #e5e5e5 solid !important;
}
.mercury--br-47 {
  border-right: 47px #e5e5e5 solid !important;
}
.mercury--bl-47 {
  border-left: 47px #e5e5e5 solid !important;
}
.mercury--bb-47 {
  border-bottom: 47px #e5e5e5 solid !important;
}
.mercury--by-47 {
  border-top: 47px #e5e5e5 solid !important;
  border-bottom: 47px #e5e5e5 solid !important;
}
.mercury--bx-47 {
  border-right: 47px #e5e5e5 solid !important;
  border-left: 47px #e5e5e5 solid !important;
}
.mercury--ba-48 {
  border: 48px #e5e5e5 solid !important;
}
.mercury--bt-48 {
  border-top: 48px #e5e5e5 solid !important;
}
.mercury--br-48 {
  border-right: 48px #e5e5e5 solid !important;
}
.mercury--bl-48 {
  border-left: 48px #e5e5e5 solid !important;
}
.mercury--bb-48 {
  border-bottom: 48px #e5e5e5 solid !important;
}
.mercury--by-48 {
  border-top: 48px #e5e5e5 solid !important;
  border-bottom: 48px #e5e5e5 solid !important;
}
.mercury--bx-48 {
  border-right: 48px #e5e5e5 solid !important;
  border-left: 48px #e5e5e5 solid !important;
}
.mercury--ba-49 {
  border: 49px #e5e5e5 solid !important;
}
.mercury--bt-49 {
  border-top: 49px #e5e5e5 solid !important;
}
.mercury--br-49 {
  border-right: 49px #e5e5e5 solid !important;
}
.mercury--bl-49 {
  border-left: 49px #e5e5e5 solid !important;
}
.mercury--bb-49 {
  border-bottom: 49px #e5e5e5 solid !important;
}
.mercury--by-49 {
  border-top: 49px #e5e5e5 solid !important;
  border-bottom: 49px #e5e5e5 solid !important;
}
.mercury--bx-49 {
  border-right: 49px #e5e5e5 solid !important;
  border-left: 49px #e5e5e5 solid !important;
}
.mercury--ba-50 {
  border: 50px #e5e5e5 solid !important;
}
.mercury--bt-50 {
  border-top: 50px #e5e5e5 solid !important;
}
.mercury--br-50 {
  border-right: 50px #e5e5e5 solid !important;
}
.mercury--bl-50 {
  border-left: 50px #e5e5e5 solid !important;
}
.mercury--bb-50 {
  border-bottom: 50px #e5e5e5 solid !important;
}
.mercury--by-50 {
  border-top: 50px #e5e5e5 solid !important;
  border-bottom: 50px #e5e5e5 solid !important;
}
.mercury--bx-50 {
  border-right: 50px #e5e5e5 solid !important;
  border-left: 50px #e5e5e5 solid !important;
}
.mercury--ba-51 {
  border: 51px #e5e5e5 solid !important;
}
.mercury--bt-51 {
  border-top: 51px #e5e5e5 solid !important;
}
.mercury--br-51 {
  border-right: 51px #e5e5e5 solid !important;
}
.mercury--bl-51 {
  border-left: 51px #e5e5e5 solid !important;
}
.mercury--bb-51 {
  border-bottom: 51px #e5e5e5 solid !important;
}
.mercury--by-51 {
  border-top: 51px #e5e5e5 solid !important;
  border-bottom: 51px #e5e5e5 solid !important;
}
.mercury--bx-51 {
  border-right: 51px #e5e5e5 solid !important;
  border-left: 51px #e5e5e5 solid !important;
}
.mercury--ba-52 {
  border: 52px #e5e5e5 solid !important;
}
.mercury--bt-52 {
  border-top: 52px #e5e5e5 solid !important;
}
.mercury--br-52 {
  border-right: 52px #e5e5e5 solid !important;
}
.mercury--bl-52 {
  border-left: 52px #e5e5e5 solid !important;
}
.mercury--bb-52 {
  border-bottom: 52px #e5e5e5 solid !important;
}
.mercury--by-52 {
  border-top: 52px #e5e5e5 solid !important;
  border-bottom: 52px #e5e5e5 solid !important;
}
.mercury--bx-52 {
  border-right: 52px #e5e5e5 solid !important;
  border-left: 52px #e5e5e5 solid !important;
}
.mercury--ba-53 {
  border: 53px #e5e5e5 solid !important;
}
.mercury--bt-53 {
  border-top: 53px #e5e5e5 solid !important;
}
.mercury--br-53 {
  border-right: 53px #e5e5e5 solid !important;
}
.mercury--bl-53 {
  border-left: 53px #e5e5e5 solid !important;
}
.mercury--bb-53 {
  border-bottom: 53px #e5e5e5 solid !important;
}
.mercury--by-53 {
  border-top: 53px #e5e5e5 solid !important;
  border-bottom: 53px #e5e5e5 solid !important;
}
.mercury--bx-53 {
  border-right: 53px #e5e5e5 solid !important;
  border-left: 53px #e5e5e5 solid !important;
}
.mercury--ba-54 {
  border: 54px #e5e5e5 solid !important;
}
.mercury--bt-54 {
  border-top: 54px #e5e5e5 solid !important;
}
.mercury--br-54 {
  border-right: 54px #e5e5e5 solid !important;
}
.mercury--bl-54 {
  border-left: 54px #e5e5e5 solid !important;
}
.mercury--bb-54 {
  border-bottom: 54px #e5e5e5 solid !important;
}
.mercury--by-54 {
  border-top: 54px #e5e5e5 solid !important;
  border-bottom: 54px #e5e5e5 solid !important;
}
.mercury--bx-54 {
  border-right: 54px #e5e5e5 solid !important;
  border-left: 54px #e5e5e5 solid !important;
}
.mercury--ba-55 {
  border: 55px #e5e5e5 solid !important;
}
.mercury--bt-55 {
  border-top: 55px #e5e5e5 solid !important;
}
.mercury--br-55 {
  border-right: 55px #e5e5e5 solid !important;
}
.mercury--bl-55 {
  border-left: 55px #e5e5e5 solid !important;
}
.mercury--bb-55 {
  border-bottom: 55px #e5e5e5 solid !important;
}
.mercury--by-55 {
  border-top: 55px #e5e5e5 solid !important;
  border-bottom: 55px #e5e5e5 solid !important;
}
.mercury--bx-55 {
  border-right: 55px #e5e5e5 solid !important;
  border-left: 55px #e5e5e5 solid !important;
}
.mercury--ba-56 {
  border: 56px #e5e5e5 solid !important;
}
.mercury--bt-56 {
  border-top: 56px #e5e5e5 solid !important;
}
.mercury--br-56 {
  border-right: 56px #e5e5e5 solid !important;
}
.mercury--bl-56 {
  border-left: 56px #e5e5e5 solid !important;
}
.mercury--bb-56 {
  border-bottom: 56px #e5e5e5 solid !important;
}
.mercury--by-56 {
  border-top: 56px #e5e5e5 solid !important;
  border-bottom: 56px #e5e5e5 solid !important;
}
.mercury--bx-56 {
  border-right: 56px #e5e5e5 solid !important;
  border-left: 56px #e5e5e5 solid !important;
}
.mercury--ba-57 {
  border: 57px #e5e5e5 solid !important;
}
.mercury--bt-57 {
  border-top: 57px #e5e5e5 solid !important;
}
.mercury--br-57 {
  border-right: 57px #e5e5e5 solid !important;
}
.mercury--bl-57 {
  border-left: 57px #e5e5e5 solid !important;
}
.mercury--bb-57 {
  border-bottom: 57px #e5e5e5 solid !important;
}
.mercury--by-57 {
  border-top: 57px #e5e5e5 solid !important;
  border-bottom: 57px #e5e5e5 solid !important;
}
.mercury--bx-57 {
  border-right: 57px #e5e5e5 solid !important;
  border-left: 57px #e5e5e5 solid !important;
}
.mercury--ba-58 {
  border: 58px #e5e5e5 solid !important;
}
.mercury--bt-58 {
  border-top: 58px #e5e5e5 solid !important;
}
.mercury--br-58 {
  border-right: 58px #e5e5e5 solid !important;
}
.mercury--bl-58 {
  border-left: 58px #e5e5e5 solid !important;
}
.mercury--bb-58 {
  border-bottom: 58px #e5e5e5 solid !important;
}
.mercury--by-58 {
  border-top: 58px #e5e5e5 solid !important;
  border-bottom: 58px #e5e5e5 solid !important;
}
.mercury--bx-58 {
  border-right: 58px #e5e5e5 solid !important;
  border-left: 58px #e5e5e5 solid !important;
}
.mercury--ba-59 {
  border: 59px #e5e5e5 solid !important;
}
.mercury--bt-59 {
  border-top: 59px #e5e5e5 solid !important;
}
.mercury--br-59 {
  border-right: 59px #e5e5e5 solid !important;
}
.mercury--bl-59 {
  border-left: 59px #e5e5e5 solid !important;
}
.mercury--bb-59 {
  border-bottom: 59px #e5e5e5 solid !important;
}
.mercury--by-59 {
  border-top: 59px #e5e5e5 solid !important;
  border-bottom: 59px #e5e5e5 solid !important;
}
.mercury--bx-59 {
  border-right: 59px #e5e5e5 solid !important;
  border-left: 59px #e5e5e5 solid !important;
}
.mercury--ba-60 {
  border: 60px #e5e5e5 solid !important;
}
.mercury--bt-60 {
  border-top: 60px #e5e5e5 solid !important;
}
.mercury--br-60 {
  border-right: 60px #e5e5e5 solid !important;
}
.mercury--bl-60 {
  border-left: 60px #e5e5e5 solid !important;
}
.mercury--bb-60 {
  border-bottom: 60px #e5e5e5 solid !important;
}
.mercury--by-60 {
  border-top: 60px #e5e5e5 solid !important;
  border-bottom: 60px #e5e5e5 solid !important;
}
.mercury--bx-60 {
  border-right: 60px #e5e5e5 solid !important;
  border-left: 60px #e5e5e5 solid !important;
}
.mercury--ba-61 {
  border: 61px #e5e5e5 solid !important;
}
.mercury--bt-61 {
  border-top: 61px #e5e5e5 solid !important;
}
.mercury--br-61 {
  border-right: 61px #e5e5e5 solid !important;
}
.mercury--bl-61 {
  border-left: 61px #e5e5e5 solid !important;
}
.mercury--bb-61 {
  border-bottom: 61px #e5e5e5 solid !important;
}
.mercury--by-61 {
  border-top: 61px #e5e5e5 solid !important;
  border-bottom: 61px #e5e5e5 solid !important;
}
.mercury--bx-61 {
  border-right: 61px #e5e5e5 solid !important;
  border-left: 61px #e5e5e5 solid !important;
}
.mercury--ba-62 {
  border: 62px #e5e5e5 solid !important;
}
.mercury--bt-62 {
  border-top: 62px #e5e5e5 solid !important;
}
.mercury--br-62 {
  border-right: 62px #e5e5e5 solid !important;
}
.mercury--bl-62 {
  border-left: 62px #e5e5e5 solid !important;
}
.mercury--bb-62 {
  border-bottom: 62px #e5e5e5 solid !important;
}
.mercury--by-62 {
  border-top: 62px #e5e5e5 solid !important;
  border-bottom: 62px #e5e5e5 solid !important;
}
.mercury--bx-62 {
  border-right: 62px #e5e5e5 solid !important;
  border-left: 62px #e5e5e5 solid !important;
}
.mercury--ba-63 {
  border: 63px #e5e5e5 solid !important;
}
.mercury--bt-63 {
  border-top: 63px #e5e5e5 solid !important;
}
.mercury--br-63 {
  border-right: 63px #e5e5e5 solid !important;
}
.mercury--bl-63 {
  border-left: 63px #e5e5e5 solid !important;
}
.mercury--bb-63 {
  border-bottom: 63px #e5e5e5 solid !important;
}
.mercury--by-63 {
  border-top: 63px #e5e5e5 solid !important;
  border-bottom: 63px #e5e5e5 solid !important;
}
.mercury--bx-63 {
  border-right: 63px #e5e5e5 solid !important;
  border-left: 63px #e5e5e5 solid !important;
}
.mercury--ba-64 {
  border: 64px #e5e5e5 solid !important;
}
.mercury--bt-64 {
  border-top: 64px #e5e5e5 solid !important;
}
.mercury--br-64 {
  border-right: 64px #e5e5e5 solid !important;
}
.mercury--bl-64 {
  border-left: 64px #e5e5e5 solid !important;
}
.mercury--bb-64 {
  border-bottom: 64px #e5e5e5 solid !important;
}
.mercury--by-64 {
  border-top: 64px #e5e5e5 solid !important;
  border-bottom: 64px #e5e5e5 solid !important;
}
.mercury--bx-64 {
  border-right: 64px #e5e5e5 solid !important;
  border-left: 64px #e5e5e5 solid !important;
}
.mercury--ba-65 {
  border: 65px #e5e5e5 solid !important;
}
.mercury--bt-65 {
  border-top: 65px #e5e5e5 solid !important;
}
.mercury--br-65 {
  border-right: 65px #e5e5e5 solid !important;
}
.mercury--bl-65 {
  border-left: 65px #e5e5e5 solid !important;
}
.mercury--bb-65 {
  border-bottom: 65px #e5e5e5 solid !important;
}
.mercury--by-65 {
  border-top: 65px #e5e5e5 solid !important;
  border-bottom: 65px #e5e5e5 solid !important;
}
.mercury--bx-65 {
  border-right: 65px #e5e5e5 solid !important;
  border-left: 65px #e5e5e5 solid !important;
}
.mercury--ba-66 {
  border: 66px #e5e5e5 solid !important;
}
.mercury--bt-66 {
  border-top: 66px #e5e5e5 solid !important;
}
.mercury--br-66 {
  border-right: 66px #e5e5e5 solid !important;
}
.mercury--bl-66 {
  border-left: 66px #e5e5e5 solid !important;
}
.mercury--bb-66 {
  border-bottom: 66px #e5e5e5 solid !important;
}
.mercury--by-66 {
  border-top: 66px #e5e5e5 solid !important;
  border-bottom: 66px #e5e5e5 solid !important;
}
.mercury--bx-66 {
  border-right: 66px #e5e5e5 solid !important;
  border-left: 66px #e5e5e5 solid !important;
}
.mercury--ba-67 {
  border: 67px #e5e5e5 solid !important;
}
.mercury--bt-67 {
  border-top: 67px #e5e5e5 solid !important;
}
.mercury--br-67 {
  border-right: 67px #e5e5e5 solid !important;
}
.mercury--bl-67 {
  border-left: 67px #e5e5e5 solid !important;
}
.mercury--bb-67 {
  border-bottom: 67px #e5e5e5 solid !important;
}
.mercury--by-67 {
  border-top: 67px #e5e5e5 solid !important;
  border-bottom: 67px #e5e5e5 solid !important;
}
.mercury--bx-67 {
  border-right: 67px #e5e5e5 solid !important;
  border-left: 67px #e5e5e5 solid !important;
}
.mercury--ba-68 {
  border: 68px #e5e5e5 solid !important;
}
.mercury--bt-68 {
  border-top: 68px #e5e5e5 solid !important;
}
.mercury--br-68 {
  border-right: 68px #e5e5e5 solid !important;
}
.mercury--bl-68 {
  border-left: 68px #e5e5e5 solid !important;
}
.mercury--bb-68 {
  border-bottom: 68px #e5e5e5 solid !important;
}
.mercury--by-68 {
  border-top: 68px #e5e5e5 solid !important;
  border-bottom: 68px #e5e5e5 solid !important;
}
.mercury--bx-68 {
  border-right: 68px #e5e5e5 solid !important;
  border-left: 68px #e5e5e5 solid !important;
}
.mercury--ba-69 {
  border: 69px #e5e5e5 solid !important;
}
.mercury--bt-69 {
  border-top: 69px #e5e5e5 solid !important;
}
.mercury--br-69 {
  border-right: 69px #e5e5e5 solid !important;
}
.mercury--bl-69 {
  border-left: 69px #e5e5e5 solid !important;
}
.mercury--bb-69 {
  border-bottom: 69px #e5e5e5 solid !important;
}
.mercury--by-69 {
  border-top: 69px #e5e5e5 solid !important;
  border-bottom: 69px #e5e5e5 solid !important;
}
.mercury--bx-69 {
  border-right: 69px #e5e5e5 solid !important;
  border-left: 69px #e5e5e5 solid !important;
}
.mercury--ba-70 {
  border: 70px #e5e5e5 solid !important;
}
.mercury--bt-70 {
  border-top: 70px #e5e5e5 solid !important;
}
.mercury--br-70 {
  border-right: 70px #e5e5e5 solid !important;
}
.mercury--bl-70 {
  border-left: 70px #e5e5e5 solid !important;
}
.mercury--bb-70 {
  border-bottom: 70px #e5e5e5 solid !important;
}
.mercury--by-70 {
  border-top: 70px #e5e5e5 solid !important;
  border-bottom: 70px #e5e5e5 solid !important;
}
.mercury--bx-70 {
  border-right: 70px #e5e5e5 solid !important;
  border-left: 70px #e5e5e5 solid !important;
}
.mercury--ba-71 {
  border: 71px #e5e5e5 solid !important;
}
.mercury--bt-71 {
  border-top: 71px #e5e5e5 solid !important;
}
.mercury--br-71 {
  border-right: 71px #e5e5e5 solid !important;
}
.mercury--bl-71 {
  border-left: 71px #e5e5e5 solid !important;
}
.mercury--bb-71 {
  border-bottom: 71px #e5e5e5 solid !important;
}
.mercury--by-71 {
  border-top: 71px #e5e5e5 solid !important;
  border-bottom: 71px #e5e5e5 solid !important;
}
.mercury--bx-71 {
  border-right: 71px #e5e5e5 solid !important;
  border-left: 71px #e5e5e5 solid !important;
}
.mercury--ba-72 {
  border: 72px #e5e5e5 solid !important;
}
.mercury--bt-72 {
  border-top: 72px #e5e5e5 solid !important;
}
.mercury--br-72 {
  border-right: 72px #e5e5e5 solid !important;
}
.mercury--bl-72 {
  border-left: 72px #e5e5e5 solid !important;
}
.mercury--bb-72 {
  border-bottom: 72px #e5e5e5 solid !important;
}
.mercury--by-72 {
  border-top: 72px #e5e5e5 solid !important;
  border-bottom: 72px #e5e5e5 solid !important;
}
.mercury--bx-72 {
  border-right: 72px #e5e5e5 solid !important;
  border-left: 72px #e5e5e5 solid !important;
}
.mercury--ba-73 {
  border: 73px #e5e5e5 solid !important;
}
.mercury--bt-73 {
  border-top: 73px #e5e5e5 solid !important;
}
.mercury--br-73 {
  border-right: 73px #e5e5e5 solid !important;
}
.mercury--bl-73 {
  border-left: 73px #e5e5e5 solid !important;
}
.mercury--bb-73 {
  border-bottom: 73px #e5e5e5 solid !important;
}
.mercury--by-73 {
  border-top: 73px #e5e5e5 solid !important;
  border-bottom: 73px #e5e5e5 solid !important;
}
.mercury--bx-73 {
  border-right: 73px #e5e5e5 solid !important;
  border-left: 73px #e5e5e5 solid !important;
}
.mercury--ba-74 {
  border: 74px #e5e5e5 solid !important;
}
.mercury--bt-74 {
  border-top: 74px #e5e5e5 solid !important;
}
.mercury--br-74 {
  border-right: 74px #e5e5e5 solid !important;
}
.mercury--bl-74 {
  border-left: 74px #e5e5e5 solid !important;
}
.mercury--bb-74 {
  border-bottom: 74px #e5e5e5 solid !important;
}
.mercury--by-74 {
  border-top: 74px #e5e5e5 solid !important;
  border-bottom: 74px #e5e5e5 solid !important;
}
.mercury--bx-74 {
  border-right: 74px #e5e5e5 solid !important;
  border-left: 74px #e5e5e5 solid !important;
}
.mercury--ba-75 {
  border: 75px #e5e5e5 solid !important;
}
.mercury--bt-75 {
  border-top: 75px #e5e5e5 solid !important;
}
.mercury--br-75 {
  border-right: 75px #e5e5e5 solid !important;
}
.mercury--bl-75 {
  border-left: 75px #e5e5e5 solid !important;
}
.mercury--bb-75 {
  border-bottom: 75px #e5e5e5 solid !important;
}
.mercury--by-75 {
  border-top: 75px #e5e5e5 solid !important;
  border-bottom: 75px #e5e5e5 solid !important;
}
.mercury--bx-75 {
  border-right: 75px #e5e5e5 solid !important;
  border-left: 75px #e5e5e5 solid !important;
}
.mercury--ba-76 {
  border: 76px #e5e5e5 solid !important;
}
.mercury--bt-76 {
  border-top: 76px #e5e5e5 solid !important;
}
.mercury--br-76 {
  border-right: 76px #e5e5e5 solid !important;
}
.mercury--bl-76 {
  border-left: 76px #e5e5e5 solid !important;
}
.mercury--bb-76 {
  border-bottom: 76px #e5e5e5 solid !important;
}
.mercury--by-76 {
  border-top: 76px #e5e5e5 solid !important;
  border-bottom: 76px #e5e5e5 solid !important;
}
.mercury--bx-76 {
  border-right: 76px #e5e5e5 solid !important;
  border-left: 76px #e5e5e5 solid !important;
}
.mercury--ba-77 {
  border: 77px #e5e5e5 solid !important;
}
.mercury--bt-77 {
  border-top: 77px #e5e5e5 solid !important;
}
.mercury--br-77 {
  border-right: 77px #e5e5e5 solid !important;
}
.mercury--bl-77 {
  border-left: 77px #e5e5e5 solid !important;
}
.mercury--bb-77 {
  border-bottom: 77px #e5e5e5 solid !important;
}
.mercury--by-77 {
  border-top: 77px #e5e5e5 solid !important;
  border-bottom: 77px #e5e5e5 solid !important;
}
.mercury--bx-77 {
  border-right: 77px #e5e5e5 solid !important;
  border-left: 77px #e5e5e5 solid !important;
}
.mercury--ba-78 {
  border: 78px #e5e5e5 solid !important;
}
.mercury--bt-78 {
  border-top: 78px #e5e5e5 solid !important;
}
.mercury--br-78 {
  border-right: 78px #e5e5e5 solid !important;
}
.mercury--bl-78 {
  border-left: 78px #e5e5e5 solid !important;
}
.mercury--bb-78 {
  border-bottom: 78px #e5e5e5 solid !important;
}
.mercury--by-78 {
  border-top: 78px #e5e5e5 solid !important;
  border-bottom: 78px #e5e5e5 solid !important;
}
.mercury--bx-78 {
  border-right: 78px #e5e5e5 solid !important;
  border-left: 78px #e5e5e5 solid !important;
}
.mercury--ba-79 {
  border: 79px #e5e5e5 solid !important;
}
.mercury--bt-79 {
  border-top: 79px #e5e5e5 solid !important;
}
.mercury--br-79 {
  border-right: 79px #e5e5e5 solid !important;
}
.mercury--bl-79 {
  border-left: 79px #e5e5e5 solid !important;
}
.mercury--bb-79 {
  border-bottom: 79px #e5e5e5 solid !important;
}
.mercury--by-79 {
  border-top: 79px #e5e5e5 solid !important;
  border-bottom: 79px #e5e5e5 solid !important;
}
.mercury--bx-79 {
  border-right: 79px #e5e5e5 solid !important;
  border-left: 79px #e5e5e5 solid !important;
}
.mercury--ba-80 {
  border: 80px #e5e5e5 solid !important;
}
.mercury--bt-80 {
  border-top: 80px #e5e5e5 solid !important;
}
.mercury--br-80 {
  border-right: 80px #e5e5e5 solid !important;
}
.mercury--bl-80 {
  border-left: 80px #e5e5e5 solid !important;
}
.mercury--bb-80 {
  border-bottom: 80px #e5e5e5 solid !important;
}
.mercury--by-80 {
  border-top: 80px #e5e5e5 solid !important;
  border-bottom: 80px #e5e5e5 solid !important;
}
.mercury--bx-80 {
  border-right: 80px #e5e5e5 solid !important;
  border-left: 80px #e5e5e5 solid !important;
}
.mercury--ba-81 {
  border: 81px #e5e5e5 solid !important;
}
.mercury--bt-81 {
  border-top: 81px #e5e5e5 solid !important;
}
.mercury--br-81 {
  border-right: 81px #e5e5e5 solid !important;
}
.mercury--bl-81 {
  border-left: 81px #e5e5e5 solid !important;
}
.mercury--bb-81 {
  border-bottom: 81px #e5e5e5 solid !important;
}
.mercury--by-81 {
  border-top: 81px #e5e5e5 solid !important;
  border-bottom: 81px #e5e5e5 solid !important;
}
.mercury--bx-81 {
  border-right: 81px #e5e5e5 solid !important;
  border-left: 81px #e5e5e5 solid !important;
}
.mercury--ba-82 {
  border: 82px #e5e5e5 solid !important;
}
.mercury--bt-82 {
  border-top: 82px #e5e5e5 solid !important;
}
.mercury--br-82 {
  border-right: 82px #e5e5e5 solid !important;
}
.mercury--bl-82 {
  border-left: 82px #e5e5e5 solid !important;
}
.mercury--bb-82 {
  border-bottom: 82px #e5e5e5 solid !important;
}
.mercury--by-82 {
  border-top: 82px #e5e5e5 solid !important;
  border-bottom: 82px #e5e5e5 solid !important;
}
.mercury--bx-82 {
  border-right: 82px #e5e5e5 solid !important;
  border-left: 82px #e5e5e5 solid !important;
}
.mercury--ba-83 {
  border: 83px #e5e5e5 solid !important;
}
.mercury--bt-83 {
  border-top: 83px #e5e5e5 solid !important;
}
.mercury--br-83 {
  border-right: 83px #e5e5e5 solid !important;
}
.mercury--bl-83 {
  border-left: 83px #e5e5e5 solid !important;
}
.mercury--bb-83 {
  border-bottom: 83px #e5e5e5 solid !important;
}
.mercury--by-83 {
  border-top: 83px #e5e5e5 solid !important;
  border-bottom: 83px #e5e5e5 solid !important;
}
.mercury--bx-83 {
  border-right: 83px #e5e5e5 solid !important;
  border-left: 83px #e5e5e5 solid !important;
}
.mercury--ba-84 {
  border: 84px #e5e5e5 solid !important;
}
.mercury--bt-84 {
  border-top: 84px #e5e5e5 solid !important;
}
.mercury--br-84 {
  border-right: 84px #e5e5e5 solid !important;
}
.mercury--bl-84 {
  border-left: 84px #e5e5e5 solid !important;
}
.mercury--bb-84 {
  border-bottom: 84px #e5e5e5 solid !important;
}
.mercury--by-84 {
  border-top: 84px #e5e5e5 solid !important;
  border-bottom: 84px #e5e5e5 solid !important;
}
.mercury--bx-84 {
  border-right: 84px #e5e5e5 solid !important;
  border-left: 84px #e5e5e5 solid !important;
}
.mercury--ba-85 {
  border: 85px #e5e5e5 solid !important;
}
.mercury--bt-85 {
  border-top: 85px #e5e5e5 solid !important;
}
.mercury--br-85 {
  border-right: 85px #e5e5e5 solid !important;
}
.mercury--bl-85 {
  border-left: 85px #e5e5e5 solid !important;
}
.mercury--bb-85 {
  border-bottom: 85px #e5e5e5 solid !important;
}
.mercury--by-85 {
  border-top: 85px #e5e5e5 solid !important;
  border-bottom: 85px #e5e5e5 solid !important;
}
.mercury--bx-85 {
  border-right: 85px #e5e5e5 solid !important;
  border-left: 85px #e5e5e5 solid !important;
}
.mercury--ba-86 {
  border: 86px #e5e5e5 solid !important;
}
.mercury--bt-86 {
  border-top: 86px #e5e5e5 solid !important;
}
.mercury--br-86 {
  border-right: 86px #e5e5e5 solid !important;
}
.mercury--bl-86 {
  border-left: 86px #e5e5e5 solid !important;
}
.mercury--bb-86 {
  border-bottom: 86px #e5e5e5 solid !important;
}
.mercury--by-86 {
  border-top: 86px #e5e5e5 solid !important;
  border-bottom: 86px #e5e5e5 solid !important;
}
.mercury--bx-86 {
  border-right: 86px #e5e5e5 solid !important;
  border-left: 86px #e5e5e5 solid !important;
}
.mercury--ba-87 {
  border: 87px #e5e5e5 solid !important;
}
.mercury--bt-87 {
  border-top: 87px #e5e5e5 solid !important;
}
.mercury--br-87 {
  border-right: 87px #e5e5e5 solid !important;
}
.mercury--bl-87 {
  border-left: 87px #e5e5e5 solid !important;
}
.mercury--bb-87 {
  border-bottom: 87px #e5e5e5 solid !important;
}
.mercury--by-87 {
  border-top: 87px #e5e5e5 solid !important;
  border-bottom: 87px #e5e5e5 solid !important;
}
.mercury--bx-87 {
  border-right: 87px #e5e5e5 solid !important;
  border-left: 87px #e5e5e5 solid !important;
}
.mercury--ba-88 {
  border: 88px #e5e5e5 solid !important;
}
.mercury--bt-88 {
  border-top: 88px #e5e5e5 solid !important;
}
.mercury--br-88 {
  border-right: 88px #e5e5e5 solid !important;
}
.mercury--bl-88 {
  border-left: 88px #e5e5e5 solid !important;
}
.mercury--bb-88 {
  border-bottom: 88px #e5e5e5 solid !important;
}
.mercury--by-88 {
  border-top: 88px #e5e5e5 solid !important;
  border-bottom: 88px #e5e5e5 solid !important;
}
.mercury--bx-88 {
  border-right: 88px #e5e5e5 solid !important;
  border-left: 88px #e5e5e5 solid !important;
}
.mercury--ba-89 {
  border: 89px #e5e5e5 solid !important;
}
.mercury--bt-89 {
  border-top: 89px #e5e5e5 solid !important;
}
.mercury--br-89 {
  border-right: 89px #e5e5e5 solid !important;
}
.mercury--bl-89 {
  border-left: 89px #e5e5e5 solid !important;
}
.mercury--bb-89 {
  border-bottom: 89px #e5e5e5 solid !important;
}
.mercury--by-89 {
  border-top: 89px #e5e5e5 solid !important;
  border-bottom: 89px #e5e5e5 solid !important;
}
.mercury--bx-89 {
  border-right: 89px #e5e5e5 solid !important;
  border-left: 89px #e5e5e5 solid !important;
}
.mercury--ba-90 {
  border: 90px #e5e5e5 solid !important;
}
.mercury--bt-90 {
  border-top: 90px #e5e5e5 solid !important;
}
.mercury--br-90 {
  border-right: 90px #e5e5e5 solid !important;
}
.mercury--bl-90 {
  border-left: 90px #e5e5e5 solid !important;
}
.mercury--bb-90 {
  border-bottom: 90px #e5e5e5 solid !important;
}
.mercury--by-90 {
  border-top: 90px #e5e5e5 solid !important;
  border-bottom: 90px #e5e5e5 solid !important;
}
.mercury--bx-90 {
  border-right: 90px #e5e5e5 solid !important;
  border-left: 90px #e5e5e5 solid !important;
}
.mercury--ba-91 {
  border: 91px #e5e5e5 solid !important;
}
.mercury--bt-91 {
  border-top: 91px #e5e5e5 solid !important;
}
.mercury--br-91 {
  border-right: 91px #e5e5e5 solid !important;
}
.mercury--bl-91 {
  border-left: 91px #e5e5e5 solid !important;
}
.mercury--bb-91 {
  border-bottom: 91px #e5e5e5 solid !important;
}
.mercury--by-91 {
  border-top: 91px #e5e5e5 solid !important;
  border-bottom: 91px #e5e5e5 solid !important;
}
.mercury--bx-91 {
  border-right: 91px #e5e5e5 solid !important;
  border-left: 91px #e5e5e5 solid !important;
}
.mercury--ba-92 {
  border: 92px #e5e5e5 solid !important;
}
.mercury--bt-92 {
  border-top: 92px #e5e5e5 solid !important;
}
.mercury--br-92 {
  border-right: 92px #e5e5e5 solid !important;
}
.mercury--bl-92 {
  border-left: 92px #e5e5e5 solid !important;
}
.mercury--bb-92 {
  border-bottom: 92px #e5e5e5 solid !important;
}
.mercury--by-92 {
  border-top: 92px #e5e5e5 solid !important;
  border-bottom: 92px #e5e5e5 solid !important;
}
.mercury--bx-92 {
  border-right: 92px #e5e5e5 solid !important;
  border-left: 92px #e5e5e5 solid !important;
}
.mercury--ba-93 {
  border: 93px #e5e5e5 solid !important;
}
.mercury--bt-93 {
  border-top: 93px #e5e5e5 solid !important;
}
.mercury--br-93 {
  border-right: 93px #e5e5e5 solid !important;
}
.mercury--bl-93 {
  border-left: 93px #e5e5e5 solid !important;
}
.mercury--bb-93 {
  border-bottom: 93px #e5e5e5 solid !important;
}
.mercury--by-93 {
  border-top: 93px #e5e5e5 solid !important;
  border-bottom: 93px #e5e5e5 solid !important;
}
.mercury--bx-93 {
  border-right: 93px #e5e5e5 solid !important;
  border-left: 93px #e5e5e5 solid !important;
}
.mercury--ba-94 {
  border: 94px #e5e5e5 solid !important;
}
.mercury--bt-94 {
  border-top: 94px #e5e5e5 solid !important;
}
.mercury--br-94 {
  border-right: 94px #e5e5e5 solid !important;
}
.mercury--bl-94 {
  border-left: 94px #e5e5e5 solid !important;
}
.mercury--bb-94 {
  border-bottom: 94px #e5e5e5 solid !important;
}
.mercury--by-94 {
  border-top: 94px #e5e5e5 solid !important;
  border-bottom: 94px #e5e5e5 solid !important;
}
.mercury--bx-94 {
  border-right: 94px #e5e5e5 solid !important;
  border-left: 94px #e5e5e5 solid !important;
}
.mercury--ba-95 {
  border: 95px #e5e5e5 solid !important;
}
.mercury--bt-95 {
  border-top: 95px #e5e5e5 solid !important;
}
.mercury--br-95 {
  border-right: 95px #e5e5e5 solid !important;
}
.mercury--bl-95 {
  border-left: 95px #e5e5e5 solid !important;
}
.mercury--bb-95 {
  border-bottom: 95px #e5e5e5 solid !important;
}
.mercury--by-95 {
  border-top: 95px #e5e5e5 solid !important;
  border-bottom: 95px #e5e5e5 solid !important;
}
.mercury--bx-95 {
  border-right: 95px #e5e5e5 solid !important;
  border-left: 95px #e5e5e5 solid !important;
}
.mercury--ba-96 {
  border: 96px #e5e5e5 solid !important;
}
.mercury--bt-96 {
  border-top: 96px #e5e5e5 solid !important;
}
.mercury--br-96 {
  border-right: 96px #e5e5e5 solid !important;
}
.mercury--bl-96 {
  border-left: 96px #e5e5e5 solid !important;
}
.mercury--bb-96 {
  border-bottom: 96px #e5e5e5 solid !important;
}
.mercury--by-96 {
  border-top: 96px #e5e5e5 solid !important;
  border-bottom: 96px #e5e5e5 solid !important;
}
.mercury--bx-96 {
  border-right: 96px #e5e5e5 solid !important;
  border-left: 96px #e5e5e5 solid !important;
}
.mercury--ba-97 {
  border: 97px #e5e5e5 solid !important;
}
.mercury--bt-97 {
  border-top: 97px #e5e5e5 solid !important;
}
.mercury--br-97 {
  border-right: 97px #e5e5e5 solid !important;
}
.mercury--bl-97 {
  border-left: 97px #e5e5e5 solid !important;
}
.mercury--bb-97 {
  border-bottom: 97px #e5e5e5 solid !important;
}
.mercury--by-97 {
  border-top: 97px #e5e5e5 solid !important;
  border-bottom: 97px #e5e5e5 solid !important;
}
.mercury--bx-97 {
  border-right: 97px #e5e5e5 solid !important;
  border-left: 97px #e5e5e5 solid !important;
}
.mercury--ba-98 {
  border: 98px #e5e5e5 solid !important;
}
.mercury--bt-98 {
  border-top: 98px #e5e5e5 solid !important;
}
.mercury--br-98 {
  border-right: 98px #e5e5e5 solid !important;
}
.mercury--bl-98 {
  border-left: 98px #e5e5e5 solid !important;
}
.mercury--bb-98 {
  border-bottom: 98px #e5e5e5 solid !important;
}
.mercury--by-98 {
  border-top: 98px #e5e5e5 solid !important;
  border-bottom: 98px #e5e5e5 solid !important;
}
.mercury--bx-98 {
  border-right: 98px #e5e5e5 solid !important;
  border-left: 98px #e5e5e5 solid !important;
}
.mercury--ba-99 {
  border: 99px #e5e5e5 solid !important;
}
.mercury--bt-99 {
  border-top: 99px #e5e5e5 solid !important;
}
.mercury--br-99 {
  border-right: 99px #e5e5e5 solid !important;
}
.mercury--bl-99 {
  border-left: 99px #e5e5e5 solid !important;
}
.mercury--bb-99 {
  border-bottom: 99px #e5e5e5 solid !important;
}
.mercury--by-99 {
  border-top: 99px #e5e5e5 solid !important;
  border-bottom: 99px #e5e5e5 solid !important;
}
.mercury--bx-99 {
  border-right: 99px #e5e5e5 solid !important;
  border-left: 99px #e5e5e5 solid !important;
}
.mercury--ba-100 {
  border: 100px #e5e5e5 solid !important;
}
.mercury--bt-100 {
  border-top: 100px #e5e5e5 solid !important;
}
.mercury--br-100 {
  border-right: 100px #e5e5e5 solid !important;
}
.mercury--bl-100 {
  border-left: 100px #e5e5e5 solid !important;
}
.mercury--bb-100 {
  border-bottom: 100px #e5e5e5 solid !important;
}
.mercury--by-100 {
  border-top: 100px #e5e5e5 solid !important;
  border-bottom: 100px #e5e5e5 solid !important;
}
.mercury--bx-100 {
  border-right: 100px #e5e5e5 solid !important;
  border-left: 100px #e5e5e5 solid !important;
}
.concrete-solid--ba-1 {
  border: 1px #f2f2f2 solid !important;
}
.concrete-solid--bt-1 {
  border-top: 1px #f2f2f2 solid !important;
}
.concrete-solid--br-1 {
  border-right: 1px #f2f2f2 solid !important;
}
.concrete-solid--bl-1 {
  border-left: 1px #f2f2f2 solid !important;
}
.concrete-solid--bb-1 {
  border-bottom: 1px #f2f2f2 solid !important;
}
.concrete-solid--by-1 {
  border-top: 1px #f2f2f2 solid !important;
  border-bottom: 1px #f2f2f2 solid !important;
}
.concrete-solid--bx-1 {
  border-right: 1px #f2f2f2 solid !important;
  border-left: 1px #f2f2f2 solid !important;
}
.concrete-solid--ba-2 {
  border: 2px #f2f2f2 solid !important;
}
.concrete-solid--bt-2 {
  border-top: 2px #f2f2f2 solid !important;
}
.concrete-solid--br-2 {
  border-right: 2px #f2f2f2 solid !important;
}
.concrete-solid--bl-2 {
  border-left: 2px #f2f2f2 solid !important;
}
.concrete-solid--bb-2 {
  border-bottom: 2px #f2f2f2 solid !important;
}
.concrete-solid--by-2 {
  border-top: 2px #f2f2f2 solid !important;
  border-bottom: 2px #f2f2f2 solid !important;
}
.concrete-solid--bx-2 {
  border-right: 2px #f2f2f2 solid !important;
  border-left: 2px #f2f2f2 solid !important;
}
.concrete-solid--ba-3 {
  border: 3px #f2f2f2 solid !important;
}
.concrete-solid--bt-3 {
  border-top: 3px #f2f2f2 solid !important;
}
.concrete-solid--br-3 {
  border-right: 3px #f2f2f2 solid !important;
}
.concrete-solid--bl-3 {
  border-left: 3px #f2f2f2 solid !important;
}
.concrete-solid--bb-3 {
  border-bottom: 3px #f2f2f2 solid !important;
}
.concrete-solid--by-3 {
  border-top: 3px #f2f2f2 solid !important;
  border-bottom: 3px #f2f2f2 solid !important;
}
.concrete-solid--bx-3 {
  border-right: 3px #f2f2f2 solid !important;
  border-left: 3px #f2f2f2 solid !important;
}
.concrete-solid--ba-4 {
  border: 4px #f2f2f2 solid !important;
}
.concrete-solid--bt-4 {
  border-top: 4px #f2f2f2 solid !important;
}
.concrete-solid--br-4 {
  border-right: 4px #f2f2f2 solid !important;
}
.concrete-solid--bl-4 {
  border-left: 4px #f2f2f2 solid !important;
}
.concrete-solid--bb-4 {
  border-bottom: 4px #f2f2f2 solid !important;
}
.concrete-solid--by-4 {
  border-top: 4px #f2f2f2 solid !important;
  border-bottom: 4px #f2f2f2 solid !important;
}
.concrete-solid--bx-4 {
  border-right: 4px #f2f2f2 solid !important;
  border-left: 4px #f2f2f2 solid !important;
}
.concrete-solid--ba-5 {
  border: 5px #f2f2f2 solid !important;
}
.concrete-solid--bt-5 {
  border-top: 5px #f2f2f2 solid !important;
}
.concrete-solid--br-5 {
  border-right: 5px #f2f2f2 solid !important;
}
.concrete-solid--bl-5 {
  border-left: 5px #f2f2f2 solid !important;
}
.concrete-solid--bb-5 {
  border-bottom: 5px #f2f2f2 solid !important;
}
.concrete-solid--by-5 {
  border-top: 5px #f2f2f2 solid !important;
  border-bottom: 5px #f2f2f2 solid !important;
}
.concrete-solid--bx-5 {
  border-right: 5px #f2f2f2 solid !important;
  border-left: 5px #f2f2f2 solid !important;
}
.concrete-solid--ba-6 {
  border: 6px #f2f2f2 solid !important;
}
.concrete-solid--bt-6 {
  border-top: 6px #f2f2f2 solid !important;
}
.concrete-solid--br-6 {
  border-right: 6px #f2f2f2 solid !important;
}
.concrete-solid--bl-6 {
  border-left: 6px #f2f2f2 solid !important;
}
.concrete-solid--bb-6 {
  border-bottom: 6px #f2f2f2 solid !important;
}
.concrete-solid--by-6 {
  border-top: 6px #f2f2f2 solid !important;
  border-bottom: 6px #f2f2f2 solid !important;
}
.concrete-solid--bx-6 {
  border-right: 6px #f2f2f2 solid !important;
  border-left: 6px #f2f2f2 solid !important;
}
.concrete-solid--ba-7 {
  border: 7px #f2f2f2 solid !important;
}
.concrete-solid--bt-7 {
  border-top: 7px #f2f2f2 solid !important;
}
.concrete-solid--br-7 {
  border-right: 7px #f2f2f2 solid !important;
}
.concrete-solid--bl-7 {
  border-left: 7px #f2f2f2 solid !important;
}
.concrete-solid--bb-7 {
  border-bottom: 7px #f2f2f2 solid !important;
}
.concrete-solid--by-7 {
  border-top: 7px #f2f2f2 solid !important;
  border-bottom: 7px #f2f2f2 solid !important;
}
.concrete-solid--bx-7 {
  border-right: 7px #f2f2f2 solid !important;
  border-left: 7px #f2f2f2 solid !important;
}
.concrete-solid--ba-8 {
  border: 8px #f2f2f2 solid !important;
}
.concrete-solid--bt-8 {
  border-top: 8px #f2f2f2 solid !important;
}
.concrete-solid--br-8 {
  border-right: 8px #f2f2f2 solid !important;
}
.concrete-solid--bl-8 {
  border-left: 8px #f2f2f2 solid !important;
}
.concrete-solid--bb-8 {
  border-bottom: 8px #f2f2f2 solid !important;
}
.concrete-solid--by-8 {
  border-top: 8px #f2f2f2 solid !important;
  border-bottom: 8px #f2f2f2 solid !important;
}
.concrete-solid--bx-8 {
  border-right: 8px #f2f2f2 solid !important;
  border-left: 8px #f2f2f2 solid !important;
}
.concrete-solid--ba-9 {
  border: 9px #f2f2f2 solid !important;
}
.concrete-solid--bt-9 {
  border-top: 9px #f2f2f2 solid !important;
}
.concrete-solid--br-9 {
  border-right: 9px #f2f2f2 solid !important;
}
.concrete-solid--bl-9 {
  border-left: 9px #f2f2f2 solid !important;
}
.concrete-solid--bb-9 {
  border-bottom: 9px #f2f2f2 solid !important;
}
.concrete-solid--by-9 {
  border-top: 9px #f2f2f2 solid !important;
  border-bottom: 9px #f2f2f2 solid !important;
}
.concrete-solid--bx-9 {
  border-right: 9px #f2f2f2 solid !important;
  border-left: 9px #f2f2f2 solid !important;
}
.concrete-solid--ba-10 {
  border: 10px #f2f2f2 solid !important;
}
.concrete-solid--bt-10 {
  border-top: 10px #f2f2f2 solid !important;
}
.concrete-solid--br-10 {
  border-right: 10px #f2f2f2 solid !important;
}
.concrete-solid--bl-10 {
  border-left: 10px #f2f2f2 solid !important;
}
.concrete-solid--bb-10 {
  border-bottom: 10px #f2f2f2 solid !important;
}
.concrete-solid--by-10 {
  border-top: 10px #f2f2f2 solid !important;
  border-bottom: 10px #f2f2f2 solid !important;
}
.concrete-solid--bx-10 {
  border-right: 10px #f2f2f2 solid !important;
  border-left: 10px #f2f2f2 solid !important;
}
.concrete-solid--ba-11 {
  border: 11px #f2f2f2 solid !important;
}
.concrete-solid--bt-11 {
  border-top: 11px #f2f2f2 solid !important;
}
.concrete-solid--br-11 {
  border-right: 11px #f2f2f2 solid !important;
}
.concrete-solid--bl-11 {
  border-left: 11px #f2f2f2 solid !important;
}
.concrete-solid--bb-11 {
  border-bottom: 11px #f2f2f2 solid !important;
}
.concrete-solid--by-11 {
  border-top: 11px #f2f2f2 solid !important;
  border-bottom: 11px #f2f2f2 solid !important;
}
.concrete-solid--bx-11 {
  border-right: 11px #f2f2f2 solid !important;
  border-left: 11px #f2f2f2 solid !important;
}
.concrete-solid--ba-12 {
  border: 12px #f2f2f2 solid !important;
}
.concrete-solid--bt-12 {
  border-top: 12px #f2f2f2 solid !important;
}
.concrete-solid--br-12 {
  border-right: 12px #f2f2f2 solid !important;
}
.concrete-solid--bl-12 {
  border-left: 12px #f2f2f2 solid !important;
}
.concrete-solid--bb-12 {
  border-bottom: 12px #f2f2f2 solid !important;
}
.concrete-solid--by-12 {
  border-top: 12px #f2f2f2 solid !important;
  border-bottom: 12px #f2f2f2 solid !important;
}
.concrete-solid--bx-12 {
  border-right: 12px #f2f2f2 solid !important;
  border-left: 12px #f2f2f2 solid !important;
}
.concrete-solid--ba-13 {
  border: 13px #f2f2f2 solid !important;
}
.concrete-solid--bt-13 {
  border-top: 13px #f2f2f2 solid !important;
}
.concrete-solid--br-13 {
  border-right: 13px #f2f2f2 solid !important;
}
.concrete-solid--bl-13 {
  border-left: 13px #f2f2f2 solid !important;
}
.concrete-solid--bb-13 {
  border-bottom: 13px #f2f2f2 solid !important;
}
.concrete-solid--by-13 {
  border-top: 13px #f2f2f2 solid !important;
  border-bottom: 13px #f2f2f2 solid !important;
}
.concrete-solid--bx-13 {
  border-right: 13px #f2f2f2 solid !important;
  border-left: 13px #f2f2f2 solid !important;
}
.concrete-solid--ba-14 {
  border: 14px #f2f2f2 solid !important;
}
.concrete-solid--bt-14 {
  border-top: 14px #f2f2f2 solid !important;
}
.concrete-solid--br-14 {
  border-right: 14px #f2f2f2 solid !important;
}
.concrete-solid--bl-14 {
  border-left: 14px #f2f2f2 solid !important;
}
.concrete-solid--bb-14 {
  border-bottom: 14px #f2f2f2 solid !important;
}
.concrete-solid--by-14 {
  border-top: 14px #f2f2f2 solid !important;
  border-bottom: 14px #f2f2f2 solid !important;
}
.concrete-solid--bx-14 {
  border-right: 14px #f2f2f2 solid !important;
  border-left: 14px #f2f2f2 solid !important;
}
.concrete-solid--ba-15 {
  border: 15px #f2f2f2 solid !important;
}
.concrete-solid--bt-15 {
  border-top: 15px #f2f2f2 solid !important;
}
.concrete-solid--br-15 {
  border-right: 15px #f2f2f2 solid !important;
}
.concrete-solid--bl-15 {
  border-left: 15px #f2f2f2 solid !important;
}
.concrete-solid--bb-15 {
  border-bottom: 15px #f2f2f2 solid !important;
}
.concrete-solid--by-15 {
  border-top: 15px #f2f2f2 solid !important;
  border-bottom: 15px #f2f2f2 solid !important;
}
.concrete-solid--bx-15 {
  border-right: 15px #f2f2f2 solid !important;
  border-left: 15px #f2f2f2 solid !important;
}
.concrete-solid--ba-16 {
  border: 16px #f2f2f2 solid !important;
}
.concrete-solid--bt-16 {
  border-top: 16px #f2f2f2 solid !important;
}
.concrete-solid--br-16 {
  border-right: 16px #f2f2f2 solid !important;
}
.concrete-solid--bl-16 {
  border-left: 16px #f2f2f2 solid !important;
}
.concrete-solid--bb-16 {
  border-bottom: 16px #f2f2f2 solid !important;
}
.concrete-solid--by-16 {
  border-top: 16px #f2f2f2 solid !important;
  border-bottom: 16px #f2f2f2 solid !important;
}
.concrete-solid--bx-16 {
  border-right: 16px #f2f2f2 solid !important;
  border-left: 16px #f2f2f2 solid !important;
}
.concrete-solid--ba-17 {
  border: 17px #f2f2f2 solid !important;
}
.concrete-solid--bt-17 {
  border-top: 17px #f2f2f2 solid !important;
}
.concrete-solid--br-17 {
  border-right: 17px #f2f2f2 solid !important;
}
.concrete-solid--bl-17 {
  border-left: 17px #f2f2f2 solid !important;
}
.concrete-solid--bb-17 {
  border-bottom: 17px #f2f2f2 solid !important;
}
.concrete-solid--by-17 {
  border-top: 17px #f2f2f2 solid !important;
  border-bottom: 17px #f2f2f2 solid !important;
}
.concrete-solid--bx-17 {
  border-right: 17px #f2f2f2 solid !important;
  border-left: 17px #f2f2f2 solid !important;
}
.concrete-solid--ba-18 {
  border: 18px #f2f2f2 solid !important;
}
.concrete-solid--bt-18 {
  border-top: 18px #f2f2f2 solid !important;
}
.concrete-solid--br-18 {
  border-right: 18px #f2f2f2 solid !important;
}
.concrete-solid--bl-18 {
  border-left: 18px #f2f2f2 solid !important;
}
.concrete-solid--bb-18 {
  border-bottom: 18px #f2f2f2 solid !important;
}
.concrete-solid--by-18 {
  border-top: 18px #f2f2f2 solid !important;
  border-bottom: 18px #f2f2f2 solid !important;
}
.concrete-solid--bx-18 {
  border-right: 18px #f2f2f2 solid !important;
  border-left: 18px #f2f2f2 solid !important;
}
.concrete-solid--ba-19 {
  border: 19px #f2f2f2 solid !important;
}
.concrete-solid--bt-19 {
  border-top: 19px #f2f2f2 solid !important;
}
.concrete-solid--br-19 {
  border-right: 19px #f2f2f2 solid !important;
}
.concrete-solid--bl-19 {
  border-left: 19px #f2f2f2 solid !important;
}
.concrete-solid--bb-19 {
  border-bottom: 19px #f2f2f2 solid !important;
}
.concrete-solid--by-19 {
  border-top: 19px #f2f2f2 solid !important;
  border-bottom: 19px #f2f2f2 solid !important;
}
.concrete-solid--bx-19 {
  border-right: 19px #f2f2f2 solid !important;
  border-left: 19px #f2f2f2 solid !important;
}
.concrete-solid--ba-20 {
  border: 20px #f2f2f2 solid !important;
}
.concrete-solid--bt-20 {
  border-top: 20px #f2f2f2 solid !important;
}
.concrete-solid--br-20 {
  border-right: 20px #f2f2f2 solid !important;
}
.concrete-solid--bl-20 {
  border-left: 20px #f2f2f2 solid !important;
}
.concrete-solid--bb-20 {
  border-bottom: 20px #f2f2f2 solid !important;
}
.concrete-solid--by-20 {
  border-top: 20px #f2f2f2 solid !important;
  border-bottom: 20px #f2f2f2 solid !important;
}
.concrete-solid--bx-20 {
  border-right: 20px #f2f2f2 solid !important;
  border-left: 20px #f2f2f2 solid !important;
}
.concrete-solid--ba-21 {
  border: 21px #f2f2f2 solid !important;
}
.concrete-solid--bt-21 {
  border-top: 21px #f2f2f2 solid !important;
}
.concrete-solid--br-21 {
  border-right: 21px #f2f2f2 solid !important;
}
.concrete-solid--bl-21 {
  border-left: 21px #f2f2f2 solid !important;
}
.concrete-solid--bb-21 {
  border-bottom: 21px #f2f2f2 solid !important;
}
.concrete-solid--by-21 {
  border-top: 21px #f2f2f2 solid !important;
  border-bottom: 21px #f2f2f2 solid !important;
}
.concrete-solid--bx-21 {
  border-right: 21px #f2f2f2 solid !important;
  border-left: 21px #f2f2f2 solid !important;
}
.concrete-solid--ba-22 {
  border: 22px #f2f2f2 solid !important;
}
.concrete-solid--bt-22 {
  border-top: 22px #f2f2f2 solid !important;
}
.concrete-solid--br-22 {
  border-right: 22px #f2f2f2 solid !important;
}
.concrete-solid--bl-22 {
  border-left: 22px #f2f2f2 solid !important;
}
.concrete-solid--bb-22 {
  border-bottom: 22px #f2f2f2 solid !important;
}
.concrete-solid--by-22 {
  border-top: 22px #f2f2f2 solid !important;
  border-bottom: 22px #f2f2f2 solid !important;
}
.concrete-solid--bx-22 {
  border-right: 22px #f2f2f2 solid !important;
  border-left: 22px #f2f2f2 solid !important;
}
.concrete-solid--ba-23 {
  border: 23px #f2f2f2 solid !important;
}
.concrete-solid--bt-23 {
  border-top: 23px #f2f2f2 solid !important;
}
.concrete-solid--br-23 {
  border-right: 23px #f2f2f2 solid !important;
}
.concrete-solid--bl-23 {
  border-left: 23px #f2f2f2 solid !important;
}
.concrete-solid--bb-23 {
  border-bottom: 23px #f2f2f2 solid !important;
}
.concrete-solid--by-23 {
  border-top: 23px #f2f2f2 solid !important;
  border-bottom: 23px #f2f2f2 solid !important;
}
.concrete-solid--bx-23 {
  border-right: 23px #f2f2f2 solid !important;
  border-left: 23px #f2f2f2 solid !important;
}
.concrete-solid--ba-24 {
  border: 24px #f2f2f2 solid !important;
}
.concrete-solid--bt-24 {
  border-top: 24px #f2f2f2 solid !important;
}
.concrete-solid--br-24 {
  border-right: 24px #f2f2f2 solid !important;
}
.concrete-solid--bl-24 {
  border-left: 24px #f2f2f2 solid !important;
}
.concrete-solid--bb-24 {
  border-bottom: 24px #f2f2f2 solid !important;
}
.concrete-solid--by-24 {
  border-top: 24px #f2f2f2 solid !important;
  border-bottom: 24px #f2f2f2 solid !important;
}
.concrete-solid--bx-24 {
  border-right: 24px #f2f2f2 solid !important;
  border-left: 24px #f2f2f2 solid !important;
}
.concrete-solid--ba-25 {
  border: 25px #f2f2f2 solid !important;
}
.concrete-solid--bt-25 {
  border-top: 25px #f2f2f2 solid !important;
}
.concrete-solid--br-25 {
  border-right: 25px #f2f2f2 solid !important;
}
.concrete-solid--bl-25 {
  border-left: 25px #f2f2f2 solid !important;
}
.concrete-solid--bb-25 {
  border-bottom: 25px #f2f2f2 solid !important;
}
.concrete-solid--by-25 {
  border-top: 25px #f2f2f2 solid !important;
  border-bottom: 25px #f2f2f2 solid !important;
}
.concrete-solid--bx-25 {
  border-right: 25px #f2f2f2 solid !important;
  border-left: 25px #f2f2f2 solid !important;
}
.concrete-solid--ba-26 {
  border: 26px #f2f2f2 solid !important;
}
.concrete-solid--bt-26 {
  border-top: 26px #f2f2f2 solid !important;
}
.concrete-solid--br-26 {
  border-right: 26px #f2f2f2 solid !important;
}
.concrete-solid--bl-26 {
  border-left: 26px #f2f2f2 solid !important;
}
.concrete-solid--bb-26 {
  border-bottom: 26px #f2f2f2 solid !important;
}
.concrete-solid--by-26 {
  border-top: 26px #f2f2f2 solid !important;
  border-bottom: 26px #f2f2f2 solid !important;
}
.concrete-solid--bx-26 {
  border-right: 26px #f2f2f2 solid !important;
  border-left: 26px #f2f2f2 solid !important;
}
.concrete-solid--ba-27 {
  border: 27px #f2f2f2 solid !important;
}
.concrete-solid--bt-27 {
  border-top: 27px #f2f2f2 solid !important;
}
.concrete-solid--br-27 {
  border-right: 27px #f2f2f2 solid !important;
}
.concrete-solid--bl-27 {
  border-left: 27px #f2f2f2 solid !important;
}
.concrete-solid--bb-27 {
  border-bottom: 27px #f2f2f2 solid !important;
}
.concrete-solid--by-27 {
  border-top: 27px #f2f2f2 solid !important;
  border-bottom: 27px #f2f2f2 solid !important;
}
.concrete-solid--bx-27 {
  border-right: 27px #f2f2f2 solid !important;
  border-left: 27px #f2f2f2 solid !important;
}
.concrete-solid--ba-28 {
  border: 28px #f2f2f2 solid !important;
}
.concrete-solid--bt-28 {
  border-top: 28px #f2f2f2 solid !important;
}
.concrete-solid--br-28 {
  border-right: 28px #f2f2f2 solid !important;
}
.concrete-solid--bl-28 {
  border-left: 28px #f2f2f2 solid !important;
}
.concrete-solid--bb-28 {
  border-bottom: 28px #f2f2f2 solid !important;
}
.concrete-solid--by-28 {
  border-top: 28px #f2f2f2 solid !important;
  border-bottom: 28px #f2f2f2 solid !important;
}
.concrete-solid--bx-28 {
  border-right: 28px #f2f2f2 solid !important;
  border-left: 28px #f2f2f2 solid !important;
}
.concrete-solid--ba-29 {
  border: 29px #f2f2f2 solid !important;
}
.concrete-solid--bt-29 {
  border-top: 29px #f2f2f2 solid !important;
}
.concrete-solid--br-29 {
  border-right: 29px #f2f2f2 solid !important;
}
.concrete-solid--bl-29 {
  border-left: 29px #f2f2f2 solid !important;
}
.concrete-solid--bb-29 {
  border-bottom: 29px #f2f2f2 solid !important;
}
.concrete-solid--by-29 {
  border-top: 29px #f2f2f2 solid !important;
  border-bottom: 29px #f2f2f2 solid !important;
}
.concrete-solid--bx-29 {
  border-right: 29px #f2f2f2 solid !important;
  border-left: 29px #f2f2f2 solid !important;
}
.concrete-solid--ba-30 {
  border: 30px #f2f2f2 solid !important;
}
.concrete-solid--bt-30 {
  border-top: 30px #f2f2f2 solid !important;
}
.concrete-solid--br-30 {
  border-right: 30px #f2f2f2 solid !important;
}
.concrete-solid--bl-30 {
  border-left: 30px #f2f2f2 solid !important;
}
.concrete-solid--bb-30 {
  border-bottom: 30px #f2f2f2 solid !important;
}
.concrete-solid--by-30 {
  border-top: 30px #f2f2f2 solid !important;
  border-bottom: 30px #f2f2f2 solid !important;
}
.concrete-solid--bx-30 {
  border-right: 30px #f2f2f2 solid !important;
  border-left: 30px #f2f2f2 solid !important;
}
.concrete-solid--ba-31 {
  border: 31px #f2f2f2 solid !important;
}
.concrete-solid--bt-31 {
  border-top: 31px #f2f2f2 solid !important;
}
.concrete-solid--br-31 {
  border-right: 31px #f2f2f2 solid !important;
}
.concrete-solid--bl-31 {
  border-left: 31px #f2f2f2 solid !important;
}
.concrete-solid--bb-31 {
  border-bottom: 31px #f2f2f2 solid !important;
}
.concrete-solid--by-31 {
  border-top: 31px #f2f2f2 solid !important;
  border-bottom: 31px #f2f2f2 solid !important;
}
.concrete-solid--bx-31 {
  border-right: 31px #f2f2f2 solid !important;
  border-left: 31px #f2f2f2 solid !important;
}
.concrete-solid--ba-32 {
  border: 32px #f2f2f2 solid !important;
}
.concrete-solid--bt-32 {
  border-top: 32px #f2f2f2 solid !important;
}
.concrete-solid--br-32 {
  border-right: 32px #f2f2f2 solid !important;
}
.concrete-solid--bl-32 {
  border-left: 32px #f2f2f2 solid !important;
}
.concrete-solid--bb-32 {
  border-bottom: 32px #f2f2f2 solid !important;
}
.concrete-solid--by-32 {
  border-top: 32px #f2f2f2 solid !important;
  border-bottom: 32px #f2f2f2 solid !important;
}
.concrete-solid--bx-32 {
  border-right: 32px #f2f2f2 solid !important;
  border-left: 32px #f2f2f2 solid !important;
}
.concrete-solid--ba-33 {
  border: 33px #f2f2f2 solid !important;
}
.concrete-solid--bt-33 {
  border-top: 33px #f2f2f2 solid !important;
}
.concrete-solid--br-33 {
  border-right: 33px #f2f2f2 solid !important;
}
.concrete-solid--bl-33 {
  border-left: 33px #f2f2f2 solid !important;
}
.concrete-solid--bb-33 {
  border-bottom: 33px #f2f2f2 solid !important;
}
.concrete-solid--by-33 {
  border-top: 33px #f2f2f2 solid !important;
  border-bottom: 33px #f2f2f2 solid !important;
}
.concrete-solid--bx-33 {
  border-right: 33px #f2f2f2 solid !important;
  border-left: 33px #f2f2f2 solid !important;
}
.concrete-solid--ba-34 {
  border: 34px #f2f2f2 solid !important;
}
.concrete-solid--bt-34 {
  border-top: 34px #f2f2f2 solid !important;
}
.concrete-solid--br-34 {
  border-right: 34px #f2f2f2 solid !important;
}
.concrete-solid--bl-34 {
  border-left: 34px #f2f2f2 solid !important;
}
.concrete-solid--bb-34 {
  border-bottom: 34px #f2f2f2 solid !important;
}
.concrete-solid--by-34 {
  border-top: 34px #f2f2f2 solid !important;
  border-bottom: 34px #f2f2f2 solid !important;
}
.concrete-solid--bx-34 {
  border-right: 34px #f2f2f2 solid !important;
  border-left: 34px #f2f2f2 solid !important;
}
.concrete-solid--ba-35 {
  border: 35px #f2f2f2 solid !important;
}
.concrete-solid--bt-35 {
  border-top: 35px #f2f2f2 solid !important;
}
.concrete-solid--br-35 {
  border-right: 35px #f2f2f2 solid !important;
}
.concrete-solid--bl-35 {
  border-left: 35px #f2f2f2 solid !important;
}
.concrete-solid--bb-35 {
  border-bottom: 35px #f2f2f2 solid !important;
}
.concrete-solid--by-35 {
  border-top: 35px #f2f2f2 solid !important;
  border-bottom: 35px #f2f2f2 solid !important;
}
.concrete-solid--bx-35 {
  border-right: 35px #f2f2f2 solid !important;
  border-left: 35px #f2f2f2 solid !important;
}
.concrete-solid--ba-36 {
  border: 36px #f2f2f2 solid !important;
}
.concrete-solid--bt-36 {
  border-top: 36px #f2f2f2 solid !important;
}
.concrete-solid--br-36 {
  border-right: 36px #f2f2f2 solid !important;
}
.concrete-solid--bl-36 {
  border-left: 36px #f2f2f2 solid !important;
}
.concrete-solid--bb-36 {
  border-bottom: 36px #f2f2f2 solid !important;
}
.concrete-solid--by-36 {
  border-top: 36px #f2f2f2 solid !important;
  border-bottom: 36px #f2f2f2 solid !important;
}
.concrete-solid--bx-36 {
  border-right: 36px #f2f2f2 solid !important;
  border-left: 36px #f2f2f2 solid !important;
}
.concrete-solid--ba-37 {
  border: 37px #f2f2f2 solid !important;
}
.concrete-solid--bt-37 {
  border-top: 37px #f2f2f2 solid !important;
}
.concrete-solid--br-37 {
  border-right: 37px #f2f2f2 solid !important;
}
.concrete-solid--bl-37 {
  border-left: 37px #f2f2f2 solid !important;
}
.concrete-solid--bb-37 {
  border-bottom: 37px #f2f2f2 solid !important;
}
.concrete-solid--by-37 {
  border-top: 37px #f2f2f2 solid !important;
  border-bottom: 37px #f2f2f2 solid !important;
}
.concrete-solid--bx-37 {
  border-right: 37px #f2f2f2 solid !important;
  border-left: 37px #f2f2f2 solid !important;
}
.concrete-solid--ba-38 {
  border: 38px #f2f2f2 solid !important;
}
.concrete-solid--bt-38 {
  border-top: 38px #f2f2f2 solid !important;
}
.concrete-solid--br-38 {
  border-right: 38px #f2f2f2 solid !important;
}
.concrete-solid--bl-38 {
  border-left: 38px #f2f2f2 solid !important;
}
.concrete-solid--bb-38 {
  border-bottom: 38px #f2f2f2 solid !important;
}
.concrete-solid--by-38 {
  border-top: 38px #f2f2f2 solid !important;
  border-bottom: 38px #f2f2f2 solid !important;
}
.concrete-solid--bx-38 {
  border-right: 38px #f2f2f2 solid !important;
  border-left: 38px #f2f2f2 solid !important;
}
.concrete-solid--ba-39 {
  border: 39px #f2f2f2 solid !important;
}
.concrete-solid--bt-39 {
  border-top: 39px #f2f2f2 solid !important;
}
.concrete-solid--br-39 {
  border-right: 39px #f2f2f2 solid !important;
}
.concrete-solid--bl-39 {
  border-left: 39px #f2f2f2 solid !important;
}
.concrete-solid--bb-39 {
  border-bottom: 39px #f2f2f2 solid !important;
}
.concrete-solid--by-39 {
  border-top: 39px #f2f2f2 solid !important;
  border-bottom: 39px #f2f2f2 solid !important;
}
.concrete-solid--bx-39 {
  border-right: 39px #f2f2f2 solid !important;
  border-left: 39px #f2f2f2 solid !important;
}
.concrete-solid--ba-40 {
  border: 40px #f2f2f2 solid !important;
}
.concrete-solid--bt-40 {
  border-top: 40px #f2f2f2 solid !important;
}
.concrete-solid--br-40 {
  border-right: 40px #f2f2f2 solid !important;
}
.concrete-solid--bl-40 {
  border-left: 40px #f2f2f2 solid !important;
}
.concrete-solid--bb-40 {
  border-bottom: 40px #f2f2f2 solid !important;
}
.concrete-solid--by-40 {
  border-top: 40px #f2f2f2 solid !important;
  border-bottom: 40px #f2f2f2 solid !important;
}
.concrete-solid--bx-40 {
  border-right: 40px #f2f2f2 solid !important;
  border-left: 40px #f2f2f2 solid !important;
}
.concrete-solid--ba-41 {
  border: 41px #f2f2f2 solid !important;
}
.concrete-solid--bt-41 {
  border-top: 41px #f2f2f2 solid !important;
}
.concrete-solid--br-41 {
  border-right: 41px #f2f2f2 solid !important;
}
.concrete-solid--bl-41 {
  border-left: 41px #f2f2f2 solid !important;
}
.concrete-solid--bb-41 {
  border-bottom: 41px #f2f2f2 solid !important;
}
.concrete-solid--by-41 {
  border-top: 41px #f2f2f2 solid !important;
  border-bottom: 41px #f2f2f2 solid !important;
}
.concrete-solid--bx-41 {
  border-right: 41px #f2f2f2 solid !important;
  border-left: 41px #f2f2f2 solid !important;
}
.concrete-solid--ba-42 {
  border: 42px #f2f2f2 solid !important;
}
.concrete-solid--bt-42 {
  border-top: 42px #f2f2f2 solid !important;
}
.concrete-solid--br-42 {
  border-right: 42px #f2f2f2 solid !important;
}
.concrete-solid--bl-42 {
  border-left: 42px #f2f2f2 solid !important;
}
.concrete-solid--bb-42 {
  border-bottom: 42px #f2f2f2 solid !important;
}
.concrete-solid--by-42 {
  border-top: 42px #f2f2f2 solid !important;
  border-bottom: 42px #f2f2f2 solid !important;
}
.concrete-solid--bx-42 {
  border-right: 42px #f2f2f2 solid !important;
  border-left: 42px #f2f2f2 solid !important;
}
.concrete-solid--ba-43 {
  border: 43px #f2f2f2 solid !important;
}
.concrete-solid--bt-43 {
  border-top: 43px #f2f2f2 solid !important;
}
.concrete-solid--br-43 {
  border-right: 43px #f2f2f2 solid !important;
}
.concrete-solid--bl-43 {
  border-left: 43px #f2f2f2 solid !important;
}
.concrete-solid--bb-43 {
  border-bottom: 43px #f2f2f2 solid !important;
}
.concrete-solid--by-43 {
  border-top: 43px #f2f2f2 solid !important;
  border-bottom: 43px #f2f2f2 solid !important;
}
.concrete-solid--bx-43 {
  border-right: 43px #f2f2f2 solid !important;
  border-left: 43px #f2f2f2 solid !important;
}
.concrete-solid--ba-44 {
  border: 44px #f2f2f2 solid !important;
}
.concrete-solid--bt-44 {
  border-top: 44px #f2f2f2 solid !important;
}
.concrete-solid--br-44 {
  border-right: 44px #f2f2f2 solid !important;
}
.concrete-solid--bl-44 {
  border-left: 44px #f2f2f2 solid !important;
}
.concrete-solid--bb-44 {
  border-bottom: 44px #f2f2f2 solid !important;
}
.concrete-solid--by-44 {
  border-top: 44px #f2f2f2 solid !important;
  border-bottom: 44px #f2f2f2 solid !important;
}
.concrete-solid--bx-44 {
  border-right: 44px #f2f2f2 solid !important;
  border-left: 44px #f2f2f2 solid !important;
}
.concrete-solid--ba-45 {
  border: 45px #f2f2f2 solid !important;
}
.concrete-solid--bt-45 {
  border-top: 45px #f2f2f2 solid !important;
}
.concrete-solid--br-45 {
  border-right: 45px #f2f2f2 solid !important;
}
.concrete-solid--bl-45 {
  border-left: 45px #f2f2f2 solid !important;
}
.concrete-solid--bb-45 {
  border-bottom: 45px #f2f2f2 solid !important;
}
.concrete-solid--by-45 {
  border-top: 45px #f2f2f2 solid !important;
  border-bottom: 45px #f2f2f2 solid !important;
}
.concrete-solid--bx-45 {
  border-right: 45px #f2f2f2 solid !important;
  border-left: 45px #f2f2f2 solid !important;
}
.concrete-solid--ba-46 {
  border: 46px #f2f2f2 solid !important;
}
.concrete-solid--bt-46 {
  border-top: 46px #f2f2f2 solid !important;
}
.concrete-solid--br-46 {
  border-right: 46px #f2f2f2 solid !important;
}
.concrete-solid--bl-46 {
  border-left: 46px #f2f2f2 solid !important;
}
.concrete-solid--bb-46 {
  border-bottom: 46px #f2f2f2 solid !important;
}
.concrete-solid--by-46 {
  border-top: 46px #f2f2f2 solid !important;
  border-bottom: 46px #f2f2f2 solid !important;
}
.concrete-solid--bx-46 {
  border-right: 46px #f2f2f2 solid !important;
  border-left: 46px #f2f2f2 solid !important;
}
.concrete-solid--ba-47 {
  border: 47px #f2f2f2 solid !important;
}
.concrete-solid--bt-47 {
  border-top: 47px #f2f2f2 solid !important;
}
.concrete-solid--br-47 {
  border-right: 47px #f2f2f2 solid !important;
}
.concrete-solid--bl-47 {
  border-left: 47px #f2f2f2 solid !important;
}
.concrete-solid--bb-47 {
  border-bottom: 47px #f2f2f2 solid !important;
}
.concrete-solid--by-47 {
  border-top: 47px #f2f2f2 solid !important;
  border-bottom: 47px #f2f2f2 solid !important;
}
.concrete-solid--bx-47 {
  border-right: 47px #f2f2f2 solid !important;
  border-left: 47px #f2f2f2 solid !important;
}
.concrete-solid--ba-48 {
  border: 48px #f2f2f2 solid !important;
}
.concrete-solid--bt-48 {
  border-top: 48px #f2f2f2 solid !important;
}
.concrete-solid--br-48 {
  border-right: 48px #f2f2f2 solid !important;
}
.concrete-solid--bl-48 {
  border-left: 48px #f2f2f2 solid !important;
}
.concrete-solid--bb-48 {
  border-bottom: 48px #f2f2f2 solid !important;
}
.concrete-solid--by-48 {
  border-top: 48px #f2f2f2 solid !important;
  border-bottom: 48px #f2f2f2 solid !important;
}
.concrete-solid--bx-48 {
  border-right: 48px #f2f2f2 solid !important;
  border-left: 48px #f2f2f2 solid !important;
}
.concrete-solid--ba-49 {
  border: 49px #f2f2f2 solid !important;
}
.concrete-solid--bt-49 {
  border-top: 49px #f2f2f2 solid !important;
}
.concrete-solid--br-49 {
  border-right: 49px #f2f2f2 solid !important;
}
.concrete-solid--bl-49 {
  border-left: 49px #f2f2f2 solid !important;
}
.concrete-solid--bb-49 {
  border-bottom: 49px #f2f2f2 solid !important;
}
.concrete-solid--by-49 {
  border-top: 49px #f2f2f2 solid !important;
  border-bottom: 49px #f2f2f2 solid !important;
}
.concrete-solid--bx-49 {
  border-right: 49px #f2f2f2 solid !important;
  border-left: 49px #f2f2f2 solid !important;
}
.concrete-solid--ba-50 {
  border: 50px #f2f2f2 solid !important;
}
.concrete-solid--bt-50 {
  border-top: 50px #f2f2f2 solid !important;
}
.concrete-solid--br-50 {
  border-right: 50px #f2f2f2 solid !important;
}
.concrete-solid--bl-50 {
  border-left: 50px #f2f2f2 solid !important;
}
.concrete-solid--bb-50 {
  border-bottom: 50px #f2f2f2 solid !important;
}
.concrete-solid--by-50 {
  border-top: 50px #f2f2f2 solid !important;
  border-bottom: 50px #f2f2f2 solid !important;
}
.concrete-solid--bx-50 {
  border-right: 50px #f2f2f2 solid !important;
  border-left: 50px #f2f2f2 solid !important;
}
.concrete-solid--ba-51 {
  border: 51px #f2f2f2 solid !important;
}
.concrete-solid--bt-51 {
  border-top: 51px #f2f2f2 solid !important;
}
.concrete-solid--br-51 {
  border-right: 51px #f2f2f2 solid !important;
}
.concrete-solid--bl-51 {
  border-left: 51px #f2f2f2 solid !important;
}
.concrete-solid--bb-51 {
  border-bottom: 51px #f2f2f2 solid !important;
}
.concrete-solid--by-51 {
  border-top: 51px #f2f2f2 solid !important;
  border-bottom: 51px #f2f2f2 solid !important;
}
.concrete-solid--bx-51 {
  border-right: 51px #f2f2f2 solid !important;
  border-left: 51px #f2f2f2 solid !important;
}
.concrete-solid--ba-52 {
  border: 52px #f2f2f2 solid !important;
}
.concrete-solid--bt-52 {
  border-top: 52px #f2f2f2 solid !important;
}
.concrete-solid--br-52 {
  border-right: 52px #f2f2f2 solid !important;
}
.concrete-solid--bl-52 {
  border-left: 52px #f2f2f2 solid !important;
}
.concrete-solid--bb-52 {
  border-bottom: 52px #f2f2f2 solid !important;
}
.concrete-solid--by-52 {
  border-top: 52px #f2f2f2 solid !important;
  border-bottom: 52px #f2f2f2 solid !important;
}
.concrete-solid--bx-52 {
  border-right: 52px #f2f2f2 solid !important;
  border-left: 52px #f2f2f2 solid !important;
}
.concrete-solid--ba-53 {
  border: 53px #f2f2f2 solid !important;
}
.concrete-solid--bt-53 {
  border-top: 53px #f2f2f2 solid !important;
}
.concrete-solid--br-53 {
  border-right: 53px #f2f2f2 solid !important;
}
.concrete-solid--bl-53 {
  border-left: 53px #f2f2f2 solid !important;
}
.concrete-solid--bb-53 {
  border-bottom: 53px #f2f2f2 solid !important;
}
.concrete-solid--by-53 {
  border-top: 53px #f2f2f2 solid !important;
  border-bottom: 53px #f2f2f2 solid !important;
}
.concrete-solid--bx-53 {
  border-right: 53px #f2f2f2 solid !important;
  border-left: 53px #f2f2f2 solid !important;
}
.concrete-solid--ba-54 {
  border: 54px #f2f2f2 solid !important;
}
.concrete-solid--bt-54 {
  border-top: 54px #f2f2f2 solid !important;
}
.concrete-solid--br-54 {
  border-right: 54px #f2f2f2 solid !important;
}
.concrete-solid--bl-54 {
  border-left: 54px #f2f2f2 solid !important;
}
.concrete-solid--bb-54 {
  border-bottom: 54px #f2f2f2 solid !important;
}
.concrete-solid--by-54 {
  border-top: 54px #f2f2f2 solid !important;
  border-bottom: 54px #f2f2f2 solid !important;
}
.concrete-solid--bx-54 {
  border-right: 54px #f2f2f2 solid !important;
  border-left: 54px #f2f2f2 solid !important;
}
.concrete-solid--ba-55 {
  border: 55px #f2f2f2 solid !important;
}
.concrete-solid--bt-55 {
  border-top: 55px #f2f2f2 solid !important;
}
.concrete-solid--br-55 {
  border-right: 55px #f2f2f2 solid !important;
}
.concrete-solid--bl-55 {
  border-left: 55px #f2f2f2 solid !important;
}
.concrete-solid--bb-55 {
  border-bottom: 55px #f2f2f2 solid !important;
}
.concrete-solid--by-55 {
  border-top: 55px #f2f2f2 solid !important;
  border-bottom: 55px #f2f2f2 solid !important;
}
.concrete-solid--bx-55 {
  border-right: 55px #f2f2f2 solid !important;
  border-left: 55px #f2f2f2 solid !important;
}
.concrete-solid--ba-56 {
  border: 56px #f2f2f2 solid !important;
}
.concrete-solid--bt-56 {
  border-top: 56px #f2f2f2 solid !important;
}
.concrete-solid--br-56 {
  border-right: 56px #f2f2f2 solid !important;
}
.concrete-solid--bl-56 {
  border-left: 56px #f2f2f2 solid !important;
}
.concrete-solid--bb-56 {
  border-bottom: 56px #f2f2f2 solid !important;
}
.concrete-solid--by-56 {
  border-top: 56px #f2f2f2 solid !important;
  border-bottom: 56px #f2f2f2 solid !important;
}
.concrete-solid--bx-56 {
  border-right: 56px #f2f2f2 solid !important;
  border-left: 56px #f2f2f2 solid !important;
}
.concrete-solid--ba-57 {
  border: 57px #f2f2f2 solid !important;
}
.concrete-solid--bt-57 {
  border-top: 57px #f2f2f2 solid !important;
}
.concrete-solid--br-57 {
  border-right: 57px #f2f2f2 solid !important;
}
.concrete-solid--bl-57 {
  border-left: 57px #f2f2f2 solid !important;
}
.concrete-solid--bb-57 {
  border-bottom: 57px #f2f2f2 solid !important;
}
.concrete-solid--by-57 {
  border-top: 57px #f2f2f2 solid !important;
  border-bottom: 57px #f2f2f2 solid !important;
}
.concrete-solid--bx-57 {
  border-right: 57px #f2f2f2 solid !important;
  border-left: 57px #f2f2f2 solid !important;
}
.concrete-solid--ba-58 {
  border: 58px #f2f2f2 solid !important;
}
.concrete-solid--bt-58 {
  border-top: 58px #f2f2f2 solid !important;
}
.concrete-solid--br-58 {
  border-right: 58px #f2f2f2 solid !important;
}
.concrete-solid--bl-58 {
  border-left: 58px #f2f2f2 solid !important;
}
.concrete-solid--bb-58 {
  border-bottom: 58px #f2f2f2 solid !important;
}
.concrete-solid--by-58 {
  border-top: 58px #f2f2f2 solid !important;
  border-bottom: 58px #f2f2f2 solid !important;
}
.concrete-solid--bx-58 {
  border-right: 58px #f2f2f2 solid !important;
  border-left: 58px #f2f2f2 solid !important;
}
.concrete-solid--ba-59 {
  border: 59px #f2f2f2 solid !important;
}
.concrete-solid--bt-59 {
  border-top: 59px #f2f2f2 solid !important;
}
.concrete-solid--br-59 {
  border-right: 59px #f2f2f2 solid !important;
}
.concrete-solid--bl-59 {
  border-left: 59px #f2f2f2 solid !important;
}
.concrete-solid--bb-59 {
  border-bottom: 59px #f2f2f2 solid !important;
}
.concrete-solid--by-59 {
  border-top: 59px #f2f2f2 solid !important;
  border-bottom: 59px #f2f2f2 solid !important;
}
.concrete-solid--bx-59 {
  border-right: 59px #f2f2f2 solid !important;
  border-left: 59px #f2f2f2 solid !important;
}
.concrete-solid--ba-60 {
  border: 60px #f2f2f2 solid !important;
}
.concrete-solid--bt-60 {
  border-top: 60px #f2f2f2 solid !important;
}
.concrete-solid--br-60 {
  border-right: 60px #f2f2f2 solid !important;
}
.concrete-solid--bl-60 {
  border-left: 60px #f2f2f2 solid !important;
}
.concrete-solid--bb-60 {
  border-bottom: 60px #f2f2f2 solid !important;
}
.concrete-solid--by-60 {
  border-top: 60px #f2f2f2 solid !important;
  border-bottom: 60px #f2f2f2 solid !important;
}
.concrete-solid--bx-60 {
  border-right: 60px #f2f2f2 solid !important;
  border-left: 60px #f2f2f2 solid !important;
}
.concrete-solid--ba-61 {
  border: 61px #f2f2f2 solid !important;
}
.concrete-solid--bt-61 {
  border-top: 61px #f2f2f2 solid !important;
}
.concrete-solid--br-61 {
  border-right: 61px #f2f2f2 solid !important;
}
.concrete-solid--bl-61 {
  border-left: 61px #f2f2f2 solid !important;
}
.concrete-solid--bb-61 {
  border-bottom: 61px #f2f2f2 solid !important;
}
.concrete-solid--by-61 {
  border-top: 61px #f2f2f2 solid !important;
  border-bottom: 61px #f2f2f2 solid !important;
}
.concrete-solid--bx-61 {
  border-right: 61px #f2f2f2 solid !important;
  border-left: 61px #f2f2f2 solid !important;
}
.concrete-solid--ba-62 {
  border: 62px #f2f2f2 solid !important;
}
.concrete-solid--bt-62 {
  border-top: 62px #f2f2f2 solid !important;
}
.concrete-solid--br-62 {
  border-right: 62px #f2f2f2 solid !important;
}
.concrete-solid--bl-62 {
  border-left: 62px #f2f2f2 solid !important;
}
.concrete-solid--bb-62 {
  border-bottom: 62px #f2f2f2 solid !important;
}
.concrete-solid--by-62 {
  border-top: 62px #f2f2f2 solid !important;
  border-bottom: 62px #f2f2f2 solid !important;
}
.concrete-solid--bx-62 {
  border-right: 62px #f2f2f2 solid !important;
  border-left: 62px #f2f2f2 solid !important;
}
.concrete-solid--ba-63 {
  border: 63px #f2f2f2 solid !important;
}
.concrete-solid--bt-63 {
  border-top: 63px #f2f2f2 solid !important;
}
.concrete-solid--br-63 {
  border-right: 63px #f2f2f2 solid !important;
}
.concrete-solid--bl-63 {
  border-left: 63px #f2f2f2 solid !important;
}
.concrete-solid--bb-63 {
  border-bottom: 63px #f2f2f2 solid !important;
}
.concrete-solid--by-63 {
  border-top: 63px #f2f2f2 solid !important;
  border-bottom: 63px #f2f2f2 solid !important;
}
.concrete-solid--bx-63 {
  border-right: 63px #f2f2f2 solid !important;
  border-left: 63px #f2f2f2 solid !important;
}
.concrete-solid--ba-64 {
  border: 64px #f2f2f2 solid !important;
}
.concrete-solid--bt-64 {
  border-top: 64px #f2f2f2 solid !important;
}
.concrete-solid--br-64 {
  border-right: 64px #f2f2f2 solid !important;
}
.concrete-solid--bl-64 {
  border-left: 64px #f2f2f2 solid !important;
}
.concrete-solid--bb-64 {
  border-bottom: 64px #f2f2f2 solid !important;
}
.concrete-solid--by-64 {
  border-top: 64px #f2f2f2 solid !important;
  border-bottom: 64px #f2f2f2 solid !important;
}
.concrete-solid--bx-64 {
  border-right: 64px #f2f2f2 solid !important;
  border-left: 64px #f2f2f2 solid !important;
}
.concrete-solid--ba-65 {
  border: 65px #f2f2f2 solid !important;
}
.concrete-solid--bt-65 {
  border-top: 65px #f2f2f2 solid !important;
}
.concrete-solid--br-65 {
  border-right: 65px #f2f2f2 solid !important;
}
.concrete-solid--bl-65 {
  border-left: 65px #f2f2f2 solid !important;
}
.concrete-solid--bb-65 {
  border-bottom: 65px #f2f2f2 solid !important;
}
.concrete-solid--by-65 {
  border-top: 65px #f2f2f2 solid !important;
  border-bottom: 65px #f2f2f2 solid !important;
}
.concrete-solid--bx-65 {
  border-right: 65px #f2f2f2 solid !important;
  border-left: 65px #f2f2f2 solid !important;
}
.concrete-solid--ba-66 {
  border: 66px #f2f2f2 solid !important;
}
.concrete-solid--bt-66 {
  border-top: 66px #f2f2f2 solid !important;
}
.concrete-solid--br-66 {
  border-right: 66px #f2f2f2 solid !important;
}
.concrete-solid--bl-66 {
  border-left: 66px #f2f2f2 solid !important;
}
.concrete-solid--bb-66 {
  border-bottom: 66px #f2f2f2 solid !important;
}
.concrete-solid--by-66 {
  border-top: 66px #f2f2f2 solid !important;
  border-bottom: 66px #f2f2f2 solid !important;
}
.concrete-solid--bx-66 {
  border-right: 66px #f2f2f2 solid !important;
  border-left: 66px #f2f2f2 solid !important;
}
.concrete-solid--ba-67 {
  border: 67px #f2f2f2 solid !important;
}
.concrete-solid--bt-67 {
  border-top: 67px #f2f2f2 solid !important;
}
.concrete-solid--br-67 {
  border-right: 67px #f2f2f2 solid !important;
}
.concrete-solid--bl-67 {
  border-left: 67px #f2f2f2 solid !important;
}
.concrete-solid--bb-67 {
  border-bottom: 67px #f2f2f2 solid !important;
}
.concrete-solid--by-67 {
  border-top: 67px #f2f2f2 solid !important;
  border-bottom: 67px #f2f2f2 solid !important;
}
.concrete-solid--bx-67 {
  border-right: 67px #f2f2f2 solid !important;
  border-left: 67px #f2f2f2 solid !important;
}
.concrete-solid--ba-68 {
  border: 68px #f2f2f2 solid !important;
}
.concrete-solid--bt-68 {
  border-top: 68px #f2f2f2 solid !important;
}
.concrete-solid--br-68 {
  border-right: 68px #f2f2f2 solid !important;
}
.concrete-solid--bl-68 {
  border-left: 68px #f2f2f2 solid !important;
}
.concrete-solid--bb-68 {
  border-bottom: 68px #f2f2f2 solid !important;
}
.concrete-solid--by-68 {
  border-top: 68px #f2f2f2 solid !important;
  border-bottom: 68px #f2f2f2 solid !important;
}
.concrete-solid--bx-68 {
  border-right: 68px #f2f2f2 solid !important;
  border-left: 68px #f2f2f2 solid !important;
}
.concrete-solid--ba-69 {
  border: 69px #f2f2f2 solid !important;
}
.concrete-solid--bt-69 {
  border-top: 69px #f2f2f2 solid !important;
}
.concrete-solid--br-69 {
  border-right: 69px #f2f2f2 solid !important;
}
.concrete-solid--bl-69 {
  border-left: 69px #f2f2f2 solid !important;
}
.concrete-solid--bb-69 {
  border-bottom: 69px #f2f2f2 solid !important;
}
.concrete-solid--by-69 {
  border-top: 69px #f2f2f2 solid !important;
  border-bottom: 69px #f2f2f2 solid !important;
}
.concrete-solid--bx-69 {
  border-right: 69px #f2f2f2 solid !important;
  border-left: 69px #f2f2f2 solid !important;
}
.concrete-solid--ba-70 {
  border: 70px #f2f2f2 solid !important;
}
.concrete-solid--bt-70 {
  border-top: 70px #f2f2f2 solid !important;
}
.concrete-solid--br-70 {
  border-right: 70px #f2f2f2 solid !important;
}
.concrete-solid--bl-70 {
  border-left: 70px #f2f2f2 solid !important;
}
.concrete-solid--bb-70 {
  border-bottom: 70px #f2f2f2 solid !important;
}
.concrete-solid--by-70 {
  border-top: 70px #f2f2f2 solid !important;
  border-bottom: 70px #f2f2f2 solid !important;
}
.concrete-solid--bx-70 {
  border-right: 70px #f2f2f2 solid !important;
  border-left: 70px #f2f2f2 solid !important;
}
.concrete-solid--ba-71 {
  border: 71px #f2f2f2 solid !important;
}
.concrete-solid--bt-71 {
  border-top: 71px #f2f2f2 solid !important;
}
.concrete-solid--br-71 {
  border-right: 71px #f2f2f2 solid !important;
}
.concrete-solid--bl-71 {
  border-left: 71px #f2f2f2 solid !important;
}
.concrete-solid--bb-71 {
  border-bottom: 71px #f2f2f2 solid !important;
}
.concrete-solid--by-71 {
  border-top: 71px #f2f2f2 solid !important;
  border-bottom: 71px #f2f2f2 solid !important;
}
.concrete-solid--bx-71 {
  border-right: 71px #f2f2f2 solid !important;
  border-left: 71px #f2f2f2 solid !important;
}
.concrete-solid--ba-72 {
  border: 72px #f2f2f2 solid !important;
}
.concrete-solid--bt-72 {
  border-top: 72px #f2f2f2 solid !important;
}
.concrete-solid--br-72 {
  border-right: 72px #f2f2f2 solid !important;
}
.concrete-solid--bl-72 {
  border-left: 72px #f2f2f2 solid !important;
}
.concrete-solid--bb-72 {
  border-bottom: 72px #f2f2f2 solid !important;
}
.concrete-solid--by-72 {
  border-top: 72px #f2f2f2 solid !important;
  border-bottom: 72px #f2f2f2 solid !important;
}
.concrete-solid--bx-72 {
  border-right: 72px #f2f2f2 solid !important;
  border-left: 72px #f2f2f2 solid !important;
}
.concrete-solid--ba-73 {
  border: 73px #f2f2f2 solid !important;
}
.concrete-solid--bt-73 {
  border-top: 73px #f2f2f2 solid !important;
}
.concrete-solid--br-73 {
  border-right: 73px #f2f2f2 solid !important;
}
.concrete-solid--bl-73 {
  border-left: 73px #f2f2f2 solid !important;
}
.concrete-solid--bb-73 {
  border-bottom: 73px #f2f2f2 solid !important;
}
.concrete-solid--by-73 {
  border-top: 73px #f2f2f2 solid !important;
  border-bottom: 73px #f2f2f2 solid !important;
}
.concrete-solid--bx-73 {
  border-right: 73px #f2f2f2 solid !important;
  border-left: 73px #f2f2f2 solid !important;
}
.concrete-solid--ba-74 {
  border: 74px #f2f2f2 solid !important;
}
.concrete-solid--bt-74 {
  border-top: 74px #f2f2f2 solid !important;
}
.concrete-solid--br-74 {
  border-right: 74px #f2f2f2 solid !important;
}
.concrete-solid--bl-74 {
  border-left: 74px #f2f2f2 solid !important;
}
.concrete-solid--bb-74 {
  border-bottom: 74px #f2f2f2 solid !important;
}
.concrete-solid--by-74 {
  border-top: 74px #f2f2f2 solid !important;
  border-bottom: 74px #f2f2f2 solid !important;
}
.concrete-solid--bx-74 {
  border-right: 74px #f2f2f2 solid !important;
  border-left: 74px #f2f2f2 solid !important;
}
.concrete-solid--ba-75 {
  border: 75px #f2f2f2 solid !important;
}
.concrete-solid--bt-75 {
  border-top: 75px #f2f2f2 solid !important;
}
.concrete-solid--br-75 {
  border-right: 75px #f2f2f2 solid !important;
}
.concrete-solid--bl-75 {
  border-left: 75px #f2f2f2 solid !important;
}
.concrete-solid--bb-75 {
  border-bottom: 75px #f2f2f2 solid !important;
}
.concrete-solid--by-75 {
  border-top: 75px #f2f2f2 solid !important;
  border-bottom: 75px #f2f2f2 solid !important;
}
.concrete-solid--bx-75 {
  border-right: 75px #f2f2f2 solid !important;
  border-left: 75px #f2f2f2 solid !important;
}
.concrete-solid--ba-76 {
  border: 76px #f2f2f2 solid !important;
}
.concrete-solid--bt-76 {
  border-top: 76px #f2f2f2 solid !important;
}
.concrete-solid--br-76 {
  border-right: 76px #f2f2f2 solid !important;
}
.concrete-solid--bl-76 {
  border-left: 76px #f2f2f2 solid !important;
}
.concrete-solid--bb-76 {
  border-bottom: 76px #f2f2f2 solid !important;
}
.concrete-solid--by-76 {
  border-top: 76px #f2f2f2 solid !important;
  border-bottom: 76px #f2f2f2 solid !important;
}
.concrete-solid--bx-76 {
  border-right: 76px #f2f2f2 solid !important;
  border-left: 76px #f2f2f2 solid !important;
}
.concrete-solid--ba-77 {
  border: 77px #f2f2f2 solid !important;
}
.concrete-solid--bt-77 {
  border-top: 77px #f2f2f2 solid !important;
}
.concrete-solid--br-77 {
  border-right: 77px #f2f2f2 solid !important;
}
.concrete-solid--bl-77 {
  border-left: 77px #f2f2f2 solid !important;
}
.concrete-solid--bb-77 {
  border-bottom: 77px #f2f2f2 solid !important;
}
.concrete-solid--by-77 {
  border-top: 77px #f2f2f2 solid !important;
  border-bottom: 77px #f2f2f2 solid !important;
}
.concrete-solid--bx-77 {
  border-right: 77px #f2f2f2 solid !important;
  border-left: 77px #f2f2f2 solid !important;
}
.concrete-solid--ba-78 {
  border: 78px #f2f2f2 solid !important;
}
.concrete-solid--bt-78 {
  border-top: 78px #f2f2f2 solid !important;
}
.concrete-solid--br-78 {
  border-right: 78px #f2f2f2 solid !important;
}
.concrete-solid--bl-78 {
  border-left: 78px #f2f2f2 solid !important;
}
.concrete-solid--bb-78 {
  border-bottom: 78px #f2f2f2 solid !important;
}
.concrete-solid--by-78 {
  border-top: 78px #f2f2f2 solid !important;
  border-bottom: 78px #f2f2f2 solid !important;
}
.concrete-solid--bx-78 {
  border-right: 78px #f2f2f2 solid !important;
  border-left: 78px #f2f2f2 solid !important;
}
.concrete-solid--ba-79 {
  border: 79px #f2f2f2 solid !important;
}
.concrete-solid--bt-79 {
  border-top: 79px #f2f2f2 solid !important;
}
.concrete-solid--br-79 {
  border-right: 79px #f2f2f2 solid !important;
}
.concrete-solid--bl-79 {
  border-left: 79px #f2f2f2 solid !important;
}
.concrete-solid--bb-79 {
  border-bottom: 79px #f2f2f2 solid !important;
}
.concrete-solid--by-79 {
  border-top: 79px #f2f2f2 solid !important;
  border-bottom: 79px #f2f2f2 solid !important;
}
.concrete-solid--bx-79 {
  border-right: 79px #f2f2f2 solid !important;
  border-left: 79px #f2f2f2 solid !important;
}
.concrete-solid--ba-80 {
  border: 80px #f2f2f2 solid !important;
}
.concrete-solid--bt-80 {
  border-top: 80px #f2f2f2 solid !important;
}
.concrete-solid--br-80 {
  border-right: 80px #f2f2f2 solid !important;
}
.concrete-solid--bl-80 {
  border-left: 80px #f2f2f2 solid !important;
}
.concrete-solid--bb-80 {
  border-bottom: 80px #f2f2f2 solid !important;
}
.concrete-solid--by-80 {
  border-top: 80px #f2f2f2 solid !important;
  border-bottom: 80px #f2f2f2 solid !important;
}
.concrete-solid--bx-80 {
  border-right: 80px #f2f2f2 solid !important;
  border-left: 80px #f2f2f2 solid !important;
}
.concrete-solid--ba-81 {
  border: 81px #f2f2f2 solid !important;
}
.concrete-solid--bt-81 {
  border-top: 81px #f2f2f2 solid !important;
}
.concrete-solid--br-81 {
  border-right: 81px #f2f2f2 solid !important;
}
.concrete-solid--bl-81 {
  border-left: 81px #f2f2f2 solid !important;
}
.concrete-solid--bb-81 {
  border-bottom: 81px #f2f2f2 solid !important;
}
.concrete-solid--by-81 {
  border-top: 81px #f2f2f2 solid !important;
  border-bottom: 81px #f2f2f2 solid !important;
}
.concrete-solid--bx-81 {
  border-right: 81px #f2f2f2 solid !important;
  border-left: 81px #f2f2f2 solid !important;
}
.concrete-solid--ba-82 {
  border: 82px #f2f2f2 solid !important;
}
.concrete-solid--bt-82 {
  border-top: 82px #f2f2f2 solid !important;
}
.concrete-solid--br-82 {
  border-right: 82px #f2f2f2 solid !important;
}
.concrete-solid--bl-82 {
  border-left: 82px #f2f2f2 solid !important;
}
.concrete-solid--bb-82 {
  border-bottom: 82px #f2f2f2 solid !important;
}
.concrete-solid--by-82 {
  border-top: 82px #f2f2f2 solid !important;
  border-bottom: 82px #f2f2f2 solid !important;
}
.concrete-solid--bx-82 {
  border-right: 82px #f2f2f2 solid !important;
  border-left: 82px #f2f2f2 solid !important;
}
.concrete-solid--ba-83 {
  border: 83px #f2f2f2 solid !important;
}
.concrete-solid--bt-83 {
  border-top: 83px #f2f2f2 solid !important;
}
.concrete-solid--br-83 {
  border-right: 83px #f2f2f2 solid !important;
}
.concrete-solid--bl-83 {
  border-left: 83px #f2f2f2 solid !important;
}
.concrete-solid--bb-83 {
  border-bottom: 83px #f2f2f2 solid !important;
}
.concrete-solid--by-83 {
  border-top: 83px #f2f2f2 solid !important;
  border-bottom: 83px #f2f2f2 solid !important;
}
.concrete-solid--bx-83 {
  border-right: 83px #f2f2f2 solid !important;
  border-left: 83px #f2f2f2 solid !important;
}
.concrete-solid--ba-84 {
  border: 84px #f2f2f2 solid !important;
}
.concrete-solid--bt-84 {
  border-top: 84px #f2f2f2 solid !important;
}
.concrete-solid--br-84 {
  border-right: 84px #f2f2f2 solid !important;
}
.concrete-solid--bl-84 {
  border-left: 84px #f2f2f2 solid !important;
}
.concrete-solid--bb-84 {
  border-bottom: 84px #f2f2f2 solid !important;
}
.concrete-solid--by-84 {
  border-top: 84px #f2f2f2 solid !important;
  border-bottom: 84px #f2f2f2 solid !important;
}
.concrete-solid--bx-84 {
  border-right: 84px #f2f2f2 solid !important;
  border-left: 84px #f2f2f2 solid !important;
}
.concrete-solid--ba-85 {
  border: 85px #f2f2f2 solid !important;
}
.concrete-solid--bt-85 {
  border-top: 85px #f2f2f2 solid !important;
}
.concrete-solid--br-85 {
  border-right: 85px #f2f2f2 solid !important;
}
.concrete-solid--bl-85 {
  border-left: 85px #f2f2f2 solid !important;
}
.concrete-solid--bb-85 {
  border-bottom: 85px #f2f2f2 solid !important;
}
.concrete-solid--by-85 {
  border-top: 85px #f2f2f2 solid !important;
  border-bottom: 85px #f2f2f2 solid !important;
}
.concrete-solid--bx-85 {
  border-right: 85px #f2f2f2 solid !important;
  border-left: 85px #f2f2f2 solid !important;
}
.concrete-solid--ba-86 {
  border: 86px #f2f2f2 solid !important;
}
.concrete-solid--bt-86 {
  border-top: 86px #f2f2f2 solid !important;
}
.concrete-solid--br-86 {
  border-right: 86px #f2f2f2 solid !important;
}
.concrete-solid--bl-86 {
  border-left: 86px #f2f2f2 solid !important;
}
.concrete-solid--bb-86 {
  border-bottom: 86px #f2f2f2 solid !important;
}
.concrete-solid--by-86 {
  border-top: 86px #f2f2f2 solid !important;
  border-bottom: 86px #f2f2f2 solid !important;
}
.concrete-solid--bx-86 {
  border-right: 86px #f2f2f2 solid !important;
  border-left: 86px #f2f2f2 solid !important;
}
.concrete-solid--ba-87 {
  border: 87px #f2f2f2 solid !important;
}
.concrete-solid--bt-87 {
  border-top: 87px #f2f2f2 solid !important;
}
.concrete-solid--br-87 {
  border-right: 87px #f2f2f2 solid !important;
}
.concrete-solid--bl-87 {
  border-left: 87px #f2f2f2 solid !important;
}
.concrete-solid--bb-87 {
  border-bottom: 87px #f2f2f2 solid !important;
}
.concrete-solid--by-87 {
  border-top: 87px #f2f2f2 solid !important;
  border-bottom: 87px #f2f2f2 solid !important;
}
.concrete-solid--bx-87 {
  border-right: 87px #f2f2f2 solid !important;
  border-left: 87px #f2f2f2 solid !important;
}
.concrete-solid--ba-88 {
  border: 88px #f2f2f2 solid !important;
}
.concrete-solid--bt-88 {
  border-top: 88px #f2f2f2 solid !important;
}
.concrete-solid--br-88 {
  border-right: 88px #f2f2f2 solid !important;
}
.concrete-solid--bl-88 {
  border-left: 88px #f2f2f2 solid !important;
}
.concrete-solid--bb-88 {
  border-bottom: 88px #f2f2f2 solid !important;
}
.concrete-solid--by-88 {
  border-top: 88px #f2f2f2 solid !important;
  border-bottom: 88px #f2f2f2 solid !important;
}
.concrete-solid--bx-88 {
  border-right: 88px #f2f2f2 solid !important;
  border-left: 88px #f2f2f2 solid !important;
}
.concrete-solid--ba-89 {
  border: 89px #f2f2f2 solid !important;
}
.concrete-solid--bt-89 {
  border-top: 89px #f2f2f2 solid !important;
}
.concrete-solid--br-89 {
  border-right: 89px #f2f2f2 solid !important;
}
.concrete-solid--bl-89 {
  border-left: 89px #f2f2f2 solid !important;
}
.concrete-solid--bb-89 {
  border-bottom: 89px #f2f2f2 solid !important;
}
.concrete-solid--by-89 {
  border-top: 89px #f2f2f2 solid !important;
  border-bottom: 89px #f2f2f2 solid !important;
}
.concrete-solid--bx-89 {
  border-right: 89px #f2f2f2 solid !important;
  border-left: 89px #f2f2f2 solid !important;
}
.concrete-solid--ba-90 {
  border: 90px #f2f2f2 solid !important;
}
.concrete-solid--bt-90 {
  border-top: 90px #f2f2f2 solid !important;
}
.concrete-solid--br-90 {
  border-right: 90px #f2f2f2 solid !important;
}
.concrete-solid--bl-90 {
  border-left: 90px #f2f2f2 solid !important;
}
.concrete-solid--bb-90 {
  border-bottom: 90px #f2f2f2 solid !important;
}
.concrete-solid--by-90 {
  border-top: 90px #f2f2f2 solid !important;
  border-bottom: 90px #f2f2f2 solid !important;
}
.concrete-solid--bx-90 {
  border-right: 90px #f2f2f2 solid !important;
  border-left: 90px #f2f2f2 solid !important;
}
.concrete-solid--ba-91 {
  border: 91px #f2f2f2 solid !important;
}
.concrete-solid--bt-91 {
  border-top: 91px #f2f2f2 solid !important;
}
.concrete-solid--br-91 {
  border-right: 91px #f2f2f2 solid !important;
}
.concrete-solid--bl-91 {
  border-left: 91px #f2f2f2 solid !important;
}
.concrete-solid--bb-91 {
  border-bottom: 91px #f2f2f2 solid !important;
}
.concrete-solid--by-91 {
  border-top: 91px #f2f2f2 solid !important;
  border-bottom: 91px #f2f2f2 solid !important;
}
.concrete-solid--bx-91 {
  border-right: 91px #f2f2f2 solid !important;
  border-left: 91px #f2f2f2 solid !important;
}
.concrete-solid--ba-92 {
  border: 92px #f2f2f2 solid !important;
}
.concrete-solid--bt-92 {
  border-top: 92px #f2f2f2 solid !important;
}
.concrete-solid--br-92 {
  border-right: 92px #f2f2f2 solid !important;
}
.concrete-solid--bl-92 {
  border-left: 92px #f2f2f2 solid !important;
}
.concrete-solid--bb-92 {
  border-bottom: 92px #f2f2f2 solid !important;
}
.concrete-solid--by-92 {
  border-top: 92px #f2f2f2 solid !important;
  border-bottom: 92px #f2f2f2 solid !important;
}
.concrete-solid--bx-92 {
  border-right: 92px #f2f2f2 solid !important;
  border-left: 92px #f2f2f2 solid !important;
}
.concrete-solid--ba-93 {
  border: 93px #f2f2f2 solid !important;
}
.concrete-solid--bt-93 {
  border-top: 93px #f2f2f2 solid !important;
}
.concrete-solid--br-93 {
  border-right: 93px #f2f2f2 solid !important;
}
.concrete-solid--bl-93 {
  border-left: 93px #f2f2f2 solid !important;
}
.concrete-solid--bb-93 {
  border-bottom: 93px #f2f2f2 solid !important;
}
.concrete-solid--by-93 {
  border-top: 93px #f2f2f2 solid !important;
  border-bottom: 93px #f2f2f2 solid !important;
}
.concrete-solid--bx-93 {
  border-right: 93px #f2f2f2 solid !important;
  border-left: 93px #f2f2f2 solid !important;
}
.concrete-solid--ba-94 {
  border: 94px #f2f2f2 solid !important;
}
.concrete-solid--bt-94 {
  border-top: 94px #f2f2f2 solid !important;
}
.concrete-solid--br-94 {
  border-right: 94px #f2f2f2 solid !important;
}
.concrete-solid--bl-94 {
  border-left: 94px #f2f2f2 solid !important;
}
.concrete-solid--bb-94 {
  border-bottom: 94px #f2f2f2 solid !important;
}
.concrete-solid--by-94 {
  border-top: 94px #f2f2f2 solid !important;
  border-bottom: 94px #f2f2f2 solid !important;
}
.concrete-solid--bx-94 {
  border-right: 94px #f2f2f2 solid !important;
  border-left: 94px #f2f2f2 solid !important;
}
.concrete-solid--ba-95 {
  border: 95px #f2f2f2 solid !important;
}
.concrete-solid--bt-95 {
  border-top: 95px #f2f2f2 solid !important;
}
.concrete-solid--br-95 {
  border-right: 95px #f2f2f2 solid !important;
}
.concrete-solid--bl-95 {
  border-left: 95px #f2f2f2 solid !important;
}
.concrete-solid--bb-95 {
  border-bottom: 95px #f2f2f2 solid !important;
}
.concrete-solid--by-95 {
  border-top: 95px #f2f2f2 solid !important;
  border-bottom: 95px #f2f2f2 solid !important;
}
.concrete-solid--bx-95 {
  border-right: 95px #f2f2f2 solid !important;
  border-left: 95px #f2f2f2 solid !important;
}
.concrete-solid--ba-96 {
  border: 96px #f2f2f2 solid !important;
}
.concrete-solid--bt-96 {
  border-top: 96px #f2f2f2 solid !important;
}
.concrete-solid--br-96 {
  border-right: 96px #f2f2f2 solid !important;
}
.concrete-solid--bl-96 {
  border-left: 96px #f2f2f2 solid !important;
}
.concrete-solid--bb-96 {
  border-bottom: 96px #f2f2f2 solid !important;
}
.concrete-solid--by-96 {
  border-top: 96px #f2f2f2 solid !important;
  border-bottom: 96px #f2f2f2 solid !important;
}
.concrete-solid--bx-96 {
  border-right: 96px #f2f2f2 solid !important;
  border-left: 96px #f2f2f2 solid !important;
}
.concrete-solid--ba-97 {
  border: 97px #f2f2f2 solid !important;
}
.concrete-solid--bt-97 {
  border-top: 97px #f2f2f2 solid !important;
}
.concrete-solid--br-97 {
  border-right: 97px #f2f2f2 solid !important;
}
.concrete-solid--bl-97 {
  border-left: 97px #f2f2f2 solid !important;
}
.concrete-solid--bb-97 {
  border-bottom: 97px #f2f2f2 solid !important;
}
.concrete-solid--by-97 {
  border-top: 97px #f2f2f2 solid !important;
  border-bottom: 97px #f2f2f2 solid !important;
}
.concrete-solid--bx-97 {
  border-right: 97px #f2f2f2 solid !important;
  border-left: 97px #f2f2f2 solid !important;
}
.concrete-solid--ba-98 {
  border: 98px #f2f2f2 solid !important;
}
.concrete-solid--bt-98 {
  border-top: 98px #f2f2f2 solid !important;
}
.concrete-solid--br-98 {
  border-right: 98px #f2f2f2 solid !important;
}
.concrete-solid--bl-98 {
  border-left: 98px #f2f2f2 solid !important;
}
.concrete-solid--bb-98 {
  border-bottom: 98px #f2f2f2 solid !important;
}
.concrete-solid--by-98 {
  border-top: 98px #f2f2f2 solid !important;
  border-bottom: 98px #f2f2f2 solid !important;
}
.concrete-solid--bx-98 {
  border-right: 98px #f2f2f2 solid !important;
  border-left: 98px #f2f2f2 solid !important;
}
.concrete-solid--ba-99 {
  border: 99px #f2f2f2 solid !important;
}
.concrete-solid--bt-99 {
  border-top: 99px #f2f2f2 solid !important;
}
.concrete-solid--br-99 {
  border-right: 99px #f2f2f2 solid !important;
}
.concrete-solid--bl-99 {
  border-left: 99px #f2f2f2 solid !important;
}
.concrete-solid--bb-99 {
  border-bottom: 99px #f2f2f2 solid !important;
}
.concrete-solid--by-99 {
  border-top: 99px #f2f2f2 solid !important;
  border-bottom: 99px #f2f2f2 solid !important;
}
.concrete-solid--bx-99 {
  border-right: 99px #f2f2f2 solid !important;
  border-left: 99px #f2f2f2 solid !important;
}
.concrete-solid--ba-100 {
  border: 100px #f2f2f2 solid !important;
}
.concrete-solid--bt-100 {
  border-top: 100px #f2f2f2 solid !important;
}
.concrete-solid--br-100 {
  border-right: 100px #f2f2f2 solid !important;
}
.concrete-solid--bl-100 {
  border-left: 100px #f2f2f2 solid !important;
}
.concrete-solid--bb-100 {
  border-bottom: 100px #f2f2f2 solid !important;
}
.concrete-solid--by-100 {
  border-top: 100px #f2f2f2 solid !important;
  border-bottom: 100px #f2f2f2 solid !important;
}
.concrete-solid--bx-100 {
  border-right: 100px #f2f2f2 solid !important;
  border-left: 100px #f2f2f2 solid !important;
}
.concrete--ba-1 {
  border: 1px #f3f3f3 solid !important;
}
.concrete--bt-1 {
  border-top: 1px #f3f3f3 solid !important;
}
.concrete--br-1 {
  border-right: 1px #f3f3f3 solid !important;
}
.concrete--bl-1 {
  border-left: 1px #f3f3f3 solid !important;
}
.concrete--bb-1 {
  border-bottom: 1px #f3f3f3 solid !important;
}
.concrete--by-1 {
  border-top: 1px #f3f3f3 solid !important;
  border-bottom: 1px #f3f3f3 solid !important;
}
.concrete--bx-1 {
  border-right: 1px #f3f3f3 solid !important;
  border-left: 1px #f3f3f3 solid !important;
}
.concrete--ba-2 {
  border: 2px #f3f3f3 solid !important;
}
.concrete--bt-2 {
  border-top: 2px #f3f3f3 solid !important;
}
.concrete--br-2 {
  border-right: 2px #f3f3f3 solid !important;
}
.concrete--bl-2 {
  border-left: 2px #f3f3f3 solid !important;
}
.concrete--bb-2 {
  border-bottom: 2px #f3f3f3 solid !important;
}
.concrete--by-2 {
  border-top: 2px #f3f3f3 solid !important;
  border-bottom: 2px #f3f3f3 solid !important;
}
.concrete--bx-2 {
  border-right: 2px #f3f3f3 solid !important;
  border-left: 2px #f3f3f3 solid !important;
}
.concrete--ba-3 {
  border: 3px #f3f3f3 solid !important;
}
.concrete--bt-3 {
  border-top: 3px #f3f3f3 solid !important;
}
.concrete--br-3 {
  border-right: 3px #f3f3f3 solid !important;
}
.concrete--bl-3 {
  border-left: 3px #f3f3f3 solid !important;
}
.concrete--bb-3 {
  border-bottom: 3px #f3f3f3 solid !important;
}
.concrete--by-3 {
  border-top: 3px #f3f3f3 solid !important;
  border-bottom: 3px #f3f3f3 solid !important;
}
.concrete--bx-3 {
  border-right: 3px #f3f3f3 solid !important;
  border-left: 3px #f3f3f3 solid !important;
}
.concrete--ba-4 {
  border: 4px #f3f3f3 solid !important;
}
.concrete--bt-4 {
  border-top: 4px #f3f3f3 solid !important;
}
.concrete--br-4 {
  border-right: 4px #f3f3f3 solid !important;
}
.concrete--bl-4 {
  border-left: 4px #f3f3f3 solid !important;
}
.concrete--bb-4 {
  border-bottom: 4px #f3f3f3 solid !important;
}
.concrete--by-4 {
  border-top: 4px #f3f3f3 solid !important;
  border-bottom: 4px #f3f3f3 solid !important;
}
.concrete--bx-4 {
  border-right: 4px #f3f3f3 solid !important;
  border-left: 4px #f3f3f3 solid !important;
}
.concrete--ba-5 {
  border: 5px #f3f3f3 solid !important;
}
.concrete--bt-5 {
  border-top: 5px #f3f3f3 solid !important;
}
.concrete--br-5 {
  border-right: 5px #f3f3f3 solid !important;
}
.concrete--bl-5 {
  border-left: 5px #f3f3f3 solid !important;
}
.concrete--bb-5 {
  border-bottom: 5px #f3f3f3 solid !important;
}
.concrete--by-5 {
  border-top: 5px #f3f3f3 solid !important;
  border-bottom: 5px #f3f3f3 solid !important;
}
.concrete--bx-5 {
  border-right: 5px #f3f3f3 solid !important;
  border-left: 5px #f3f3f3 solid !important;
}
.concrete--ba-6 {
  border: 6px #f3f3f3 solid !important;
}
.concrete--bt-6 {
  border-top: 6px #f3f3f3 solid !important;
}
.concrete--br-6 {
  border-right: 6px #f3f3f3 solid !important;
}
.concrete--bl-6 {
  border-left: 6px #f3f3f3 solid !important;
}
.concrete--bb-6 {
  border-bottom: 6px #f3f3f3 solid !important;
}
.concrete--by-6 {
  border-top: 6px #f3f3f3 solid !important;
  border-bottom: 6px #f3f3f3 solid !important;
}
.concrete--bx-6 {
  border-right: 6px #f3f3f3 solid !important;
  border-left: 6px #f3f3f3 solid !important;
}
.concrete--ba-7 {
  border: 7px #f3f3f3 solid !important;
}
.concrete--bt-7 {
  border-top: 7px #f3f3f3 solid !important;
}
.concrete--br-7 {
  border-right: 7px #f3f3f3 solid !important;
}
.concrete--bl-7 {
  border-left: 7px #f3f3f3 solid !important;
}
.concrete--bb-7 {
  border-bottom: 7px #f3f3f3 solid !important;
}
.concrete--by-7 {
  border-top: 7px #f3f3f3 solid !important;
  border-bottom: 7px #f3f3f3 solid !important;
}
.concrete--bx-7 {
  border-right: 7px #f3f3f3 solid !important;
  border-left: 7px #f3f3f3 solid !important;
}
.concrete--ba-8 {
  border: 8px #f3f3f3 solid !important;
}
.concrete--bt-8 {
  border-top: 8px #f3f3f3 solid !important;
}
.concrete--br-8 {
  border-right: 8px #f3f3f3 solid !important;
}
.concrete--bl-8 {
  border-left: 8px #f3f3f3 solid !important;
}
.concrete--bb-8 {
  border-bottom: 8px #f3f3f3 solid !important;
}
.concrete--by-8 {
  border-top: 8px #f3f3f3 solid !important;
  border-bottom: 8px #f3f3f3 solid !important;
}
.concrete--bx-8 {
  border-right: 8px #f3f3f3 solid !important;
  border-left: 8px #f3f3f3 solid !important;
}
.concrete--ba-9 {
  border: 9px #f3f3f3 solid !important;
}
.concrete--bt-9 {
  border-top: 9px #f3f3f3 solid !important;
}
.concrete--br-9 {
  border-right: 9px #f3f3f3 solid !important;
}
.concrete--bl-9 {
  border-left: 9px #f3f3f3 solid !important;
}
.concrete--bb-9 {
  border-bottom: 9px #f3f3f3 solid !important;
}
.concrete--by-9 {
  border-top: 9px #f3f3f3 solid !important;
  border-bottom: 9px #f3f3f3 solid !important;
}
.concrete--bx-9 {
  border-right: 9px #f3f3f3 solid !important;
  border-left: 9px #f3f3f3 solid !important;
}
.concrete--ba-10 {
  border: 10px #f3f3f3 solid !important;
}
.concrete--bt-10 {
  border-top: 10px #f3f3f3 solid !important;
}
.concrete--br-10 {
  border-right: 10px #f3f3f3 solid !important;
}
.concrete--bl-10 {
  border-left: 10px #f3f3f3 solid !important;
}
.concrete--bb-10 {
  border-bottom: 10px #f3f3f3 solid !important;
}
.concrete--by-10 {
  border-top: 10px #f3f3f3 solid !important;
  border-bottom: 10px #f3f3f3 solid !important;
}
.concrete--bx-10 {
  border-right: 10px #f3f3f3 solid !important;
  border-left: 10px #f3f3f3 solid !important;
}
.concrete--ba-11 {
  border: 11px #f3f3f3 solid !important;
}
.concrete--bt-11 {
  border-top: 11px #f3f3f3 solid !important;
}
.concrete--br-11 {
  border-right: 11px #f3f3f3 solid !important;
}
.concrete--bl-11 {
  border-left: 11px #f3f3f3 solid !important;
}
.concrete--bb-11 {
  border-bottom: 11px #f3f3f3 solid !important;
}
.concrete--by-11 {
  border-top: 11px #f3f3f3 solid !important;
  border-bottom: 11px #f3f3f3 solid !important;
}
.concrete--bx-11 {
  border-right: 11px #f3f3f3 solid !important;
  border-left: 11px #f3f3f3 solid !important;
}
.concrete--ba-12 {
  border: 12px #f3f3f3 solid !important;
}
.concrete--bt-12 {
  border-top: 12px #f3f3f3 solid !important;
}
.concrete--br-12 {
  border-right: 12px #f3f3f3 solid !important;
}
.concrete--bl-12 {
  border-left: 12px #f3f3f3 solid !important;
}
.concrete--bb-12 {
  border-bottom: 12px #f3f3f3 solid !important;
}
.concrete--by-12 {
  border-top: 12px #f3f3f3 solid !important;
  border-bottom: 12px #f3f3f3 solid !important;
}
.concrete--bx-12 {
  border-right: 12px #f3f3f3 solid !important;
  border-left: 12px #f3f3f3 solid !important;
}
.concrete--ba-13 {
  border: 13px #f3f3f3 solid !important;
}
.concrete--bt-13 {
  border-top: 13px #f3f3f3 solid !important;
}
.concrete--br-13 {
  border-right: 13px #f3f3f3 solid !important;
}
.concrete--bl-13 {
  border-left: 13px #f3f3f3 solid !important;
}
.concrete--bb-13 {
  border-bottom: 13px #f3f3f3 solid !important;
}
.concrete--by-13 {
  border-top: 13px #f3f3f3 solid !important;
  border-bottom: 13px #f3f3f3 solid !important;
}
.concrete--bx-13 {
  border-right: 13px #f3f3f3 solid !important;
  border-left: 13px #f3f3f3 solid !important;
}
.concrete--ba-14 {
  border: 14px #f3f3f3 solid !important;
}
.concrete--bt-14 {
  border-top: 14px #f3f3f3 solid !important;
}
.concrete--br-14 {
  border-right: 14px #f3f3f3 solid !important;
}
.concrete--bl-14 {
  border-left: 14px #f3f3f3 solid !important;
}
.concrete--bb-14 {
  border-bottom: 14px #f3f3f3 solid !important;
}
.concrete--by-14 {
  border-top: 14px #f3f3f3 solid !important;
  border-bottom: 14px #f3f3f3 solid !important;
}
.concrete--bx-14 {
  border-right: 14px #f3f3f3 solid !important;
  border-left: 14px #f3f3f3 solid !important;
}
.concrete--ba-15 {
  border: 15px #f3f3f3 solid !important;
}
.concrete--bt-15 {
  border-top: 15px #f3f3f3 solid !important;
}
.concrete--br-15 {
  border-right: 15px #f3f3f3 solid !important;
}
.concrete--bl-15 {
  border-left: 15px #f3f3f3 solid !important;
}
.concrete--bb-15 {
  border-bottom: 15px #f3f3f3 solid !important;
}
.concrete--by-15 {
  border-top: 15px #f3f3f3 solid !important;
  border-bottom: 15px #f3f3f3 solid !important;
}
.concrete--bx-15 {
  border-right: 15px #f3f3f3 solid !important;
  border-left: 15px #f3f3f3 solid !important;
}
.concrete--ba-16 {
  border: 16px #f3f3f3 solid !important;
}
.concrete--bt-16 {
  border-top: 16px #f3f3f3 solid !important;
}
.concrete--br-16 {
  border-right: 16px #f3f3f3 solid !important;
}
.concrete--bl-16 {
  border-left: 16px #f3f3f3 solid !important;
}
.concrete--bb-16 {
  border-bottom: 16px #f3f3f3 solid !important;
}
.concrete--by-16 {
  border-top: 16px #f3f3f3 solid !important;
  border-bottom: 16px #f3f3f3 solid !important;
}
.concrete--bx-16 {
  border-right: 16px #f3f3f3 solid !important;
  border-left: 16px #f3f3f3 solid !important;
}
.concrete--ba-17 {
  border: 17px #f3f3f3 solid !important;
}
.concrete--bt-17 {
  border-top: 17px #f3f3f3 solid !important;
}
.concrete--br-17 {
  border-right: 17px #f3f3f3 solid !important;
}
.concrete--bl-17 {
  border-left: 17px #f3f3f3 solid !important;
}
.concrete--bb-17 {
  border-bottom: 17px #f3f3f3 solid !important;
}
.concrete--by-17 {
  border-top: 17px #f3f3f3 solid !important;
  border-bottom: 17px #f3f3f3 solid !important;
}
.concrete--bx-17 {
  border-right: 17px #f3f3f3 solid !important;
  border-left: 17px #f3f3f3 solid !important;
}
.concrete--ba-18 {
  border: 18px #f3f3f3 solid !important;
}
.concrete--bt-18 {
  border-top: 18px #f3f3f3 solid !important;
}
.concrete--br-18 {
  border-right: 18px #f3f3f3 solid !important;
}
.concrete--bl-18 {
  border-left: 18px #f3f3f3 solid !important;
}
.concrete--bb-18 {
  border-bottom: 18px #f3f3f3 solid !important;
}
.concrete--by-18 {
  border-top: 18px #f3f3f3 solid !important;
  border-bottom: 18px #f3f3f3 solid !important;
}
.concrete--bx-18 {
  border-right: 18px #f3f3f3 solid !important;
  border-left: 18px #f3f3f3 solid !important;
}
.concrete--ba-19 {
  border: 19px #f3f3f3 solid !important;
}
.concrete--bt-19 {
  border-top: 19px #f3f3f3 solid !important;
}
.concrete--br-19 {
  border-right: 19px #f3f3f3 solid !important;
}
.concrete--bl-19 {
  border-left: 19px #f3f3f3 solid !important;
}
.concrete--bb-19 {
  border-bottom: 19px #f3f3f3 solid !important;
}
.concrete--by-19 {
  border-top: 19px #f3f3f3 solid !important;
  border-bottom: 19px #f3f3f3 solid !important;
}
.concrete--bx-19 {
  border-right: 19px #f3f3f3 solid !important;
  border-left: 19px #f3f3f3 solid !important;
}
.concrete--ba-20 {
  border: 20px #f3f3f3 solid !important;
}
.concrete--bt-20 {
  border-top: 20px #f3f3f3 solid !important;
}
.concrete--br-20 {
  border-right: 20px #f3f3f3 solid !important;
}
.concrete--bl-20 {
  border-left: 20px #f3f3f3 solid !important;
}
.concrete--bb-20 {
  border-bottom: 20px #f3f3f3 solid !important;
}
.concrete--by-20 {
  border-top: 20px #f3f3f3 solid !important;
  border-bottom: 20px #f3f3f3 solid !important;
}
.concrete--bx-20 {
  border-right: 20px #f3f3f3 solid !important;
  border-left: 20px #f3f3f3 solid !important;
}
.concrete--ba-21 {
  border: 21px #f3f3f3 solid !important;
}
.concrete--bt-21 {
  border-top: 21px #f3f3f3 solid !important;
}
.concrete--br-21 {
  border-right: 21px #f3f3f3 solid !important;
}
.concrete--bl-21 {
  border-left: 21px #f3f3f3 solid !important;
}
.concrete--bb-21 {
  border-bottom: 21px #f3f3f3 solid !important;
}
.concrete--by-21 {
  border-top: 21px #f3f3f3 solid !important;
  border-bottom: 21px #f3f3f3 solid !important;
}
.concrete--bx-21 {
  border-right: 21px #f3f3f3 solid !important;
  border-left: 21px #f3f3f3 solid !important;
}
.concrete--ba-22 {
  border: 22px #f3f3f3 solid !important;
}
.concrete--bt-22 {
  border-top: 22px #f3f3f3 solid !important;
}
.concrete--br-22 {
  border-right: 22px #f3f3f3 solid !important;
}
.concrete--bl-22 {
  border-left: 22px #f3f3f3 solid !important;
}
.concrete--bb-22 {
  border-bottom: 22px #f3f3f3 solid !important;
}
.concrete--by-22 {
  border-top: 22px #f3f3f3 solid !important;
  border-bottom: 22px #f3f3f3 solid !important;
}
.concrete--bx-22 {
  border-right: 22px #f3f3f3 solid !important;
  border-left: 22px #f3f3f3 solid !important;
}
.concrete--ba-23 {
  border: 23px #f3f3f3 solid !important;
}
.concrete--bt-23 {
  border-top: 23px #f3f3f3 solid !important;
}
.concrete--br-23 {
  border-right: 23px #f3f3f3 solid !important;
}
.concrete--bl-23 {
  border-left: 23px #f3f3f3 solid !important;
}
.concrete--bb-23 {
  border-bottom: 23px #f3f3f3 solid !important;
}
.concrete--by-23 {
  border-top: 23px #f3f3f3 solid !important;
  border-bottom: 23px #f3f3f3 solid !important;
}
.concrete--bx-23 {
  border-right: 23px #f3f3f3 solid !important;
  border-left: 23px #f3f3f3 solid !important;
}
.concrete--ba-24 {
  border: 24px #f3f3f3 solid !important;
}
.concrete--bt-24 {
  border-top: 24px #f3f3f3 solid !important;
}
.concrete--br-24 {
  border-right: 24px #f3f3f3 solid !important;
}
.concrete--bl-24 {
  border-left: 24px #f3f3f3 solid !important;
}
.concrete--bb-24 {
  border-bottom: 24px #f3f3f3 solid !important;
}
.concrete--by-24 {
  border-top: 24px #f3f3f3 solid !important;
  border-bottom: 24px #f3f3f3 solid !important;
}
.concrete--bx-24 {
  border-right: 24px #f3f3f3 solid !important;
  border-left: 24px #f3f3f3 solid !important;
}
.concrete--ba-25 {
  border: 25px #f3f3f3 solid !important;
}
.concrete--bt-25 {
  border-top: 25px #f3f3f3 solid !important;
}
.concrete--br-25 {
  border-right: 25px #f3f3f3 solid !important;
}
.concrete--bl-25 {
  border-left: 25px #f3f3f3 solid !important;
}
.concrete--bb-25 {
  border-bottom: 25px #f3f3f3 solid !important;
}
.concrete--by-25 {
  border-top: 25px #f3f3f3 solid !important;
  border-bottom: 25px #f3f3f3 solid !important;
}
.concrete--bx-25 {
  border-right: 25px #f3f3f3 solid !important;
  border-left: 25px #f3f3f3 solid !important;
}
.concrete--ba-26 {
  border: 26px #f3f3f3 solid !important;
}
.concrete--bt-26 {
  border-top: 26px #f3f3f3 solid !important;
}
.concrete--br-26 {
  border-right: 26px #f3f3f3 solid !important;
}
.concrete--bl-26 {
  border-left: 26px #f3f3f3 solid !important;
}
.concrete--bb-26 {
  border-bottom: 26px #f3f3f3 solid !important;
}
.concrete--by-26 {
  border-top: 26px #f3f3f3 solid !important;
  border-bottom: 26px #f3f3f3 solid !important;
}
.concrete--bx-26 {
  border-right: 26px #f3f3f3 solid !important;
  border-left: 26px #f3f3f3 solid !important;
}
.concrete--ba-27 {
  border: 27px #f3f3f3 solid !important;
}
.concrete--bt-27 {
  border-top: 27px #f3f3f3 solid !important;
}
.concrete--br-27 {
  border-right: 27px #f3f3f3 solid !important;
}
.concrete--bl-27 {
  border-left: 27px #f3f3f3 solid !important;
}
.concrete--bb-27 {
  border-bottom: 27px #f3f3f3 solid !important;
}
.concrete--by-27 {
  border-top: 27px #f3f3f3 solid !important;
  border-bottom: 27px #f3f3f3 solid !important;
}
.concrete--bx-27 {
  border-right: 27px #f3f3f3 solid !important;
  border-left: 27px #f3f3f3 solid !important;
}
.concrete--ba-28 {
  border: 28px #f3f3f3 solid !important;
}
.concrete--bt-28 {
  border-top: 28px #f3f3f3 solid !important;
}
.concrete--br-28 {
  border-right: 28px #f3f3f3 solid !important;
}
.concrete--bl-28 {
  border-left: 28px #f3f3f3 solid !important;
}
.concrete--bb-28 {
  border-bottom: 28px #f3f3f3 solid !important;
}
.concrete--by-28 {
  border-top: 28px #f3f3f3 solid !important;
  border-bottom: 28px #f3f3f3 solid !important;
}
.concrete--bx-28 {
  border-right: 28px #f3f3f3 solid !important;
  border-left: 28px #f3f3f3 solid !important;
}
.concrete--ba-29 {
  border: 29px #f3f3f3 solid !important;
}
.concrete--bt-29 {
  border-top: 29px #f3f3f3 solid !important;
}
.concrete--br-29 {
  border-right: 29px #f3f3f3 solid !important;
}
.concrete--bl-29 {
  border-left: 29px #f3f3f3 solid !important;
}
.concrete--bb-29 {
  border-bottom: 29px #f3f3f3 solid !important;
}
.concrete--by-29 {
  border-top: 29px #f3f3f3 solid !important;
  border-bottom: 29px #f3f3f3 solid !important;
}
.concrete--bx-29 {
  border-right: 29px #f3f3f3 solid !important;
  border-left: 29px #f3f3f3 solid !important;
}
.concrete--ba-30 {
  border: 30px #f3f3f3 solid !important;
}
.concrete--bt-30 {
  border-top: 30px #f3f3f3 solid !important;
}
.concrete--br-30 {
  border-right: 30px #f3f3f3 solid !important;
}
.concrete--bl-30 {
  border-left: 30px #f3f3f3 solid !important;
}
.concrete--bb-30 {
  border-bottom: 30px #f3f3f3 solid !important;
}
.concrete--by-30 {
  border-top: 30px #f3f3f3 solid !important;
  border-bottom: 30px #f3f3f3 solid !important;
}
.concrete--bx-30 {
  border-right: 30px #f3f3f3 solid !important;
  border-left: 30px #f3f3f3 solid !important;
}
.concrete--ba-31 {
  border: 31px #f3f3f3 solid !important;
}
.concrete--bt-31 {
  border-top: 31px #f3f3f3 solid !important;
}
.concrete--br-31 {
  border-right: 31px #f3f3f3 solid !important;
}
.concrete--bl-31 {
  border-left: 31px #f3f3f3 solid !important;
}
.concrete--bb-31 {
  border-bottom: 31px #f3f3f3 solid !important;
}
.concrete--by-31 {
  border-top: 31px #f3f3f3 solid !important;
  border-bottom: 31px #f3f3f3 solid !important;
}
.concrete--bx-31 {
  border-right: 31px #f3f3f3 solid !important;
  border-left: 31px #f3f3f3 solid !important;
}
.concrete--ba-32 {
  border: 32px #f3f3f3 solid !important;
}
.concrete--bt-32 {
  border-top: 32px #f3f3f3 solid !important;
}
.concrete--br-32 {
  border-right: 32px #f3f3f3 solid !important;
}
.concrete--bl-32 {
  border-left: 32px #f3f3f3 solid !important;
}
.concrete--bb-32 {
  border-bottom: 32px #f3f3f3 solid !important;
}
.concrete--by-32 {
  border-top: 32px #f3f3f3 solid !important;
  border-bottom: 32px #f3f3f3 solid !important;
}
.concrete--bx-32 {
  border-right: 32px #f3f3f3 solid !important;
  border-left: 32px #f3f3f3 solid !important;
}
.concrete--ba-33 {
  border: 33px #f3f3f3 solid !important;
}
.concrete--bt-33 {
  border-top: 33px #f3f3f3 solid !important;
}
.concrete--br-33 {
  border-right: 33px #f3f3f3 solid !important;
}
.concrete--bl-33 {
  border-left: 33px #f3f3f3 solid !important;
}
.concrete--bb-33 {
  border-bottom: 33px #f3f3f3 solid !important;
}
.concrete--by-33 {
  border-top: 33px #f3f3f3 solid !important;
  border-bottom: 33px #f3f3f3 solid !important;
}
.concrete--bx-33 {
  border-right: 33px #f3f3f3 solid !important;
  border-left: 33px #f3f3f3 solid !important;
}
.concrete--ba-34 {
  border: 34px #f3f3f3 solid !important;
}
.concrete--bt-34 {
  border-top: 34px #f3f3f3 solid !important;
}
.concrete--br-34 {
  border-right: 34px #f3f3f3 solid !important;
}
.concrete--bl-34 {
  border-left: 34px #f3f3f3 solid !important;
}
.concrete--bb-34 {
  border-bottom: 34px #f3f3f3 solid !important;
}
.concrete--by-34 {
  border-top: 34px #f3f3f3 solid !important;
  border-bottom: 34px #f3f3f3 solid !important;
}
.concrete--bx-34 {
  border-right: 34px #f3f3f3 solid !important;
  border-left: 34px #f3f3f3 solid !important;
}
.concrete--ba-35 {
  border: 35px #f3f3f3 solid !important;
}
.concrete--bt-35 {
  border-top: 35px #f3f3f3 solid !important;
}
.concrete--br-35 {
  border-right: 35px #f3f3f3 solid !important;
}
.concrete--bl-35 {
  border-left: 35px #f3f3f3 solid !important;
}
.concrete--bb-35 {
  border-bottom: 35px #f3f3f3 solid !important;
}
.concrete--by-35 {
  border-top: 35px #f3f3f3 solid !important;
  border-bottom: 35px #f3f3f3 solid !important;
}
.concrete--bx-35 {
  border-right: 35px #f3f3f3 solid !important;
  border-left: 35px #f3f3f3 solid !important;
}
.concrete--ba-36 {
  border: 36px #f3f3f3 solid !important;
}
.concrete--bt-36 {
  border-top: 36px #f3f3f3 solid !important;
}
.concrete--br-36 {
  border-right: 36px #f3f3f3 solid !important;
}
.concrete--bl-36 {
  border-left: 36px #f3f3f3 solid !important;
}
.concrete--bb-36 {
  border-bottom: 36px #f3f3f3 solid !important;
}
.concrete--by-36 {
  border-top: 36px #f3f3f3 solid !important;
  border-bottom: 36px #f3f3f3 solid !important;
}
.concrete--bx-36 {
  border-right: 36px #f3f3f3 solid !important;
  border-left: 36px #f3f3f3 solid !important;
}
.concrete--ba-37 {
  border: 37px #f3f3f3 solid !important;
}
.concrete--bt-37 {
  border-top: 37px #f3f3f3 solid !important;
}
.concrete--br-37 {
  border-right: 37px #f3f3f3 solid !important;
}
.concrete--bl-37 {
  border-left: 37px #f3f3f3 solid !important;
}
.concrete--bb-37 {
  border-bottom: 37px #f3f3f3 solid !important;
}
.concrete--by-37 {
  border-top: 37px #f3f3f3 solid !important;
  border-bottom: 37px #f3f3f3 solid !important;
}
.concrete--bx-37 {
  border-right: 37px #f3f3f3 solid !important;
  border-left: 37px #f3f3f3 solid !important;
}
.concrete--ba-38 {
  border: 38px #f3f3f3 solid !important;
}
.concrete--bt-38 {
  border-top: 38px #f3f3f3 solid !important;
}
.concrete--br-38 {
  border-right: 38px #f3f3f3 solid !important;
}
.concrete--bl-38 {
  border-left: 38px #f3f3f3 solid !important;
}
.concrete--bb-38 {
  border-bottom: 38px #f3f3f3 solid !important;
}
.concrete--by-38 {
  border-top: 38px #f3f3f3 solid !important;
  border-bottom: 38px #f3f3f3 solid !important;
}
.concrete--bx-38 {
  border-right: 38px #f3f3f3 solid !important;
  border-left: 38px #f3f3f3 solid !important;
}
.concrete--ba-39 {
  border: 39px #f3f3f3 solid !important;
}
.concrete--bt-39 {
  border-top: 39px #f3f3f3 solid !important;
}
.concrete--br-39 {
  border-right: 39px #f3f3f3 solid !important;
}
.concrete--bl-39 {
  border-left: 39px #f3f3f3 solid !important;
}
.concrete--bb-39 {
  border-bottom: 39px #f3f3f3 solid !important;
}
.concrete--by-39 {
  border-top: 39px #f3f3f3 solid !important;
  border-bottom: 39px #f3f3f3 solid !important;
}
.concrete--bx-39 {
  border-right: 39px #f3f3f3 solid !important;
  border-left: 39px #f3f3f3 solid !important;
}
.concrete--ba-40 {
  border: 40px #f3f3f3 solid !important;
}
.concrete--bt-40 {
  border-top: 40px #f3f3f3 solid !important;
}
.concrete--br-40 {
  border-right: 40px #f3f3f3 solid !important;
}
.concrete--bl-40 {
  border-left: 40px #f3f3f3 solid !important;
}
.concrete--bb-40 {
  border-bottom: 40px #f3f3f3 solid !important;
}
.concrete--by-40 {
  border-top: 40px #f3f3f3 solid !important;
  border-bottom: 40px #f3f3f3 solid !important;
}
.concrete--bx-40 {
  border-right: 40px #f3f3f3 solid !important;
  border-left: 40px #f3f3f3 solid !important;
}
.concrete--ba-41 {
  border: 41px #f3f3f3 solid !important;
}
.concrete--bt-41 {
  border-top: 41px #f3f3f3 solid !important;
}
.concrete--br-41 {
  border-right: 41px #f3f3f3 solid !important;
}
.concrete--bl-41 {
  border-left: 41px #f3f3f3 solid !important;
}
.concrete--bb-41 {
  border-bottom: 41px #f3f3f3 solid !important;
}
.concrete--by-41 {
  border-top: 41px #f3f3f3 solid !important;
  border-bottom: 41px #f3f3f3 solid !important;
}
.concrete--bx-41 {
  border-right: 41px #f3f3f3 solid !important;
  border-left: 41px #f3f3f3 solid !important;
}
.concrete--ba-42 {
  border: 42px #f3f3f3 solid !important;
}
.concrete--bt-42 {
  border-top: 42px #f3f3f3 solid !important;
}
.concrete--br-42 {
  border-right: 42px #f3f3f3 solid !important;
}
.concrete--bl-42 {
  border-left: 42px #f3f3f3 solid !important;
}
.concrete--bb-42 {
  border-bottom: 42px #f3f3f3 solid !important;
}
.concrete--by-42 {
  border-top: 42px #f3f3f3 solid !important;
  border-bottom: 42px #f3f3f3 solid !important;
}
.concrete--bx-42 {
  border-right: 42px #f3f3f3 solid !important;
  border-left: 42px #f3f3f3 solid !important;
}
.concrete--ba-43 {
  border: 43px #f3f3f3 solid !important;
}
.concrete--bt-43 {
  border-top: 43px #f3f3f3 solid !important;
}
.concrete--br-43 {
  border-right: 43px #f3f3f3 solid !important;
}
.concrete--bl-43 {
  border-left: 43px #f3f3f3 solid !important;
}
.concrete--bb-43 {
  border-bottom: 43px #f3f3f3 solid !important;
}
.concrete--by-43 {
  border-top: 43px #f3f3f3 solid !important;
  border-bottom: 43px #f3f3f3 solid !important;
}
.concrete--bx-43 {
  border-right: 43px #f3f3f3 solid !important;
  border-left: 43px #f3f3f3 solid !important;
}
.concrete--ba-44 {
  border: 44px #f3f3f3 solid !important;
}
.concrete--bt-44 {
  border-top: 44px #f3f3f3 solid !important;
}
.concrete--br-44 {
  border-right: 44px #f3f3f3 solid !important;
}
.concrete--bl-44 {
  border-left: 44px #f3f3f3 solid !important;
}
.concrete--bb-44 {
  border-bottom: 44px #f3f3f3 solid !important;
}
.concrete--by-44 {
  border-top: 44px #f3f3f3 solid !important;
  border-bottom: 44px #f3f3f3 solid !important;
}
.concrete--bx-44 {
  border-right: 44px #f3f3f3 solid !important;
  border-left: 44px #f3f3f3 solid !important;
}
.concrete--ba-45 {
  border: 45px #f3f3f3 solid !important;
}
.concrete--bt-45 {
  border-top: 45px #f3f3f3 solid !important;
}
.concrete--br-45 {
  border-right: 45px #f3f3f3 solid !important;
}
.concrete--bl-45 {
  border-left: 45px #f3f3f3 solid !important;
}
.concrete--bb-45 {
  border-bottom: 45px #f3f3f3 solid !important;
}
.concrete--by-45 {
  border-top: 45px #f3f3f3 solid !important;
  border-bottom: 45px #f3f3f3 solid !important;
}
.concrete--bx-45 {
  border-right: 45px #f3f3f3 solid !important;
  border-left: 45px #f3f3f3 solid !important;
}
.concrete--ba-46 {
  border: 46px #f3f3f3 solid !important;
}
.concrete--bt-46 {
  border-top: 46px #f3f3f3 solid !important;
}
.concrete--br-46 {
  border-right: 46px #f3f3f3 solid !important;
}
.concrete--bl-46 {
  border-left: 46px #f3f3f3 solid !important;
}
.concrete--bb-46 {
  border-bottom: 46px #f3f3f3 solid !important;
}
.concrete--by-46 {
  border-top: 46px #f3f3f3 solid !important;
  border-bottom: 46px #f3f3f3 solid !important;
}
.concrete--bx-46 {
  border-right: 46px #f3f3f3 solid !important;
  border-left: 46px #f3f3f3 solid !important;
}
.concrete--ba-47 {
  border: 47px #f3f3f3 solid !important;
}
.concrete--bt-47 {
  border-top: 47px #f3f3f3 solid !important;
}
.concrete--br-47 {
  border-right: 47px #f3f3f3 solid !important;
}
.concrete--bl-47 {
  border-left: 47px #f3f3f3 solid !important;
}
.concrete--bb-47 {
  border-bottom: 47px #f3f3f3 solid !important;
}
.concrete--by-47 {
  border-top: 47px #f3f3f3 solid !important;
  border-bottom: 47px #f3f3f3 solid !important;
}
.concrete--bx-47 {
  border-right: 47px #f3f3f3 solid !important;
  border-left: 47px #f3f3f3 solid !important;
}
.concrete--ba-48 {
  border: 48px #f3f3f3 solid !important;
}
.concrete--bt-48 {
  border-top: 48px #f3f3f3 solid !important;
}
.concrete--br-48 {
  border-right: 48px #f3f3f3 solid !important;
}
.concrete--bl-48 {
  border-left: 48px #f3f3f3 solid !important;
}
.concrete--bb-48 {
  border-bottom: 48px #f3f3f3 solid !important;
}
.concrete--by-48 {
  border-top: 48px #f3f3f3 solid !important;
  border-bottom: 48px #f3f3f3 solid !important;
}
.concrete--bx-48 {
  border-right: 48px #f3f3f3 solid !important;
  border-left: 48px #f3f3f3 solid !important;
}
.concrete--ba-49 {
  border: 49px #f3f3f3 solid !important;
}
.concrete--bt-49 {
  border-top: 49px #f3f3f3 solid !important;
}
.concrete--br-49 {
  border-right: 49px #f3f3f3 solid !important;
}
.concrete--bl-49 {
  border-left: 49px #f3f3f3 solid !important;
}
.concrete--bb-49 {
  border-bottom: 49px #f3f3f3 solid !important;
}
.concrete--by-49 {
  border-top: 49px #f3f3f3 solid !important;
  border-bottom: 49px #f3f3f3 solid !important;
}
.concrete--bx-49 {
  border-right: 49px #f3f3f3 solid !important;
  border-left: 49px #f3f3f3 solid !important;
}
.concrete--ba-50 {
  border: 50px #f3f3f3 solid !important;
}
.concrete--bt-50 {
  border-top: 50px #f3f3f3 solid !important;
}
.concrete--br-50 {
  border-right: 50px #f3f3f3 solid !important;
}
.concrete--bl-50 {
  border-left: 50px #f3f3f3 solid !important;
}
.concrete--bb-50 {
  border-bottom: 50px #f3f3f3 solid !important;
}
.concrete--by-50 {
  border-top: 50px #f3f3f3 solid !important;
  border-bottom: 50px #f3f3f3 solid !important;
}
.concrete--bx-50 {
  border-right: 50px #f3f3f3 solid !important;
  border-left: 50px #f3f3f3 solid !important;
}
.concrete--ba-51 {
  border: 51px #f3f3f3 solid !important;
}
.concrete--bt-51 {
  border-top: 51px #f3f3f3 solid !important;
}
.concrete--br-51 {
  border-right: 51px #f3f3f3 solid !important;
}
.concrete--bl-51 {
  border-left: 51px #f3f3f3 solid !important;
}
.concrete--bb-51 {
  border-bottom: 51px #f3f3f3 solid !important;
}
.concrete--by-51 {
  border-top: 51px #f3f3f3 solid !important;
  border-bottom: 51px #f3f3f3 solid !important;
}
.concrete--bx-51 {
  border-right: 51px #f3f3f3 solid !important;
  border-left: 51px #f3f3f3 solid !important;
}
.concrete--ba-52 {
  border: 52px #f3f3f3 solid !important;
}
.concrete--bt-52 {
  border-top: 52px #f3f3f3 solid !important;
}
.concrete--br-52 {
  border-right: 52px #f3f3f3 solid !important;
}
.concrete--bl-52 {
  border-left: 52px #f3f3f3 solid !important;
}
.concrete--bb-52 {
  border-bottom: 52px #f3f3f3 solid !important;
}
.concrete--by-52 {
  border-top: 52px #f3f3f3 solid !important;
  border-bottom: 52px #f3f3f3 solid !important;
}
.concrete--bx-52 {
  border-right: 52px #f3f3f3 solid !important;
  border-left: 52px #f3f3f3 solid !important;
}
.concrete--ba-53 {
  border: 53px #f3f3f3 solid !important;
}
.concrete--bt-53 {
  border-top: 53px #f3f3f3 solid !important;
}
.concrete--br-53 {
  border-right: 53px #f3f3f3 solid !important;
}
.concrete--bl-53 {
  border-left: 53px #f3f3f3 solid !important;
}
.concrete--bb-53 {
  border-bottom: 53px #f3f3f3 solid !important;
}
.concrete--by-53 {
  border-top: 53px #f3f3f3 solid !important;
  border-bottom: 53px #f3f3f3 solid !important;
}
.concrete--bx-53 {
  border-right: 53px #f3f3f3 solid !important;
  border-left: 53px #f3f3f3 solid !important;
}
.concrete--ba-54 {
  border: 54px #f3f3f3 solid !important;
}
.concrete--bt-54 {
  border-top: 54px #f3f3f3 solid !important;
}
.concrete--br-54 {
  border-right: 54px #f3f3f3 solid !important;
}
.concrete--bl-54 {
  border-left: 54px #f3f3f3 solid !important;
}
.concrete--bb-54 {
  border-bottom: 54px #f3f3f3 solid !important;
}
.concrete--by-54 {
  border-top: 54px #f3f3f3 solid !important;
  border-bottom: 54px #f3f3f3 solid !important;
}
.concrete--bx-54 {
  border-right: 54px #f3f3f3 solid !important;
  border-left: 54px #f3f3f3 solid !important;
}
.concrete--ba-55 {
  border: 55px #f3f3f3 solid !important;
}
.concrete--bt-55 {
  border-top: 55px #f3f3f3 solid !important;
}
.concrete--br-55 {
  border-right: 55px #f3f3f3 solid !important;
}
.concrete--bl-55 {
  border-left: 55px #f3f3f3 solid !important;
}
.concrete--bb-55 {
  border-bottom: 55px #f3f3f3 solid !important;
}
.concrete--by-55 {
  border-top: 55px #f3f3f3 solid !important;
  border-bottom: 55px #f3f3f3 solid !important;
}
.concrete--bx-55 {
  border-right: 55px #f3f3f3 solid !important;
  border-left: 55px #f3f3f3 solid !important;
}
.concrete--ba-56 {
  border: 56px #f3f3f3 solid !important;
}
.concrete--bt-56 {
  border-top: 56px #f3f3f3 solid !important;
}
.concrete--br-56 {
  border-right: 56px #f3f3f3 solid !important;
}
.concrete--bl-56 {
  border-left: 56px #f3f3f3 solid !important;
}
.concrete--bb-56 {
  border-bottom: 56px #f3f3f3 solid !important;
}
.concrete--by-56 {
  border-top: 56px #f3f3f3 solid !important;
  border-bottom: 56px #f3f3f3 solid !important;
}
.concrete--bx-56 {
  border-right: 56px #f3f3f3 solid !important;
  border-left: 56px #f3f3f3 solid !important;
}
.concrete--ba-57 {
  border: 57px #f3f3f3 solid !important;
}
.concrete--bt-57 {
  border-top: 57px #f3f3f3 solid !important;
}
.concrete--br-57 {
  border-right: 57px #f3f3f3 solid !important;
}
.concrete--bl-57 {
  border-left: 57px #f3f3f3 solid !important;
}
.concrete--bb-57 {
  border-bottom: 57px #f3f3f3 solid !important;
}
.concrete--by-57 {
  border-top: 57px #f3f3f3 solid !important;
  border-bottom: 57px #f3f3f3 solid !important;
}
.concrete--bx-57 {
  border-right: 57px #f3f3f3 solid !important;
  border-left: 57px #f3f3f3 solid !important;
}
.concrete--ba-58 {
  border: 58px #f3f3f3 solid !important;
}
.concrete--bt-58 {
  border-top: 58px #f3f3f3 solid !important;
}
.concrete--br-58 {
  border-right: 58px #f3f3f3 solid !important;
}
.concrete--bl-58 {
  border-left: 58px #f3f3f3 solid !important;
}
.concrete--bb-58 {
  border-bottom: 58px #f3f3f3 solid !important;
}
.concrete--by-58 {
  border-top: 58px #f3f3f3 solid !important;
  border-bottom: 58px #f3f3f3 solid !important;
}
.concrete--bx-58 {
  border-right: 58px #f3f3f3 solid !important;
  border-left: 58px #f3f3f3 solid !important;
}
.concrete--ba-59 {
  border: 59px #f3f3f3 solid !important;
}
.concrete--bt-59 {
  border-top: 59px #f3f3f3 solid !important;
}
.concrete--br-59 {
  border-right: 59px #f3f3f3 solid !important;
}
.concrete--bl-59 {
  border-left: 59px #f3f3f3 solid !important;
}
.concrete--bb-59 {
  border-bottom: 59px #f3f3f3 solid !important;
}
.concrete--by-59 {
  border-top: 59px #f3f3f3 solid !important;
  border-bottom: 59px #f3f3f3 solid !important;
}
.concrete--bx-59 {
  border-right: 59px #f3f3f3 solid !important;
  border-left: 59px #f3f3f3 solid !important;
}
.concrete--ba-60 {
  border: 60px #f3f3f3 solid !important;
}
.concrete--bt-60 {
  border-top: 60px #f3f3f3 solid !important;
}
.concrete--br-60 {
  border-right: 60px #f3f3f3 solid !important;
}
.concrete--bl-60 {
  border-left: 60px #f3f3f3 solid !important;
}
.concrete--bb-60 {
  border-bottom: 60px #f3f3f3 solid !important;
}
.concrete--by-60 {
  border-top: 60px #f3f3f3 solid !important;
  border-bottom: 60px #f3f3f3 solid !important;
}
.concrete--bx-60 {
  border-right: 60px #f3f3f3 solid !important;
  border-left: 60px #f3f3f3 solid !important;
}
.concrete--ba-61 {
  border: 61px #f3f3f3 solid !important;
}
.concrete--bt-61 {
  border-top: 61px #f3f3f3 solid !important;
}
.concrete--br-61 {
  border-right: 61px #f3f3f3 solid !important;
}
.concrete--bl-61 {
  border-left: 61px #f3f3f3 solid !important;
}
.concrete--bb-61 {
  border-bottom: 61px #f3f3f3 solid !important;
}
.concrete--by-61 {
  border-top: 61px #f3f3f3 solid !important;
  border-bottom: 61px #f3f3f3 solid !important;
}
.concrete--bx-61 {
  border-right: 61px #f3f3f3 solid !important;
  border-left: 61px #f3f3f3 solid !important;
}
.concrete--ba-62 {
  border: 62px #f3f3f3 solid !important;
}
.concrete--bt-62 {
  border-top: 62px #f3f3f3 solid !important;
}
.concrete--br-62 {
  border-right: 62px #f3f3f3 solid !important;
}
.concrete--bl-62 {
  border-left: 62px #f3f3f3 solid !important;
}
.concrete--bb-62 {
  border-bottom: 62px #f3f3f3 solid !important;
}
.concrete--by-62 {
  border-top: 62px #f3f3f3 solid !important;
  border-bottom: 62px #f3f3f3 solid !important;
}
.concrete--bx-62 {
  border-right: 62px #f3f3f3 solid !important;
  border-left: 62px #f3f3f3 solid !important;
}
.concrete--ba-63 {
  border: 63px #f3f3f3 solid !important;
}
.concrete--bt-63 {
  border-top: 63px #f3f3f3 solid !important;
}
.concrete--br-63 {
  border-right: 63px #f3f3f3 solid !important;
}
.concrete--bl-63 {
  border-left: 63px #f3f3f3 solid !important;
}
.concrete--bb-63 {
  border-bottom: 63px #f3f3f3 solid !important;
}
.concrete--by-63 {
  border-top: 63px #f3f3f3 solid !important;
  border-bottom: 63px #f3f3f3 solid !important;
}
.concrete--bx-63 {
  border-right: 63px #f3f3f3 solid !important;
  border-left: 63px #f3f3f3 solid !important;
}
.concrete--ba-64 {
  border: 64px #f3f3f3 solid !important;
}
.concrete--bt-64 {
  border-top: 64px #f3f3f3 solid !important;
}
.concrete--br-64 {
  border-right: 64px #f3f3f3 solid !important;
}
.concrete--bl-64 {
  border-left: 64px #f3f3f3 solid !important;
}
.concrete--bb-64 {
  border-bottom: 64px #f3f3f3 solid !important;
}
.concrete--by-64 {
  border-top: 64px #f3f3f3 solid !important;
  border-bottom: 64px #f3f3f3 solid !important;
}
.concrete--bx-64 {
  border-right: 64px #f3f3f3 solid !important;
  border-left: 64px #f3f3f3 solid !important;
}
.concrete--ba-65 {
  border: 65px #f3f3f3 solid !important;
}
.concrete--bt-65 {
  border-top: 65px #f3f3f3 solid !important;
}
.concrete--br-65 {
  border-right: 65px #f3f3f3 solid !important;
}
.concrete--bl-65 {
  border-left: 65px #f3f3f3 solid !important;
}
.concrete--bb-65 {
  border-bottom: 65px #f3f3f3 solid !important;
}
.concrete--by-65 {
  border-top: 65px #f3f3f3 solid !important;
  border-bottom: 65px #f3f3f3 solid !important;
}
.concrete--bx-65 {
  border-right: 65px #f3f3f3 solid !important;
  border-left: 65px #f3f3f3 solid !important;
}
.concrete--ba-66 {
  border: 66px #f3f3f3 solid !important;
}
.concrete--bt-66 {
  border-top: 66px #f3f3f3 solid !important;
}
.concrete--br-66 {
  border-right: 66px #f3f3f3 solid !important;
}
.concrete--bl-66 {
  border-left: 66px #f3f3f3 solid !important;
}
.concrete--bb-66 {
  border-bottom: 66px #f3f3f3 solid !important;
}
.concrete--by-66 {
  border-top: 66px #f3f3f3 solid !important;
  border-bottom: 66px #f3f3f3 solid !important;
}
.concrete--bx-66 {
  border-right: 66px #f3f3f3 solid !important;
  border-left: 66px #f3f3f3 solid !important;
}
.concrete--ba-67 {
  border: 67px #f3f3f3 solid !important;
}
.concrete--bt-67 {
  border-top: 67px #f3f3f3 solid !important;
}
.concrete--br-67 {
  border-right: 67px #f3f3f3 solid !important;
}
.concrete--bl-67 {
  border-left: 67px #f3f3f3 solid !important;
}
.concrete--bb-67 {
  border-bottom: 67px #f3f3f3 solid !important;
}
.concrete--by-67 {
  border-top: 67px #f3f3f3 solid !important;
  border-bottom: 67px #f3f3f3 solid !important;
}
.concrete--bx-67 {
  border-right: 67px #f3f3f3 solid !important;
  border-left: 67px #f3f3f3 solid !important;
}
.concrete--ba-68 {
  border: 68px #f3f3f3 solid !important;
}
.concrete--bt-68 {
  border-top: 68px #f3f3f3 solid !important;
}
.concrete--br-68 {
  border-right: 68px #f3f3f3 solid !important;
}
.concrete--bl-68 {
  border-left: 68px #f3f3f3 solid !important;
}
.concrete--bb-68 {
  border-bottom: 68px #f3f3f3 solid !important;
}
.concrete--by-68 {
  border-top: 68px #f3f3f3 solid !important;
  border-bottom: 68px #f3f3f3 solid !important;
}
.concrete--bx-68 {
  border-right: 68px #f3f3f3 solid !important;
  border-left: 68px #f3f3f3 solid !important;
}
.concrete--ba-69 {
  border: 69px #f3f3f3 solid !important;
}
.concrete--bt-69 {
  border-top: 69px #f3f3f3 solid !important;
}
.concrete--br-69 {
  border-right: 69px #f3f3f3 solid !important;
}
.concrete--bl-69 {
  border-left: 69px #f3f3f3 solid !important;
}
.concrete--bb-69 {
  border-bottom: 69px #f3f3f3 solid !important;
}
.concrete--by-69 {
  border-top: 69px #f3f3f3 solid !important;
  border-bottom: 69px #f3f3f3 solid !important;
}
.concrete--bx-69 {
  border-right: 69px #f3f3f3 solid !important;
  border-left: 69px #f3f3f3 solid !important;
}
.concrete--ba-70 {
  border: 70px #f3f3f3 solid !important;
}
.concrete--bt-70 {
  border-top: 70px #f3f3f3 solid !important;
}
.concrete--br-70 {
  border-right: 70px #f3f3f3 solid !important;
}
.concrete--bl-70 {
  border-left: 70px #f3f3f3 solid !important;
}
.concrete--bb-70 {
  border-bottom: 70px #f3f3f3 solid !important;
}
.concrete--by-70 {
  border-top: 70px #f3f3f3 solid !important;
  border-bottom: 70px #f3f3f3 solid !important;
}
.concrete--bx-70 {
  border-right: 70px #f3f3f3 solid !important;
  border-left: 70px #f3f3f3 solid !important;
}
.concrete--ba-71 {
  border: 71px #f3f3f3 solid !important;
}
.concrete--bt-71 {
  border-top: 71px #f3f3f3 solid !important;
}
.concrete--br-71 {
  border-right: 71px #f3f3f3 solid !important;
}
.concrete--bl-71 {
  border-left: 71px #f3f3f3 solid !important;
}
.concrete--bb-71 {
  border-bottom: 71px #f3f3f3 solid !important;
}
.concrete--by-71 {
  border-top: 71px #f3f3f3 solid !important;
  border-bottom: 71px #f3f3f3 solid !important;
}
.concrete--bx-71 {
  border-right: 71px #f3f3f3 solid !important;
  border-left: 71px #f3f3f3 solid !important;
}
.concrete--ba-72 {
  border: 72px #f3f3f3 solid !important;
}
.concrete--bt-72 {
  border-top: 72px #f3f3f3 solid !important;
}
.concrete--br-72 {
  border-right: 72px #f3f3f3 solid !important;
}
.concrete--bl-72 {
  border-left: 72px #f3f3f3 solid !important;
}
.concrete--bb-72 {
  border-bottom: 72px #f3f3f3 solid !important;
}
.concrete--by-72 {
  border-top: 72px #f3f3f3 solid !important;
  border-bottom: 72px #f3f3f3 solid !important;
}
.concrete--bx-72 {
  border-right: 72px #f3f3f3 solid !important;
  border-left: 72px #f3f3f3 solid !important;
}
.concrete--ba-73 {
  border: 73px #f3f3f3 solid !important;
}
.concrete--bt-73 {
  border-top: 73px #f3f3f3 solid !important;
}
.concrete--br-73 {
  border-right: 73px #f3f3f3 solid !important;
}
.concrete--bl-73 {
  border-left: 73px #f3f3f3 solid !important;
}
.concrete--bb-73 {
  border-bottom: 73px #f3f3f3 solid !important;
}
.concrete--by-73 {
  border-top: 73px #f3f3f3 solid !important;
  border-bottom: 73px #f3f3f3 solid !important;
}
.concrete--bx-73 {
  border-right: 73px #f3f3f3 solid !important;
  border-left: 73px #f3f3f3 solid !important;
}
.concrete--ba-74 {
  border: 74px #f3f3f3 solid !important;
}
.concrete--bt-74 {
  border-top: 74px #f3f3f3 solid !important;
}
.concrete--br-74 {
  border-right: 74px #f3f3f3 solid !important;
}
.concrete--bl-74 {
  border-left: 74px #f3f3f3 solid !important;
}
.concrete--bb-74 {
  border-bottom: 74px #f3f3f3 solid !important;
}
.concrete--by-74 {
  border-top: 74px #f3f3f3 solid !important;
  border-bottom: 74px #f3f3f3 solid !important;
}
.concrete--bx-74 {
  border-right: 74px #f3f3f3 solid !important;
  border-left: 74px #f3f3f3 solid !important;
}
.concrete--ba-75 {
  border: 75px #f3f3f3 solid !important;
}
.concrete--bt-75 {
  border-top: 75px #f3f3f3 solid !important;
}
.concrete--br-75 {
  border-right: 75px #f3f3f3 solid !important;
}
.concrete--bl-75 {
  border-left: 75px #f3f3f3 solid !important;
}
.concrete--bb-75 {
  border-bottom: 75px #f3f3f3 solid !important;
}
.concrete--by-75 {
  border-top: 75px #f3f3f3 solid !important;
  border-bottom: 75px #f3f3f3 solid !important;
}
.concrete--bx-75 {
  border-right: 75px #f3f3f3 solid !important;
  border-left: 75px #f3f3f3 solid !important;
}
.concrete--ba-76 {
  border: 76px #f3f3f3 solid !important;
}
.concrete--bt-76 {
  border-top: 76px #f3f3f3 solid !important;
}
.concrete--br-76 {
  border-right: 76px #f3f3f3 solid !important;
}
.concrete--bl-76 {
  border-left: 76px #f3f3f3 solid !important;
}
.concrete--bb-76 {
  border-bottom: 76px #f3f3f3 solid !important;
}
.concrete--by-76 {
  border-top: 76px #f3f3f3 solid !important;
  border-bottom: 76px #f3f3f3 solid !important;
}
.concrete--bx-76 {
  border-right: 76px #f3f3f3 solid !important;
  border-left: 76px #f3f3f3 solid !important;
}
.concrete--ba-77 {
  border: 77px #f3f3f3 solid !important;
}
.concrete--bt-77 {
  border-top: 77px #f3f3f3 solid !important;
}
.concrete--br-77 {
  border-right: 77px #f3f3f3 solid !important;
}
.concrete--bl-77 {
  border-left: 77px #f3f3f3 solid !important;
}
.concrete--bb-77 {
  border-bottom: 77px #f3f3f3 solid !important;
}
.concrete--by-77 {
  border-top: 77px #f3f3f3 solid !important;
  border-bottom: 77px #f3f3f3 solid !important;
}
.concrete--bx-77 {
  border-right: 77px #f3f3f3 solid !important;
  border-left: 77px #f3f3f3 solid !important;
}
.concrete--ba-78 {
  border: 78px #f3f3f3 solid !important;
}
.concrete--bt-78 {
  border-top: 78px #f3f3f3 solid !important;
}
.concrete--br-78 {
  border-right: 78px #f3f3f3 solid !important;
}
.concrete--bl-78 {
  border-left: 78px #f3f3f3 solid !important;
}
.concrete--bb-78 {
  border-bottom: 78px #f3f3f3 solid !important;
}
.concrete--by-78 {
  border-top: 78px #f3f3f3 solid !important;
  border-bottom: 78px #f3f3f3 solid !important;
}
.concrete--bx-78 {
  border-right: 78px #f3f3f3 solid !important;
  border-left: 78px #f3f3f3 solid !important;
}
.concrete--ba-79 {
  border: 79px #f3f3f3 solid !important;
}
.concrete--bt-79 {
  border-top: 79px #f3f3f3 solid !important;
}
.concrete--br-79 {
  border-right: 79px #f3f3f3 solid !important;
}
.concrete--bl-79 {
  border-left: 79px #f3f3f3 solid !important;
}
.concrete--bb-79 {
  border-bottom: 79px #f3f3f3 solid !important;
}
.concrete--by-79 {
  border-top: 79px #f3f3f3 solid !important;
  border-bottom: 79px #f3f3f3 solid !important;
}
.concrete--bx-79 {
  border-right: 79px #f3f3f3 solid !important;
  border-left: 79px #f3f3f3 solid !important;
}
.concrete--ba-80 {
  border: 80px #f3f3f3 solid !important;
}
.concrete--bt-80 {
  border-top: 80px #f3f3f3 solid !important;
}
.concrete--br-80 {
  border-right: 80px #f3f3f3 solid !important;
}
.concrete--bl-80 {
  border-left: 80px #f3f3f3 solid !important;
}
.concrete--bb-80 {
  border-bottom: 80px #f3f3f3 solid !important;
}
.concrete--by-80 {
  border-top: 80px #f3f3f3 solid !important;
  border-bottom: 80px #f3f3f3 solid !important;
}
.concrete--bx-80 {
  border-right: 80px #f3f3f3 solid !important;
  border-left: 80px #f3f3f3 solid !important;
}
.concrete--ba-81 {
  border: 81px #f3f3f3 solid !important;
}
.concrete--bt-81 {
  border-top: 81px #f3f3f3 solid !important;
}
.concrete--br-81 {
  border-right: 81px #f3f3f3 solid !important;
}
.concrete--bl-81 {
  border-left: 81px #f3f3f3 solid !important;
}
.concrete--bb-81 {
  border-bottom: 81px #f3f3f3 solid !important;
}
.concrete--by-81 {
  border-top: 81px #f3f3f3 solid !important;
  border-bottom: 81px #f3f3f3 solid !important;
}
.concrete--bx-81 {
  border-right: 81px #f3f3f3 solid !important;
  border-left: 81px #f3f3f3 solid !important;
}
.concrete--ba-82 {
  border: 82px #f3f3f3 solid !important;
}
.concrete--bt-82 {
  border-top: 82px #f3f3f3 solid !important;
}
.concrete--br-82 {
  border-right: 82px #f3f3f3 solid !important;
}
.concrete--bl-82 {
  border-left: 82px #f3f3f3 solid !important;
}
.concrete--bb-82 {
  border-bottom: 82px #f3f3f3 solid !important;
}
.concrete--by-82 {
  border-top: 82px #f3f3f3 solid !important;
  border-bottom: 82px #f3f3f3 solid !important;
}
.concrete--bx-82 {
  border-right: 82px #f3f3f3 solid !important;
  border-left: 82px #f3f3f3 solid !important;
}
.concrete--ba-83 {
  border: 83px #f3f3f3 solid !important;
}
.concrete--bt-83 {
  border-top: 83px #f3f3f3 solid !important;
}
.concrete--br-83 {
  border-right: 83px #f3f3f3 solid !important;
}
.concrete--bl-83 {
  border-left: 83px #f3f3f3 solid !important;
}
.concrete--bb-83 {
  border-bottom: 83px #f3f3f3 solid !important;
}
.concrete--by-83 {
  border-top: 83px #f3f3f3 solid !important;
  border-bottom: 83px #f3f3f3 solid !important;
}
.concrete--bx-83 {
  border-right: 83px #f3f3f3 solid !important;
  border-left: 83px #f3f3f3 solid !important;
}
.concrete--ba-84 {
  border: 84px #f3f3f3 solid !important;
}
.concrete--bt-84 {
  border-top: 84px #f3f3f3 solid !important;
}
.concrete--br-84 {
  border-right: 84px #f3f3f3 solid !important;
}
.concrete--bl-84 {
  border-left: 84px #f3f3f3 solid !important;
}
.concrete--bb-84 {
  border-bottom: 84px #f3f3f3 solid !important;
}
.concrete--by-84 {
  border-top: 84px #f3f3f3 solid !important;
  border-bottom: 84px #f3f3f3 solid !important;
}
.concrete--bx-84 {
  border-right: 84px #f3f3f3 solid !important;
  border-left: 84px #f3f3f3 solid !important;
}
.concrete--ba-85 {
  border: 85px #f3f3f3 solid !important;
}
.concrete--bt-85 {
  border-top: 85px #f3f3f3 solid !important;
}
.concrete--br-85 {
  border-right: 85px #f3f3f3 solid !important;
}
.concrete--bl-85 {
  border-left: 85px #f3f3f3 solid !important;
}
.concrete--bb-85 {
  border-bottom: 85px #f3f3f3 solid !important;
}
.concrete--by-85 {
  border-top: 85px #f3f3f3 solid !important;
  border-bottom: 85px #f3f3f3 solid !important;
}
.concrete--bx-85 {
  border-right: 85px #f3f3f3 solid !important;
  border-left: 85px #f3f3f3 solid !important;
}
.concrete--ba-86 {
  border: 86px #f3f3f3 solid !important;
}
.concrete--bt-86 {
  border-top: 86px #f3f3f3 solid !important;
}
.concrete--br-86 {
  border-right: 86px #f3f3f3 solid !important;
}
.concrete--bl-86 {
  border-left: 86px #f3f3f3 solid !important;
}
.concrete--bb-86 {
  border-bottom: 86px #f3f3f3 solid !important;
}
.concrete--by-86 {
  border-top: 86px #f3f3f3 solid !important;
  border-bottom: 86px #f3f3f3 solid !important;
}
.concrete--bx-86 {
  border-right: 86px #f3f3f3 solid !important;
  border-left: 86px #f3f3f3 solid !important;
}
.concrete--ba-87 {
  border: 87px #f3f3f3 solid !important;
}
.concrete--bt-87 {
  border-top: 87px #f3f3f3 solid !important;
}
.concrete--br-87 {
  border-right: 87px #f3f3f3 solid !important;
}
.concrete--bl-87 {
  border-left: 87px #f3f3f3 solid !important;
}
.concrete--bb-87 {
  border-bottom: 87px #f3f3f3 solid !important;
}
.concrete--by-87 {
  border-top: 87px #f3f3f3 solid !important;
  border-bottom: 87px #f3f3f3 solid !important;
}
.concrete--bx-87 {
  border-right: 87px #f3f3f3 solid !important;
  border-left: 87px #f3f3f3 solid !important;
}
.concrete--ba-88 {
  border: 88px #f3f3f3 solid !important;
}
.concrete--bt-88 {
  border-top: 88px #f3f3f3 solid !important;
}
.concrete--br-88 {
  border-right: 88px #f3f3f3 solid !important;
}
.concrete--bl-88 {
  border-left: 88px #f3f3f3 solid !important;
}
.concrete--bb-88 {
  border-bottom: 88px #f3f3f3 solid !important;
}
.concrete--by-88 {
  border-top: 88px #f3f3f3 solid !important;
  border-bottom: 88px #f3f3f3 solid !important;
}
.concrete--bx-88 {
  border-right: 88px #f3f3f3 solid !important;
  border-left: 88px #f3f3f3 solid !important;
}
.concrete--ba-89 {
  border: 89px #f3f3f3 solid !important;
}
.concrete--bt-89 {
  border-top: 89px #f3f3f3 solid !important;
}
.concrete--br-89 {
  border-right: 89px #f3f3f3 solid !important;
}
.concrete--bl-89 {
  border-left: 89px #f3f3f3 solid !important;
}
.concrete--bb-89 {
  border-bottom: 89px #f3f3f3 solid !important;
}
.concrete--by-89 {
  border-top: 89px #f3f3f3 solid !important;
  border-bottom: 89px #f3f3f3 solid !important;
}
.concrete--bx-89 {
  border-right: 89px #f3f3f3 solid !important;
  border-left: 89px #f3f3f3 solid !important;
}
.concrete--ba-90 {
  border: 90px #f3f3f3 solid !important;
}
.concrete--bt-90 {
  border-top: 90px #f3f3f3 solid !important;
}
.concrete--br-90 {
  border-right: 90px #f3f3f3 solid !important;
}
.concrete--bl-90 {
  border-left: 90px #f3f3f3 solid !important;
}
.concrete--bb-90 {
  border-bottom: 90px #f3f3f3 solid !important;
}
.concrete--by-90 {
  border-top: 90px #f3f3f3 solid !important;
  border-bottom: 90px #f3f3f3 solid !important;
}
.concrete--bx-90 {
  border-right: 90px #f3f3f3 solid !important;
  border-left: 90px #f3f3f3 solid !important;
}
.concrete--ba-91 {
  border: 91px #f3f3f3 solid !important;
}
.concrete--bt-91 {
  border-top: 91px #f3f3f3 solid !important;
}
.concrete--br-91 {
  border-right: 91px #f3f3f3 solid !important;
}
.concrete--bl-91 {
  border-left: 91px #f3f3f3 solid !important;
}
.concrete--bb-91 {
  border-bottom: 91px #f3f3f3 solid !important;
}
.concrete--by-91 {
  border-top: 91px #f3f3f3 solid !important;
  border-bottom: 91px #f3f3f3 solid !important;
}
.concrete--bx-91 {
  border-right: 91px #f3f3f3 solid !important;
  border-left: 91px #f3f3f3 solid !important;
}
.concrete--ba-92 {
  border: 92px #f3f3f3 solid !important;
}
.concrete--bt-92 {
  border-top: 92px #f3f3f3 solid !important;
}
.concrete--br-92 {
  border-right: 92px #f3f3f3 solid !important;
}
.concrete--bl-92 {
  border-left: 92px #f3f3f3 solid !important;
}
.concrete--bb-92 {
  border-bottom: 92px #f3f3f3 solid !important;
}
.concrete--by-92 {
  border-top: 92px #f3f3f3 solid !important;
  border-bottom: 92px #f3f3f3 solid !important;
}
.concrete--bx-92 {
  border-right: 92px #f3f3f3 solid !important;
  border-left: 92px #f3f3f3 solid !important;
}
.concrete--ba-93 {
  border: 93px #f3f3f3 solid !important;
}
.concrete--bt-93 {
  border-top: 93px #f3f3f3 solid !important;
}
.concrete--br-93 {
  border-right: 93px #f3f3f3 solid !important;
}
.concrete--bl-93 {
  border-left: 93px #f3f3f3 solid !important;
}
.concrete--bb-93 {
  border-bottom: 93px #f3f3f3 solid !important;
}
.concrete--by-93 {
  border-top: 93px #f3f3f3 solid !important;
  border-bottom: 93px #f3f3f3 solid !important;
}
.concrete--bx-93 {
  border-right: 93px #f3f3f3 solid !important;
  border-left: 93px #f3f3f3 solid !important;
}
.concrete--ba-94 {
  border: 94px #f3f3f3 solid !important;
}
.concrete--bt-94 {
  border-top: 94px #f3f3f3 solid !important;
}
.concrete--br-94 {
  border-right: 94px #f3f3f3 solid !important;
}
.concrete--bl-94 {
  border-left: 94px #f3f3f3 solid !important;
}
.concrete--bb-94 {
  border-bottom: 94px #f3f3f3 solid !important;
}
.concrete--by-94 {
  border-top: 94px #f3f3f3 solid !important;
  border-bottom: 94px #f3f3f3 solid !important;
}
.concrete--bx-94 {
  border-right: 94px #f3f3f3 solid !important;
  border-left: 94px #f3f3f3 solid !important;
}
.concrete--ba-95 {
  border: 95px #f3f3f3 solid !important;
}
.concrete--bt-95 {
  border-top: 95px #f3f3f3 solid !important;
}
.concrete--br-95 {
  border-right: 95px #f3f3f3 solid !important;
}
.concrete--bl-95 {
  border-left: 95px #f3f3f3 solid !important;
}
.concrete--bb-95 {
  border-bottom: 95px #f3f3f3 solid !important;
}
.concrete--by-95 {
  border-top: 95px #f3f3f3 solid !important;
  border-bottom: 95px #f3f3f3 solid !important;
}
.concrete--bx-95 {
  border-right: 95px #f3f3f3 solid !important;
  border-left: 95px #f3f3f3 solid !important;
}
.concrete--ba-96 {
  border: 96px #f3f3f3 solid !important;
}
.concrete--bt-96 {
  border-top: 96px #f3f3f3 solid !important;
}
.concrete--br-96 {
  border-right: 96px #f3f3f3 solid !important;
}
.concrete--bl-96 {
  border-left: 96px #f3f3f3 solid !important;
}
.concrete--bb-96 {
  border-bottom: 96px #f3f3f3 solid !important;
}
.concrete--by-96 {
  border-top: 96px #f3f3f3 solid !important;
  border-bottom: 96px #f3f3f3 solid !important;
}
.concrete--bx-96 {
  border-right: 96px #f3f3f3 solid !important;
  border-left: 96px #f3f3f3 solid !important;
}
.concrete--ba-97 {
  border: 97px #f3f3f3 solid !important;
}
.concrete--bt-97 {
  border-top: 97px #f3f3f3 solid !important;
}
.concrete--br-97 {
  border-right: 97px #f3f3f3 solid !important;
}
.concrete--bl-97 {
  border-left: 97px #f3f3f3 solid !important;
}
.concrete--bb-97 {
  border-bottom: 97px #f3f3f3 solid !important;
}
.concrete--by-97 {
  border-top: 97px #f3f3f3 solid !important;
  border-bottom: 97px #f3f3f3 solid !important;
}
.concrete--bx-97 {
  border-right: 97px #f3f3f3 solid !important;
  border-left: 97px #f3f3f3 solid !important;
}
.concrete--ba-98 {
  border: 98px #f3f3f3 solid !important;
}
.concrete--bt-98 {
  border-top: 98px #f3f3f3 solid !important;
}
.concrete--br-98 {
  border-right: 98px #f3f3f3 solid !important;
}
.concrete--bl-98 {
  border-left: 98px #f3f3f3 solid !important;
}
.concrete--bb-98 {
  border-bottom: 98px #f3f3f3 solid !important;
}
.concrete--by-98 {
  border-top: 98px #f3f3f3 solid !important;
  border-bottom: 98px #f3f3f3 solid !important;
}
.concrete--bx-98 {
  border-right: 98px #f3f3f3 solid !important;
  border-left: 98px #f3f3f3 solid !important;
}
.concrete--ba-99 {
  border: 99px #f3f3f3 solid !important;
}
.concrete--bt-99 {
  border-top: 99px #f3f3f3 solid !important;
}
.concrete--br-99 {
  border-right: 99px #f3f3f3 solid !important;
}
.concrete--bl-99 {
  border-left: 99px #f3f3f3 solid !important;
}
.concrete--bb-99 {
  border-bottom: 99px #f3f3f3 solid !important;
}
.concrete--by-99 {
  border-top: 99px #f3f3f3 solid !important;
  border-bottom: 99px #f3f3f3 solid !important;
}
.concrete--bx-99 {
  border-right: 99px #f3f3f3 solid !important;
  border-left: 99px #f3f3f3 solid !important;
}
.concrete--ba-100 {
  border: 100px #f3f3f3 solid !important;
}
.concrete--bt-100 {
  border-top: 100px #f3f3f3 solid !important;
}
.concrete--br-100 {
  border-right: 100px #f3f3f3 solid !important;
}
.concrete--bl-100 {
  border-left: 100px #f3f3f3 solid !important;
}
.concrete--bb-100 {
  border-bottom: 100px #f3f3f3 solid !important;
}
.concrete--by-100 {
  border-top: 100px #f3f3f3 solid !important;
  border-bottom: 100px #f3f3f3 solid !important;
}
.concrete--bx-100 {
  border-right: 100px #f3f3f3 solid !important;
  border-left: 100px #f3f3f3 solid !important;
}
.web-orange--ba-1 {
  border: 1px #f5a800 solid !important;
}
.web-orange--bt-1 {
  border-top: 1px #f5a800 solid !important;
}
.web-orange--br-1 {
  border-right: 1px #f5a800 solid !important;
}
.web-orange--bl-1 {
  border-left: 1px #f5a800 solid !important;
}
.web-orange--bb-1 {
  border-bottom: 1px #f5a800 solid !important;
}
.web-orange--by-1 {
  border-top: 1px #f5a800 solid !important;
  border-bottom: 1px #f5a800 solid !important;
}
.web-orange--bx-1 {
  border-right: 1px #f5a800 solid !important;
  border-left: 1px #f5a800 solid !important;
}
.web-orange--ba-2 {
  border: 2px #f5a800 solid !important;
}
.web-orange--bt-2 {
  border-top: 2px #f5a800 solid !important;
}
.web-orange--br-2 {
  border-right: 2px #f5a800 solid !important;
}
.web-orange--bl-2 {
  border-left: 2px #f5a800 solid !important;
}
.web-orange--bb-2 {
  border-bottom: 2px #f5a800 solid !important;
}
.web-orange--by-2 {
  border-top: 2px #f5a800 solid !important;
  border-bottom: 2px #f5a800 solid !important;
}
.web-orange--bx-2 {
  border-right: 2px #f5a800 solid !important;
  border-left: 2px #f5a800 solid !important;
}
.web-orange--ba-3 {
  border: 3px #f5a800 solid !important;
}
.web-orange--bt-3 {
  border-top: 3px #f5a800 solid !important;
}
.web-orange--br-3 {
  border-right: 3px #f5a800 solid !important;
}
.web-orange--bl-3 {
  border-left: 3px #f5a800 solid !important;
}
.web-orange--bb-3 {
  border-bottom: 3px #f5a800 solid !important;
}
.web-orange--by-3 {
  border-top: 3px #f5a800 solid !important;
  border-bottom: 3px #f5a800 solid !important;
}
.web-orange--bx-3 {
  border-right: 3px #f5a800 solid !important;
  border-left: 3px #f5a800 solid !important;
}
.web-orange--ba-4 {
  border: 4px #f5a800 solid !important;
}
.web-orange--bt-4 {
  border-top: 4px #f5a800 solid !important;
}
.web-orange--br-4 {
  border-right: 4px #f5a800 solid !important;
}
.web-orange--bl-4 {
  border-left: 4px #f5a800 solid !important;
}
.web-orange--bb-4 {
  border-bottom: 4px #f5a800 solid !important;
}
.web-orange--by-4 {
  border-top: 4px #f5a800 solid !important;
  border-bottom: 4px #f5a800 solid !important;
}
.web-orange--bx-4 {
  border-right: 4px #f5a800 solid !important;
  border-left: 4px #f5a800 solid !important;
}
.web-orange--ba-5 {
  border: 5px #f5a800 solid !important;
}
.web-orange--bt-5 {
  border-top: 5px #f5a800 solid !important;
}
.web-orange--br-5 {
  border-right: 5px #f5a800 solid !important;
}
.web-orange--bl-5 {
  border-left: 5px #f5a800 solid !important;
}
.web-orange--bb-5 {
  border-bottom: 5px #f5a800 solid !important;
}
.web-orange--by-5 {
  border-top: 5px #f5a800 solid !important;
  border-bottom: 5px #f5a800 solid !important;
}
.web-orange--bx-5 {
  border-right: 5px #f5a800 solid !important;
  border-left: 5px #f5a800 solid !important;
}
.web-orange--ba-6 {
  border: 6px #f5a800 solid !important;
}
.web-orange--bt-6 {
  border-top: 6px #f5a800 solid !important;
}
.web-orange--br-6 {
  border-right: 6px #f5a800 solid !important;
}
.web-orange--bl-6 {
  border-left: 6px #f5a800 solid !important;
}
.web-orange--bb-6 {
  border-bottom: 6px #f5a800 solid !important;
}
.web-orange--by-6 {
  border-top: 6px #f5a800 solid !important;
  border-bottom: 6px #f5a800 solid !important;
}
.web-orange--bx-6 {
  border-right: 6px #f5a800 solid !important;
  border-left: 6px #f5a800 solid !important;
}
.web-orange--ba-7 {
  border: 7px #f5a800 solid !important;
}
.web-orange--bt-7 {
  border-top: 7px #f5a800 solid !important;
}
.web-orange--br-7 {
  border-right: 7px #f5a800 solid !important;
}
.web-orange--bl-7 {
  border-left: 7px #f5a800 solid !important;
}
.web-orange--bb-7 {
  border-bottom: 7px #f5a800 solid !important;
}
.web-orange--by-7 {
  border-top: 7px #f5a800 solid !important;
  border-bottom: 7px #f5a800 solid !important;
}
.web-orange--bx-7 {
  border-right: 7px #f5a800 solid !important;
  border-left: 7px #f5a800 solid !important;
}
.web-orange--ba-8 {
  border: 8px #f5a800 solid !important;
}
.web-orange--bt-8 {
  border-top: 8px #f5a800 solid !important;
}
.web-orange--br-8 {
  border-right: 8px #f5a800 solid !important;
}
.web-orange--bl-8 {
  border-left: 8px #f5a800 solid !important;
}
.web-orange--bb-8 {
  border-bottom: 8px #f5a800 solid !important;
}
.web-orange--by-8 {
  border-top: 8px #f5a800 solid !important;
  border-bottom: 8px #f5a800 solid !important;
}
.web-orange--bx-8 {
  border-right: 8px #f5a800 solid !important;
  border-left: 8px #f5a800 solid !important;
}
.web-orange--ba-9 {
  border: 9px #f5a800 solid !important;
}
.web-orange--bt-9 {
  border-top: 9px #f5a800 solid !important;
}
.web-orange--br-9 {
  border-right: 9px #f5a800 solid !important;
}
.web-orange--bl-9 {
  border-left: 9px #f5a800 solid !important;
}
.web-orange--bb-9 {
  border-bottom: 9px #f5a800 solid !important;
}
.web-orange--by-9 {
  border-top: 9px #f5a800 solid !important;
  border-bottom: 9px #f5a800 solid !important;
}
.web-orange--bx-9 {
  border-right: 9px #f5a800 solid !important;
  border-left: 9px #f5a800 solid !important;
}
.web-orange--ba-10 {
  border: 10px #f5a800 solid !important;
}
.web-orange--bt-10 {
  border-top: 10px #f5a800 solid !important;
}
.web-orange--br-10 {
  border-right: 10px #f5a800 solid !important;
}
.web-orange--bl-10 {
  border-left: 10px #f5a800 solid !important;
}
.web-orange--bb-10 {
  border-bottom: 10px #f5a800 solid !important;
}
.web-orange--by-10 {
  border-top: 10px #f5a800 solid !important;
  border-bottom: 10px #f5a800 solid !important;
}
.web-orange--bx-10 {
  border-right: 10px #f5a800 solid !important;
  border-left: 10px #f5a800 solid !important;
}
.web-orange--ba-11 {
  border: 11px #f5a800 solid !important;
}
.web-orange--bt-11 {
  border-top: 11px #f5a800 solid !important;
}
.web-orange--br-11 {
  border-right: 11px #f5a800 solid !important;
}
.web-orange--bl-11 {
  border-left: 11px #f5a800 solid !important;
}
.web-orange--bb-11 {
  border-bottom: 11px #f5a800 solid !important;
}
.web-orange--by-11 {
  border-top: 11px #f5a800 solid !important;
  border-bottom: 11px #f5a800 solid !important;
}
.web-orange--bx-11 {
  border-right: 11px #f5a800 solid !important;
  border-left: 11px #f5a800 solid !important;
}
.web-orange--ba-12 {
  border: 12px #f5a800 solid !important;
}
.web-orange--bt-12 {
  border-top: 12px #f5a800 solid !important;
}
.web-orange--br-12 {
  border-right: 12px #f5a800 solid !important;
}
.web-orange--bl-12 {
  border-left: 12px #f5a800 solid !important;
}
.web-orange--bb-12 {
  border-bottom: 12px #f5a800 solid !important;
}
.web-orange--by-12 {
  border-top: 12px #f5a800 solid !important;
  border-bottom: 12px #f5a800 solid !important;
}
.web-orange--bx-12 {
  border-right: 12px #f5a800 solid !important;
  border-left: 12px #f5a800 solid !important;
}
.web-orange--ba-13 {
  border: 13px #f5a800 solid !important;
}
.web-orange--bt-13 {
  border-top: 13px #f5a800 solid !important;
}
.web-orange--br-13 {
  border-right: 13px #f5a800 solid !important;
}
.web-orange--bl-13 {
  border-left: 13px #f5a800 solid !important;
}
.web-orange--bb-13 {
  border-bottom: 13px #f5a800 solid !important;
}
.web-orange--by-13 {
  border-top: 13px #f5a800 solid !important;
  border-bottom: 13px #f5a800 solid !important;
}
.web-orange--bx-13 {
  border-right: 13px #f5a800 solid !important;
  border-left: 13px #f5a800 solid !important;
}
.web-orange--ba-14 {
  border: 14px #f5a800 solid !important;
}
.web-orange--bt-14 {
  border-top: 14px #f5a800 solid !important;
}
.web-orange--br-14 {
  border-right: 14px #f5a800 solid !important;
}
.web-orange--bl-14 {
  border-left: 14px #f5a800 solid !important;
}
.web-orange--bb-14 {
  border-bottom: 14px #f5a800 solid !important;
}
.web-orange--by-14 {
  border-top: 14px #f5a800 solid !important;
  border-bottom: 14px #f5a800 solid !important;
}
.web-orange--bx-14 {
  border-right: 14px #f5a800 solid !important;
  border-left: 14px #f5a800 solid !important;
}
.web-orange--ba-15 {
  border: 15px #f5a800 solid !important;
}
.web-orange--bt-15 {
  border-top: 15px #f5a800 solid !important;
}
.web-orange--br-15 {
  border-right: 15px #f5a800 solid !important;
}
.web-orange--bl-15 {
  border-left: 15px #f5a800 solid !important;
}
.web-orange--bb-15 {
  border-bottom: 15px #f5a800 solid !important;
}
.web-orange--by-15 {
  border-top: 15px #f5a800 solid !important;
  border-bottom: 15px #f5a800 solid !important;
}
.web-orange--bx-15 {
  border-right: 15px #f5a800 solid !important;
  border-left: 15px #f5a800 solid !important;
}
.web-orange--ba-16 {
  border: 16px #f5a800 solid !important;
}
.web-orange--bt-16 {
  border-top: 16px #f5a800 solid !important;
}
.web-orange--br-16 {
  border-right: 16px #f5a800 solid !important;
}
.web-orange--bl-16 {
  border-left: 16px #f5a800 solid !important;
}
.web-orange--bb-16 {
  border-bottom: 16px #f5a800 solid !important;
}
.web-orange--by-16 {
  border-top: 16px #f5a800 solid !important;
  border-bottom: 16px #f5a800 solid !important;
}
.web-orange--bx-16 {
  border-right: 16px #f5a800 solid !important;
  border-left: 16px #f5a800 solid !important;
}
.web-orange--ba-17 {
  border: 17px #f5a800 solid !important;
}
.web-orange--bt-17 {
  border-top: 17px #f5a800 solid !important;
}
.web-orange--br-17 {
  border-right: 17px #f5a800 solid !important;
}
.web-orange--bl-17 {
  border-left: 17px #f5a800 solid !important;
}
.web-orange--bb-17 {
  border-bottom: 17px #f5a800 solid !important;
}
.web-orange--by-17 {
  border-top: 17px #f5a800 solid !important;
  border-bottom: 17px #f5a800 solid !important;
}
.web-orange--bx-17 {
  border-right: 17px #f5a800 solid !important;
  border-left: 17px #f5a800 solid !important;
}
.web-orange--ba-18 {
  border: 18px #f5a800 solid !important;
}
.web-orange--bt-18 {
  border-top: 18px #f5a800 solid !important;
}
.web-orange--br-18 {
  border-right: 18px #f5a800 solid !important;
}
.web-orange--bl-18 {
  border-left: 18px #f5a800 solid !important;
}
.web-orange--bb-18 {
  border-bottom: 18px #f5a800 solid !important;
}
.web-orange--by-18 {
  border-top: 18px #f5a800 solid !important;
  border-bottom: 18px #f5a800 solid !important;
}
.web-orange--bx-18 {
  border-right: 18px #f5a800 solid !important;
  border-left: 18px #f5a800 solid !important;
}
.web-orange--ba-19 {
  border: 19px #f5a800 solid !important;
}
.web-orange--bt-19 {
  border-top: 19px #f5a800 solid !important;
}
.web-orange--br-19 {
  border-right: 19px #f5a800 solid !important;
}
.web-orange--bl-19 {
  border-left: 19px #f5a800 solid !important;
}
.web-orange--bb-19 {
  border-bottom: 19px #f5a800 solid !important;
}
.web-orange--by-19 {
  border-top: 19px #f5a800 solid !important;
  border-bottom: 19px #f5a800 solid !important;
}
.web-orange--bx-19 {
  border-right: 19px #f5a800 solid !important;
  border-left: 19px #f5a800 solid !important;
}
.web-orange--ba-20 {
  border: 20px #f5a800 solid !important;
}
.web-orange--bt-20 {
  border-top: 20px #f5a800 solid !important;
}
.web-orange--br-20 {
  border-right: 20px #f5a800 solid !important;
}
.web-orange--bl-20 {
  border-left: 20px #f5a800 solid !important;
}
.web-orange--bb-20 {
  border-bottom: 20px #f5a800 solid !important;
}
.web-orange--by-20 {
  border-top: 20px #f5a800 solid !important;
  border-bottom: 20px #f5a800 solid !important;
}
.web-orange--bx-20 {
  border-right: 20px #f5a800 solid !important;
  border-left: 20px #f5a800 solid !important;
}
.web-orange--ba-21 {
  border: 21px #f5a800 solid !important;
}
.web-orange--bt-21 {
  border-top: 21px #f5a800 solid !important;
}
.web-orange--br-21 {
  border-right: 21px #f5a800 solid !important;
}
.web-orange--bl-21 {
  border-left: 21px #f5a800 solid !important;
}
.web-orange--bb-21 {
  border-bottom: 21px #f5a800 solid !important;
}
.web-orange--by-21 {
  border-top: 21px #f5a800 solid !important;
  border-bottom: 21px #f5a800 solid !important;
}
.web-orange--bx-21 {
  border-right: 21px #f5a800 solid !important;
  border-left: 21px #f5a800 solid !important;
}
.web-orange--ba-22 {
  border: 22px #f5a800 solid !important;
}
.web-orange--bt-22 {
  border-top: 22px #f5a800 solid !important;
}
.web-orange--br-22 {
  border-right: 22px #f5a800 solid !important;
}
.web-orange--bl-22 {
  border-left: 22px #f5a800 solid !important;
}
.web-orange--bb-22 {
  border-bottom: 22px #f5a800 solid !important;
}
.web-orange--by-22 {
  border-top: 22px #f5a800 solid !important;
  border-bottom: 22px #f5a800 solid !important;
}
.web-orange--bx-22 {
  border-right: 22px #f5a800 solid !important;
  border-left: 22px #f5a800 solid !important;
}
.web-orange--ba-23 {
  border: 23px #f5a800 solid !important;
}
.web-orange--bt-23 {
  border-top: 23px #f5a800 solid !important;
}
.web-orange--br-23 {
  border-right: 23px #f5a800 solid !important;
}
.web-orange--bl-23 {
  border-left: 23px #f5a800 solid !important;
}
.web-orange--bb-23 {
  border-bottom: 23px #f5a800 solid !important;
}
.web-orange--by-23 {
  border-top: 23px #f5a800 solid !important;
  border-bottom: 23px #f5a800 solid !important;
}
.web-orange--bx-23 {
  border-right: 23px #f5a800 solid !important;
  border-left: 23px #f5a800 solid !important;
}
.web-orange--ba-24 {
  border: 24px #f5a800 solid !important;
}
.web-orange--bt-24 {
  border-top: 24px #f5a800 solid !important;
}
.web-orange--br-24 {
  border-right: 24px #f5a800 solid !important;
}
.web-orange--bl-24 {
  border-left: 24px #f5a800 solid !important;
}
.web-orange--bb-24 {
  border-bottom: 24px #f5a800 solid !important;
}
.web-orange--by-24 {
  border-top: 24px #f5a800 solid !important;
  border-bottom: 24px #f5a800 solid !important;
}
.web-orange--bx-24 {
  border-right: 24px #f5a800 solid !important;
  border-left: 24px #f5a800 solid !important;
}
.web-orange--ba-25 {
  border: 25px #f5a800 solid !important;
}
.web-orange--bt-25 {
  border-top: 25px #f5a800 solid !important;
}
.web-orange--br-25 {
  border-right: 25px #f5a800 solid !important;
}
.web-orange--bl-25 {
  border-left: 25px #f5a800 solid !important;
}
.web-orange--bb-25 {
  border-bottom: 25px #f5a800 solid !important;
}
.web-orange--by-25 {
  border-top: 25px #f5a800 solid !important;
  border-bottom: 25px #f5a800 solid !important;
}
.web-orange--bx-25 {
  border-right: 25px #f5a800 solid !important;
  border-left: 25px #f5a800 solid !important;
}
.web-orange--ba-26 {
  border: 26px #f5a800 solid !important;
}
.web-orange--bt-26 {
  border-top: 26px #f5a800 solid !important;
}
.web-orange--br-26 {
  border-right: 26px #f5a800 solid !important;
}
.web-orange--bl-26 {
  border-left: 26px #f5a800 solid !important;
}
.web-orange--bb-26 {
  border-bottom: 26px #f5a800 solid !important;
}
.web-orange--by-26 {
  border-top: 26px #f5a800 solid !important;
  border-bottom: 26px #f5a800 solid !important;
}
.web-orange--bx-26 {
  border-right: 26px #f5a800 solid !important;
  border-left: 26px #f5a800 solid !important;
}
.web-orange--ba-27 {
  border: 27px #f5a800 solid !important;
}
.web-orange--bt-27 {
  border-top: 27px #f5a800 solid !important;
}
.web-orange--br-27 {
  border-right: 27px #f5a800 solid !important;
}
.web-orange--bl-27 {
  border-left: 27px #f5a800 solid !important;
}
.web-orange--bb-27 {
  border-bottom: 27px #f5a800 solid !important;
}
.web-orange--by-27 {
  border-top: 27px #f5a800 solid !important;
  border-bottom: 27px #f5a800 solid !important;
}
.web-orange--bx-27 {
  border-right: 27px #f5a800 solid !important;
  border-left: 27px #f5a800 solid !important;
}
.web-orange--ba-28 {
  border: 28px #f5a800 solid !important;
}
.web-orange--bt-28 {
  border-top: 28px #f5a800 solid !important;
}
.web-orange--br-28 {
  border-right: 28px #f5a800 solid !important;
}
.web-orange--bl-28 {
  border-left: 28px #f5a800 solid !important;
}
.web-orange--bb-28 {
  border-bottom: 28px #f5a800 solid !important;
}
.web-orange--by-28 {
  border-top: 28px #f5a800 solid !important;
  border-bottom: 28px #f5a800 solid !important;
}
.web-orange--bx-28 {
  border-right: 28px #f5a800 solid !important;
  border-left: 28px #f5a800 solid !important;
}
.web-orange--ba-29 {
  border: 29px #f5a800 solid !important;
}
.web-orange--bt-29 {
  border-top: 29px #f5a800 solid !important;
}
.web-orange--br-29 {
  border-right: 29px #f5a800 solid !important;
}
.web-orange--bl-29 {
  border-left: 29px #f5a800 solid !important;
}
.web-orange--bb-29 {
  border-bottom: 29px #f5a800 solid !important;
}
.web-orange--by-29 {
  border-top: 29px #f5a800 solid !important;
  border-bottom: 29px #f5a800 solid !important;
}
.web-orange--bx-29 {
  border-right: 29px #f5a800 solid !important;
  border-left: 29px #f5a800 solid !important;
}
.web-orange--ba-30 {
  border: 30px #f5a800 solid !important;
}
.web-orange--bt-30 {
  border-top: 30px #f5a800 solid !important;
}
.web-orange--br-30 {
  border-right: 30px #f5a800 solid !important;
}
.web-orange--bl-30 {
  border-left: 30px #f5a800 solid !important;
}
.web-orange--bb-30 {
  border-bottom: 30px #f5a800 solid !important;
}
.web-orange--by-30 {
  border-top: 30px #f5a800 solid !important;
  border-bottom: 30px #f5a800 solid !important;
}
.web-orange--bx-30 {
  border-right: 30px #f5a800 solid !important;
  border-left: 30px #f5a800 solid !important;
}
.web-orange--ba-31 {
  border: 31px #f5a800 solid !important;
}
.web-orange--bt-31 {
  border-top: 31px #f5a800 solid !important;
}
.web-orange--br-31 {
  border-right: 31px #f5a800 solid !important;
}
.web-orange--bl-31 {
  border-left: 31px #f5a800 solid !important;
}
.web-orange--bb-31 {
  border-bottom: 31px #f5a800 solid !important;
}
.web-orange--by-31 {
  border-top: 31px #f5a800 solid !important;
  border-bottom: 31px #f5a800 solid !important;
}
.web-orange--bx-31 {
  border-right: 31px #f5a800 solid !important;
  border-left: 31px #f5a800 solid !important;
}
.web-orange--ba-32 {
  border: 32px #f5a800 solid !important;
}
.web-orange--bt-32 {
  border-top: 32px #f5a800 solid !important;
}
.web-orange--br-32 {
  border-right: 32px #f5a800 solid !important;
}
.web-orange--bl-32 {
  border-left: 32px #f5a800 solid !important;
}
.web-orange--bb-32 {
  border-bottom: 32px #f5a800 solid !important;
}
.web-orange--by-32 {
  border-top: 32px #f5a800 solid !important;
  border-bottom: 32px #f5a800 solid !important;
}
.web-orange--bx-32 {
  border-right: 32px #f5a800 solid !important;
  border-left: 32px #f5a800 solid !important;
}
.web-orange--ba-33 {
  border: 33px #f5a800 solid !important;
}
.web-orange--bt-33 {
  border-top: 33px #f5a800 solid !important;
}
.web-orange--br-33 {
  border-right: 33px #f5a800 solid !important;
}
.web-orange--bl-33 {
  border-left: 33px #f5a800 solid !important;
}
.web-orange--bb-33 {
  border-bottom: 33px #f5a800 solid !important;
}
.web-orange--by-33 {
  border-top: 33px #f5a800 solid !important;
  border-bottom: 33px #f5a800 solid !important;
}
.web-orange--bx-33 {
  border-right: 33px #f5a800 solid !important;
  border-left: 33px #f5a800 solid !important;
}
.web-orange--ba-34 {
  border: 34px #f5a800 solid !important;
}
.web-orange--bt-34 {
  border-top: 34px #f5a800 solid !important;
}
.web-orange--br-34 {
  border-right: 34px #f5a800 solid !important;
}
.web-orange--bl-34 {
  border-left: 34px #f5a800 solid !important;
}
.web-orange--bb-34 {
  border-bottom: 34px #f5a800 solid !important;
}
.web-orange--by-34 {
  border-top: 34px #f5a800 solid !important;
  border-bottom: 34px #f5a800 solid !important;
}
.web-orange--bx-34 {
  border-right: 34px #f5a800 solid !important;
  border-left: 34px #f5a800 solid !important;
}
.web-orange--ba-35 {
  border: 35px #f5a800 solid !important;
}
.web-orange--bt-35 {
  border-top: 35px #f5a800 solid !important;
}
.web-orange--br-35 {
  border-right: 35px #f5a800 solid !important;
}
.web-orange--bl-35 {
  border-left: 35px #f5a800 solid !important;
}
.web-orange--bb-35 {
  border-bottom: 35px #f5a800 solid !important;
}
.web-orange--by-35 {
  border-top: 35px #f5a800 solid !important;
  border-bottom: 35px #f5a800 solid !important;
}
.web-orange--bx-35 {
  border-right: 35px #f5a800 solid !important;
  border-left: 35px #f5a800 solid !important;
}
.web-orange--ba-36 {
  border: 36px #f5a800 solid !important;
}
.web-orange--bt-36 {
  border-top: 36px #f5a800 solid !important;
}
.web-orange--br-36 {
  border-right: 36px #f5a800 solid !important;
}
.web-orange--bl-36 {
  border-left: 36px #f5a800 solid !important;
}
.web-orange--bb-36 {
  border-bottom: 36px #f5a800 solid !important;
}
.web-orange--by-36 {
  border-top: 36px #f5a800 solid !important;
  border-bottom: 36px #f5a800 solid !important;
}
.web-orange--bx-36 {
  border-right: 36px #f5a800 solid !important;
  border-left: 36px #f5a800 solid !important;
}
.web-orange--ba-37 {
  border: 37px #f5a800 solid !important;
}
.web-orange--bt-37 {
  border-top: 37px #f5a800 solid !important;
}
.web-orange--br-37 {
  border-right: 37px #f5a800 solid !important;
}
.web-orange--bl-37 {
  border-left: 37px #f5a800 solid !important;
}
.web-orange--bb-37 {
  border-bottom: 37px #f5a800 solid !important;
}
.web-orange--by-37 {
  border-top: 37px #f5a800 solid !important;
  border-bottom: 37px #f5a800 solid !important;
}
.web-orange--bx-37 {
  border-right: 37px #f5a800 solid !important;
  border-left: 37px #f5a800 solid !important;
}
.web-orange--ba-38 {
  border: 38px #f5a800 solid !important;
}
.web-orange--bt-38 {
  border-top: 38px #f5a800 solid !important;
}
.web-orange--br-38 {
  border-right: 38px #f5a800 solid !important;
}
.web-orange--bl-38 {
  border-left: 38px #f5a800 solid !important;
}
.web-orange--bb-38 {
  border-bottom: 38px #f5a800 solid !important;
}
.web-orange--by-38 {
  border-top: 38px #f5a800 solid !important;
  border-bottom: 38px #f5a800 solid !important;
}
.web-orange--bx-38 {
  border-right: 38px #f5a800 solid !important;
  border-left: 38px #f5a800 solid !important;
}
.web-orange--ba-39 {
  border: 39px #f5a800 solid !important;
}
.web-orange--bt-39 {
  border-top: 39px #f5a800 solid !important;
}
.web-orange--br-39 {
  border-right: 39px #f5a800 solid !important;
}
.web-orange--bl-39 {
  border-left: 39px #f5a800 solid !important;
}
.web-orange--bb-39 {
  border-bottom: 39px #f5a800 solid !important;
}
.web-orange--by-39 {
  border-top: 39px #f5a800 solid !important;
  border-bottom: 39px #f5a800 solid !important;
}
.web-orange--bx-39 {
  border-right: 39px #f5a800 solid !important;
  border-left: 39px #f5a800 solid !important;
}
.web-orange--ba-40 {
  border: 40px #f5a800 solid !important;
}
.web-orange--bt-40 {
  border-top: 40px #f5a800 solid !important;
}
.web-orange--br-40 {
  border-right: 40px #f5a800 solid !important;
}
.web-orange--bl-40 {
  border-left: 40px #f5a800 solid !important;
}
.web-orange--bb-40 {
  border-bottom: 40px #f5a800 solid !important;
}
.web-orange--by-40 {
  border-top: 40px #f5a800 solid !important;
  border-bottom: 40px #f5a800 solid !important;
}
.web-orange--bx-40 {
  border-right: 40px #f5a800 solid !important;
  border-left: 40px #f5a800 solid !important;
}
.web-orange--ba-41 {
  border: 41px #f5a800 solid !important;
}
.web-orange--bt-41 {
  border-top: 41px #f5a800 solid !important;
}
.web-orange--br-41 {
  border-right: 41px #f5a800 solid !important;
}
.web-orange--bl-41 {
  border-left: 41px #f5a800 solid !important;
}
.web-orange--bb-41 {
  border-bottom: 41px #f5a800 solid !important;
}
.web-orange--by-41 {
  border-top: 41px #f5a800 solid !important;
  border-bottom: 41px #f5a800 solid !important;
}
.web-orange--bx-41 {
  border-right: 41px #f5a800 solid !important;
  border-left: 41px #f5a800 solid !important;
}
.web-orange--ba-42 {
  border: 42px #f5a800 solid !important;
}
.web-orange--bt-42 {
  border-top: 42px #f5a800 solid !important;
}
.web-orange--br-42 {
  border-right: 42px #f5a800 solid !important;
}
.web-orange--bl-42 {
  border-left: 42px #f5a800 solid !important;
}
.web-orange--bb-42 {
  border-bottom: 42px #f5a800 solid !important;
}
.web-orange--by-42 {
  border-top: 42px #f5a800 solid !important;
  border-bottom: 42px #f5a800 solid !important;
}
.web-orange--bx-42 {
  border-right: 42px #f5a800 solid !important;
  border-left: 42px #f5a800 solid !important;
}
.web-orange--ba-43 {
  border: 43px #f5a800 solid !important;
}
.web-orange--bt-43 {
  border-top: 43px #f5a800 solid !important;
}
.web-orange--br-43 {
  border-right: 43px #f5a800 solid !important;
}
.web-orange--bl-43 {
  border-left: 43px #f5a800 solid !important;
}
.web-orange--bb-43 {
  border-bottom: 43px #f5a800 solid !important;
}
.web-orange--by-43 {
  border-top: 43px #f5a800 solid !important;
  border-bottom: 43px #f5a800 solid !important;
}
.web-orange--bx-43 {
  border-right: 43px #f5a800 solid !important;
  border-left: 43px #f5a800 solid !important;
}
.web-orange--ba-44 {
  border: 44px #f5a800 solid !important;
}
.web-orange--bt-44 {
  border-top: 44px #f5a800 solid !important;
}
.web-orange--br-44 {
  border-right: 44px #f5a800 solid !important;
}
.web-orange--bl-44 {
  border-left: 44px #f5a800 solid !important;
}
.web-orange--bb-44 {
  border-bottom: 44px #f5a800 solid !important;
}
.web-orange--by-44 {
  border-top: 44px #f5a800 solid !important;
  border-bottom: 44px #f5a800 solid !important;
}
.web-orange--bx-44 {
  border-right: 44px #f5a800 solid !important;
  border-left: 44px #f5a800 solid !important;
}
.web-orange--ba-45 {
  border: 45px #f5a800 solid !important;
}
.web-orange--bt-45 {
  border-top: 45px #f5a800 solid !important;
}
.web-orange--br-45 {
  border-right: 45px #f5a800 solid !important;
}
.web-orange--bl-45 {
  border-left: 45px #f5a800 solid !important;
}
.web-orange--bb-45 {
  border-bottom: 45px #f5a800 solid !important;
}
.web-orange--by-45 {
  border-top: 45px #f5a800 solid !important;
  border-bottom: 45px #f5a800 solid !important;
}
.web-orange--bx-45 {
  border-right: 45px #f5a800 solid !important;
  border-left: 45px #f5a800 solid !important;
}
.web-orange--ba-46 {
  border: 46px #f5a800 solid !important;
}
.web-orange--bt-46 {
  border-top: 46px #f5a800 solid !important;
}
.web-orange--br-46 {
  border-right: 46px #f5a800 solid !important;
}
.web-orange--bl-46 {
  border-left: 46px #f5a800 solid !important;
}
.web-orange--bb-46 {
  border-bottom: 46px #f5a800 solid !important;
}
.web-orange--by-46 {
  border-top: 46px #f5a800 solid !important;
  border-bottom: 46px #f5a800 solid !important;
}
.web-orange--bx-46 {
  border-right: 46px #f5a800 solid !important;
  border-left: 46px #f5a800 solid !important;
}
.web-orange--ba-47 {
  border: 47px #f5a800 solid !important;
}
.web-orange--bt-47 {
  border-top: 47px #f5a800 solid !important;
}
.web-orange--br-47 {
  border-right: 47px #f5a800 solid !important;
}
.web-orange--bl-47 {
  border-left: 47px #f5a800 solid !important;
}
.web-orange--bb-47 {
  border-bottom: 47px #f5a800 solid !important;
}
.web-orange--by-47 {
  border-top: 47px #f5a800 solid !important;
  border-bottom: 47px #f5a800 solid !important;
}
.web-orange--bx-47 {
  border-right: 47px #f5a800 solid !important;
  border-left: 47px #f5a800 solid !important;
}
.web-orange--ba-48 {
  border: 48px #f5a800 solid !important;
}
.web-orange--bt-48 {
  border-top: 48px #f5a800 solid !important;
}
.web-orange--br-48 {
  border-right: 48px #f5a800 solid !important;
}
.web-orange--bl-48 {
  border-left: 48px #f5a800 solid !important;
}
.web-orange--bb-48 {
  border-bottom: 48px #f5a800 solid !important;
}
.web-orange--by-48 {
  border-top: 48px #f5a800 solid !important;
  border-bottom: 48px #f5a800 solid !important;
}
.web-orange--bx-48 {
  border-right: 48px #f5a800 solid !important;
  border-left: 48px #f5a800 solid !important;
}
.web-orange--ba-49 {
  border: 49px #f5a800 solid !important;
}
.web-orange--bt-49 {
  border-top: 49px #f5a800 solid !important;
}
.web-orange--br-49 {
  border-right: 49px #f5a800 solid !important;
}
.web-orange--bl-49 {
  border-left: 49px #f5a800 solid !important;
}
.web-orange--bb-49 {
  border-bottom: 49px #f5a800 solid !important;
}
.web-orange--by-49 {
  border-top: 49px #f5a800 solid !important;
  border-bottom: 49px #f5a800 solid !important;
}
.web-orange--bx-49 {
  border-right: 49px #f5a800 solid !important;
  border-left: 49px #f5a800 solid !important;
}
.web-orange--ba-50 {
  border: 50px #f5a800 solid !important;
}
.web-orange--bt-50 {
  border-top: 50px #f5a800 solid !important;
}
.web-orange--br-50 {
  border-right: 50px #f5a800 solid !important;
}
.web-orange--bl-50 {
  border-left: 50px #f5a800 solid !important;
}
.web-orange--bb-50 {
  border-bottom: 50px #f5a800 solid !important;
}
.web-orange--by-50 {
  border-top: 50px #f5a800 solid !important;
  border-bottom: 50px #f5a800 solid !important;
}
.web-orange--bx-50 {
  border-right: 50px #f5a800 solid !important;
  border-left: 50px #f5a800 solid !important;
}
.web-orange--ba-51 {
  border: 51px #f5a800 solid !important;
}
.web-orange--bt-51 {
  border-top: 51px #f5a800 solid !important;
}
.web-orange--br-51 {
  border-right: 51px #f5a800 solid !important;
}
.web-orange--bl-51 {
  border-left: 51px #f5a800 solid !important;
}
.web-orange--bb-51 {
  border-bottom: 51px #f5a800 solid !important;
}
.web-orange--by-51 {
  border-top: 51px #f5a800 solid !important;
  border-bottom: 51px #f5a800 solid !important;
}
.web-orange--bx-51 {
  border-right: 51px #f5a800 solid !important;
  border-left: 51px #f5a800 solid !important;
}
.web-orange--ba-52 {
  border: 52px #f5a800 solid !important;
}
.web-orange--bt-52 {
  border-top: 52px #f5a800 solid !important;
}
.web-orange--br-52 {
  border-right: 52px #f5a800 solid !important;
}
.web-orange--bl-52 {
  border-left: 52px #f5a800 solid !important;
}
.web-orange--bb-52 {
  border-bottom: 52px #f5a800 solid !important;
}
.web-orange--by-52 {
  border-top: 52px #f5a800 solid !important;
  border-bottom: 52px #f5a800 solid !important;
}
.web-orange--bx-52 {
  border-right: 52px #f5a800 solid !important;
  border-left: 52px #f5a800 solid !important;
}
.web-orange--ba-53 {
  border: 53px #f5a800 solid !important;
}
.web-orange--bt-53 {
  border-top: 53px #f5a800 solid !important;
}
.web-orange--br-53 {
  border-right: 53px #f5a800 solid !important;
}
.web-orange--bl-53 {
  border-left: 53px #f5a800 solid !important;
}
.web-orange--bb-53 {
  border-bottom: 53px #f5a800 solid !important;
}
.web-orange--by-53 {
  border-top: 53px #f5a800 solid !important;
  border-bottom: 53px #f5a800 solid !important;
}
.web-orange--bx-53 {
  border-right: 53px #f5a800 solid !important;
  border-left: 53px #f5a800 solid !important;
}
.web-orange--ba-54 {
  border: 54px #f5a800 solid !important;
}
.web-orange--bt-54 {
  border-top: 54px #f5a800 solid !important;
}
.web-orange--br-54 {
  border-right: 54px #f5a800 solid !important;
}
.web-orange--bl-54 {
  border-left: 54px #f5a800 solid !important;
}
.web-orange--bb-54 {
  border-bottom: 54px #f5a800 solid !important;
}
.web-orange--by-54 {
  border-top: 54px #f5a800 solid !important;
  border-bottom: 54px #f5a800 solid !important;
}
.web-orange--bx-54 {
  border-right: 54px #f5a800 solid !important;
  border-left: 54px #f5a800 solid !important;
}
.web-orange--ba-55 {
  border: 55px #f5a800 solid !important;
}
.web-orange--bt-55 {
  border-top: 55px #f5a800 solid !important;
}
.web-orange--br-55 {
  border-right: 55px #f5a800 solid !important;
}
.web-orange--bl-55 {
  border-left: 55px #f5a800 solid !important;
}
.web-orange--bb-55 {
  border-bottom: 55px #f5a800 solid !important;
}
.web-orange--by-55 {
  border-top: 55px #f5a800 solid !important;
  border-bottom: 55px #f5a800 solid !important;
}
.web-orange--bx-55 {
  border-right: 55px #f5a800 solid !important;
  border-left: 55px #f5a800 solid !important;
}
.web-orange--ba-56 {
  border: 56px #f5a800 solid !important;
}
.web-orange--bt-56 {
  border-top: 56px #f5a800 solid !important;
}
.web-orange--br-56 {
  border-right: 56px #f5a800 solid !important;
}
.web-orange--bl-56 {
  border-left: 56px #f5a800 solid !important;
}
.web-orange--bb-56 {
  border-bottom: 56px #f5a800 solid !important;
}
.web-orange--by-56 {
  border-top: 56px #f5a800 solid !important;
  border-bottom: 56px #f5a800 solid !important;
}
.web-orange--bx-56 {
  border-right: 56px #f5a800 solid !important;
  border-left: 56px #f5a800 solid !important;
}
.web-orange--ba-57 {
  border: 57px #f5a800 solid !important;
}
.web-orange--bt-57 {
  border-top: 57px #f5a800 solid !important;
}
.web-orange--br-57 {
  border-right: 57px #f5a800 solid !important;
}
.web-orange--bl-57 {
  border-left: 57px #f5a800 solid !important;
}
.web-orange--bb-57 {
  border-bottom: 57px #f5a800 solid !important;
}
.web-orange--by-57 {
  border-top: 57px #f5a800 solid !important;
  border-bottom: 57px #f5a800 solid !important;
}
.web-orange--bx-57 {
  border-right: 57px #f5a800 solid !important;
  border-left: 57px #f5a800 solid !important;
}
.web-orange--ba-58 {
  border: 58px #f5a800 solid !important;
}
.web-orange--bt-58 {
  border-top: 58px #f5a800 solid !important;
}
.web-orange--br-58 {
  border-right: 58px #f5a800 solid !important;
}
.web-orange--bl-58 {
  border-left: 58px #f5a800 solid !important;
}
.web-orange--bb-58 {
  border-bottom: 58px #f5a800 solid !important;
}
.web-orange--by-58 {
  border-top: 58px #f5a800 solid !important;
  border-bottom: 58px #f5a800 solid !important;
}
.web-orange--bx-58 {
  border-right: 58px #f5a800 solid !important;
  border-left: 58px #f5a800 solid !important;
}
.web-orange--ba-59 {
  border: 59px #f5a800 solid !important;
}
.web-orange--bt-59 {
  border-top: 59px #f5a800 solid !important;
}
.web-orange--br-59 {
  border-right: 59px #f5a800 solid !important;
}
.web-orange--bl-59 {
  border-left: 59px #f5a800 solid !important;
}
.web-orange--bb-59 {
  border-bottom: 59px #f5a800 solid !important;
}
.web-orange--by-59 {
  border-top: 59px #f5a800 solid !important;
  border-bottom: 59px #f5a800 solid !important;
}
.web-orange--bx-59 {
  border-right: 59px #f5a800 solid !important;
  border-left: 59px #f5a800 solid !important;
}
.web-orange--ba-60 {
  border: 60px #f5a800 solid !important;
}
.web-orange--bt-60 {
  border-top: 60px #f5a800 solid !important;
}
.web-orange--br-60 {
  border-right: 60px #f5a800 solid !important;
}
.web-orange--bl-60 {
  border-left: 60px #f5a800 solid !important;
}
.web-orange--bb-60 {
  border-bottom: 60px #f5a800 solid !important;
}
.web-orange--by-60 {
  border-top: 60px #f5a800 solid !important;
  border-bottom: 60px #f5a800 solid !important;
}
.web-orange--bx-60 {
  border-right: 60px #f5a800 solid !important;
  border-left: 60px #f5a800 solid !important;
}
.web-orange--ba-61 {
  border: 61px #f5a800 solid !important;
}
.web-orange--bt-61 {
  border-top: 61px #f5a800 solid !important;
}
.web-orange--br-61 {
  border-right: 61px #f5a800 solid !important;
}
.web-orange--bl-61 {
  border-left: 61px #f5a800 solid !important;
}
.web-orange--bb-61 {
  border-bottom: 61px #f5a800 solid !important;
}
.web-orange--by-61 {
  border-top: 61px #f5a800 solid !important;
  border-bottom: 61px #f5a800 solid !important;
}
.web-orange--bx-61 {
  border-right: 61px #f5a800 solid !important;
  border-left: 61px #f5a800 solid !important;
}
.web-orange--ba-62 {
  border: 62px #f5a800 solid !important;
}
.web-orange--bt-62 {
  border-top: 62px #f5a800 solid !important;
}
.web-orange--br-62 {
  border-right: 62px #f5a800 solid !important;
}
.web-orange--bl-62 {
  border-left: 62px #f5a800 solid !important;
}
.web-orange--bb-62 {
  border-bottom: 62px #f5a800 solid !important;
}
.web-orange--by-62 {
  border-top: 62px #f5a800 solid !important;
  border-bottom: 62px #f5a800 solid !important;
}
.web-orange--bx-62 {
  border-right: 62px #f5a800 solid !important;
  border-left: 62px #f5a800 solid !important;
}
.web-orange--ba-63 {
  border: 63px #f5a800 solid !important;
}
.web-orange--bt-63 {
  border-top: 63px #f5a800 solid !important;
}
.web-orange--br-63 {
  border-right: 63px #f5a800 solid !important;
}
.web-orange--bl-63 {
  border-left: 63px #f5a800 solid !important;
}
.web-orange--bb-63 {
  border-bottom: 63px #f5a800 solid !important;
}
.web-orange--by-63 {
  border-top: 63px #f5a800 solid !important;
  border-bottom: 63px #f5a800 solid !important;
}
.web-orange--bx-63 {
  border-right: 63px #f5a800 solid !important;
  border-left: 63px #f5a800 solid !important;
}
.web-orange--ba-64 {
  border: 64px #f5a800 solid !important;
}
.web-orange--bt-64 {
  border-top: 64px #f5a800 solid !important;
}
.web-orange--br-64 {
  border-right: 64px #f5a800 solid !important;
}
.web-orange--bl-64 {
  border-left: 64px #f5a800 solid !important;
}
.web-orange--bb-64 {
  border-bottom: 64px #f5a800 solid !important;
}
.web-orange--by-64 {
  border-top: 64px #f5a800 solid !important;
  border-bottom: 64px #f5a800 solid !important;
}
.web-orange--bx-64 {
  border-right: 64px #f5a800 solid !important;
  border-left: 64px #f5a800 solid !important;
}
.web-orange--ba-65 {
  border: 65px #f5a800 solid !important;
}
.web-orange--bt-65 {
  border-top: 65px #f5a800 solid !important;
}
.web-orange--br-65 {
  border-right: 65px #f5a800 solid !important;
}
.web-orange--bl-65 {
  border-left: 65px #f5a800 solid !important;
}
.web-orange--bb-65 {
  border-bottom: 65px #f5a800 solid !important;
}
.web-orange--by-65 {
  border-top: 65px #f5a800 solid !important;
  border-bottom: 65px #f5a800 solid !important;
}
.web-orange--bx-65 {
  border-right: 65px #f5a800 solid !important;
  border-left: 65px #f5a800 solid !important;
}
.web-orange--ba-66 {
  border: 66px #f5a800 solid !important;
}
.web-orange--bt-66 {
  border-top: 66px #f5a800 solid !important;
}
.web-orange--br-66 {
  border-right: 66px #f5a800 solid !important;
}
.web-orange--bl-66 {
  border-left: 66px #f5a800 solid !important;
}
.web-orange--bb-66 {
  border-bottom: 66px #f5a800 solid !important;
}
.web-orange--by-66 {
  border-top: 66px #f5a800 solid !important;
  border-bottom: 66px #f5a800 solid !important;
}
.web-orange--bx-66 {
  border-right: 66px #f5a800 solid !important;
  border-left: 66px #f5a800 solid !important;
}
.web-orange--ba-67 {
  border: 67px #f5a800 solid !important;
}
.web-orange--bt-67 {
  border-top: 67px #f5a800 solid !important;
}
.web-orange--br-67 {
  border-right: 67px #f5a800 solid !important;
}
.web-orange--bl-67 {
  border-left: 67px #f5a800 solid !important;
}
.web-orange--bb-67 {
  border-bottom: 67px #f5a800 solid !important;
}
.web-orange--by-67 {
  border-top: 67px #f5a800 solid !important;
  border-bottom: 67px #f5a800 solid !important;
}
.web-orange--bx-67 {
  border-right: 67px #f5a800 solid !important;
  border-left: 67px #f5a800 solid !important;
}
.web-orange--ba-68 {
  border: 68px #f5a800 solid !important;
}
.web-orange--bt-68 {
  border-top: 68px #f5a800 solid !important;
}
.web-orange--br-68 {
  border-right: 68px #f5a800 solid !important;
}
.web-orange--bl-68 {
  border-left: 68px #f5a800 solid !important;
}
.web-orange--bb-68 {
  border-bottom: 68px #f5a800 solid !important;
}
.web-orange--by-68 {
  border-top: 68px #f5a800 solid !important;
  border-bottom: 68px #f5a800 solid !important;
}
.web-orange--bx-68 {
  border-right: 68px #f5a800 solid !important;
  border-left: 68px #f5a800 solid !important;
}
.web-orange--ba-69 {
  border: 69px #f5a800 solid !important;
}
.web-orange--bt-69 {
  border-top: 69px #f5a800 solid !important;
}
.web-orange--br-69 {
  border-right: 69px #f5a800 solid !important;
}
.web-orange--bl-69 {
  border-left: 69px #f5a800 solid !important;
}
.web-orange--bb-69 {
  border-bottom: 69px #f5a800 solid !important;
}
.web-orange--by-69 {
  border-top: 69px #f5a800 solid !important;
  border-bottom: 69px #f5a800 solid !important;
}
.web-orange--bx-69 {
  border-right: 69px #f5a800 solid !important;
  border-left: 69px #f5a800 solid !important;
}
.web-orange--ba-70 {
  border: 70px #f5a800 solid !important;
}
.web-orange--bt-70 {
  border-top: 70px #f5a800 solid !important;
}
.web-orange--br-70 {
  border-right: 70px #f5a800 solid !important;
}
.web-orange--bl-70 {
  border-left: 70px #f5a800 solid !important;
}
.web-orange--bb-70 {
  border-bottom: 70px #f5a800 solid !important;
}
.web-orange--by-70 {
  border-top: 70px #f5a800 solid !important;
  border-bottom: 70px #f5a800 solid !important;
}
.web-orange--bx-70 {
  border-right: 70px #f5a800 solid !important;
  border-left: 70px #f5a800 solid !important;
}
.web-orange--ba-71 {
  border: 71px #f5a800 solid !important;
}
.web-orange--bt-71 {
  border-top: 71px #f5a800 solid !important;
}
.web-orange--br-71 {
  border-right: 71px #f5a800 solid !important;
}
.web-orange--bl-71 {
  border-left: 71px #f5a800 solid !important;
}
.web-orange--bb-71 {
  border-bottom: 71px #f5a800 solid !important;
}
.web-orange--by-71 {
  border-top: 71px #f5a800 solid !important;
  border-bottom: 71px #f5a800 solid !important;
}
.web-orange--bx-71 {
  border-right: 71px #f5a800 solid !important;
  border-left: 71px #f5a800 solid !important;
}
.web-orange--ba-72 {
  border: 72px #f5a800 solid !important;
}
.web-orange--bt-72 {
  border-top: 72px #f5a800 solid !important;
}
.web-orange--br-72 {
  border-right: 72px #f5a800 solid !important;
}
.web-orange--bl-72 {
  border-left: 72px #f5a800 solid !important;
}
.web-orange--bb-72 {
  border-bottom: 72px #f5a800 solid !important;
}
.web-orange--by-72 {
  border-top: 72px #f5a800 solid !important;
  border-bottom: 72px #f5a800 solid !important;
}
.web-orange--bx-72 {
  border-right: 72px #f5a800 solid !important;
  border-left: 72px #f5a800 solid !important;
}
.web-orange--ba-73 {
  border: 73px #f5a800 solid !important;
}
.web-orange--bt-73 {
  border-top: 73px #f5a800 solid !important;
}
.web-orange--br-73 {
  border-right: 73px #f5a800 solid !important;
}
.web-orange--bl-73 {
  border-left: 73px #f5a800 solid !important;
}
.web-orange--bb-73 {
  border-bottom: 73px #f5a800 solid !important;
}
.web-orange--by-73 {
  border-top: 73px #f5a800 solid !important;
  border-bottom: 73px #f5a800 solid !important;
}
.web-orange--bx-73 {
  border-right: 73px #f5a800 solid !important;
  border-left: 73px #f5a800 solid !important;
}
.web-orange--ba-74 {
  border: 74px #f5a800 solid !important;
}
.web-orange--bt-74 {
  border-top: 74px #f5a800 solid !important;
}
.web-orange--br-74 {
  border-right: 74px #f5a800 solid !important;
}
.web-orange--bl-74 {
  border-left: 74px #f5a800 solid !important;
}
.web-orange--bb-74 {
  border-bottom: 74px #f5a800 solid !important;
}
.web-orange--by-74 {
  border-top: 74px #f5a800 solid !important;
  border-bottom: 74px #f5a800 solid !important;
}
.web-orange--bx-74 {
  border-right: 74px #f5a800 solid !important;
  border-left: 74px #f5a800 solid !important;
}
.web-orange--ba-75 {
  border: 75px #f5a800 solid !important;
}
.web-orange--bt-75 {
  border-top: 75px #f5a800 solid !important;
}
.web-orange--br-75 {
  border-right: 75px #f5a800 solid !important;
}
.web-orange--bl-75 {
  border-left: 75px #f5a800 solid !important;
}
.web-orange--bb-75 {
  border-bottom: 75px #f5a800 solid !important;
}
.web-orange--by-75 {
  border-top: 75px #f5a800 solid !important;
  border-bottom: 75px #f5a800 solid !important;
}
.web-orange--bx-75 {
  border-right: 75px #f5a800 solid !important;
  border-left: 75px #f5a800 solid !important;
}
.web-orange--ba-76 {
  border: 76px #f5a800 solid !important;
}
.web-orange--bt-76 {
  border-top: 76px #f5a800 solid !important;
}
.web-orange--br-76 {
  border-right: 76px #f5a800 solid !important;
}
.web-orange--bl-76 {
  border-left: 76px #f5a800 solid !important;
}
.web-orange--bb-76 {
  border-bottom: 76px #f5a800 solid !important;
}
.web-orange--by-76 {
  border-top: 76px #f5a800 solid !important;
  border-bottom: 76px #f5a800 solid !important;
}
.web-orange--bx-76 {
  border-right: 76px #f5a800 solid !important;
  border-left: 76px #f5a800 solid !important;
}
.web-orange--ba-77 {
  border: 77px #f5a800 solid !important;
}
.web-orange--bt-77 {
  border-top: 77px #f5a800 solid !important;
}
.web-orange--br-77 {
  border-right: 77px #f5a800 solid !important;
}
.web-orange--bl-77 {
  border-left: 77px #f5a800 solid !important;
}
.web-orange--bb-77 {
  border-bottom: 77px #f5a800 solid !important;
}
.web-orange--by-77 {
  border-top: 77px #f5a800 solid !important;
  border-bottom: 77px #f5a800 solid !important;
}
.web-orange--bx-77 {
  border-right: 77px #f5a800 solid !important;
  border-left: 77px #f5a800 solid !important;
}
.web-orange--ba-78 {
  border: 78px #f5a800 solid !important;
}
.web-orange--bt-78 {
  border-top: 78px #f5a800 solid !important;
}
.web-orange--br-78 {
  border-right: 78px #f5a800 solid !important;
}
.web-orange--bl-78 {
  border-left: 78px #f5a800 solid !important;
}
.web-orange--bb-78 {
  border-bottom: 78px #f5a800 solid !important;
}
.web-orange--by-78 {
  border-top: 78px #f5a800 solid !important;
  border-bottom: 78px #f5a800 solid !important;
}
.web-orange--bx-78 {
  border-right: 78px #f5a800 solid !important;
  border-left: 78px #f5a800 solid !important;
}
.web-orange--ba-79 {
  border: 79px #f5a800 solid !important;
}
.web-orange--bt-79 {
  border-top: 79px #f5a800 solid !important;
}
.web-orange--br-79 {
  border-right: 79px #f5a800 solid !important;
}
.web-orange--bl-79 {
  border-left: 79px #f5a800 solid !important;
}
.web-orange--bb-79 {
  border-bottom: 79px #f5a800 solid !important;
}
.web-orange--by-79 {
  border-top: 79px #f5a800 solid !important;
  border-bottom: 79px #f5a800 solid !important;
}
.web-orange--bx-79 {
  border-right: 79px #f5a800 solid !important;
  border-left: 79px #f5a800 solid !important;
}
.web-orange--ba-80 {
  border: 80px #f5a800 solid !important;
}
.web-orange--bt-80 {
  border-top: 80px #f5a800 solid !important;
}
.web-orange--br-80 {
  border-right: 80px #f5a800 solid !important;
}
.web-orange--bl-80 {
  border-left: 80px #f5a800 solid !important;
}
.web-orange--bb-80 {
  border-bottom: 80px #f5a800 solid !important;
}
.web-orange--by-80 {
  border-top: 80px #f5a800 solid !important;
  border-bottom: 80px #f5a800 solid !important;
}
.web-orange--bx-80 {
  border-right: 80px #f5a800 solid !important;
  border-left: 80px #f5a800 solid !important;
}
.web-orange--ba-81 {
  border: 81px #f5a800 solid !important;
}
.web-orange--bt-81 {
  border-top: 81px #f5a800 solid !important;
}
.web-orange--br-81 {
  border-right: 81px #f5a800 solid !important;
}
.web-orange--bl-81 {
  border-left: 81px #f5a800 solid !important;
}
.web-orange--bb-81 {
  border-bottom: 81px #f5a800 solid !important;
}
.web-orange--by-81 {
  border-top: 81px #f5a800 solid !important;
  border-bottom: 81px #f5a800 solid !important;
}
.web-orange--bx-81 {
  border-right: 81px #f5a800 solid !important;
  border-left: 81px #f5a800 solid !important;
}
.web-orange--ba-82 {
  border: 82px #f5a800 solid !important;
}
.web-orange--bt-82 {
  border-top: 82px #f5a800 solid !important;
}
.web-orange--br-82 {
  border-right: 82px #f5a800 solid !important;
}
.web-orange--bl-82 {
  border-left: 82px #f5a800 solid !important;
}
.web-orange--bb-82 {
  border-bottom: 82px #f5a800 solid !important;
}
.web-orange--by-82 {
  border-top: 82px #f5a800 solid !important;
  border-bottom: 82px #f5a800 solid !important;
}
.web-orange--bx-82 {
  border-right: 82px #f5a800 solid !important;
  border-left: 82px #f5a800 solid !important;
}
.web-orange--ba-83 {
  border: 83px #f5a800 solid !important;
}
.web-orange--bt-83 {
  border-top: 83px #f5a800 solid !important;
}
.web-orange--br-83 {
  border-right: 83px #f5a800 solid !important;
}
.web-orange--bl-83 {
  border-left: 83px #f5a800 solid !important;
}
.web-orange--bb-83 {
  border-bottom: 83px #f5a800 solid !important;
}
.web-orange--by-83 {
  border-top: 83px #f5a800 solid !important;
  border-bottom: 83px #f5a800 solid !important;
}
.web-orange--bx-83 {
  border-right: 83px #f5a800 solid !important;
  border-left: 83px #f5a800 solid !important;
}
.web-orange--ba-84 {
  border: 84px #f5a800 solid !important;
}
.web-orange--bt-84 {
  border-top: 84px #f5a800 solid !important;
}
.web-orange--br-84 {
  border-right: 84px #f5a800 solid !important;
}
.web-orange--bl-84 {
  border-left: 84px #f5a800 solid !important;
}
.web-orange--bb-84 {
  border-bottom: 84px #f5a800 solid !important;
}
.web-orange--by-84 {
  border-top: 84px #f5a800 solid !important;
  border-bottom: 84px #f5a800 solid !important;
}
.web-orange--bx-84 {
  border-right: 84px #f5a800 solid !important;
  border-left: 84px #f5a800 solid !important;
}
.web-orange--ba-85 {
  border: 85px #f5a800 solid !important;
}
.web-orange--bt-85 {
  border-top: 85px #f5a800 solid !important;
}
.web-orange--br-85 {
  border-right: 85px #f5a800 solid !important;
}
.web-orange--bl-85 {
  border-left: 85px #f5a800 solid !important;
}
.web-orange--bb-85 {
  border-bottom: 85px #f5a800 solid !important;
}
.web-orange--by-85 {
  border-top: 85px #f5a800 solid !important;
  border-bottom: 85px #f5a800 solid !important;
}
.web-orange--bx-85 {
  border-right: 85px #f5a800 solid !important;
  border-left: 85px #f5a800 solid !important;
}
.web-orange--ba-86 {
  border: 86px #f5a800 solid !important;
}
.web-orange--bt-86 {
  border-top: 86px #f5a800 solid !important;
}
.web-orange--br-86 {
  border-right: 86px #f5a800 solid !important;
}
.web-orange--bl-86 {
  border-left: 86px #f5a800 solid !important;
}
.web-orange--bb-86 {
  border-bottom: 86px #f5a800 solid !important;
}
.web-orange--by-86 {
  border-top: 86px #f5a800 solid !important;
  border-bottom: 86px #f5a800 solid !important;
}
.web-orange--bx-86 {
  border-right: 86px #f5a800 solid !important;
  border-left: 86px #f5a800 solid !important;
}
.web-orange--ba-87 {
  border: 87px #f5a800 solid !important;
}
.web-orange--bt-87 {
  border-top: 87px #f5a800 solid !important;
}
.web-orange--br-87 {
  border-right: 87px #f5a800 solid !important;
}
.web-orange--bl-87 {
  border-left: 87px #f5a800 solid !important;
}
.web-orange--bb-87 {
  border-bottom: 87px #f5a800 solid !important;
}
.web-orange--by-87 {
  border-top: 87px #f5a800 solid !important;
  border-bottom: 87px #f5a800 solid !important;
}
.web-orange--bx-87 {
  border-right: 87px #f5a800 solid !important;
  border-left: 87px #f5a800 solid !important;
}
.web-orange--ba-88 {
  border: 88px #f5a800 solid !important;
}
.web-orange--bt-88 {
  border-top: 88px #f5a800 solid !important;
}
.web-orange--br-88 {
  border-right: 88px #f5a800 solid !important;
}
.web-orange--bl-88 {
  border-left: 88px #f5a800 solid !important;
}
.web-orange--bb-88 {
  border-bottom: 88px #f5a800 solid !important;
}
.web-orange--by-88 {
  border-top: 88px #f5a800 solid !important;
  border-bottom: 88px #f5a800 solid !important;
}
.web-orange--bx-88 {
  border-right: 88px #f5a800 solid !important;
  border-left: 88px #f5a800 solid !important;
}
.web-orange--ba-89 {
  border: 89px #f5a800 solid !important;
}
.web-orange--bt-89 {
  border-top: 89px #f5a800 solid !important;
}
.web-orange--br-89 {
  border-right: 89px #f5a800 solid !important;
}
.web-orange--bl-89 {
  border-left: 89px #f5a800 solid !important;
}
.web-orange--bb-89 {
  border-bottom: 89px #f5a800 solid !important;
}
.web-orange--by-89 {
  border-top: 89px #f5a800 solid !important;
  border-bottom: 89px #f5a800 solid !important;
}
.web-orange--bx-89 {
  border-right: 89px #f5a800 solid !important;
  border-left: 89px #f5a800 solid !important;
}
.web-orange--ba-90 {
  border: 90px #f5a800 solid !important;
}
.web-orange--bt-90 {
  border-top: 90px #f5a800 solid !important;
}
.web-orange--br-90 {
  border-right: 90px #f5a800 solid !important;
}
.web-orange--bl-90 {
  border-left: 90px #f5a800 solid !important;
}
.web-orange--bb-90 {
  border-bottom: 90px #f5a800 solid !important;
}
.web-orange--by-90 {
  border-top: 90px #f5a800 solid !important;
  border-bottom: 90px #f5a800 solid !important;
}
.web-orange--bx-90 {
  border-right: 90px #f5a800 solid !important;
  border-left: 90px #f5a800 solid !important;
}
.web-orange--ba-91 {
  border: 91px #f5a800 solid !important;
}
.web-orange--bt-91 {
  border-top: 91px #f5a800 solid !important;
}
.web-orange--br-91 {
  border-right: 91px #f5a800 solid !important;
}
.web-orange--bl-91 {
  border-left: 91px #f5a800 solid !important;
}
.web-orange--bb-91 {
  border-bottom: 91px #f5a800 solid !important;
}
.web-orange--by-91 {
  border-top: 91px #f5a800 solid !important;
  border-bottom: 91px #f5a800 solid !important;
}
.web-orange--bx-91 {
  border-right: 91px #f5a800 solid !important;
  border-left: 91px #f5a800 solid !important;
}
.web-orange--ba-92 {
  border: 92px #f5a800 solid !important;
}
.web-orange--bt-92 {
  border-top: 92px #f5a800 solid !important;
}
.web-orange--br-92 {
  border-right: 92px #f5a800 solid !important;
}
.web-orange--bl-92 {
  border-left: 92px #f5a800 solid !important;
}
.web-orange--bb-92 {
  border-bottom: 92px #f5a800 solid !important;
}
.web-orange--by-92 {
  border-top: 92px #f5a800 solid !important;
  border-bottom: 92px #f5a800 solid !important;
}
.web-orange--bx-92 {
  border-right: 92px #f5a800 solid !important;
  border-left: 92px #f5a800 solid !important;
}
.web-orange--ba-93 {
  border: 93px #f5a800 solid !important;
}
.web-orange--bt-93 {
  border-top: 93px #f5a800 solid !important;
}
.web-orange--br-93 {
  border-right: 93px #f5a800 solid !important;
}
.web-orange--bl-93 {
  border-left: 93px #f5a800 solid !important;
}
.web-orange--bb-93 {
  border-bottom: 93px #f5a800 solid !important;
}
.web-orange--by-93 {
  border-top: 93px #f5a800 solid !important;
  border-bottom: 93px #f5a800 solid !important;
}
.web-orange--bx-93 {
  border-right: 93px #f5a800 solid !important;
  border-left: 93px #f5a800 solid !important;
}
.web-orange--ba-94 {
  border: 94px #f5a800 solid !important;
}
.web-orange--bt-94 {
  border-top: 94px #f5a800 solid !important;
}
.web-orange--br-94 {
  border-right: 94px #f5a800 solid !important;
}
.web-orange--bl-94 {
  border-left: 94px #f5a800 solid !important;
}
.web-orange--bb-94 {
  border-bottom: 94px #f5a800 solid !important;
}
.web-orange--by-94 {
  border-top: 94px #f5a800 solid !important;
  border-bottom: 94px #f5a800 solid !important;
}
.web-orange--bx-94 {
  border-right: 94px #f5a800 solid !important;
  border-left: 94px #f5a800 solid !important;
}
.web-orange--ba-95 {
  border: 95px #f5a800 solid !important;
}
.web-orange--bt-95 {
  border-top: 95px #f5a800 solid !important;
}
.web-orange--br-95 {
  border-right: 95px #f5a800 solid !important;
}
.web-orange--bl-95 {
  border-left: 95px #f5a800 solid !important;
}
.web-orange--bb-95 {
  border-bottom: 95px #f5a800 solid !important;
}
.web-orange--by-95 {
  border-top: 95px #f5a800 solid !important;
  border-bottom: 95px #f5a800 solid !important;
}
.web-orange--bx-95 {
  border-right: 95px #f5a800 solid !important;
  border-left: 95px #f5a800 solid !important;
}
.web-orange--ba-96 {
  border: 96px #f5a800 solid !important;
}
.web-orange--bt-96 {
  border-top: 96px #f5a800 solid !important;
}
.web-orange--br-96 {
  border-right: 96px #f5a800 solid !important;
}
.web-orange--bl-96 {
  border-left: 96px #f5a800 solid !important;
}
.web-orange--bb-96 {
  border-bottom: 96px #f5a800 solid !important;
}
.web-orange--by-96 {
  border-top: 96px #f5a800 solid !important;
  border-bottom: 96px #f5a800 solid !important;
}
.web-orange--bx-96 {
  border-right: 96px #f5a800 solid !important;
  border-left: 96px #f5a800 solid !important;
}
.web-orange--ba-97 {
  border: 97px #f5a800 solid !important;
}
.web-orange--bt-97 {
  border-top: 97px #f5a800 solid !important;
}
.web-orange--br-97 {
  border-right: 97px #f5a800 solid !important;
}
.web-orange--bl-97 {
  border-left: 97px #f5a800 solid !important;
}
.web-orange--bb-97 {
  border-bottom: 97px #f5a800 solid !important;
}
.web-orange--by-97 {
  border-top: 97px #f5a800 solid !important;
  border-bottom: 97px #f5a800 solid !important;
}
.web-orange--bx-97 {
  border-right: 97px #f5a800 solid !important;
  border-left: 97px #f5a800 solid !important;
}
.web-orange--ba-98 {
  border: 98px #f5a800 solid !important;
}
.web-orange--bt-98 {
  border-top: 98px #f5a800 solid !important;
}
.web-orange--br-98 {
  border-right: 98px #f5a800 solid !important;
}
.web-orange--bl-98 {
  border-left: 98px #f5a800 solid !important;
}
.web-orange--bb-98 {
  border-bottom: 98px #f5a800 solid !important;
}
.web-orange--by-98 {
  border-top: 98px #f5a800 solid !important;
  border-bottom: 98px #f5a800 solid !important;
}
.web-orange--bx-98 {
  border-right: 98px #f5a800 solid !important;
  border-left: 98px #f5a800 solid !important;
}
.web-orange--ba-99 {
  border: 99px #f5a800 solid !important;
}
.web-orange--bt-99 {
  border-top: 99px #f5a800 solid !important;
}
.web-orange--br-99 {
  border-right: 99px #f5a800 solid !important;
}
.web-orange--bl-99 {
  border-left: 99px #f5a800 solid !important;
}
.web-orange--bb-99 {
  border-bottom: 99px #f5a800 solid !important;
}
.web-orange--by-99 {
  border-top: 99px #f5a800 solid !important;
  border-bottom: 99px #f5a800 solid !important;
}
.web-orange--bx-99 {
  border-right: 99px #f5a800 solid !important;
  border-left: 99px #f5a800 solid !important;
}
.web-orange--ba-100 {
  border: 100px #f5a800 solid !important;
}
.web-orange--bt-100 {
  border-top: 100px #f5a800 solid !important;
}
.web-orange--br-100 {
  border-right: 100px #f5a800 solid !important;
}
.web-orange--bl-100 {
  border-left: 100px #f5a800 solid !important;
}
.web-orange--bb-100 {
  border-bottom: 100px #f5a800 solid !important;
}
.web-orange--by-100 {
  border-top: 100px #f5a800 solid !important;
  border-bottom: 100px #f5a800 solid !important;
}
.web-orange--bx-100 {
  border-right: 100px #f5a800 solid !important;
  border-left: 100px #f5a800 solid !important;
}
.biscay--ba-1 {
  border: 1px #1d285c solid !important;
}
.biscay--bt-1 {
  border-top: 1px #1d285c solid !important;
}
.biscay--br-1 {
  border-right: 1px #1d285c solid !important;
}
.biscay--bl-1 {
  border-left: 1px #1d285c solid !important;
}
.biscay--bb-1 {
  border-bottom: 1px #1d285c solid !important;
}
.biscay--by-1 {
  border-top: 1px #1d285c solid !important;
  border-bottom: 1px #1d285c solid !important;
}
.biscay--bx-1 {
  border-right: 1px #1d285c solid !important;
  border-left: 1px #1d285c solid !important;
}
.biscay--ba-2 {
  border: 2px #1d285c solid !important;
}
.biscay--bt-2 {
  border-top: 2px #1d285c solid !important;
}
.biscay--br-2 {
  border-right: 2px #1d285c solid !important;
}
.biscay--bl-2 {
  border-left: 2px #1d285c solid !important;
}
.biscay--bb-2 {
  border-bottom: 2px #1d285c solid !important;
}
.biscay--by-2 {
  border-top: 2px #1d285c solid !important;
  border-bottom: 2px #1d285c solid !important;
}
.biscay--bx-2 {
  border-right: 2px #1d285c solid !important;
  border-left: 2px #1d285c solid !important;
}
.biscay--ba-3 {
  border: 3px #1d285c solid !important;
}
.biscay--bt-3 {
  border-top: 3px #1d285c solid !important;
}
.biscay--br-3 {
  border-right: 3px #1d285c solid !important;
}
.biscay--bl-3 {
  border-left: 3px #1d285c solid !important;
}
.biscay--bb-3 {
  border-bottom: 3px #1d285c solid !important;
}
.biscay--by-3 {
  border-top: 3px #1d285c solid !important;
  border-bottom: 3px #1d285c solid !important;
}
.biscay--bx-3 {
  border-right: 3px #1d285c solid !important;
  border-left: 3px #1d285c solid !important;
}
.biscay--ba-4 {
  border: 4px #1d285c solid !important;
}
.biscay--bt-4 {
  border-top: 4px #1d285c solid !important;
}
.biscay--br-4 {
  border-right: 4px #1d285c solid !important;
}
.biscay--bl-4 {
  border-left: 4px #1d285c solid !important;
}
.biscay--bb-4 {
  border-bottom: 4px #1d285c solid !important;
}
.biscay--by-4 {
  border-top: 4px #1d285c solid !important;
  border-bottom: 4px #1d285c solid !important;
}
.biscay--bx-4 {
  border-right: 4px #1d285c solid !important;
  border-left: 4px #1d285c solid !important;
}
.biscay--ba-5 {
  border: 5px #1d285c solid !important;
}
.biscay--bt-5 {
  border-top: 5px #1d285c solid !important;
}
.biscay--br-5 {
  border-right: 5px #1d285c solid !important;
}
.biscay--bl-5 {
  border-left: 5px #1d285c solid !important;
}
.biscay--bb-5 {
  border-bottom: 5px #1d285c solid !important;
}
.biscay--by-5 {
  border-top: 5px #1d285c solid !important;
  border-bottom: 5px #1d285c solid !important;
}
.biscay--bx-5 {
  border-right: 5px #1d285c solid !important;
  border-left: 5px #1d285c solid !important;
}
.biscay--ba-6 {
  border: 6px #1d285c solid !important;
}
.biscay--bt-6 {
  border-top: 6px #1d285c solid !important;
}
.biscay--br-6 {
  border-right: 6px #1d285c solid !important;
}
.biscay--bl-6 {
  border-left: 6px #1d285c solid !important;
}
.biscay--bb-6 {
  border-bottom: 6px #1d285c solid !important;
}
.biscay--by-6 {
  border-top: 6px #1d285c solid !important;
  border-bottom: 6px #1d285c solid !important;
}
.biscay--bx-6 {
  border-right: 6px #1d285c solid !important;
  border-left: 6px #1d285c solid !important;
}
.biscay--ba-7 {
  border: 7px #1d285c solid !important;
}
.biscay--bt-7 {
  border-top: 7px #1d285c solid !important;
}
.biscay--br-7 {
  border-right: 7px #1d285c solid !important;
}
.biscay--bl-7 {
  border-left: 7px #1d285c solid !important;
}
.biscay--bb-7 {
  border-bottom: 7px #1d285c solid !important;
}
.biscay--by-7 {
  border-top: 7px #1d285c solid !important;
  border-bottom: 7px #1d285c solid !important;
}
.biscay--bx-7 {
  border-right: 7px #1d285c solid !important;
  border-left: 7px #1d285c solid !important;
}
.biscay--ba-8 {
  border: 8px #1d285c solid !important;
}
.biscay--bt-8 {
  border-top: 8px #1d285c solid !important;
}
.biscay--br-8 {
  border-right: 8px #1d285c solid !important;
}
.biscay--bl-8 {
  border-left: 8px #1d285c solid !important;
}
.biscay--bb-8 {
  border-bottom: 8px #1d285c solid !important;
}
.biscay--by-8 {
  border-top: 8px #1d285c solid !important;
  border-bottom: 8px #1d285c solid !important;
}
.biscay--bx-8 {
  border-right: 8px #1d285c solid !important;
  border-left: 8px #1d285c solid !important;
}
.biscay--ba-9 {
  border: 9px #1d285c solid !important;
}
.biscay--bt-9 {
  border-top: 9px #1d285c solid !important;
}
.biscay--br-9 {
  border-right: 9px #1d285c solid !important;
}
.biscay--bl-9 {
  border-left: 9px #1d285c solid !important;
}
.biscay--bb-9 {
  border-bottom: 9px #1d285c solid !important;
}
.biscay--by-9 {
  border-top: 9px #1d285c solid !important;
  border-bottom: 9px #1d285c solid !important;
}
.biscay--bx-9 {
  border-right: 9px #1d285c solid !important;
  border-left: 9px #1d285c solid !important;
}
.biscay--ba-10 {
  border: 10px #1d285c solid !important;
}
.biscay--bt-10 {
  border-top: 10px #1d285c solid !important;
}
.biscay--br-10 {
  border-right: 10px #1d285c solid !important;
}
.biscay--bl-10 {
  border-left: 10px #1d285c solid !important;
}
.biscay--bb-10 {
  border-bottom: 10px #1d285c solid !important;
}
.biscay--by-10 {
  border-top: 10px #1d285c solid !important;
  border-bottom: 10px #1d285c solid !important;
}
.biscay--bx-10 {
  border-right: 10px #1d285c solid !important;
  border-left: 10px #1d285c solid !important;
}
.biscay--ba-11 {
  border: 11px #1d285c solid !important;
}
.biscay--bt-11 {
  border-top: 11px #1d285c solid !important;
}
.biscay--br-11 {
  border-right: 11px #1d285c solid !important;
}
.biscay--bl-11 {
  border-left: 11px #1d285c solid !important;
}
.biscay--bb-11 {
  border-bottom: 11px #1d285c solid !important;
}
.biscay--by-11 {
  border-top: 11px #1d285c solid !important;
  border-bottom: 11px #1d285c solid !important;
}
.biscay--bx-11 {
  border-right: 11px #1d285c solid !important;
  border-left: 11px #1d285c solid !important;
}
.biscay--ba-12 {
  border: 12px #1d285c solid !important;
}
.biscay--bt-12 {
  border-top: 12px #1d285c solid !important;
}
.biscay--br-12 {
  border-right: 12px #1d285c solid !important;
}
.biscay--bl-12 {
  border-left: 12px #1d285c solid !important;
}
.biscay--bb-12 {
  border-bottom: 12px #1d285c solid !important;
}
.biscay--by-12 {
  border-top: 12px #1d285c solid !important;
  border-bottom: 12px #1d285c solid !important;
}
.biscay--bx-12 {
  border-right: 12px #1d285c solid !important;
  border-left: 12px #1d285c solid !important;
}
.biscay--ba-13 {
  border: 13px #1d285c solid !important;
}
.biscay--bt-13 {
  border-top: 13px #1d285c solid !important;
}
.biscay--br-13 {
  border-right: 13px #1d285c solid !important;
}
.biscay--bl-13 {
  border-left: 13px #1d285c solid !important;
}
.biscay--bb-13 {
  border-bottom: 13px #1d285c solid !important;
}
.biscay--by-13 {
  border-top: 13px #1d285c solid !important;
  border-bottom: 13px #1d285c solid !important;
}
.biscay--bx-13 {
  border-right: 13px #1d285c solid !important;
  border-left: 13px #1d285c solid !important;
}
.biscay--ba-14 {
  border: 14px #1d285c solid !important;
}
.biscay--bt-14 {
  border-top: 14px #1d285c solid !important;
}
.biscay--br-14 {
  border-right: 14px #1d285c solid !important;
}
.biscay--bl-14 {
  border-left: 14px #1d285c solid !important;
}
.biscay--bb-14 {
  border-bottom: 14px #1d285c solid !important;
}
.biscay--by-14 {
  border-top: 14px #1d285c solid !important;
  border-bottom: 14px #1d285c solid !important;
}
.biscay--bx-14 {
  border-right: 14px #1d285c solid !important;
  border-left: 14px #1d285c solid !important;
}
.biscay--ba-15 {
  border: 15px #1d285c solid !important;
}
.biscay--bt-15 {
  border-top: 15px #1d285c solid !important;
}
.biscay--br-15 {
  border-right: 15px #1d285c solid !important;
}
.biscay--bl-15 {
  border-left: 15px #1d285c solid !important;
}
.biscay--bb-15 {
  border-bottom: 15px #1d285c solid !important;
}
.biscay--by-15 {
  border-top: 15px #1d285c solid !important;
  border-bottom: 15px #1d285c solid !important;
}
.biscay--bx-15 {
  border-right: 15px #1d285c solid !important;
  border-left: 15px #1d285c solid !important;
}
.biscay--ba-16 {
  border: 16px #1d285c solid !important;
}
.biscay--bt-16 {
  border-top: 16px #1d285c solid !important;
}
.biscay--br-16 {
  border-right: 16px #1d285c solid !important;
}
.biscay--bl-16 {
  border-left: 16px #1d285c solid !important;
}
.biscay--bb-16 {
  border-bottom: 16px #1d285c solid !important;
}
.biscay--by-16 {
  border-top: 16px #1d285c solid !important;
  border-bottom: 16px #1d285c solid !important;
}
.biscay--bx-16 {
  border-right: 16px #1d285c solid !important;
  border-left: 16px #1d285c solid !important;
}
.biscay--ba-17 {
  border: 17px #1d285c solid !important;
}
.biscay--bt-17 {
  border-top: 17px #1d285c solid !important;
}
.biscay--br-17 {
  border-right: 17px #1d285c solid !important;
}
.biscay--bl-17 {
  border-left: 17px #1d285c solid !important;
}
.biscay--bb-17 {
  border-bottom: 17px #1d285c solid !important;
}
.biscay--by-17 {
  border-top: 17px #1d285c solid !important;
  border-bottom: 17px #1d285c solid !important;
}
.biscay--bx-17 {
  border-right: 17px #1d285c solid !important;
  border-left: 17px #1d285c solid !important;
}
.biscay--ba-18 {
  border: 18px #1d285c solid !important;
}
.biscay--bt-18 {
  border-top: 18px #1d285c solid !important;
}
.biscay--br-18 {
  border-right: 18px #1d285c solid !important;
}
.biscay--bl-18 {
  border-left: 18px #1d285c solid !important;
}
.biscay--bb-18 {
  border-bottom: 18px #1d285c solid !important;
}
.biscay--by-18 {
  border-top: 18px #1d285c solid !important;
  border-bottom: 18px #1d285c solid !important;
}
.biscay--bx-18 {
  border-right: 18px #1d285c solid !important;
  border-left: 18px #1d285c solid !important;
}
.biscay--ba-19 {
  border: 19px #1d285c solid !important;
}
.biscay--bt-19 {
  border-top: 19px #1d285c solid !important;
}
.biscay--br-19 {
  border-right: 19px #1d285c solid !important;
}
.biscay--bl-19 {
  border-left: 19px #1d285c solid !important;
}
.biscay--bb-19 {
  border-bottom: 19px #1d285c solid !important;
}
.biscay--by-19 {
  border-top: 19px #1d285c solid !important;
  border-bottom: 19px #1d285c solid !important;
}
.biscay--bx-19 {
  border-right: 19px #1d285c solid !important;
  border-left: 19px #1d285c solid !important;
}
.biscay--ba-20 {
  border: 20px #1d285c solid !important;
}
.biscay--bt-20 {
  border-top: 20px #1d285c solid !important;
}
.biscay--br-20 {
  border-right: 20px #1d285c solid !important;
}
.biscay--bl-20 {
  border-left: 20px #1d285c solid !important;
}
.biscay--bb-20 {
  border-bottom: 20px #1d285c solid !important;
}
.biscay--by-20 {
  border-top: 20px #1d285c solid !important;
  border-bottom: 20px #1d285c solid !important;
}
.biscay--bx-20 {
  border-right: 20px #1d285c solid !important;
  border-left: 20px #1d285c solid !important;
}
.biscay--ba-21 {
  border: 21px #1d285c solid !important;
}
.biscay--bt-21 {
  border-top: 21px #1d285c solid !important;
}
.biscay--br-21 {
  border-right: 21px #1d285c solid !important;
}
.biscay--bl-21 {
  border-left: 21px #1d285c solid !important;
}
.biscay--bb-21 {
  border-bottom: 21px #1d285c solid !important;
}
.biscay--by-21 {
  border-top: 21px #1d285c solid !important;
  border-bottom: 21px #1d285c solid !important;
}
.biscay--bx-21 {
  border-right: 21px #1d285c solid !important;
  border-left: 21px #1d285c solid !important;
}
.biscay--ba-22 {
  border: 22px #1d285c solid !important;
}
.biscay--bt-22 {
  border-top: 22px #1d285c solid !important;
}
.biscay--br-22 {
  border-right: 22px #1d285c solid !important;
}
.biscay--bl-22 {
  border-left: 22px #1d285c solid !important;
}
.biscay--bb-22 {
  border-bottom: 22px #1d285c solid !important;
}
.biscay--by-22 {
  border-top: 22px #1d285c solid !important;
  border-bottom: 22px #1d285c solid !important;
}
.biscay--bx-22 {
  border-right: 22px #1d285c solid !important;
  border-left: 22px #1d285c solid !important;
}
.biscay--ba-23 {
  border: 23px #1d285c solid !important;
}
.biscay--bt-23 {
  border-top: 23px #1d285c solid !important;
}
.biscay--br-23 {
  border-right: 23px #1d285c solid !important;
}
.biscay--bl-23 {
  border-left: 23px #1d285c solid !important;
}
.biscay--bb-23 {
  border-bottom: 23px #1d285c solid !important;
}
.biscay--by-23 {
  border-top: 23px #1d285c solid !important;
  border-bottom: 23px #1d285c solid !important;
}
.biscay--bx-23 {
  border-right: 23px #1d285c solid !important;
  border-left: 23px #1d285c solid !important;
}
.biscay--ba-24 {
  border: 24px #1d285c solid !important;
}
.biscay--bt-24 {
  border-top: 24px #1d285c solid !important;
}
.biscay--br-24 {
  border-right: 24px #1d285c solid !important;
}
.biscay--bl-24 {
  border-left: 24px #1d285c solid !important;
}
.biscay--bb-24 {
  border-bottom: 24px #1d285c solid !important;
}
.biscay--by-24 {
  border-top: 24px #1d285c solid !important;
  border-bottom: 24px #1d285c solid !important;
}
.biscay--bx-24 {
  border-right: 24px #1d285c solid !important;
  border-left: 24px #1d285c solid !important;
}
.biscay--ba-25 {
  border: 25px #1d285c solid !important;
}
.biscay--bt-25 {
  border-top: 25px #1d285c solid !important;
}
.biscay--br-25 {
  border-right: 25px #1d285c solid !important;
}
.biscay--bl-25 {
  border-left: 25px #1d285c solid !important;
}
.biscay--bb-25 {
  border-bottom: 25px #1d285c solid !important;
}
.biscay--by-25 {
  border-top: 25px #1d285c solid !important;
  border-bottom: 25px #1d285c solid !important;
}
.biscay--bx-25 {
  border-right: 25px #1d285c solid !important;
  border-left: 25px #1d285c solid !important;
}
.biscay--ba-26 {
  border: 26px #1d285c solid !important;
}
.biscay--bt-26 {
  border-top: 26px #1d285c solid !important;
}
.biscay--br-26 {
  border-right: 26px #1d285c solid !important;
}
.biscay--bl-26 {
  border-left: 26px #1d285c solid !important;
}
.biscay--bb-26 {
  border-bottom: 26px #1d285c solid !important;
}
.biscay--by-26 {
  border-top: 26px #1d285c solid !important;
  border-bottom: 26px #1d285c solid !important;
}
.biscay--bx-26 {
  border-right: 26px #1d285c solid !important;
  border-left: 26px #1d285c solid !important;
}
.biscay--ba-27 {
  border: 27px #1d285c solid !important;
}
.biscay--bt-27 {
  border-top: 27px #1d285c solid !important;
}
.biscay--br-27 {
  border-right: 27px #1d285c solid !important;
}
.biscay--bl-27 {
  border-left: 27px #1d285c solid !important;
}
.biscay--bb-27 {
  border-bottom: 27px #1d285c solid !important;
}
.biscay--by-27 {
  border-top: 27px #1d285c solid !important;
  border-bottom: 27px #1d285c solid !important;
}
.biscay--bx-27 {
  border-right: 27px #1d285c solid !important;
  border-left: 27px #1d285c solid !important;
}
.biscay--ba-28 {
  border: 28px #1d285c solid !important;
}
.biscay--bt-28 {
  border-top: 28px #1d285c solid !important;
}
.biscay--br-28 {
  border-right: 28px #1d285c solid !important;
}
.biscay--bl-28 {
  border-left: 28px #1d285c solid !important;
}
.biscay--bb-28 {
  border-bottom: 28px #1d285c solid !important;
}
.biscay--by-28 {
  border-top: 28px #1d285c solid !important;
  border-bottom: 28px #1d285c solid !important;
}
.biscay--bx-28 {
  border-right: 28px #1d285c solid !important;
  border-left: 28px #1d285c solid !important;
}
.biscay--ba-29 {
  border: 29px #1d285c solid !important;
}
.biscay--bt-29 {
  border-top: 29px #1d285c solid !important;
}
.biscay--br-29 {
  border-right: 29px #1d285c solid !important;
}
.biscay--bl-29 {
  border-left: 29px #1d285c solid !important;
}
.biscay--bb-29 {
  border-bottom: 29px #1d285c solid !important;
}
.biscay--by-29 {
  border-top: 29px #1d285c solid !important;
  border-bottom: 29px #1d285c solid !important;
}
.biscay--bx-29 {
  border-right: 29px #1d285c solid !important;
  border-left: 29px #1d285c solid !important;
}
.biscay--ba-30 {
  border: 30px #1d285c solid !important;
}
.biscay--bt-30 {
  border-top: 30px #1d285c solid !important;
}
.biscay--br-30 {
  border-right: 30px #1d285c solid !important;
}
.biscay--bl-30 {
  border-left: 30px #1d285c solid !important;
}
.biscay--bb-30 {
  border-bottom: 30px #1d285c solid !important;
}
.biscay--by-30 {
  border-top: 30px #1d285c solid !important;
  border-bottom: 30px #1d285c solid !important;
}
.biscay--bx-30 {
  border-right: 30px #1d285c solid !important;
  border-left: 30px #1d285c solid !important;
}
.biscay--ba-31 {
  border: 31px #1d285c solid !important;
}
.biscay--bt-31 {
  border-top: 31px #1d285c solid !important;
}
.biscay--br-31 {
  border-right: 31px #1d285c solid !important;
}
.biscay--bl-31 {
  border-left: 31px #1d285c solid !important;
}
.biscay--bb-31 {
  border-bottom: 31px #1d285c solid !important;
}
.biscay--by-31 {
  border-top: 31px #1d285c solid !important;
  border-bottom: 31px #1d285c solid !important;
}
.biscay--bx-31 {
  border-right: 31px #1d285c solid !important;
  border-left: 31px #1d285c solid !important;
}
.biscay--ba-32 {
  border: 32px #1d285c solid !important;
}
.biscay--bt-32 {
  border-top: 32px #1d285c solid !important;
}
.biscay--br-32 {
  border-right: 32px #1d285c solid !important;
}
.biscay--bl-32 {
  border-left: 32px #1d285c solid !important;
}
.biscay--bb-32 {
  border-bottom: 32px #1d285c solid !important;
}
.biscay--by-32 {
  border-top: 32px #1d285c solid !important;
  border-bottom: 32px #1d285c solid !important;
}
.biscay--bx-32 {
  border-right: 32px #1d285c solid !important;
  border-left: 32px #1d285c solid !important;
}
.biscay--ba-33 {
  border: 33px #1d285c solid !important;
}
.biscay--bt-33 {
  border-top: 33px #1d285c solid !important;
}
.biscay--br-33 {
  border-right: 33px #1d285c solid !important;
}
.biscay--bl-33 {
  border-left: 33px #1d285c solid !important;
}
.biscay--bb-33 {
  border-bottom: 33px #1d285c solid !important;
}
.biscay--by-33 {
  border-top: 33px #1d285c solid !important;
  border-bottom: 33px #1d285c solid !important;
}
.biscay--bx-33 {
  border-right: 33px #1d285c solid !important;
  border-left: 33px #1d285c solid !important;
}
.biscay--ba-34 {
  border: 34px #1d285c solid !important;
}
.biscay--bt-34 {
  border-top: 34px #1d285c solid !important;
}
.biscay--br-34 {
  border-right: 34px #1d285c solid !important;
}
.biscay--bl-34 {
  border-left: 34px #1d285c solid !important;
}
.biscay--bb-34 {
  border-bottom: 34px #1d285c solid !important;
}
.biscay--by-34 {
  border-top: 34px #1d285c solid !important;
  border-bottom: 34px #1d285c solid !important;
}
.biscay--bx-34 {
  border-right: 34px #1d285c solid !important;
  border-left: 34px #1d285c solid !important;
}
.biscay--ba-35 {
  border: 35px #1d285c solid !important;
}
.biscay--bt-35 {
  border-top: 35px #1d285c solid !important;
}
.biscay--br-35 {
  border-right: 35px #1d285c solid !important;
}
.biscay--bl-35 {
  border-left: 35px #1d285c solid !important;
}
.biscay--bb-35 {
  border-bottom: 35px #1d285c solid !important;
}
.biscay--by-35 {
  border-top: 35px #1d285c solid !important;
  border-bottom: 35px #1d285c solid !important;
}
.biscay--bx-35 {
  border-right: 35px #1d285c solid !important;
  border-left: 35px #1d285c solid !important;
}
.biscay--ba-36 {
  border: 36px #1d285c solid !important;
}
.biscay--bt-36 {
  border-top: 36px #1d285c solid !important;
}
.biscay--br-36 {
  border-right: 36px #1d285c solid !important;
}
.biscay--bl-36 {
  border-left: 36px #1d285c solid !important;
}
.biscay--bb-36 {
  border-bottom: 36px #1d285c solid !important;
}
.biscay--by-36 {
  border-top: 36px #1d285c solid !important;
  border-bottom: 36px #1d285c solid !important;
}
.biscay--bx-36 {
  border-right: 36px #1d285c solid !important;
  border-left: 36px #1d285c solid !important;
}
.biscay--ba-37 {
  border: 37px #1d285c solid !important;
}
.biscay--bt-37 {
  border-top: 37px #1d285c solid !important;
}
.biscay--br-37 {
  border-right: 37px #1d285c solid !important;
}
.biscay--bl-37 {
  border-left: 37px #1d285c solid !important;
}
.biscay--bb-37 {
  border-bottom: 37px #1d285c solid !important;
}
.biscay--by-37 {
  border-top: 37px #1d285c solid !important;
  border-bottom: 37px #1d285c solid !important;
}
.biscay--bx-37 {
  border-right: 37px #1d285c solid !important;
  border-left: 37px #1d285c solid !important;
}
.biscay--ba-38 {
  border: 38px #1d285c solid !important;
}
.biscay--bt-38 {
  border-top: 38px #1d285c solid !important;
}
.biscay--br-38 {
  border-right: 38px #1d285c solid !important;
}
.biscay--bl-38 {
  border-left: 38px #1d285c solid !important;
}
.biscay--bb-38 {
  border-bottom: 38px #1d285c solid !important;
}
.biscay--by-38 {
  border-top: 38px #1d285c solid !important;
  border-bottom: 38px #1d285c solid !important;
}
.biscay--bx-38 {
  border-right: 38px #1d285c solid !important;
  border-left: 38px #1d285c solid !important;
}
.biscay--ba-39 {
  border: 39px #1d285c solid !important;
}
.biscay--bt-39 {
  border-top: 39px #1d285c solid !important;
}
.biscay--br-39 {
  border-right: 39px #1d285c solid !important;
}
.biscay--bl-39 {
  border-left: 39px #1d285c solid !important;
}
.biscay--bb-39 {
  border-bottom: 39px #1d285c solid !important;
}
.biscay--by-39 {
  border-top: 39px #1d285c solid !important;
  border-bottom: 39px #1d285c solid !important;
}
.biscay--bx-39 {
  border-right: 39px #1d285c solid !important;
  border-left: 39px #1d285c solid !important;
}
.biscay--ba-40 {
  border: 40px #1d285c solid !important;
}
.biscay--bt-40 {
  border-top: 40px #1d285c solid !important;
}
.biscay--br-40 {
  border-right: 40px #1d285c solid !important;
}
.biscay--bl-40 {
  border-left: 40px #1d285c solid !important;
}
.biscay--bb-40 {
  border-bottom: 40px #1d285c solid !important;
}
.biscay--by-40 {
  border-top: 40px #1d285c solid !important;
  border-bottom: 40px #1d285c solid !important;
}
.biscay--bx-40 {
  border-right: 40px #1d285c solid !important;
  border-left: 40px #1d285c solid !important;
}
.biscay--ba-41 {
  border: 41px #1d285c solid !important;
}
.biscay--bt-41 {
  border-top: 41px #1d285c solid !important;
}
.biscay--br-41 {
  border-right: 41px #1d285c solid !important;
}
.biscay--bl-41 {
  border-left: 41px #1d285c solid !important;
}
.biscay--bb-41 {
  border-bottom: 41px #1d285c solid !important;
}
.biscay--by-41 {
  border-top: 41px #1d285c solid !important;
  border-bottom: 41px #1d285c solid !important;
}
.biscay--bx-41 {
  border-right: 41px #1d285c solid !important;
  border-left: 41px #1d285c solid !important;
}
.biscay--ba-42 {
  border: 42px #1d285c solid !important;
}
.biscay--bt-42 {
  border-top: 42px #1d285c solid !important;
}
.biscay--br-42 {
  border-right: 42px #1d285c solid !important;
}
.biscay--bl-42 {
  border-left: 42px #1d285c solid !important;
}
.biscay--bb-42 {
  border-bottom: 42px #1d285c solid !important;
}
.biscay--by-42 {
  border-top: 42px #1d285c solid !important;
  border-bottom: 42px #1d285c solid !important;
}
.biscay--bx-42 {
  border-right: 42px #1d285c solid !important;
  border-left: 42px #1d285c solid !important;
}
.biscay--ba-43 {
  border: 43px #1d285c solid !important;
}
.biscay--bt-43 {
  border-top: 43px #1d285c solid !important;
}
.biscay--br-43 {
  border-right: 43px #1d285c solid !important;
}
.biscay--bl-43 {
  border-left: 43px #1d285c solid !important;
}
.biscay--bb-43 {
  border-bottom: 43px #1d285c solid !important;
}
.biscay--by-43 {
  border-top: 43px #1d285c solid !important;
  border-bottom: 43px #1d285c solid !important;
}
.biscay--bx-43 {
  border-right: 43px #1d285c solid !important;
  border-left: 43px #1d285c solid !important;
}
.biscay--ba-44 {
  border: 44px #1d285c solid !important;
}
.biscay--bt-44 {
  border-top: 44px #1d285c solid !important;
}
.biscay--br-44 {
  border-right: 44px #1d285c solid !important;
}
.biscay--bl-44 {
  border-left: 44px #1d285c solid !important;
}
.biscay--bb-44 {
  border-bottom: 44px #1d285c solid !important;
}
.biscay--by-44 {
  border-top: 44px #1d285c solid !important;
  border-bottom: 44px #1d285c solid !important;
}
.biscay--bx-44 {
  border-right: 44px #1d285c solid !important;
  border-left: 44px #1d285c solid !important;
}
.biscay--ba-45 {
  border: 45px #1d285c solid !important;
}
.biscay--bt-45 {
  border-top: 45px #1d285c solid !important;
}
.biscay--br-45 {
  border-right: 45px #1d285c solid !important;
}
.biscay--bl-45 {
  border-left: 45px #1d285c solid !important;
}
.biscay--bb-45 {
  border-bottom: 45px #1d285c solid !important;
}
.biscay--by-45 {
  border-top: 45px #1d285c solid !important;
  border-bottom: 45px #1d285c solid !important;
}
.biscay--bx-45 {
  border-right: 45px #1d285c solid !important;
  border-left: 45px #1d285c solid !important;
}
.biscay--ba-46 {
  border: 46px #1d285c solid !important;
}
.biscay--bt-46 {
  border-top: 46px #1d285c solid !important;
}
.biscay--br-46 {
  border-right: 46px #1d285c solid !important;
}
.biscay--bl-46 {
  border-left: 46px #1d285c solid !important;
}
.biscay--bb-46 {
  border-bottom: 46px #1d285c solid !important;
}
.biscay--by-46 {
  border-top: 46px #1d285c solid !important;
  border-bottom: 46px #1d285c solid !important;
}
.biscay--bx-46 {
  border-right: 46px #1d285c solid !important;
  border-left: 46px #1d285c solid !important;
}
.biscay--ba-47 {
  border: 47px #1d285c solid !important;
}
.biscay--bt-47 {
  border-top: 47px #1d285c solid !important;
}
.biscay--br-47 {
  border-right: 47px #1d285c solid !important;
}
.biscay--bl-47 {
  border-left: 47px #1d285c solid !important;
}
.biscay--bb-47 {
  border-bottom: 47px #1d285c solid !important;
}
.biscay--by-47 {
  border-top: 47px #1d285c solid !important;
  border-bottom: 47px #1d285c solid !important;
}
.biscay--bx-47 {
  border-right: 47px #1d285c solid !important;
  border-left: 47px #1d285c solid !important;
}
.biscay--ba-48 {
  border: 48px #1d285c solid !important;
}
.biscay--bt-48 {
  border-top: 48px #1d285c solid !important;
}
.biscay--br-48 {
  border-right: 48px #1d285c solid !important;
}
.biscay--bl-48 {
  border-left: 48px #1d285c solid !important;
}
.biscay--bb-48 {
  border-bottom: 48px #1d285c solid !important;
}
.biscay--by-48 {
  border-top: 48px #1d285c solid !important;
  border-bottom: 48px #1d285c solid !important;
}
.biscay--bx-48 {
  border-right: 48px #1d285c solid !important;
  border-left: 48px #1d285c solid !important;
}
.biscay--ba-49 {
  border: 49px #1d285c solid !important;
}
.biscay--bt-49 {
  border-top: 49px #1d285c solid !important;
}
.biscay--br-49 {
  border-right: 49px #1d285c solid !important;
}
.biscay--bl-49 {
  border-left: 49px #1d285c solid !important;
}
.biscay--bb-49 {
  border-bottom: 49px #1d285c solid !important;
}
.biscay--by-49 {
  border-top: 49px #1d285c solid !important;
  border-bottom: 49px #1d285c solid !important;
}
.biscay--bx-49 {
  border-right: 49px #1d285c solid !important;
  border-left: 49px #1d285c solid !important;
}
.biscay--ba-50 {
  border: 50px #1d285c solid !important;
}
.biscay--bt-50 {
  border-top: 50px #1d285c solid !important;
}
.biscay--br-50 {
  border-right: 50px #1d285c solid !important;
}
.biscay--bl-50 {
  border-left: 50px #1d285c solid !important;
}
.biscay--bb-50 {
  border-bottom: 50px #1d285c solid !important;
}
.biscay--by-50 {
  border-top: 50px #1d285c solid !important;
  border-bottom: 50px #1d285c solid !important;
}
.biscay--bx-50 {
  border-right: 50px #1d285c solid !important;
  border-left: 50px #1d285c solid !important;
}
.biscay--ba-51 {
  border: 51px #1d285c solid !important;
}
.biscay--bt-51 {
  border-top: 51px #1d285c solid !important;
}
.biscay--br-51 {
  border-right: 51px #1d285c solid !important;
}
.biscay--bl-51 {
  border-left: 51px #1d285c solid !important;
}
.biscay--bb-51 {
  border-bottom: 51px #1d285c solid !important;
}
.biscay--by-51 {
  border-top: 51px #1d285c solid !important;
  border-bottom: 51px #1d285c solid !important;
}
.biscay--bx-51 {
  border-right: 51px #1d285c solid !important;
  border-left: 51px #1d285c solid !important;
}
.biscay--ba-52 {
  border: 52px #1d285c solid !important;
}
.biscay--bt-52 {
  border-top: 52px #1d285c solid !important;
}
.biscay--br-52 {
  border-right: 52px #1d285c solid !important;
}
.biscay--bl-52 {
  border-left: 52px #1d285c solid !important;
}
.biscay--bb-52 {
  border-bottom: 52px #1d285c solid !important;
}
.biscay--by-52 {
  border-top: 52px #1d285c solid !important;
  border-bottom: 52px #1d285c solid !important;
}
.biscay--bx-52 {
  border-right: 52px #1d285c solid !important;
  border-left: 52px #1d285c solid !important;
}
.biscay--ba-53 {
  border: 53px #1d285c solid !important;
}
.biscay--bt-53 {
  border-top: 53px #1d285c solid !important;
}
.biscay--br-53 {
  border-right: 53px #1d285c solid !important;
}
.biscay--bl-53 {
  border-left: 53px #1d285c solid !important;
}
.biscay--bb-53 {
  border-bottom: 53px #1d285c solid !important;
}
.biscay--by-53 {
  border-top: 53px #1d285c solid !important;
  border-bottom: 53px #1d285c solid !important;
}
.biscay--bx-53 {
  border-right: 53px #1d285c solid !important;
  border-left: 53px #1d285c solid !important;
}
.biscay--ba-54 {
  border: 54px #1d285c solid !important;
}
.biscay--bt-54 {
  border-top: 54px #1d285c solid !important;
}
.biscay--br-54 {
  border-right: 54px #1d285c solid !important;
}
.biscay--bl-54 {
  border-left: 54px #1d285c solid !important;
}
.biscay--bb-54 {
  border-bottom: 54px #1d285c solid !important;
}
.biscay--by-54 {
  border-top: 54px #1d285c solid !important;
  border-bottom: 54px #1d285c solid !important;
}
.biscay--bx-54 {
  border-right: 54px #1d285c solid !important;
  border-left: 54px #1d285c solid !important;
}
.biscay--ba-55 {
  border: 55px #1d285c solid !important;
}
.biscay--bt-55 {
  border-top: 55px #1d285c solid !important;
}
.biscay--br-55 {
  border-right: 55px #1d285c solid !important;
}
.biscay--bl-55 {
  border-left: 55px #1d285c solid !important;
}
.biscay--bb-55 {
  border-bottom: 55px #1d285c solid !important;
}
.biscay--by-55 {
  border-top: 55px #1d285c solid !important;
  border-bottom: 55px #1d285c solid !important;
}
.biscay--bx-55 {
  border-right: 55px #1d285c solid !important;
  border-left: 55px #1d285c solid !important;
}
.biscay--ba-56 {
  border: 56px #1d285c solid !important;
}
.biscay--bt-56 {
  border-top: 56px #1d285c solid !important;
}
.biscay--br-56 {
  border-right: 56px #1d285c solid !important;
}
.biscay--bl-56 {
  border-left: 56px #1d285c solid !important;
}
.biscay--bb-56 {
  border-bottom: 56px #1d285c solid !important;
}
.biscay--by-56 {
  border-top: 56px #1d285c solid !important;
  border-bottom: 56px #1d285c solid !important;
}
.biscay--bx-56 {
  border-right: 56px #1d285c solid !important;
  border-left: 56px #1d285c solid !important;
}
.biscay--ba-57 {
  border: 57px #1d285c solid !important;
}
.biscay--bt-57 {
  border-top: 57px #1d285c solid !important;
}
.biscay--br-57 {
  border-right: 57px #1d285c solid !important;
}
.biscay--bl-57 {
  border-left: 57px #1d285c solid !important;
}
.biscay--bb-57 {
  border-bottom: 57px #1d285c solid !important;
}
.biscay--by-57 {
  border-top: 57px #1d285c solid !important;
  border-bottom: 57px #1d285c solid !important;
}
.biscay--bx-57 {
  border-right: 57px #1d285c solid !important;
  border-left: 57px #1d285c solid !important;
}
.biscay--ba-58 {
  border: 58px #1d285c solid !important;
}
.biscay--bt-58 {
  border-top: 58px #1d285c solid !important;
}
.biscay--br-58 {
  border-right: 58px #1d285c solid !important;
}
.biscay--bl-58 {
  border-left: 58px #1d285c solid !important;
}
.biscay--bb-58 {
  border-bottom: 58px #1d285c solid !important;
}
.biscay--by-58 {
  border-top: 58px #1d285c solid !important;
  border-bottom: 58px #1d285c solid !important;
}
.biscay--bx-58 {
  border-right: 58px #1d285c solid !important;
  border-left: 58px #1d285c solid !important;
}
.biscay--ba-59 {
  border: 59px #1d285c solid !important;
}
.biscay--bt-59 {
  border-top: 59px #1d285c solid !important;
}
.biscay--br-59 {
  border-right: 59px #1d285c solid !important;
}
.biscay--bl-59 {
  border-left: 59px #1d285c solid !important;
}
.biscay--bb-59 {
  border-bottom: 59px #1d285c solid !important;
}
.biscay--by-59 {
  border-top: 59px #1d285c solid !important;
  border-bottom: 59px #1d285c solid !important;
}
.biscay--bx-59 {
  border-right: 59px #1d285c solid !important;
  border-left: 59px #1d285c solid !important;
}
.biscay--ba-60 {
  border: 60px #1d285c solid !important;
}
.biscay--bt-60 {
  border-top: 60px #1d285c solid !important;
}
.biscay--br-60 {
  border-right: 60px #1d285c solid !important;
}
.biscay--bl-60 {
  border-left: 60px #1d285c solid !important;
}
.biscay--bb-60 {
  border-bottom: 60px #1d285c solid !important;
}
.biscay--by-60 {
  border-top: 60px #1d285c solid !important;
  border-bottom: 60px #1d285c solid !important;
}
.biscay--bx-60 {
  border-right: 60px #1d285c solid !important;
  border-left: 60px #1d285c solid !important;
}
.biscay--ba-61 {
  border: 61px #1d285c solid !important;
}
.biscay--bt-61 {
  border-top: 61px #1d285c solid !important;
}
.biscay--br-61 {
  border-right: 61px #1d285c solid !important;
}
.biscay--bl-61 {
  border-left: 61px #1d285c solid !important;
}
.biscay--bb-61 {
  border-bottom: 61px #1d285c solid !important;
}
.biscay--by-61 {
  border-top: 61px #1d285c solid !important;
  border-bottom: 61px #1d285c solid !important;
}
.biscay--bx-61 {
  border-right: 61px #1d285c solid !important;
  border-left: 61px #1d285c solid !important;
}
.biscay--ba-62 {
  border: 62px #1d285c solid !important;
}
.biscay--bt-62 {
  border-top: 62px #1d285c solid !important;
}
.biscay--br-62 {
  border-right: 62px #1d285c solid !important;
}
.biscay--bl-62 {
  border-left: 62px #1d285c solid !important;
}
.biscay--bb-62 {
  border-bottom: 62px #1d285c solid !important;
}
.biscay--by-62 {
  border-top: 62px #1d285c solid !important;
  border-bottom: 62px #1d285c solid !important;
}
.biscay--bx-62 {
  border-right: 62px #1d285c solid !important;
  border-left: 62px #1d285c solid !important;
}
.biscay--ba-63 {
  border: 63px #1d285c solid !important;
}
.biscay--bt-63 {
  border-top: 63px #1d285c solid !important;
}
.biscay--br-63 {
  border-right: 63px #1d285c solid !important;
}
.biscay--bl-63 {
  border-left: 63px #1d285c solid !important;
}
.biscay--bb-63 {
  border-bottom: 63px #1d285c solid !important;
}
.biscay--by-63 {
  border-top: 63px #1d285c solid !important;
  border-bottom: 63px #1d285c solid !important;
}
.biscay--bx-63 {
  border-right: 63px #1d285c solid !important;
  border-left: 63px #1d285c solid !important;
}
.biscay--ba-64 {
  border: 64px #1d285c solid !important;
}
.biscay--bt-64 {
  border-top: 64px #1d285c solid !important;
}
.biscay--br-64 {
  border-right: 64px #1d285c solid !important;
}
.biscay--bl-64 {
  border-left: 64px #1d285c solid !important;
}
.biscay--bb-64 {
  border-bottom: 64px #1d285c solid !important;
}
.biscay--by-64 {
  border-top: 64px #1d285c solid !important;
  border-bottom: 64px #1d285c solid !important;
}
.biscay--bx-64 {
  border-right: 64px #1d285c solid !important;
  border-left: 64px #1d285c solid !important;
}
.biscay--ba-65 {
  border: 65px #1d285c solid !important;
}
.biscay--bt-65 {
  border-top: 65px #1d285c solid !important;
}
.biscay--br-65 {
  border-right: 65px #1d285c solid !important;
}
.biscay--bl-65 {
  border-left: 65px #1d285c solid !important;
}
.biscay--bb-65 {
  border-bottom: 65px #1d285c solid !important;
}
.biscay--by-65 {
  border-top: 65px #1d285c solid !important;
  border-bottom: 65px #1d285c solid !important;
}
.biscay--bx-65 {
  border-right: 65px #1d285c solid !important;
  border-left: 65px #1d285c solid !important;
}
.biscay--ba-66 {
  border: 66px #1d285c solid !important;
}
.biscay--bt-66 {
  border-top: 66px #1d285c solid !important;
}
.biscay--br-66 {
  border-right: 66px #1d285c solid !important;
}
.biscay--bl-66 {
  border-left: 66px #1d285c solid !important;
}
.biscay--bb-66 {
  border-bottom: 66px #1d285c solid !important;
}
.biscay--by-66 {
  border-top: 66px #1d285c solid !important;
  border-bottom: 66px #1d285c solid !important;
}
.biscay--bx-66 {
  border-right: 66px #1d285c solid !important;
  border-left: 66px #1d285c solid !important;
}
.biscay--ba-67 {
  border: 67px #1d285c solid !important;
}
.biscay--bt-67 {
  border-top: 67px #1d285c solid !important;
}
.biscay--br-67 {
  border-right: 67px #1d285c solid !important;
}
.biscay--bl-67 {
  border-left: 67px #1d285c solid !important;
}
.biscay--bb-67 {
  border-bottom: 67px #1d285c solid !important;
}
.biscay--by-67 {
  border-top: 67px #1d285c solid !important;
  border-bottom: 67px #1d285c solid !important;
}
.biscay--bx-67 {
  border-right: 67px #1d285c solid !important;
  border-left: 67px #1d285c solid !important;
}
.biscay--ba-68 {
  border: 68px #1d285c solid !important;
}
.biscay--bt-68 {
  border-top: 68px #1d285c solid !important;
}
.biscay--br-68 {
  border-right: 68px #1d285c solid !important;
}
.biscay--bl-68 {
  border-left: 68px #1d285c solid !important;
}
.biscay--bb-68 {
  border-bottom: 68px #1d285c solid !important;
}
.biscay--by-68 {
  border-top: 68px #1d285c solid !important;
  border-bottom: 68px #1d285c solid !important;
}
.biscay--bx-68 {
  border-right: 68px #1d285c solid !important;
  border-left: 68px #1d285c solid !important;
}
.biscay--ba-69 {
  border: 69px #1d285c solid !important;
}
.biscay--bt-69 {
  border-top: 69px #1d285c solid !important;
}
.biscay--br-69 {
  border-right: 69px #1d285c solid !important;
}
.biscay--bl-69 {
  border-left: 69px #1d285c solid !important;
}
.biscay--bb-69 {
  border-bottom: 69px #1d285c solid !important;
}
.biscay--by-69 {
  border-top: 69px #1d285c solid !important;
  border-bottom: 69px #1d285c solid !important;
}
.biscay--bx-69 {
  border-right: 69px #1d285c solid !important;
  border-left: 69px #1d285c solid !important;
}
.biscay--ba-70 {
  border: 70px #1d285c solid !important;
}
.biscay--bt-70 {
  border-top: 70px #1d285c solid !important;
}
.biscay--br-70 {
  border-right: 70px #1d285c solid !important;
}
.biscay--bl-70 {
  border-left: 70px #1d285c solid !important;
}
.biscay--bb-70 {
  border-bottom: 70px #1d285c solid !important;
}
.biscay--by-70 {
  border-top: 70px #1d285c solid !important;
  border-bottom: 70px #1d285c solid !important;
}
.biscay--bx-70 {
  border-right: 70px #1d285c solid !important;
  border-left: 70px #1d285c solid !important;
}
.biscay--ba-71 {
  border: 71px #1d285c solid !important;
}
.biscay--bt-71 {
  border-top: 71px #1d285c solid !important;
}
.biscay--br-71 {
  border-right: 71px #1d285c solid !important;
}
.biscay--bl-71 {
  border-left: 71px #1d285c solid !important;
}
.biscay--bb-71 {
  border-bottom: 71px #1d285c solid !important;
}
.biscay--by-71 {
  border-top: 71px #1d285c solid !important;
  border-bottom: 71px #1d285c solid !important;
}
.biscay--bx-71 {
  border-right: 71px #1d285c solid !important;
  border-left: 71px #1d285c solid !important;
}
.biscay--ba-72 {
  border: 72px #1d285c solid !important;
}
.biscay--bt-72 {
  border-top: 72px #1d285c solid !important;
}
.biscay--br-72 {
  border-right: 72px #1d285c solid !important;
}
.biscay--bl-72 {
  border-left: 72px #1d285c solid !important;
}
.biscay--bb-72 {
  border-bottom: 72px #1d285c solid !important;
}
.biscay--by-72 {
  border-top: 72px #1d285c solid !important;
  border-bottom: 72px #1d285c solid !important;
}
.biscay--bx-72 {
  border-right: 72px #1d285c solid !important;
  border-left: 72px #1d285c solid !important;
}
.biscay--ba-73 {
  border: 73px #1d285c solid !important;
}
.biscay--bt-73 {
  border-top: 73px #1d285c solid !important;
}
.biscay--br-73 {
  border-right: 73px #1d285c solid !important;
}
.biscay--bl-73 {
  border-left: 73px #1d285c solid !important;
}
.biscay--bb-73 {
  border-bottom: 73px #1d285c solid !important;
}
.biscay--by-73 {
  border-top: 73px #1d285c solid !important;
  border-bottom: 73px #1d285c solid !important;
}
.biscay--bx-73 {
  border-right: 73px #1d285c solid !important;
  border-left: 73px #1d285c solid !important;
}
.biscay--ba-74 {
  border: 74px #1d285c solid !important;
}
.biscay--bt-74 {
  border-top: 74px #1d285c solid !important;
}
.biscay--br-74 {
  border-right: 74px #1d285c solid !important;
}
.biscay--bl-74 {
  border-left: 74px #1d285c solid !important;
}
.biscay--bb-74 {
  border-bottom: 74px #1d285c solid !important;
}
.biscay--by-74 {
  border-top: 74px #1d285c solid !important;
  border-bottom: 74px #1d285c solid !important;
}
.biscay--bx-74 {
  border-right: 74px #1d285c solid !important;
  border-left: 74px #1d285c solid !important;
}
.biscay--ba-75 {
  border: 75px #1d285c solid !important;
}
.biscay--bt-75 {
  border-top: 75px #1d285c solid !important;
}
.biscay--br-75 {
  border-right: 75px #1d285c solid !important;
}
.biscay--bl-75 {
  border-left: 75px #1d285c solid !important;
}
.biscay--bb-75 {
  border-bottom: 75px #1d285c solid !important;
}
.biscay--by-75 {
  border-top: 75px #1d285c solid !important;
  border-bottom: 75px #1d285c solid !important;
}
.biscay--bx-75 {
  border-right: 75px #1d285c solid !important;
  border-left: 75px #1d285c solid !important;
}
.biscay--ba-76 {
  border: 76px #1d285c solid !important;
}
.biscay--bt-76 {
  border-top: 76px #1d285c solid !important;
}
.biscay--br-76 {
  border-right: 76px #1d285c solid !important;
}
.biscay--bl-76 {
  border-left: 76px #1d285c solid !important;
}
.biscay--bb-76 {
  border-bottom: 76px #1d285c solid !important;
}
.biscay--by-76 {
  border-top: 76px #1d285c solid !important;
  border-bottom: 76px #1d285c solid !important;
}
.biscay--bx-76 {
  border-right: 76px #1d285c solid !important;
  border-left: 76px #1d285c solid !important;
}
.biscay--ba-77 {
  border: 77px #1d285c solid !important;
}
.biscay--bt-77 {
  border-top: 77px #1d285c solid !important;
}
.biscay--br-77 {
  border-right: 77px #1d285c solid !important;
}
.biscay--bl-77 {
  border-left: 77px #1d285c solid !important;
}
.biscay--bb-77 {
  border-bottom: 77px #1d285c solid !important;
}
.biscay--by-77 {
  border-top: 77px #1d285c solid !important;
  border-bottom: 77px #1d285c solid !important;
}
.biscay--bx-77 {
  border-right: 77px #1d285c solid !important;
  border-left: 77px #1d285c solid !important;
}
.biscay--ba-78 {
  border: 78px #1d285c solid !important;
}
.biscay--bt-78 {
  border-top: 78px #1d285c solid !important;
}
.biscay--br-78 {
  border-right: 78px #1d285c solid !important;
}
.biscay--bl-78 {
  border-left: 78px #1d285c solid !important;
}
.biscay--bb-78 {
  border-bottom: 78px #1d285c solid !important;
}
.biscay--by-78 {
  border-top: 78px #1d285c solid !important;
  border-bottom: 78px #1d285c solid !important;
}
.biscay--bx-78 {
  border-right: 78px #1d285c solid !important;
  border-left: 78px #1d285c solid !important;
}
.biscay--ba-79 {
  border: 79px #1d285c solid !important;
}
.biscay--bt-79 {
  border-top: 79px #1d285c solid !important;
}
.biscay--br-79 {
  border-right: 79px #1d285c solid !important;
}
.biscay--bl-79 {
  border-left: 79px #1d285c solid !important;
}
.biscay--bb-79 {
  border-bottom: 79px #1d285c solid !important;
}
.biscay--by-79 {
  border-top: 79px #1d285c solid !important;
  border-bottom: 79px #1d285c solid !important;
}
.biscay--bx-79 {
  border-right: 79px #1d285c solid !important;
  border-left: 79px #1d285c solid !important;
}
.biscay--ba-80 {
  border: 80px #1d285c solid !important;
}
.biscay--bt-80 {
  border-top: 80px #1d285c solid !important;
}
.biscay--br-80 {
  border-right: 80px #1d285c solid !important;
}
.biscay--bl-80 {
  border-left: 80px #1d285c solid !important;
}
.biscay--bb-80 {
  border-bottom: 80px #1d285c solid !important;
}
.biscay--by-80 {
  border-top: 80px #1d285c solid !important;
  border-bottom: 80px #1d285c solid !important;
}
.biscay--bx-80 {
  border-right: 80px #1d285c solid !important;
  border-left: 80px #1d285c solid !important;
}
.biscay--ba-81 {
  border: 81px #1d285c solid !important;
}
.biscay--bt-81 {
  border-top: 81px #1d285c solid !important;
}
.biscay--br-81 {
  border-right: 81px #1d285c solid !important;
}
.biscay--bl-81 {
  border-left: 81px #1d285c solid !important;
}
.biscay--bb-81 {
  border-bottom: 81px #1d285c solid !important;
}
.biscay--by-81 {
  border-top: 81px #1d285c solid !important;
  border-bottom: 81px #1d285c solid !important;
}
.biscay--bx-81 {
  border-right: 81px #1d285c solid !important;
  border-left: 81px #1d285c solid !important;
}
.biscay--ba-82 {
  border: 82px #1d285c solid !important;
}
.biscay--bt-82 {
  border-top: 82px #1d285c solid !important;
}
.biscay--br-82 {
  border-right: 82px #1d285c solid !important;
}
.biscay--bl-82 {
  border-left: 82px #1d285c solid !important;
}
.biscay--bb-82 {
  border-bottom: 82px #1d285c solid !important;
}
.biscay--by-82 {
  border-top: 82px #1d285c solid !important;
  border-bottom: 82px #1d285c solid !important;
}
.biscay--bx-82 {
  border-right: 82px #1d285c solid !important;
  border-left: 82px #1d285c solid !important;
}
.biscay--ba-83 {
  border: 83px #1d285c solid !important;
}
.biscay--bt-83 {
  border-top: 83px #1d285c solid !important;
}
.biscay--br-83 {
  border-right: 83px #1d285c solid !important;
}
.biscay--bl-83 {
  border-left: 83px #1d285c solid !important;
}
.biscay--bb-83 {
  border-bottom: 83px #1d285c solid !important;
}
.biscay--by-83 {
  border-top: 83px #1d285c solid !important;
  border-bottom: 83px #1d285c solid !important;
}
.biscay--bx-83 {
  border-right: 83px #1d285c solid !important;
  border-left: 83px #1d285c solid !important;
}
.biscay--ba-84 {
  border: 84px #1d285c solid !important;
}
.biscay--bt-84 {
  border-top: 84px #1d285c solid !important;
}
.biscay--br-84 {
  border-right: 84px #1d285c solid !important;
}
.biscay--bl-84 {
  border-left: 84px #1d285c solid !important;
}
.biscay--bb-84 {
  border-bottom: 84px #1d285c solid !important;
}
.biscay--by-84 {
  border-top: 84px #1d285c solid !important;
  border-bottom: 84px #1d285c solid !important;
}
.biscay--bx-84 {
  border-right: 84px #1d285c solid !important;
  border-left: 84px #1d285c solid !important;
}
.biscay--ba-85 {
  border: 85px #1d285c solid !important;
}
.biscay--bt-85 {
  border-top: 85px #1d285c solid !important;
}
.biscay--br-85 {
  border-right: 85px #1d285c solid !important;
}
.biscay--bl-85 {
  border-left: 85px #1d285c solid !important;
}
.biscay--bb-85 {
  border-bottom: 85px #1d285c solid !important;
}
.biscay--by-85 {
  border-top: 85px #1d285c solid !important;
  border-bottom: 85px #1d285c solid !important;
}
.biscay--bx-85 {
  border-right: 85px #1d285c solid !important;
  border-left: 85px #1d285c solid !important;
}
.biscay--ba-86 {
  border: 86px #1d285c solid !important;
}
.biscay--bt-86 {
  border-top: 86px #1d285c solid !important;
}
.biscay--br-86 {
  border-right: 86px #1d285c solid !important;
}
.biscay--bl-86 {
  border-left: 86px #1d285c solid !important;
}
.biscay--bb-86 {
  border-bottom: 86px #1d285c solid !important;
}
.biscay--by-86 {
  border-top: 86px #1d285c solid !important;
  border-bottom: 86px #1d285c solid !important;
}
.biscay--bx-86 {
  border-right: 86px #1d285c solid !important;
  border-left: 86px #1d285c solid !important;
}
.biscay--ba-87 {
  border: 87px #1d285c solid !important;
}
.biscay--bt-87 {
  border-top: 87px #1d285c solid !important;
}
.biscay--br-87 {
  border-right: 87px #1d285c solid !important;
}
.biscay--bl-87 {
  border-left: 87px #1d285c solid !important;
}
.biscay--bb-87 {
  border-bottom: 87px #1d285c solid !important;
}
.biscay--by-87 {
  border-top: 87px #1d285c solid !important;
  border-bottom: 87px #1d285c solid !important;
}
.biscay--bx-87 {
  border-right: 87px #1d285c solid !important;
  border-left: 87px #1d285c solid !important;
}
.biscay--ba-88 {
  border: 88px #1d285c solid !important;
}
.biscay--bt-88 {
  border-top: 88px #1d285c solid !important;
}
.biscay--br-88 {
  border-right: 88px #1d285c solid !important;
}
.biscay--bl-88 {
  border-left: 88px #1d285c solid !important;
}
.biscay--bb-88 {
  border-bottom: 88px #1d285c solid !important;
}
.biscay--by-88 {
  border-top: 88px #1d285c solid !important;
  border-bottom: 88px #1d285c solid !important;
}
.biscay--bx-88 {
  border-right: 88px #1d285c solid !important;
  border-left: 88px #1d285c solid !important;
}
.biscay--ba-89 {
  border: 89px #1d285c solid !important;
}
.biscay--bt-89 {
  border-top: 89px #1d285c solid !important;
}
.biscay--br-89 {
  border-right: 89px #1d285c solid !important;
}
.biscay--bl-89 {
  border-left: 89px #1d285c solid !important;
}
.biscay--bb-89 {
  border-bottom: 89px #1d285c solid !important;
}
.biscay--by-89 {
  border-top: 89px #1d285c solid !important;
  border-bottom: 89px #1d285c solid !important;
}
.biscay--bx-89 {
  border-right: 89px #1d285c solid !important;
  border-left: 89px #1d285c solid !important;
}
.biscay--ba-90 {
  border: 90px #1d285c solid !important;
}
.biscay--bt-90 {
  border-top: 90px #1d285c solid !important;
}
.biscay--br-90 {
  border-right: 90px #1d285c solid !important;
}
.biscay--bl-90 {
  border-left: 90px #1d285c solid !important;
}
.biscay--bb-90 {
  border-bottom: 90px #1d285c solid !important;
}
.biscay--by-90 {
  border-top: 90px #1d285c solid !important;
  border-bottom: 90px #1d285c solid !important;
}
.biscay--bx-90 {
  border-right: 90px #1d285c solid !important;
  border-left: 90px #1d285c solid !important;
}
.biscay--ba-91 {
  border: 91px #1d285c solid !important;
}
.biscay--bt-91 {
  border-top: 91px #1d285c solid !important;
}
.biscay--br-91 {
  border-right: 91px #1d285c solid !important;
}
.biscay--bl-91 {
  border-left: 91px #1d285c solid !important;
}
.biscay--bb-91 {
  border-bottom: 91px #1d285c solid !important;
}
.biscay--by-91 {
  border-top: 91px #1d285c solid !important;
  border-bottom: 91px #1d285c solid !important;
}
.biscay--bx-91 {
  border-right: 91px #1d285c solid !important;
  border-left: 91px #1d285c solid !important;
}
.biscay--ba-92 {
  border: 92px #1d285c solid !important;
}
.biscay--bt-92 {
  border-top: 92px #1d285c solid !important;
}
.biscay--br-92 {
  border-right: 92px #1d285c solid !important;
}
.biscay--bl-92 {
  border-left: 92px #1d285c solid !important;
}
.biscay--bb-92 {
  border-bottom: 92px #1d285c solid !important;
}
.biscay--by-92 {
  border-top: 92px #1d285c solid !important;
  border-bottom: 92px #1d285c solid !important;
}
.biscay--bx-92 {
  border-right: 92px #1d285c solid !important;
  border-left: 92px #1d285c solid !important;
}
.biscay--ba-93 {
  border: 93px #1d285c solid !important;
}
.biscay--bt-93 {
  border-top: 93px #1d285c solid !important;
}
.biscay--br-93 {
  border-right: 93px #1d285c solid !important;
}
.biscay--bl-93 {
  border-left: 93px #1d285c solid !important;
}
.biscay--bb-93 {
  border-bottom: 93px #1d285c solid !important;
}
.biscay--by-93 {
  border-top: 93px #1d285c solid !important;
  border-bottom: 93px #1d285c solid !important;
}
.biscay--bx-93 {
  border-right: 93px #1d285c solid !important;
  border-left: 93px #1d285c solid !important;
}
.biscay--ba-94 {
  border: 94px #1d285c solid !important;
}
.biscay--bt-94 {
  border-top: 94px #1d285c solid !important;
}
.biscay--br-94 {
  border-right: 94px #1d285c solid !important;
}
.biscay--bl-94 {
  border-left: 94px #1d285c solid !important;
}
.biscay--bb-94 {
  border-bottom: 94px #1d285c solid !important;
}
.biscay--by-94 {
  border-top: 94px #1d285c solid !important;
  border-bottom: 94px #1d285c solid !important;
}
.biscay--bx-94 {
  border-right: 94px #1d285c solid !important;
  border-left: 94px #1d285c solid !important;
}
.biscay--ba-95 {
  border: 95px #1d285c solid !important;
}
.biscay--bt-95 {
  border-top: 95px #1d285c solid !important;
}
.biscay--br-95 {
  border-right: 95px #1d285c solid !important;
}
.biscay--bl-95 {
  border-left: 95px #1d285c solid !important;
}
.biscay--bb-95 {
  border-bottom: 95px #1d285c solid !important;
}
.biscay--by-95 {
  border-top: 95px #1d285c solid !important;
  border-bottom: 95px #1d285c solid !important;
}
.biscay--bx-95 {
  border-right: 95px #1d285c solid !important;
  border-left: 95px #1d285c solid !important;
}
.biscay--ba-96 {
  border: 96px #1d285c solid !important;
}
.biscay--bt-96 {
  border-top: 96px #1d285c solid !important;
}
.biscay--br-96 {
  border-right: 96px #1d285c solid !important;
}
.biscay--bl-96 {
  border-left: 96px #1d285c solid !important;
}
.biscay--bb-96 {
  border-bottom: 96px #1d285c solid !important;
}
.biscay--by-96 {
  border-top: 96px #1d285c solid !important;
  border-bottom: 96px #1d285c solid !important;
}
.biscay--bx-96 {
  border-right: 96px #1d285c solid !important;
  border-left: 96px #1d285c solid !important;
}
.biscay--ba-97 {
  border: 97px #1d285c solid !important;
}
.biscay--bt-97 {
  border-top: 97px #1d285c solid !important;
}
.biscay--br-97 {
  border-right: 97px #1d285c solid !important;
}
.biscay--bl-97 {
  border-left: 97px #1d285c solid !important;
}
.biscay--bb-97 {
  border-bottom: 97px #1d285c solid !important;
}
.biscay--by-97 {
  border-top: 97px #1d285c solid !important;
  border-bottom: 97px #1d285c solid !important;
}
.biscay--bx-97 {
  border-right: 97px #1d285c solid !important;
  border-left: 97px #1d285c solid !important;
}
.biscay--ba-98 {
  border: 98px #1d285c solid !important;
}
.biscay--bt-98 {
  border-top: 98px #1d285c solid !important;
}
.biscay--br-98 {
  border-right: 98px #1d285c solid !important;
}
.biscay--bl-98 {
  border-left: 98px #1d285c solid !important;
}
.biscay--bb-98 {
  border-bottom: 98px #1d285c solid !important;
}
.biscay--by-98 {
  border-top: 98px #1d285c solid !important;
  border-bottom: 98px #1d285c solid !important;
}
.biscay--bx-98 {
  border-right: 98px #1d285c solid !important;
  border-left: 98px #1d285c solid !important;
}
.biscay--ba-99 {
  border: 99px #1d285c solid !important;
}
.biscay--bt-99 {
  border-top: 99px #1d285c solid !important;
}
.biscay--br-99 {
  border-right: 99px #1d285c solid !important;
}
.biscay--bl-99 {
  border-left: 99px #1d285c solid !important;
}
.biscay--bb-99 {
  border-bottom: 99px #1d285c solid !important;
}
.biscay--by-99 {
  border-top: 99px #1d285c solid !important;
  border-bottom: 99px #1d285c solid !important;
}
.biscay--bx-99 {
  border-right: 99px #1d285c solid !important;
  border-left: 99px #1d285c solid !important;
}
.biscay--ba-100 {
  border: 100px #1d285c solid !important;
}
.biscay--bt-100 {
  border-top: 100px #1d285c solid !important;
}
.biscay--br-100 {
  border-right: 100px #1d285c solid !important;
}
.biscay--bl-100 {
  border-left: 100px #1d285c solid !important;
}
.biscay--bb-100 {
  border-bottom: 100px #1d285c solid !important;
}
.biscay--by-100 {
  border-top: 100px #1d285c solid !important;
  border-bottom: 100px #1d285c solid !important;
}
.biscay--bx-100 {
  border-right: 100px #1d285c solid !important;
  border-left: 100px #1d285c solid !important;
}
.tuna--ba-1 {
  border: 1px #34313c solid !important;
}
.tuna--bt-1 {
  border-top: 1px #34313c solid !important;
}
.tuna--br-1 {
  border-right: 1px #34313c solid !important;
}
.tuna--bl-1 {
  border-left: 1px #34313c solid !important;
}
.tuna--bb-1 {
  border-bottom: 1px #34313c solid !important;
}
.tuna--by-1 {
  border-top: 1px #34313c solid !important;
  border-bottom: 1px #34313c solid !important;
}
.tuna--bx-1 {
  border-right: 1px #34313c solid !important;
  border-left: 1px #34313c solid !important;
}
.tuna--ba-2 {
  border: 2px #34313c solid !important;
}
.tuna--bt-2 {
  border-top: 2px #34313c solid !important;
}
.tuna--br-2 {
  border-right: 2px #34313c solid !important;
}
.tuna--bl-2 {
  border-left: 2px #34313c solid !important;
}
.tuna--bb-2 {
  border-bottom: 2px #34313c solid !important;
}
.tuna--by-2 {
  border-top: 2px #34313c solid !important;
  border-bottom: 2px #34313c solid !important;
}
.tuna--bx-2 {
  border-right: 2px #34313c solid !important;
  border-left: 2px #34313c solid !important;
}
.tuna--ba-3 {
  border: 3px #34313c solid !important;
}
.tuna--bt-3 {
  border-top: 3px #34313c solid !important;
}
.tuna--br-3 {
  border-right: 3px #34313c solid !important;
}
.tuna--bl-3 {
  border-left: 3px #34313c solid !important;
}
.tuna--bb-3 {
  border-bottom: 3px #34313c solid !important;
}
.tuna--by-3 {
  border-top: 3px #34313c solid !important;
  border-bottom: 3px #34313c solid !important;
}
.tuna--bx-3 {
  border-right: 3px #34313c solid !important;
  border-left: 3px #34313c solid !important;
}
.tuna--ba-4 {
  border: 4px #34313c solid !important;
}
.tuna--bt-4 {
  border-top: 4px #34313c solid !important;
}
.tuna--br-4 {
  border-right: 4px #34313c solid !important;
}
.tuna--bl-4 {
  border-left: 4px #34313c solid !important;
}
.tuna--bb-4 {
  border-bottom: 4px #34313c solid !important;
}
.tuna--by-4 {
  border-top: 4px #34313c solid !important;
  border-bottom: 4px #34313c solid !important;
}
.tuna--bx-4 {
  border-right: 4px #34313c solid !important;
  border-left: 4px #34313c solid !important;
}
.tuna--ba-5 {
  border: 5px #34313c solid !important;
}
.tuna--bt-5 {
  border-top: 5px #34313c solid !important;
}
.tuna--br-5 {
  border-right: 5px #34313c solid !important;
}
.tuna--bl-5 {
  border-left: 5px #34313c solid !important;
}
.tuna--bb-5 {
  border-bottom: 5px #34313c solid !important;
}
.tuna--by-5 {
  border-top: 5px #34313c solid !important;
  border-bottom: 5px #34313c solid !important;
}
.tuna--bx-5 {
  border-right: 5px #34313c solid !important;
  border-left: 5px #34313c solid !important;
}
.tuna--ba-6 {
  border: 6px #34313c solid !important;
}
.tuna--bt-6 {
  border-top: 6px #34313c solid !important;
}
.tuna--br-6 {
  border-right: 6px #34313c solid !important;
}
.tuna--bl-6 {
  border-left: 6px #34313c solid !important;
}
.tuna--bb-6 {
  border-bottom: 6px #34313c solid !important;
}
.tuna--by-6 {
  border-top: 6px #34313c solid !important;
  border-bottom: 6px #34313c solid !important;
}
.tuna--bx-6 {
  border-right: 6px #34313c solid !important;
  border-left: 6px #34313c solid !important;
}
.tuna--ba-7 {
  border: 7px #34313c solid !important;
}
.tuna--bt-7 {
  border-top: 7px #34313c solid !important;
}
.tuna--br-7 {
  border-right: 7px #34313c solid !important;
}
.tuna--bl-7 {
  border-left: 7px #34313c solid !important;
}
.tuna--bb-7 {
  border-bottom: 7px #34313c solid !important;
}
.tuna--by-7 {
  border-top: 7px #34313c solid !important;
  border-bottom: 7px #34313c solid !important;
}
.tuna--bx-7 {
  border-right: 7px #34313c solid !important;
  border-left: 7px #34313c solid !important;
}
.tuna--ba-8 {
  border: 8px #34313c solid !important;
}
.tuna--bt-8 {
  border-top: 8px #34313c solid !important;
}
.tuna--br-8 {
  border-right: 8px #34313c solid !important;
}
.tuna--bl-8 {
  border-left: 8px #34313c solid !important;
}
.tuna--bb-8 {
  border-bottom: 8px #34313c solid !important;
}
.tuna--by-8 {
  border-top: 8px #34313c solid !important;
  border-bottom: 8px #34313c solid !important;
}
.tuna--bx-8 {
  border-right: 8px #34313c solid !important;
  border-left: 8px #34313c solid !important;
}
.tuna--ba-9 {
  border: 9px #34313c solid !important;
}
.tuna--bt-9 {
  border-top: 9px #34313c solid !important;
}
.tuna--br-9 {
  border-right: 9px #34313c solid !important;
}
.tuna--bl-9 {
  border-left: 9px #34313c solid !important;
}
.tuna--bb-9 {
  border-bottom: 9px #34313c solid !important;
}
.tuna--by-9 {
  border-top: 9px #34313c solid !important;
  border-bottom: 9px #34313c solid !important;
}
.tuna--bx-9 {
  border-right: 9px #34313c solid !important;
  border-left: 9px #34313c solid !important;
}
.tuna--ba-10 {
  border: 10px #34313c solid !important;
}
.tuna--bt-10 {
  border-top: 10px #34313c solid !important;
}
.tuna--br-10 {
  border-right: 10px #34313c solid !important;
}
.tuna--bl-10 {
  border-left: 10px #34313c solid !important;
}
.tuna--bb-10 {
  border-bottom: 10px #34313c solid !important;
}
.tuna--by-10 {
  border-top: 10px #34313c solid !important;
  border-bottom: 10px #34313c solid !important;
}
.tuna--bx-10 {
  border-right: 10px #34313c solid !important;
  border-left: 10px #34313c solid !important;
}
.tuna--ba-11 {
  border: 11px #34313c solid !important;
}
.tuna--bt-11 {
  border-top: 11px #34313c solid !important;
}
.tuna--br-11 {
  border-right: 11px #34313c solid !important;
}
.tuna--bl-11 {
  border-left: 11px #34313c solid !important;
}
.tuna--bb-11 {
  border-bottom: 11px #34313c solid !important;
}
.tuna--by-11 {
  border-top: 11px #34313c solid !important;
  border-bottom: 11px #34313c solid !important;
}
.tuna--bx-11 {
  border-right: 11px #34313c solid !important;
  border-left: 11px #34313c solid !important;
}
.tuna--ba-12 {
  border: 12px #34313c solid !important;
}
.tuna--bt-12 {
  border-top: 12px #34313c solid !important;
}
.tuna--br-12 {
  border-right: 12px #34313c solid !important;
}
.tuna--bl-12 {
  border-left: 12px #34313c solid !important;
}
.tuna--bb-12 {
  border-bottom: 12px #34313c solid !important;
}
.tuna--by-12 {
  border-top: 12px #34313c solid !important;
  border-bottom: 12px #34313c solid !important;
}
.tuna--bx-12 {
  border-right: 12px #34313c solid !important;
  border-left: 12px #34313c solid !important;
}
.tuna--ba-13 {
  border: 13px #34313c solid !important;
}
.tuna--bt-13 {
  border-top: 13px #34313c solid !important;
}
.tuna--br-13 {
  border-right: 13px #34313c solid !important;
}
.tuna--bl-13 {
  border-left: 13px #34313c solid !important;
}
.tuna--bb-13 {
  border-bottom: 13px #34313c solid !important;
}
.tuna--by-13 {
  border-top: 13px #34313c solid !important;
  border-bottom: 13px #34313c solid !important;
}
.tuna--bx-13 {
  border-right: 13px #34313c solid !important;
  border-left: 13px #34313c solid !important;
}
.tuna--ba-14 {
  border: 14px #34313c solid !important;
}
.tuna--bt-14 {
  border-top: 14px #34313c solid !important;
}
.tuna--br-14 {
  border-right: 14px #34313c solid !important;
}
.tuna--bl-14 {
  border-left: 14px #34313c solid !important;
}
.tuna--bb-14 {
  border-bottom: 14px #34313c solid !important;
}
.tuna--by-14 {
  border-top: 14px #34313c solid !important;
  border-bottom: 14px #34313c solid !important;
}
.tuna--bx-14 {
  border-right: 14px #34313c solid !important;
  border-left: 14px #34313c solid !important;
}
.tuna--ba-15 {
  border: 15px #34313c solid !important;
}
.tuna--bt-15 {
  border-top: 15px #34313c solid !important;
}
.tuna--br-15 {
  border-right: 15px #34313c solid !important;
}
.tuna--bl-15 {
  border-left: 15px #34313c solid !important;
}
.tuna--bb-15 {
  border-bottom: 15px #34313c solid !important;
}
.tuna--by-15 {
  border-top: 15px #34313c solid !important;
  border-bottom: 15px #34313c solid !important;
}
.tuna--bx-15 {
  border-right: 15px #34313c solid !important;
  border-left: 15px #34313c solid !important;
}
.tuna--ba-16 {
  border: 16px #34313c solid !important;
}
.tuna--bt-16 {
  border-top: 16px #34313c solid !important;
}
.tuna--br-16 {
  border-right: 16px #34313c solid !important;
}
.tuna--bl-16 {
  border-left: 16px #34313c solid !important;
}
.tuna--bb-16 {
  border-bottom: 16px #34313c solid !important;
}
.tuna--by-16 {
  border-top: 16px #34313c solid !important;
  border-bottom: 16px #34313c solid !important;
}
.tuna--bx-16 {
  border-right: 16px #34313c solid !important;
  border-left: 16px #34313c solid !important;
}
.tuna--ba-17 {
  border: 17px #34313c solid !important;
}
.tuna--bt-17 {
  border-top: 17px #34313c solid !important;
}
.tuna--br-17 {
  border-right: 17px #34313c solid !important;
}
.tuna--bl-17 {
  border-left: 17px #34313c solid !important;
}
.tuna--bb-17 {
  border-bottom: 17px #34313c solid !important;
}
.tuna--by-17 {
  border-top: 17px #34313c solid !important;
  border-bottom: 17px #34313c solid !important;
}
.tuna--bx-17 {
  border-right: 17px #34313c solid !important;
  border-left: 17px #34313c solid !important;
}
.tuna--ba-18 {
  border: 18px #34313c solid !important;
}
.tuna--bt-18 {
  border-top: 18px #34313c solid !important;
}
.tuna--br-18 {
  border-right: 18px #34313c solid !important;
}
.tuna--bl-18 {
  border-left: 18px #34313c solid !important;
}
.tuna--bb-18 {
  border-bottom: 18px #34313c solid !important;
}
.tuna--by-18 {
  border-top: 18px #34313c solid !important;
  border-bottom: 18px #34313c solid !important;
}
.tuna--bx-18 {
  border-right: 18px #34313c solid !important;
  border-left: 18px #34313c solid !important;
}
.tuna--ba-19 {
  border: 19px #34313c solid !important;
}
.tuna--bt-19 {
  border-top: 19px #34313c solid !important;
}
.tuna--br-19 {
  border-right: 19px #34313c solid !important;
}
.tuna--bl-19 {
  border-left: 19px #34313c solid !important;
}
.tuna--bb-19 {
  border-bottom: 19px #34313c solid !important;
}
.tuna--by-19 {
  border-top: 19px #34313c solid !important;
  border-bottom: 19px #34313c solid !important;
}
.tuna--bx-19 {
  border-right: 19px #34313c solid !important;
  border-left: 19px #34313c solid !important;
}
.tuna--ba-20 {
  border: 20px #34313c solid !important;
}
.tuna--bt-20 {
  border-top: 20px #34313c solid !important;
}
.tuna--br-20 {
  border-right: 20px #34313c solid !important;
}
.tuna--bl-20 {
  border-left: 20px #34313c solid !important;
}
.tuna--bb-20 {
  border-bottom: 20px #34313c solid !important;
}
.tuna--by-20 {
  border-top: 20px #34313c solid !important;
  border-bottom: 20px #34313c solid !important;
}
.tuna--bx-20 {
  border-right: 20px #34313c solid !important;
  border-left: 20px #34313c solid !important;
}
.tuna--ba-21 {
  border: 21px #34313c solid !important;
}
.tuna--bt-21 {
  border-top: 21px #34313c solid !important;
}
.tuna--br-21 {
  border-right: 21px #34313c solid !important;
}
.tuna--bl-21 {
  border-left: 21px #34313c solid !important;
}
.tuna--bb-21 {
  border-bottom: 21px #34313c solid !important;
}
.tuna--by-21 {
  border-top: 21px #34313c solid !important;
  border-bottom: 21px #34313c solid !important;
}
.tuna--bx-21 {
  border-right: 21px #34313c solid !important;
  border-left: 21px #34313c solid !important;
}
.tuna--ba-22 {
  border: 22px #34313c solid !important;
}
.tuna--bt-22 {
  border-top: 22px #34313c solid !important;
}
.tuna--br-22 {
  border-right: 22px #34313c solid !important;
}
.tuna--bl-22 {
  border-left: 22px #34313c solid !important;
}
.tuna--bb-22 {
  border-bottom: 22px #34313c solid !important;
}
.tuna--by-22 {
  border-top: 22px #34313c solid !important;
  border-bottom: 22px #34313c solid !important;
}
.tuna--bx-22 {
  border-right: 22px #34313c solid !important;
  border-left: 22px #34313c solid !important;
}
.tuna--ba-23 {
  border: 23px #34313c solid !important;
}
.tuna--bt-23 {
  border-top: 23px #34313c solid !important;
}
.tuna--br-23 {
  border-right: 23px #34313c solid !important;
}
.tuna--bl-23 {
  border-left: 23px #34313c solid !important;
}
.tuna--bb-23 {
  border-bottom: 23px #34313c solid !important;
}
.tuna--by-23 {
  border-top: 23px #34313c solid !important;
  border-bottom: 23px #34313c solid !important;
}
.tuna--bx-23 {
  border-right: 23px #34313c solid !important;
  border-left: 23px #34313c solid !important;
}
.tuna--ba-24 {
  border: 24px #34313c solid !important;
}
.tuna--bt-24 {
  border-top: 24px #34313c solid !important;
}
.tuna--br-24 {
  border-right: 24px #34313c solid !important;
}
.tuna--bl-24 {
  border-left: 24px #34313c solid !important;
}
.tuna--bb-24 {
  border-bottom: 24px #34313c solid !important;
}
.tuna--by-24 {
  border-top: 24px #34313c solid !important;
  border-bottom: 24px #34313c solid !important;
}
.tuna--bx-24 {
  border-right: 24px #34313c solid !important;
  border-left: 24px #34313c solid !important;
}
.tuna--ba-25 {
  border: 25px #34313c solid !important;
}
.tuna--bt-25 {
  border-top: 25px #34313c solid !important;
}
.tuna--br-25 {
  border-right: 25px #34313c solid !important;
}
.tuna--bl-25 {
  border-left: 25px #34313c solid !important;
}
.tuna--bb-25 {
  border-bottom: 25px #34313c solid !important;
}
.tuna--by-25 {
  border-top: 25px #34313c solid !important;
  border-bottom: 25px #34313c solid !important;
}
.tuna--bx-25 {
  border-right: 25px #34313c solid !important;
  border-left: 25px #34313c solid !important;
}
.tuna--ba-26 {
  border: 26px #34313c solid !important;
}
.tuna--bt-26 {
  border-top: 26px #34313c solid !important;
}
.tuna--br-26 {
  border-right: 26px #34313c solid !important;
}
.tuna--bl-26 {
  border-left: 26px #34313c solid !important;
}
.tuna--bb-26 {
  border-bottom: 26px #34313c solid !important;
}
.tuna--by-26 {
  border-top: 26px #34313c solid !important;
  border-bottom: 26px #34313c solid !important;
}
.tuna--bx-26 {
  border-right: 26px #34313c solid !important;
  border-left: 26px #34313c solid !important;
}
.tuna--ba-27 {
  border: 27px #34313c solid !important;
}
.tuna--bt-27 {
  border-top: 27px #34313c solid !important;
}
.tuna--br-27 {
  border-right: 27px #34313c solid !important;
}
.tuna--bl-27 {
  border-left: 27px #34313c solid !important;
}
.tuna--bb-27 {
  border-bottom: 27px #34313c solid !important;
}
.tuna--by-27 {
  border-top: 27px #34313c solid !important;
  border-bottom: 27px #34313c solid !important;
}
.tuna--bx-27 {
  border-right: 27px #34313c solid !important;
  border-left: 27px #34313c solid !important;
}
.tuna--ba-28 {
  border: 28px #34313c solid !important;
}
.tuna--bt-28 {
  border-top: 28px #34313c solid !important;
}
.tuna--br-28 {
  border-right: 28px #34313c solid !important;
}
.tuna--bl-28 {
  border-left: 28px #34313c solid !important;
}
.tuna--bb-28 {
  border-bottom: 28px #34313c solid !important;
}
.tuna--by-28 {
  border-top: 28px #34313c solid !important;
  border-bottom: 28px #34313c solid !important;
}
.tuna--bx-28 {
  border-right: 28px #34313c solid !important;
  border-left: 28px #34313c solid !important;
}
.tuna--ba-29 {
  border: 29px #34313c solid !important;
}
.tuna--bt-29 {
  border-top: 29px #34313c solid !important;
}
.tuna--br-29 {
  border-right: 29px #34313c solid !important;
}
.tuna--bl-29 {
  border-left: 29px #34313c solid !important;
}
.tuna--bb-29 {
  border-bottom: 29px #34313c solid !important;
}
.tuna--by-29 {
  border-top: 29px #34313c solid !important;
  border-bottom: 29px #34313c solid !important;
}
.tuna--bx-29 {
  border-right: 29px #34313c solid !important;
  border-left: 29px #34313c solid !important;
}
.tuna--ba-30 {
  border: 30px #34313c solid !important;
}
.tuna--bt-30 {
  border-top: 30px #34313c solid !important;
}
.tuna--br-30 {
  border-right: 30px #34313c solid !important;
}
.tuna--bl-30 {
  border-left: 30px #34313c solid !important;
}
.tuna--bb-30 {
  border-bottom: 30px #34313c solid !important;
}
.tuna--by-30 {
  border-top: 30px #34313c solid !important;
  border-bottom: 30px #34313c solid !important;
}
.tuna--bx-30 {
  border-right: 30px #34313c solid !important;
  border-left: 30px #34313c solid !important;
}
.tuna--ba-31 {
  border: 31px #34313c solid !important;
}
.tuna--bt-31 {
  border-top: 31px #34313c solid !important;
}
.tuna--br-31 {
  border-right: 31px #34313c solid !important;
}
.tuna--bl-31 {
  border-left: 31px #34313c solid !important;
}
.tuna--bb-31 {
  border-bottom: 31px #34313c solid !important;
}
.tuna--by-31 {
  border-top: 31px #34313c solid !important;
  border-bottom: 31px #34313c solid !important;
}
.tuna--bx-31 {
  border-right: 31px #34313c solid !important;
  border-left: 31px #34313c solid !important;
}
.tuna--ba-32 {
  border: 32px #34313c solid !important;
}
.tuna--bt-32 {
  border-top: 32px #34313c solid !important;
}
.tuna--br-32 {
  border-right: 32px #34313c solid !important;
}
.tuna--bl-32 {
  border-left: 32px #34313c solid !important;
}
.tuna--bb-32 {
  border-bottom: 32px #34313c solid !important;
}
.tuna--by-32 {
  border-top: 32px #34313c solid !important;
  border-bottom: 32px #34313c solid !important;
}
.tuna--bx-32 {
  border-right: 32px #34313c solid !important;
  border-left: 32px #34313c solid !important;
}
.tuna--ba-33 {
  border: 33px #34313c solid !important;
}
.tuna--bt-33 {
  border-top: 33px #34313c solid !important;
}
.tuna--br-33 {
  border-right: 33px #34313c solid !important;
}
.tuna--bl-33 {
  border-left: 33px #34313c solid !important;
}
.tuna--bb-33 {
  border-bottom: 33px #34313c solid !important;
}
.tuna--by-33 {
  border-top: 33px #34313c solid !important;
  border-bottom: 33px #34313c solid !important;
}
.tuna--bx-33 {
  border-right: 33px #34313c solid !important;
  border-left: 33px #34313c solid !important;
}
.tuna--ba-34 {
  border: 34px #34313c solid !important;
}
.tuna--bt-34 {
  border-top: 34px #34313c solid !important;
}
.tuna--br-34 {
  border-right: 34px #34313c solid !important;
}
.tuna--bl-34 {
  border-left: 34px #34313c solid !important;
}
.tuna--bb-34 {
  border-bottom: 34px #34313c solid !important;
}
.tuna--by-34 {
  border-top: 34px #34313c solid !important;
  border-bottom: 34px #34313c solid !important;
}
.tuna--bx-34 {
  border-right: 34px #34313c solid !important;
  border-left: 34px #34313c solid !important;
}
.tuna--ba-35 {
  border: 35px #34313c solid !important;
}
.tuna--bt-35 {
  border-top: 35px #34313c solid !important;
}
.tuna--br-35 {
  border-right: 35px #34313c solid !important;
}
.tuna--bl-35 {
  border-left: 35px #34313c solid !important;
}
.tuna--bb-35 {
  border-bottom: 35px #34313c solid !important;
}
.tuna--by-35 {
  border-top: 35px #34313c solid !important;
  border-bottom: 35px #34313c solid !important;
}
.tuna--bx-35 {
  border-right: 35px #34313c solid !important;
  border-left: 35px #34313c solid !important;
}
.tuna--ba-36 {
  border: 36px #34313c solid !important;
}
.tuna--bt-36 {
  border-top: 36px #34313c solid !important;
}
.tuna--br-36 {
  border-right: 36px #34313c solid !important;
}
.tuna--bl-36 {
  border-left: 36px #34313c solid !important;
}
.tuna--bb-36 {
  border-bottom: 36px #34313c solid !important;
}
.tuna--by-36 {
  border-top: 36px #34313c solid !important;
  border-bottom: 36px #34313c solid !important;
}
.tuna--bx-36 {
  border-right: 36px #34313c solid !important;
  border-left: 36px #34313c solid !important;
}
.tuna--ba-37 {
  border: 37px #34313c solid !important;
}
.tuna--bt-37 {
  border-top: 37px #34313c solid !important;
}
.tuna--br-37 {
  border-right: 37px #34313c solid !important;
}
.tuna--bl-37 {
  border-left: 37px #34313c solid !important;
}
.tuna--bb-37 {
  border-bottom: 37px #34313c solid !important;
}
.tuna--by-37 {
  border-top: 37px #34313c solid !important;
  border-bottom: 37px #34313c solid !important;
}
.tuna--bx-37 {
  border-right: 37px #34313c solid !important;
  border-left: 37px #34313c solid !important;
}
.tuna--ba-38 {
  border: 38px #34313c solid !important;
}
.tuna--bt-38 {
  border-top: 38px #34313c solid !important;
}
.tuna--br-38 {
  border-right: 38px #34313c solid !important;
}
.tuna--bl-38 {
  border-left: 38px #34313c solid !important;
}
.tuna--bb-38 {
  border-bottom: 38px #34313c solid !important;
}
.tuna--by-38 {
  border-top: 38px #34313c solid !important;
  border-bottom: 38px #34313c solid !important;
}
.tuna--bx-38 {
  border-right: 38px #34313c solid !important;
  border-left: 38px #34313c solid !important;
}
.tuna--ba-39 {
  border: 39px #34313c solid !important;
}
.tuna--bt-39 {
  border-top: 39px #34313c solid !important;
}
.tuna--br-39 {
  border-right: 39px #34313c solid !important;
}
.tuna--bl-39 {
  border-left: 39px #34313c solid !important;
}
.tuna--bb-39 {
  border-bottom: 39px #34313c solid !important;
}
.tuna--by-39 {
  border-top: 39px #34313c solid !important;
  border-bottom: 39px #34313c solid !important;
}
.tuna--bx-39 {
  border-right: 39px #34313c solid !important;
  border-left: 39px #34313c solid !important;
}
.tuna--ba-40 {
  border: 40px #34313c solid !important;
}
.tuna--bt-40 {
  border-top: 40px #34313c solid !important;
}
.tuna--br-40 {
  border-right: 40px #34313c solid !important;
}
.tuna--bl-40 {
  border-left: 40px #34313c solid !important;
}
.tuna--bb-40 {
  border-bottom: 40px #34313c solid !important;
}
.tuna--by-40 {
  border-top: 40px #34313c solid !important;
  border-bottom: 40px #34313c solid !important;
}
.tuna--bx-40 {
  border-right: 40px #34313c solid !important;
  border-left: 40px #34313c solid !important;
}
.tuna--ba-41 {
  border: 41px #34313c solid !important;
}
.tuna--bt-41 {
  border-top: 41px #34313c solid !important;
}
.tuna--br-41 {
  border-right: 41px #34313c solid !important;
}
.tuna--bl-41 {
  border-left: 41px #34313c solid !important;
}
.tuna--bb-41 {
  border-bottom: 41px #34313c solid !important;
}
.tuna--by-41 {
  border-top: 41px #34313c solid !important;
  border-bottom: 41px #34313c solid !important;
}
.tuna--bx-41 {
  border-right: 41px #34313c solid !important;
  border-left: 41px #34313c solid !important;
}
.tuna--ba-42 {
  border: 42px #34313c solid !important;
}
.tuna--bt-42 {
  border-top: 42px #34313c solid !important;
}
.tuna--br-42 {
  border-right: 42px #34313c solid !important;
}
.tuna--bl-42 {
  border-left: 42px #34313c solid !important;
}
.tuna--bb-42 {
  border-bottom: 42px #34313c solid !important;
}
.tuna--by-42 {
  border-top: 42px #34313c solid !important;
  border-bottom: 42px #34313c solid !important;
}
.tuna--bx-42 {
  border-right: 42px #34313c solid !important;
  border-left: 42px #34313c solid !important;
}
.tuna--ba-43 {
  border: 43px #34313c solid !important;
}
.tuna--bt-43 {
  border-top: 43px #34313c solid !important;
}
.tuna--br-43 {
  border-right: 43px #34313c solid !important;
}
.tuna--bl-43 {
  border-left: 43px #34313c solid !important;
}
.tuna--bb-43 {
  border-bottom: 43px #34313c solid !important;
}
.tuna--by-43 {
  border-top: 43px #34313c solid !important;
  border-bottom: 43px #34313c solid !important;
}
.tuna--bx-43 {
  border-right: 43px #34313c solid !important;
  border-left: 43px #34313c solid !important;
}
.tuna--ba-44 {
  border: 44px #34313c solid !important;
}
.tuna--bt-44 {
  border-top: 44px #34313c solid !important;
}
.tuna--br-44 {
  border-right: 44px #34313c solid !important;
}
.tuna--bl-44 {
  border-left: 44px #34313c solid !important;
}
.tuna--bb-44 {
  border-bottom: 44px #34313c solid !important;
}
.tuna--by-44 {
  border-top: 44px #34313c solid !important;
  border-bottom: 44px #34313c solid !important;
}
.tuna--bx-44 {
  border-right: 44px #34313c solid !important;
  border-left: 44px #34313c solid !important;
}
.tuna--ba-45 {
  border: 45px #34313c solid !important;
}
.tuna--bt-45 {
  border-top: 45px #34313c solid !important;
}
.tuna--br-45 {
  border-right: 45px #34313c solid !important;
}
.tuna--bl-45 {
  border-left: 45px #34313c solid !important;
}
.tuna--bb-45 {
  border-bottom: 45px #34313c solid !important;
}
.tuna--by-45 {
  border-top: 45px #34313c solid !important;
  border-bottom: 45px #34313c solid !important;
}
.tuna--bx-45 {
  border-right: 45px #34313c solid !important;
  border-left: 45px #34313c solid !important;
}
.tuna--ba-46 {
  border: 46px #34313c solid !important;
}
.tuna--bt-46 {
  border-top: 46px #34313c solid !important;
}
.tuna--br-46 {
  border-right: 46px #34313c solid !important;
}
.tuna--bl-46 {
  border-left: 46px #34313c solid !important;
}
.tuna--bb-46 {
  border-bottom: 46px #34313c solid !important;
}
.tuna--by-46 {
  border-top: 46px #34313c solid !important;
  border-bottom: 46px #34313c solid !important;
}
.tuna--bx-46 {
  border-right: 46px #34313c solid !important;
  border-left: 46px #34313c solid !important;
}
.tuna--ba-47 {
  border: 47px #34313c solid !important;
}
.tuna--bt-47 {
  border-top: 47px #34313c solid !important;
}
.tuna--br-47 {
  border-right: 47px #34313c solid !important;
}
.tuna--bl-47 {
  border-left: 47px #34313c solid !important;
}
.tuna--bb-47 {
  border-bottom: 47px #34313c solid !important;
}
.tuna--by-47 {
  border-top: 47px #34313c solid !important;
  border-bottom: 47px #34313c solid !important;
}
.tuna--bx-47 {
  border-right: 47px #34313c solid !important;
  border-left: 47px #34313c solid !important;
}
.tuna--ba-48 {
  border: 48px #34313c solid !important;
}
.tuna--bt-48 {
  border-top: 48px #34313c solid !important;
}
.tuna--br-48 {
  border-right: 48px #34313c solid !important;
}
.tuna--bl-48 {
  border-left: 48px #34313c solid !important;
}
.tuna--bb-48 {
  border-bottom: 48px #34313c solid !important;
}
.tuna--by-48 {
  border-top: 48px #34313c solid !important;
  border-bottom: 48px #34313c solid !important;
}
.tuna--bx-48 {
  border-right: 48px #34313c solid !important;
  border-left: 48px #34313c solid !important;
}
.tuna--ba-49 {
  border: 49px #34313c solid !important;
}
.tuna--bt-49 {
  border-top: 49px #34313c solid !important;
}
.tuna--br-49 {
  border-right: 49px #34313c solid !important;
}
.tuna--bl-49 {
  border-left: 49px #34313c solid !important;
}
.tuna--bb-49 {
  border-bottom: 49px #34313c solid !important;
}
.tuna--by-49 {
  border-top: 49px #34313c solid !important;
  border-bottom: 49px #34313c solid !important;
}
.tuna--bx-49 {
  border-right: 49px #34313c solid !important;
  border-left: 49px #34313c solid !important;
}
.tuna--ba-50 {
  border: 50px #34313c solid !important;
}
.tuna--bt-50 {
  border-top: 50px #34313c solid !important;
}
.tuna--br-50 {
  border-right: 50px #34313c solid !important;
}
.tuna--bl-50 {
  border-left: 50px #34313c solid !important;
}
.tuna--bb-50 {
  border-bottom: 50px #34313c solid !important;
}
.tuna--by-50 {
  border-top: 50px #34313c solid !important;
  border-bottom: 50px #34313c solid !important;
}
.tuna--bx-50 {
  border-right: 50px #34313c solid !important;
  border-left: 50px #34313c solid !important;
}
.tuna--ba-51 {
  border: 51px #34313c solid !important;
}
.tuna--bt-51 {
  border-top: 51px #34313c solid !important;
}
.tuna--br-51 {
  border-right: 51px #34313c solid !important;
}
.tuna--bl-51 {
  border-left: 51px #34313c solid !important;
}
.tuna--bb-51 {
  border-bottom: 51px #34313c solid !important;
}
.tuna--by-51 {
  border-top: 51px #34313c solid !important;
  border-bottom: 51px #34313c solid !important;
}
.tuna--bx-51 {
  border-right: 51px #34313c solid !important;
  border-left: 51px #34313c solid !important;
}
.tuna--ba-52 {
  border: 52px #34313c solid !important;
}
.tuna--bt-52 {
  border-top: 52px #34313c solid !important;
}
.tuna--br-52 {
  border-right: 52px #34313c solid !important;
}
.tuna--bl-52 {
  border-left: 52px #34313c solid !important;
}
.tuna--bb-52 {
  border-bottom: 52px #34313c solid !important;
}
.tuna--by-52 {
  border-top: 52px #34313c solid !important;
  border-bottom: 52px #34313c solid !important;
}
.tuna--bx-52 {
  border-right: 52px #34313c solid !important;
  border-left: 52px #34313c solid !important;
}
.tuna--ba-53 {
  border: 53px #34313c solid !important;
}
.tuna--bt-53 {
  border-top: 53px #34313c solid !important;
}
.tuna--br-53 {
  border-right: 53px #34313c solid !important;
}
.tuna--bl-53 {
  border-left: 53px #34313c solid !important;
}
.tuna--bb-53 {
  border-bottom: 53px #34313c solid !important;
}
.tuna--by-53 {
  border-top: 53px #34313c solid !important;
  border-bottom: 53px #34313c solid !important;
}
.tuna--bx-53 {
  border-right: 53px #34313c solid !important;
  border-left: 53px #34313c solid !important;
}
.tuna--ba-54 {
  border: 54px #34313c solid !important;
}
.tuna--bt-54 {
  border-top: 54px #34313c solid !important;
}
.tuna--br-54 {
  border-right: 54px #34313c solid !important;
}
.tuna--bl-54 {
  border-left: 54px #34313c solid !important;
}
.tuna--bb-54 {
  border-bottom: 54px #34313c solid !important;
}
.tuna--by-54 {
  border-top: 54px #34313c solid !important;
  border-bottom: 54px #34313c solid !important;
}
.tuna--bx-54 {
  border-right: 54px #34313c solid !important;
  border-left: 54px #34313c solid !important;
}
.tuna--ba-55 {
  border: 55px #34313c solid !important;
}
.tuna--bt-55 {
  border-top: 55px #34313c solid !important;
}
.tuna--br-55 {
  border-right: 55px #34313c solid !important;
}
.tuna--bl-55 {
  border-left: 55px #34313c solid !important;
}
.tuna--bb-55 {
  border-bottom: 55px #34313c solid !important;
}
.tuna--by-55 {
  border-top: 55px #34313c solid !important;
  border-bottom: 55px #34313c solid !important;
}
.tuna--bx-55 {
  border-right: 55px #34313c solid !important;
  border-left: 55px #34313c solid !important;
}
.tuna--ba-56 {
  border: 56px #34313c solid !important;
}
.tuna--bt-56 {
  border-top: 56px #34313c solid !important;
}
.tuna--br-56 {
  border-right: 56px #34313c solid !important;
}
.tuna--bl-56 {
  border-left: 56px #34313c solid !important;
}
.tuna--bb-56 {
  border-bottom: 56px #34313c solid !important;
}
.tuna--by-56 {
  border-top: 56px #34313c solid !important;
  border-bottom: 56px #34313c solid !important;
}
.tuna--bx-56 {
  border-right: 56px #34313c solid !important;
  border-left: 56px #34313c solid !important;
}
.tuna--ba-57 {
  border: 57px #34313c solid !important;
}
.tuna--bt-57 {
  border-top: 57px #34313c solid !important;
}
.tuna--br-57 {
  border-right: 57px #34313c solid !important;
}
.tuna--bl-57 {
  border-left: 57px #34313c solid !important;
}
.tuna--bb-57 {
  border-bottom: 57px #34313c solid !important;
}
.tuna--by-57 {
  border-top: 57px #34313c solid !important;
  border-bottom: 57px #34313c solid !important;
}
.tuna--bx-57 {
  border-right: 57px #34313c solid !important;
  border-left: 57px #34313c solid !important;
}
.tuna--ba-58 {
  border: 58px #34313c solid !important;
}
.tuna--bt-58 {
  border-top: 58px #34313c solid !important;
}
.tuna--br-58 {
  border-right: 58px #34313c solid !important;
}
.tuna--bl-58 {
  border-left: 58px #34313c solid !important;
}
.tuna--bb-58 {
  border-bottom: 58px #34313c solid !important;
}
.tuna--by-58 {
  border-top: 58px #34313c solid !important;
  border-bottom: 58px #34313c solid !important;
}
.tuna--bx-58 {
  border-right: 58px #34313c solid !important;
  border-left: 58px #34313c solid !important;
}
.tuna--ba-59 {
  border: 59px #34313c solid !important;
}
.tuna--bt-59 {
  border-top: 59px #34313c solid !important;
}
.tuna--br-59 {
  border-right: 59px #34313c solid !important;
}
.tuna--bl-59 {
  border-left: 59px #34313c solid !important;
}
.tuna--bb-59 {
  border-bottom: 59px #34313c solid !important;
}
.tuna--by-59 {
  border-top: 59px #34313c solid !important;
  border-bottom: 59px #34313c solid !important;
}
.tuna--bx-59 {
  border-right: 59px #34313c solid !important;
  border-left: 59px #34313c solid !important;
}
.tuna--ba-60 {
  border: 60px #34313c solid !important;
}
.tuna--bt-60 {
  border-top: 60px #34313c solid !important;
}
.tuna--br-60 {
  border-right: 60px #34313c solid !important;
}
.tuna--bl-60 {
  border-left: 60px #34313c solid !important;
}
.tuna--bb-60 {
  border-bottom: 60px #34313c solid !important;
}
.tuna--by-60 {
  border-top: 60px #34313c solid !important;
  border-bottom: 60px #34313c solid !important;
}
.tuna--bx-60 {
  border-right: 60px #34313c solid !important;
  border-left: 60px #34313c solid !important;
}
.tuna--ba-61 {
  border: 61px #34313c solid !important;
}
.tuna--bt-61 {
  border-top: 61px #34313c solid !important;
}
.tuna--br-61 {
  border-right: 61px #34313c solid !important;
}
.tuna--bl-61 {
  border-left: 61px #34313c solid !important;
}
.tuna--bb-61 {
  border-bottom: 61px #34313c solid !important;
}
.tuna--by-61 {
  border-top: 61px #34313c solid !important;
  border-bottom: 61px #34313c solid !important;
}
.tuna--bx-61 {
  border-right: 61px #34313c solid !important;
  border-left: 61px #34313c solid !important;
}
.tuna--ba-62 {
  border: 62px #34313c solid !important;
}
.tuna--bt-62 {
  border-top: 62px #34313c solid !important;
}
.tuna--br-62 {
  border-right: 62px #34313c solid !important;
}
.tuna--bl-62 {
  border-left: 62px #34313c solid !important;
}
.tuna--bb-62 {
  border-bottom: 62px #34313c solid !important;
}
.tuna--by-62 {
  border-top: 62px #34313c solid !important;
  border-bottom: 62px #34313c solid !important;
}
.tuna--bx-62 {
  border-right: 62px #34313c solid !important;
  border-left: 62px #34313c solid !important;
}
.tuna--ba-63 {
  border: 63px #34313c solid !important;
}
.tuna--bt-63 {
  border-top: 63px #34313c solid !important;
}
.tuna--br-63 {
  border-right: 63px #34313c solid !important;
}
.tuna--bl-63 {
  border-left: 63px #34313c solid !important;
}
.tuna--bb-63 {
  border-bottom: 63px #34313c solid !important;
}
.tuna--by-63 {
  border-top: 63px #34313c solid !important;
  border-bottom: 63px #34313c solid !important;
}
.tuna--bx-63 {
  border-right: 63px #34313c solid !important;
  border-left: 63px #34313c solid !important;
}
.tuna--ba-64 {
  border: 64px #34313c solid !important;
}
.tuna--bt-64 {
  border-top: 64px #34313c solid !important;
}
.tuna--br-64 {
  border-right: 64px #34313c solid !important;
}
.tuna--bl-64 {
  border-left: 64px #34313c solid !important;
}
.tuna--bb-64 {
  border-bottom: 64px #34313c solid !important;
}
.tuna--by-64 {
  border-top: 64px #34313c solid !important;
  border-bottom: 64px #34313c solid !important;
}
.tuna--bx-64 {
  border-right: 64px #34313c solid !important;
  border-left: 64px #34313c solid !important;
}
.tuna--ba-65 {
  border: 65px #34313c solid !important;
}
.tuna--bt-65 {
  border-top: 65px #34313c solid !important;
}
.tuna--br-65 {
  border-right: 65px #34313c solid !important;
}
.tuna--bl-65 {
  border-left: 65px #34313c solid !important;
}
.tuna--bb-65 {
  border-bottom: 65px #34313c solid !important;
}
.tuna--by-65 {
  border-top: 65px #34313c solid !important;
  border-bottom: 65px #34313c solid !important;
}
.tuna--bx-65 {
  border-right: 65px #34313c solid !important;
  border-left: 65px #34313c solid !important;
}
.tuna--ba-66 {
  border: 66px #34313c solid !important;
}
.tuna--bt-66 {
  border-top: 66px #34313c solid !important;
}
.tuna--br-66 {
  border-right: 66px #34313c solid !important;
}
.tuna--bl-66 {
  border-left: 66px #34313c solid !important;
}
.tuna--bb-66 {
  border-bottom: 66px #34313c solid !important;
}
.tuna--by-66 {
  border-top: 66px #34313c solid !important;
  border-bottom: 66px #34313c solid !important;
}
.tuna--bx-66 {
  border-right: 66px #34313c solid !important;
  border-left: 66px #34313c solid !important;
}
.tuna--ba-67 {
  border: 67px #34313c solid !important;
}
.tuna--bt-67 {
  border-top: 67px #34313c solid !important;
}
.tuna--br-67 {
  border-right: 67px #34313c solid !important;
}
.tuna--bl-67 {
  border-left: 67px #34313c solid !important;
}
.tuna--bb-67 {
  border-bottom: 67px #34313c solid !important;
}
.tuna--by-67 {
  border-top: 67px #34313c solid !important;
  border-bottom: 67px #34313c solid !important;
}
.tuna--bx-67 {
  border-right: 67px #34313c solid !important;
  border-left: 67px #34313c solid !important;
}
.tuna--ba-68 {
  border: 68px #34313c solid !important;
}
.tuna--bt-68 {
  border-top: 68px #34313c solid !important;
}
.tuna--br-68 {
  border-right: 68px #34313c solid !important;
}
.tuna--bl-68 {
  border-left: 68px #34313c solid !important;
}
.tuna--bb-68 {
  border-bottom: 68px #34313c solid !important;
}
.tuna--by-68 {
  border-top: 68px #34313c solid !important;
  border-bottom: 68px #34313c solid !important;
}
.tuna--bx-68 {
  border-right: 68px #34313c solid !important;
  border-left: 68px #34313c solid !important;
}
.tuna--ba-69 {
  border: 69px #34313c solid !important;
}
.tuna--bt-69 {
  border-top: 69px #34313c solid !important;
}
.tuna--br-69 {
  border-right: 69px #34313c solid !important;
}
.tuna--bl-69 {
  border-left: 69px #34313c solid !important;
}
.tuna--bb-69 {
  border-bottom: 69px #34313c solid !important;
}
.tuna--by-69 {
  border-top: 69px #34313c solid !important;
  border-bottom: 69px #34313c solid !important;
}
.tuna--bx-69 {
  border-right: 69px #34313c solid !important;
  border-left: 69px #34313c solid !important;
}
.tuna--ba-70 {
  border: 70px #34313c solid !important;
}
.tuna--bt-70 {
  border-top: 70px #34313c solid !important;
}
.tuna--br-70 {
  border-right: 70px #34313c solid !important;
}
.tuna--bl-70 {
  border-left: 70px #34313c solid !important;
}
.tuna--bb-70 {
  border-bottom: 70px #34313c solid !important;
}
.tuna--by-70 {
  border-top: 70px #34313c solid !important;
  border-bottom: 70px #34313c solid !important;
}
.tuna--bx-70 {
  border-right: 70px #34313c solid !important;
  border-left: 70px #34313c solid !important;
}
.tuna--ba-71 {
  border: 71px #34313c solid !important;
}
.tuna--bt-71 {
  border-top: 71px #34313c solid !important;
}
.tuna--br-71 {
  border-right: 71px #34313c solid !important;
}
.tuna--bl-71 {
  border-left: 71px #34313c solid !important;
}
.tuna--bb-71 {
  border-bottom: 71px #34313c solid !important;
}
.tuna--by-71 {
  border-top: 71px #34313c solid !important;
  border-bottom: 71px #34313c solid !important;
}
.tuna--bx-71 {
  border-right: 71px #34313c solid !important;
  border-left: 71px #34313c solid !important;
}
.tuna--ba-72 {
  border: 72px #34313c solid !important;
}
.tuna--bt-72 {
  border-top: 72px #34313c solid !important;
}
.tuna--br-72 {
  border-right: 72px #34313c solid !important;
}
.tuna--bl-72 {
  border-left: 72px #34313c solid !important;
}
.tuna--bb-72 {
  border-bottom: 72px #34313c solid !important;
}
.tuna--by-72 {
  border-top: 72px #34313c solid !important;
  border-bottom: 72px #34313c solid !important;
}
.tuna--bx-72 {
  border-right: 72px #34313c solid !important;
  border-left: 72px #34313c solid !important;
}
.tuna--ba-73 {
  border: 73px #34313c solid !important;
}
.tuna--bt-73 {
  border-top: 73px #34313c solid !important;
}
.tuna--br-73 {
  border-right: 73px #34313c solid !important;
}
.tuna--bl-73 {
  border-left: 73px #34313c solid !important;
}
.tuna--bb-73 {
  border-bottom: 73px #34313c solid !important;
}
.tuna--by-73 {
  border-top: 73px #34313c solid !important;
  border-bottom: 73px #34313c solid !important;
}
.tuna--bx-73 {
  border-right: 73px #34313c solid !important;
  border-left: 73px #34313c solid !important;
}
.tuna--ba-74 {
  border: 74px #34313c solid !important;
}
.tuna--bt-74 {
  border-top: 74px #34313c solid !important;
}
.tuna--br-74 {
  border-right: 74px #34313c solid !important;
}
.tuna--bl-74 {
  border-left: 74px #34313c solid !important;
}
.tuna--bb-74 {
  border-bottom: 74px #34313c solid !important;
}
.tuna--by-74 {
  border-top: 74px #34313c solid !important;
  border-bottom: 74px #34313c solid !important;
}
.tuna--bx-74 {
  border-right: 74px #34313c solid !important;
  border-left: 74px #34313c solid !important;
}
.tuna--ba-75 {
  border: 75px #34313c solid !important;
}
.tuna--bt-75 {
  border-top: 75px #34313c solid !important;
}
.tuna--br-75 {
  border-right: 75px #34313c solid !important;
}
.tuna--bl-75 {
  border-left: 75px #34313c solid !important;
}
.tuna--bb-75 {
  border-bottom: 75px #34313c solid !important;
}
.tuna--by-75 {
  border-top: 75px #34313c solid !important;
  border-bottom: 75px #34313c solid !important;
}
.tuna--bx-75 {
  border-right: 75px #34313c solid !important;
  border-left: 75px #34313c solid !important;
}
.tuna--ba-76 {
  border: 76px #34313c solid !important;
}
.tuna--bt-76 {
  border-top: 76px #34313c solid !important;
}
.tuna--br-76 {
  border-right: 76px #34313c solid !important;
}
.tuna--bl-76 {
  border-left: 76px #34313c solid !important;
}
.tuna--bb-76 {
  border-bottom: 76px #34313c solid !important;
}
.tuna--by-76 {
  border-top: 76px #34313c solid !important;
  border-bottom: 76px #34313c solid !important;
}
.tuna--bx-76 {
  border-right: 76px #34313c solid !important;
  border-left: 76px #34313c solid !important;
}
.tuna--ba-77 {
  border: 77px #34313c solid !important;
}
.tuna--bt-77 {
  border-top: 77px #34313c solid !important;
}
.tuna--br-77 {
  border-right: 77px #34313c solid !important;
}
.tuna--bl-77 {
  border-left: 77px #34313c solid !important;
}
.tuna--bb-77 {
  border-bottom: 77px #34313c solid !important;
}
.tuna--by-77 {
  border-top: 77px #34313c solid !important;
  border-bottom: 77px #34313c solid !important;
}
.tuna--bx-77 {
  border-right: 77px #34313c solid !important;
  border-left: 77px #34313c solid !important;
}
.tuna--ba-78 {
  border: 78px #34313c solid !important;
}
.tuna--bt-78 {
  border-top: 78px #34313c solid !important;
}
.tuna--br-78 {
  border-right: 78px #34313c solid !important;
}
.tuna--bl-78 {
  border-left: 78px #34313c solid !important;
}
.tuna--bb-78 {
  border-bottom: 78px #34313c solid !important;
}
.tuna--by-78 {
  border-top: 78px #34313c solid !important;
  border-bottom: 78px #34313c solid !important;
}
.tuna--bx-78 {
  border-right: 78px #34313c solid !important;
  border-left: 78px #34313c solid !important;
}
.tuna--ba-79 {
  border: 79px #34313c solid !important;
}
.tuna--bt-79 {
  border-top: 79px #34313c solid !important;
}
.tuna--br-79 {
  border-right: 79px #34313c solid !important;
}
.tuna--bl-79 {
  border-left: 79px #34313c solid !important;
}
.tuna--bb-79 {
  border-bottom: 79px #34313c solid !important;
}
.tuna--by-79 {
  border-top: 79px #34313c solid !important;
  border-bottom: 79px #34313c solid !important;
}
.tuna--bx-79 {
  border-right: 79px #34313c solid !important;
  border-left: 79px #34313c solid !important;
}
.tuna--ba-80 {
  border: 80px #34313c solid !important;
}
.tuna--bt-80 {
  border-top: 80px #34313c solid !important;
}
.tuna--br-80 {
  border-right: 80px #34313c solid !important;
}
.tuna--bl-80 {
  border-left: 80px #34313c solid !important;
}
.tuna--bb-80 {
  border-bottom: 80px #34313c solid !important;
}
.tuna--by-80 {
  border-top: 80px #34313c solid !important;
  border-bottom: 80px #34313c solid !important;
}
.tuna--bx-80 {
  border-right: 80px #34313c solid !important;
  border-left: 80px #34313c solid !important;
}
.tuna--ba-81 {
  border: 81px #34313c solid !important;
}
.tuna--bt-81 {
  border-top: 81px #34313c solid !important;
}
.tuna--br-81 {
  border-right: 81px #34313c solid !important;
}
.tuna--bl-81 {
  border-left: 81px #34313c solid !important;
}
.tuna--bb-81 {
  border-bottom: 81px #34313c solid !important;
}
.tuna--by-81 {
  border-top: 81px #34313c solid !important;
  border-bottom: 81px #34313c solid !important;
}
.tuna--bx-81 {
  border-right: 81px #34313c solid !important;
  border-left: 81px #34313c solid !important;
}
.tuna--ba-82 {
  border: 82px #34313c solid !important;
}
.tuna--bt-82 {
  border-top: 82px #34313c solid !important;
}
.tuna--br-82 {
  border-right: 82px #34313c solid !important;
}
.tuna--bl-82 {
  border-left: 82px #34313c solid !important;
}
.tuna--bb-82 {
  border-bottom: 82px #34313c solid !important;
}
.tuna--by-82 {
  border-top: 82px #34313c solid !important;
  border-bottom: 82px #34313c solid !important;
}
.tuna--bx-82 {
  border-right: 82px #34313c solid !important;
  border-left: 82px #34313c solid !important;
}
.tuna--ba-83 {
  border: 83px #34313c solid !important;
}
.tuna--bt-83 {
  border-top: 83px #34313c solid !important;
}
.tuna--br-83 {
  border-right: 83px #34313c solid !important;
}
.tuna--bl-83 {
  border-left: 83px #34313c solid !important;
}
.tuna--bb-83 {
  border-bottom: 83px #34313c solid !important;
}
.tuna--by-83 {
  border-top: 83px #34313c solid !important;
  border-bottom: 83px #34313c solid !important;
}
.tuna--bx-83 {
  border-right: 83px #34313c solid !important;
  border-left: 83px #34313c solid !important;
}
.tuna--ba-84 {
  border: 84px #34313c solid !important;
}
.tuna--bt-84 {
  border-top: 84px #34313c solid !important;
}
.tuna--br-84 {
  border-right: 84px #34313c solid !important;
}
.tuna--bl-84 {
  border-left: 84px #34313c solid !important;
}
.tuna--bb-84 {
  border-bottom: 84px #34313c solid !important;
}
.tuna--by-84 {
  border-top: 84px #34313c solid !important;
  border-bottom: 84px #34313c solid !important;
}
.tuna--bx-84 {
  border-right: 84px #34313c solid !important;
  border-left: 84px #34313c solid !important;
}
.tuna--ba-85 {
  border: 85px #34313c solid !important;
}
.tuna--bt-85 {
  border-top: 85px #34313c solid !important;
}
.tuna--br-85 {
  border-right: 85px #34313c solid !important;
}
.tuna--bl-85 {
  border-left: 85px #34313c solid !important;
}
.tuna--bb-85 {
  border-bottom: 85px #34313c solid !important;
}
.tuna--by-85 {
  border-top: 85px #34313c solid !important;
  border-bottom: 85px #34313c solid !important;
}
.tuna--bx-85 {
  border-right: 85px #34313c solid !important;
  border-left: 85px #34313c solid !important;
}
.tuna--ba-86 {
  border: 86px #34313c solid !important;
}
.tuna--bt-86 {
  border-top: 86px #34313c solid !important;
}
.tuna--br-86 {
  border-right: 86px #34313c solid !important;
}
.tuna--bl-86 {
  border-left: 86px #34313c solid !important;
}
.tuna--bb-86 {
  border-bottom: 86px #34313c solid !important;
}
.tuna--by-86 {
  border-top: 86px #34313c solid !important;
  border-bottom: 86px #34313c solid !important;
}
.tuna--bx-86 {
  border-right: 86px #34313c solid !important;
  border-left: 86px #34313c solid !important;
}
.tuna--ba-87 {
  border: 87px #34313c solid !important;
}
.tuna--bt-87 {
  border-top: 87px #34313c solid !important;
}
.tuna--br-87 {
  border-right: 87px #34313c solid !important;
}
.tuna--bl-87 {
  border-left: 87px #34313c solid !important;
}
.tuna--bb-87 {
  border-bottom: 87px #34313c solid !important;
}
.tuna--by-87 {
  border-top: 87px #34313c solid !important;
  border-bottom: 87px #34313c solid !important;
}
.tuna--bx-87 {
  border-right: 87px #34313c solid !important;
  border-left: 87px #34313c solid !important;
}
.tuna--ba-88 {
  border: 88px #34313c solid !important;
}
.tuna--bt-88 {
  border-top: 88px #34313c solid !important;
}
.tuna--br-88 {
  border-right: 88px #34313c solid !important;
}
.tuna--bl-88 {
  border-left: 88px #34313c solid !important;
}
.tuna--bb-88 {
  border-bottom: 88px #34313c solid !important;
}
.tuna--by-88 {
  border-top: 88px #34313c solid !important;
  border-bottom: 88px #34313c solid !important;
}
.tuna--bx-88 {
  border-right: 88px #34313c solid !important;
  border-left: 88px #34313c solid !important;
}
.tuna--ba-89 {
  border: 89px #34313c solid !important;
}
.tuna--bt-89 {
  border-top: 89px #34313c solid !important;
}
.tuna--br-89 {
  border-right: 89px #34313c solid !important;
}
.tuna--bl-89 {
  border-left: 89px #34313c solid !important;
}
.tuna--bb-89 {
  border-bottom: 89px #34313c solid !important;
}
.tuna--by-89 {
  border-top: 89px #34313c solid !important;
  border-bottom: 89px #34313c solid !important;
}
.tuna--bx-89 {
  border-right: 89px #34313c solid !important;
  border-left: 89px #34313c solid !important;
}
.tuna--ba-90 {
  border: 90px #34313c solid !important;
}
.tuna--bt-90 {
  border-top: 90px #34313c solid !important;
}
.tuna--br-90 {
  border-right: 90px #34313c solid !important;
}
.tuna--bl-90 {
  border-left: 90px #34313c solid !important;
}
.tuna--bb-90 {
  border-bottom: 90px #34313c solid !important;
}
.tuna--by-90 {
  border-top: 90px #34313c solid !important;
  border-bottom: 90px #34313c solid !important;
}
.tuna--bx-90 {
  border-right: 90px #34313c solid !important;
  border-left: 90px #34313c solid !important;
}
.tuna--ba-91 {
  border: 91px #34313c solid !important;
}
.tuna--bt-91 {
  border-top: 91px #34313c solid !important;
}
.tuna--br-91 {
  border-right: 91px #34313c solid !important;
}
.tuna--bl-91 {
  border-left: 91px #34313c solid !important;
}
.tuna--bb-91 {
  border-bottom: 91px #34313c solid !important;
}
.tuna--by-91 {
  border-top: 91px #34313c solid !important;
  border-bottom: 91px #34313c solid !important;
}
.tuna--bx-91 {
  border-right: 91px #34313c solid !important;
  border-left: 91px #34313c solid !important;
}
.tuna--ba-92 {
  border: 92px #34313c solid !important;
}
.tuna--bt-92 {
  border-top: 92px #34313c solid !important;
}
.tuna--br-92 {
  border-right: 92px #34313c solid !important;
}
.tuna--bl-92 {
  border-left: 92px #34313c solid !important;
}
.tuna--bb-92 {
  border-bottom: 92px #34313c solid !important;
}
.tuna--by-92 {
  border-top: 92px #34313c solid !important;
  border-bottom: 92px #34313c solid !important;
}
.tuna--bx-92 {
  border-right: 92px #34313c solid !important;
  border-left: 92px #34313c solid !important;
}
.tuna--ba-93 {
  border: 93px #34313c solid !important;
}
.tuna--bt-93 {
  border-top: 93px #34313c solid !important;
}
.tuna--br-93 {
  border-right: 93px #34313c solid !important;
}
.tuna--bl-93 {
  border-left: 93px #34313c solid !important;
}
.tuna--bb-93 {
  border-bottom: 93px #34313c solid !important;
}
.tuna--by-93 {
  border-top: 93px #34313c solid !important;
  border-bottom: 93px #34313c solid !important;
}
.tuna--bx-93 {
  border-right: 93px #34313c solid !important;
  border-left: 93px #34313c solid !important;
}
.tuna--ba-94 {
  border: 94px #34313c solid !important;
}
.tuna--bt-94 {
  border-top: 94px #34313c solid !important;
}
.tuna--br-94 {
  border-right: 94px #34313c solid !important;
}
.tuna--bl-94 {
  border-left: 94px #34313c solid !important;
}
.tuna--bb-94 {
  border-bottom: 94px #34313c solid !important;
}
.tuna--by-94 {
  border-top: 94px #34313c solid !important;
  border-bottom: 94px #34313c solid !important;
}
.tuna--bx-94 {
  border-right: 94px #34313c solid !important;
  border-left: 94px #34313c solid !important;
}
.tuna--ba-95 {
  border: 95px #34313c solid !important;
}
.tuna--bt-95 {
  border-top: 95px #34313c solid !important;
}
.tuna--br-95 {
  border-right: 95px #34313c solid !important;
}
.tuna--bl-95 {
  border-left: 95px #34313c solid !important;
}
.tuna--bb-95 {
  border-bottom: 95px #34313c solid !important;
}
.tuna--by-95 {
  border-top: 95px #34313c solid !important;
  border-bottom: 95px #34313c solid !important;
}
.tuna--bx-95 {
  border-right: 95px #34313c solid !important;
  border-left: 95px #34313c solid !important;
}
.tuna--ba-96 {
  border: 96px #34313c solid !important;
}
.tuna--bt-96 {
  border-top: 96px #34313c solid !important;
}
.tuna--br-96 {
  border-right: 96px #34313c solid !important;
}
.tuna--bl-96 {
  border-left: 96px #34313c solid !important;
}
.tuna--bb-96 {
  border-bottom: 96px #34313c solid !important;
}
.tuna--by-96 {
  border-top: 96px #34313c solid !important;
  border-bottom: 96px #34313c solid !important;
}
.tuna--bx-96 {
  border-right: 96px #34313c solid !important;
  border-left: 96px #34313c solid !important;
}
.tuna--ba-97 {
  border: 97px #34313c solid !important;
}
.tuna--bt-97 {
  border-top: 97px #34313c solid !important;
}
.tuna--br-97 {
  border-right: 97px #34313c solid !important;
}
.tuna--bl-97 {
  border-left: 97px #34313c solid !important;
}
.tuna--bb-97 {
  border-bottom: 97px #34313c solid !important;
}
.tuna--by-97 {
  border-top: 97px #34313c solid !important;
  border-bottom: 97px #34313c solid !important;
}
.tuna--bx-97 {
  border-right: 97px #34313c solid !important;
  border-left: 97px #34313c solid !important;
}
.tuna--ba-98 {
  border: 98px #34313c solid !important;
}
.tuna--bt-98 {
  border-top: 98px #34313c solid !important;
}
.tuna--br-98 {
  border-right: 98px #34313c solid !important;
}
.tuna--bl-98 {
  border-left: 98px #34313c solid !important;
}
.tuna--bb-98 {
  border-bottom: 98px #34313c solid !important;
}
.tuna--by-98 {
  border-top: 98px #34313c solid !important;
  border-bottom: 98px #34313c solid !important;
}
.tuna--bx-98 {
  border-right: 98px #34313c solid !important;
  border-left: 98px #34313c solid !important;
}
.tuna--ba-99 {
  border: 99px #34313c solid !important;
}
.tuna--bt-99 {
  border-top: 99px #34313c solid !important;
}
.tuna--br-99 {
  border-right: 99px #34313c solid !important;
}
.tuna--bl-99 {
  border-left: 99px #34313c solid !important;
}
.tuna--bb-99 {
  border-bottom: 99px #34313c solid !important;
}
.tuna--by-99 {
  border-top: 99px #34313c solid !important;
  border-bottom: 99px #34313c solid !important;
}
.tuna--bx-99 {
  border-right: 99px #34313c solid !important;
  border-left: 99px #34313c solid !important;
}
.tuna--ba-100 {
  border: 100px #34313c solid !important;
}
.tuna--bt-100 {
  border-top: 100px #34313c solid !important;
}
.tuna--br-100 {
  border-right: 100px #34313c solid !important;
}
.tuna--bl-100 {
  border-left: 100px #34313c solid !important;
}
.tuna--bb-100 {
  border-bottom: 100px #34313c solid !important;
}
.tuna--by-100 {
  border-top: 100px #34313c solid !important;
  border-bottom: 100px #34313c solid !important;
}
.tuna--bx-100 {
  border-right: 100px #34313c solid !important;
  border-left: 100px #34313c solid !important;
}
.dove-gray--ba-1 {
  border: 1px #707070 solid !important;
}
.dove-gray--bt-1 {
  border-top: 1px #707070 solid !important;
}
.dove-gray--br-1 {
  border-right: 1px #707070 solid !important;
}
.dove-gray--bl-1 {
  border-left: 1px #707070 solid !important;
}
.dove-gray--bb-1 {
  border-bottom: 1px #707070 solid !important;
}
.dove-gray--by-1 {
  border-top: 1px #707070 solid !important;
  border-bottom: 1px #707070 solid !important;
}
.dove-gray--bx-1 {
  border-right: 1px #707070 solid !important;
  border-left: 1px #707070 solid !important;
}
.dove-gray--ba-2 {
  border: 2px #707070 solid !important;
}
.dove-gray--bt-2 {
  border-top: 2px #707070 solid !important;
}
.dove-gray--br-2 {
  border-right: 2px #707070 solid !important;
}
.dove-gray--bl-2 {
  border-left: 2px #707070 solid !important;
}
.dove-gray--bb-2 {
  border-bottom: 2px #707070 solid !important;
}
.dove-gray--by-2 {
  border-top: 2px #707070 solid !important;
  border-bottom: 2px #707070 solid !important;
}
.dove-gray--bx-2 {
  border-right: 2px #707070 solid !important;
  border-left: 2px #707070 solid !important;
}
.dove-gray--ba-3 {
  border: 3px #707070 solid !important;
}
.dove-gray--bt-3 {
  border-top: 3px #707070 solid !important;
}
.dove-gray--br-3 {
  border-right: 3px #707070 solid !important;
}
.dove-gray--bl-3 {
  border-left: 3px #707070 solid !important;
}
.dove-gray--bb-3 {
  border-bottom: 3px #707070 solid !important;
}
.dove-gray--by-3 {
  border-top: 3px #707070 solid !important;
  border-bottom: 3px #707070 solid !important;
}
.dove-gray--bx-3 {
  border-right: 3px #707070 solid !important;
  border-left: 3px #707070 solid !important;
}
.dove-gray--ba-4 {
  border: 4px #707070 solid !important;
}
.dove-gray--bt-4 {
  border-top: 4px #707070 solid !important;
}
.dove-gray--br-4 {
  border-right: 4px #707070 solid !important;
}
.dove-gray--bl-4 {
  border-left: 4px #707070 solid !important;
}
.dove-gray--bb-4 {
  border-bottom: 4px #707070 solid !important;
}
.dove-gray--by-4 {
  border-top: 4px #707070 solid !important;
  border-bottom: 4px #707070 solid !important;
}
.dove-gray--bx-4 {
  border-right: 4px #707070 solid !important;
  border-left: 4px #707070 solid !important;
}
.dove-gray--ba-5 {
  border: 5px #707070 solid !important;
}
.dove-gray--bt-5 {
  border-top: 5px #707070 solid !important;
}
.dove-gray--br-5 {
  border-right: 5px #707070 solid !important;
}
.dove-gray--bl-5 {
  border-left: 5px #707070 solid !important;
}
.dove-gray--bb-5 {
  border-bottom: 5px #707070 solid !important;
}
.dove-gray--by-5 {
  border-top: 5px #707070 solid !important;
  border-bottom: 5px #707070 solid !important;
}
.dove-gray--bx-5 {
  border-right: 5px #707070 solid !important;
  border-left: 5px #707070 solid !important;
}
.dove-gray--ba-6 {
  border: 6px #707070 solid !important;
}
.dove-gray--bt-6 {
  border-top: 6px #707070 solid !important;
}
.dove-gray--br-6 {
  border-right: 6px #707070 solid !important;
}
.dove-gray--bl-6 {
  border-left: 6px #707070 solid !important;
}
.dove-gray--bb-6 {
  border-bottom: 6px #707070 solid !important;
}
.dove-gray--by-6 {
  border-top: 6px #707070 solid !important;
  border-bottom: 6px #707070 solid !important;
}
.dove-gray--bx-6 {
  border-right: 6px #707070 solid !important;
  border-left: 6px #707070 solid !important;
}
.dove-gray--ba-7 {
  border: 7px #707070 solid !important;
}
.dove-gray--bt-7 {
  border-top: 7px #707070 solid !important;
}
.dove-gray--br-7 {
  border-right: 7px #707070 solid !important;
}
.dove-gray--bl-7 {
  border-left: 7px #707070 solid !important;
}
.dove-gray--bb-7 {
  border-bottom: 7px #707070 solid !important;
}
.dove-gray--by-7 {
  border-top: 7px #707070 solid !important;
  border-bottom: 7px #707070 solid !important;
}
.dove-gray--bx-7 {
  border-right: 7px #707070 solid !important;
  border-left: 7px #707070 solid !important;
}
.dove-gray--ba-8 {
  border: 8px #707070 solid !important;
}
.dove-gray--bt-8 {
  border-top: 8px #707070 solid !important;
}
.dove-gray--br-8 {
  border-right: 8px #707070 solid !important;
}
.dove-gray--bl-8 {
  border-left: 8px #707070 solid !important;
}
.dove-gray--bb-8 {
  border-bottom: 8px #707070 solid !important;
}
.dove-gray--by-8 {
  border-top: 8px #707070 solid !important;
  border-bottom: 8px #707070 solid !important;
}
.dove-gray--bx-8 {
  border-right: 8px #707070 solid !important;
  border-left: 8px #707070 solid !important;
}
.dove-gray--ba-9 {
  border: 9px #707070 solid !important;
}
.dove-gray--bt-9 {
  border-top: 9px #707070 solid !important;
}
.dove-gray--br-9 {
  border-right: 9px #707070 solid !important;
}
.dove-gray--bl-9 {
  border-left: 9px #707070 solid !important;
}
.dove-gray--bb-9 {
  border-bottom: 9px #707070 solid !important;
}
.dove-gray--by-9 {
  border-top: 9px #707070 solid !important;
  border-bottom: 9px #707070 solid !important;
}
.dove-gray--bx-9 {
  border-right: 9px #707070 solid !important;
  border-left: 9px #707070 solid !important;
}
.dove-gray--ba-10 {
  border: 10px #707070 solid !important;
}
.dove-gray--bt-10 {
  border-top: 10px #707070 solid !important;
}
.dove-gray--br-10 {
  border-right: 10px #707070 solid !important;
}
.dove-gray--bl-10 {
  border-left: 10px #707070 solid !important;
}
.dove-gray--bb-10 {
  border-bottom: 10px #707070 solid !important;
}
.dove-gray--by-10 {
  border-top: 10px #707070 solid !important;
  border-bottom: 10px #707070 solid !important;
}
.dove-gray--bx-10 {
  border-right: 10px #707070 solid !important;
  border-left: 10px #707070 solid !important;
}
.dove-gray--ba-11 {
  border: 11px #707070 solid !important;
}
.dove-gray--bt-11 {
  border-top: 11px #707070 solid !important;
}
.dove-gray--br-11 {
  border-right: 11px #707070 solid !important;
}
.dove-gray--bl-11 {
  border-left: 11px #707070 solid !important;
}
.dove-gray--bb-11 {
  border-bottom: 11px #707070 solid !important;
}
.dove-gray--by-11 {
  border-top: 11px #707070 solid !important;
  border-bottom: 11px #707070 solid !important;
}
.dove-gray--bx-11 {
  border-right: 11px #707070 solid !important;
  border-left: 11px #707070 solid !important;
}
.dove-gray--ba-12 {
  border: 12px #707070 solid !important;
}
.dove-gray--bt-12 {
  border-top: 12px #707070 solid !important;
}
.dove-gray--br-12 {
  border-right: 12px #707070 solid !important;
}
.dove-gray--bl-12 {
  border-left: 12px #707070 solid !important;
}
.dove-gray--bb-12 {
  border-bottom: 12px #707070 solid !important;
}
.dove-gray--by-12 {
  border-top: 12px #707070 solid !important;
  border-bottom: 12px #707070 solid !important;
}
.dove-gray--bx-12 {
  border-right: 12px #707070 solid !important;
  border-left: 12px #707070 solid !important;
}
.dove-gray--ba-13 {
  border: 13px #707070 solid !important;
}
.dove-gray--bt-13 {
  border-top: 13px #707070 solid !important;
}
.dove-gray--br-13 {
  border-right: 13px #707070 solid !important;
}
.dove-gray--bl-13 {
  border-left: 13px #707070 solid !important;
}
.dove-gray--bb-13 {
  border-bottom: 13px #707070 solid !important;
}
.dove-gray--by-13 {
  border-top: 13px #707070 solid !important;
  border-bottom: 13px #707070 solid !important;
}
.dove-gray--bx-13 {
  border-right: 13px #707070 solid !important;
  border-left: 13px #707070 solid !important;
}
.dove-gray--ba-14 {
  border: 14px #707070 solid !important;
}
.dove-gray--bt-14 {
  border-top: 14px #707070 solid !important;
}
.dove-gray--br-14 {
  border-right: 14px #707070 solid !important;
}
.dove-gray--bl-14 {
  border-left: 14px #707070 solid !important;
}
.dove-gray--bb-14 {
  border-bottom: 14px #707070 solid !important;
}
.dove-gray--by-14 {
  border-top: 14px #707070 solid !important;
  border-bottom: 14px #707070 solid !important;
}
.dove-gray--bx-14 {
  border-right: 14px #707070 solid !important;
  border-left: 14px #707070 solid !important;
}
.dove-gray--ba-15 {
  border: 15px #707070 solid !important;
}
.dove-gray--bt-15 {
  border-top: 15px #707070 solid !important;
}
.dove-gray--br-15 {
  border-right: 15px #707070 solid !important;
}
.dove-gray--bl-15 {
  border-left: 15px #707070 solid !important;
}
.dove-gray--bb-15 {
  border-bottom: 15px #707070 solid !important;
}
.dove-gray--by-15 {
  border-top: 15px #707070 solid !important;
  border-bottom: 15px #707070 solid !important;
}
.dove-gray--bx-15 {
  border-right: 15px #707070 solid !important;
  border-left: 15px #707070 solid !important;
}
.dove-gray--ba-16 {
  border: 16px #707070 solid !important;
}
.dove-gray--bt-16 {
  border-top: 16px #707070 solid !important;
}
.dove-gray--br-16 {
  border-right: 16px #707070 solid !important;
}
.dove-gray--bl-16 {
  border-left: 16px #707070 solid !important;
}
.dove-gray--bb-16 {
  border-bottom: 16px #707070 solid !important;
}
.dove-gray--by-16 {
  border-top: 16px #707070 solid !important;
  border-bottom: 16px #707070 solid !important;
}
.dove-gray--bx-16 {
  border-right: 16px #707070 solid !important;
  border-left: 16px #707070 solid !important;
}
.dove-gray--ba-17 {
  border: 17px #707070 solid !important;
}
.dove-gray--bt-17 {
  border-top: 17px #707070 solid !important;
}
.dove-gray--br-17 {
  border-right: 17px #707070 solid !important;
}
.dove-gray--bl-17 {
  border-left: 17px #707070 solid !important;
}
.dove-gray--bb-17 {
  border-bottom: 17px #707070 solid !important;
}
.dove-gray--by-17 {
  border-top: 17px #707070 solid !important;
  border-bottom: 17px #707070 solid !important;
}
.dove-gray--bx-17 {
  border-right: 17px #707070 solid !important;
  border-left: 17px #707070 solid !important;
}
.dove-gray--ba-18 {
  border: 18px #707070 solid !important;
}
.dove-gray--bt-18 {
  border-top: 18px #707070 solid !important;
}
.dove-gray--br-18 {
  border-right: 18px #707070 solid !important;
}
.dove-gray--bl-18 {
  border-left: 18px #707070 solid !important;
}
.dove-gray--bb-18 {
  border-bottom: 18px #707070 solid !important;
}
.dove-gray--by-18 {
  border-top: 18px #707070 solid !important;
  border-bottom: 18px #707070 solid !important;
}
.dove-gray--bx-18 {
  border-right: 18px #707070 solid !important;
  border-left: 18px #707070 solid !important;
}
.dove-gray--ba-19 {
  border: 19px #707070 solid !important;
}
.dove-gray--bt-19 {
  border-top: 19px #707070 solid !important;
}
.dove-gray--br-19 {
  border-right: 19px #707070 solid !important;
}
.dove-gray--bl-19 {
  border-left: 19px #707070 solid !important;
}
.dove-gray--bb-19 {
  border-bottom: 19px #707070 solid !important;
}
.dove-gray--by-19 {
  border-top: 19px #707070 solid !important;
  border-bottom: 19px #707070 solid !important;
}
.dove-gray--bx-19 {
  border-right: 19px #707070 solid !important;
  border-left: 19px #707070 solid !important;
}
.dove-gray--ba-20 {
  border: 20px #707070 solid !important;
}
.dove-gray--bt-20 {
  border-top: 20px #707070 solid !important;
}
.dove-gray--br-20 {
  border-right: 20px #707070 solid !important;
}
.dove-gray--bl-20 {
  border-left: 20px #707070 solid !important;
}
.dove-gray--bb-20 {
  border-bottom: 20px #707070 solid !important;
}
.dove-gray--by-20 {
  border-top: 20px #707070 solid !important;
  border-bottom: 20px #707070 solid !important;
}
.dove-gray--bx-20 {
  border-right: 20px #707070 solid !important;
  border-left: 20px #707070 solid !important;
}
.dove-gray--ba-21 {
  border: 21px #707070 solid !important;
}
.dove-gray--bt-21 {
  border-top: 21px #707070 solid !important;
}
.dove-gray--br-21 {
  border-right: 21px #707070 solid !important;
}
.dove-gray--bl-21 {
  border-left: 21px #707070 solid !important;
}
.dove-gray--bb-21 {
  border-bottom: 21px #707070 solid !important;
}
.dove-gray--by-21 {
  border-top: 21px #707070 solid !important;
  border-bottom: 21px #707070 solid !important;
}
.dove-gray--bx-21 {
  border-right: 21px #707070 solid !important;
  border-left: 21px #707070 solid !important;
}
.dove-gray--ba-22 {
  border: 22px #707070 solid !important;
}
.dove-gray--bt-22 {
  border-top: 22px #707070 solid !important;
}
.dove-gray--br-22 {
  border-right: 22px #707070 solid !important;
}
.dove-gray--bl-22 {
  border-left: 22px #707070 solid !important;
}
.dove-gray--bb-22 {
  border-bottom: 22px #707070 solid !important;
}
.dove-gray--by-22 {
  border-top: 22px #707070 solid !important;
  border-bottom: 22px #707070 solid !important;
}
.dove-gray--bx-22 {
  border-right: 22px #707070 solid !important;
  border-left: 22px #707070 solid !important;
}
.dove-gray--ba-23 {
  border: 23px #707070 solid !important;
}
.dove-gray--bt-23 {
  border-top: 23px #707070 solid !important;
}
.dove-gray--br-23 {
  border-right: 23px #707070 solid !important;
}
.dove-gray--bl-23 {
  border-left: 23px #707070 solid !important;
}
.dove-gray--bb-23 {
  border-bottom: 23px #707070 solid !important;
}
.dove-gray--by-23 {
  border-top: 23px #707070 solid !important;
  border-bottom: 23px #707070 solid !important;
}
.dove-gray--bx-23 {
  border-right: 23px #707070 solid !important;
  border-left: 23px #707070 solid !important;
}
.dove-gray--ba-24 {
  border: 24px #707070 solid !important;
}
.dove-gray--bt-24 {
  border-top: 24px #707070 solid !important;
}
.dove-gray--br-24 {
  border-right: 24px #707070 solid !important;
}
.dove-gray--bl-24 {
  border-left: 24px #707070 solid !important;
}
.dove-gray--bb-24 {
  border-bottom: 24px #707070 solid !important;
}
.dove-gray--by-24 {
  border-top: 24px #707070 solid !important;
  border-bottom: 24px #707070 solid !important;
}
.dove-gray--bx-24 {
  border-right: 24px #707070 solid !important;
  border-left: 24px #707070 solid !important;
}
.dove-gray--ba-25 {
  border: 25px #707070 solid !important;
}
.dove-gray--bt-25 {
  border-top: 25px #707070 solid !important;
}
.dove-gray--br-25 {
  border-right: 25px #707070 solid !important;
}
.dove-gray--bl-25 {
  border-left: 25px #707070 solid !important;
}
.dove-gray--bb-25 {
  border-bottom: 25px #707070 solid !important;
}
.dove-gray--by-25 {
  border-top: 25px #707070 solid !important;
  border-bottom: 25px #707070 solid !important;
}
.dove-gray--bx-25 {
  border-right: 25px #707070 solid !important;
  border-left: 25px #707070 solid !important;
}
.dove-gray--ba-26 {
  border: 26px #707070 solid !important;
}
.dove-gray--bt-26 {
  border-top: 26px #707070 solid !important;
}
.dove-gray--br-26 {
  border-right: 26px #707070 solid !important;
}
.dove-gray--bl-26 {
  border-left: 26px #707070 solid !important;
}
.dove-gray--bb-26 {
  border-bottom: 26px #707070 solid !important;
}
.dove-gray--by-26 {
  border-top: 26px #707070 solid !important;
  border-bottom: 26px #707070 solid !important;
}
.dove-gray--bx-26 {
  border-right: 26px #707070 solid !important;
  border-left: 26px #707070 solid !important;
}
.dove-gray--ba-27 {
  border: 27px #707070 solid !important;
}
.dove-gray--bt-27 {
  border-top: 27px #707070 solid !important;
}
.dove-gray--br-27 {
  border-right: 27px #707070 solid !important;
}
.dove-gray--bl-27 {
  border-left: 27px #707070 solid !important;
}
.dove-gray--bb-27 {
  border-bottom: 27px #707070 solid !important;
}
.dove-gray--by-27 {
  border-top: 27px #707070 solid !important;
  border-bottom: 27px #707070 solid !important;
}
.dove-gray--bx-27 {
  border-right: 27px #707070 solid !important;
  border-left: 27px #707070 solid !important;
}
.dove-gray--ba-28 {
  border: 28px #707070 solid !important;
}
.dove-gray--bt-28 {
  border-top: 28px #707070 solid !important;
}
.dove-gray--br-28 {
  border-right: 28px #707070 solid !important;
}
.dove-gray--bl-28 {
  border-left: 28px #707070 solid !important;
}
.dove-gray--bb-28 {
  border-bottom: 28px #707070 solid !important;
}
.dove-gray--by-28 {
  border-top: 28px #707070 solid !important;
  border-bottom: 28px #707070 solid !important;
}
.dove-gray--bx-28 {
  border-right: 28px #707070 solid !important;
  border-left: 28px #707070 solid !important;
}
.dove-gray--ba-29 {
  border: 29px #707070 solid !important;
}
.dove-gray--bt-29 {
  border-top: 29px #707070 solid !important;
}
.dove-gray--br-29 {
  border-right: 29px #707070 solid !important;
}
.dove-gray--bl-29 {
  border-left: 29px #707070 solid !important;
}
.dove-gray--bb-29 {
  border-bottom: 29px #707070 solid !important;
}
.dove-gray--by-29 {
  border-top: 29px #707070 solid !important;
  border-bottom: 29px #707070 solid !important;
}
.dove-gray--bx-29 {
  border-right: 29px #707070 solid !important;
  border-left: 29px #707070 solid !important;
}
.dove-gray--ba-30 {
  border: 30px #707070 solid !important;
}
.dove-gray--bt-30 {
  border-top: 30px #707070 solid !important;
}
.dove-gray--br-30 {
  border-right: 30px #707070 solid !important;
}
.dove-gray--bl-30 {
  border-left: 30px #707070 solid !important;
}
.dove-gray--bb-30 {
  border-bottom: 30px #707070 solid !important;
}
.dove-gray--by-30 {
  border-top: 30px #707070 solid !important;
  border-bottom: 30px #707070 solid !important;
}
.dove-gray--bx-30 {
  border-right: 30px #707070 solid !important;
  border-left: 30px #707070 solid !important;
}
.dove-gray--ba-31 {
  border: 31px #707070 solid !important;
}
.dove-gray--bt-31 {
  border-top: 31px #707070 solid !important;
}
.dove-gray--br-31 {
  border-right: 31px #707070 solid !important;
}
.dove-gray--bl-31 {
  border-left: 31px #707070 solid !important;
}
.dove-gray--bb-31 {
  border-bottom: 31px #707070 solid !important;
}
.dove-gray--by-31 {
  border-top: 31px #707070 solid !important;
  border-bottom: 31px #707070 solid !important;
}
.dove-gray--bx-31 {
  border-right: 31px #707070 solid !important;
  border-left: 31px #707070 solid !important;
}
.dove-gray--ba-32 {
  border: 32px #707070 solid !important;
}
.dove-gray--bt-32 {
  border-top: 32px #707070 solid !important;
}
.dove-gray--br-32 {
  border-right: 32px #707070 solid !important;
}
.dove-gray--bl-32 {
  border-left: 32px #707070 solid !important;
}
.dove-gray--bb-32 {
  border-bottom: 32px #707070 solid !important;
}
.dove-gray--by-32 {
  border-top: 32px #707070 solid !important;
  border-bottom: 32px #707070 solid !important;
}
.dove-gray--bx-32 {
  border-right: 32px #707070 solid !important;
  border-left: 32px #707070 solid !important;
}
.dove-gray--ba-33 {
  border: 33px #707070 solid !important;
}
.dove-gray--bt-33 {
  border-top: 33px #707070 solid !important;
}
.dove-gray--br-33 {
  border-right: 33px #707070 solid !important;
}
.dove-gray--bl-33 {
  border-left: 33px #707070 solid !important;
}
.dove-gray--bb-33 {
  border-bottom: 33px #707070 solid !important;
}
.dove-gray--by-33 {
  border-top: 33px #707070 solid !important;
  border-bottom: 33px #707070 solid !important;
}
.dove-gray--bx-33 {
  border-right: 33px #707070 solid !important;
  border-left: 33px #707070 solid !important;
}
.dove-gray--ba-34 {
  border: 34px #707070 solid !important;
}
.dove-gray--bt-34 {
  border-top: 34px #707070 solid !important;
}
.dove-gray--br-34 {
  border-right: 34px #707070 solid !important;
}
.dove-gray--bl-34 {
  border-left: 34px #707070 solid !important;
}
.dove-gray--bb-34 {
  border-bottom: 34px #707070 solid !important;
}
.dove-gray--by-34 {
  border-top: 34px #707070 solid !important;
  border-bottom: 34px #707070 solid !important;
}
.dove-gray--bx-34 {
  border-right: 34px #707070 solid !important;
  border-left: 34px #707070 solid !important;
}
.dove-gray--ba-35 {
  border: 35px #707070 solid !important;
}
.dove-gray--bt-35 {
  border-top: 35px #707070 solid !important;
}
.dove-gray--br-35 {
  border-right: 35px #707070 solid !important;
}
.dove-gray--bl-35 {
  border-left: 35px #707070 solid !important;
}
.dove-gray--bb-35 {
  border-bottom: 35px #707070 solid !important;
}
.dove-gray--by-35 {
  border-top: 35px #707070 solid !important;
  border-bottom: 35px #707070 solid !important;
}
.dove-gray--bx-35 {
  border-right: 35px #707070 solid !important;
  border-left: 35px #707070 solid !important;
}
.dove-gray--ba-36 {
  border: 36px #707070 solid !important;
}
.dove-gray--bt-36 {
  border-top: 36px #707070 solid !important;
}
.dove-gray--br-36 {
  border-right: 36px #707070 solid !important;
}
.dove-gray--bl-36 {
  border-left: 36px #707070 solid !important;
}
.dove-gray--bb-36 {
  border-bottom: 36px #707070 solid !important;
}
.dove-gray--by-36 {
  border-top: 36px #707070 solid !important;
  border-bottom: 36px #707070 solid !important;
}
.dove-gray--bx-36 {
  border-right: 36px #707070 solid !important;
  border-left: 36px #707070 solid !important;
}
.dove-gray--ba-37 {
  border: 37px #707070 solid !important;
}
.dove-gray--bt-37 {
  border-top: 37px #707070 solid !important;
}
.dove-gray--br-37 {
  border-right: 37px #707070 solid !important;
}
.dove-gray--bl-37 {
  border-left: 37px #707070 solid !important;
}
.dove-gray--bb-37 {
  border-bottom: 37px #707070 solid !important;
}
.dove-gray--by-37 {
  border-top: 37px #707070 solid !important;
  border-bottom: 37px #707070 solid !important;
}
.dove-gray--bx-37 {
  border-right: 37px #707070 solid !important;
  border-left: 37px #707070 solid !important;
}
.dove-gray--ba-38 {
  border: 38px #707070 solid !important;
}
.dove-gray--bt-38 {
  border-top: 38px #707070 solid !important;
}
.dove-gray--br-38 {
  border-right: 38px #707070 solid !important;
}
.dove-gray--bl-38 {
  border-left: 38px #707070 solid !important;
}
.dove-gray--bb-38 {
  border-bottom: 38px #707070 solid !important;
}
.dove-gray--by-38 {
  border-top: 38px #707070 solid !important;
  border-bottom: 38px #707070 solid !important;
}
.dove-gray--bx-38 {
  border-right: 38px #707070 solid !important;
  border-left: 38px #707070 solid !important;
}
.dove-gray--ba-39 {
  border: 39px #707070 solid !important;
}
.dove-gray--bt-39 {
  border-top: 39px #707070 solid !important;
}
.dove-gray--br-39 {
  border-right: 39px #707070 solid !important;
}
.dove-gray--bl-39 {
  border-left: 39px #707070 solid !important;
}
.dove-gray--bb-39 {
  border-bottom: 39px #707070 solid !important;
}
.dove-gray--by-39 {
  border-top: 39px #707070 solid !important;
  border-bottom: 39px #707070 solid !important;
}
.dove-gray--bx-39 {
  border-right: 39px #707070 solid !important;
  border-left: 39px #707070 solid !important;
}
.dove-gray--ba-40 {
  border: 40px #707070 solid !important;
}
.dove-gray--bt-40 {
  border-top: 40px #707070 solid !important;
}
.dove-gray--br-40 {
  border-right: 40px #707070 solid !important;
}
.dove-gray--bl-40 {
  border-left: 40px #707070 solid !important;
}
.dove-gray--bb-40 {
  border-bottom: 40px #707070 solid !important;
}
.dove-gray--by-40 {
  border-top: 40px #707070 solid !important;
  border-bottom: 40px #707070 solid !important;
}
.dove-gray--bx-40 {
  border-right: 40px #707070 solid !important;
  border-left: 40px #707070 solid !important;
}
.dove-gray--ba-41 {
  border: 41px #707070 solid !important;
}
.dove-gray--bt-41 {
  border-top: 41px #707070 solid !important;
}
.dove-gray--br-41 {
  border-right: 41px #707070 solid !important;
}
.dove-gray--bl-41 {
  border-left: 41px #707070 solid !important;
}
.dove-gray--bb-41 {
  border-bottom: 41px #707070 solid !important;
}
.dove-gray--by-41 {
  border-top: 41px #707070 solid !important;
  border-bottom: 41px #707070 solid !important;
}
.dove-gray--bx-41 {
  border-right: 41px #707070 solid !important;
  border-left: 41px #707070 solid !important;
}
.dove-gray--ba-42 {
  border: 42px #707070 solid !important;
}
.dove-gray--bt-42 {
  border-top: 42px #707070 solid !important;
}
.dove-gray--br-42 {
  border-right: 42px #707070 solid !important;
}
.dove-gray--bl-42 {
  border-left: 42px #707070 solid !important;
}
.dove-gray--bb-42 {
  border-bottom: 42px #707070 solid !important;
}
.dove-gray--by-42 {
  border-top: 42px #707070 solid !important;
  border-bottom: 42px #707070 solid !important;
}
.dove-gray--bx-42 {
  border-right: 42px #707070 solid !important;
  border-left: 42px #707070 solid !important;
}
.dove-gray--ba-43 {
  border: 43px #707070 solid !important;
}
.dove-gray--bt-43 {
  border-top: 43px #707070 solid !important;
}
.dove-gray--br-43 {
  border-right: 43px #707070 solid !important;
}
.dove-gray--bl-43 {
  border-left: 43px #707070 solid !important;
}
.dove-gray--bb-43 {
  border-bottom: 43px #707070 solid !important;
}
.dove-gray--by-43 {
  border-top: 43px #707070 solid !important;
  border-bottom: 43px #707070 solid !important;
}
.dove-gray--bx-43 {
  border-right: 43px #707070 solid !important;
  border-left: 43px #707070 solid !important;
}
.dove-gray--ba-44 {
  border: 44px #707070 solid !important;
}
.dove-gray--bt-44 {
  border-top: 44px #707070 solid !important;
}
.dove-gray--br-44 {
  border-right: 44px #707070 solid !important;
}
.dove-gray--bl-44 {
  border-left: 44px #707070 solid !important;
}
.dove-gray--bb-44 {
  border-bottom: 44px #707070 solid !important;
}
.dove-gray--by-44 {
  border-top: 44px #707070 solid !important;
  border-bottom: 44px #707070 solid !important;
}
.dove-gray--bx-44 {
  border-right: 44px #707070 solid !important;
  border-left: 44px #707070 solid !important;
}
.dove-gray--ba-45 {
  border: 45px #707070 solid !important;
}
.dove-gray--bt-45 {
  border-top: 45px #707070 solid !important;
}
.dove-gray--br-45 {
  border-right: 45px #707070 solid !important;
}
.dove-gray--bl-45 {
  border-left: 45px #707070 solid !important;
}
.dove-gray--bb-45 {
  border-bottom: 45px #707070 solid !important;
}
.dove-gray--by-45 {
  border-top: 45px #707070 solid !important;
  border-bottom: 45px #707070 solid !important;
}
.dove-gray--bx-45 {
  border-right: 45px #707070 solid !important;
  border-left: 45px #707070 solid !important;
}
.dove-gray--ba-46 {
  border: 46px #707070 solid !important;
}
.dove-gray--bt-46 {
  border-top: 46px #707070 solid !important;
}
.dove-gray--br-46 {
  border-right: 46px #707070 solid !important;
}
.dove-gray--bl-46 {
  border-left: 46px #707070 solid !important;
}
.dove-gray--bb-46 {
  border-bottom: 46px #707070 solid !important;
}
.dove-gray--by-46 {
  border-top: 46px #707070 solid !important;
  border-bottom: 46px #707070 solid !important;
}
.dove-gray--bx-46 {
  border-right: 46px #707070 solid !important;
  border-left: 46px #707070 solid !important;
}
.dove-gray--ba-47 {
  border: 47px #707070 solid !important;
}
.dove-gray--bt-47 {
  border-top: 47px #707070 solid !important;
}
.dove-gray--br-47 {
  border-right: 47px #707070 solid !important;
}
.dove-gray--bl-47 {
  border-left: 47px #707070 solid !important;
}
.dove-gray--bb-47 {
  border-bottom: 47px #707070 solid !important;
}
.dove-gray--by-47 {
  border-top: 47px #707070 solid !important;
  border-bottom: 47px #707070 solid !important;
}
.dove-gray--bx-47 {
  border-right: 47px #707070 solid !important;
  border-left: 47px #707070 solid !important;
}
.dove-gray--ba-48 {
  border: 48px #707070 solid !important;
}
.dove-gray--bt-48 {
  border-top: 48px #707070 solid !important;
}
.dove-gray--br-48 {
  border-right: 48px #707070 solid !important;
}
.dove-gray--bl-48 {
  border-left: 48px #707070 solid !important;
}
.dove-gray--bb-48 {
  border-bottom: 48px #707070 solid !important;
}
.dove-gray--by-48 {
  border-top: 48px #707070 solid !important;
  border-bottom: 48px #707070 solid !important;
}
.dove-gray--bx-48 {
  border-right: 48px #707070 solid !important;
  border-left: 48px #707070 solid !important;
}
.dove-gray--ba-49 {
  border: 49px #707070 solid !important;
}
.dove-gray--bt-49 {
  border-top: 49px #707070 solid !important;
}
.dove-gray--br-49 {
  border-right: 49px #707070 solid !important;
}
.dove-gray--bl-49 {
  border-left: 49px #707070 solid !important;
}
.dove-gray--bb-49 {
  border-bottom: 49px #707070 solid !important;
}
.dove-gray--by-49 {
  border-top: 49px #707070 solid !important;
  border-bottom: 49px #707070 solid !important;
}
.dove-gray--bx-49 {
  border-right: 49px #707070 solid !important;
  border-left: 49px #707070 solid !important;
}
.dove-gray--ba-50 {
  border: 50px #707070 solid !important;
}
.dove-gray--bt-50 {
  border-top: 50px #707070 solid !important;
}
.dove-gray--br-50 {
  border-right: 50px #707070 solid !important;
}
.dove-gray--bl-50 {
  border-left: 50px #707070 solid !important;
}
.dove-gray--bb-50 {
  border-bottom: 50px #707070 solid !important;
}
.dove-gray--by-50 {
  border-top: 50px #707070 solid !important;
  border-bottom: 50px #707070 solid !important;
}
.dove-gray--bx-50 {
  border-right: 50px #707070 solid !important;
  border-left: 50px #707070 solid !important;
}
.dove-gray--ba-51 {
  border: 51px #707070 solid !important;
}
.dove-gray--bt-51 {
  border-top: 51px #707070 solid !important;
}
.dove-gray--br-51 {
  border-right: 51px #707070 solid !important;
}
.dove-gray--bl-51 {
  border-left: 51px #707070 solid !important;
}
.dove-gray--bb-51 {
  border-bottom: 51px #707070 solid !important;
}
.dove-gray--by-51 {
  border-top: 51px #707070 solid !important;
  border-bottom: 51px #707070 solid !important;
}
.dove-gray--bx-51 {
  border-right: 51px #707070 solid !important;
  border-left: 51px #707070 solid !important;
}
.dove-gray--ba-52 {
  border: 52px #707070 solid !important;
}
.dove-gray--bt-52 {
  border-top: 52px #707070 solid !important;
}
.dove-gray--br-52 {
  border-right: 52px #707070 solid !important;
}
.dove-gray--bl-52 {
  border-left: 52px #707070 solid !important;
}
.dove-gray--bb-52 {
  border-bottom: 52px #707070 solid !important;
}
.dove-gray--by-52 {
  border-top: 52px #707070 solid !important;
  border-bottom: 52px #707070 solid !important;
}
.dove-gray--bx-52 {
  border-right: 52px #707070 solid !important;
  border-left: 52px #707070 solid !important;
}
.dove-gray--ba-53 {
  border: 53px #707070 solid !important;
}
.dove-gray--bt-53 {
  border-top: 53px #707070 solid !important;
}
.dove-gray--br-53 {
  border-right: 53px #707070 solid !important;
}
.dove-gray--bl-53 {
  border-left: 53px #707070 solid !important;
}
.dove-gray--bb-53 {
  border-bottom: 53px #707070 solid !important;
}
.dove-gray--by-53 {
  border-top: 53px #707070 solid !important;
  border-bottom: 53px #707070 solid !important;
}
.dove-gray--bx-53 {
  border-right: 53px #707070 solid !important;
  border-left: 53px #707070 solid !important;
}
.dove-gray--ba-54 {
  border: 54px #707070 solid !important;
}
.dove-gray--bt-54 {
  border-top: 54px #707070 solid !important;
}
.dove-gray--br-54 {
  border-right: 54px #707070 solid !important;
}
.dove-gray--bl-54 {
  border-left: 54px #707070 solid !important;
}
.dove-gray--bb-54 {
  border-bottom: 54px #707070 solid !important;
}
.dove-gray--by-54 {
  border-top: 54px #707070 solid !important;
  border-bottom: 54px #707070 solid !important;
}
.dove-gray--bx-54 {
  border-right: 54px #707070 solid !important;
  border-left: 54px #707070 solid !important;
}
.dove-gray--ba-55 {
  border: 55px #707070 solid !important;
}
.dove-gray--bt-55 {
  border-top: 55px #707070 solid !important;
}
.dove-gray--br-55 {
  border-right: 55px #707070 solid !important;
}
.dove-gray--bl-55 {
  border-left: 55px #707070 solid !important;
}
.dove-gray--bb-55 {
  border-bottom: 55px #707070 solid !important;
}
.dove-gray--by-55 {
  border-top: 55px #707070 solid !important;
  border-bottom: 55px #707070 solid !important;
}
.dove-gray--bx-55 {
  border-right: 55px #707070 solid !important;
  border-left: 55px #707070 solid !important;
}
.dove-gray--ba-56 {
  border: 56px #707070 solid !important;
}
.dove-gray--bt-56 {
  border-top: 56px #707070 solid !important;
}
.dove-gray--br-56 {
  border-right: 56px #707070 solid !important;
}
.dove-gray--bl-56 {
  border-left: 56px #707070 solid !important;
}
.dove-gray--bb-56 {
  border-bottom: 56px #707070 solid !important;
}
.dove-gray--by-56 {
  border-top: 56px #707070 solid !important;
  border-bottom: 56px #707070 solid !important;
}
.dove-gray--bx-56 {
  border-right: 56px #707070 solid !important;
  border-left: 56px #707070 solid !important;
}
.dove-gray--ba-57 {
  border: 57px #707070 solid !important;
}
.dove-gray--bt-57 {
  border-top: 57px #707070 solid !important;
}
.dove-gray--br-57 {
  border-right: 57px #707070 solid !important;
}
.dove-gray--bl-57 {
  border-left: 57px #707070 solid !important;
}
.dove-gray--bb-57 {
  border-bottom: 57px #707070 solid !important;
}
.dove-gray--by-57 {
  border-top: 57px #707070 solid !important;
  border-bottom: 57px #707070 solid !important;
}
.dove-gray--bx-57 {
  border-right: 57px #707070 solid !important;
  border-left: 57px #707070 solid !important;
}
.dove-gray--ba-58 {
  border: 58px #707070 solid !important;
}
.dove-gray--bt-58 {
  border-top: 58px #707070 solid !important;
}
.dove-gray--br-58 {
  border-right: 58px #707070 solid !important;
}
.dove-gray--bl-58 {
  border-left: 58px #707070 solid !important;
}
.dove-gray--bb-58 {
  border-bottom: 58px #707070 solid !important;
}
.dove-gray--by-58 {
  border-top: 58px #707070 solid !important;
  border-bottom: 58px #707070 solid !important;
}
.dove-gray--bx-58 {
  border-right: 58px #707070 solid !important;
  border-left: 58px #707070 solid !important;
}
.dove-gray--ba-59 {
  border: 59px #707070 solid !important;
}
.dove-gray--bt-59 {
  border-top: 59px #707070 solid !important;
}
.dove-gray--br-59 {
  border-right: 59px #707070 solid !important;
}
.dove-gray--bl-59 {
  border-left: 59px #707070 solid !important;
}
.dove-gray--bb-59 {
  border-bottom: 59px #707070 solid !important;
}
.dove-gray--by-59 {
  border-top: 59px #707070 solid !important;
  border-bottom: 59px #707070 solid !important;
}
.dove-gray--bx-59 {
  border-right: 59px #707070 solid !important;
  border-left: 59px #707070 solid !important;
}
.dove-gray--ba-60 {
  border: 60px #707070 solid !important;
}
.dove-gray--bt-60 {
  border-top: 60px #707070 solid !important;
}
.dove-gray--br-60 {
  border-right: 60px #707070 solid !important;
}
.dove-gray--bl-60 {
  border-left: 60px #707070 solid !important;
}
.dove-gray--bb-60 {
  border-bottom: 60px #707070 solid !important;
}
.dove-gray--by-60 {
  border-top: 60px #707070 solid !important;
  border-bottom: 60px #707070 solid !important;
}
.dove-gray--bx-60 {
  border-right: 60px #707070 solid !important;
  border-left: 60px #707070 solid !important;
}
.dove-gray--ba-61 {
  border: 61px #707070 solid !important;
}
.dove-gray--bt-61 {
  border-top: 61px #707070 solid !important;
}
.dove-gray--br-61 {
  border-right: 61px #707070 solid !important;
}
.dove-gray--bl-61 {
  border-left: 61px #707070 solid !important;
}
.dove-gray--bb-61 {
  border-bottom: 61px #707070 solid !important;
}
.dove-gray--by-61 {
  border-top: 61px #707070 solid !important;
  border-bottom: 61px #707070 solid !important;
}
.dove-gray--bx-61 {
  border-right: 61px #707070 solid !important;
  border-left: 61px #707070 solid !important;
}
.dove-gray--ba-62 {
  border: 62px #707070 solid !important;
}
.dove-gray--bt-62 {
  border-top: 62px #707070 solid !important;
}
.dove-gray--br-62 {
  border-right: 62px #707070 solid !important;
}
.dove-gray--bl-62 {
  border-left: 62px #707070 solid !important;
}
.dove-gray--bb-62 {
  border-bottom: 62px #707070 solid !important;
}
.dove-gray--by-62 {
  border-top: 62px #707070 solid !important;
  border-bottom: 62px #707070 solid !important;
}
.dove-gray--bx-62 {
  border-right: 62px #707070 solid !important;
  border-left: 62px #707070 solid !important;
}
.dove-gray--ba-63 {
  border: 63px #707070 solid !important;
}
.dove-gray--bt-63 {
  border-top: 63px #707070 solid !important;
}
.dove-gray--br-63 {
  border-right: 63px #707070 solid !important;
}
.dove-gray--bl-63 {
  border-left: 63px #707070 solid !important;
}
.dove-gray--bb-63 {
  border-bottom: 63px #707070 solid !important;
}
.dove-gray--by-63 {
  border-top: 63px #707070 solid !important;
  border-bottom: 63px #707070 solid !important;
}
.dove-gray--bx-63 {
  border-right: 63px #707070 solid !important;
  border-left: 63px #707070 solid !important;
}
.dove-gray--ba-64 {
  border: 64px #707070 solid !important;
}
.dove-gray--bt-64 {
  border-top: 64px #707070 solid !important;
}
.dove-gray--br-64 {
  border-right: 64px #707070 solid !important;
}
.dove-gray--bl-64 {
  border-left: 64px #707070 solid !important;
}
.dove-gray--bb-64 {
  border-bottom: 64px #707070 solid !important;
}
.dove-gray--by-64 {
  border-top: 64px #707070 solid !important;
  border-bottom: 64px #707070 solid !important;
}
.dove-gray--bx-64 {
  border-right: 64px #707070 solid !important;
  border-left: 64px #707070 solid !important;
}
.dove-gray--ba-65 {
  border: 65px #707070 solid !important;
}
.dove-gray--bt-65 {
  border-top: 65px #707070 solid !important;
}
.dove-gray--br-65 {
  border-right: 65px #707070 solid !important;
}
.dove-gray--bl-65 {
  border-left: 65px #707070 solid !important;
}
.dove-gray--bb-65 {
  border-bottom: 65px #707070 solid !important;
}
.dove-gray--by-65 {
  border-top: 65px #707070 solid !important;
  border-bottom: 65px #707070 solid !important;
}
.dove-gray--bx-65 {
  border-right: 65px #707070 solid !important;
  border-left: 65px #707070 solid !important;
}
.dove-gray--ba-66 {
  border: 66px #707070 solid !important;
}
.dove-gray--bt-66 {
  border-top: 66px #707070 solid !important;
}
.dove-gray--br-66 {
  border-right: 66px #707070 solid !important;
}
.dove-gray--bl-66 {
  border-left: 66px #707070 solid !important;
}
.dove-gray--bb-66 {
  border-bottom: 66px #707070 solid !important;
}
.dove-gray--by-66 {
  border-top: 66px #707070 solid !important;
  border-bottom: 66px #707070 solid !important;
}
.dove-gray--bx-66 {
  border-right: 66px #707070 solid !important;
  border-left: 66px #707070 solid !important;
}
.dove-gray--ba-67 {
  border: 67px #707070 solid !important;
}
.dove-gray--bt-67 {
  border-top: 67px #707070 solid !important;
}
.dove-gray--br-67 {
  border-right: 67px #707070 solid !important;
}
.dove-gray--bl-67 {
  border-left: 67px #707070 solid !important;
}
.dove-gray--bb-67 {
  border-bottom: 67px #707070 solid !important;
}
.dove-gray--by-67 {
  border-top: 67px #707070 solid !important;
  border-bottom: 67px #707070 solid !important;
}
.dove-gray--bx-67 {
  border-right: 67px #707070 solid !important;
  border-left: 67px #707070 solid !important;
}
.dove-gray--ba-68 {
  border: 68px #707070 solid !important;
}
.dove-gray--bt-68 {
  border-top: 68px #707070 solid !important;
}
.dove-gray--br-68 {
  border-right: 68px #707070 solid !important;
}
.dove-gray--bl-68 {
  border-left: 68px #707070 solid !important;
}
.dove-gray--bb-68 {
  border-bottom: 68px #707070 solid !important;
}
.dove-gray--by-68 {
  border-top: 68px #707070 solid !important;
  border-bottom: 68px #707070 solid !important;
}
.dove-gray--bx-68 {
  border-right: 68px #707070 solid !important;
  border-left: 68px #707070 solid !important;
}
.dove-gray--ba-69 {
  border: 69px #707070 solid !important;
}
.dove-gray--bt-69 {
  border-top: 69px #707070 solid !important;
}
.dove-gray--br-69 {
  border-right: 69px #707070 solid !important;
}
.dove-gray--bl-69 {
  border-left: 69px #707070 solid !important;
}
.dove-gray--bb-69 {
  border-bottom: 69px #707070 solid !important;
}
.dove-gray--by-69 {
  border-top: 69px #707070 solid !important;
  border-bottom: 69px #707070 solid !important;
}
.dove-gray--bx-69 {
  border-right: 69px #707070 solid !important;
  border-left: 69px #707070 solid !important;
}
.dove-gray--ba-70 {
  border: 70px #707070 solid !important;
}
.dove-gray--bt-70 {
  border-top: 70px #707070 solid !important;
}
.dove-gray--br-70 {
  border-right: 70px #707070 solid !important;
}
.dove-gray--bl-70 {
  border-left: 70px #707070 solid !important;
}
.dove-gray--bb-70 {
  border-bottom: 70px #707070 solid !important;
}
.dove-gray--by-70 {
  border-top: 70px #707070 solid !important;
  border-bottom: 70px #707070 solid !important;
}
.dove-gray--bx-70 {
  border-right: 70px #707070 solid !important;
  border-left: 70px #707070 solid !important;
}
.dove-gray--ba-71 {
  border: 71px #707070 solid !important;
}
.dove-gray--bt-71 {
  border-top: 71px #707070 solid !important;
}
.dove-gray--br-71 {
  border-right: 71px #707070 solid !important;
}
.dove-gray--bl-71 {
  border-left: 71px #707070 solid !important;
}
.dove-gray--bb-71 {
  border-bottom: 71px #707070 solid !important;
}
.dove-gray--by-71 {
  border-top: 71px #707070 solid !important;
  border-bottom: 71px #707070 solid !important;
}
.dove-gray--bx-71 {
  border-right: 71px #707070 solid !important;
  border-left: 71px #707070 solid !important;
}
.dove-gray--ba-72 {
  border: 72px #707070 solid !important;
}
.dove-gray--bt-72 {
  border-top: 72px #707070 solid !important;
}
.dove-gray--br-72 {
  border-right: 72px #707070 solid !important;
}
.dove-gray--bl-72 {
  border-left: 72px #707070 solid !important;
}
.dove-gray--bb-72 {
  border-bottom: 72px #707070 solid !important;
}
.dove-gray--by-72 {
  border-top: 72px #707070 solid !important;
  border-bottom: 72px #707070 solid !important;
}
.dove-gray--bx-72 {
  border-right: 72px #707070 solid !important;
  border-left: 72px #707070 solid !important;
}
.dove-gray--ba-73 {
  border: 73px #707070 solid !important;
}
.dove-gray--bt-73 {
  border-top: 73px #707070 solid !important;
}
.dove-gray--br-73 {
  border-right: 73px #707070 solid !important;
}
.dove-gray--bl-73 {
  border-left: 73px #707070 solid !important;
}
.dove-gray--bb-73 {
  border-bottom: 73px #707070 solid !important;
}
.dove-gray--by-73 {
  border-top: 73px #707070 solid !important;
  border-bottom: 73px #707070 solid !important;
}
.dove-gray--bx-73 {
  border-right: 73px #707070 solid !important;
  border-left: 73px #707070 solid !important;
}
.dove-gray--ba-74 {
  border: 74px #707070 solid !important;
}
.dove-gray--bt-74 {
  border-top: 74px #707070 solid !important;
}
.dove-gray--br-74 {
  border-right: 74px #707070 solid !important;
}
.dove-gray--bl-74 {
  border-left: 74px #707070 solid !important;
}
.dove-gray--bb-74 {
  border-bottom: 74px #707070 solid !important;
}
.dove-gray--by-74 {
  border-top: 74px #707070 solid !important;
  border-bottom: 74px #707070 solid !important;
}
.dove-gray--bx-74 {
  border-right: 74px #707070 solid !important;
  border-left: 74px #707070 solid !important;
}
.dove-gray--ba-75 {
  border: 75px #707070 solid !important;
}
.dove-gray--bt-75 {
  border-top: 75px #707070 solid !important;
}
.dove-gray--br-75 {
  border-right: 75px #707070 solid !important;
}
.dove-gray--bl-75 {
  border-left: 75px #707070 solid !important;
}
.dove-gray--bb-75 {
  border-bottom: 75px #707070 solid !important;
}
.dove-gray--by-75 {
  border-top: 75px #707070 solid !important;
  border-bottom: 75px #707070 solid !important;
}
.dove-gray--bx-75 {
  border-right: 75px #707070 solid !important;
  border-left: 75px #707070 solid !important;
}
.dove-gray--ba-76 {
  border: 76px #707070 solid !important;
}
.dove-gray--bt-76 {
  border-top: 76px #707070 solid !important;
}
.dove-gray--br-76 {
  border-right: 76px #707070 solid !important;
}
.dove-gray--bl-76 {
  border-left: 76px #707070 solid !important;
}
.dove-gray--bb-76 {
  border-bottom: 76px #707070 solid !important;
}
.dove-gray--by-76 {
  border-top: 76px #707070 solid !important;
  border-bottom: 76px #707070 solid !important;
}
.dove-gray--bx-76 {
  border-right: 76px #707070 solid !important;
  border-left: 76px #707070 solid !important;
}
.dove-gray--ba-77 {
  border: 77px #707070 solid !important;
}
.dove-gray--bt-77 {
  border-top: 77px #707070 solid !important;
}
.dove-gray--br-77 {
  border-right: 77px #707070 solid !important;
}
.dove-gray--bl-77 {
  border-left: 77px #707070 solid !important;
}
.dove-gray--bb-77 {
  border-bottom: 77px #707070 solid !important;
}
.dove-gray--by-77 {
  border-top: 77px #707070 solid !important;
  border-bottom: 77px #707070 solid !important;
}
.dove-gray--bx-77 {
  border-right: 77px #707070 solid !important;
  border-left: 77px #707070 solid !important;
}
.dove-gray--ba-78 {
  border: 78px #707070 solid !important;
}
.dove-gray--bt-78 {
  border-top: 78px #707070 solid !important;
}
.dove-gray--br-78 {
  border-right: 78px #707070 solid !important;
}
.dove-gray--bl-78 {
  border-left: 78px #707070 solid !important;
}
.dove-gray--bb-78 {
  border-bottom: 78px #707070 solid !important;
}
.dove-gray--by-78 {
  border-top: 78px #707070 solid !important;
  border-bottom: 78px #707070 solid !important;
}
.dove-gray--bx-78 {
  border-right: 78px #707070 solid !important;
  border-left: 78px #707070 solid !important;
}
.dove-gray--ba-79 {
  border: 79px #707070 solid !important;
}
.dove-gray--bt-79 {
  border-top: 79px #707070 solid !important;
}
.dove-gray--br-79 {
  border-right: 79px #707070 solid !important;
}
.dove-gray--bl-79 {
  border-left: 79px #707070 solid !important;
}
.dove-gray--bb-79 {
  border-bottom: 79px #707070 solid !important;
}
.dove-gray--by-79 {
  border-top: 79px #707070 solid !important;
  border-bottom: 79px #707070 solid !important;
}
.dove-gray--bx-79 {
  border-right: 79px #707070 solid !important;
  border-left: 79px #707070 solid !important;
}
.dove-gray--ba-80 {
  border: 80px #707070 solid !important;
}
.dove-gray--bt-80 {
  border-top: 80px #707070 solid !important;
}
.dove-gray--br-80 {
  border-right: 80px #707070 solid !important;
}
.dove-gray--bl-80 {
  border-left: 80px #707070 solid !important;
}
.dove-gray--bb-80 {
  border-bottom: 80px #707070 solid !important;
}
.dove-gray--by-80 {
  border-top: 80px #707070 solid !important;
  border-bottom: 80px #707070 solid !important;
}
.dove-gray--bx-80 {
  border-right: 80px #707070 solid !important;
  border-left: 80px #707070 solid !important;
}
.dove-gray--ba-81 {
  border: 81px #707070 solid !important;
}
.dove-gray--bt-81 {
  border-top: 81px #707070 solid !important;
}
.dove-gray--br-81 {
  border-right: 81px #707070 solid !important;
}
.dove-gray--bl-81 {
  border-left: 81px #707070 solid !important;
}
.dove-gray--bb-81 {
  border-bottom: 81px #707070 solid !important;
}
.dove-gray--by-81 {
  border-top: 81px #707070 solid !important;
  border-bottom: 81px #707070 solid !important;
}
.dove-gray--bx-81 {
  border-right: 81px #707070 solid !important;
  border-left: 81px #707070 solid !important;
}
.dove-gray--ba-82 {
  border: 82px #707070 solid !important;
}
.dove-gray--bt-82 {
  border-top: 82px #707070 solid !important;
}
.dove-gray--br-82 {
  border-right: 82px #707070 solid !important;
}
.dove-gray--bl-82 {
  border-left: 82px #707070 solid !important;
}
.dove-gray--bb-82 {
  border-bottom: 82px #707070 solid !important;
}
.dove-gray--by-82 {
  border-top: 82px #707070 solid !important;
  border-bottom: 82px #707070 solid !important;
}
.dove-gray--bx-82 {
  border-right: 82px #707070 solid !important;
  border-left: 82px #707070 solid !important;
}
.dove-gray--ba-83 {
  border: 83px #707070 solid !important;
}
.dove-gray--bt-83 {
  border-top: 83px #707070 solid !important;
}
.dove-gray--br-83 {
  border-right: 83px #707070 solid !important;
}
.dove-gray--bl-83 {
  border-left: 83px #707070 solid !important;
}
.dove-gray--bb-83 {
  border-bottom: 83px #707070 solid !important;
}
.dove-gray--by-83 {
  border-top: 83px #707070 solid !important;
  border-bottom: 83px #707070 solid !important;
}
.dove-gray--bx-83 {
  border-right: 83px #707070 solid !important;
  border-left: 83px #707070 solid !important;
}
.dove-gray--ba-84 {
  border: 84px #707070 solid !important;
}
.dove-gray--bt-84 {
  border-top: 84px #707070 solid !important;
}
.dove-gray--br-84 {
  border-right: 84px #707070 solid !important;
}
.dove-gray--bl-84 {
  border-left: 84px #707070 solid !important;
}
.dove-gray--bb-84 {
  border-bottom: 84px #707070 solid !important;
}
.dove-gray--by-84 {
  border-top: 84px #707070 solid !important;
  border-bottom: 84px #707070 solid !important;
}
.dove-gray--bx-84 {
  border-right: 84px #707070 solid !important;
  border-left: 84px #707070 solid !important;
}
.dove-gray--ba-85 {
  border: 85px #707070 solid !important;
}
.dove-gray--bt-85 {
  border-top: 85px #707070 solid !important;
}
.dove-gray--br-85 {
  border-right: 85px #707070 solid !important;
}
.dove-gray--bl-85 {
  border-left: 85px #707070 solid !important;
}
.dove-gray--bb-85 {
  border-bottom: 85px #707070 solid !important;
}
.dove-gray--by-85 {
  border-top: 85px #707070 solid !important;
  border-bottom: 85px #707070 solid !important;
}
.dove-gray--bx-85 {
  border-right: 85px #707070 solid !important;
  border-left: 85px #707070 solid !important;
}
.dove-gray--ba-86 {
  border: 86px #707070 solid !important;
}
.dove-gray--bt-86 {
  border-top: 86px #707070 solid !important;
}
.dove-gray--br-86 {
  border-right: 86px #707070 solid !important;
}
.dove-gray--bl-86 {
  border-left: 86px #707070 solid !important;
}
.dove-gray--bb-86 {
  border-bottom: 86px #707070 solid !important;
}
.dove-gray--by-86 {
  border-top: 86px #707070 solid !important;
  border-bottom: 86px #707070 solid !important;
}
.dove-gray--bx-86 {
  border-right: 86px #707070 solid !important;
  border-left: 86px #707070 solid !important;
}
.dove-gray--ba-87 {
  border: 87px #707070 solid !important;
}
.dove-gray--bt-87 {
  border-top: 87px #707070 solid !important;
}
.dove-gray--br-87 {
  border-right: 87px #707070 solid !important;
}
.dove-gray--bl-87 {
  border-left: 87px #707070 solid !important;
}
.dove-gray--bb-87 {
  border-bottom: 87px #707070 solid !important;
}
.dove-gray--by-87 {
  border-top: 87px #707070 solid !important;
  border-bottom: 87px #707070 solid !important;
}
.dove-gray--bx-87 {
  border-right: 87px #707070 solid !important;
  border-left: 87px #707070 solid !important;
}
.dove-gray--ba-88 {
  border: 88px #707070 solid !important;
}
.dove-gray--bt-88 {
  border-top: 88px #707070 solid !important;
}
.dove-gray--br-88 {
  border-right: 88px #707070 solid !important;
}
.dove-gray--bl-88 {
  border-left: 88px #707070 solid !important;
}
.dove-gray--bb-88 {
  border-bottom: 88px #707070 solid !important;
}
.dove-gray--by-88 {
  border-top: 88px #707070 solid !important;
  border-bottom: 88px #707070 solid !important;
}
.dove-gray--bx-88 {
  border-right: 88px #707070 solid !important;
  border-left: 88px #707070 solid !important;
}
.dove-gray--ba-89 {
  border: 89px #707070 solid !important;
}
.dove-gray--bt-89 {
  border-top: 89px #707070 solid !important;
}
.dove-gray--br-89 {
  border-right: 89px #707070 solid !important;
}
.dove-gray--bl-89 {
  border-left: 89px #707070 solid !important;
}
.dove-gray--bb-89 {
  border-bottom: 89px #707070 solid !important;
}
.dove-gray--by-89 {
  border-top: 89px #707070 solid !important;
  border-bottom: 89px #707070 solid !important;
}
.dove-gray--bx-89 {
  border-right: 89px #707070 solid !important;
  border-left: 89px #707070 solid !important;
}
.dove-gray--ba-90 {
  border: 90px #707070 solid !important;
}
.dove-gray--bt-90 {
  border-top: 90px #707070 solid !important;
}
.dove-gray--br-90 {
  border-right: 90px #707070 solid !important;
}
.dove-gray--bl-90 {
  border-left: 90px #707070 solid !important;
}
.dove-gray--bb-90 {
  border-bottom: 90px #707070 solid !important;
}
.dove-gray--by-90 {
  border-top: 90px #707070 solid !important;
  border-bottom: 90px #707070 solid !important;
}
.dove-gray--bx-90 {
  border-right: 90px #707070 solid !important;
  border-left: 90px #707070 solid !important;
}
.dove-gray--ba-91 {
  border: 91px #707070 solid !important;
}
.dove-gray--bt-91 {
  border-top: 91px #707070 solid !important;
}
.dove-gray--br-91 {
  border-right: 91px #707070 solid !important;
}
.dove-gray--bl-91 {
  border-left: 91px #707070 solid !important;
}
.dove-gray--bb-91 {
  border-bottom: 91px #707070 solid !important;
}
.dove-gray--by-91 {
  border-top: 91px #707070 solid !important;
  border-bottom: 91px #707070 solid !important;
}
.dove-gray--bx-91 {
  border-right: 91px #707070 solid !important;
  border-left: 91px #707070 solid !important;
}
.dove-gray--ba-92 {
  border: 92px #707070 solid !important;
}
.dove-gray--bt-92 {
  border-top: 92px #707070 solid !important;
}
.dove-gray--br-92 {
  border-right: 92px #707070 solid !important;
}
.dove-gray--bl-92 {
  border-left: 92px #707070 solid !important;
}
.dove-gray--bb-92 {
  border-bottom: 92px #707070 solid !important;
}
.dove-gray--by-92 {
  border-top: 92px #707070 solid !important;
  border-bottom: 92px #707070 solid !important;
}
.dove-gray--bx-92 {
  border-right: 92px #707070 solid !important;
  border-left: 92px #707070 solid !important;
}
.dove-gray--ba-93 {
  border: 93px #707070 solid !important;
}
.dove-gray--bt-93 {
  border-top: 93px #707070 solid !important;
}
.dove-gray--br-93 {
  border-right: 93px #707070 solid !important;
}
.dove-gray--bl-93 {
  border-left: 93px #707070 solid !important;
}
.dove-gray--bb-93 {
  border-bottom: 93px #707070 solid !important;
}
.dove-gray--by-93 {
  border-top: 93px #707070 solid !important;
  border-bottom: 93px #707070 solid !important;
}
.dove-gray--bx-93 {
  border-right: 93px #707070 solid !important;
  border-left: 93px #707070 solid !important;
}
.dove-gray--ba-94 {
  border: 94px #707070 solid !important;
}
.dove-gray--bt-94 {
  border-top: 94px #707070 solid !important;
}
.dove-gray--br-94 {
  border-right: 94px #707070 solid !important;
}
.dove-gray--bl-94 {
  border-left: 94px #707070 solid !important;
}
.dove-gray--bb-94 {
  border-bottom: 94px #707070 solid !important;
}
.dove-gray--by-94 {
  border-top: 94px #707070 solid !important;
  border-bottom: 94px #707070 solid !important;
}
.dove-gray--bx-94 {
  border-right: 94px #707070 solid !important;
  border-left: 94px #707070 solid !important;
}
.dove-gray--ba-95 {
  border: 95px #707070 solid !important;
}
.dove-gray--bt-95 {
  border-top: 95px #707070 solid !important;
}
.dove-gray--br-95 {
  border-right: 95px #707070 solid !important;
}
.dove-gray--bl-95 {
  border-left: 95px #707070 solid !important;
}
.dove-gray--bb-95 {
  border-bottom: 95px #707070 solid !important;
}
.dove-gray--by-95 {
  border-top: 95px #707070 solid !important;
  border-bottom: 95px #707070 solid !important;
}
.dove-gray--bx-95 {
  border-right: 95px #707070 solid !important;
  border-left: 95px #707070 solid !important;
}
.dove-gray--ba-96 {
  border: 96px #707070 solid !important;
}
.dove-gray--bt-96 {
  border-top: 96px #707070 solid !important;
}
.dove-gray--br-96 {
  border-right: 96px #707070 solid !important;
}
.dove-gray--bl-96 {
  border-left: 96px #707070 solid !important;
}
.dove-gray--bb-96 {
  border-bottom: 96px #707070 solid !important;
}
.dove-gray--by-96 {
  border-top: 96px #707070 solid !important;
  border-bottom: 96px #707070 solid !important;
}
.dove-gray--bx-96 {
  border-right: 96px #707070 solid !important;
  border-left: 96px #707070 solid !important;
}
.dove-gray--ba-97 {
  border: 97px #707070 solid !important;
}
.dove-gray--bt-97 {
  border-top: 97px #707070 solid !important;
}
.dove-gray--br-97 {
  border-right: 97px #707070 solid !important;
}
.dove-gray--bl-97 {
  border-left: 97px #707070 solid !important;
}
.dove-gray--bb-97 {
  border-bottom: 97px #707070 solid !important;
}
.dove-gray--by-97 {
  border-top: 97px #707070 solid !important;
  border-bottom: 97px #707070 solid !important;
}
.dove-gray--bx-97 {
  border-right: 97px #707070 solid !important;
  border-left: 97px #707070 solid !important;
}
.dove-gray--ba-98 {
  border: 98px #707070 solid !important;
}
.dove-gray--bt-98 {
  border-top: 98px #707070 solid !important;
}
.dove-gray--br-98 {
  border-right: 98px #707070 solid !important;
}
.dove-gray--bl-98 {
  border-left: 98px #707070 solid !important;
}
.dove-gray--bb-98 {
  border-bottom: 98px #707070 solid !important;
}
.dove-gray--by-98 {
  border-top: 98px #707070 solid !important;
  border-bottom: 98px #707070 solid !important;
}
.dove-gray--bx-98 {
  border-right: 98px #707070 solid !important;
  border-left: 98px #707070 solid !important;
}
.dove-gray--ba-99 {
  border: 99px #707070 solid !important;
}
.dove-gray--bt-99 {
  border-top: 99px #707070 solid !important;
}
.dove-gray--br-99 {
  border-right: 99px #707070 solid !important;
}
.dove-gray--bl-99 {
  border-left: 99px #707070 solid !important;
}
.dove-gray--bb-99 {
  border-bottom: 99px #707070 solid !important;
}
.dove-gray--by-99 {
  border-top: 99px #707070 solid !important;
  border-bottom: 99px #707070 solid !important;
}
.dove-gray--bx-99 {
  border-right: 99px #707070 solid !important;
  border-left: 99px #707070 solid !important;
}
.dove-gray--ba-100 {
  border: 100px #707070 solid !important;
}
.dove-gray--bt-100 {
  border-top: 100px #707070 solid !important;
}
.dove-gray--br-100 {
  border-right: 100px #707070 solid !important;
}
.dove-gray--bl-100 {
  border-left: 100px #707070 solid !important;
}
.dove-gray--bb-100 {
  border-bottom: 100px #707070 solid !important;
}
.dove-gray--by-100 {
  border-top: 100px #707070 solid !important;
  border-bottom: 100px #707070 solid !important;
}
.dove-gray--bx-100 {
  border-right: 100px #707070 solid !important;
  border-left: 100px #707070 solid !important;
}
.gray-approx--ba-1 {
  border: 1px #8d8989 solid !important;
}
.gray-approx--bt-1 {
  border-top: 1px #8d8989 solid !important;
}
.gray-approx--br-1 {
  border-right: 1px #8d8989 solid !important;
}
.gray-approx--bl-1 {
  border-left: 1px #8d8989 solid !important;
}
.gray-approx--bb-1 {
  border-bottom: 1px #8d8989 solid !important;
}
.gray-approx--by-1 {
  border-top: 1px #8d8989 solid !important;
  border-bottom: 1px #8d8989 solid !important;
}
.gray-approx--bx-1 {
  border-right: 1px #8d8989 solid !important;
  border-left: 1px #8d8989 solid !important;
}
.gray-approx--ba-2 {
  border: 2px #8d8989 solid !important;
}
.gray-approx--bt-2 {
  border-top: 2px #8d8989 solid !important;
}
.gray-approx--br-2 {
  border-right: 2px #8d8989 solid !important;
}
.gray-approx--bl-2 {
  border-left: 2px #8d8989 solid !important;
}
.gray-approx--bb-2 {
  border-bottom: 2px #8d8989 solid !important;
}
.gray-approx--by-2 {
  border-top: 2px #8d8989 solid !important;
  border-bottom: 2px #8d8989 solid !important;
}
.gray-approx--bx-2 {
  border-right: 2px #8d8989 solid !important;
  border-left: 2px #8d8989 solid !important;
}
.gray-approx--ba-3 {
  border: 3px #8d8989 solid !important;
}
.gray-approx--bt-3 {
  border-top: 3px #8d8989 solid !important;
}
.gray-approx--br-3 {
  border-right: 3px #8d8989 solid !important;
}
.gray-approx--bl-3 {
  border-left: 3px #8d8989 solid !important;
}
.gray-approx--bb-3 {
  border-bottom: 3px #8d8989 solid !important;
}
.gray-approx--by-3 {
  border-top: 3px #8d8989 solid !important;
  border-bottom: 3px #8d8989 solid !important;
}
.gray-approx--bx-3 {
  border-right: 3px #8d8989 solid !important;
  border-left: 3px #8d8989 solid !important;
}
.gray-approx--ba-4 {
  border: 4px #8d8989 solid !important;
}
.gray-approx--bt-4 {
  border-top: 4px #8d8989 solid !important;
}
.gray-approx--br-4 {
  border-right: 4px #8d8989 solid !important;
}
.gray-approx--bl-4 {
  border-left: 4px #8d8989 solid !important;
}
.gray-approx--bb-4 {
  border-bottom: 4px #8d8989 solid !important;
}
.gray-approx--by-4 {
  border-top: 4px #8d8989 solid !important;
  border-bottom: 4px #8d8989 solid !important;
}
.gray-approx--bx-4 {
  border-right: 4px #8d8989 solid !important;
  border-left: 4px #8d8989 solid !important;
}
.gray-approx--ba-5 {
  border: 5px #8d8989 solid !important;
}
.gray-approx--bt-5 {
  border-top: 5px #8d8989 solid !important;
}
.gray-approx--br-5 {
  border-right: 5px #8d8989 solid !important;
}
.gray-approx--bl-5 {
  border-left: 5px #8d8989 solid !important;
}
.gray-approx--bb-5 {
  border-bottom: 5px #8d8989 solid !important;
}
.gray-approx--by-5 {
  border-top: 5px #8d8989 solid !important;
  border-bottom: 5px #8d8989 solid !important;
}
.gray-approx--bx-5 {
  border-right: 5px #8d8989 solid !important;
  border-left: 5px #8d8989 solid !important;
}
.gray-approx--ba-6 {
  border: 6px #8d8989 solid !important;
}
.gray-approx--bt-6 {
  border-top: 6px #8d8989 solid !important;
}
.gray-approx--br-6 {
  border-right: 6px #8d8989 solid !important;
}
.gray-approx--bl-6 {
  border-left: 6px #8d8989 solid !important;
}
.gray-approx--bb-6 {
  border-bottom: 6px #8d8989 solid !important;
}
.gray-approx--by-6 {
  border-top: 6px #8d8989 solid !important;
  border-bottom: 6px #8d8989 solid !important;
}
.gray-approx--bx-6 {
  border-right: 6px #8d8989 solid !important;
  border-left: 6px #8d8989 solid !important;
}
.gray-approx--ba-7 {
  border: 7px #8d8989 solid !important;
}
.gray-approx--bt-7 {
  border-top: 7px #8d8989 solid !important;
}
.gray-approx--br-7 {
  border-right: 7px #8d8989 solid !important;
}
.gray-approx--bl-7 {
  border-left: 7px #8d8989 solid !important;
}
.gray-approx--bb-7 {
  border-bottom: 7px #8d8989 solid !important;
}
.gray-approx--by-7 {
  border-top: 7px #8d8989 solid !important;
  border-bottom: 7px #8d8989 solid !important;
}
.gray-approx--bx-7 {
  border-right: 7px #8d8989 solid !important;
  border-left: 7px #8d8989 solid !important;
}
.gray-approx--ba-8 {
  border: 8px #8d8989 solid !important;
}
.gray-approx--bt-8 {
  border-top: 8px #8d8989 solid !important;
}
.gray-approx--br-8 {
  border-right: 8px #8d8989 solid !important;
}
.gray-approx--bl-8 {
  border-left: 8px #8d8989 solid !important;
}
.gray-approx--bb-8 {
  border-bottom: 8px #8d8989 solid !important;
}
.gray-approx--by-8 {
  border-top: 8px #8d8989 solid !important;
  border-bottom: 8px #8d8989 solid !important;
}
.gray-approx--bx-8 {
  border-right: 8px #8d8989 solid !important;
  border-left: 8px #8d8989 solid !important;
}
.gray-approx--ba-9 {
  border: 9px #8d8989 solid !important;
}
.gray-approx--bt-9 {
  border-top: 9px #8d8989 solid !important;
}
.gray-approx--br-9 {
  border-right: 9px #8d8989 solid !important;
}
.gray-approx--bl-9 {
  border-left: 9px #8d8989 solid !important;
}
.gray-approx--bb-9 {
  border-bottom: 9px #8d8989 solid !important;
}
.gray-approx--by-9 {
  border-top: 9px #8d8989 solid !important;
  border-bottom: 9px #8d8989 solid !important;
}
.gray-approx--bx-9 {
  border-right: 9px #8d8989 solid !important;
  border-left: 9px #8d8989 solid !important;
}
.gray-approx--ba-10 {
  border: 10px #8d8989 solid !important;
}
.gray-approx--bt-10 {
  border-top: 10px #8d8989 solid !important;
}
.gray-approx--br-10 {
  border-right: 10px #8d8989 solid !important;
}
.gray-approx--bl-10 {
  border-left: 10px #8d8989 solid !important;
}
.gray-approx--bb-10 {
  border-bottom: 10px #8d8989 solid !important;
}
.gray-approx--by-10 {
  border-top: 10px #8d8989 solid !important;
  border-bottom: 10px #8d8989 solid !important;
}
.gray-approx--bx-10 {
  border-right: 10px #8d8989 solid !important;
  border-left: 10px #8d8989 solid !important;
}
.gray-approx--ba-11 {
  border: 11px #8d8989 solid !important;
}
.gray-approx--bt-11 {
  border-top: 11px #8d8989 solid !important;
}
.gray-approx--br-11 {
  border-right: 11px #8d8989 solid !important;
}
.gray-approx--bl-11 {
  border-left: 11px #8d8989 solid !important;
}
.gray-approx--bb-11 {
  border-bottom: 11px #8d8989 solid !important;
}
.gray-approx--by-11 {
  border-top: 11px #8d8989 solid !important;
  border-bottom: 11px #8d8989 solid !important;
}
.gray-approx--bx-11 {
  border-right: 11px #8d8989 solid !important;
  border-left: 11px #8d8989 solid !important;
}
.gray-approx--ba-12 {
  border: 12px #8d8989 solid !important;
}
.gray-approx--bt-12 {
  border-top: 12px #8d8989 solid !important;
}
.gray-approx--br-12 {
  border-right: 12px #8d8989 solid !important;
}
.gray-approx--bl-12 {
  border-left: 12px #8d8989 solid !important;
}
.gray-approx--bb-12 {
  border-bottom: 12px #8d8989 solid !important;
}
.gray-approx--by-12 {
  border-top: 12px #8d8989 solid !important;
  border-bottom: 12px #8d8989 solid !important;
}
.gray-approx--bx-12 {
  border-right: 12px #8d8989 solid !important;
  border-left: 12px #8d8989 solid !important;
}
.gray-approx--ba-13 {
  border: 13px #8d8989 solid !important;
}
.gray-approx--bt-13 {
  border-top: 13px #8d8989 solid !important;
}
.gray-approx--br-13 {
  border-right: 13px #8d8989 solid !important;
}
.gray-approx--bl-13 {
  border-left: 13px #8d8989 solid !important;
}
.gray-approx--bb-13 {
  border-bottom: 13px #8d8989 solid !important;
}
.gray-approx--by-13 {
  border-top: 13px #8d8989 solid !important;
  border-bottom: 13px #8d8989 solid !important;
}
.gray-approx--bx-13 {
  border-right: 13px #8d8989 solid !important;
  border-left: 13px #8d8989 solid !important;
}
.gray-approx--ba-14 {
  border: 14px #8d8989 solid !important;
}
.gray-approx--bt-14 {
  border-top: 14px #8d8989 solid !important;
}
.gray-approx--br-14 {
  border-right: 14px #8d8989 solid !important;
}
.gray-approx--bl-14 {
  border-left: 14px #8d8989 solid !important;
}
.gray-approx--bb-14 {
  border-bottom: 14px #8d8989 solid !important;
}
.gray-approx--by-14 {
  border-top: 14px #8d8989 solid !important;
  border-bottom: 14px #8d8989 solid !important;
}
.gray-approx--bx-14 {
  border-right: 14px #8d8989 solid !important;
  border-left: 14px #8d8989 solid !important;
}
.gray-approx--ba-15 {
  border: 15px #8d8989 solid !important;
}
.gray-approx--bt-15 {
  border-top: 15px #8d8989 solid !important;
}
.gray-approx--br-15 {
  border-right: 15px #8d8989 solid !important;
}
.gray-approx--bl-15 {
  border-left: 15px #8d8989 solid !important;
}
.gray-approx--bb-15 {
  border-bottom: 15px #8d8989 solid !important;
}
.gray-approx--by-15 {
  border-top: 15px #8d8989 solid !important;
  border-bottom: 15px #8d8989 solid !important;
}
.gray-approx--bx-15 {
  border-right: 15px #8d8989 solid !important;
  border-left: 15px #8d8989 solid !important;
}
.gray-approx--ba-16 {
  border: 16px #8d8989 solid !important;
}
.gray-approx--bt-16 {
  border-top: 16px #8d8989 solid !important;
}
.gray-approx--br-16 {
  border-right: 16px #8d8989 solid !important;
}
.gray-approx--bl-16 {
  border-left: 16px #8d8989 solid !important;
}
.gray-approx--bb-16 {
  border-bottom: 16px #8d8989 solid !important;
}
.gray-approx--by-16 {
  border-top: 16px #8d8989 solid !important;
  border-bottom: 16px #8d8989 solid !important;
}
.gray-approx--bx-16 {
  border-right: 16px #8d8989 solid !important;
  border-left: 16px #8d8989 solid !important;
}
.gray-approx--ba-17 {
  border: 17px #8d8989 solid !important;
}
.gray-approx--bt-17 {
  border-top: 17px #8d8989 solid !important;
}
.gray-approx--br-17 {
  border-right: 17px #8d8989 solid !important;
}
.gray-approx--bl-17 {
  border-left: 17px #8d8989 solid !important;
}
.gray-approx--bb-17 {
  border-bottom: 17px #8d8989 solid !important;
}
.gray-approx--by-17 {
  border-top: 17px #8d8989 solid !important;
  border-bottom: 17px #8d8989 solid !important;
}
.gray-approx--bx-17 {
  border-right: 17px #8d8989 solid !important;
  border-left: 17px #8d8989 solid !important;
}
.gray-approx--ba-18 {
  border: 18px #8d8989 solid !important;
}
.gray-approx--bt-18 {
  border-top: 18px #8d8989 solid !important;
}
.gray-approx--br-18 {
  border-right: 18px #8d8989 solid !important;
}
.gray-approx--bl-18 {
  border-left: 18px #8d8989 solid !important;
}
.gray-approx--bb-18 {
  border-bottom: 18px #8d8989 solid !important;
}
.gray-approx--by-18 {
  border-top: 18px #8d8989 solid !important;
  border-bottom: 18px #8d8989 solid !important;
}
.gray-approx--bx-18 {
  border-right: 18px #8d8989 solid !important;
  border-left: 18px #8d8989 solid !important;
}
.gray-approx--ba-19 {
  border: 19px #8d8989 solid !important;
}
.gray-approx--bt-19 {
  border-top: 19px #8d8989 solid !important;
}
.gray-approx--br-19 {
  border-right: 19px #8d8989 solid !important;
}
.gray-approx--bl-19 {
  border-left: 19px #8d8989 solid !important;
}
.gray-approx--bb-19 {
  border-bottom: 19px #8d8989 solid !important;
}
.gray-approx--by-19 {
  border-top: 19px #8d8989 solid !important;
  border-bottom: 19px #8d8989 solid !important;
}
.gray-approx--bx-19 {
  border-right: 19px #8d8989 solid !important;
  border-left: 19px #8d8989 solid !important;
}
.gray-approx--ba-20 {
  border: 20px #8d8989 solid !important;
}
.gray-approx--bt-20 {
  border-top: 20px #8d8989 solid !important;
}
.gray-approx--br-20 {
  border-right: 20px #8d8989 solid !important;
}
.gray-approx--bl-20 {
  border-left: 20px #8d8989 solid !important;
}
.gray-approx--bb-20 {
  border-bottom: 20px #8d8989 solid !important;
}
.gray-approx--by-20 {
  border-top: 20px #8d8989 solid !important;
  border-bottom: 20px #8d8989 solid !important;
}
.gray-approx--bx-20 {
  border-right: 20px #8d8989 solid !important;
  border-left: 20px #8d8989 solid !important;
}
.gray-approx--ba-21 {
  border: 21px #8d8989 solid !important;
}
.gray-approx--bt-21 {
  border-top: 21px #8d8989 solid !important;
}
.gray-approx--br-21 {
  border-right: 21px #8d8989 solid !important;
}
.gray-approx--bl-21 {
  border-left: 21px #8d8989 solid !important;
}
.gray-approx--bb-21 {
  border-bottom: 21px #8d8989 solid !important;
}
.gray-approx--by-21 {
  border-top: 21px #8d8989 solid !important;
  border-bottom: 21px #8d8989 solid !important;
}
.gray-approx--bx-21 {
  border-right: 21px #8d8989 solid !important;
  border-left: 21px #8d8989 solid !important;
}
.gray-approx--ba-22 {
  border: 22px #8d8989 solid !important;
}
.gray-approx--bt-22 {
  border-top: 22px #8d8989 solid !important;
}
.gray-approx--br-22 {
  border-right: 22px #8d8989 solid !important;
}
.gray-approx--bl-22 {
  border-left: 22px #8d8989 solid !important;
}
.gray-approx--bb-22 {
  border-bottom: 22px #8d8989 solid !important;
}
.gray-approx--by-22 {
  border-top: 22px #8d8989 solid !important;
  border-bottom: 22px #8d8989 solid !important;
}
.gray-approx--bx-22 {
  border-right: 22px #8d8989 solid !important;
  border-left: 22px #8d8989 solid !important;
}
.gray-approx--ba-23 {
  border: 23px #8d8989 solid !important;
}
.gray-approx--bt-23 {
  border-top: 23px #8d8989 solid !important;
}
.gray-approx--br-23 {
  border-right: 23px #8d8989 solid !important;
}
.gray-approx--bl-23 {
  border-left: 23px #8d8989 solid !important;
}
.gray-approx--bb-23 {
  border-bottom: 23px #8d8989 solid !important;
}
.gray-approx--by-23 {
  border-top: 23px #8d8989 solid !important;
  border-bottom: 23px #8d8989 solid !important;
}
.gray-approx--bx-23 {
  border-right: 23px #8d8989 solid !important;
  border-left: 23px #8d8989 solid !important;
}
.gray-approx--ba-24 {
  border: 24px #8d8989 solid !important;
}
.gray-approx--bt-24 {
  border-top: 24px #8d8989 solid !important;
}
.gray-approx--br-24 {
  border-right: 24px #8d8989 solid !important;
}
.gray-approx--bl-24 {
  border-left: 24px #8d8989 solid !important;
}
.gray-approx--bb-24 {
  border-bottom: 24px #8d8989 solid !important;
}
.gray-approx--by-24 {
  border-top: 24px #8d8989 solid !important;
  border-bottom: 24px #8d8989 solid !important;
}
.gray-approx--bx-24 {
  border-right: 24px #8d8989 solid !important;
  border-left: 24px #8d8989 solid !important;
}
.gray-approx--ba-25 {
  border: 25px #8d8989 solid !important;
}
.gray-approx--bt-25 {
  border-top: 25px #8d8989 solid !important;
}
.gray-approx--br-25 {
  border-right: 25px #8d8989 solid !important;
}
.gray-approx--bl-25 {
  border-left: 25px #8d8989 solid !important;
}
.gray-approx--bb-25 {
  border-bottom: 25px #8d8989 solid !important;
}
.gray-approx--by-25 {
  border-top: 25px #8d8989 solid !important;
  border-bottom: 25px #8d8989 solid !important;
}
.gray-approx--bx-25 {
  border-right: 25px #8d8989 solid !important;
  border-left: 25px #8d8989 solid !important;
}
.gray-approx--ba-26 {
  border: 26px #8d8989 solid !important;
}
.gray-approx--bt-26 {
  border-top: 26px #8d8989 solid !important;
}
.gray-approx--br-26 {
  border-right: 26px #8d8989 solid !important;
}
.gray-approx--bl-26 {
  border-left: 26px #8d8989 solid !important;
}
.gray-approx--bb-26 {
  border-bottom: 26px #8d8989 solid !important;
}
.gray-approx--by-26 {
  border-top: 26px #8d8989 solid !important;
  border-bottom: 26px #8d8989 solid !important;
}
.gray-approx--bx-26 {
  border-right: 26px #8d8989 solid !important;
  border-left: 26px #8d8989 solid !important;
}
.gray-approx--ba-27 {
  border: 27px #8d8989 solid !important;
}
.gray-approx--bt-27 {
  border-top: 27px #8d8989 solid !important;
}
.gray-approx--br-27 {
  border-right: 27px #8d8989 solid !important;
}
.gray-approx--bl-27 {
  border-left: 27px #8d8989 solid !important;
}
.gray-approx--bb-27 {
  border-bottom: 27px #8d8989 solid !important;
}
.gray-approx--by-27 {
  border-top: 27px #8d8989 solid !important;
  border-bottom: 27px #8d8989 solid !important;
}
.gray-approx--bx-27 {
  border-right: 27px #8d8989 solid !important;
  border-left: 27px #8d8989 solid !important;
}
.gray-approx--ba-28 {
  border: 28px #8d8989 solid !important;
}
.gray-approx--bt-28 {
  border-top: 28px #8d8989 solid !important;
}
.gray-approx--br-28 {
  border-right: 28px #8d8989 solid !important;
}
.gray-approx--bl-28 {
  border-left: 28px #8d8989 solid !important;
}
.gray-approx--bb-28 {
  border-bottom: 28px #8d8989 solid !important;
}
.gray-approx--by-28 {
  border-top: 28px #8d8989 solid !important;
  border-bottom: 28px #8d8989 solid !important;
}
.gray-approx--bx-28 {
  border-right: 28px #8d8989 solid !important;
  border-left: 28px #8d8989 solid !important;
}
.gray-approx--ba-29 {
  border: 29px #8d8989 solid !important;
}
.gray-approx--bt-29 {
  border-top: 29px #8d8989 solid !important;
}
.gray-approx--br-29 {
  border-right: 29px #8d8989 solid !important;
}
.gray-approx--bl-29 {
  border-left: 29px #8d8989 solid !important;
}
.gray-approx--bb-29 {
  border-bottom: 29px #8d8989 solid !important;
}
.gray-approx--by-29 {
  border-top: 29px #8d8989 solid !important;
  border-bottom: 29px #8d8989 solid !important;
}
.gray-approx--bx-29 {
  border-right: 29px #8d8989 solid !important;
  border-left: 29px #8d8989 solid !important;
}
.gray-approx--ba-30 {
  border: 30px #8d8989 solid !important;
}
.gray-approx--bt-30 {
  border-top: 30px #8d8989 solid !important;
}
.gray-approx--br-30 {
  border-right: 30px #8d8989 solid !important;
}
.gray-approx--bl-30 {
  border-left: 30px #8d8989 solid !important;
}
.gray-approx--bb-30 {
  border-bottom: 30px #8d8989 solid !important;
}
.gray-approx--by-30 {
  border-top: 30px #8d8989 solid !important;
  border-bottom: 30px #8d8989 solid !important;
}
.gray-approx--bx-30 {
  border-right: 30px #8d8989 solid !important;
  border-left: 30px #8d8989 solid !important;
}
.gray-approx--ba-31 {
  border: 31px #8d8989 solid !important;
}
.gray-approx--bt-31 {
  border-top: 31px #8d8989 solid !important;
}
.gray-approx--br-31 {
  border-right: 31px #8d8989 solid !important;
}
.gray-approx--bl-31 {
  border-left: 31px #8d8989 solid !important;
}
.gray-approx--bb-31 {
  border-bottom: 31px #8d8989 solid !important;
}
.gray-approx--by-31 {
  border-top: 31px #8d8989 solid !important;
  border-bottom: 31px #8d8989 solid !important;
}
.gray-approx--bx-31 {
  border-right: 31px #8d8989 solid !important;
  border-left: 31px #8d8989 solid !important;
}
.gray-approx--ba-32 {
  border: 32px #8d8989 solid !important;
}
.gray-approx--bt-32 {
  border-top: 32px #8d8989 solid !important;
}
.gray-approx--br-32 {
  border-right: 32px #8d8989 solid !important;
}
.gray-approx--bl-32 {
  border-left: 32px #8d8989 solid !important;
}
.gray-approx--bb-32 {
  border-bottom: 32px #8d8989 solid !important;
}
.gray-approx--by-32 {
  border-top: 32px #8d8989 solid !important;
  border-bottom: 32px #8d8989 solid !important;
}
.gray-approx--bx-32 {
  border-right: 32px #8d8989 solid !important;
  border-left: 32px #8d8989 solid !important;
}
.gray-approx--ba-33 {
  border: 33px #8d8989 solid !important;
}
.gray-approx--bt-33 {
  border-top: 33px #8d8989 solid !important;
}
.gray-approx--br-33 {
  border-right: 33px #8d8989 solid !important;
}
.gray-approx--bl-33 {
  border-left: 33px #8d8989 solid !important;
}
.gray-approx--bb-33 {
  border-bottom: 33px #8d8989 solid !important;
}
.gray-approx--by-33 {
  border-top: 33px #8d8989 solid !important;
  border-bottom: 33px #8d8989 solid !important;
}
.gray-approx--bx-33 {
  border-right: 33px #8d8989 solid !important;
  border-left: 33px #8d8989 solid !important;
}
.gray-approx--ba-34 {
  border: 34px #8d8989 solid !important;
}
.gray-approx--bt-34 {
  border-top: 34px #8d8989 solid !important;
}
.gray-approx--br-34 {
  border-right: 34px #8d8989 solid !important;
}
.gray-approx--bl-34 {
  border-left: 34px #8d8989 solid !important;
}
.gray-approx--bb-34 {
  border-bottom: 34px #8d8989 solid !important;
}
.gray-approx--by-34 {
  border-top: 34px #8d8989 solid !important;
  border-bottom: 34px #8d8989 solid !important;
}
.gray-approx--bx-34 {
  border-right: 34px #8d8989 solid !important;
  border-left: 34px #8d8989 solid !important;
}
.gray-approx--ba-35 {
  border: 35px #8d8989 solid !important;
}
.gray-approx--bt-35 {
  border-top: 35px #8d8989 solid !important;
}
.gray-approx--br-35 {
  border-right: 35px #8d8989 solid !important;
}
.gray-approx--bl-35 {
  border-left: 35px #8d8989 solid !important;
}
.gray-approx--bb-35 {
  border-bottom: 35px #8d8989 solid !important;
}
.gray-approx--by-35 {
  border-top: 35px #8d8989 solid !important;
  border-bottom: 35px #8d8989 solid !important;
}
.gray-approx--bx-35 {
  border-right: 35px #8d8989 solid !important;
  border-left: 35px #8d8989 solid !important;
}
.gray-approx--ba-36 {
  border: 36px #8d8989 solid !important;
}
.gray-approx--bt-36 {
  border-top: 36px #8d8989 solid !important;
}
.gray-approx--br-36 {
  border-right: 36px #8d8989 solid !important;
}
.gray-approx--bl-36 {
  border-left: 36px #8d8989 solid !important;
}
.gray-approx--bb-36 {
  border-bottom: 36px #8d8989 solid !important;
}
.gray-approx--by-36 {
  border-top: 36px #8d8989 solid !important;
  border-bottom: 36px #8d8989 solid !important;
}
.gray-approx--bx-36 {
  border-right: 36px #8d8989 solid !important;
  border-left: 36px #8d8989 solid !important;
}
.gray-approx--ba-37 {
  border: 37px #8d8989 solid !important;
}
.gray-approx--bt-37 {
  border-top: 37px #8d8989 solid !important;
}
.gray-approx--br-37 {
  border-right: 37px #8d8989 solid !important;
}
.gray-approx--bl-37 {
  border-left: 37px #8d8989 solid !important;
}
.gray-approx--bb-37 {
  border-bottom: 37px #8d8989 solid !important;
}
.gray-approx--by-37 {
  border-top: 37px #8d8989 solid !important;
  border-bottom: 37px #8d8989 solid !important;
}
.gray-approx--bx-37 {
  border-right: 37px #8d8989 solid !important;
  border-left: 37px #8d8989 solid !important;
}
.gray-approx--ba-38 {
  border: 38px #8d8989 solid !important;
}
.gray-approx--bt-38 {
  border-top: 38px #8d8989 solid !important;
}
.gray-approx--br-38 {
  border-right: 38px #8d8989 solid !important;
}
.gray-approx--bl-38 {
  border-left: 38px #8d8989 solid !important;
}
.gray-approx--bb-38 {
  border-bottom: 38px #8d8989 solid !important;
}
.gray-approx--by-38 {
  border-top: 38px #8d8989 solid !important;
  border-bottom: 38px #8d8989 solid !important;
}
.gray-approx--bx-38 {
  border-right: 38px #8d8989 solid !important;
  border-left: 38px #8d8989 solid !important;
}
.gray-approx--ba-39 {
  border: 39px #8d8989 solid !important;
}
.gray-approx--bt-39 {
  border-top: 39px #8d8989 solid !important;
}
.gray-approx--br-39 {
  border-right: 39px #8d8989 solid !important;
}
.gray-approx--bl-39 {
  border-left: 39px #8d8989 solid !important;
}
.gray-approx--bb-39 {
  border-bottom: 39px #8d8989 solid !important;
}
.gray-approx--by-39 {
  border-top: 39px #8d8989 solid !important;
  border-bottom: 39px #8d8989 solid !important;
}
.gray-approx--bx-39 {
  border-right: 39px #8d8989 solid !important;
  border-left: 39px #8d8989 solid !important;
}
.gray-approx--ba-40 {
  border: 40px #8d8989 solid !important;
}
.gray-approx--bt-40 {
  border-top: 40px #8d8989 solid !important;
}
.gray-approx--br-40 {
  border-right: 40px #8d8989 solid !important;
}
.gray-approx--bl-40 {
  border-left: 40px #8d8989 solid !important;
}
.gray-approx--bb-40 {
  border-bottom: 40px #8d8989 solid !important;
}
.gray-approx--by-40 {
  border-top: 40px #8d8989 solid !important;
  border-bottom: 40px #8d8989 solid !important;
}
.gray-approx--bx-40 {
  border-right: 40px #8d8989 solid !important;
  border-left: 40px #8d8989 solid !important;
}
.gray-approx--ba-41 {
  border: 41px #8d8989 solid !important;
}
.gray-approx--bt-41 {
  border-top: 41px #8d8989 solid !important;
}
.gray-approx--br-41 {
  border-right: 41px #8d8989 solid !important;
}
.gray-approx--bl-41 {
  border-left: 41px #8d8989 solid !important;
}
.gray-approx--bb-41 {
  border-bottom: 41px #8d8989 solid !important;
}
.gray-approx--by-41 {
  border-top: 41px #8d8989 solid !important;
  border-bottom: 41px #8d8989 solid !important;
}
.gray-approx--bx-41 {
  border-right: 41px #8d8989 solid !important;
  border-left: 41px #8d8989 solid !important;
}
.gray-approx--ba-42 {
  border: 42px #8d8989 solid !important;
}
.gray-approx--bt-42 {
  border-top: 42px #8d8989 solid !important;
}
.gray-approx--br-42 {
  border-right: 42px #8d8989 solid !important;
}
.gray-approx--bl-42 {
  border-left: 42px #8d8989 solid !important;
}
.gray-approx--bb-42 {
  border-bottom: 42px #8d8989 solid !important;
}
.gray-approx--by-42 {
  border-top: 42px #8d8989 solid !important;
  border-bottom: 42px #8d8989 solid !important;
}
.gray-approx--bx-42 {
  border-right: 42px #8d8989 solid !important;
  border-left: 42px #8d8989 solid !important;
}
.gray-approx--ba-43 {
  border: 43px #8d8989 solid !important;
}
.gray-approx--bt-43 {
  border-top: 43px #8d8989 solid !important;
}
.gray-approx--br-43 {
  border-right: 43px #8d8989 solid !important;
}
.gray-approx--bl-43 {
  border-left: 43px #8d8989 solid !important;
}
.gray-approx--bb-43 {
  border-bottom: 43px #8d8989 solid !important;
}
.gray-approx--by-43 {
  border-top: 43px #8d8989 solid !important;
  border-bottom: 43px #8d8989 solid !important;
}
.gray-approx--bx-43 {
  border-right: 43px #8d8989 solid !important;
  border-left: 43px #8d8989 solid !important;
}
.gray-approx--ba-44 {
  border: 44px #8d8989 solid !important;
}
.gray-approx--bt-44 {
  border-top: 44px #8d8989 solid !important;
}
.gray-approx--br-44 {
  border-right: 44px #8d8989 solid !important;
}
.gray-approx--bl-44 {
  border-left: 44px #8d8989 solid !important;
}
.gray-approx--bb-44 {
  border-bottom: 44px #8d8989 solid !important;
}
.gray-approx--by-44 {
  border-top: 44px #8d8989 solid !important;
  border-bottom: 44px #8d8989 solid !important;
}
.gray-approx--bx-44 {
  border-right: 44px #8d8989 solid !important;
  border-left: 44px #8d8989 solid !important;
}
.gray-approx--ba-45 {
  border: 45px #8d8989 solid !important;
}
.gray-approx--bt-45 {
  border-top: 45px #8d8989 solid !important;
}
.gray-approx--br-45 {
  border-right: 45px #8d8989 solid !important;
}
.gray-approx--bl-45 {
  border-left: 45px #8d8989 solid !important;
}
.gray-approx--bb-45 {
  border-bottom: 45px #8d8989 solid !important;
}
.gray-approx--by-45 {
  border-top: 45px #8d8989 solid !important;
  border-bottom: 45px #8d8989 solid !important;
}
.gray-approx--bx-45 {
  border-right: 45px #8d8989 solid !important;
  border-left: 45px #8d8989 solid !important;
}
.gray-approx--ba-46 {
  border: 46px #8d8989 solid !important;
}
.gray-approx--bt-46 {
  border-top: 46px #8d8989 solid !important;
}
.gray-approx--br-46 {
  border-right: 46px #8d8989 solid !important;
}
.gray-approx--bl-46 {
  border-left: 46px #8d8989 solid !important;
}
.gray-approx--bb-46 {
  border-bottom: 46px #8d8989 solid !important;
}
.gray-approx--by-46 {
  border-top: 46px #8d8989 solid !important;
  border-bottom: 46px #8d8989 solid !important;
}
.gray-approx--bx-46 {
  border-right: 46px #8d8989 solid !important;
  border-left: 46px #8d8989 solid !important;
}
.gray-approx--ba-47 {
  border: 47px #8d8989 solid !important;
}
.gray-approx--bt-47 {
  border-top: 47px #8d8989 solid !important;
}
.gray-approx--br-47 {
  border-right: 47px #8d8989 solid !important;
}
.gray-approx--bl-47 {
  border-left: 47px #8d8989 solid !important;
}
.gray-approx--bb-47 {
  border-bottom: 47px #8d8989 solid !important;
}
.gray-approx--by-47 {
  border-top: 47px #8d8989 solid !important;
  border-bottom: 47px #8d8989 solid !important;
}
.gray-approx--bx-47 {
  border-right: 47px #8d8989 solid !important;
  border-left: 47px #8d8989 solid !important;
}
.gray-approx--ba-48 {
  border: 48px #8d8989 solid !important;
}
.gray-approx--bt-48 {
  border-top: 48px #8d8989 solid !important;
}
.gray-approx--br-48 {
  border-right: 48px #8d8989 solid !important;
}
.gray-approx--bl-48 {
  border-left: 48px #8d8989 solid !important;
}
.gray-approx--bb-48 {
  border-bottom: 48px #8d8989 solid !important;
}
.gray-approx--by-48 {
  border-top: 48px #8d8989 solid !important;
  border-bottom: 48px #8d8989 solid !important;
}
.gray-approx--bx-48 {
  border-right: 48px #8d8989 solid !important;
  border-left: 48px #8d8989 solid !important;
}
.gray-approx--ba-49 {
  border: 49px #8d8989 solid !important;
}
.gray-approx--bt-49 {
  border-top: 49px #8d8989 solid !important;
}
.gray-approx--br-49 {
  border-right: 49px #8d8989 solid !important;
}
.gray-approx--bl-49 {
  border-left: 49px #8d8989 solid !important;
}
.gray-approx--bb-49 {
  border-bottom: 49px #8d8989 solid !important;
}
.gray-approx--by-49 {
  border-top: 49px #8d8989 solid !important;
  border-bottom: 49px #8d8989 solid !important;
}
.gray-approx--bx-49 {
  border-right: 49px #8d8989 solid !important;
  border-left: 49px #8d8989 solid !important;
}
.gray-approx--ba-50 {
  border: 50px #8d8989 solid !important;
}
.gray-approx--bt-50 {
  border-top: 50px #8d8989 solid !important;
}
.gray-approx--br-50 {
  border-right: 50px #8d8989 solid !important;
}
.gray-approx--bl-50 {
  border-left: 50px #8d8989 solid !important;
}
.gray-approx--bb-50 {
  border-bottom: 50px #8d8989 solid !important;
}
.gray-approx--by-50 {
  border-top: 50px #8d8989 solid !important;
  border-bottom: 50px #8d8989 solid !important;
}
.gray-approx--bx-50 {
  border-right: 50px #8d8989 solid !important;
  border-left: 50px #8d8989 solid !important;
}
.gray-approx--ba-51 {
  border: 51px #8d8989 solid !important;
}
.gray-approx--bt-51 {
  border-top: 51px #8d8989 solid !important;
}
.gray-approx--br-51 {
  border-right: 51px #8d8989 solid !important;
}
.gray-approx--bl-51 {
  border-left: 51px #8d8989 solid !important;
}
.gray-approx--bb-51 {
  border-bottom: 51px #8d8989 solid !important;
}
.gray-approx--by-51 {
  border-top: 51px #8d8989 solid !important;
  border-bottom: 51px #8d8989 solid !important;
}
.gray-approx--bx-51 {
  border-right: 51px #8d8989 solid !important;
  border-left: 51px #8d8989 solid !important;
}
.gray-approx--ba-52 {
  border: 52px #8d8989 solid !important;
}
.gray-approx--bt-52 {
  border-top: 52px #8d8989 solid !important;
}
.gray-approx--br-52 {
  border-right: 52px #8d8989 solid !important;
}
.gray-approx--bl-52 {
  border-left: 52px #8d8989 solid !important;
}
.gray-approx--bb-52 {
  border-bottom: 52px #8d8989 solid !important;
}
.gray-approx--by-52 {
  border-top: 52px #8d8989 solid !important;
  border-bottom: 52px #8d8989 solid !important;
}
.gray-approx--bx-52 {
  border-right: 52px #8d8989 solid !important;
  border-left: 52px #8d8989 solid !important;
}
.gray-approx--ba-53 {
  border: 53px #8d8989 solid !important;
}
.gray-approx--bt-53 {
  border-top: 53px #8d8989 solid !important;
}
.gray-approx--br-53 {
  border-right: 53px #8d8989 solid !important;
}
.gray-approx--bl-53 {
  border-left: 53px #8d8989 solid !important;
}
.gray-approx--bb-53 {
  border-bottom: 53px #8d8989 solid !important;
}
.gray-approx--by-53 {
  border-top: 53px #8d8989 solid !important;
  border-bottom: 53px #8d8989 solid !important;
}
.gray-approx--bx-53 {
  border-right: 53px #8d8989 solid !important;
  border-left: 53px #8d8989 solid !important;
}
.gray-approx--ba-54 {
  border: 54px #8d8989 solid !important;
}
.gray-approx--bt-54 {
  border-top: 54px #8d8989 solid !important;
}
.gray-approx--br-54 {
  border-right: 54px #8d8989 solid !important;
}
.gray-approx--bl-54 {
  border-left: 54px #8d8989 solid !important;
}
.gray-approx--bb-54 {
  border-bottom: 54px #8d8989 solid !important;
}
.gray-approx--by-54 {
  border-top: 54px #8d8989 solid !important;
  border-bottom: 54px #8d8989 solid !important;
}
.gray-approx--bx-54 {
  border-right: 54px #8d8989 solid !important;
  border-left: 54px #8d8989 solid !important;
}
.gray-approx--ba-55 {
  border: 55px #8d8989 solid !important;
}
.gray-approx--bt-55 {
  border-top: 55px #8d8989 solid !important;
}
.gray-approx--br-55 {
  border-right: 55px #8d8989 solid !important;
}
.gray-approx--bl-55 {
  border-left: 55px #8d8989 solid !important;
}
.gray-approx--bb-55 {
  border-bottom: 55px #8d8989 solid !important;
}
.gray-approx--by-55 {
  border-top: 55px #8d8989 solid !important;
  border-bottom: 55px #8d8989 solid !important;
}
.gray-approx--bx-55 {
  border-right: 55px #8d8989 solid !important;
  border-left: 55px #8d8989 solid !important;
}
.gray-approx--ba-56 {
  border: 56px #8d8989 solid !important;
}
.gray-approx--bt-56 {
  border-top: 56px #8d8989 solid !important;
}
.gray-approx--br-56 {
  border-right: 56px #8d8989 solid !important;
}
.gray-approx--bl-56 {
  border-left: 56px #8d8989 solid !important;
}
.gray-approx--bb-56 {
  border-bottom: 56px #8d8989 solid !important;
}
.gray-approx--by-56 {
  border-top: 56px #8d8989 solid !important;
  border-bottom: 56px #8d8989 solid !important;
}
.gray-approx--bx-56 {
  border-right: 56px #8d8989 solid !important;
  border-left: 56px #8d8989 solid !important;
}
.gray-approx--ba-57 {
  border: 57px #8d8989 solid !important;
}
.gray-approx--bt-57 {
  border-top: 57px #8d8989 solid !important;
}
.gray-approx--br-57 {
  border-right: 57px #8d8989 solid !important;
}
.gray-approx--bl-57 {
  border-left: 57px #8d8989 solid !important;
}
.gray-approx--bb-57 {
  border-bottom: 57px #8d8989 solid !important;
}
.gray-approx--by-57 {
  border-top: 57px #8d8989 solid !important;
  border-bottom: 57px #8d8989 solid !important;
}
.gray-approx--bx-57 {
  border-right: 57px #8d8989 solid !important;
  border-left: 57px #8d8989 solid !important;
}
.gray-approx--ba-58 {
  border: 58px #8d8989 solid !important;
}
.gray-approx--bt-58 {
  border-top: 58px #8d8989 solid !important;
}
.gray-approx--br-58 {
  border-right: 58px #8d8989 solid !important;
}
.gray-approx--bl-58 {
  border-left: 58px #8d8989 solid !important;
}
.gray-approx--bb-58 {
  border-bottom: 58px #8d8989 solid !important;
}
.gray-approx--by-58 {
  border-top: 58px #8d8989 solid !important;
  border-bottom: 58px #8d8989 solid !important;
}
.gray-approx--bx-58 {
  border-right: 58px #8d8989 solid !important;
  border-left: 58px #8d8989 solid !important;
}
.gray-approx--ba-59 {
  border: 59px #8d8989 solid !important;
}
.gray-approx--bt-59 {
  border-top: 59px #8d8989 solid !important;
}
.gray-approx--br-59 {
  border-right: 59px #8d8989 solid !important;
}
.gray-approx--bl-59 {
  border-left: 59px #8d8989 solid !important;
}
.gray-approx--bb-59 {
  border-bottom: 59px #8d8989 solid !important;
}
.gray-approx--by-59 {
  border-top: 59px #8d8989 solid !important;
  border-bottom: 59px #8d8989 solid !important;
}
.gray-approx--bx-59 {
  border-right: 59px #8d8989 solid !important;
  border-left: 59px #8d8989 solid !important;
}
.gray-approx--ba-60 {
  border: 60px #8d8989 solid !important;
}
.gray-approx--bt-60 {
  border-top: 60px #8d8989 solid !important;
}
.gray-approx--br-60 {
  border-right: 60px #8d8989 solid !important;
}
.gray-approx--bl-60 {
  border-left: 60px #8d8989 solid !important;
}
.gray-approx--bb-60 {
  border-bottom: 60px #8d8989 solid !important;
}
.gray-approx--by-60 {
  border-top: 60px #8d8989 solid !important;
  border-bottom: 60px #8d8989 solid !important;
}
.gray-approx--bx-60 {
  border-right: 60px #8d8989 solid !important;
  border-left: 60px #8d8989 solid !important;
}
.gray-approx--ba-61 {
  border: 61px #8d8989 solid !important;
}
.gray-approx--bt-61 {
  border-top: 61px #8d8989 solid !important;
}
.gray-approx--br-61 {
  border-right: 61px #8d8989 solid !important;
}
.gray-approx--bl-61 {
  border-left: 61px #8d8989 solid !important;
}
.gray-approx--bb-61 {
  border-bottom: 61px #8d8989 solid !important;
}
.gray-approx--by-61 {
  border-top: 61px #8d8989 solid !important;
  border-bottom: 61px #8d8989 solid !important;
}
.gray-approx--bx-61 {
  border-right: 61px #8d8989 solid !important;
  border-left: 61px #8d8989 solid !important;
}
.gray-approx--ba-62 {
  border: 62px #8d8989 solid !important;
}
.gray-approx--bt-62 {
  border-top: 62px #8d8989 solid !important;
}
.gray-approx--br-62 {
  border-right: 62px #8d8989 solid !important;
}
.gray-approx--bl-62 {
  border-left: 62px #8d8989 solid !important;
}
.gray-approx--bb-62 {
  border-bottom: 62px #8d8989 solid !important;
}
.gray-approx--by-62 {
  border-top: 62px #8d8989 solid !important;
  border-bottom: 62px #8d8989 solid !important;
}
.gray-approx--bx-62 {
  border-right: 62px #8d8989 solid !important;
  border-left: 62px #8d8989 solid !important;
}
.gray-approx--ba-63 {
  border: 63px #8d8989 solid !important;
}
.gray-approx--bt-63 {
  border-top: 63px #8d8989 solid !important;
}
.gray-approx--br-63 {
  border-right: 63px #8d8989 solid !important;
}
.gray-approx--bl-63 {
  border-left: 63px #8d8989 solid !important;
}
.gray-approx--bb-63 {
  border-bottom: 63px #8d8989 solid !important;
}
.gray-approx--by-63 {
  border-top: 63px #8d8989 solid !important;
  border-bottom: 63px #8d8989 solid !important;
}
.gray-approx--bx-63 {
  border-right: 63px #8d8989 solid !important;
  border-left: 63px #8d8989 solid !important;
}
.gray-approx--ba-64 {
  border: 64px #8d8989 solid !important;
}
.gray-approx--bt-64 {
  border-top: 64px #8d8989 solid !important;
}
.gray-approx--br-64 {
  border-right: 64px #8d8989 solid !important;
}
.gray-approx--bl-64 {
  border-left: 64px #8d8989 solid !important;
}
.gray-approx--bb-64 {
  border-bottom: 64px #8d8989 solid !important;
}
.gray-approx--by-64 {
  border-top: 64px #8d8989 solid !important;
  border-bottom: 64px #8d8989 solid !important;
}
.gray-approx--bx-64 {
  border-right: 64px #8d8989 solid !important;
  border-left: 64px #8d8989 solid !important;
}
.gray-approx--ba-65 {
  border: 65px #8d8989 solid !important;
}
.gray-approx--bt-65 {
  border-top: 65px #8d8989 solid !important;
}
.gray-approx--br-65 {
  border-right: 65px #8d8989 solid !important;
}
.gray-approx--bl-65 {
  border-left: 65px #8d8989 solid !important;
}
.gray-approx--bb-65 {
  border-bottom: 65px #8d8989 solid !important;
}
.gray-approx--by-65 {
  border-top: 65px #8d8989 solid !important;
  border-bottom: 65px #8d8989 solid !important;
}
.gray-approx--bx-65 {
  border-right: 65px #8d8989 solid !important;
  border-left: 65px #8d8989 solid !important;
}
.gray-approx--ba-66 {
  border: 66px #8d8989 solid !important;
}
.gray-approx--bt-66 {
  border-top: 66px #8d8989 solid !important;
}
.gray-approx--br-66 {
  border-right: 66px #8d8989 solid !important;
}
.gray-approx--bl-66 {
  border-left: 66px #8d8989 solid !important;
}
.gray-approx--bb-66 {
  border-bottom: 66px #8d8989 solid !important;
}
.gray-approx--by-66 {
  border-top: 66px #8d8989 solid !important;
  border-bottom: 66px #8d8989 solid !important;
}
.gray-approx--bx-66 {
  border-right: 66px #8d8989 solid !important;
  border-left: 66px #8d8989 solid !important;
}
.gray-approx--ba-67 {
  border: 67px #8d8989 solid !important;
}
.gray-approx--bt-67 {
  border-top: 67px #8d8989 solid !important;
}
.gray-approx--br-67 {
  border-right: 67px #8d8989 solid !important;
}
.gray-approx--bl-67 {
  border-left: 67px #8d8989 solid !important;
}
.gray-approx--bb-67 {
  border-bottom: 67px #8d8989 solid !important;
}
.gray-approx--by-67 {
  border-top: 67px #8d8989 solid !important;
  border-bottom: 67px #8d8989 solid !important;
}
.gray-approx--bx-67 {
  border-right: 67px #8d8989 solid !important;
  border-left: 67px #8d8989 solid !important;
}
.gray-approx--ba-68 {
  border: 68px #8d8989 solid !important;
}
.gray-approx--bt-68 {
  border-top: 68px #8d8989 solid !important;
}
.gray-approx--br-68 {
  border-right: 68px #8d8989 solid !important;
}
.gray-approx--bl-68 {
  border-left: 68px #8d8989 solid !important;
}
.gray-approx--bb-68 {
  border-bottom: 68px #8d8989 solid !important;
}
.gray-approx--by-68 {
  border-top: 68px #8d8989 solid !important;
  border-bottom: 68px #8d8989 solid !important;
}
.gray-approx--bx-68 {
  border-right: 68px #8d8989 solid !important;
  border-left: 68px #8d8989 solid !important;
}
.gray-approx--ba-69 {
  border: 69px #8d8989 solid !important;
}
.gray-approx--bt-69 {
  border-top: 69px #8d8989 solid !important;
}
.gray-approx--br-69 {
  border-right: 69px #8d8989 solid !important;
}
.gray-approx--bl-69 {
  border-left: 69px #8d8989 solid !important;
}
.gray-approx--bb-69 {
  border-bottom: 69px #8d8989 solid !important;
}
.gray-approx--by-69 {
  border-top: 69px #8d8989 solid !important;
  border-bottom: 69px #8d8989 solid !important;
}
.gray-approx--bx-69 {
  border-right: 69px #8d8989 solid !important;
  border-left: 69px #8d8989 solid !important;
}
.gray-approx--ba-70 {
  border: 70px #8d8989 solid !important;
}
.gray-approx--bt-70 {
  border-top: 70px #8d8989 solid !important;
}
.gray-approx--br-70 {
  border-right: 70px #8d8989 solid !important;
}
.gray-approx--bl-70 {
  border-left: 70px #8d8989 solid !important;
}
.gray-approx--bb-70 {
  border-bottom: 70px #8d8989 solid !important;
}
.gray-approx--by-70 {
  border-top: 70px #8d8989 solid !important;
  border-bottom: 70px #8d8989 solid !important;
}
.gray-approx--bx-70 {
  border-right: 70px #8d8989 solid !important;
  border-left: 70px #8d8989 solid !important;
}
.gray-approx--ba-71 {
  border: 71px #8d8989 solid !important;
}
.gray-approx--bt-71 {
  border-top: 71px #8d8989 solid !important;
}
.gray-approx--br-71 {
  border-right: 71px #8d8989 solid !important;
}
.gray-approx--bl-71 {
  border-left: 71px #8d8989 solid !important;
}
.gray-approx--bb-71 {
  border-bottom: 71px #8d8989 solid !important;
}
.gray-approx--by-71 {
  border-top: 71px #8d8989 solid !important;
  border-bottom: 71px #8d8989 solid !important;
}
.gray-approx--bx-71 {
  border-right: 71px #8d8989 solid !important;
  border-left: 71px #8d8989 solid !important;
}
.gray-approx--ba-72 {
  border: 72px #8d8989 solid !important;
}
.gray-approx--bt-72 {
  border-top: 72px #8d8989 solid !important;
}
.gray-approx--br-72 {
  border-right: 72px #8d8989 solid !important;
}
.gray-approx--bl-72 {
  border-left: 72px #8d8989 solid !important;
}
.gray-approx--bb-72 {
  border-bottom: 72px #8d8989 solid !important;
}
.gray-approx--by-72 {
  border-top: 72px #8d8989 solid !important;
  border-bottom: 72px #8d8989 solid !important;
}
.gray-approx--bx-72 {
  border-right: 72px #8d8989 solid !important;
  border-left: 72px #8d8989 solid !important;
}
.gray-approx--ba-73 {
  border: 73px #8d8989 solid !important;
}
.gray-approx--bt-73 {
  border-top: 73px #8d8989 solid !important;
}
.gray-approx--br-73 {
  border-right: 73px #8d8989 solid !important;
}
.gray-approx--bl-73 {
  border-left: 73px #8d8989 solid !important;
}
.gray-approx--bb-73 {
  border-bottom: 73px #8d8989 solid !important;
}
.gray-approx--by-73 {
  border-top: 73px #8d8989 solid !important;
  border-bottom: 73px #8d8989 solid !important;
}
.gray-approx--bx-73 {
  border-right: 73px #8d8989 solid !important;
  border-left: 73px #8d8989 solid !important;
}
.gray-approx--ba-74 {
  border: 74px #8d8989 solid !important;
}
.gray-approx--bt-74 {
  border-top: 74px #8d8989 solid !important;
}
.gray-approx--br-74 {
  border-right: 74px #8d8989 solid !important;
}
.gray-approx--bl-74 {
  border-left: 74px #8d8989 solid !important;
}
.gray-approx--bb-74 {
  border-bottom: 74px #8d8989 solid !important;
}
.gray-approx--by-74 {
  border-top: 74px #8d8989 solid !important;
  border-bottom: 74px #8d8989 solid !important;
}
.gray-approx--bx-74 {
  border-right: 74px #8d8989 solid !important;
  border-left: 74px #8d8989 solid !important;
}
.gray-approx--ba-75 {
  border: 75px #8d8989 solid !important;
}
.gray-approx--bt-75 {
  border-top: 75px #8d8989 solid !important;
}
.gray-approx--br-75 {
  border-right: 75px #8d8989 solid !important;
}
.gray-approx--bl-75 {
  border-left: 75px #8d8989 solid !important;
}
.gray-approx--bb-75 {
  border-bottom: 75px #8d8989 solid !important;
}
.gray-approx--by-75 {
  border-top: 75px #8d8989 solid !important;
  border-bottom: 75px #8d8989 solid !important;
}
.gray-approx--bx-75 {
  border-right: 75px #8d8989 solid !important;
  border-left: 75px #8d8989 solid !important;
}
.gray-approx--ba-76 {
  border: 76px #8d8989 solid !important;
}
.gray-approx--bt-76 {
  border-top: 76px #8d8989 solid !important;
}
.gray-approx--br-76 {
  border-right: 76px #8d8989 solid !important;
}
.gray-approx--bl-76 {
  border-left: 76px #8d8989 solid !important;
}
.gray-approx--bb-76 {
  border-bottom: 76px #8d8989 solid !important;
}
.gray-approx--by-76 {
  border-top: 76px #8d8989 solid !important;
  border-bottom: 76px #8d8989 solid !important;
}
.gray-approx--bx-76 {
  border-right: 76px #8d8989 solid !important;
  border-left: 76px #8d8989 solid !important;
}
.gray-approx--ba-77 {
  border: 77px #8d8989 solid !important;
}
.gray-approx--bt-77 {
  border-top: 77px #8d8989 solid !important;
}
.gray-approx--br-77 {
  border-right: 77px #8d8989 solid !important;
}
.gray-approx--bl-77 {
  border-left: 77px #8d8989 solid !important;
}
.gray-approx--bb-77 {
  border-bottom: 77px #8d8989 solid !important;
}
.gray-approx--by-77 {
  border-top: 77px #8d8989 solid !important;
  border-bottom: 77px #8d8989 solid !important;
}
.gray-approx--bx-77 {
  border-right: 77px #8d8989 solid !important;
  border-left: 77px #8d8989 solid !important;
}
.gray-approx--ba-78 {
  border: 78px #8d8989 solid !important;
}
.gray-approx--bt-78 {
  border-top: 78px #8d8989 solid !important;
}
.gray-approx--br-78 {
  border-right: 78px #8d8989 solid !important;
}
.gray-approx--bl-78 {
  border-left: 78px #8d8989 solid !important;
}
.gray-approx--bb-78 {
  border-bottom: 78px #8d8989 solid !important;
}
.gray-approx--by-78 {
  border-top: 78px #8d8989 solid !important;
  border-bottom: 78px #8d8989 solid !important;
}
.gray-approx--bx-78 {
  border-right: 78px #8d8989 solid !important;
  border-left: 78px #8d8989 solid !important;
}
.gray-approx--ba-79 {
  border: 79px #8d8989 solid !important;
}
.gray-approx--bt-79 {
  border-top: 79px #8d8989 solid !important;
}
.gray-approx--br-79 {
  border-right: 79px #8d8989 solid !important;
}
.gray-approx--bl-79 {
  border-left: 79px #8d8989 solid !important;
}
.gray-approx--bb-79 {
  border-bottom: 79px #8d8989 solid !important;
}
.gray-approx--by-79 {
  border-top: 79px #8d8989 solid !important;
  border-bottom: 79px #8d8989 solid !important;
}
.gray-approx--bx-79 {
  border-right: 79px #8d8989 solid !important;
  border-left: 79px #8d8989 solid !important;
}
.gray-approx--ba-80 {
  border: 80px #8d8989 solid !important;
}
.gray-approx--bt-80 {
  border-top: 80px #8d8989 solid !important;
}
.gray-approx--br-80 {
  border-right: 80px #8d8989 solid !important;
}
.gray-approx--bl-80 {
  border-left: 80px #8d8989 solid !important;
}
.gray-approx--bb-80 {
  border-bottom: 80px #8d8989 solid !important;
}
.gray-approx--by-80 {
  border-top: 80px #8d8989 solid !important;
  border-bottom: 80px #8d8989 solid !important;
}
.gray-approx--bx-80 {
  border-right: 80px #8d8989 solid !important;
  border-left: 80px #8d8989 solid !important;
}
.gray-approx--ba-81 {
  border: 81px #8d8989 solid !important;
}
.gray-approx--bt-81 {
  border-top: 81px #8d8989 solid !important;
}
.gray-approx--br-81 {
  border-right: 81px #8d8989 solid !important;
}
.gray-approx--bl-81 {
  border-left: 81px #8d8989 solid !important;
}
.gray-approx--bb-81 {
  border-bottom: 81px #8d8989 solid !important;
}
.gray-approx--by-81 {
  border-top: 81px #8d8989 solid !important;
  border-bottom: 81px #8d8989 solid !important;
}
.gray-approx--bx-81 {
  border-right: 81px #8d8989 solid !important;
  border-left: 81px #8d8989 solid !important;
}
.gray-approx--ba-82 {
  border: 82px #8d8989 solid !important;
}
.gray-approx--bt-82 {
  border-top: 82px #8d8989 solid !important;
}
.gray-approx--br-82 {
  border-right: 82px #8d8989 solid !important;
}
.gray-approx--bl-82 {
  border-left: 82px #8d8989 solid !important;
}
.gray-approx--bb-82 {
  border-bottom: 82px #8d8989 solid !important;
}
.gray-approx--by-82 {
  border-top: 82px #8d8989 solid !important;
  border-bottom: 82px #8d8989 solid !important;
}
.gray-approx--bx-82 {
  border-right: 82px #8d8989 solid !important;
  border-left: 82px #8d8989 solid !important;
}
.gray-approx--ba-83 {
  border: 83px #8d8989 solid !important;
}
.gray-approx--bt-83 {
  border-top: 83px #8d8989 solid !important;
}
.gray-approx--br-83 {
  border-right: 83px #8d8989 solid !important;
}
.gray-approx--bl-83 {
  border-left: 83px #8d8989 solid !important;
}
.gray-approx--bb-83 {
  border-bottom: 83px #8d8989 solid !important;
}
.gray-approx--by-83 {
  border-top: 83px #8d8989 solid !important;
  border-bottom: 83px #8d8989 solid !important;
}
.gray-approx--bx-83 {
  border-right: 83px #8d8989 solid !important;
  border-left: 83px #8d8989 solid !important;
}
.gray-approx--ba-84 {
  border: 84px #8d8989 solid !important;
}
.gray-approx--bt-84 {
  border-top: 84px #8d8989 solid !important;
}
.gray-approx--br-84 {
  border-right: 84px #8d8989 solid !important;
}
.gray-approx--bl-84 {
  border-left: 84px #8d8989 solid !important;
}
.gray-approx--bb-84 {
  border-bottom: 84px #8d8989 solid !important;
}
.gray-approx--by-84 {
  border-top: 84px #8d8989 solid !important;
  border-bottom: 84px #8d8989 solid !important;
}
.gray-approx--bx-84 {
  border-right: 84px #8d8989 solid !important;
  border-left: 84px #8d8989 solid !important;
}
.gray-approx--ba-85 {
  border: 85px #8d8989 solid !important;
}
.gray-approx--bt-85 {
  border-top: 85px #8d8989 solid !important;
}
.gray-approx--br-85 {
  border-right: 85px #8d8989 solid !important;
}
.gray-approx--bl-85 {
  border-left: 85px #8d8989 solid !important;
}
.gray-approx--bb-85 {
  border-bottom: 85px #8d8989 solid !important;
}
.gray-approx--by-85 {
  border-top: 85px #8d8989 solid !important;
  border-bottom: 85px #8d8989 solid !important;
}
.gray-approx--bx-85 {
  border-right: 85px #8d8989 solid !important;
  border-left: 85px #8d8989 solid !important;
}
.gray-approx--ba-86 {
  border: 86px #8d8989 solid !important;
}
.gray-approx--bt-86 {
  border-top: 86px #8d8989 solid !important;
}
.gray-approx--br-86 {
  border-right: 86px #8d8989 solid !important;
}
.gray-approx--bl-86 {
  border-left: 86px #8d8989 solid !important;
}
.gray-approx--bb-86 {
  border-bottom: 86px #8d8989 solid !important;
}
.gray-approx--by-86 {
  border-top: 86px #8d8989 solid !important;
  border-bottom: 86px #8d8989 solid !important;
}
.gray-approx--bx-86 {
  border-right: 86px #8d8989 solid !important;
  border-left: 86px #8d8989 solid !important;
}
.gray-approx--ba-87 {
  border: 87px #8d8989 solid !important;
}
.gray-approx--bt-87 {
  border-top: 87px #8d8989 solid !important;
}
.gray-approx--br-87 {
  border-right: 87px #8d8989 solid !important;
}
.gray-approx--bl-87 {
  border-left: 87px #8d8989 solid !important;
}
.gray-approx--bb-87 {
  border-bottom: 87px #8d8989 solid !important;
}
.gray-approx--by-87 {
  border-top: 87px #8d8989 solid !important;
  border-bottom: 87px #8d8989 solid !important;
}
.gray-approx--bx-87 {
  border-right: 87px #8d8989 solid !important;
  border-left: 87px #8d8989 solid !important;
}
.gray-approx--ba-88 {
  border: 88px #8d8989 solid !important;
}
.gray-approx--bt-88 {
  border-top: 88px #8d8989 solid !important;
}
.gray-approx--br-88 {
  border-right: 88px #8d8989 solid !important;
}
.gray-approx--bl-88 {
  border-left: 88px #8d8989 solid !important;
}
.gray-approx--bb-88 {
  border-bottom: 88px #8d8989 solid !important;
}
.gray-approx--by-88 {
  border-top: 88px #8d8989 solid !important;
  border-bottom: 88px #8d8989 solid !important;
}
.gray-approx--bx-88 {
  border-right: 88px #8d8989 solid !important;
  border-left: 88px #8d8989 solid !important;
}
.gray-approx--ba-89 {
  border: 89px #8d8989 solid !important;
}
.gray-approx--bt-89 {
  border-top: 89px #8d8989 solid !important;
}
.gray-approx--br-89 {
  border-right: 89px #8d8989 solid !important;
}
.gray-approx--bl-89 {
  border-left: 89px #8d8989 solid !important;
}
.gray-approx--bb-89 {
  border-bottom: 89px #8d8989 solid !important;
}
.gray-approx--by-89 {
  border-top: 89px #8d8989 solid !important;
  border-bottom: 89px #8d8989 solid !important;
}
.gray-approx--bx-89 {
  border-right: 89px #8d8989 solid !important;
  border-left: 89px #8d8989 solid !important;
}
.gray-approx--ba-90 {
  border: 90px #8d8989 solid !important;
}
.gray-approx--bt-90 {
  border-top: 90px #8d8989 solid !important;
}
.gray-approx--br-90 {
  border-right: 90px #8d8989 solid !important;
}
.gray-approx--bl-90 {
  border-left: 90px #8d8989 solid !important;
}
.gray-approx--bb-90 {
  border-bottom: 90px #8d8989 solid !important;
}
.gray-approx--by-90 {
  border-top: 90px #8d8989 solid !important;
  border-bottom: 90px #8d8989 solid !important;
}
.gray-approx--bx-90 {
  border-right: 90px #8d8989 solid !important;
  border-left: 90px #8d8989 solid !important;
}
.gray-approx--ba-91 {
  border: 91px #8d8989 solid !important;
}
.gray-approx--bt-91 {
  border-top: 91px #8d8989 solid !important;
}
.gray-approx--br-91 {
  border-right: 91px #8d8989 solid !important;
}
.gray-approx--bl-91 {
  border-left: 91px #8d8989 solid !important;
}
.gray-approx--bb-91 {
  border-bottom: 91px #8d8989 solid !important;
}
.gray-approx--by-91 {
  border-top: 91px #8d8989 solid !important;
  border-bottom: 91px #8d8989 solid !important;
}
.gray-approx--bx-91 {
  border-right: 91px #8d8989 solid !important;
  border-left: 91px #8d8989 solid !important;
}
.gray-approx--ba-92 {
  border: 92px #8d8989 solid !important;
}
.gray-approx--bt-92 {
  border-top: 92px #8d8989 solid !important;
}
.gray-approx--br-92 {
  border-right: 92px #8d8989 solid !important;
}
.gray-approx--bl-92 {
  border-left: 92px #8d8989 solid !important;
}
.gray-approx--bb-92 {
  border-bottom: 92px #8d8989 solid !important;
}
.gray-approx--by-92 {
  border-top: 92px #8d8989 solid !important;
  border-bottom: 92px #8d8989 solid !important;
}
.gray-approx--bx-92 {
  border-right: 92px #8d8989 solid !important;
  border-left: 92px #8d8989 solid !important;
}
.gray-approx--ba-93 {
  border: 93px #8d8989 solid !important;
}
.gray-approx--bt-93 {
  border-top: 93px #8d8989 solid !important;
}
.gray-approx--br-93 {
  border-right: 93px #8d8989 solid !important;
}
.gray-approx--bl-93 {
  border-left: 93px #8d8989 solid !important;
}
.gray-approx--bb-93 {
  border-bottom: 93px #8d8989 solid !important;
}
.gray-approx--by-93 {
  border-top: 93px #8d8989 solid !important;
  border-bottom: 93px #8d8989 solid !important;
}
.gray-approx--bx-93 {
  border-right: 93px #8d8989 solid !important;
  border-left: 93px #8d8989 solid !important;
}
.gray-approx--ba-94 {
  border: 94px #8d8989 solid !important;
}
.gray-approx--bt-94 {
  border-top: 94px #8d8989 solid !important;
}
.gray-approx--br-94 {
  border-right: 94px #8d8989 solid !important;
}
.gray-approx--bl-94 {
  border-left: 94px #8d8989 solid !important;
}
.gray-approx--bb-94 {
  border-bottom: 94px #8d8989 solid !important;
}
.gray-approx--by-94 {
  border-top: 94px #8d8989 solid !important;
  border-bottom: 94px #8d8989 solid !important;
}
.gray-approx--bx-94 {
  border-right: 94px #8d8989 solid !important;
  border-left: 94px #8d8989 solid !important;
}
.gray-approx--ba-95 {
  border: 95px #8d8989 solid !important;
}
.gray-approx--bt-95 {
  border-top: 95px #8d8989 solid !important;
}
.gray-approx--br-95 {
  border-right: 95px #8d8989 solid !important;
}
.gray-approx--bl-95 {
  border-left: 95px #8d8989 solid !important;
}
.gray-approx--bb-95 {
  border-bottom: 95px #8d8989 solid !important;
}
.gray-approx--by-95 {
  border-top: 95px #8d8989 solid !important;
  border-bottom: 95px #8d8989 solid !important;
}
.gray-approx--bx-95 {
  border-right: 95px #8d8989 solid !important;
  border-left: 95px #8d8989 solid !important;
}
.gray-approx--ba-96 {
  border: 96px #8d8989 solid !important;
}
.gray-approx--bt-96 {
  border-top: 96px #8d8989 solid !important;
}
.gray-approx--br-96 {
  border-right: 96px #8d8989 solid !important;
}
.gray-approx--bl-96 {
  border-left: 96px #8d8989 solid !important;
}
.gray-approx--bb-96 {
  border-bottom: 96px #8d8989 solid !important;
}
.gray-approx--by-96 {
  border-top: 96px #8d8989 solid !important;
  border-bottom: 96px #8d8989 solid !important;
}
.gray-approx--bx-96 {
  border-right: 96px #8d8989 solid !important;
  border-left: 96px #8d8989 solid !important;
}
.gray-approx--ba-97 {
  border: 97px #8d8989 solid !important;
}
.gray-approx--bt-97 {
  border-top: 97px #8d8989 solid !important;
}
.gray-approx--br-97 {
  border-right: 97px #8d8989 solid !important;
}
.gray-approx--bl-97 {
  border-left: 97px #8d8989 solid !important;
}
.gray-approx--bb-97 {
  border-bottom: 97px #8d8989 solid !important;
}
.gray-approx--by-97 {
  border-top: 97px #8d8989 solid !important;
  border-bottom: 97px #8d8989 solid !important;
}
.gray-approx--bx-97 {
  border-right: 97px #8d8989 solid !important;
  border-left: 97px #8d8989 solid !important;
}
.gray-approx--ba-98 {
  border: 98px #8d8989 solid !important;
}
.gray-approx--bt-98 {
  border-top: 98px #8d8989 solid !important;
}
.gray-approx--br-98 {
  border-right: 98px #8d8989 solid !important;
}
.gray-approx--bl-98 {
  border-left: 98px #8d8989 solid !important;
}
.gray-approx--bb-98 {
  border-bottom: 98px #8d8989 solid !important;
}
.gray-approx--by-98 {
  border-top: 98px #8d8989 solid !important;
  border-bottom: 98px #8d8989 solid !important;
}
.gray-approx--bx-98 {
  border-right: 98px #8d8989 solid !important;
  border-left: 98px #8d8989 solid !important;
}
.gray-approx--ba-99 {
  border: 99px #8d8989 solid !important;
}
.gray-approx--bt-99 {
  border-top: 99px #8d8989 solid !important;
}
.gray-approx--br-99 {
  border-right: 99px #8d8989 solid !important;
}
.gray-approx--bl-99 {
  border-left: 99px #8d8989 solid !important;
}
.gray-approx--bb-99 {
  border-bottom: 99px #8d8989 solid !important;
}
.gray-approx--by-99 {
  border-top: 99px #8d8989 solid !important;
  border-bottom: 99px #8d8989 solid !important;
}
.gray-approx--bx-99 {
  border-right: 99px #8d8989 solid !important;
  border-left: 99px #8d8989 solid !important;
}
.gray-approx--ba-100 {
  border: 100px #8d8989 solid !important;
}
.gray-approx--bt-100 {
  border-top: 100px #8d8989 solid !important;
}
.gray-approx--br-100 {
  border-right: 100px #8d8989 solid !important;
}
.gray-approx--bl-100 {
  border-left: 100px #8d8989 solid !important;
}
.gray-approx--bb-100 {
  border-bottom: 100px #8d8989 solid !important;
}
.gray-approx--by-100 {
  border-top: 100px #8d8989 solid !important;
  border-bottom: 100px #8d8989 solid !important;
}
.gray-approx--bx-100 {
  border-right: 100px #8d8989 solid !important;
  border-left: 100px #8d8989 solid !important;
}
.dusty-gray--ba-1 {
  border: 1px #9c9c9c solid !important;
}
.dusty-gray--bt-1 {
  border-top: 1px #9c9c9c solid !important;
}
.dusty-gray--br-1 {
  border-right: 1px #9c9c9c solid !important;
}
.dusty-gray--bl-1 {
  border-left: 1px #9c9c9c solid !important;
}
.dusty-gray--bb-1 {
  border-bottom: 1px #9c9c9c solid !important;
}
.dusty-gray--by-1 {
  border-top: 1px #9c9c9c solid !important;
  border-bottom: 1px #9c9c9c solid !important;
}
.dusty-gray--bx-1 {
  border-right: 1px #9c9c9c solid !important;
  border-left: 1px #9c9c9c solid !important;
}
.dusty-gray--ba-2 {
  border: 2px #9c9c9c solid !important;
}
.dusty-gray--bt-2 {
  border-top: 2px #9c9c9c solid !important;
}
.dusty-gray--br-2 {
  border-right: 2px #9c9c9c solid !important;
}
.dusty-gray--bl-2 {
  border-left: 2px #9c9c9c solid !important;
}
.dusty-gray--bb-2 {
  border-bottom: 2px #9c9c9c solid !important;
}
.dusty-gray--by-2 {
  border-top: 2px #9c9c9c solid !important;
  border-bottom: 2px #9c9c9c solid !important;
}
.dusty-gray--bx-2 {
  border-right: 2px #9c9c9c solid !important;
  border-left: 2px #9c9c9c solid !important;
}
.dusty-gray--ba-3 {
  border: 3px #9c9c9c solid !important;
}
.dusty-gray--bt-3 {
  border-top: 3px #9c9c9c solid !important;
}
.dusty-gray--br-3 {
  border-right: 3px #9c9c9c solid !important;
}
.dusty-gray--bl-3 {
  border-left: 3px #9c9c9c solid !important;
}
.dusty-gray--bb-3 {
  border-bottom: 3px #9c9c9c solid !important;
}
.dusty-gray--by-3 {
  border-top: 3px #9c9c9c solid !important;
  border-bottom: 3px #9c9c9c solid !important;
}
.dusty-gray--bx-3 {
  border-right: 3px #9c9c9c solid !important;
  border-left: 3px #9c9c9c solid !important;
}
.dusty-gray--ba-4 {
  border: 4px #9c9c9c solid !important;
}
.dusty-gray--bt-4 {
  border-top: 4px #9c9c9c solid !important;
}
.dusty-gray--br-4 {
  border-right: 4px #9c9c9c solid !important;
}
.dusty-gray--bl-4 {
  border-left: 4px #9c9c9c solid !important;
}
.dusty-gray--bb-4 {
  border-bottom: 4px #9c9c9c solid !important;
}
.dusty-gray--by-4 {
  border-top: 4px #9c9c9c solid !important;
  border-bottom: 4px #9c9c9c solid !important;
}
.dusty-gray--bx-4 {
  border-right: 4px #9c9c9c solid !important;
  border-left: 4px #9c9c9c solid !important;
}
.dusty-gray--ba-5 {
  border: 5px #9c9c9c solid !important;
}
.dusty-gray--bt-5 {
  border-top: 5px #9c9c9c solid !important;
}
.dusty-gray--br-5 {
  border-right: 5px #9c9c9c solid !important;
}
.dusty-gray--bl-5 {
  border-left: 5px #9c9c9c solid !important;
}
.dusty-gray--bb-5 {
  border-bottom: 5px #9c9c9c solid !important;
}
.dusty-gray--by-5 {
  border-top: 5px #9c9c9c solid !important;
  border-bottom: 5px #9c9c9c solid !important;
}
.dusty-gray--bx-5 {
  border-right: 5px #9c9c9c solid !important;
  border-left: 5px #9c9c9c solid !important;
}
.dusty-gray--ba-6 {
  border: 6px #9c9c9c solid !important;
}
.dusty-gray--bt-6 {
  border-top: 6px #9c9c9c solid !important;
}
.dusty-gray--br-6 {
  border-right: 6px #9c9c9c solid !important;
}
.dusty-gray--bl-6 {
  border-left: 6px #9c9c9c solid !important;
}
.dusty-gray--bb-6 {
  border-bottom: 6px #9c9c9c solid !important;
}
.dusty-gray--by-6 {
  border-top: 6px #9c9c9c solid !important;
  border-bottom: 6px #9c9c9c solid !important;
}
.dusty-gray--bx-6 {
  border-right: 6px #9c9c9c solid !important;
  border-left: 6px #9c9c9c solid !important;
}
.dusty-gray--ba-7 {
  border: 7px #9c9c9c solid !important;
}
.dusty-gray--bt-7 {
  border-top: 7px #9c9c9c solid !important;
}
.dusty-gray--br-7 {
  border-right: 7px #9c9c9c solid !important;
}
.dusty-gray--bl-7 {
  border-left: 7px #9c9c9c solid !important;
}
.dusty-gray--bb-7 {
  border-bottom: 7px #9c9c9c solid !important;
}
.dusty-gray--by-7 {
  border-top: 7px #9c9c9c solid !important;
  border-bottom: 7px #9c9c9c solid !important;
}
.dusty-gray--bx-7 {
  border-right: 7px #9c9c9c solid !important;
  border-left: 7px #9c9c9c solid !important;
}
.dusty-gray--ba-8 {
  border: 8px #9c9c9c solid !important;
}
.dusty-gray--bt-8 {
  border-top: 8px #9c9c9c solid !important;
}
.dusty-gray--br-8 {
  border-right: 8px #9c9c9c solid !important;
}
.dusty-gray--bl-8 {
  border-left: 8px #9c9c9c solid !important;
}
.dusty-gray--bb-8 {
  border-bottom: 8px #9c9c9c solid !important;
}
.dusty-gray--by-8 {
  border-top: 8px #9c9c9c solid !important;
  border-bottom: 8px #9c9c9c solid !important;
}
.dusty-gray--bx-8 {
  border-right: 8px #9c9c9c solid !important;
  border-left: 8px #9c9c9c solid !important;
}
.dusty-gray--ba-9 {
  border: 9px #9c9c9c solid !important;
}
.dusty-gray--bt-9 {
  border-top: 9px #9c9c9c solid !important;
}
.dusty-gray--br-9 {
  border-right: 9px #9c9c9c solid !important;
}
.dusty-gray--bl-9 {
  border-left: 9px #9c9c9c solid !important;
}
.dusty-gray--bb-9 {
  border-bottom: 9px #9c9c9c solid !important;
}
.dusty-gray--by-9 {
  border-top: 9px #9c9c9c solid !important;
  border-bottom: 9px #9c9c9c solid !important;
}
.dusty-gray--bx-9 {
  border-right: 9px #9c9c9c solid !important;
  border-left: 9px #9c9c9c solid !important;
}
.dusty-gray--ba-10 {
  border: 10px #9c9c9c solid !important;
}
.dusty-gray--bt-10 {
  border-top: 10px #9c9c9c solid !important;
}
.dusty-gray--br-10 {
  border-right: 10px #9c9c9c solid !important;
}
.dusty-gray--bl-10 {
  border-left: 10px #9c9c9c solid !important;
}
.dusty-gray--bb-10 {
  border-bottom: 10px #9c9c9c solid !important;
}
.dusty-gray--by-10 {
  border-top: 10px #9c9c9c solid !important;
  border-bottom: 10px #9c9c9c solid !important;
}
.dusty-gray--bx-10 {
  border-right: 10px #9c9c9c solid !important;
  border-left: 10px #9c9c9c solid !important;
}
.dusty-gray--ba-11 {
  border: 11px #9c9c9c solid !important;
}
.dusty-gray--bt-11 {
  border-top: 11px #9c9c9c solid !important;
}
.dusty-gray--br-11 {
  border-right: 11px #9c9c9c solid !important;
}
.dusty-gray--bl-11 {
  border-left: 11px #9c9c9c solid !important;
}
.dusty-gray--bb-11 {
  border-bottom: 11px #9c9c9c solid !important;
}
.dusty-gray--by-11 {
  border-top: 11px #9c9c9c solid !important;
  border-bottom: 11px #9c9c9c solid !important;
}
.dusty-gray--bx-11 {
  border-right: 11px #9c9c9c solid !important;
  border-left: 11px #9c9c9c solid !important;
}
.dusty-gray--ba-12 {
  border: 12px #9c9c9c solid !important;
}
.dusty-gray--bt-12 {
  border-top: 12px #9c9c9c solid !important;
}
.dusty-gray--br-12 {
  border-right: 12px #9c9c9c solid !important;
}
.dusty-gray--bl-12 {
  border-left: 12px #9c9c9c solid !important;
}
.dusty-gray--bb-12 {
  border-bottom: 12px #9c9c9c solid !important;
}
.dusty-gray--by-12 {
  border-top: 12px #9c9c9c solid !important;
  border-bottom: 12px #9c9c9c solid !important;
}
.dusty-gray--bx-12 {
  border-right: 12px #9c9c9c solid !important;
  border-left: 12px #9c9c9c solid !important;
}
.dusty-gray--ba-13 {
  border: 13px #9c9c9c solid !important;
}
.dusty-gray--bt-13 {
  border-top: 13px #9c9c9c solid !important;
}
.dusty-gray--br-13 {
  border-right: 13px #9c9c9c solid !important;
}
.dusty-gray--bl-13 {
  border-left: 13px #9c9c9c solid !important;
}
.dusty-gray--bb-13 {
  border-bottom: 13px #9c9c9c solid !important;
}
.dusty-gray--by-13 {
  border-top: 13px #9c9c9c solid !important;
  border-bottom: 13px #9c9c9c solid !important;
}
.dusty-gray--bx-13 {
  border-right: 13px #9c9c9c solid !important;
  border-left: 13px #9c9c9c solid !important;
}
.dusty-gray--ba-14 {
  border: 14px #9c9c9c solid !important;
}
.dusty-gray--bt-14 {
  border-top: 14px #9c9c9c solid !important;
}
.dusty-gray--br-14 {
  border-right: 14px #9c9c9c solid !important;
}
.dusty-gray--bl-14 {
  border-left: 14px #9c9c9c solid !important;
}
.dusty-gray--bb-14 {
  border-bottom: 14px #9c9c9c solid !important;
}
.dusty-gray--by-14 {
  border-top: 14px #9c9c9c solid !important;
  border-bottom: 14px #9c9c9c solid !important;
}
.dusty-gray--bx-14 {
  border-right: 14px #9c9c9c solid !important;
  border-left: 14px #9c9c9c solid !important;
}
.dusty-gray--ba-15 {
  border: 15px #9c9c9c solid !important;
}
.dusty-gray--bt-15 {
  border-top: 15px #9c9c9c solid !important;
}
.dusty-gray--br-15 {
  border-right: 15px #9c9c9c solid !important;
}
.dusty-gray--bl-15 {
  border-left: 15px #9c9c9c solid !important;
}
.dusty-gray--bb-15 {
  border-bottom: 15px #9c9c9c solid !important;
}
.dusty-gray--by-15 {
  border-top: 15px #9c9c9c solid !important;
  border-bottom: 15px #9c9c9c solid !important;
}
.dusty-gray--bx-15 {
  border-right: 15px #9c9c9c solid !important;
  border-left: 15px #9c9c9c solid !important;
}
.dusty-gray--ba-16 {
  border: 16px #9c9c9c solid !important;
}
.dusty-gray--bt-16 {
  border-top: 16px #9c9c9c solid !important;
}
.dusty-gray--br-16 {
  border-right: 16px #9c9c9c solid !important;
}
.dusty-gray--bl-16 {
  border-left: 16px #9c9c9c solid !important;
}
.dusty-gray--bb-16 {
  border-bottom: 16px #9c9c9c solid !important;
}
.dusty-gray--by-16 {
  border-top: 16px #9c9c9c solid !important;
  border-bottom: 16px #9c9c9c solid !important;
}
.dusty-gray--bx-16 {
  border-right: 16px #9c9c9c solid !important;
  border-left: 16px #9c9c9c solid !important;
}
.dusty-gray--ba-17 {
  border: 17px #9c9c9c solid !important;
}
.dusty-gray--bt-17 {
  border-top: 17px #9c9c9c solid !important;
}
.dusty-gray--br-17 {
  border-right: 17px #9c9c9c solid !important;
}
.dusty-gray--bl-17 {
  border-left: 17px #9c9c9c solid !important;
}
.dusty-gray--bb-17 {
  border-bottom: 17px #9c9c9c solid !important;
}
.dusty-gray--by-17 {
  border-top: 17px #9c9c9c solid !important;
  border-bottom: 17px #9c9c9c solid !important;
}
.dusty-gray--bx-17 {
  border-right: 17px #9c9c9c solid !important;
  border-left: 17px #9c9c9c solid !important;
}
.dusty-gray--ba-18 {
  border: 18px #9c9c9c solid !important;
}
.dusty-gray--bt-18 {
  border-top: 18px #9c9c9c solid !important;
}
.dusty-gray--br-18 {
  border-right: 18px #9c9c9c solid !important;
}
.dusty-gray--bl-18 {
  border-left: 18px #9c9c9c solid !important;
}
.dusty-gray--bb-18 {
  border-bottom: 18px #9c9c9c solid !important;
}
.dusty-gray--by-18 {
  border-top: 18px #9c9c9c solid !important;
  border-bottom: 18px #9c9c9c solid !important;
}
.dusty-gray--bx-18 {
  border-right: 18px #9c9c9c solid !important;
  border-left: 18px #9c9c9c solid !important;
}
.dusty-gray--ba-19 {
  border: 19px #9c9c9c solid !important;
}
.dusty-gray--bt-19 {
  border-top: 19px #9c9c9c solid !important;
}
.dusty-gray--br-19 {
  border-right: 19px #9c9c9c solid !important;
}
.dusty-gray--bl-19 {
  border-left: 19px #9c9c9c solid !important;
}
.dusty-gray--bb-19 {
  border-bottom: 19px #9c9c9c solid !important;
}
.dusty-gray--by-19 {
  border-top: 19px #9c9c9c solid !important;
  border-bottom: 19px #9c9c9c solid !important;
}
.dusty-gray--bx-19 {
  border-right: 19px #9c9c9c solid !important;
  border-left: 19px #9c9c9c solid !important;
}
.dusty-gray--ba-20 {
  border: 20px #9c9c9c solid !important;
}
.dusty-gray--bt-20 {
  border-top: 20px #9c9c9c solid !important;
}
.dusty-gray--br-20 {
  border-right: 20px #9c9c9c solid !important;
}
.dusty-gray--bl-20 {
  border-left: 20px #9c9c9c solid !important;
}
.dusty-gray--bb-20 {
  border-bottom: 20px #9c9c9c solid !important;
}
.dusty-gray--by-20 {
  border-top: 20px #9c9c9c solid !important;
  border-bottom: 20px #9c9c9c solid !important;
}
.dusty-gray--bx-20 {
  border-right: 20px #9c9c9c solid !important;
  border-left: 20px #9c9c9c solid !important;
}
.dusty-gray--ba-21 {
  border: 21px #9c9c9c solid !important;
}
.dusty-gray--bt-21 {
  border-top: 21px #9c9c9c solid !important;
}
.dusty-gray--br-21 {
  border-right: 21px #9c9c9c solid !important;
}
.dusty-gray--bl-21 {
  border-left: 21px #9c9c9c solid !important;
}
.dusty-gray--bb-21 {
  border-bottom: 21px #9c9c9c solid !important;
}
.dusty-gray--by-21 {
  border-top: 21px #9c9c9c solid !important;
  border-bottom: 21px #9c9c9c solid !important;
}
.dusty-gray--bx-21 {
  border-right: 21px #9c9c9c solid !important;
  border-left: 21px #9c9c9c solid !important;
}
.dusty-gray--ba-22 {
  border: 22px #9c9c9c solid !important;
}
.dusty-gray--bt-22 {
  border-top: 22px #9c9c9c solid !important;
}
.dusty-gray--br-22 {
  border-right: 22px #9c9c9c solid !important;
}
.dusty-gray--bl-22 {
  border-left: 22px #9c9c9c solid !important;
}
.dusty-gray--bb-22 {
  border-bottom: 22px #9c9c9c solid !important;
}
.dusty-gray--by-22 {
  border-top: 22px #9c9c9c solid !important;
  border-bottom: 22px #9c9c9c solid !important;
}
.dusty-gray--bx-22 {
  border-right: 22px #9c9c9c solid !important;
  border-left: 22px #9c9c9c solid !important;
}
.dusty-gray--ba-23 {
  border: 23px #9c9c9c solid !important;
}
.dusty-gray--bt-23 {
  border-top: 23px #9c9c9c solid !important;
}
.dusty-gray--br-23 {
  border-right: 23px #9c9c9c solid !important;
}
.dusty-gray--bl-23 {
  border-left: 23px #9c9c9c solid !important;
}
.dusty-gray--bb-23 {
  border-bottom: 23px #9c9c9c solid !important;
}
.dusty-gray--by-23 {
  border-top: 23px #9c9c9c solid !important;
  border-bottom: 23px #9c9c9c solid !important;
}
.dusty-gray--bx-23 {
  border-right: 23px #9c9c9c solid !important;
  border-left: 23px #9c9c9c solid !important;
}
.dusty-gray--ba-24 {
  border: 24px #9c9c9c solid !important;
}
.dusty-gray--bt-24 {
  border-top: 24px #9c9c9c solid !important;
}
.dusty-gray--br-24 {
  border-right: 24px #9c9c9c solid !important;
}
.dusty-gray--bl-24 {
  border-left: 24px #9c9c9c solid !important;
}
.dusty-gray--bb-24 {
  border-bottom: 24px #9c9c9c solid !important;
}
.dusty-gray--by-24 {
  border-top: 24px #9c9c9c solid !important;
  border-bottom: 24px #9c9c9c solid !important;
}
.dusty-gray--bx-24 {
  border-right: 24px #9c9c9c solid !important;
  border-left: 24px #9c9c9c solid !important;
}
.dusty-gray--ba-25 {
  border: 25px #9c9c9c solid !important;
}
.dusty-gray--bt-25 {
  border-top: 25px #9c9c9c solid !important;
}
.dusty-gray--br-25 {
  border-right: 25px #9c9c9c solid !important;
}
.dusty-gray--bl-25 {
  border-left: 25px #9c9c9c solid !important;
}
.dusty-gray--bb-25 {
  border-bottom: 25px #9c9c9c solid !important;
}
.dusty-gray--by-25 {
  border-top: 25px #9c9c9c solid !important;
  border-bottom: 25px #9c9c9c solid !important;
}
.dusty-gray--bx-25 {
  border-right: 25px #9c9c9c solid !important;
  border-left: 25px #9c9c9c solid !important;
}
.dusty-gray--ba-26 {
  border: 26px #9c9c9c solid !important;
}
.dusty-gray--bt-26 {
  border-top: 26px #9c9c9c solid !important;
}
.dusty-gray--br-26 {
  border-right: 26px #9c9c9c solid !important;
}
.dusty-gray--bl-26 {
  border-left: 26px #9c9c9c solid !important;
}
.dusty-gray--bb-26 {
  border-bottom: 26px #9c9c9c solid !important;
}
.dusty-gray--by-26 {
  border-top: 26px #9c9c9c solid !important;
  border-bottom: 26px #9c9c9c solid !important;
}
.dusty-gray--bx-26 {
  border-right: 26px #9c9c9c solid !important;
  border-left: 26px #9c9c9c solid !important;
}
.dusty-gray--ba-27 {
  border: 27px #9c9c9c solid !important;
}
.dusty-gray--bt-27 {
  border-top: 27px #9c9c9c solid !important;
}
.dusty-gray--br-27 {
  border-right: 27px #9c9c9c solid !important;
}
.dusty-gray--bl-27 {
  border-left: 27px #9c9c9c solid !important;
}
.dusty-gray--bb-27 {
  border-bottom: 27px #9c9c9c solid !important;
}
.dusty-gray--by-27 {
  border-top: 27px #9c9c9c solid !important;
  border-bottom: 27px #9c9c9c solid !important;
}
.dusty-gray--bx-27 {
  border-right: 27px #9c9c9c solid !important;
  border-left: 27px #9c9c9c solid !important;
}
.dusty-gray--ba-28 {
  border: 28px #9c9c9c solid !important;
}
.dusty-gray--bt-28 {
  border-top: 28px #9c9c9c solid !important;
}
.dusty-gray--br-28 {
  border-right: 28px #9c9c9c solid !important;
}
.dusty-gray--bl-28 {
  border-left: 28px #9c9c9c solid !important;
}
.dusty-gray--bb-28 {
  border-bottom: 28px #9c9c9c solid !important;
}
.dusty-gray--by-28 {
  border-top: 28px #9c9c9c solid !important;
  border-bottom: 28px #9c9c9c solid !important;
}
.dusty-gray--bx-28 {
  border-right: 28px #9c9c9c solid !important;
  border-left: 28px #9c9c9c solid !important;
}
.dusty-gray--ba-29 {
  border: 29px #9c9c9c solid !important;
}
.dusty-gray--bt-29 {
  border-top: 29px #9c9c9c solid !important;
}
.dusty-gray--br-29 {
  border-right: 29px #9c9c9c solid !important;
}
.dusty-gray--bl-29 {
  border-left: 29px #9c9c9c solid !important;
}
.dusty-gray--bb-29 {
  border-bottom: 29px #9c9c9c solid !important;
}
.dusty-gray--by-29 {
  border-top: 29px #9c9c9c solid !important;
  border-bottom: 29px #9c9c9c solid !important;
}
.dusty-gray--bx-29 {
  border-right: 29px #9c9c9c solid !important;
  border-left: 29px #9c9c9c solid !important;
}
.dusty-gray--ba-30 {
  border: 30px #9c9c9c solid !important;
}
.dusty-gray--bt-30 {
  border-top: 30px #9c9c9c solid !important;
}
.dusty-gray--br-30 {
  border-right: 30px #9c9c9c solid !important;
}
.dusty-gray--bl-30 {
  border-left: 30px #9c9c9c solid !important;
}
.dusty-gray--bb-30 {
  border-bottom: 30px #9c9c9c solid !important;
}
.dusty-gray--by-30 {
  border-top: 30px #9c9c9c solid !important;
  border-bottom: 30px #9c9c9c solid !important;
}
.dusty-gray--bx-30 {
  border-right: 30px #9c9c9c solid !important;
  border-left: 30px #9c9c9c solid !important;
}
.dusty-gray--ba-31 {
  border: 31px #9c9c9c solid !important;
}
.dusty-gray--bt-31 {
  border-top: 31px #9c9c9c solid !important;
}
.dusty-gray--br-31 {
  border-right: 31px #9c9c9c solid !important;
}
.dusty-gray--bl-31 {
  border-left: 31px #9c9c9c solid !important;
}
.dusty-gray--bb-31 {
  border-bottom: 31px #9c9c9c solid !important;
}
.dusty-gray--by-31 {
  border-top: 31px #9c9c9c solid !important;
  border-bottom: 31px #9c9c9c solid !important;
}
.dusty-gray--bx-31 {
  border-right: 31px #9c9c9c solid !important;
  border-left: 31px #9c9c9c solid !important;
}
.dusty-gray--ba-32 {
  border: 32px #9c9c9c solid !important;
}
.dusty-gray--bt-32 {
  border-top: 32px #9c9c9c solid !important;
}
.dusty-gray--br-32 {
  border-right: 32px #9c9c9c solid !important;
}
.dusty-gray--bl-32 {
  border-left: 32px #9c9c9c solid !important;
}
.dusty-gray--bb-32 {
  border-bottom: 32px #9c9c9c solid !important;
}
.dusty-gray--by-32 {
  border-top: 32px #9c9c9c solid !important;
  border-bottom: 32px #9c9c9c solid !important;
}
.dusty-gray--bx-32 {
  border-right: 32px #9c9c9c solid !important;
  border-left: 32px #9c9c9c solid !important;
}
.dusty-gray--ba-33 {
  border: 33px #9c9c9c solid !important;
}
.dusty-gray--bt-33 {
  border-top: 33px #9c9c9c solid !important;
}
.dusty-gray--br-33 {
  border-right: 33px #9c9c9c solid !important;
}
.dusty-gray--bl-33 {
  border-left: 33px #9c9c9c solid !important;
}
.dusty-gray--bb-33 {
  border-bottom: 33px #9c9c9c solid !important;
}
.dusty-gray--by-33 {
  border-top: 33px #9c9c9c solid !important;
  border-bottom: 33px #9c9c9c solid !important;
}
.dusty-gray--bx-33 {
  border-right: 33px #9c9c9c solid !important;
  border-left: 33px #9c9c9c solid !important;
}
.dusty-gray--ba-34 {
  border: 34px #9c9c9c solid !important;
}
.dusty-gray--bt-34 {
  border-top: 34px #9c9c9c solid !important;
}
.dusty-gray--br-34 {
  border-right: 34px #9c9c9c solid !important;
}
.dusty-gray--bl-34 {
  border-left: 34px #9c9c9c solid !important;
}
.dusty-gray--bb-34 {
  border-bottom: 34px #9c9c9c solid !important;
}
.dusty-gray--by-34 {
  border-top: 34px #9c9c9c solid !important;
  border-bottom: 34px #9c9c9c solid !important;
}
.dusty-gray--bx-34 {
  border-right: 34px #9c9c9c solid !important;
  border-left: 34px #9c9c9c solid !important;
}
.dusty-gray--ba-35 {
  border: 35px #9c9c9c solid !important;
}
.dusty-gray--bt-35 {
  border-top: 35px #9c9c9c solid !important;
}
.dusty-gray--br-35 {
  border-right: 35px #9c9c9c solid !important;
}
.dusty-gray--bl-35 {
  border-left: 35px #9c9c9c solid !important;
}
.dusty-gray--bb-35 {
  border-bottom: 35px #9c9c9c solid !important;
}
.dusty-gray--by-35 {
  border-top: 35px #9c9c9c solid !important;
  border-bottom: 35px #9c9c9c solid !important;
}
.dusty-gray--bx-35 {
  border-right: 35px #9c9c9c solid !important;
  border-left: 35px #9c9c9c solid !important;
}
.dusty-gray--ba-36 {
  border: 36px #9c9c9c solid !important;
}
.dusty-gray--bt-36 {
  border-top: 36px #9c9c9c solid !important;
}
.dusty-gray--br-36 {
  border-right: 36px #9c9c9c solid !important;
}
.dusty-gray--bl-36 {
  border-left: 36px #9c9c9c solid !important;
}
.dusty-gray--bb-36 {
  border-bottom: 36px #9c9c9c solid !important;
}
.dusty-gray--by-36 {
  border-top: 36px #9c9c9c solid !important;
  border-bottom: 36px #9c9c9c solid !important;
}
.dusty-gray--bx-36 {
  border-right: 36px #9c9c9c solid !important;
  border-left: 36px #9c9c9c solid !important;
}
.dusty-gray--ba-37 {
  border: 37px #9c9c9c solid !important;
}
.dusty-gray--bt-37 {
  border-top: 37px #9c9c9c solid !important;
}
.dusty-gray--br-37 {
  border-right: 37px #9c9c9c solid !important;
}
.dusty-gray--bl-37 {
  border-left: 37px #9c9c9c solid !important;
}
.dusty-gray--bb-37 {
  border-bottom: 37px #9c9c9c solid !important;
}
.dusty-gray--by-37 {
  border-top: 37px #9c9c9c solid !important;
  border-bottom: 37px #9c9c9c solid !important;
}
.dusty-gray--bx-37 {
  border-right: 37px #9c9c9c solid !important;
  border-left: 37px #9c9c9c solid !important;
}
.dusty-gray--ba-38 {
  border: 38px #9c9c9c solid !important;
}
.dusty-gray--bt-38 {
  border-top: 38px #9c9c9c solid !important;
}
.dusty-gray--br-38 {
  border-right: 38px #9c9c9c solid !important;
}
.dusty-gray--bl-38 {
  border-left: 38px #9c9c9c solid !important;
}
.dusty-gray--bb-38 {
  border-bottom: 38px #9c9c9c solid !important;
}
.dusty-gray--by-38 {
  border-top: 38px #9c9c9c solid !important;
  border-bottom: 38px #9c9c9c solid !important;
}
.dusty-gray--bx-38 {
  border-right: 38px #9c9c9c solid !important;
  border-left: 38px #9c9c9c solid !important;
}
.dusty-gray--ba-39 {
  border: 39px #9c9c9c solid !important;
}
.dusty-gray--bt-39 {
  border-top: 39px #9c9c9c solid !important;
}
.dusty-gray--br-39 {
  border-right: 39px #9c9c9c solid !important;
}
.dusty-gray--bl-39 {
  border-left: 39px #9c9c9c solid !important;
}
.dusty-gray--bb-39 {
  border-bottom: 39px #9c9c9c solid !important;
}
.dusty-gray--by-39 {
  border-top: 39px #9c9c9c solid !important;
  border-bottom: 39px #9c9c9c solid !important;
}
.dusty-gray--bx-39 {
  border-right: 39px #9c9c9c solid !important;
  border-left: 39px #9c9c9c solid !important;
}
.dusty-gray--ba-40 {
  border: 40px #9c9c9c solid !important;
}
.dusty-gray--bt-40 {
  border-top: 40px #9c9c9c solid !important;
}
.dusty-gray--br-40 {
  border-right: 40px #9c9c9c solid !important;
}
.dusty-gray--bl-40 {
  border-left: 40px #9c9c9c solid !important;
}
.dusty-gray--bb-40 {
  border-bottom: 40px #9c9c9c solid !important;
}
.dusty-gray--by-40 {
  border-top: 40px #9c9c9c solid !important;
  border-bottom: 40px #9c9c9c solid !important;
}
.dusty-gray--bx-40 {
  border-right: 40px #9c9c9c solid !important;
  border-left: 40px #9c9c9c solid !important;
}
.dusty-gray--ba-41 {
  border: 41px #9c9c9c solid !important;
}
.dusty-gray--bt-41 {
  border-top: 41px #9c9c9c solid !important;
}
.dusty-gray--br-41 {
  border-right: 41px #9c9c9c solid !important;
}
.dusty-gray--bl-41 {
  border-left: 41px #9c9c9c solid !important;
}
.dusty-gray--bb-41 {
  border-bottom: 41px #9c9c9c solid !important;
}
.dusty-gray--by-41 {
  border-top: 41px #9c9c9c solid !important;
  border-bottom: 41px #9c9c9c solid !important;
}
.dusty-gray--bx-41 {
  border-right: 41px #9c9c9c solid !important;
  border-left: 41px #9c9c9c solid !important;
}
.dusty-gray--ba-42 {
  border: 42px #9c9c9c solid !important;
}
.dusty-gray--bt-42 {
  border-top: 42px #9c9c9c solid !important;
}
.dusty-gray--br-42 {
  border-right: 42px #9c9c9c solid !important;
}
.dusty-gray--bl-42 {
  border-left: 42px #9c9c9c solid !important;
}
.dusty-gray--bb-42 {
  border-bottom: 42px #9c9c9c solid !important;
}
.dusty-gray--by-42 {
  border-top: 42px #9c9c9c solid !important;
  border-bottom: 42px #9c9c9c solid !important;
}
.dusty-gray--bx-42 {
  border-right: 42px #9c9c9c solid !important;
  border-left: 42px #9c9c9c solid !important;
}
.dusty-gray--ba-43 {
  border: 43px #9c9c9c solid !important;
}
.dusty-gray--bt-43 {
  border-top: 43px #9c9c9c solid !important;
}
.dusty-gray--br-43 {
  border-right: 43px #9c9c9c solid !important;
}
.dusty-gray--bl-43 {
  border-left: 43px #9c9c9c solid !important;
}
.dusty-gray--bb-43 {
  border-bottom: 43px #9c9c9c solid !important;
}
.dusty-gray--by-43 {
  border-top: 43px #9c9c9c solid !important;
  border-bottom: 43px #9c9c9c solid !important;
}
.dusty-gray--bx-43 {
  border-right: 43px #9c9c9c solid !important;
  border-left: 43px #9c9c9c solid !important;
}
.dusty-gray--ba-44 {
  border: 44px #9c9c9c solid !important;
}
.dusty-gray--bt-44 {
  border-top: 44px #9c9c9c solid !important;
}
.dusty-gray--br-44 {
  border-right: 44px #9c9c9c solid !important;
}
.dusty-gray--bl-44 {
  border-left: 44px #9c9c9c solid !important;
}
.dusty-gray--bb-44 {
  border-bottom: 44px #9c9c9c solid !important;
}
.dusty-gray--by-44 {
  border-top: 44px #9c9c9c solid !important;
  border-bottom: 44px #9c9c9c solid !important;
}
.dusty-gray--bx-44 {
  border-right: 44px #9c9c9c solid !important;
  border-left: 44px #9c9c9c solid !important;
}
.dusty-gray--ba-45 {
  border: 45px #9c9c9c solid !important;
}
.dusty-gray--bt-45 {
  border-top: 45px #9c9c9c solid !important;
}
.dusty-gray--br-45 {
  border-right: 45px #9c9c9c solid !important;
}
.dusty-gray--bl-45 {
  border-left: 45px #9c9c9c solid !important;
}
.dusty-gray--bb-45 {
  border-bottom: 45px #9c9c9c solid !important;
}
.dusty-gray--by-45 {
  border-top: 45px #9c9c9c solid !important;
  border-bottom: 45px #9c9c9c solid !important;
}
.dusty-gray--bx-45 {
  border-right: 45px #9c9c9c solid !important;
  border-left: 45px #9c9c9c solid !important;
}
.dusty-gray--ba-46 {
  border: 46px #9c9c9c solid !important;
}
.dusty-gray--bt-46 {
  border-top: 46px #9c9c9c solid !important;
}
.dusty-gray--br-46 {
  border-right: 46px #9c9c9c solid !important;
}
.dusty-gray--bl-46 {
  border-left: 46px #9c9c9c solid !important;
}
.dusty-gray--bb-46 {
  border-bottom: 46px #9c9c9c solid !important;
}
.dusty-gray--by-46 {
  border-top: 46px #9c9c9c solid !important;
  border-bottom: 46px #9c9c9c solid !important;
}
.dusty-gray--bx-46 {
  border-right: 46px #9c9c9c solid !important;
  border-left: 46px #9c9c9c solid !important;
}
.dusty-gray--ba-47 {
  border: 47px #9c9c9c solid !important;
}
.dusty-gray--bt-47 {
  border-top: 47px #9c9c9c solid !important;
}
.dusty-gray--br-47 {
  border-right: 47px #9c9c9c solid !important;
}
.dusty-gray--bl-47 {
  border-left: 47px #9c9c9c solid !important;
}
.dusty-gray--bb-47 {
  border-bottom: 47px #9c9c9c solid !important;
}
.dusty-gray--by-47 {
  border-top: 47px #9c9c9c solid !important;
  border-bottom: 47px #9c9c9c solid !important;
}
.dusty-gray--bx-47 {
  border-right: 47px #9c9c9c solid !important;
  border-left: 47px #9c9c9c solid !important;
}
.dusty-gray--ba-48 {
  border: 48px #9c9c9c solid !important;
}
.dusty-gray--bt-48 {
  border-top: 48px #9c9c9c solid !important;
}
.dusty-gray--br-48 {
  border-right: 48px #9c9c9c solid !important;
}
.dusty-gray--bl-48 {
  border-left: 48px #9c9c9c solid !important;
}
.dusty-gray--bb-48 {
  border-bottom: 48px #9c9c9c solid !important;
}
.dusty-gray--by-48 {
  border-top: 48px #9c9c9c solid !important;
  border-bottom: 48px #9c9c9c solid !important;
}
.dusty-gray--bx-48 {
  border-right: 48px #9c9c9c solid !important;
  border-left: 48px #9c9c9c solid !important;
}
.dusty-gray--ba-49 {
  border: 49px #9c9c9c solid !important;
}
.dusty-gray--bt-49 {
  border-top: 49px #9c9c9c solid !important;
}
.dusty-gray--br-49 {
  border-right: 49px #9c9c9c solid !important;
}
.dusty-gray--bl-49 {
  border-left: 49px #9c9c9c solid !important;
}
.dusty-gray--bb-49 {
  border-bottom: 49px #9c9c9c solid !important;
}
.dusty-gray--by-49 {
  border-top: 49px #9c9c9c solid !important;
  border-bottom: 49px #9c9c9c solid !important;
}
.dusty-gray--bx-49 {
  border-right: 49px #9c9c9c solid !important;
  border-left: 49px #9c9c9c solid !important;
}
.dusty-gray--ba-50 {
  border: 50px #9c9c9c solid !important;
}
.dusty-gray--bt-50 {
  border-top: 50px #9c9c9c solid !important;
}
.dusty-gray--br-50 {
  border-right: 50px #9c9c9c solid !important;
}
.dusty-gray--bl-50 {
  border-left: 50px #9c9c9c solid !important;
}
.dusty-gray--bb-50 {
  border-bottom: 50px #9c9c9c solid !important;
}
.dusty-gray--by-50 {
  border-top: 50px #9c9c9c solid !important;
  border-bottom: 50px #9c9c9c solid !important;
}
.dusty-gray--bx-50 {
  border-right: 50px #9c9c9c solid !important;
  border-left: 50px #9c9c9c solid !important;
}
.dusty-gray--ba-51 {
  border: 51px #9c9c9c solid !important;
}
.dusty-gray--bt-51 {
  border-top: 51px #9c9c9c solid !important;
}
.dusty-gray--br-51 {
  border-right: 51px #9c9c9c solid !important;
}
.dusty-gray--bl-51 {
  border-left: 51px #9c9c9c solid !important;
}
.dusty-gray--bb-51 {
  border-bottom: 51px #9c9c9c solid !important;
}
.dusty-gray--by-51 {
  border-top: 51px #9c9c9c solid !important;
  border-bottom: 51px #9c9c9c solid !important;
}
.dusty-gray--bx-51 {
  border-right: 51px #9c9c9c solid !important;
  border-left: 51px #9c9c9c solid !important;
}
.dusty-gray--ba-52 {
  border: 52px #9c9c9c solid !important;
}
.dusty-gray--bt-52 {
  border-top: 52px #9c9c9c solid !important;
}
.dusty-gray--br-52 {
  border-right: 52px #9c9c9c solid !important;
}
.dusty-gray--bl-52 {
  border-left: 52px #9c9c9c solid !important;
}
.dusty-gray--bb-52 {
  border-bottom: 52px #9c9c9c solid !important;
}
.dusty-gray--by-52 {
  border-top: 52px #9c9c9c solid !important;
  border-bottom: 52px #9c9c9c solid !important;
}
.dusty-gray--bx-52 {
  border-right: 52px #9c9c9c solid !important;
  border-left: 52px #9c9c9c solid !important;
}
.dusty-gray--ba-53 {
  border: 53px #9c9c9c solid !important;
}
.dusty-gray--bt-53 {
  border-top: 53px #9c9c9c solid !important;
}
.dusty-gray--br-53 {
  border-right: 53px #9c9c9c solid !important;
}
.dusty-gray--bl-53 {
  border-left: 53px #9c9c9c solid !important;
}
.dusty-gray--bb-53 {
  border-bottom: 53px #9c9c9c solid !important;
}
.dusty-gray--by-53 {
  border-top: 53px #9c9c9c solid !important;
  border-bottom: 53px #9c9c9c solid !important;
}
.dusty-gray--bx-53 {
  border-right: 53px #9c9c9c solid !important;
  border-left: 53px #9c9c9c solid !important;
}
.dusty-gray--ba-54 {
  border: 54px #9c9c9c solid !important;
}
.dusty-gray--bt-54 {
  border-top: 54px #9c9c9c solid !important;
}
.dusty-gray--br-54 {
  border-right: 54px #9c9c9c solid !important;
}
.dusty-gray--bl-54 {
  border-left: 54px #9c9c9c solid !important;
}
.dusty-gray--bb-54 {
  border-bottom: 54px #9c9c9c solid !important;
}
.dusty-gray--by-54 {
  border-top: 54px #9c9c9c solid !important;
  border-bottom: 54px #9c9c9c solid !important;
}
.dusty-gray--bx-54 {
  border-right: 54px #9c9c9c solid !important;
  border-left: 54px #9c9c9c solid !important;
}
.dusty-gray--ba-55 {
  border: 55px #9c9c9c solid !important;
}
.dusty-gray--bt-55 {
  border-top: 55px #9c9c9c solid !important;
}
.dusty-gray--br-55 {
  border-right: 55px #9c9c9c solid !important;
}
.dusty-gray--bl-55 {
  border-left: 55px #9c9c9c solid !important;
}
.dusty-gray--bb-55 {
  border-bottom: 55px #9c9c9c solid !important;
}
.dusty-gray--by-55 {
  border-top: 55px #9c9c9c solid !important;
  border-bottom: 55px #9c9c9c solid !important;
}
.dusty-gray--bx-55 {
  border-right: 55px #9c9c9c solid !important;
  border-left: 55px #9c9c9c solid !important;
}
.dusty-gray--ba-56 {
  border: 56px #9c9c9c solid !important;
}
.dusty-gray--bt-56 {
  border-top: 56px #9c9c9c solid !important;
}
.dusty-gray--br-56 {
  border-right: 56px #9c9c9c solid !important;
}
.dusty-gray--bl-56 {
  border-left: 56px #9c9c9c solid !important;
}
.dusty-gray--bb-56 {
  border-bottom: 56px #9c9c9c solid !important;
}
.dusty-gray--by-56 {
  border-top: 56px #9c9c9c solid !important;
  border-bottom: 56px #9c9c9c solid !important;
}
.dusty-gray--bx-56 {
  border-right: 56px #9c9c9c solid !important;
  border-left: 56px #9c9c9c solid !important;
}
.dusty-gray--ba-57 {
  border: 57px #9c9c9c solid !important;
}
.dusty-gray--bt-57 {
  border-top: 57px #9c9c9c solid !important;
}
.dusty-gray--br-57 {
  border-right: 57px #9c9c9c solid !important;
}
.dusty-gray--bl-57 {
  border-left: 57px #9c9c9c solid !important;
}
.dusty-gray--bb-57 {
  border-bottom: 57px #9c9c9c solid !important;
}
.dusty-gray--by-57 {
  border-top: 57px #9c9c9c solid !important;
  border-bottom: 57px #9c9c9c solid !important;
}
.dusty-gray--bx-57 {
  border-right: 57px #9c9c9c solid !important;
  border-left: 57px #9c9c9c solid !important;
}
.dusty-gray--ba-58 {
  border: 58px #9c9c9c solid !important;
}
.dusty-gray--bt-58 {
  border-top: 58px #9c9c9c solid !important;
}
.dusty-gray--br-58 {
  border-right: 58px #9c9c9c solid !important;
}
.dusty-gray--bl-58 {
  border-left: 58px #9c9c9c solid !important;
}
.dusty-gray--bb-58 {
  border-bottom: 58px #9c9c9c solid !important;
}
.dusty-gray--by-58 {
  border-top: 58px #9c9c9c solid !important;
  border-bottom: 58px #9c9c9c solid !important;
}
.dusty-gray--bx-58 {
  border-right: 58px #9c9c9c solid !important;
  border-left: 58px #9c9c9c solid !important;
}
.dusty-gray--ba-59 {
  border: 59px #9c9c9c solid !important;
}
.dusty-gray--bt-59 {
  border-top: 59px #9c9c9c solid !important;
}
.dusty-gray--br-59 {
  border-right: 59px #9c9c9c solid !important;
}
.dusty-gray--bl-59 {
  border-left: 59px #9c9c9c solid !important;
}
.dusty-gray--bb-59 {
  border-bottom: 59px #9c9c9c solid !important;
}
.dusty-gray--by-59 {
  border-top: 59px #9c9c9c solid !important;
  border-bottom: 59px #9c9c9c solid !important;
}
.dusty-gray--bx-59 {
  border-right: 59px #9c9c9c solid !important;
  border-left: 59px #9c9c9c solid !important;
}
.dusty-gray--ba-60 {
  border: 60px #9c9c9c solid !important;
}
.dusty-gray--bt-60 {
  border-top: 60px #9c9c9c solid !important;
}
.dusty-gray--br-60 {
  border-right: 60px #9c9c9c solid !important;
}
.dusty-gray--bl-60 {
  border-left: 60px #9c9c9c solid !important;
}
.dusty-gray--bb-60 {
  border-bottom: 60px #9c9c9c solid !important;
}
.dusty-gray--by-60 {
  border-top: 60px #9c9c9c solid !important;
  border-bottom: 60px #9c9c9c solid !important;
}
.dusty-gray--bx-60 {
  border-right: 60px #9c9c9c solid !important;
  border-left: 60px #9c9c9c solid !important;
}
.dusty-gray--ba-61 {
  border: 61px #9c9c9c solid !important;
}
.dusty-gray--bt-61 {
  border-top: 61px #9c9c9c solid !important;
}
.dusty-gray--br-61 {
  border-right: 61px #9c9c9c solid !important;
}
.dusty-gray--bl-61 {
  border-left: 61px #9c9c9c solid !important;
}
.dusty-gray--bb-61 {
  border-bottom: 61px #9c9c9c solid !important;
}
.dusty-gray--by-61 {
  border-top: 61px #9c9c9c solid !important;
  border-bottom: 61px #9c9c9c solid !important;
}
.dusty-gray--bx-61 {
  border-right: 61px #9c9c9c solid !important;
  border-left: 61px #9c9c9c solid !important;
}
.dusty-gray--ba-62 {
  border: 62px #9c9c9c solid !important;
}
.dusty-gray--bt-62 {
  border-top: 62px #9c9c9c solid !important;
}
.dusty-gray--br-62 {
  border-right: 62px #9c9c9c solid !important;
}
.dusty-gray--bl-62 {
  border-left: 62px #9c9c9c solid !important;
}
.dusty-gray--bb-62 {
  border-bottom: 62px #9c9c9c solid !important;
}
.dusty-gray--by-62 {
  border-top: 62px #9c9c9c solid !important;
  border-bottom: 62px #9c9c9c solid !important;
}
.dusty-gray--bx-62 {
  border-right: 62px #9c9c9c solid !important;
  border-left: 62px #9c9c9c solid !important;
}
.dusty-gray--ba-63 {
  border: 63px #9c9c9c solid !important;
}
.dusty-gray--bt-63 {
  border-top: 63px #9c9c9c solid !important;
}
.dusty-gray--br-63 {
  border-right: 63px #9c9c9c solid !important;
}
.dusty-gray--bl-63 {
  border-left: 63px #9c9c9c solid !important;
}
.dusty-gray--bb-63 {
  border-bottom: 63px #9c9c9c solid !important;
}
.dusty-gray--by-63 {
  border-top: 63px #9c9c9c solid !important;
  border-bottom: 63px #9c9c9c solid !important;
}
.dusty-gray--bx-63 {
  border-right: 63px #9c9c9c solid !important;
  border-left: 63px #9c9c9c solid !important;
}
.dusty-gray--ba-64 {
  border: 64px #9c9c9c solid !important;
}
.dusty-gray--bt-64 {
  border-top: 64px #9c9c9c solid !important;
}
.dusty-gray--br-64 {
  border-right: 64px #9c9c9c solid !important;
}
.dusty-gray--bl-64 {
  border-left: 64px #9c9c9c solid !important;
}
.dusty-gray--bb-64 {
  border-bottom: 64px #9c9c9c solid !important;
}
.dusty-gray--by-64 {
  border-top: 64px #9c9c9c solid !important;
  border-bottom: 64px #9c9c9c solid !important;
}
.dusty-gray--bx-64 {
  border-right: 64px #9c9c9c solid !important;
  border-left: 64px #9c9c9c solid !important;
}
.dusty-gray--ba-65 {
  border: 65px #9c9c9c solid !important;
}
.dusty-gray--bt-65 {
  border-top: 65px #9c9c9c solid !important;
}
.dusty-gray--br-65 {
  border-right: 65px #9c9c9c solid !important;
}
.dusty-gray--bl-65 {
  border-left: 65px #9c9c9c solid !important;
}
.dusty-gray--bb-65 {
  border-bottom: 65px #9c9c9c solid !important;
}
.dusty-gray--by-65 {
  border-top: 65px #9c9c9c solid !important;
  border-bottom: 65px #9c9c9c solid !important;
}
.dusty-gray--bx-65 {
  border-right: 65px #9c9c9c solid !important;
  border-left: 65px #9c9c9c solid !important;
}
.dusty-gray--ba-66 {
  border: 66px #9c9c9c solid !important;
}
.dusty-gray--bt-66 {
  border-top: 66px #9c9c9c solid !important;
}
.dusty-gray--br-66 {
  border-right: 66px #9c9c9c solid !important;
}
.dusty-gray--bl-66 {
  border-left: 66px #9c9c9c solid !important;
}
.dusty-gray--bb-66 {
  border-bottom: 66px #9c9c9c solid !important;
}
.dusty-gray--by-66 {
  border-top: 66px #9c9c9c solid !important;
  border-bottom: 66px #9c9c9c solid !important;
}
.dusty-gray--bx-66 {
  border-right: 66px #9c9c9c solid !important;
  border-left: 66px #9c9c9c solid !important;
}
.dusty-gray--ba-67 {
  border: 67px #9c9c9c solid !important;
}
.dusty-gray--bt-67 {
  border-top: 67px #9c9c9c solid !important;
}
.dusty-gray--br-67 {
  border-right: 67px #9c9c9c solid !important;
}
.dusty-gray--bl-67 {
  border-left: 67px #9c9c9c solid !important;
}
.dusty-gray--bb-67 {
  border-bottom: 67px #9c9c9c solid !important;
}
.dusty-gray--by-67 {
  border-top: 67px #9c9c9c solid !important;
  border-bottom: 67px #9c9c9c solid !important;
}
.dusty-gray--bx-67 {
  border-right: 67px #9c9c9c solid !important;
  border-left: 67px #9c9c9c solid !important;
}
.dusty-gray--ba-68 {
  border: 68px #9c9c9c solid !important;
}
.dusty-gray--bt-68 {
  border-top: 68px #9c9c9c solid !important;
}
.dusty-gray--br-68 {
  border-right: 68px #9c9c9c solid !important;
}
.dusty-gray--bl-68 {
  border-left: 68px #9c9c9c solid !important;
}
.dusty-gray--bb-68 {
  border-bottom: 68px #9c9c9c solid !important;
}
.dusty-gray--by-68 {
  border-top: 68px #9c9c9c solid !important;
  border-bottom: 68px #9c9c9c solid !important;
}
.dusty-gray--bx-68 {
  border-right: 68px #9c9c9c solid !important;
  border-left: 68px #9c9c9c solid !important;
}
.dusty-gray--ba-69 {
  border: 69px #9c9c9c solid !important;
}
.dusty-gray--bt-69 {
  border-top: 69px #9c9c9c solid !important;
}
.dusty-gray--br-69 {
  border-right: 69px #9c9c9c solid !important;
}
.dusty-gray--bl-69 {
  border-left: 69px #9c9c9c solid !important;
}
.dusty-gray--bb-69 {
  border-bottom: 69px #9c9c9c solid !important;
}
.dusty-gray--by-69 {
  border-top: 69px #9c9c9c solid !important;
  border-bottom: 69px #9c9c9c solid !important;
}
.dusty-gray--bx-69 {
  border-right: 69px #9c9c9c solid !important;
  border-left: 69px #9c9c9c solid !important;
}
.dusty-gray--ba-70 {
  border: 70px #9c9c9c solid !important;
}
.dusty-gray--bt-70 {
  border-top: 70px #9c9c9c solid !important;
}
.dusty-gray--br-70 {
  border-right: 70px #9c9c9c solid !important;
}
.dusty-gray--bl-70 {
  border-left: 70px #9c9c9c solid !important;
}
.dusty-gray--bb-70 {
  border-bottom: 70px #9c9c9c solid !important;
}
.dusty-gray--by-70 {
  border-top: 70px #9c9c9c solid !important;
  border-bottom: 70px #9c9c9c solid !important;
}
.dusty-gray--bx-70 {
  border-right: 70px #9c9c9c solid !important;
  border-left: 70px #9c9c9c solid !important;
}
.dusty-gray--ba-71 {
  border: 71px #9c9c9c solid !important;
}
.dusty-gray--bt-71 {
  border-top: 71px #9c9c9c solid !important;
}
.dusty-gray--br-71 {
  border-right: 71px #9c9c9c solid !important;
}
.dusty-gray--bl-71 {
  border-left: 71px #9c9c9c solid !important;
}
.dusty-gray--bb-71 {
  border-bottom: 71px #9c9c9c solid !important;
}
.dusty-gray--by-71 {
  border-top: 71px #9c9c9c solid !important;
  border-bottom: 71px #9c9c9c solid !important;
}
.dusty-gray--bx-71 {
  border-right: 71px #9c9c9c solid !important;
  border-left: 71px #9c9c9c solid !important;
}
.dusty-gray--ba-72 {
  border: 72px #9c9c9c solid !important;
}
.dusty-gray--bt-72 {
  border-top: 72px #9c9c9c solid !important;
}
.dusty-gray--br-72 {
  border-right: 72px #9c9c9c solid !important;
}
.dusty-gray--bl-72 {
  border-left: 72px #9c9c9c solid !important;
}
.dusty-gray--bb-72 {
  border-bottom: 72px #9c9c9c solid !important;
}
.dusty-gray--by-72 {
  border-top: 72px #9c9c9c solid !important;
  border-bottom: 72px #9c9c9c solid !important;
}
.dusty-gray--bx-72 {
  border-right: 72px #9c9c9c solid !important;
  border-left: 72px #9c9c9c solid !important;
}
.dusty-gray--ba-73 {
  border: 73px #9c9c9c solid !important;
}
.dusty-gray--bt-73 {
  border-top: 73px #9c9c9c solid !important;
}
.dusty-gray--br-73 {
  border-right: 73px #9c9c9c solid !important;
}
.dusty-gray--bl-73 {
  border-left: 73px #9c9c9c solid !important;
}
.dusty-gray--bb-73 {
  border-bottom: 73px #9c9c9c solid !important;
}
.dusty-gray--by-73 {
  border-top: 73px #9c9c9c solid !important;
  border-bottom: 73px #9c9c9c solid !important;
}
.dusty-gray--bx-73 {
  border-right: 73px #9c9c9c solid !important;
  border-left: 73px #9c9c9c solid !important;
}
.dusty-gray--ba-74 {
  border: 74px #9c9c9c solid !important;
}
.dusty-gray--bt-74 {
  border-top: 74px #9c9c9c solid !important;
}
.dusty-gray--br-74 {
  border-right: 74px #9c9c9c solid !important;
}
.dusty-gray--bl-74 {
  border-left: 74px #9c9c9c solid !important;
}
.dusty-gray--bb-74 {
  border-bottom: 74px #9c9c9c solid !important;
}
.dusty-gray--by-74 {
  border-top: 74px #9c9c9c solid !important;
  border-bottom: 74px #9c9c9c solid !important;
}
.dusty-gray--bx-74 {
  border-right: 74px #9c9c9c solid !important;
  border-left: 74px #9c9c9c solid !important;
}
.dusty-gray--ba-75 {
  border: 75px #9c9c9c solid !important;
}
.dusty-gray--bt-75 {
  border-top: 75px #9c9c9c solid !important;
}
.dusty-gray--br-75 {
  border-right: 75px #9c9c9c solid !important;
}
.dusty-gray--bl-75 {
  border-left: 75px #9c9c9c solid !important;
}
.dusty-gray--bb-75 {
  border-bottom: 75px #9c9c9c solid !important;
}
.dusty-gray--by-75 {
  border-top: 75px #9c9c9c solid !important;
  border-bottom: 75px #9c9c9c solid !important;
}
.dusty-gray--bx-75 {
  border-right: 75px #9c9c9c solid !important;
  border-left: 75px #9c9c9c solid !important;
}
.dusty-gray--ba-76 {
  border: 76px #9c9c9c solid !important;
}
.dusty-gray--bt-76 {
  border-top: 76px #9c9c9c solid !important;
}
.dusty-gray--br-76 {
  border-right: 76px #9c9c9c solid !important;
}
.dusty-gray--bl-76 {
  border-left: 76px #9c9c9c solid !important;
}
.dusty-gray--bb-76 {
  border-bottom: 76px #9c9c9c solid !important;
}
.dusty-gray--by-76 {
  border-top: 76px #9c9c9c solid !important;
  border-bottom: 76px #9c9c9c solid !important;
}
.dusty-gray--bx-76 {
  border-right: 76px #9c9c9c solid !important;
  border-left: 76px #9c9c9c solid !important;
}
.dusty-gray--ba-77 {
  border: 77px #9c9c9c solid !important;
}
.dusty-gray--bt-77 {
  border-top: 77px #9c9c9c solid !important;
}
.dusty-gray--br-77 {
  border-right: 77px #9c9c9c solid !important;
}
.dusty-gray--bl-77 {
  border-left: 77px #9c9c9c solid !important;
}
.dusty-gray--bb-77 {
  border-bottom: 77px #9c9c9c solid !important;
}
.dusty-gray--by-77 {
  border-top: 77px #9c9c9c solid !important;
  border-bottom: 77px #9c9c9c solid !important;
}
.dusty-gray--bx-77 {
  border-right: 77px #9c9c9c solid !important;
  border-left: 77px #9c9c9c solid !important;
}
.dusty-gray--ba-78 {
  border: 78px #9c9c9c solid !important;
}
.dusty-gray--bt-78 {
  border-top: 78px #9c9c9c solid !important;
}
.dusty-gray--br-78 {
  border-right: 78px #9c9c9c solid !important;
}
.dusty-gray--bl-78 {
  border-left: 78px #9c9c9c solid !important;
}
.dusty-gray--bb-78 {
  border-bottom: 78px #9c9c9c solid !important;
}
.dusty-gray--by-78 {
  border-top: 78px #9c9c9c solid !important;
  border-bottom: 78px #9c9c9c solid !important;
}
.dusty-gray--bx-78 {
  border-right: 78px #9c9c9c solid !important;
  border-left: 78px #9c9c9c solid !important;
}
.dusty-gray--ba-79 {
  border: 79px #9c9c9c solid !important;
}
.dusty-gray--bt-79 {
  border-top: 79px #9c9c9c solid !important;
}
.dusty-gray--br-79 {
  border-right: 79px #9c9c9c solid !important;
}
.dusty-gray--bl-79 {
  border-left: 79px #9c9c9c solid !important;
}
.dusty-gray--bb-79 {
  border-bottom: 79px #9c9c9c solid !important;
}
.dusty-gray--by-79 {
  border-top: 79px #9c9c9c solid !important;
  border-bottom: 79px #9c9c9c solid !important;
}
.dusty-gray--bx-79 {
  border-right: 79px #9c9c9c solid !important;
  border-left: 79px #9c9c9c solid !important;
}
.dusty-gray--ba-80 {
  border: 80px #9c9c9c solid !important;
}
.dusty-gray--bt-80 {
  border-top: 80px #9c9c9c solid !important;
}
.dusty-gray--br-80 {
  border-right: 80px #9c9c9c solid !important;
}
.dusty-gray--bl-80 {
  border-left: 80px #9c9c9c solid !important;
}
.dusty-gray--bb-80 {
  border-bottom: 80px #9c9c9c solid !important;
}
.dusty-gray--by-80 {
  border-top: 80px #9c9c9c solid !important;
  border-bottom: 80px #9c9c9c solid !important;
}
.dusty-gray--bx-80 {
  border-right: 80px #9c9c9c solid !important;
  border-left: 80px #9c9c9c solid !important;
}
.dusty-gray--ba-81 {
  border: 81px #9c9c9c solid !important;
}
.dusty-gray--bt-81 {
  border-top: 81px #9c9c9c solid !important;
}
.dusty-gray--br-81 {
  border-right: 81px #9c9c9c solid !important;
}
.dusty-gray--bl-81 {
  border-left: 81px #9c9c9c solid !important;
}
.dusty-gray--bb-81 {
  border-bottom: 81px #9c9c9c solid !important;
}
.dusty-gray--by-81 {
  border-top: 81px #9c9c9c solid !important;
  border-bottom: 81px #9c9c9c solid !important;
}
.dusty-gray--bx-81 {
  border-right: 81px #9c9c9c solid !important;
  border-left: 81px #9c9c9c solid !important;
}
.dusty-gray--ba-82 {
  border: 82px #9c9c9c solid !important;
}
.dusty-gray--bt-82 {
  border-top: 82px #9c9c9c solid !important;
}
.dusty-gray--br-82 {
  border-right: 82px #9c9c9c solid !important;
}
.dusty-gray--bl-82 {
  border-left: 82px #9c9c9c solid !important;
}
.dusty-gray--bb-82 {
  border-bottom: 82px #9c9c9c solid !important;
}
.dusty-gray--by-82 {
  border-top: 82px #9c9c9c solid !important;
  border-bottom: 82px #9c9c9c solid !important;
}
.dusty-gray--bx-82 {
  border-right: 82px #9c9c9c solid !important;
  border-left: 82px #9c9c9c solid !important;
}
.dusty-gray--ba-83 {
  border: 83px #9c9c9c solid !important;
}
.dusty-gray--bt-83 {
  border-top: 83px #9c9c9c solid !important;
}
.dusty-gray--br-83 {
  border-right: 83px #9c9c9c solid !important;
}
.dusty-gray--bl-83 {
  border-left: 83px #9c9c9c solid !important;
}
.dusty-gray--bb-83 {
  border-bottom: 83px #9c9c9c solid !important;
}
.dusty-gray--by-83 {
  border-top: 83px #9c9c9c solid !important;
  border-bottom: 83px #9c9c9c solid !important;
}
.dusty-gray--bx-83 {
  border-right: 83px #9c9c9c solid !important;
  border-left: 83px #9c9c9c solid !important;
}
.dusty-gray--ba-84 {
  border: 84px #9c9c9c solid !important;
}
.dusty-gray--bt-84 {
  border-top: 84px #9c9c9c solid !important;
}
.dusty-gray--br-84 {
  border-right: 84px #9c9c9c solid !important;
}
.dusty-gray--bl-84 {
  border-left: 84px #9c9c9c solid !important;
}
.dusty-gray--bb-84 {
  border-bottom: 84px #9c9c9c solid !important;
}
.dusty-gray--by-84 {
  border-top: 84px #9c9c9c solid !important;
  border-bottom: 84px #9c9c9c solid !important;
}
.dusty-gray--bx-84 {
  border-right: 84px #9c9c9c solid !important;
  border-left: 84px #9c9c9c solid !important;
}
.dusty-gray--ba-85 {
  border: 85px #9c9c9c solid !important;
}
.dusty-gray--bt-85 {
  border-top: 85px #9c9c9c solid !important;
}
.dusty-gray--br-85 {
  border-right: 85px #9c9c9c solid !important;
}
.dusty-gray--bl-85 {
  border-left: 85px #9c9c9c solid !important;
}
.dusty-gray--bb-85 {
  border-bottom: 85px #9c9c9c solid !important;
}
.dusty-gray--by-85 {
  border-top: 85px #9c9c9c solid !important;
  border-bottom: 85px #9c9c9c solid !important;
}
.dusty-gray--bx-85 {
  border-right: 85px #9c9c9c solid !important;
  border-left: 85px #9c9c9c solid !important;
}
.dusty-gray--ba-86 {
  border: 86px #9c9c9c solid !important;
}
.dusty-gray--bt-86 {
  border-top: 86px #9c9c9c solid !important;
}
.dusty-gray--br-86 {
  border-right: 86px #9c9c9c solid !important;
}
.dusty-gray--bl-86 {
  border-left: 86px #9c9c9c solid !important;
}
.dusty-gray--bb-86 {
  border-bottom: 86px #9c9c9c solid !important;
}
.dusty-gray--by-86 {
  border-top: 86px #9c9c9c solid !important;
  border-bottom: 86px #9c9c9c solid !important;
}
.dusty-gray--bx-86 {
  border-right: 86px #9c9c9c solid !important;
  border-left: 86px #9c9c9c solid !important;
}
.dusty-gray--ba-87 {
  border: 87px #9c9c9c solid !important;
}
.dusty-gray--bt-87 {
  border-top: 87px #9c9c9c solid !important;
}
.dusty-gray--br-87 {
  border-right: 87px #9c9c9c solid !important;
}
.dusty-gray--bl-87 {
  border-left: 87px #9c9c9c solid !important;
}
.dusty-gray--bb-87 {
  border-bottom: 87px #9c9c9c solid !important;
}
.dusty-gray--by-87 {
  border-top: 87px #9c9c9c solid !important;
  border-bottom: 87px #9c9c9c solid !important;
}
.dusty-gray--bx-87 {
  border-right: 87px #9c9c9c solid !important;
  border-left: 87px #9c9c9c solid !important;
}
.dusty-gray--ba-88 {
  border: 88px #9c9c9c solid !important;
}
.dusty-gray--bt-88 {
  border-top: 88px #9c9c9c solid !important;
}
.dusty-gray--br-88 {
  border-right: 88px #9c9c9c solid !important;
}
.dusty-gray--bl-88 {
  border-left: 88px #9c9c9c solid !important;
}
.dusty-gray--bb-88 {
  border-bottom: 88px #9c9c9c solid !important;
}
.dusty-gray--by-88 {
  border-top: 88px #9c9c9c solid !important;
  border-bottom: 88px #9c9c9c solid !important;
}
.dusty-gray--bx-88 {
  border-right: 88px #9c9c9c solid !important;
  border-left: 88px #9c9c9c solid !important;
}
.dusty-gray--ba-89 {
  border: 89px #9c9c9c solid !important;
}
.dusty-gray--bt-89 {
  border-top: 89px #9c9c9c solid !important;
}
.dusty-gray--br-89 {
  border-right: 89px #9c9c9c solid !important;
}
.dusty-gray--bl-89 {
  border-left: 89px #9c9c9c solid !important;
}
.dusty-gray--bb-89 {
  border-bottom: 89px #9c9c9c solid !important;
}
.dusty-gray--by-89 {
  border-top: 89px #9c9c9c solid !important;
  border-bottom: 89px #9c9c9c solid !important;
}
.dusty-gray--bx-89 {
  border-right: 89px #9c9c9c solid !important;
  border-left: 89px #9c9c9c solid !important;
}
.dusty-gray--ba-90 {
  border: 90px #9c9c9c solid !important;
}
.dusty-gray--bt-90 {
  border-top: 90px #9c9c9c solid !important;
}
.dusty-gray--br-90 {
  border-right: 90px #9c9c9c solid !important;
}
.dusty-gray--bl-90 {
  border-left: 90px #9c9c9c solid !important;
}
.dusty-gray--bb-90 {
  border-bottom: 90px #9c9c9c solid !important;
}
.dusty-gray--by-90 {
  border-top: 90px #9c9c9c solid !important;
  border-bottom: 90px #9c9c9c solid !important;
}
.dusty-gray--bx-90 {
  border-right: 90px #9c9c9c solid !important;
  border-left: 90px #9c9c9c solid !important;
}
.dusty-gray--ba-91 {
  border: 91px #9c9c9c solid !important;
}
.dusty-gray--bt-91 {
  border-top: 91px #9c9c9c solid !important;
}
.dusty-gray--br-91 {
  border-right: 91px #9c9c9c solid !important;
}
.dusty-gray--bl-91 {
  border-left: 91px #9c9c9c solid !important;
}
.dusty-gray--bb-91 {
  border-bottom: 91px #9c9c9c solid !important;
}
.dusty-gray--by-91 {
  border-top: 91px #9c9c9c solid !important;
  border-bottom: 91px #9c9c9c solid !important;
}
.dusty-gray--bx-91 {
  border-right: 91px #9c9c9c solid !important;
  border-left: 91px #9c9c9c solid !important;
}
.dusty-gray--ba-92 {
  border: 92px #9c9c9c solid !important;
}
.dusty-gray--bt-92 {
  border-top: 92px #9c9c9c solid !important;
}
.dusty-gray--br-92 {
  border-right: 92px #9c9c9c solid !important;
}
.dusty-gray--bl-92 {
  border-left: 92px #9c9c9c solid !important;
}
.dusty-gray--bb-92 {
  border-bottom: 92px #9c9c9c solid !important;
}
.dusty-gray--by-92 {
  border-top: 92px #9c9c9c solid !important;
  border-bottom: 92px #9c9c9c solid !important;
}
.dusty-gray--bx-92 {
  border-right: 92px #9c9c9c solid !important;
  border-left: 92px #9c9c9c solid !important;
}
.dusty-gray--ba-93 {
  border: 93px #9c9c9c solid !important;
}
.dusty-gray--bt-93 {
  border-top: 93px #9c9c9c solid !important;
}
.dusty-gray--br-93 {
  border-right: 93px #9c9c9c solid !important;
}
.dusty-gray--bl-93 {
  border-left: 93px #9c9c9c solid !important;
}
.dusty-gray--bb-93 {
  border-bottom: 93px #9c9c9c solid !important;
}
.dusty-gray--by-93 {
  border-top: 93px #9c9c9c solid !important;
  border-bottom: 93px #9c9c9c solid !important;
}
.dusty-gray--bx-93 {
  border-right: 93px #9c9c9c solid !important;
  border-left: 93px #9c9c9c solid !important;
}
.dusty-gray--ba-94 {
  border: 94px #9c9c9c solid !important;
}
.dusty-gray--bt-94 {
  border-top: 94px #9c9c9c solid !important;
}
.dusty-gray--br-94 {
  border-right: 94px #9c9c9c solid !important;
}
.dusty-gray--bl-94 {
  border-left: 94px #9c9c9c solid !important;
}
.dusty-gray--bb-94 {
  border-bottom: 94px #9c9c9c solid !important;
}
.dusty-gray--by-94 {
  border-top: 94px #9c9c9c solid !important;
  border-bottom: 94px #9c9c9c solid !important;
}
.dusty-gray--bx-94 {
  border-right: 94px #9c9c9c solid !important;
  border-left: 94px #9c9c9c solid !important;
}
.dusty-gray--ba-95 {
  border: 95px #9c9c9c solid !important;
}
.dusty-gray--bt-95 {
  border-top: 95px #9c9c9c solid !important;
}
.dusty-gray--br-95 {
  border-right: 95px #9c9c9c solid !important;
}
.dusty-gray--bl-95 {
  border-left: 95px #9c9c9c solid !important;
}
.dusty-gray--bb-95 {
  border-bottom: 95px #9c9c9c solid !important;
}
.dusty-gray--by-95 {
  border-top: 95px #9c9c9c solid !important;
  border-bottom: 95px #9c9c9c solid !important;
}
.dusty-gray--bx-95 {
  border-right: 95px #9c9c9c solid !important;
  border-left: 95px #9c9c9c solid !important;
}
.dusty-gray--ba-96 {
  border: 96px #9c9c9c solid !important;
}
.dusty-gray--bt-96 {
  border-top: 96px #9c9c9c solid !important;
}
.dusty-gray--br-96 {
  border-right: 96px #9c9c9c solid !important;
}
.dusty-gray--bl-96 {
  border-left: 96px #9c9c9c solid !important;
}
.dusty-gray--bb-96 {
  border-bottom: 96px #9c9c9c solid !important;
}
.dusty-gray--by-96 {
  border-top: 96px #9c9c9c solid !important;
  border-bottom: 96px #9c9c9c solid !important;
}
.dusty-gray--bx-96 {
  border-right: 96px #9c9c9c solid !important;
  border-left: 96px #9c9c9c solid !important;
}
.dusty-gray--ba-97 {
  border: 97px #9c9c9c solid !important;
}
.dusty-gray--bt-97 {
  border-top: 97px #9c9c9c solid !important;
}
.dusty-gray--br-97 {
  border-right: 97px #9c9c9c solid !important;
}
.dusty-gray--bl-97 {
  border-left: 97px #9c9c9c solid !important;
}
.dusty-gray--bb-97 {
  border-bottom: 97px #9c9c9c solid !important;
}
.dusty-gray--by-97 {
  border-top: 97px #9c9c9c solid !important;
  border-bottom: 97px #9c9c9c solid !important;
}
.dusty-gray--bx-97 {
  border-right: 97px #9c9c9c solid !important;
  border-left: 97px #9c9c9c solid !important;
}
.dusty-gray--ba-98 {
  border: 98px #9c9c9c solid !important;
}
.dusty-gray--bt-98 {
  border-top: 98px #9c9c9c solid !important;
}
.dusty-gray--br-98 {
  border-right: 98px #9c9c9c solid !important;
}
.dusty-gray--bl-98 {
  border-left: 98px #9c9c9c solid !important;
}
.dusty-gray--bb-98 {
  border-bottom: 98px #9c9c9c solid !important;
}
.dusty-gray--by-98 {
  border-top: 98px #9c9c9c solid !important;
  border-bottom: 98px #9c9c9c solid !important;
}
.dusty-gray--bx-98 {
  border-right: 98px #9c9c9c solid !important;
  border-left: 98px #9c9c9c solid !important;
}
.dusty-gray--ba-99 {
  border: 99px #9c9c9c solid !important;
}
.dusty-gray--bt-99 {
  border-top: 99px #9c9c9c solid !important;
}
.dusty-gray--br-99 {
  border-right: 99px #9c9c9c solid !important;
}
.dusty-gray--bl-99 {
  border-left: 99px #9c9c9c solid !important;
}
.dusty-gray--bb-99 {
  border-bottom: 99px #9c9c9c solid !important;
}
.dusty-gray--by-99 {
  border-top: 99px #9c9c9c solid !important;
  border-bottom: 99px #9c9c9c solid !important;
}
.dusty-gray--bx-99 {
  border-right: 99px #9c9c9c solid !important;
  border-left: 99px #9c9c9c solid !important;
}
.dusty-gray--ba-100 {
  border: 100px #9c9c9c solid !important;
}
.dusty-gray--bt-100 {
  border-top: 100px #9c9c9c solid !important;
}
.dusty-gray--br-100 {
  border-right: 100px #9c9c9c solid !important;
}
.dusty-gray--bl-100 {
  border-left: 100px #9c9c9c solid !important;
}
.dusty-gray--bb-100 {
  border-bottom: 100px #9c9c9c solid !important;
}
.dusty-gray--by-100 {
  border-top: 100px #9c9c9c solid !important;
  border-bottom: 100px #9c9c9c solid !important;
}
.dusty-gray--bx-100 {
  border-right: 100px #9c9c9c solid !important;
  border-left: 100px #9c9c9c solid !important;
}
.gallery--ba-1 {
  border: 1px #ebebeb solid !important;
}
.gallery--bt-1 {
  border-top: 1px #ebebeb solid !important;
}
.gallery--br-1 {
  border-right: 1px #ebebeb solid !important;
}
.gallery--bl-1 {
  border-left: 1px #ebebeb solid !important;
}
.gallery--bb-1 {
  border-bottom: 1px #ebebeb solid !important;
}
.gallery--by-1 {
  border-top: 1px #ebebeb solid !important;
  border-bottom: 1px #ebebeb solid !important;
}
.gallery--bx-1 {
  border-right: 1px #ebebeb solid !important;
  border-left: 1px #ebebeb solid !important;
}
.gallery--ba-2 {
  border: 2px #ebebeb solid !important;
}
.gallery--bt-2 {
  border-top: 2px #ebebeb solid !important;
}
.gallery--br-2 {
  border-right: 2px #ebebeb solid !important;
}
.gallery--bl-2 {
  border-left: 2px #ebebeb solid !important;
}
.gallery--bb-2 {
  border-bottom: 2px #ebebeb solid !important;
}
.gallery--by-2 {
  border-top: 2px #ebebeb solid !important;
  border-bottom: 2px #ebebeb solid !important;
}
.gallery--bx-2 {
  border-right: 2px #ebebeb solid !important;
  border-left: 2px #ebebeb solid !important;
}
.gallery--ba-3 {
  border: 3px #ebebeb solid !important;
}
.gallery--bt-3 {
  border-top: 3px #ebebeb solid !important;
}
.gallery--br-3 {
  border-right: 3px #ebebeb solid !important;
}
.gallery--bl-3 {
  border-left: 3px #ebebeb solid !important;
}
.gallery--bb-3 {
  border-bottom: 3px #ebebeb solid !important;
}
.gallery--by-3 {
  border-top: 3px #ebebeb solid !important;
  border-bottom: 3px #ebebeb solid !important;
}
.gallery--bx-3 {
  border-right: 3px #ebebeb solid !important;
  border-left: 3px #ebebeb solid !important;
}
.gallery--ba-4 {
  border: 4px #ebebeb solid !important;
}
.gallery--bt-4 {
  border-top: 4px #ebebeb solid !important;
}
.gallery--br-4 {
  border-right: 4px #ebebeb solid !important;
}
.gallery--bl-4 {
  border-left: 4px #ebebeb solid !important;
}
.gallery--bb-4 {
  border-bottom: 4px #ebebeb solid !important;
}
.gallery--by-4 {
  border-top: 4px #ebebeb solid !important;
  border-bottom: 4px #ebebeb solid !important;
}
.gallery--bx-4 {
  border-right: 4px #ebebeb solid !important;
  border-left: 4px #ebebeb solid !important;
}
.gallery--ba-5 {
  border: 5px #ebebeb solid !important;
}
.gallery--bt-5 {
  border-top: 5px #ebebeb solid !important;
}
.gallery--br-5 {
  border-right: 5px #ebebeb solid !important;
}
.gallery--bl-5 {
  border-left: 5px #ebebeb solid !important;
}
.gallery--bb-5 {
  border-bottom: 5px #ebebeb solid !important;
}
.gallery--by-5 {
  border-top: 5px #ebebeb solid !important;
  border-bottom: 5px #ebebeb solid !important;
}
.gallery--bx-5 {
  border-right: 5px #ebebeb solid !important;
  border-left: 5px #ebebeb solid !important;
}
.gallery--ba-6 {
  border: 6px #ebebeb solid !important;
}
.gallery--bt-6 {
  border-top: 6px #ebebeb solid !important;
}
.gallery--br-6 {
  border-right: 6px #ebebeb solid !important;
}
.gallery--bl-6 {
  border-left: 6px #ebebeb solid !important;
}
.gallery--bb-6 {
  border-bottom: 6px #ebebeb solid !important;
}
.gallery--by-6 {
  border-top: 6px #ebebeb solid !important;
  border-bottom: 6px #ebebeb solid !important;
}
.gallery--bx-6 {
  border-right: 6px #ebebeb solid !important;
  border-left: 6px #ebebeb solid !important;
}
.gallery--ba-7 {
  border: 7px #ebebeb solid !important;
}
.gallery--bt-7 {
  border-top: 7px #ebebeb solid !important;
}
.gallery--br-7 {
  border-right: 7px #ebebeb solid !important;
}
.gallery--bl-7 {
  border-left: 7px #ebebeb solid !important;
}
.gallery--bb-7 {
  border-bottom: 7px #ebebeb solid !important;
}
.gallery--by-7 {
  border-top: 7px #ebebeb solid !important;
  border-bottom: 7px #ebebeb solid !important;
}
.gallery--bx-7 {
  border-right: 7px #ebebeb solid !important;
  border-left: 7px #ebebeb solid !important;
}
.gallery--ba-8 {
  border: 8px #ebebeb solid !important;
}
.gallery--bt-8 {
  border-top: 8px #ebebeb solid !important;
}
.gallery--br-8 {
  border-right: 8px #ebebeb solid !important;
}
.gallery--bl-8 {
  border-left: 8px #ebebeb solid !important;
}
.gallery--bb-8 {
  border-bottom: 8px #ebebeb solid !important;
}
.gallery--by-8 {
  border-top: 8px #ebebeb solid !important;
  border-bottom: 8px #ebebeb solid !important;
}
.gallery--bx-8 {
  border-right: 8px #ebebeb solid !important;
  border-left: 8px #ebebeb solid !important;
}
.gallery--ba-9 {
  border: 9px #ebebeb solid !important;
}
.gallery--bt-9 {
  border-top: 9px #ebebeb solid !important;
}
.gallery--br-9 {
  border-right: 9px #ebebeb solid !important;
}
.gallery--bl-9 {
  border-left: 9px #ebebeb solid !important;
}
.gallery--bb-9 {
  border-bottom: 9px #ebebeb solid !important;
}
.gallery--by-9 {
  border-top: 9px #ebebeb solid !important;
  border-bottom: 9px #ebebeb solid !important;
}
.gallery--bx-9 {
  border-right: 9px #ebebeb solid !important;
  border-left: 9px #ebebeb solid !important;
}
.gallery--ba-10 {
  border: 10px #ebebeb solid !important;
}
.gallery--bt-10 {
  border-top: 10px #ebebeb solid !important;
}
.gallery--br-10 {
  border-right: 10px #ebebeb solid !important;
}
.gallery--bl-10 {
  border-left: 10px #ebebeb solid !important;
}
.gallery--bb-10 {
  border-bottom: 10px #ebebeb solid !important;
}
.gallery--by-10 {
  border-top: 10px #ebebeb solid !important;
  border-bottom: 10px #ebebeb solid !important;
}
.gallery--bx-10 {
  border-right: 10px #ebebeb solid !important;
  border-left: 10px #ebebeb solid !important;
}
.gallery--ba-11 {
  border: 11px #ebebeb solid !important;
}
.gallery--bt-11 {
  border-top: 11px #ebebeb solid !important;
}
.gallery--br-11 {
  border-right: 11px #ebebeb solid !important;
}
.gallery--bl-11 {
  border-left: 11px #ebebeb solid !important;
}
.gallery--bb-11 {
  border-bottom: 11px #ebebeb solid !important;
}
.gallery--by-11 {
  border-top: 11px #ebebeb solid !important;
  border-bottom: 11px #ebebeb solid !important;
}
.gallery--bx-11 {
  border-right: 11px #ebebeb solid !important;
  border-left: 11px #ebebeb solid !important;
}
.gallery--ba-12 {
  border: 12px #ebebeb solid !important;
}
.gallery--bt-12 {
  border-top: 12px #ebebeb solid !important;
}
.gallery--br-12 {
  border-right: 12px #ebebeb solid !important;
}
.gallery--bl-12 {
  border-left: 12px #ebebeb solid !important;
}
.gallery--bb-12 {
  border-bottom: 12px #ebebeb solid !important;
}
.gallery--by-12 {
  border-top: 12px #ebebeb solid !important;
  border-bottom: 12px #ebebeb solid !important;
}
.gallery--bx-12 {
  border-right: 12px #ebebeb solid !important;
  border-left: 12px #ebebeb solid !important;
}
.gallery--ba-13 {
  border: 13px #ebebeb solid !important;
}
.gallery--bt-13 {
  border-top: 13px #ebebeb solid !important;
}
.gallery--br-13 {
  border-right: 13px #ebebeb solid !important;
}
.gallery--bl-13 {
  border-left: 13px #ebebeb solid !important;
}
.gallery--bb-13 {
  border-bottom: 13px #ebebeb solid !important;
}
.gallery--by-13 {
  border-top: 13px #ebebeb solid !important;
  border-bottom: 13px #ebebeb solid !important;
}
.gallery--bx-13 {
  border-right: 13px #ebebeb solid !important;
  border-left: 13px #ebebeb solid !important;
}
.gallery--ba-14 {
  border: 14px #ebebeb solid !important;
}
.gallery--bt-14 {
  border-top: 14px #ebebeb solid !important;
}
.gallery--br-14 {
  border-right: 14px #ebebeb solid !important;
}
.gallery--bl-14 {
  border-left: 14px #ebebeb solid !important;
}
.gallery--bb-14 {
  border-bottom: 14px #ebebeb solid !important;
}
.gallery--by-14 {
  border-top: 14px #ebebeb solid !important;
  border-bottom: 14px #ebebeb solid !important;
}
.gallery--bx-14 {
  border-right: 14px #ebebeb solid !important;
  border-left: 14px #ebebeb solid !important;
}
.gallery--ba-15 {
  border: 15px #ebebeb solid !important;
}
.gallery--bt-15 {
  border-top: 15px #ebebeb solid !important;
}
.gallery--br-15 {
  border-right: 15px #ebebeb solid !important;
}
.gallery--bl-15 {
  border-left: 15px #ebebeb solid !important;
}
.gallery--bb-15 {
  border-bottom: 15px #ebebeb solid !important;
}
.gallery--by-15 {
  border-top: 15px #ebebeb solid !important;
  border-bottom: 15px #ebebeb solid !important;
}
.gallery--bx-15 {
  border-right: 15px #ebebeb solid !important;
  border-left: 15px #ebebeb solid !important;
}
.gallery--ba-16 {
  border: 16px #ebebeb solid !important;
}
.gallery--bt-16 {
  border-top: 16px #ebebeb solid !important;
}
.gallery--br-16 {
  border-right: 16px #ebebeb solid !important;
}
.gallery--bl-16 {
  border-left: 16px #ebebeb solid !important;
}
.gallery--bb-16 {
  border-bottom: 16px #ebebeb solid !important;
}
.gallery--by-16 {
  border-top: 16px #ebebeb solid !important;
  border-bottom: 16px #ebebeb solid !important;
}
.gallery--bx-16 {
  border-right: 16px #ebebeb solid !important;
  border-left: 16px #ebebeb solid !important;
}
.gallery--ba-17 {
  border: 17px #ebebeb solid !important;
}
.gallery--bt-17 {
  border-top: 17px #ebebeb solid !important;
}
.gallery--br-17 {
  border-right: 17px #ebebeb solid !important;
}
.gallery--bl-17 {
  border-left: 17px #ebebeb solid !important;
}
.gallery--bb-17 {
  border-bottom: 17px #ebebeb solid !important;
}
.gallery--by-17 {
  border-top: 17px #ebebeb solid !important;
  border-bottom: 17px #ebebeb solid !important;
}
.gallery--bx-17 {
  border-right: 17px #ebebeb solid !important;
  border-left: 17px #ebebeb solid !important;
}
.gallery--ba-18 {
  border: 18px #ebebeb solid !important;
}
.gallery--bt-18 {
  border-top: 18px #ebebeb solid !important;
}
.gallery--br-18 {
  border-right: 18px #ebebeb solid !important;
}
.gallery--bl-18 {
  border-left: 18px #ebebeb solid !important;
}
.gallery--bb-18 {
  border-bottom: 18px #ebebeb solid !important;
}
.gallery--by-18 {
  border-top: 18px #ebebeb solid !important;
  border-bottom: 18px #ebebeb solid !important;
}
.gallery--bx-18 {
  border-right: 18px #ebebeb solid !important;
  border-left: 18px #ebebeb solid !important;
}
.gallery--ba-19 {
  border: 19px #ebebeb solid !important;
}
.gallery--bt-19 {
  border-top: 19px #ebebeb solid !important;
}
.gallery--br-19 {
  border-right: 19px #ebebeb solid !important;
}
.gallery--bl-19 {
  border-left: 19px #ebebeb solid !important;
}
.gallery--bb-19 {
  border-bottom: 19px #ebebeb solid !important;
}
.gallery--by-19 {
  border-top: 19px #ebebeb solid !important;
  border-bottom: 19px #ebebeb solid !important;
}
.gallery--bx-19 {
  border-right: 19px #ebebeb solid !important;
  border-left: 19px #ebebeb solid !important;
}
.gallery--ba-20 {
  border: 20px #ebebeb solid !important;
}
.gallery--bt-20 {
  border-top: 20px #ebebeb solid !important;
}
.gallery--br-20 {
  border-right: 20px #ebebeb solid !important;
}
.gallery--bl-20 {
  border-left: 20px #ebebeb solid !important;
}
.gallery--bb-20 {
  border-bottom: 20px #ebebeb solid !important;
}
.gallery--by-20 {
  border-top: 20px #ebebeb solid !important;
  border-bottom: 20px #ebebeb solid !important;
}
.gallery--bx-20 {
  border-right: 20px #ebebeb solid !important;
  border-left: 20px #ebebeb solid !important;
}
.gallery--ba-21 {
  border: 21px #ebebeb solid !important;
}
.gallery--bt-21 {
  border-top: 21px #ebebeb solid !important;
}
.gallery--br-21 {
  border-right: 21px #ebebeb solid !important;
}
.gallery--bl-21 {
  border-left: 21px #ebebeb solid !important;
}
.gallery--bb-21 {
  border-bottom: 21px #ebebeb solid !important;
}
.gallery--by-21 {
  border-top: 21px #ebebeb solid !important;
  border-bottom: 21px #ebebeb solid !important;
}
.gallery--bx-21 {
  border-right: 21px #ebebeb solid !important;
  border-left: 21px #ebebeb solid !important;
}
.gallery--ba-22 {
  border: 22px #ebebeb solid !important;
}
.gallery--bt-22 {
  border-top: 22px #ebebeb solid !important;
}
.gallery--br-22 {
  border-right: 22px #ebebeb solid !important;
}
.gallery--bl-22 {
  border-left: 22px #ebebeb solid !important;
}
.gallery--bb-22 {
  border-bottom: 22px #ebebeb solid !important;
}
.gallery--by-22 {
  border-top: 22px #ebebeb solid !important;
  border-bottom: 22px #ebebeb solid !important;
}
.gallery--bx-22 {
  border-right: 22px #ebebeb solid !important;
  border-left: 22px #ebebeb solid !important;
}
.gallery--ba-23 {
  border: 23px #ebebeb solid !important;
}
.gallery--bt-23 {
  border-top: 23px #ebebeb solid !important;
}
.gallery--br-23 {
  border-right: 23px #ebebeb solid !important;
}
.gallery--bl-23 {
  border-left: 23px #ebebeb solid !important;
}
.gallery--bb-23 {
  border-bottom: 23px #ebebeb solid !important;
}
.gallery--by-23 {
  border-top: 23px #ebebeb solid !important;
  border-bottom: 23px #ebebeb solid !important;
}
.gallery--bx-23 {
  border-right: 23px #ebebeb solid !important;
  border-left: 23px #ebebeb solid !important;
}
.gallery--ba-24 {
  border: 24px #ebebeb solid !important;
}
.gallery--bt-24 {
  border-top: 24px #ebebeb solid !important;
}
.gallery--br-24 {
  border-right: 24px #ebebeb solid !important;
}
.gallery--bl-24 {
  border-left: 24px #ebebeb solid !important;
}
.gallery--bb-24 {
  border-bottom: 24px #ebebeb solid !important;
}
.gallery--by-24 {
  border-top: 24px #ebebeb solid !important;
  border-bottom: 24px #ebebeb solid !important;
}
.gallery--bx-24 {
  border-right: 24px #ebebeb solid !important;
  border-left: 24px #ebebeb solid !important;
}
.gallery--ba-25 {
  border: 25px #ebebeb solid !important;
}
.gallery--bt-25 {
  border-top: 25px #ebebeb solid !important;
}
.gallery--br-25 {
  border-right: 25px #ebebeb solid !important;
}
.gallery--bl-25 {
  border-left: 25px #ebebeb solid !important;
}
.gallery--bb-25 {
  border-bottom: 25px #ebebeb solid !important;
}
.gallery--by-25 {
  border-top: 25px #ebebeb solid !important;
  border-bottom: 25px #ebebeb solid !important;
}
.gallery--bx-25 {
  border-right: 25px #ebebeb solid !important;
  border-left: 25px #ebebeb solid !important;
}
.gallery--ba-26 {
  border: 26px #ebebeb solid !important;
}
.gallery--bt-26 {
  border-top: 26px #ebebeb solid !important;
}
.gallery--br-26 {
  border-right: 26px #ebebeb solid !important;
}
.gallery--bl-26 {
  border-left: 26px #ebebeb solid !important;
}
.gallery--bb-26 {
  border-bottom: 26px #ebebeb solid !important;
}
.gallery--by-26 {
  border-top: 26px #ebebeb solid !important;
  border-bottom: 26px #ebebeb solid !important;
}
.gallery--bx-26 {
  border-right: 26px #ebebeb solid !important;
  border-left: 26px #ebebeb solid !important;
}
.gallery--ba-27 {
  border: 27px #ebebeb solid !important;
}
.gallery--bt-27 {
  border-top: 27px #ebebeb solid !important;
}
.gallery--br-27 {
  border-right: 27px #ebebeb solid !important;
}
.gallery--bl-27 {
  border-left: 27px #ebebeb solid !important;
}
.gallery--bb-27 {
  border-bottom: 27px #ebebeb solid !important;
}
.gallery--by-27 {
  border-top: 27px #ebebeb solid !important;
  border-bottom: 27px #ebebeb solid !important;
}
.gallery--bx-27 {
  border-right: 27px #ebebeb solid !important;
  border-left: 27px #ebebeb solid !important;
}
.gallery--ba-28 {
  border: 28px #ebebeb solid !important;
}
.gallery--bt-28 {
  border-top: 28px #ebebeb solid !important;
}
.gallery--br-28 {
  border-right: 28px #ebebeb solid !important;
}
.gallery--bl-28 {
  border-left: 28px #ebebeb solid !important;
}
.gallery--bb-28 {
  border-bottom: 28px #ebebeb solid !important;
}
.gallery--by-28 {
  border-top: 28px #ebebeb solid !important;
  border-bottom: 28px #ebebeb solid !important;
}
.gallery--bx-28 {
  border-right: 28px #ebebeb solid !important;
  border-left: 28px #ebebeb solid !important;
}
.gallery--ba-29 {
  border: 29px #ebebeb solid !important;
}
.gallery--bt-29 {
  border-top: 29px #ebebeb solid !important;
}
.gallery--br-29 {
  border-right: 29px #ebebeb solid !important;
}
.gallery--bl-29 {
  border-left: 29px #ebebeb solid !important;
}
.gallery--bb-29 {
  border-bottom: 29px #ebebeb solid !important;
}
.gallery--by-29 {
  border-top: 29px #ebebeb solid !important;
  border-bottom: 29px #ebebeb solid !important;
}
.gallery--bx-29 {
  border-right: 29px #ebebeb solid !important;
  border-left: 29px #ebebeb solid !important;
}
.gallery--ba-30 {
  border: 30px #ebebeb solid !important;
}
.gallery--bt-30 {
  border-top: 30px #ebebeb solid !important;
}
.gallery--br-30 {
  border-right: 30px #ebebeb solid !important;
}
.gallery--bl-30 {
  border-left: 30px #ebebeb solid !important;
}
.gallery--bb-30 {
  border-bottom: 30px #ebebeb solid !important;
}
.gallery--by-30 {
  border-top: 30px #ebebeb solid !important;
  border-bottom: 30px #ebebeb solid !important;
}
.gallery--bx-30 {
  border-right: 30px #ebebeb solid !important;
  border-left: 30px #ebebeb solid !important;
}
.gallery--ba-31 {
  border: 31px #ebebeb solid !important;
}
.gallery--bt-31 {
  border-top: 31px #ebebeb solid !important;
}
.gallery--br-31 {
  border-right: 31px #ebebeb solid !important;
}
.gallery--bl-31 {
  border-left: 31px #ebebeb solid !important;
}
.gallery--bb-31 {
  border-bottom: 31px #ebebeb solid !important;
}
.gallery--by-31 {
  border-top: 31px #ebebeb solid !important;
  border-bottom: 31px #ebebeb solid !important;
}
.gallery--bx-31 {
  border-right: 31px #ebebeb solid !important;
  border-left: 31px #ebebeb solid !important;
}
.gallery--ba-32 {
  border: 32px #ebebeb solid !important;
}
.gallery--bt-32 {
  border-top: 32px #ebebeb solid !important;
}
.gallery--br-32 {
  border-right: 32px #ebebeb solid !important;
}
.gallery--bl-32 {
  border-left: 32px #ebebeb solid !important;
}
.gallery--bb-32 {
  border-bottom: 32px #ebebeb solid !important;
}
.gallery--by-32 {
  border-top: 32px #ebebeb solid !important;
  border-bottom: 32px #ebebeb solid !important;
}
.gallery--bx-32 {
  border-right: 32px #ebebeb solid !important;
  border-left: 32px #ebebeb solid !important;
}
.gallery--ba-33 {
  border: 33px #ebebeb solid !important;
}
.gallery--bt-33 {
  border-top: 33px #ebebeb solid !important;
}
.gallery--br-33 {
  border-right: 33px #ebebeb solid !important;
}
.gallery--bl-33 {
  border-left: 33px #ebebeb solid !important;
}
.gallery--bb-33 {
  border-bottom: 33px #ebebeb solid !important;
}
.gallery--by-33 {
  border-top: 33px #ebebeb solid !important;
  border-bottom: 33px #ebebeb solid !important;
}
.gallery--bx-33 {
  border-right: 33px #ebebeb solid !important;
  border-left: 33px #ebebeb solid !important;
}
.gallery--ba-34 {
  border: 34px #ebebeb solid !important;
}
.gallery--bt-34 {
  border-top: 34px #ebebeb solid !important;
}
.gallery--br-34 {
  border-right: 34px #ebebeb solid !important;
}
.gallery--bl-34 {
  border-left: 34px #ebebeb solid !important;
}
.gallery--bb-34 {
  border-bottom: 34px #ebebeb solid !important;
}
.gallery--by-34 {
  border-top: 34px #ebebeb solid !important;
  border-bottom: 34px #ebebeb solid !important;
}
.gallery--bx-34 {
  border-right: 34px #ebebeb solid !important;
  border-left: 34px #ebebeb solid !important;
}
.gallery--ba-35 {
  border: 35px #ebebeb solid !important;
}
.gallery--bt-35 {
  border-top: 35px #ebebeb solid !important;
}
.gallery--br-35 {
  border-right: 35px #ebebeb solid !important;
}
.gallery--bl-35 {
  border-left: 35px #ebebeb solid !important;
}
.gallery--bb-35 {
  border-bottom: 35px #ebebeb solid !important;
}
.gallery--by-35 {
  border-top: 35px #ebebeb solid !important;
  border-bottom: 35px #ebebeb solid !important;
}
.gallery--bx-35 {
  border-right: 35px #ebebeb solid !important;
  border-left: 35px #ebebeb solid !important;
}
.gallery--ba-36 {
  border: 36px #ebebeb solid !important;
}
.gallery--bt-36 {
  border-top: 36px #ebebeb solid !important;
}
.gallery--br-36 {
  border-right: 36px #ebebeb solid !important;
}
.gallery--bl-36 {
  border-left: 36px #ebebeb solid !important;
}
.gallery--bb-36 {
  border-bottom: 36px #ebebeb solid !important;
}
.gallery--by-36 {
  border-top: 36px #ebebeb solid !important;
  border-bottom: 36px #ebebeb solid !important;
}
.gallery--bx-36 {
  border-right: 36px #ebebeb solid !important;
  border-left: 36px #ebebeb solid !important;
}
.gallery--ba-37 {
  border: 37px #ebebeb solid !important;
}
.gallery--bt-37 {
  border-top: 37px #ebebeb solid !important;
}
.gallery--br-37 {
  border-right: 37px #ebebeb solid !important;
}
.gallery--bl-37 {
  border-left: 37px #ebebeb solid !important;
}
.gallery--bb-37 {
  border-bottom: 37px #ebebeb solid !important;
}
.gallery--by-37 {
  border-top: 37px #ebebeb solid !important;
  border-bottom: 37px #ebebeb solid !important;
}
.gallery--bx-37 {
  border-right: 37px #ebebeb solid !important;
  border-left: 37px #ebebeb solid !important;
}
.gallery--ba-38 {
  border: 38px #ebebeb solid !important;
}
.gallery--bt-38 {
  border-top: 38px #ebebeb solid !important;
}
.gallery--br-38 {
  border-right: 38px #ebebeb solid !important;
}
.gallery--bl-38 {
  border-left: 38px #ebebeb solid !important;
}
.gallery--bb-38 {
  border-bottom: 38px #ebebeb solid !important;
}
.gallery--by-38 {
  border-top: 38px #ebebeb solid !important;
  border-bottom: 38px #ebebeb solid !important;
}
.gallery--bx-38 {
  border-right: 38px #ebebeb solid !important;
  border-left: 38px #ebebeb solid !important;
}
.gallery--ba-39 {
  border: 39px #ebebeb solid !important;
}
.gallery--bt-39 {
  border-top: 39px #ebebeb solid !important;
}
.gallery--br-39 {
  border-right: 39px #ebebeb solid !important;
}
.gallery--bl-39 {
  border-left: 39px #ebebeb solid !important;
}
.gallery--bb-39 {
  border-bottom: 39px #ebebeb solid !important;
}
.gallery--by-39 {
  border-top: 39px #ebebeb solid !important;
  border-bottom: 39px #ebebeb solid !important;
}
.gallery--bx-39 {
  border-right: 39px #ebebeb solid !important;
  border-left: 39px #ebebeb solid !important;
}
.gallery--ba-40 {
  border: 40px #ebebeb solid !important;
}
.gallery--bt-40 {
  border-top: 40px #ebebeb solid !important;
}
.gallery--br-40 {
  border-right: 40px #ebebeb solid !important;
}
.gallery--bl-40 {
  border-left: 40px #ebebeb solid !important;
}
.gallery--bb-40 {
  border-bottom: 40px #ebebeb solid !important;
}
.gallery--by-40 {
  border-top: 40px #ebebeb solid !important;
  border-bottom: 40px #ebebeb solid !important;
}
.gallery--bx-40 {
  border-right: 40px #ebebeb solid !important;
  border-left: 40px #ebebeb solid !important;
}
.gallery--ba-41 {
  border: 41px #ebebeb solid !important;
}
.gallery--bt-41 {
  border-top: 41px #ebebeb solid !important;
}
.gallery--br-41 {
  border-right: 41px #ebebeb solid !important;
}
.gallery--bl-41 {
  border-left: 41px #ebebeb solid !important;
}
.gallery--bb-41 {
  border-bottom: 41px #ebebeb solid !important;
}
.gallery--by-41 {
  border-top: 41px #ebebeb solid !important;
  border-bottom: 41px #ebebeb solid !important;
}
.gallery--bx-41 {
  border-right: 41px #ebebeb solid !important;
  border-left: 41px #ebebeb solid !important;
}
.gallery--ba-42 {
  border: 42px #ebebeb solid !important;
}
.gallery--bt-42 {
  border-top: 42px #ebebeb solid !important;
}
.gallery--br-42 {
  border-right: 42px #ebebeb solid !important;
}
.gallery--bl-42 {
  border-left: 42px #ebebeb solid !important;
}
.gallery--bb-42 {
  border-bottom: 42px #ebebeb solid !important;
}
.gallery--by-42 {
  border-top: 42px #ebebeb solid !important;
  border-bottom: 42px #ebebeb solid !important;
}
.gallery--bx-42 {
  border-right: 42px #ebebeb solid !important;
  border-left: 42px #ebebeb solid !important;
}
.gallery--ba-43 {
  border: 43px #ebebeb solid !important;
}
.gallery--bt-43 {
  border-top: 43px #ebebeb solid !important;
}
.gallery--br-43 {
  border-right: 43px #ebebeb solid !important;
}
.gallery--bl-43 {
  border-left: 43px #ebebeb solid !important;
}
.gallery--bb-43 {
  border-bottom: 43px #ebebeb solid !important;
}
.gallery--by-43 {
  border-top: 43px #ebebeb solid !important;
  border-bottom: 43px #ebebeb solid !important;
}
.gallery--bx-43 {
  border-right: 43px #ebebeb solid !important;
  border-left: 43px #ebebeb solid !important;
}
.gallery--ba-44 {
  border: 44px #ebebeb solid !important;
}
.gallery--bt-44 {
  border-top: 44px #ebebeb solid !important;
}
.gallery--br-44 {
  border-right: 44px #ebebeb solid !important;
}
.gallery--bl-44 {
  border-left: 44px #ebebeb solid !important;
}
.gallery--bb-44 {
  border-bottom: 44px #ebebeb solid !important;
}
.gallery--by-44 {
  border-top: 44px #ebebeb solid !important;
  border-bottom: 44px #ebebeb solid !important;
}
.gallery--bx-44 {
  border-right: 44px #ebebeb solid !important;
  border-left: 44px #ebebeb solid !important;
}
.gallery--ba-45 {
  border: 45px #ebebeb solid !important;
}
.gallery--bt-45 {
  border-top: 45px #ebebeb solid !important;
}
.gallery--br-45 {
  border-right: 45px #ebebeb solid !important;
}
.gallery--bl-45 {
  border-left: 45px #ebebeb solid !important;
}
.gallery--bb-45 {
  border-bottom: 45px #ebebeb solid !important;
}
.gallery--by-45 {
  border-top: 45px #ebebeb solid !important;
  border-bottom: 45px #ebebeb solid !important;
}
.gallery--bx-45 {
  border-right: 45px #ebebeb solid !important;
  border-left: 45px #ebebeb solid !important;
}
.gallery--ba-46 {
  border: 46px #ebebeb solid !important;
}
.gallery--bt-46 {
  border-top: 46px #ebebeb solid !important;
}
.gallery--br-46 {
  border-right: 46px #ebebeb solid !important;
}
.gallery--bl-46 {
  border-left: 46px #ebebeb solid !important;
}
.gallery--bb-46 {
  border-bottom: 46px #ebebeb solid !important;
}
.gallery--by-46 {
  border-top: 46px #ebebeb solid !important;
  border-bottom: 46px #ebebeb solid !important;
}
.gallery--bx-46 {
  border-right: 46px #ebebeb solid !important;
  border-left: 46px #ebebeb solid !important;
}
.gallery--ba-47 {
  border: 47px #ebebeb solid !important;
}
.gallery--bt-47 {
  border-top: 47px #ebebeb solid !important;
}
.gallery--br-47 {
  border-right: 47px #ebebeb solid !important;
}
.gallery--bl-47 {
  border-left: 47px #ebebeb solid !important;
}
.gallery--bb-47 {
  border-bottom: 47px #ebebeb solid !important;
}
.gallery--by-47 {
  border-top: 47px #ebebeb solid !important;
  border-bottom: 47px #ebebeb solid !important;
}
.gallery--bx-47 {
  border-right: 47px #ebebeb solid !important;
  border-left: 47px #ebebeb solid !important;
}
.gallery--ba-48 {
  border: 48px #ebebeb solid !important;
}
.gallery--bt-48 {
  border-top: 48px #ebebeb solid !important;
}
.gallery--br-48 {
  border-right: 48px #ebebeb solid !important;
}
.gallery--bl-48 {
  border-left: 48px #ebebeb solid !important;
}
.gallery--bb-48 {
  border-bottom: 48px #ebebeb solid !important;
}
.gallery--by-48 {
  border-top: 48px #ebebeb solid !important;
  border-bottom: 48px #ebebeb solid !important;
}
.gallery--bx-48 {
  border-right: 48px #ebebeb solid !important;
  border-left: 48px #ebebeb solid !important;
}
.gallery--ba-49 {
  border: 49px #ebebeb solid !important;
}
.gallery--bt-49 {
  border-top: 49px #ebebeb solid !important;
}
.gallery--br-49 {
  border-right: 49px #ebebeb solid !important;
}
.gallery--bl-49 {
  border-left: 49px #ebebeb solid !important;
}
.gallery--bb-49 {
  border-bottom: 49px #ebebeb solid !important;
}
.gallery--by-49 {
  border-top: 49px #ebebeb solid !important;
  border-bottom: 49px #ebebeb solid !important;
}
.gallery--bx-49 {
  border-right: 49px #ebebeb solid !important;
  border-left: 49px #ebebeb solid !important;
}
.gallery--ba-50 {
  border: 50px #ebebeb solid !important;
}
.gallery--bt-50 {
  border-top: 50px #ebebeb solid !important;
}
.gallery--br-50 {
  border-right: 50px #ebebeb solid !important;
}
.gallery--bl-50 {
  border-left: 50px #ebebeb solid !important;
}
.gallery--bb-50 {
  border-bottom: 50px #ebebeb solid !important;
}
.gallery--by-50 {
  border-top: 50px #ebebeb solid !important;
  border-bottom: 50px #ebebeb solid !important;
}
.gallery--bx-50 {
  border-right: 50px #ebebeb solid !important;
  border-left: 50px #ebebeb solid !important;
}
.gallery--ba-51 {
  border: 51px #ebebeb solid !important;
}
.gallery--bt-51 {
  border-top: 51px #ebebeb solid !important;
}
.gallery--br-51 {
  border-right: 51px #ebebeb solid !important;
}
.gallery--bl-51 {
  border-left: 51px #ebebeb solid !important;
}
.gallery--bb-51 {
  border-bottom: 51px #ebebeb solid !important;
}
.gallery--by-51 {
  border-top: 51px #ebebeb solid !important;
  border-bottom: 51px #ebebeb solid !important;
}
.gallery--bx-51 {
  border-right: 51px #ebebeb solid !important;
  border-left: 51px #ebebeb solid !important;
}
.gallery--ba-52 {
  border: 52px #ebebeb solid !important;
}
.gallery--bt-52 {
  border-top: 52px #ebebeb solid !important;
}
.gallery--br-52 {
  border-right: 52px #ebebeb solid !important;
}
.gallery--bl-52 {
  border-left: 52px #ebebeb solid !important;
}
.gallery--bb-52 {
  border-bottom: 52px #ebebeb solid !important;
}
.gallery--by-52 {
  border-top: 52px #ebebeb solid !important;
  border-bottom: 52px #ebebeb solid !important;
}
.gallery--bx-52 {
  border-right: 52px #ebebeb solid !important;
  border-left: 52px #ebebeb solid !important;
}
.gallery--ba-53 {
  border: 53px #ebebeb solid !important;
}
.gallery--bt-53 {
  border-top: 53px #ebebeb solid !important;
}
.gallery--br-53 {
  border-right: 53px #ebebeb solid !important;
}
.gallery--bl-53 {
  border-left: 53px #ebebeb solid !important;
}
.gallery--bb-53 {
  border-bottom: 53px #ebebeb solid !important;
}
.gallery--by-53 {
  border-top: 53px #ebebeb solid !important;
  border-bottom: 53px #ebebeb solid !important;
}
.gallery--bx-53 {
  border-right: 53px #ebebeb solid !important;
  border-left: 53px #ebebeb solid !important;
}
.gallery--ba-54 {
  border: 54px #ebebeb solid !important;
}
.gallery--bt-54 {
  border-top: 54px #ebebeb solid !important;
}
.gallery--br-54 {
  border-right: 54px #ebebeb solid !important;
}
.gallery--bl-54 {
  border-left: 54px #ebebeb solid !important;
}
.gallery--bb-54 {
  border-bottom: 54px #ebebeb solid !important;
}
.gallery--by-54 {
  border-top: 54px #ebebeb solid !important;
  border-bottom: 54px #ebebeb solid !important;
}
.gallery--bx-54 {
  border-right: 54px #ebebeb solid !important;
  border-left: 54px #ebebeb solid !important;
}
.gallery--ba-55 {
  border: 55px #ebebeb solid !important;
}
.gallery--bt-55 {
  border-top: 55px #ebebeb solid !important;
}
.gallery--br-55 {
  border-right: 55px #ebebeb solid !important;
}
.gallery--bl-55 {
  border-left: 55px #ebebeb solid !important;
}
.gallery--bb-55 {
  border-bottom: 55px #ebebeb solid !important;
}
.gallery--by-55 {
  border-top: 55px #ebebeb solid !important;
  border-bottom: 55px #ebebeb solid !important;
}
.gallery--bx-55 {
  border-right: 55px #ebebeb solid !important;
  border-left: 55px #ebebeb solid !important;
}
.gallery--ba-56 {
  border: 56px #ebebeb solid !important;
}
.gallery--bt-56 {
  border-top: 56px #ebebeb solid !important;
}
.gallery--br-56 {
  border-right: 56px #ebebeb solid !important;
}
.gallery--bl-56 {
  border-left: 56px #ebebeb solid !important;
}
.gallery--bb-56 {
  border-bottom: 56px #ebebeb solid !important;
}
.gallery--by-56 {
  border-top: 56px #ebebeb solid !important;
  border-bottom: 56px #ebebeb solid !important;
}
.gallery--bx-56 {
  border-right: 56px #ebebeb solid !important;
  border-left: 56px #ebebeb solid !important;
}
.gallery--ba-57 {
  border: 57px #ebebeb solid !important;
}
.gallery--bt-57 {
  border-top: 57px #ebebeb solid !important;
}
.gallery--br-57 {
  border-right: 57px #ebebeb solid !important;
}
.gallery--bl-57 {
  border-left: 57px #ebebeb solid !important;
}
.gallery--bb-57 {
  border-bottom: 57px #ebebeb solid !important;
}
.gallery--by-57 {
  border-top: 57px #ebebeb solid !important;
  border-bottom: 57px #ebebeb solid !important;
}
.gallery--bx-57 {
  border-right: 57px #ebebeb solid !important;
  border-left: 57px #ebebeb solid !important;
}
.gallery--ba-58 {
  border: 58px #ebebeb solid !important;
}
.gallery--bt-58 {
  border-top: 58px #ebebeb solid !important;
}
.gallery--br-58 {
  border-right: 58px #ebebeb solid !important;
}
.gallery--bl-58 {
  border-left: 58px #ebebeb solid !important;
}
.gallery--bb-58 {
  border-bottom: 58px #ebebeb solid !important;
}
.gallery--by-58 {
  border-top: 58px #ebebeb solid !important;
  border-bottom: 58px #ebebeb solid !important;
}
.gallery--bx-58 {
  border-right: 58px #ebebeb solid !important;
  border-left: 58px #ebebeb solid !important;
}
.gallery--ba-59 {
  border: 59px #ebebeb solid !important;
}
.gallery--bt-59 {
  border-top: 59px #ebebeb solid !important;
}
.gallery--br-59 {
  border-right: 59px #ebebeb solid !important;
}
.gallery--bl-59 {
  border-left: 59px #ebebeb solid !important;
}
.gallery--bb-59 {
  border-bottom: 59px #ebebeb solid !important;
}
.gallery--by-59 {
  border-top: 59px #ebebeb solid !important;
  border-bottom: 59px #ebebeb solid !important;
}
.gallery--bx-59 {
  border-right: 59px #ebebeb solid !important;
  border-left: 59px #ebebeb solid !important;
}
.gallery--ba-60 {
  border: 60px #ebebeb solid !important;
}
.gallery--bt-60 {
  border-top: 60px #ebebeb solid !important;
}
.gallery--br-60 {
  border-right: 60px #ebebeb solid !important;
}
.gallery--bl-60 {
  border-left: 60px #ebebeb solid !important;
}
.gallery--bb-60 {
  border-bottom: 60px #ebebeb solid !important;
}
.gallery--by-60 {
  border-top: 60px #ebebeb solid !important;
  border-bottom: 60px #ebebeb solid !important;
}
.gallery--bx-60 {
  border-right: 60px #ebebeb solid !important;
  border-left: 60px #ebebeb solid !important;
}
.gallery--ba-61 {
  border: 61px #ebebeb solid !important;
}
.gallery--bt-61 {
  border-top: 61px #ebebeb solid !important;
}
.gallery--br-61 {
  border-right: 61px #ebebeb solid !important;
}
.gallery--bl-61 {
  border-left: 61px #ebebeb solid !important;
}
.gallery--bb-61 {
  border-bottom: 61px #ebebeb solid !important;
}
.gallery--by-61 {
  border-top: 61px #ebebeb solid !important;
  border-bottom: 61px #ebebeb solid !important;
}
.gallery--bx-61 {
  border-right: 61px #ebebeb solid !important;
  border-left: 61px #ebebeb solid !important;
}
.gallery--ba-62 {
  border: 62px #ebebeb solid !important;
}
.gallery--bt-62 {
  border-top: 62px #ebebeb solid !important;
}
.gallery--br-62 {
  border-right: 62px #ebebeb solid !important;
}
.gallery--bl-62 {
  border-left: 62px #ebebeb solid !important;
}
.gallery--bb-62 {
  border-bottom: 62px #ebebeb solid !important;
}
.gallery--by-62 {
  border-top: 62px #ebebeb solid !important;
  border-bottom: 62px #ebebeb solid !important;
}
.gallery--bx-62 {
  border-right: 62px #ebebeb solid !important;
  border-left: 62px #ebebeb solid !important;
}
.gallery--ba-63 {
  border: 63px #ebebeb solid !important;
}
.gallery--bt-63 {
  border-top: 63px #ebebeb solid !important;
}
.gallery--br-63 {
  border-right: 63px #ebebeb solid !important;
}
.gallery--bl-63 {
  border-left: 63px #ebebeb solid !important;
}
.gallery--bb-63 {
  border-bottom: 63px #ebebeb solid !important;
}
.gallery--by-63 {
  border-top: 63px #ebebeb solid !important;
  border-bottom: 63px #ebebeb solid !important;
}
.gallery--bx-63 {
  border-right: 63px #ebebeb solid !important;
  border-left: 63px #ebebeb solid !important;
}
.gallery--ba-64 {
  border: 64px #ebebeb solid !important;
}
.gallery--bt-64 {
  border-top: 64px #ebebeb solid !important;
}
.gallery--br-64 {
  border-right: 64px #ebebeb solid !important;
}
.gallery--bl-64 {
  border-left: 64px #ebebeb solid !important;
}
.gallery--bb-64 {
  border-bottom: 64px #ebebeb solid !important;
}
.gallery--by-64 {
  border-top: 64px #ebebeb solid !important;
  border-bottom: 64px #ebebeb solid !important;
}
.gallery--bx-64 {
  border-right: 64px #ebebeb solid !important;
  border-left: 64px #ebebeb solid !important;
}
.gallery--ba-65 {
  border: 65px #ebebeb solid !important;
}
.gallery--bt-65 {
  border-top: 65px #ebebeb solid !important;
}
.gallery--br-65 {
  border-right: 65px #ebebeb solid !important;
}
.gallery--bl-65 {
  border-left: 65px #ebebeb solid !important;
}
.gallery--bb-65 {
  border-bottom: 65px #ebebeb solid !important;
}
.gallery--by-65 {
  border-top: 65px #ebebeb solid !important;
  border-bottom: 65px #ebebeb solid !important;
}
.gallery--bx-65 {
  border-right: 65px #ebebeb solid !important;
  border-left: 65px #ebebeb solid !important;
}
.gallery--ba-66 {
  border: 66px #ebebeb solid !important;
}
.gallery--bt-66 {
  border-top: 66px #ebebeb solid !important;
}
.gallery--br-66 {
  border-right: 66px #ebebeb solid !important;
}
.gallery--bl-66 {
  border-left: 66px #ebebeb solid !important;
}
.gallery--bb-66 {
  border-bottom: 66px #ebebeb solid !important;
}
.gallery--by-66 {
  border-top: 66px #ebebeb solid !important;
  border-bottom: 66px #ebebeb solid !important;
}
.gallery--bx-66 {
  border-right: 66px #ebebeb solid !important;
  border-left: 66px #ebebeb solid !important;
}
.gallery--ba-67 {
  border: 67px #ebebeb solid !important;
}
.gallery--bt-67 {
  border-top: 67px #ebebeb solid !important;
}
.gallery--br-67 {
  border-right: 67px #ebebeb solid !important;
}
.gallery--bl-67 {
  border-left: 67px #ebebeb solid !important;
}
.gallery--bb-67 {
  border-bottom: 67px #ebebeb solid !important;
}
.gallery--by-67 {
  border-top: 67px #ebebeb solid !important;
  border-bottom: 67px #ebebeb solid !important;
}
.gallery--bx-67 {
  border-right: 67px #ebebeb solid !important;
  border-left: 67px #ebebeb solid !important;
}
.gallery--ba-68 {
  border: 68px #ebebeb solid !important;
}
.gallery--bt-68 {
  border-top: 68px #ebebeb solid !important;
}
.gallery--br-68 {
  border-right: 68px #ebebeb solid !important;
}
.gallery--bl-68 {
  border-left: 68px #ebebeb solid !important;
}
.gallery--bb-68 {
  border-bottom: 68px #ebebeb solid !important;
}
.gallery--by-68 {
  border-top: 68px #ebebeb solid !important;
  border-bottom: 68px #ebebeb solid !important;
}
.gallery--bx-68 {
  border-right: 68px #ebebeb solid !important;
  border-left: 68px #ebebeb solid !important;
}
.gallery--ba-69 {
  border: 69px #ebebeb solid !important;
}
.gallery--bt-69 {
  border-top: 69px #ebebeb solid !important;
}
.gallery--br-69 {
  border-right: 69px #ebebeb solid !important;
}
.gallery--bl-69 {
  border-left: 69px #ebebeb solid !important;
}
.gallery--bb-69 {
  border-bottom: 69px #ebebeb solid !important;
}
.gallery--by-69 {
  border-top: 69px #ebebeb solid !important;
  border-bottom: 69px #ebebeb solid !important;
}
.gallery--bx-69 {
  border-right: 69px #ebebeb solid !important;
  border-left: 69px #ebebeb solid !important;
}
.gallery--ba-70 {
  border: 70px #ebebeb solid !important;
}
.gallery--bt-70 {
  border-top: 70px #ebebeb solid !important;
}
.gallery--br-70 {
  border-right: 70px #ebebeb solid !important;
}
.gallery--bl-70 {
  border-left: 70px #ebebeb solid !important;
}
.gallery--bb-70 {
  border-bottom: 70px #ebebeb solid !important;
}
.gallery--by-70 {
  border-top: 70px #ebebeb solid !important;
  border-bottom: 70px #ebebeb solid !important;
}
.gallery--bx-70 {
  border-right: 70px #ebebeb solid !important;
  border-left: 70px #ebebeb solid !important;
}
.gallery--ba-71 {
  border: 71px #ebebeb solid !important;
}
.gallery--bt-71 {
  border-top: 71px #ebebeb solid !important;
}
.gallery--br-71 {
  border-right: 71px #ebebeb solid !important;
}
.gallery--bl-71 {
  border-left: 71px #ebebeb solid !important;
}
.gallery--bb-71 {
  border-bottom: 71px #ebebeb solid !important;
}
.gallery--by-71 {
  border-top: 71px #ebebeb solid !important;
  border-bottom: 71px #ebebeb solid !important;
}
.gallery--bx-71 {
  border-right: 71px #ebebeb solid !important;
  border-left: 71px #ebebeb solid !important;
}
.gallery--ba-72 {
  border: 72px #ebebeb solid !important;
}
.gallery--bt-72 {
  border-top: 72px #ebebeb solid !important;
}
.gallery--br-72 {
  border-right: 72px #ebebeb solid !important;
}
.gallery--bl-72 {
  border-left: 72px #ebebeb solid !important;
}
.gallery--bb-72 {
  border-bottom: 72px #ebebeb solid !important;
}
.gallery--by-72 {
  border-top: 72px #ebebeb solid !important;
  border-bottom: 72px #ebebeb solid !important;
}
.gallery--bx-72 {
  border-right: 72px #ebebeb solid !important;
  border-left: 72px #ebebeb solid !important;
}
.gallery--ba-73 {
  border: 73px #ebebeb solid !important;
}
.gallery--bt-73 {
  border-top: 73px #ebebeb solid !important;
}
.gallery--br-73 {
  border-right: 73px #ebebeb solid !important;
}
.gallery--bl-73 {
  border-left: 73px #ebebeb solid !important;
}
.gallery--bb-73 {
  border-bottom: 73px #ebebeb solid !important;
}
.gallery--by-73 {
  border-top: 73px #ebebeb solid !important;
  border-bottom: 73px #ebebeb solid !important;
}
.gallery--bx-73 {
  border-right: 73px #ebebeb solid !important;
  border-left: 73px #ebebeb solid !important;
}
.gallery--ba-74 {
  border: 74px #ebebeb solid !important;
}
.gallery--bt-74 {
  border-top: 74px #ebebeb solid !important;
}
.gallery--br-74 {
  border-right: 74px #ebebeb solid !important;
}
.gallery--bl-74 {
  border-left: 74px #ebebeb solid !important;
}
.gallery--bb-74 {
  border-bottom: 74px #ebebeb solid !important;
}
.gallery--by-74 {
  border-top: 74px #ebebeb solid !important;
  border-bottom: 74px #ebebeb solid !important;
}
.gallery--bx-74 {
  border-right: 74px #ebebeb solid !important;
  border-left: 74px #ebebeb solid !important;
}
.gallery--ba-75 {
  border: 75px #ebebeb solid !important;
}
.gallery--bt-75 {
  border-top: 75px #ebebeb solid !important;
}
.gallery--br-75 {
  border-right: 75px #ebebeb solid !important;
}
.gallery--bl-75 {
  border-left: 75px #ebebeb solid !important;
}
.gallery--bb-75 {
  border-bottom: 75px #ebebeb solid !important;
}
.gallery--by-75 {
  border-top: 75px #ebebeb solid !important;
  border-bottom: 75px #ebebeb solid !important;
}
.gallery--bx-75 {
  border-right: 75px #ebebeb solid !important;
  border-left: 75px #ebebeb solid !important;
}
.gallery--ba-76 {
  border: 76px #ebebeb solid !important;
}
.gallery--bt-76 {
  border-top: 76px #ebebeb solid !important;
}
.gallery--br-76 {
  border-right: 76px #ebebeb solid !important;
}
.gallery--bl-76 {
  border-left: 76px #ebebeb solid !important;
}
.gallery--bb-76 {
  border-bottom: 76px #ebebeb solid !important;
}
.gallery--by-76 {
  border-top: 76px #ebebeb solid !important;
  border-bottom: 76px #ebebeb solid !important;
}
.gallery--bx-76 {
  border-right: 76px #ebebeb solid !important;
  border-left: 76px #ebebeb solid !important;
}
.gallery--ba-77 {
  border: 77px #ebebeb solid !important;
}
.gallery--bt-77 {
  border-top: 77px #ebebeb solid !important;
}
.gallery--br-77 {
  border-right: 77px #ebebeb solid !important;
}
.gallery--bl-77 {
  border-left: 77px #ebebeb solid !important;
}
.gallery--bb-77 {
  border-bottom: 77px #ebebeb solid !important;
}
.gallery--by-77 {
  border-top: 77px #ebebeb solid !important;
  border-bottom: 77px #ebebeb solid !important;
}
.gallery--bx-77 {
  border-right: 77px #ebebeb solid !important;
  border-left: 77px #ebebeb solid !important;
}
.gallery--ba-78 {
  border: 78px #ebebeb solid !important;
}
.gallery--bt-78 {
  border-top: 78px #ebebeb solid !important;
}
.gallery--br-78 {
  border-right: 78px #ebebeb solid !important;
}
.gallery--bl-78 {
  border-left: 78px #ebebeb solid !important;
}
.gallery--bb-78 {
  border-bottom: 78px #ebebeb solid !important;
}
.gallery--by-78 {
  border-top: 78px #ebebeb solid !important;
  border-bottom: 78px #ebebeb solid !important;
}
.gallery--bx-78 {
  border-right: 78px #ebebeb solid !important;
  border-left: 78px #ebebeb solid !important;
}
.gallery--ba-79 {
  border: 79px #ebebeb solid !important;
}
.gallery--bt-79 {
  border-top: 79px #ebebeb solid !important;
}
.gallery--br-79 {
  border-right: 79px #ebebeb solid !important;
}
.gallery--bl-79 {
  border-left: 79px #ebebeb solid !important;
}
.gallery--bb-79 {
  border-bottom: 79px #ebebeb solid !important;
}
.gallery--by-79 {
  border-top: 79px #ebebeb solid !important;
  border-bottom: 79px #ebebeb solid !important;
}
.gallery--bx-79 {
  border-right: 79px #ebebeb solid !important;
  border-left: 79px #ebebeb solid !important;
}
.gallery--ba-80 {
  border: 80px #ebebeb solid !important;
}
.gallery--bt-80 {
  border-top: 80px #ebebeb solid !important;
}
.gallery--br-80 {
  border-right: 80px #ebebeb solid !important;
}
.gallery--bl-80 {
  border-left: 80px #ebebeb solid !important;
}
.gallery--bb-80 {
  border-bottom: 80px #ebebeb solid !important;
}
.gallery--by-80 {
  border-top: 80px #ebebeb solid !important;
  border-bottom: 80px #ebebeb solid !important;
}
.gallery--bx-80 {
  border-right: 80px #ebebeb solid !important;
  border-left: 80px #ebebeb solid !important;
}
.gallery--ba-81 {
  border: 81px #ebebeb solid !important;
}
.gallery--bt-81 {
  border-top: 81px #ebebeb solid !important;
}
.gallery--br-81 {
  border-right: 81px #ebebeb solid !important;
}
.gallery--bl-81 {
  border-left: 81px #ebebeb solid !important;
}
.gallery--bb-81 {
  border-bottom: 81px #ebebeb solid !important;
}
.gallery--by-81 {
  border-top: 81px #ebebeb solid !important;
  border-bottom: 81px #ebebeb solid !important;
}
.gallery--bx-81 {
  border-right: 81px #ebebeb solid !important;
  border-left: 81px #ebebeb solid !important;
}
.gallery--ba-82 {
  border: 82px #ebebeb solid !important;
}
.gallery--bt-82 {
  border-top: 82px #ebebeb solid !important;
}
.gallery--br-82 {
  border-right: 82px #ebebeb solid !important;
}
.gallery--bl-82 {
  border-left: 82px #ebebeb solid !important;
}
.gallery--bb-82 {
  border-bottom: 82px #ebebeb solid !important;
}
.gallery--by-82 {
  border-top: 82px #ebebeb solid !important;
  border-bottom: 82px #ebebeb solid !important;
}
.gallery--bx-82 {
  border-right: 82px #ebebeb solid !important;
  border-left: 82px #ebebeb solid !important;
}
.gallery--ba-83 {
  border: 83px #ebebeb solid !important;
}
.gallery--bt-83 {
  border-top: 83px #ebebeb solid !important;
}
.gallery--br-83 {
  border-right: 83px #ebebeb solid !important;
}
.gallery--bl-83 {
  border-left: 83px #ebebeb solid !important;
}
.gallery--bb-83 {
  border-bottom: 83px #ebebeb solid !important;
}
.gallery--by-83 {
  border-top: 83px #ebebeb solid !important;
  border-bottom: 83px #ebebeb solid !important;
}
.gallery--bx-83 {
  border-right: 83px #ebebeb solid !important;
  border-left: 83px #ebebeb solid !important;
}
.gallery--ba-84 {
  border: 84px #ebebeb solid !important;
}
.gallery--bt-84 {
  border-top: 84px #ebebeb solid !important;
}
.gallery--br-84 {
  border-right: 84px #ebebeb solid !important;
}
.gallery--bl-84 {
  border-left: 84px #ebebeb solid !important;
}
.gallery--bb-84 {
  border-bottom: 84px #ebebeb solid !important;
}
.gallery--by-84 {
  border-top: 84px #ebebeb solid !important;
  border-bottom: 84px #ebebeb solid !important;
}
.gallery--bx-84 {
  border-right: 84px #ebebeb solid !important;
  border-left: 84px #ebebeb solid !important;
}
.gallery--ba-85 {
  border: 85px #ebebeb solid !important;
}
.gallery--bt-85 {
  border-top: 85px #ebebeb solid !important;
}
.gallery--br-85 {
  border-right: 85px #ebebeb solid !important;
}
.gallery--bl-85 {
  border-left: 85px #ebebeb solid !important;
}
.gallery--bb-85 {
  border-bottom: 85px #ebebeb solid !important;
}
.gallery--by-85 {
  border-top: 85px #ebebeb solid !important;
  border-bottom: 85px #ebebeb solid !important;
}
.gallery--bx-85 {
  border-right: 85px #ebebeb solid !important;
  border-left: 85px #ebebeb solid !important;
}
.gallery--ba-86 {
  border: 86px #ebebeb solid !important;
}
.gallery--bt-86 {
  border-top: 86px #ebebeb solid !important;
}
.gallery--br-86 {
  border-right: 86px #ebebeb solid !important;
}
.gallery--bl-86 {
  border-left: 86px #ebebeb solid !important;
}
.gallery--bb-86 {
  border-bottom: 86px #ebebeb solid !important;
}
.gallery--by-86 {
  border-top: 86px #ebebeb solid !important;
  border-bottom: 86px #ebebeb solid !important;
}
.gallery--bx-86 {
  border-right: 86px #ebebeb solid !important;
  border-left: 86px #ebebeb solid !important;
}
.gallery--ba-87 {
  border: 87px #ebebeb solid !important;
}
.gallery--bt-87 {
  border-top: 87px #ebebeb solid !important;
}
.gallery--br-87 {
  border-right: 87px #ebebeb solid !important;
}
.gallery--bl-87 {
  border-left: 87px #ebebeb solid !important;
}
.gallery--bb-87 {
  border-bottom: 87px #ebebeb solid !important;
}
.gallery--by-87 {
  border-top: 87px #ebebeb solid !important;
  border-bottom: 87px #ebebeb solid !important;
}
.gallery--bx-87 {
  border-right: 87px #ebebeb solid !important;
  border-left: 87px #ebebeb solid !important;
}
.gallery--ba-88 {
  border: 88px #ebebeb solid !important;
}
.gallery--bt-88 {
  border-top: 88px #ebebeb solid !important;
}
.gallery--br-88 {
  border-right: 88px #ebebeb solid !important;
}
.gallery--bl-88 {
  border-left: 88px #ebebeb solid !important;
}
.gallery--bb-88 {
  border-bottom: 88px #ebebeb solid !important;
}
.gallery--by-88 {
  border-top: 88px #ebebeb solid !important;
  border-bottom: 88px #ebebeb solid !important;
}
.gallery--bx-88 {
  border-right: 88px #ebebeb solid !important;
  border-left: 88px #ebebeb solid !important;
}
.gallery--ba-89 {
  border: 89px #ebebeb solid !important;
}
.gallery--bt-89 {
  border-top: 89px #ebebeb solid !important;
}
.gallery--br-89 {
  border-right: 89px #ebebeb solid !important;
}
.gallery--bl-89 {
  border-left: 89px #ebebeb solid !important;
}
.gallery--bb-89 {
  border-bottom: 89px #ebebeb solid !important;
}
.gallery--by-89 {
  border-top: 89px #ebebeb solid !important;
  border-bottom: 89px #ebebeb solid !important;
}
.gallery--bx-89 {
  border-right: 89px #ebebeb solid !important;
  border-left: 89px #ebebeb solid !important;
}
.gallery--ba-90 {
  border: 90px #ebebeb solid !important;
}
.gallery--bt-90 {
  border-top: 90px #ebebeb solid !important;
}
.gallery--br-90 {
  border-right: 90px #ebebeb solid !important;
}
.gallery--bl-90 {
  border-left: 90px #ebebeb solid !important;
}
.gallery--bb-90 {
  border-bottom: 90px #ebebeb solid !important;
}
.gallery--by-90 {
  border-top: 90px #ebebeb solid !important;
  border-bottom: 90px #ebebeb solid !important;
}
.gallery--bx-90 {
  border-right: 90px #ebebeb solid !important;
  border-left: 90px #ebebeb solid !important;
}
.gallery--ba-91 {
  border: 91px #ebebeb solid !important;
}
.gallery--bt-91 {
  border-top: 91px #ebebeb solid !important;
}
.gallery--br-91 {
  border-right: 91px #ebebeb solid !important;
}
.gallery--bl-91 {
  border-left: 91px #ebebeb solid !important;
}
.gallery--bb-91 {
  border-bottom: 91px #ebebeb solid !important;
}
.gallery--by-91 {
  border-top: 91px #ebebeb solid !important;
  border-bottom: 91px #ebebeb solid !important;
}
.gallery--bx-91 {
  border-right: 91px #ebebeb solid !important;
  border-left: 91px #ebebeb solid !important;
}
.gallery--ba-92 {
  border: 92px #ebebeb solid !important;
}
.gallery--bt-92 {
  border-top: 92px #ebebeb solid !important;
}
.gallery--br-92 {
  border-right: 92px #ebebeb solid !important;
}
.gallery--bl-92 {
  border-left: 92px #ebebeb solid !important;
}
.gallery--bb-92 {
  border-bottom: 92px #ebebeb solid !important;
}
.gallery--by-92 {
  border-top: 92px #ebebeb solid !important;
  border-bottom: 92px #ebebeb solid !important;
}
.gallery--bx-92 {
  border-right: 92px #ebebeb solid !important;
  border-left: 92px #ebebeb solid !important;
}
.gallery--ba-93 {
  border: 93px #ebebeb solid !important;
}
.gallery--bt-93 {
  border-top: 93px #ebebeb solid !important;
}
.gallery--br-93 {
  border-right: 93px #ebebeb solid !important;
}
.gallery--bl-93 {
  border-left: 93px #ebebeb solid !important;
}
.gallery--bb-93 {
  border-bottom: 93px #ebebeb solid !important;
}
.gallery--by-93 {
  border-top: 93px #ebebeb solid !important;
  border-bottom: 93px #ebebeb solid !important;
}
.gallery--bx-93 {
  border-right: 93px #ebebeb solid !important;
  border-left: 93px #ebebeb solid !important;
}
.gallery--ba-94 {
  border: 94px #ebebeb solid !important;
}
.gallery--bt-94 {
  border-top: 94px #ebebeb solid !important;
}
.gallery--br-94 {
  border-right: 94px #ebebeb solid !important;
}
.gallery--bl-94 {
  border-left: 94px #ebebeb solid !important;
}
.gallery--bb-94 {
  border-bottom: 94px #ebebeb solid !important;
}
.gallery--by-94 {
  border-top: 94px #ebebeb solid !important;
  border-bottom: 94px #ebebeb solid !important;
}
.gallery--bx-94 {
  border-right: 94px #ebebeb solid !important;
  border-left: 94px #ebebeb solid !important;
}
.gallery--ba-95 {
  border: 95px #ebebeb solid !important;
}
.gallery--bt-95 {
  border-top: 95px #ebebeb solid !important;
}
.gallery--br-95 {
  border-right: 95px #ebebeb solid !important;
}
.gallery--bl-95 {
  border-left: 95px #ebebeb solid !important;
}
.gallery--bb-95 {
  border-bottom: 95px #ebebeb solid !important;
}
.gallery--by-95 {
  border-top: 95px #ebebeb solid !important;
  border-bottom: 95px #ebebeb solid !important;
}
.gallery--bx-95 {
  border-right: 95px #ebebeb solid !important;
  border-left: 95px #ebebeb solid !important;
}
.gallery--ba-96 {
  border: 96px #ebebeb solid !important;
}
.gallery--bt-96 {
  border-top: 96px #ebebeb solid !important;
}
.gallery--br-96 {
  border-right: 96px #ebebeb solid !important;
}
.gallery--bl-96 {
  border-left: 96px #ebebeb solid !important;
}
.gallery--bb-96 {
  border-bottom: 96px #ebebeb solid !important;
}
.gallery--by-96 {
  border-top: 96px #ebebeb solid !important;
  border-bottom: 96px #ebebeb solid !important;
}
.gallery--bx-96 {
  border-right: 96px #ebebeb solid !important;
  border-left: 96px #ebebeb solid !important;
}
.gallery--ba-97 {
  border: 97px #ebebeb solid !important;
}
.gallery--bt-97 {
  border-top: 97px #ebebeb solid !important;
}
.gallery--br-97 {
  border-right: 97px #ebebeb solid !important;
}
.gallery--bl-97 {
  border-left: 97px #ebebeb solid !important;
}
.gallery--bb-97 {
  border-bottom: 97px #ebebeb solid !important;
}
.gallery--by-97 {
  border-top: 97px #ebebeb solid !important;
  border-bottom: 97px #ebebeb solid !important;
}
.gallery--bx-97 {
  border-right: 97px #ebebeb solid !important;
  border-left: 97px #ebebeb solid !important;
}
.gallery--ba-98 {
  border: 98px #ebebeb solid !important;
}
.gallery--bt-98 {
  border-top: 98px #ebebeb solid !important;
}
.gallery--br-98 {
  border-right: 98px #ebebeb solid !important;
}
.gallery--bl-98 {
  border-left: 98px #ebebeb solid !important;
}
.gallery--bb-98 {
  border-bottom: 98px #ebebeb solid !important;
}
.gallery--by-98 {
  border-top: 98px #ebebeb solid !important;
  border-bottom: 98px #ebebeb solid !important;
}
.gallery--bx-98 {
  border-right: 98px #ebebeb solid !important;
  border-left: 98px #ebebeb solid !important;
}
.gallery--ba-99 {
  border: 99px #ebebeb solid !important;
}
.gallery--bt-99 {
  border-top: 99px #ebebeb solid !important;
}
.gallery--br-99 {
  border-right: 99px #ebebeb solid !important;
}
.gallery--bl-99 {
  border-left: 99px #ebebeb solid !important;
}
.gallery--bb-99 {
  border-bottom: 99px #ebebeb solid !important;
}
.gallery--by-99 {
  border-top: 99px #ebebeb solid !important;
  border-bottom: 99px #ebebeb solid !important;
}
.gallery--bx-99 {
  border-right: 99px #ebebeb solid !important;
  border-left: 99px #ebebeb solid !important;
}
.gallery--ba-100 {
  border: 100px #ebebeb solid !important;
}
.gallery--bt-100 {
  border-top: 100px #ebebeb solid !important;
}
.gallery--br-100 {
  border-right: 100px #ebebeb solid !important;
}
.gallery--bl-100 {
  border-left: 100px #ebebeb solid !important;
}
.gallery--bb-100 {
  border-bottom: 100px #ebebeb solid !important;
}
.gallery--by-100 {
  border-top: 100px #ebebeb solid !important;
  border-bottom: 100px #ebebeb solid !important;
}
.gallery--bx-100 {
  border-right: 100px #ebebeb solid !important;
  border-left: 100px #ebebeb solid !important;
}
.nobel--ba-1 {
  border: 1px #b6b6b6 solid !important;
}
.nobel--bt-1 {
  border-top: 1px #b6b6b6 solid !important;
}
.nobel--br-1 {
  border-right: 1px #b6b6b6 solid !important;
}
.nobel--bl-1 {
  border-left: 1px #b6b6b6 solid !important;
}
.nobel--bb-1 {
  border-bottom: 1px #b6b6b6 solid !important;
}
.nobel--by-1 {
  border-top: 1px #b6b6b6 solid !important;
  border-bottom: 1px #b6b6b6 solid !important;
}
.nobel--bx-1 {
  border-right: 1px #b6b6b6 solid !important;
  border-left: 1px #b6b6b6 solid !important;
}
.nobel--ba-2 {
  border: 2px #b6b6b6 solid !important;
}
.nobel--bt-2 {
  border-top: 2px #b6b6b6 solid !important;
}
.nobel--br-2 {
  border-right: 2px #b6b6b6 solid !important;
}
.nobel--bl-2 {
  border-left: 2px #b6b6b6 solid !important;
}
.nobel--bb-2 {
  border-bottom: 2px #b6b6b6 solid !important;
}
.nobel--by-2 {
  border-top: 2px #b6b6b6 solid !important;
  border-bottom: 2px #b6b6b6 solid !important;
}
.nobel--bx-2 {
  border-right: 2px #b6b6b6 solid !important;
  border-left: 2px #b6b6b6 solid !important;
}
.nobel--ba-3 {
  border: 3px #b6b6b6 solid !important;
}
.nobel--bt-3 {
  border-top: 3px #b6b6b6 solid !important;
}
.nobel--br-3 {
  border-right: 3px #b6b6b6 solid !important;
}
.nobel--bl-3 {
  border-left: 3px #b6b6b6 solid !important;
}
.nobel--bb-3 {
  border-bottom: 3px #b6b6b6 solid !important;
}
.nobel--by-3 {
  border-top: 3px #b6b6b6 solid !important;
  border-bottom: 3px #b6b6b6 solid !important;
}
.nobel--bx-3 {
  border-right: 3px #b6b6b6 solid !important;
  border-left: 3px #b6b6b6 solid !important;
}
.nobel--ba-4 {
  border: 4px #b6b6b6 solid !important;
}
.nobel--bt-4 {
  border-top: 4px #b6b6b6 solid !important;
}
.nobel--br-4 {
  border-right: 4px #b6b6b6 solid !important;
}
.nobel--bl-4 {
  border-left: 4px #b6b6b6 solid !important;
}
.nobel--bb-4 {
  border-bottom: 4px #b6b6b6 solid !important;
}
.nobel--by-4 {
  border-top: 4px #b6b6b6 solid !important;
  border-bottom: 4px #b6b6b6 solid !important;
}
.nobel--bx-4 {
  border-right: 4px #b6b6b6 solid !important;
  border-left: 4px #b6b6b6 solid !important;
}
.nobel--ba-5 {
  border: 5px #b6b6b6 solid !important;
}
.nobel--bt-5 {
  border-top: 5px #b6b6b6 solid !important;
}
.nobel--br-5 {
  border-right: 5px #b6b6b6 solid !important;
}
.nobel--bl-5 {
  border-left: 5px #b6b6b6 solid !important;
}
.nobel--bb-5 {
  border-bottom: 5px #b6b6b6 solid !important;
}
.nobel--by-5 {
  border-top: 5px #b6b6b6 solid !important;
  border-bottom: 5px #b6b6b6 solid !important;
}
.nobel--bx-5 {
  border-right: 5px #b6b6b6 solid !important;
  border-left: 5px #b6b6b6 solid !important;
}
.nobel--ba-6 {
  border: 6px #b6b6b6 solid !important;
}
.nobel--bt-6 {
  border-top: 6px #b6b6b6 solid !important;
}
.nobel--br-6 {
  border-right: 6px #b6b6b6 solid !important;
}
.nobel--bl-6 {
  border-left: 6px #b6b6b6 solid !important;
}
.nobel--bb-6 {
  border-bottom: 6px #b6b6b6 solid !important;
}
.nobel--by-6 {
  border-top: 6px #b6b6b6 solid !important;
  border-bottom: 6px #b6b6b6 solid !important;
}
.nobel--bx-6 {
  border-right: 6px #b6b6b6 solid !important;
  border-left: 6px #b6b6b6 solid !important;
}
.nobel--ba-7 {
  border: 7px #b6b6b6 solid !important;
}
.nobel--bt-7 {
  border-top: 7px #b6b6b6 solid !important;
}
.nobel--br-7 {
  border-right: 7px #b6b6b6 solid !important;
}
.nobel--bl-7 {
  border-left: 7px #b6b6b6 solid !important;
}
.nobel--bb-7 {
  border-bottom: 7px #b6b6b6 solid !important;
}
.nobel--by-7 {
  border-top: 7px #b6b6b6 solid !important;
  border-bottom: 7px #b6b6b6 solid !important;
}
.nobel--bx-7 {
  border-right: 7px #b6b6b6 solid !important;
  border-left: 7px #b6b6b6 solid !important;
}
.nobel--ba-8 {
  border: 8px #b6b6b6 solid !important;
}
.nobel--bt-8 {
  border-top: 8px #b6b6b6 solid !important;
}
.nobel--br-8 {
  border-right: 8px #b6b6b6 solid !important;
}
.nobel--bl-8 {
  border-left: 8px #b6b6b6 solid !important;
}
.nobel--bb-8 {
  border-bottom: 8px #b6b6b6 solid !important;
}
.nobel--by-8 {
  border-top: 8px #b6b6b6 solid !important;
  border-bottom: 8px #b6b6b6 solid !important;
}
.nobel--bx-8 {
  border-right: 8px #b6b6b6 solid !important;
  border-left: 8px #b6b6b6 solid !important;
}
.nobel--ba-9 {
  border: 9px #b6b6b6 solid !important;
}
.nobel--bt-9 {
  border-top: 9px #b6b6b6 solid !important;
}
.nobel--br-9 {
  border-right: 9px #b6b6b6 solid !important;
}
.nobel--bl-9 {
  border-left: 9px #b6b6b6 solid !important;
}
.nobel--bb-9 {
  border-bottom: 9px #b6b6b6 solid !important;
}
.nobel--by-9 {
  border-top: 9px #b6b6b6 solid !important;
  border-bottom: 9px #b6b6b6 solid !important;
}
.nobel--bx-9 {
  border-right: 9px #b6b6b6 solid !important;
  border-left: 9px #b6b6b6 solid !important;
}
.nobel--ba-10 {
  border: 10px #b6b6b6 solid !important;
}
.nobel--bt-10 {
  border-top: 10px #b6b6b6 solid !important;
}
.nobel--br-10 {
  border-right: 10px #b6b6b6 solid !important;
}
.nobel--bl-10 {
  border-left: 10px #b6b6b6 solid !important;
}
.nobel--bb-10 {
  border-bottom: 10px #b6b6b6 solid !important;
}
.nobel--by-10 {
  border-top: 10px #b6b6b6 solid !important;
  border-bottom: 10px #b6b6b6 solid !important;
}
.nobel--bx-10 {
  border-right: 10px #b6b6b6 solid !important;
  border-left: 10px #b6b6b6 solid !important;
}
.nobel--ba-11 {
  border: 11px #b6b6b6 solid !important;
}
.nobel--bt-11 {
  border-top: 11px #b6b6b6 solid !important;
}
.nobel--br-11 {
  border-right: 11px #b6b6b6 solid !important;
}
.nobel--bl-11 {
  border-left: 11px #b6b6b6 solid !important;
}
.nobel--bb-11 {
  border-bottom: 11px #b6b6b6 solid !important;
}
.nobel--by-11 {
  border-top: 11px #b6b6b6 solid !important;
  border-bottom: 11px #b6b6b6 solid !important;
}
.nobel--bx-11 {
  border-right: 11px #b6b6b6 solid !important;
  border-left: 11px #b6b6b6 solid !important;
}
.nobel--ba-12 {
  border: 12px #b6b6b6 solid !important;
}
.nobel--bt-12 {
  border-top: 12px #b6b6b6 solid !important;
}
.nobel--br-12 {
  border-right: 12px #b6b6b6 solid !important;
}
.nobel--bl-12 {
  border-left: 12px #b6b6b6 solid !important;
}
.nobel--bb-12 {
  border-bottom: 12px #b6b6b6 solid !important;
}
.nobel--by-12 {
  border-top: 12px #b6b6b6 solid !important;
  border-bottom: 12px #b6b6b6 solid !important;
}
.nobel--bx-12 {
  border-right: 12px #b6b6b6 solid !important;
  border-left: 12px #b6b6b6 solid !important;
}
.nobel--ba-13 {
  border: 13px #b6b6b6 solid !important;
}
.nobel--bt-13 {
  border-top: 13px #b6b6b6 solid !important;
}
.nobel--br-13 {
  border-right: 13px #b6b6b6 solid !important;
}
.nobel--bl-13 {
  border-left: 13px #b6b6b6 solid !important;
}
.nobel--bb-13 {
  border-bottom: 13px #b6b6b6 solid !important;
}
.nobel--by-13 {
  border-top: 13px #b6b6b6 solid !important;
  border-bottom: 13px #b6b6b6 solid !important;
}
.nobel--bx-13 {
  border-right: 13px #b6b6b6 solid !important;
  border-left: 13px #b6b6b6 solid !important;
}
.nobel--ba-14 {
  border: 14px #b6b6b6 solid !important;
}
.nobel--bt-14 {
  border-top: 14px #b6b6b6 solid !important;
}
.nobel--br-14 {
  border-right: 14px #b6b6b6 solid !important;
}
.nobel--bl-14 {
  border-left: 14px #b6b6b6 solid !important;
}
.nobel--bb-14 {
  border-bottom: 14px #b6b6b6 solid !important;
}
.nobel--by-14 {
  border-top: 14px #b6b6b6 solid !important;
  border-bottom: 14px #b6b6b6 solid !important;
}
.nobel--bx-14 {
  border-right: 14px #b6b6b6 solid !important;
  border-left: 14px #b6b6b6 solid !important;
}
.nobel--ba-15 {
  border: 15px #b6b6b6 solid !important;
}
.nobel--bt-15 {
  border-top: 15px #b6b6b6 solid !important;
}
.nobel--br-15 {
  border-right: 15px #b6b6b6 solid !important;
}
.nobel--bl-15 {
  border-left: 15px #b6b6b6 solid !important;
}
.nobel--bb-15 {
  border-bottom: 15px #b6b6b6 solid !important;
}
.nobel--by-15 {
  border-top: 15px #b6b6b6 solid !important;
  border-bottom: 15px #b6b6b6 solid !important;
}
.nobel--bx-15 {
  border-right: 15px #b6b6b6 solid !important;
  border-left: 15px #b6b6b6 solid !important;
}
.nobel--ba-16 {
  border: 16px #b6b6b6 solid !important;
}
.nobel--bt-16 {
  border-top: 16px #b6b6b6 solid !important;
}
.nobel--br-16 {
  border-right: 16px #b6b6b6 solid !important;
}
.nobel--bl-16 {
  border-left: 16px #b6b6b6 solid !important;
}
.nobel--bb-16 {
  border-bottom: 16px #b6b6b6 solid !important;
}
.nobel--by-16 {
  border-top: 16px #b6b6b6 solid !important;
  border-bottom: 16px #b6b6b6 solid !important;
}
.nobel--bx-16 {
  border-right: 16px #b6b6b6 solid !important;
  border-left: 16px #b6b6b6 solid !important;
}
.nobel--ba-17 {
  border: 17px #b6b6b6 solid !important;
}
.nobel--bt-17 {
  border-top: 17px #b6b6b6 solid !important;
}
.nobel--br-17 {
  border-right: 17px #b6b6b6 solid !important;
}
.nobel--bl-17 {
  border-left: 17px #b6b6b6 solid !important;
}
.nobel--bb-17 {
  border-bottom: 17px #b6b6b6 solid !important;
}
.nobel--by-17 {
  border-top: 17px #b6b6b6 solid !important;
  border-bottom: 17px #b6b6b6 solid !important;
}
.nobel--bx-17 {
  border-right: 17px #b6b6b6 solid !important;
  border-left: 17px #b6b6b6 solid !important;
}
.nobel--ba-18 {
  border: 18px #b6b6b6 solid !important;
}
.nobel--bt-18 {
  border-top: 18px #b6b6b6 solid !important;
}
.nobel--br-18 {
  border-right: 18px #b6b6b6 solid !important;
}
.nobel--bl-18 {
  border-left: 18px #b6b6b6 solid !important;
}
.nobel--bb-18 {
  border-bottom: 18px #b6b6b6 solid !important;
}
.nobel--by-18 {
  border-top: 18px #b6b6b6 solid !important;
  border-bottom: 18px #b6b6b6 solid !important;
}
.nobel--bx-18 {
  border-right: 18px #b6b6b6 solid !important;
  border-left: 18px #b6b6b6 solid !important;
}
.nobel--ba-19 {
  border: 19px #b6b6b6 solid !important;
}
.nobel--bt-19 {
  border-top: 19px #b6b6b6 solid !important;
}
.nobel--br-19 {
  border-right: 19px #b6b6b6 solid !important;
}
.nobel--bl-19 {
  border-left: 19px #b6b6b6 solid !important;
}
.nobel--bb-19 {
  border-bottom: 19px #b6b6b6 solid !important;
}
.nobel--by-19 {
  border-top: 19px #b6b6b6 solid !important;
  border-bottom: 19px #b6b6b6 solid !important;
}
.nobel--bx-19 {
  border-right: 19px #b6b6b6 solid !important;
  border-left: 19px #b6b6b6 solid !important;
}
.nobel--ba-20 {
  border: 20px #b6b6b6 solid !important;
}
.nobel--bt-20 {
  border-top: 20px #b6b6b6 solid !important;
}
.nobel--br-20 {
  border-right: 20px #b6b6b6 solid !important;
}
.nobel--bl-20 {
  border-left: 20px #b6b6b6 solid !important;
}
.nobel--bb-20 {
  border-bottom: 20px #b6b6b6 solid !important;
}
.nobel--by-20 {
  border-top: 20px #b6b6b6 solid !important;
  border-bottom: 20px #b6b6b6 solid !important;
}
.nobel--bx-20 {
  border-right: 20px #b6b6b6 solid !important;
  border-left: 20px #b6b6b6 solid !important;
}
.nobel--ba-21 {
  border: 21px #b6b6b6 solid !important;
}
.nobel--bt-21 {
  border-top: 21px #b6b6b6 solid !important;
}
.nobel--br-21 {
  border-right: 21px #b6b6b6 solid !important;
}
.nobel--bl-21 {
  border-left: 21px #b6b6b6 solid !important;
}
.nobel--bb-21 {
  border-bottom: 21px #b6b6b6 solid !important;
}
.nobel--by-21 {
  border-top: 21px #b6b6b6 solid !important;
  border-bottom: 21px #b6b6b6 solid !important;
}
.nobel--bx-21 {
  border-right: 21px #b6b6b6 solid !important;
  border-left: 21px #b6b6b6 solid !important;
}
.nobel--ba-22 {
  border: 22px #b6b6b6 solid !important;
}
.nobel--bt-22 {
  border-top: 22px #b6b6b6 solid !important;
}
.nobel--br-22 {
  border-right: 22px #b6b6b6 solid !important;
}
.nobel--bl-22 {
  border-left: 22px #b6b6b6 solid !important;
}
.nobel--bb-22 {
  border-bottom: 22px #b6b6b6 solid !important;
}
.nobel--by-22 {
  border-top: 22px #b6b6b6 solid !important;
  border-bottom: 22px #b6b6b6 solid !important;
}
.nobel--bx-22 {
  border-right: 22px #b6b6b6 solid !important;
  border-left: 22px #b6b6b6 solid !important;
}
.nobel--ba-23 {
  border: 23px #b6b6b6 solid !important;
}
.nobel--bt-23 {
  border-top: 23px #b6b6b6 solid !important;
}
.nobel--br-23 {
  border-right: 23px #b6b6b6 solid !important;
}
.nobel--bl-23 {
  border-left: 23px #b6b6b6 solid !important;
}
.nobel--bb-23 {
  border-bottom: 23px #b6b6b6 solid !important;
}
.nobel--by-23 {
  border-top: 23px #b6b6b6 solid !important;
  border-bottom: 23px #b6b6b6 solid !important;
}
.nobel--bx-23 {
  border-right: 23px #b6b6b6 solid !important;
  border-left: 23px #b6b6b6 solid !important;
}
.nobel--ba-24 {
  border: 24px #b6b6b6 solid !important;
}
.nobel--bt-24 {
  border-top: 24px #b6b6b6 solid !important;
}
.nobel--br-24 {
  border-right: 24px #b6b6b6 solid !important;
}
.nobel--bl-24 {
  border-left: 24px #b6b6b6 solid !important;
}
.nobel--bb-24 {
  border-bottom: 24px #b6b6b6 solid !important;
}
.nobel--by-24 {
  border-top: 24px #b6b6b6 solid !important;
  border-bottom: 24px #b6b6b6 solid !important;
}
.nobel--bx-24 {
  border-right: 24px #b6b6b6 solid !important;
  border-left: 24px #b6b6b6 solid !important;
}
.nobel--ba-25 {
  border: 25px #b6b6b6 solid !important;
}
.nobel--bt-25 {
  border-top: 25px #b6b6b6 solid !important;
}
.nobel--br-25 {
  border-right: 25px #b6b6b6 solid !important;
}
.nobel--bl-25 {
  border-left: 25px #b6b6b6 solid !important;
}
.nobel--bb-25 {
  border-bottom: 25px #b6b6b6 solid !important;
}
.nobel--by-25 {
  border-top: 25px #b6b6b6 solid !important;
  border-bottom: 25px #b6b6b6 solid !important;
}
.nobel--bx-25 {
  border-right: 25px #b6b6b6 solid !important;
  border-left: 25px #b6b6b6 solid !important;
}
.nobel--ba-26 {
  border: 26px #b6b6b6 solid !important;
}
.nobel--bt-26 {
  border-top: 26px #b6b6b6 solid !important;
}
.nobel--br-26 {
  border-right: 26px #b6b6b6 solid !important;
}
.nobel--bl-26 {
  border-left: 26px #b6b6b6 solid !important;
}
.nobel--bb-26 {
  border-bottom: 26px #b6b6b6 solid !important;
}
.nobel--by-26 {
  border-top: 26px #b6b6b6 solid !important;
  border-bottom: 26px #b6b6b6 solid !important;
}
.nobel--bx-26 {
  border-right: 26px #b6b6b6 solid !important;
  border-left: 26px #b6b6b6 solid !important;
}
.nobel--ba-27 {
  border: 27px #b6b6b6 solid !important;
}
.nobel--bt-27 {
  border-top: 27px #b6b6b6 solid !important;
}
.nobel--br-27 {
  border-right: 27px #b6b6b6 solid !important;
}
.nobel--bl-27 {
  border-left: 27px #b6b6b6 solid !important;
}
.nobel--bb-27 {
  border-bottom: 27px #b6b6b6 solid !important;
}
.nobel--by-27 {
  border-top: 27px #b6b6b6 solid !important;
  border-bottom: 27px #b6b6b6 solid !important;
}
.nobel--bx-27 {
  border-right: 27px #b6b6b6 solid !important;
  border-left: 27px #b6b6b6 solid !important;
}
.nobel--ba-28 {
  border: 28px #b6b6b6 solid !important;
}
.nobel--bt-28 {
  border-top: 28px #b6b6b6 solid !important;
}
.nobel--br-28 {
  border-right: 28px #b6b6b6 solid !important;
}
.nobel--bl-28 {
  border-left: 28px #b6b6b6 solid !important;
}
.nobel--bb-28 {
  border-bottom: 28px #b6b6b6 solid !important;
}
.nobel--by-28 {
  border-top: 28px #b6b6b6 solid !important;
  border-bottom: 28px #b6b6b6 solid !important;
}
.nobel--bx-28 {
  border-right: 28px #b6b6b6 solid !important;
  border-left: 28px #b6b6b6 solid !important;
}
.nobel--ba-29 {
  border: 29px #b6b6b6 solid !important;
}
.nobel--bt-29 {
  border-top: 29px #b6b6b6 solid !important;
}
.nobel--br-29 {
  border-right: 29px #b6b6b6 solid !important;
}
.nobel--bl-29 {
  border-left: 29px #b6b6b6 solid !important;
}
.nobel--bb-29 {
  border-bottom: 29px #b6b6b6 solid !important;
}
.nobel--by-29 {
  border-top: 29px #b6b6b6 solid !important;
  border-bottom: 29px #b6b6b6 solid !important;
}
.nobel--bx-29 {
  border-right: 29px #b6b6b6 solid !important;
  border-left: 29px #b6b6b6 solid !important;
}
.nobel--ba-30 {
  border: 30px #b6b6b6 solid !important;
}
.nobel--bt-30 {
  border-top: 30px #b6b6b6 solid !important;
}
.nobel--br-30 {
  border-right: 30px #b6b6b6 solid !important;
}
.nobel--bl-30 {
  border-left: 30px #b6b6b6 solid !important;
}
.nobel--bb-30 {
  border-bottom: 30px #b6b6b6 solid !important;
}
.nobel--by-30 {
  border-top: 30px #b6b6b6 solid !important;
  border-bottom: 30px #b6b6b6 solid !important;
}
.nobel--bx-30 {
  border-right: 30px #b6b6b6 solid !important;
  border-left: 30px #b6b6b6 solid !important;
}
.nobel--ba-31 {
  border: 31px #b6b6b6 solid !important;
}
.nobel--bt-31 {
  border-top: 31px #b6b6b6 solid !important;
}
.nobel--br-31 {
  border-right: 31px #b6b6b6 solid !important;
}
.nobel--bl-31 {
  border-left: 31px #b6b6b6 solid !important;
}
.nobel--bb-31 {
  border-bottom: 31px #b6b6b6 solid !important;
}
.nobel--by-31 {
  border-top: 31px #b6b6b6 solid !important;
  border-bottom: 31px #b6b6b6 solid !important;
}
.nobel--bx-31 {
  border-right: 31px #b6b6b6 solid !important;
  border-left: 31px #b6b6b6 solid !important;
}
.nobel--ba-32 {
  border: 32px #b6b6b6 solid !important;
}
.nobel--bt-32 {
  border-top: 32px #b6b6b6 solid !important;
}
.nobel--br-32 {
  border-right: 32px #b6b6b6 solid !important;
}
.nobel--bl-32 {
  border-left: 32px #b6b6b6 solid !important;
}
.nobel--bb-32 {
  border-bottom: 32px #b6b6b6 solid !important;
}
.nobel--by-32 {
  border-top: 32px #b6b6b6 solid !important;
  border-bottom: 32px #b6b6b6 solid !important;
}
.nobel--bx-32 {
  border-right: 32px #b6b6b6 solid !important;
  border-left: 32px #b6b6b6 solid !important;
}
.nobel--ba-33 {
  border: 33px #b6b6b6 solid !important;
}
.nobel--bt-33 {
  border-top: 33px #b6b6b6 solid !important;
}
.nobel--br-33 {
  border-right: 33px #b6b6b6 solid !important;
}
.nobel--bl-33 {
  border-left: 33px #b6b6b6 solid !important;
}
.nobel--bb-33 {
  border-bottom: 33px #b6b6b6 solid !important;
}
.nobel--by-33 {
  border-top: 33px #b6b6b6 solid !important;
  border-bottom: 33px #b6b6b6 solid !important;
}
.nobel--bx-33 {
  border-right: 33px #b6b6b6 solid !important;
  border-left: 33px #b6b6b6 solid !important;
}
.nobel--ba-34 {
  border: 34px #b6b6b6 solid !important;
}
.nobel--bt-34 {
  border-top: 34px #b6b6b6 solid !important;
}
.nobel--br-34 {
  border-right: 34px #b6b6b6 solid !important;
}
.nobel--bl-34 {
  border-left: 34px #b6b6b6 solid !important;
}
.nobel--bb-34 {
  border-bottom: 34px #b6b6b6 solid !important;
}
.nobel--by-34 {
  border-top: 34px #b6b6b6 solid !important;
  border-bottom: 34px #b6b6b6 solid !important;
}
.nobel--bx-34 {
  border-right: 34px #b6b6b6 solid !important;
  border-left: 34px #b6b6b6 solid !important;
}
.nobel--ba-35 {
  border: 35px #b6b6b6 solid !important;
}
.nobel--bt-35 {
  border-top: 35px #b6b6b6 solid !important;
}
.nobel--br-35 {
  border-right: 35px #b6b6b6 solid !important;
}
.nobel--bl-35 {
  border-left: 35px #b6b6b6 solid !important;
}
.nobel--bb-35 {
  border-bottom: 35px #b6b6b6 solid !important;
}
.nobel--by-35 {
  border-top: 35px #b6b6b6 solid !important;
  border-bottom: 35px #b6b6b6 solid !important;
}
.nobel--bx-35 {
  border-right: 35px #b6b6b6 solid !important;
  border-left: 35px #b6b6b6 solid !important;
}
.nobel--ba-36 {
  border: 36px #b6b6b6 solid !important;
}
.nobel--bt-36 {
  border-top: 36px #b6b6b6 solid !important;
}
.nobel--br-36 {
  border-right: 36px #b6b6b6 solid !important;
}
.nobel--bl-36 {
  border-left: 36px #b6b6b6 solid !important;
}
.nobel--bb-36 {
  border-bottom: 36px #b6b6b6 solid !important;
}
.nobel--by-36 {
  border-top: 36px #b6b6b6 solid !important;
  border-bottom: 36px #b6b6b6 solid !important;
}
.nobel--bx-36 {
  border-right: 36px #b6b6b6 solid !important;
  border-left: 36px #b6b6b6 solid !important;
}
.nobel--ba-37 {
  border: 37px #b6b6b6 solid !important;
}
.nobel--bt-37 {
  border-top: 37px #b6b6b6 solid !important;
}
.nobel--br-37 {
  border-right: 37px #b6b6b6 solid !important;
}
.nobel--bl-37 {
  border-left: 37px #b6b6b6 solid !important;
}
.nobel--bb-37 {
  border-bottom: 37px #b6b6b6 solid !important;
}
.nobel--by-37 {
  border-top: 37px #b6b6b6 solid !important;
  border-bottom: 37px #b6b6b6 solid !important;
}
.nobel--bx-37 {
  border-right: 37px #b6b6b6 solid !important;
  border-left: 37px #b6b6b6 solid !important;
}
.nobel--ba-38 {
  border: 38px #b6b6b6 solid !important;
}
.nobel--bt-38 {
  border-top: 38px #b6b6b6 solid !important;
}
.nobel--br-38 {
  border-right: 38px #b6b6b6 solid !important;
}
.nobel--bl-38 {
  border-left: 38px #b6b6b6 solid !important;
}
.nobel--bb-38 {
  border-bottom: 38px #b6b6b6 solid !important;
}
.nobel--by-38 {
  border-top: 38px #b6b6b6 solid !important;
  border-bottom: 38px #b6b6b6 solid !important;
}
.nobel--bx-38 {
  border-right: 38px #b6b6b6 solid !important;
  border-left: 38px #b6b6b6 solid !important;
}
.nobel--ba-39 {
  border: 39px #b6b6b6 solid !important;
}
.nobel--bt-39 {
  border-top: 39px #b6b6b6 solid !important;
}
.nobel--br-39 {
  border-right: 39px #b6b6b6 solid !important;
}
.nobel--bl-39 {
  border-left: 39px #b6b6b6 solid !important;
}
.nobel--bb-39 {
  border-bottom: 39px #b6b6b6 solid !important;
}
.nobel--by-39 {
  border-top: 39px #b6b6b6 solid !important;
  border-bottom: 39px #b6b6b6 solid !important;
}
.nobel--bx-39 {
  border-right: 39px #b6b6b6 solid !important;
  border-left: 39px #b6b6b6 solid !important;
}
.nobel--ba-40 {
  border: 40px #b6b6b6 solid !important;
}
.nobel--bt-40 {
  border-top: 40px #b6b6b6 solid !important;
}
.nobel--br-40 {
  border-right: 40px #b6b6b6 solid !important;
}
.nobel--bl-40 {
  border-left: 40px #b6b6b6 solid !important;
}
.nobel--bb-40 {
  border-bottom: 40px #b6b6b6 solid !important;
}
.nobel--by-40 {
  border-top: 40px #b6b6b6 solid !important;
  border-bottom: 40px #b6b6b6 solid !important;
}
.nobel--bx-40 {
  border-right: 40px #b6b6b6 solid !important;
  border-left: 40px #b6b6b6 solid !important;
}
.nobel--ba-41 {
  border: 41px #b6b6b6 solid !important;
}
.nobel--bt-41 {
  border-top: 41px #b6b6b6 solid !important;
}
.nobel--br-41 {
  border-right: 41px #b6b6b6 solid !important;
}
.nobel--bl-41 {
  border-left: 41px #b6b6b6 solid !important;
}
.nobel--bb-41 {
  border-bottom: 41px #b6b6b6 solid !important;
}
.nobel--by-41 {
  border-top: 41px #b6b6b6 solid !important;
  border-bottom: 41px #b6b6b6 solid !important;
}
.nobel--bx-41 {
  border-right: 41px #b6b6b6 solid !important;
  border-left: 41px #b6b6b6 solid !important;
}
.nobel--ba-42 {
  border: 42px #b6b6b6 solid !important;
}
.nobel--bt-42 {
  border-top: 42px #b6b6b6 solid !important;
}
.nobel--br-42 {
  border-right: 42px #b6b6b6 solid !important;
}
.nobel--bl-42 {
  border-left: 42px #b6b6b6 solid !important;
}
.nobel--bb-42 {
  border-bottom: 42px #b6b6b6 solid !important;
}
.nobel--by-42 {
  border-top: 42px #b6b6b6 solid !important;
  border-bottom: 42px #b6b6b6 solid !important;
}
.nobel--bx-42 {
  border-right: 42px #b6b6b6 solid !important;
  border-left: 42px #b6b6b6 solid !important;
}
.nobel--ba-43 {
  border: 43px #b6b6b6 solid !important;
}
.nobel--bt-43 {
  border-top: 43px #b6b6b6 solid !important;
}
.nobel--br-43 {
  border-right: 43px #b6b6b6 solid !important;
}
.nobel--bl-43 {
  border-left: 43px #b6b6b6 solid !important;
}
.nobel--bb-43 {
  border-bottom: 43px #b6b6b6 solid !important;
}
.nobel--by-43 {
  border-top: 43px #b6b6b6 solid !important;
  border-bottom: 43px #b6b6b6 solid !important;
}
.nobel--bx-43 {
  border-right: 43px #b6b6b6 solid !important;
  border-left: 43px #b6b6b6 solid !important;
}
.nobel--ba-44 {
  border: 44px #b6b6b6 solid !important;
}
.nobel--bt-44 {
  border-top: 44px #b6b6b6 solid !important;
}
.nobel--br-44 {
  border-right: 44px #b6b6b6 solid !important;
}
.nobel--bl-44 {
  border-left: 44px #b6b6b6 solid !important;
}
.nobel--bb-44 {
  border-bottom: 44px #b6b6b6 solid !important;
}
.nobel--by-44 {
  border-top: 44px #b6b6b6 solid !important;
  border-bottom: 44px #b6b6b6 solid !important;
}
.nobel--bx-44 {
  border-right: 44px #b6b6b6 solid !important;
  border-left: 44px #b6b6b6 solid !important;
}
.nobel--ba-45 {
  border: 45px #b6b6b6 solid !important;
}
.nobel--bt-45 {
  border-top: 45px #b6b6b6 solid !important;
}
.nobel--br-45 {
  border-right: 45px #b6b6b6 solid !important;
}
.nobel--bl-45 {
  border-left: 45px #b6b6b6 solid !important;
}
.nobel--bb-45 {
  border-bottom: 45px #b6b6b6 solid !important;
}
.nobel--by-45 {
  border-top: 45px #b6b6b6 solid !important;
  border-bottom: 45px #b6b6b6 solid !important;
}
.nobel--bx-45 {
  border-right: 45px #b6b6b6 solid !important;
  border-left: 45px #b6b6b6 solid !important;
}
.nobel--ba-46 {
  border: 46px #b6b6b6 solid !important;
}
.nobel--bt-46 {
  border-top: 46px #b6b6b6 solid !important;
}
.nobel--br-46 {
  border-right: 46px #b6b6b6 solid !important;
}
.nobel--bl-46 {
  border-left: 46px #b6b6b6 solid !important;
}
.nobel--bb-46 {
  border-bottom: 46px #b6b6b6 solid !important;
}
.nobel--by-46 {
  border-top: 46px #b6b6b6 solid !important;
  border-bottom: 46px #b6b6b6 solid !important;
}
.nobel--bx-46 {
  border-right: 46px #b6b6b6 solid !important;
  border-left: 46px #b6b6b6 solid !important;
}
.nobel--ba-47 {
  border: 47px #b6b6b6 solid !important;
}
.nobel--bt-47 {
  border-top: 47px #b6b6b6 solid !important;
}
.nobel--br-47 {
  border-right: 47px #b6b6b6 solid !important;
}
.nobel--bl-47 {
  border-left: 47px #b6b6b6 solid !important;
}
.nobel--bb-47 {
  border-bottom: 47px #b6b6b6 solid !important;
}
.nobel--by-47 {
  border-top: 47px #b6b6b6 solid !important;
  border-bottom: 47px #b6b6b6 solid !important;
}
.nobel--bx-47 {
  border-right: 47px #b6b6b6 solid !important;
  border-left: 47px #b6b6b6 solid !important;
}
.nobel--ba-48 {
  border: 48px #b6b6b6 solid !important;
}
.nobel--bt-48 {
  border-top: 48px #b6b6b6 solid !important;
}
.nobel--br-48 {
  border-right: 48px #b6b6b6 solid !important;
}
.nobel--bl-48 {
  border-left: 48px #b6b6b6 solid !important;
}
.nobel--bb-48 {
  border-bottom: 48px #b6b6b6 solid !important;
}
.nobel--by-48 {
  border-top: 48px #b6b6b6 solid !important;
  border-bottom: 48px #b6b6b6 solid !important;
}
.nobel--bx-48 {
  border-right: 48px #b6b6b6 solid !important;
  border-left: 48px #b6b6b6 solid !important;
}
.nobel--ba-49 {
  border: 49px #b6b6b6 solid !important;
}
.nobel--bt-49 {
  border-top: 49px #b6b6b6 solid !important;
}
.nobel--br-49 {
  border-right: 49px #b6b6b6 solid !important;
}
.nobel--bl-49 {
  border-left: 49px #b6b6b6 solid !important;
}
.nobel--bb-49 {
  border-bottom: 49px #b6b6b6 solid !important;
}
.nobel--by-49 {
  border-top: 49px #b6b6b6 solid !important;
  border-bottom: 49px #b6b6b6 solid !important;
}
.nobel--bx-49 {
  border-right: 49px #b6b6b6 solid !important;
  border-left: 49px #b6b6b6 solid !important;
}
.nobel--ba-50 {
  border: 50px #b6b6b6 solid !important;
}
.nobel--bt-50 {
  border-top: 50px #b6b6b6 solid !important;
}
.nobel--br-50 {
  border-right: 50px #b6b6b6 solid !important;
}
.nobel--bl-50 {
  border-left: 50px #b6b6b6 solid !important;
}
.nobel--bb-50 {
  border-bottom: 50px #b6b6b6 solid !important;
}
.nobel--by-50 {
  border-top: 50px #b6b6b6 solid !important;
  border-bottom: 50px #b6b6b6 solid !important;
}
.nobel--bx-50 {
  border-right: 50px #b6b6b6 solid !important;
  border-left: 50px #b6b6b6 solid !important;
}
.nobel--ba-51 {
  border: 51px #b6b6b6 solid !important;
}
.nobel--bt-51 {
  border-top: 51px #b6b6b6 solid !important;
}
.nobel--br-51 {
  border-right: 51px #b6b6b6 solid !important;
}
.nobel--bl-51 {
  border-left: 51px #b6b6b6 solid !important;
}
.nobel--bb-51 {
  border-bottom: 51px #b6b6b6 solid !important;
}
.nobel--by-51 {
  border-top: 51px #b6b6b6 solid !important;
  border-bottom: 51px #b6b6b6 solid !important;
}
.nobel--bx-51 {
  border-right: 51px #b6b6b6 solid !important;
  border-left: 51px #b6b6b6 solid !important;
}
.nobel--ba-52 {
  border: 52px #b6b6b6 solid !important;
}
.nobel--bt-52 {
  border-top: 52px #b6b6b6 solid !important;
}
.nobel--br-52 {
  border-right: 52px #b6b6b6 solid !important;
}
.nobel--bl-52 {
  border-left: 52px #b6b6b6 solid !important;
}
.nobel--bb-52 {
  border-bottom: 52px #b6b6b6 solid !important;
}
.nobel--by-52 {
  border-top: 52px #b6b6b6 solid !important;
  border-bottom: 52px #b6b6b6 solid !important;
}
.nobel--bx-52 {
  border-right: 52px #b6b6b6 solid !important;
  border-left: 52px #b6b6b6 solid !important;
}
.nobel--ba-53 {
  border: 53px #b6b6b6 solid !important;
}
.nobel--bt-53 {
  border-top: 53px #b6b6b6 solid !important;
}
.nobel--br-53 {
  border-right: 53px #b6b6b6 solid !important;
}
.nobel--bl-53 {
  border-left: 53px #b6b6b6 solid !important;
}
.nobel--bb-53 {
  border-bottom: 53px #b6b6b6 solid !important;
}
.nobel--by-53 {
  border-top: 53px #b6b6b6 solid !important;
  border-bottom: 53px #b6b6b6 solid !important;
}
.nobel--bx-53 {
  border-right: 53px #b6b6b6 solid !important;
  border-left: 53px #b6b6b6 solid !important;
}
.nobel--ba-54 {
  border: 54px #b6b6b6 solid !important;
}
.nobel--bt-54 {
  border-top: 54px #b6b6b6 solid !important;
}
.nobel--br-54 {
  border-right: 54px #b6b6b6 solid !important;
}
.nobel--bl-54 {
  border-left: 54px #b6b6b6 solid !important;
}
.nobel--bb-54 {
  border-bottom: 54px #b6b6b6 solid !important;
}
.nobel--by-54 {
  border-top: 54px #b6b6b6 solid !important;
  border-bottom: 54px #b6b6b6 solid !important;
}
.nobel--bx-54 {
  border-right: 54px #b6b6b6 solid !important;
  border-left: 54px #b6b6b6 solid !important;
}
.nobel--ba-55 {
  border: 55px #b6b6b6 solid !important;
}
.nobel--bt-55 {
  border-top: 55px #b6b6b6 solid !important;
}
.nobel--br-55 {
  border-right: 55px #b6b6b6 solid !important;
}
.nobel--bl-55 {
  border-left: 55px #b6b6b6 solid !important;
}
.nobel--bb-55 {
  border-bottom: 55px #b6b6b6 solid !important;
}
.nobel--by-55 {
  border-top: 55px #b6b6b6 solid !important;
  border-bottom: 55px #b6b6b6 solid !important;
}
.nobel--bx-55 {
  border-right: 55px #b6b6b6 solid !important;
  border-left: 55px #b6b6b6 solid !important;
}
.nobel--ba-56 {
  border: 56px #b6b6b6 solid !important;
}
.nobel--bt-56 {
  border-top: 56px #b6b6b6 solid !important;
}
.nobel--br-56 {
  border-right: 56px #b6b6b6 solid !important;
}
.nobel--bl-56 {
  border-left: 56px #b6b6b6 solid !important;
}
.nobel--bb-56 {
  border-bottom: 56px #b6b6b6 solid !important;
}
.nobel--by-56 {
  border-top: 56px #b6b6b6 solid !important;
  border-bottom: 56px #b6b6b6 solid !important;
}
.nobel--bx-56 {
  border-right: 56px #b6b6b6 solid !important;
  border-left: 56px #b6b6b6 solid !important;
}
.nobel--ba-57 {
  border: 57px #b6b6b6 solid !important;
}
.nobel--bt-57 {
  border-top: 57px #b6b6b6 solid !important;
}
.nobel--br-57 {
  border-right: 57px #b6b6b6 solid !important;
}
.nobel--bl-57 {
  border-left: 57px #b6b6b6 solid !important;
}
.nobel--bb-57 {
  border-bottom: 57px #b6b6b6 solid !important;
}
.nobel--by-57 {
  border-top: 57px #b6b6b6 solid !important;
  border-bottom: 57px #b6b6b6 solid !important;
}
.nobel--bx-57 {
  border-right: 57px #b6b6b6 solid !important;
  border-left: 57px #b6b6b6 solid !important;
}
.nobel--ba-58 {
  border: 58px #b6b6b6 solid !important;
}
.nobel--bt-58 {
  border-top: 58px #b6b6b6 solid !important;
}
.nobel--br-58 {
  border-right: 58px #b6b6b6 solid !important;
}
.nobel--bl-58 {
  border-left: 58px #b6b6b6 solid !important;
}
.nobel--bb-58 {
  border-bottom: 58px #b6b6b6 solid !important;
}
.nobel--by-58 {
  border-top: 58px #b6b6b6 solid !important;
  border-bottom: 58px #b6b6b6 solid !important;
}
.nobel--bx-58 {
  border-right: 58px #b6b6b6 solid !important;
  border-left: 58px #b6b6b6 solid !important;
}
.nobel--ba-59 {
  border: 59px #b6b6b6 solid !important;
}
.nobel--bt-59 {
  border-top: 59px #b6b6b6 solid !important;
}
.nobel--br-59 {
  border-right: 59px #b6b6b6 solid !important;
}
.nobel--bl-59 {
  border-left: 59px #b6b6b6 solid !important;
}
.nobel--bb-59 {
  border-bottom: 59px #b6b6b6 solid !important;
}
.nobel--by-59 {
  border-top: 59px #b6b6b6 solid !important;
  border-bottom: 59px #b6b6b6 solid !important;
}
.nobel--bx-59 {
  border-right: 59px #b6b6b6 solid !important;
  border-left: 59px #b6b6b6 solid !important;
}
.nobel--ba-60 {
  border: 60px #b6b6b6 solid !important;
}
.nobel--bt-60 {
  border-top: 60px #b6b6b6 solid !important;
}
.nobel--br-60 {
  border-right: 60px #b6b6b6 solid !important;
}
.nobel--bl-60 {
  border-left: 60px #b6b6b6 solid !important;
}
.nobel--bb-60 {
  border-bottom: 60px #b6b6b6 solid !important;
}
.nobel--by-60 {
  border-top: 60px #b6b6b6 solid !important;
  border-bottom: 60px #b6b6b6 solid !important;
}
.nobel--bx-60 {
  border-right: 60px #b6b6b6 solid !important;
  border-left: 60px #b6b6b6 solid !important;
}
.nobel--ba-61 {
  border: 61px #b6b6b6 solid !important;
}
.nobel--bt-61 {
  border-top: 61px #b6b6b6 solid !important;
}
.nobel--br-61 {
  border-right: 61px #b6b6b6 solid !important;
}
.nobel--bl-61 {
  border-left: 61px #b6b6b6 solid !important;
}
.nobel--bb-61 {
  border-bottom: 61px #b6b6b6 solid !important;
}
.nobel--by-61 {
  border-top: 61px #b6b6b6 solid !important;
  border-bottom: 61px #b6b6b6 solid !important;
}
.nobel--bx-61 {
  border-right: 61px #b6b6b6 solid !important;
  border-left: 61px #b6b6b6 solid !important;
}
.nobel--ba-62 {
  border: 62px #b6b6b6 solid !important;
}
.nobel--bt-62 {
  border-top: 62px #b6b6b6 solid !important;
}
.nobel--br-62 {
  border-right: 62px #b6b6b6 solid !important;
}
.nobel--bl-62 {
  border-left: 62px #b6b6b6 solid !important;
}
.nobel--bb-62 {
  border-bottom: 62px #b6b6b6 solid !important;
}
.nobel--by-62 {
  border-top: 62px #b6b6b6 solid !important;
  border-bottom: 62px #b6b6b6 solid !important;
}
.nobel--bx-62 {
  border-right: 62px #b6b6b6 solid !important;
  border-left: 62px #b6b6b6 solid !important;
}
.nobel--ba-63 {
  border: 63px #b6b6b6 solid !important;
}
.nobel--bt-63 {
  border-top: 63px #b6b6b6 solid !important;
}
.nobel--br-63 {
  border-right: 63px #b6b6b6 solid !important;
}
.nobel--bl-63 {
  border-left: 63px #b6b6b6 solid !important;
}
.nobel--bb-63 {
  border-bottom: 63px #b6b6b6 solid !important;
}
.nobel--by-63 {
  border-top: 63px #b6b6b6 solid !important;
  border-bottom: 63px #b6b6b6 solid !important;
}
.nobel--bx-63 {
  border-right: 63px #b6b6b6 solid !important;
  border-left: 63px #b6b6b6 solid !important;
}
.nobel--ba-64 {
  border: 64px #b6b6b6 solid !important;
}
.nobel--bt-64 {
  border-top: 64px #b6b6b6 solid !important;
}
.nobel--br-64 {
  border-right: 64px #b6b6b6 solid !important;
}
.nobel--bl-64 {
  border-left: 64px #b6b6b6 solid !important;
}
.nobel--bb-64 {
  border-bottom: 64px #b6b6b6 solid !important;
}
.nobel--by-64 {
  border-top: 64px #b6b6b6 solid !important;
  border-bottom: 64px #b6b6b6 solid !important;
}
.nobel--bx-64 {
  border-right: 64px #b6b6b6 solid !important;
  border-left: 64px #b6b6b6 solid !important;
}
.nobel--ba-65 {
  border: 65px #b6b6b6 solid !important;
}
.nobel--bt-65 {
  border-top: 65px #b6b6b6 solid !important;
}
.nobel--br-65 {
  border-right: 65px #b6b6b6 solid !important;
}
.nobel--bl-65 {
  border-left: 65px #b6b6b6 solid !important;
}
.nobel--bb-65 {
  border-bottom: 65px #b6b6b6 solid !important;
}
.nobel--by-65 {
  border-top: 65px #b6b6b6 solid !important;
  border-bottom: 65px #b6b6b6 solid !important;
}
.nobel--bx-65 {
  border-right: 65px #b6b6b6 solid !important;
  border-left: 65px #b6b6b6 solid !important;
}
.nobel--ba-66 {
  border: 66px #b6b6b6 solid !important;
}
.nobel--bt-66 {
  border-top: 66px #b6b6b6 solid !important;
}
.nobel--br-66 {
  border-right: 66px #b6b6b6 solid !important;
}
.nobel--bl-66 {
  border-left: 66px #b6b6b6 solid !important;
}
.nobel--bb-66 {
  border-bottom: 66px #b6b6b6 solid !important;
}
.nobel--by-66 {
  border-top: 66px #b6b6b6 solid !important;
  border-bottom: 66px #b6b6b6 solid !important;
}
.nobel--bx-66 {
  border-right: 66px #b6b6b6 solid !important;
  border-left: 66px #b6b6b6 solid !important;
}
.nobel--ba-67 {
  border: 67px #b6b6b6 solid !important;
}
.nobel--bt-67 {
  border-top: 67px #b6b6b6 solid !important;
}
.nobel--br-67 {
  border-right: 67px #b6b6b6 solid !important;
}
.nobel--bl-67 {
  border-left: 67px #b6b6b6 solid !important;
}
.nobel--bb-67 {
  border-bottom: 67px #b6b6b6 solid !important;
}
.nobel--by-67 {
  border-top: 67px #b6b6b6 solid !important;
  border-bottom: 67px #b6b6b6 solid !important;
}
.nobel--bx-67 {
  border-right: 67px #b6b6b6 solid !important;
  border-left: 67px #b6b6b6 solid !important;
}
.nobel--ba-68 {
  border: 68px #b6b6b6 solid !important;
}
.nobel--bt-68 {
  border-top: 68px #b6b6b6 solid !important;
}
.nobel--br-68 {
  border-right: 68px #b6b6b6 solid !important;
}
.nobel--bl-68 {
  border-left: 68px #b6b6b6 solid !important;
}
.nobel--bb-68 {
  border-bottom: 68px #b6b6b6 solid !important;
}
.nobel--by-68 {
  border-top: 68px #b6b6b6 solid !important;
  border-bottom: 68px #b6b6b6 solid !important;
}
.nobel--bx-68 {
  border-right: 68px #b6b6b6 solid !important;
  border-left: 68px #b6b6b6 solid !important;
}
.nobel--ba-69 {
  border: 69px #b6b6b6 solid !important;
}
.nobel--bt-69 {
  border-top: 69px #b6b6b6 solid !important;
}
.nobel--br-69 {
  border-right: 69px #b6b6b6 solid !important;
}
.nobel--bl-69 {
  border-left: 69px #b6b6b6 solid !important;
}
.nobel--bb-69 {
  border-bottom: 69px #b6b6b6 solid !important;
}
.nobel--by-69 {
  border-top: 69px #b6b6b6 solid !important;
  border-bottom: 69px #b6b6b6 solid !important;
}
.nobel--bx-69 {
  border-right: 69px #b6b6b6 solid !important;
  border-left: 69px #b6b6b6 solid !important;
}
.nobel--ba-70 {
  border: 70px #b6b6b6 solid !important;
}
.nobel--bt-70 {
  border-top: 70px #b6b6b6 solid !important;
}
.nobel--br-70 {
  border-right: 70px #b6b6b6 solid !important;
}
.nobel--bl-70 {
  border-left: 70px #b6b6b6 solid !important;
}
.nobel--bb-70 {
  border-bottom: 70px #b6b6b6 solid !important;
}
.nobel--by-70 {
  border-top: 70px #b6b6b6 solid !important;
  border-bottom: 70px #b6b6b6 solid !important;
}
.nobel--bx-70 {
  border-right: 70px #b6b6b6 solid !important;
  border-left: 70px #b6b6b6 solid !important;
}
.nobel--ba-71 {
  border: 71px #b6b6b6 solid !important;
}
.nobel--bt-71 {
  border-top: 71px #b6b6b6 solid !important;
}
.nobel--br-71 {
  border-right: 71px #b6b6b6 solid !important;
}
.nobel--bl-71 {
  border-left: 71px #b6b6b6 solid !important;
}
.nobel--bb-71 {
  border-bottom: 71px #b6b6b6 solid !important;
}
.nobel--by-71 {
  border-top: 71px #b6b6b6 solid !important;
  border-bottom: 71px #b6b6b6 solid !important;
}
.nobel--bx-71 {
  border-right: 71px #b6b6b6 solid !important;
  border-left: 71px #b6b6b6 solid !important;
}
.nobel--ba-72 {
  border: 72px #b6b6b6 solid !important;
}
.nobel--bt-72 {
  border-top: 72px #b6b6b6 solid !important;
}
.nobel--br-72 {
  border-right: 72px #b6b6b6 solid !important;
}
.nobel--bl-72 {
  border-left: 72px #b6b6b6 solid !important;
}
.nobel--bb-72 {
  border-bottom: 72px #b6b6b6 solid !important;
}
.nobel--by-72 {
  border-top: 72px #b6b6b6 solid !important;
  border-bottom: 72px #b6b6b6 solid !important;
}
.nobel--bx-72 {
  border-right: 72px #b6b6b6 solid !important;
  border-left: 72px #b6b6b6 solid !important;
}
.nobel--ba-73 {
  border: 73px #b6b6b6 solid !important;
}
.nobel--bt-73 {
  border-top: 73px #b6b6b6 solid !important;
}
.nobel--br-73 {
  border-right: 73px #b6b6b6 solid !important;
}
.nobel--bl-73 {
  border-left: 73px #b6b6b6 solid !important;
}
.nobel--bb-73 {
  border-bottom: 73px #b6b6b6 solid !important;
}
.nobel--by-73 {
  border-top: 73px #b6b6b6 solid !important;
  border-bottom: 73px #b6b6b6 solid !important;
}
.nobel--bx-73 {
  border-right: 73px #b6b6b6 solid !important;
  border-left: 73px #b6b6b6 solid !important;
}
.nobel--ba-74 {
  border: 74px #b6b6b6 solid !important;
}
.nobel--bt-74 {
  border-top: 74px #b6b6b6 solid !important;
}
.nobel--br-74 {
  border-right: 74px #b6b6b6 solid !important;
}
.nobel--bl-74 {
  border-left: 74px #b6b6b6 solid !important;
}
.nobel--bb-74 {
  border-bottom: 74px #b6b6b6 solid !important;
}
.nobel--by-74 {
  border-top: 74px #b6b6b6 solid !important;
  border-bottom: 74px #b6b6b6 solid !important;
}
.nobel--bx-74 {
  border-right: 74px #b6b6b6 solid !important;
  border-left: 74px #b6b6b6 solid !important;
}
.nobel--ba-75 {
  border: 75px #b6b6b6 solid !important;
}
.nobel--bt-75 {
  border-top: 75px #b6b6b6 solid !important;
}
.nobel--br-75 {
  border-right: 75px #b6b6b6 solid !important;
}
.nobel--bl-75 {
  border-left: 75px #b6b6b6 solid !important;
}
.nobel--bb-75 {
  border-bottom: 75px #b6b6b6 solid !important;
}
.nobel--by-75 {
  border-top: 75px #b6b6b6 solid !important;
  border-bottom: 75px #b6b6b6 solid !important;
}
.nobel--bx-75 {
  border-right: 75px #b6b6b6 solid !important;
  border-left: 75px #b6b6b6 solid !important;
}
.nobel--ba-76 {
  border: 76px #b6b6b6 solid !important;
}
.nobel--bt-76 {
  border-top: 76px #b6b6b6 solid !important;
}
.nobel--br-76 {
  border-right: 76px #b6b6b6 solid !important;
}
.nobel--bl-76 {
  border-left: 76px #b6b6b6 solid !important;
}
.nobel--bb-76 {
  border-bottom: 76px #b6b6b6 solid !important;
}
.nobel--by-76 {
  border-top: 76px #b6b6b6 solid !important;
  border-bottom: 76px #b6b6b6 solid !important;
}
.nobel--bx-76 {
  border-right: 76px #b6b6b6 solid !important;
  border-left: 76px #b6b6b6 solid !important;
}
.nobel--ba-77 {
  border: 77px #b6b6b6 solid !important;
}
.nobel--bt-77 {
  border-top: 77px #b6b6b6 solid !important;
}
.nobel--br-77 {
  border-right: 77px #b6b6b6 solid !important;
}
.nobel--bl-77 {
  border-left: 77px #b6b6b6 solid !important;
}
.nobel--bb-77 {
  border-bottom: 77px #b6b6b6 solid !important;
}
.nobel--by-77 {
  border-top: 77px #b6b6b6 solid !important;
  border-bottom: 77px #b6b6b6 solid !important;
}
.nobel--bx-77 {
  border-right: 77px #b6b6b6 solid !important;
  border-left: 77px #b6b6b6 solid !important;
}
.nobel--ba-78 {
  border: 78px #b6b6b6 solid !important;
}
.nobel--bt-78 {
  border-top: 78px #b6b6b6 solid !important;
}
.nobel--br-78 {
  border-right: 78px #b6b6b6 solid !important;
}
.nobel--bl-78 {
  border-left: 78px #b6b6b6 solid !important;
}
.nobel--bb-78 {
  border-bottom: 78px #b6b6b6 solid !important;
}
.nobel--by-78 {
  border-top: 78px #b6b6b6 solid !important;
  border-bottom: 78px #b6b6b6 solid !important;
}
.nobel--bx-78 {
  border-right: 78px #b6b6b6 solid !important;
  border-left: 78px #b6b6b6 solid !important;
}
.nobel--ba-79 {
  border: 79px #b6b6b6 solid !important;
}
.nobel--bt-79 {
  border-top: 79px #b6b6b6 solid !important;
}
.nobel--br-79 {
  border-right: 79px #b6b6b6 solid !important;
}
.nobel--bl-79 {
  border-left: 79px #b6b6b6 solid !important;
}
.nobel--bb-79 {
  border-bottom: 79px #b6b6b6 solid !important;
}
.nobel--by-79 {
  border-top: 79px #b6b6b6 solid !important;
  border-bottom: 79px #b6b6b6 solid !important;
}
.nobel--bx-79 {
  border-right: 79px #b6b6b6 solid !important;
  border-left: 79px #b6b6b6 solid !important;
}
.nobel--ba-80 {
  border: 80px #b6b6b6 solid !important;
}
.nobel--bt-80 {
  border-top: 80px #b6b6b6 solid !important;
}
.nobel--br-80 {
  border-right: 80px #b6b6b6 solid !important;
}
.nobel--bl-80 {
  border-left: 80px #b6b6b6 solid !important;
}
.nobel--bb-80 {
  border-bottom: 80px #b6b6b6 solid !important;
}
.nobel--by-80 {
  border-top: 80px #b6b6b6 solid !important;
  border-bottom: 80px #b6b6b6 solid !important;
}
.nobel--bx-80 {
  border-right: 80px #b6b6b6 solid !important;
  border-left: 80px #b6b6b6 solid !important;
}
.nobel--ba-81 {
  border: 81px #b6b6b6 solid !important;
}
.nobel--bt-81 {
  border-top: 81px #b6b6b6 solid !important;
}
.nobel--br-81 {
  border-right: 81px #b6b6b6 solid !important;
}
.nobel--bl-81 {
  border-left: 81px #b6b6b6 solid !important;
}
.nobel--bb-81 {
  border-bottom: 81px #b6b6b6 solid !important;
}
.nobel--by-81 {
  border-top: 81px #b6b6b6 solid !important;
  border-bottom: 81px #b6b6b6 solid !important;
}
.nobel--bx-81 {
  border-right: 81px #b6b6b6 solid !important;
  border-left: 81px #b6b6b6 solid !important;
}
.nobel--ba-82 {
  border: 82px #b6b6b6 solid !important;
}
.nobel--bt-82 {
  border-top: 82px #b6b6b6 solid !important;
}
.nobel--br-82 {
  border-right: 82px #b6b6b6 solid !important;
}
.nobel--bl-82 {
  border-left: 82px #b6b6b6 solid !important;
}
.nobel--bb-82 {
  border-bottom: 82px #b6b6b6 solid !important;
}
.nobel--by-82 {
  border-top: 82px #b6b6b6 solid !important;
  border-bottom: 82px #b6b6b6 solid !important;
}
.nobel--bx-82 {
  border-right: 82px #b6b6b6 solid !important;
  border-left: 82px #b6b6b6 solid !important;
}
.nobel--ba-83 {
  border: 83px #b6b6b6 solid !important;
}
.nobel--bt-83 {
  border-top: 83px #b6b6b6 solid !important;
}
.nobel--br-83 {
  border-right: 83px #b6b6b6 solid !important;
}
.nobel--bl-83 {
  border-left: 83px #b6b6b6 solid !important;
}
.nobel--bb-83 {
  border-bottom: 83px #b6b6b6 solid !important;
}
.nobel--by-83 {
  border-top: 83px #b6b6b6 solid !important;
  border-bottom: 83px #b6b6b6 solid !important;
}
.nobel--bx-83 {
  border-right: 83px #b6b6b6 solid !important;
  border-left: 83px #b6b6b6 solid !important;
}
.nobel--ba-84 {
  border: 84px #b6b6b6 solid !important;
}
.nobel--bt-84 {
  border-top: 84px #b6b6b6 solid !important;
}
.nobel--br-84 {
  border-right: 84px #b6b6b6 solid !important;
}
.nobel--bl-84 {
  border-left: 84px #b6b6b6 solid !important;
}
.nobel--bb-84 {
  border-bottom: 84px #b6b6b6 solid !important;
}
.nobel--by-84 {
  border-top: 84px #b6b6b6 solid !important;
  border-bottom: 84px #b6b6b6 solid !important;
}
.nobel--bx-84 {
  border-right: 84px #b6b6b6 solid !important;
  border-left: 84px #b6b6b6 solid !important;
}
.nobel--ba-85 {
  border: 85px #b6b6b6 solid !important;
}
.nobel--bt-85 {
  border-top: 85px #b6b6b6 solid !important;
}
.nobel--br-85 {
  border-right: 85px #b6b6b6 solid !important;
}
.nobel--bl-85 {
  border-left: 85px #b6b6b6 solid !important;
}
.nobel--bb-85 {
  border-bottom: 85px #b6b6b6 solid !important;
}
.nobel--by-85 {
  border-top: 85px #b6b6b6 solid !important;
  border-bottom: 85px #b6b6b6 solid !important;
}
.nobel--bx-85 {
  border-right: 85px #b6b6b6 solid !important;
  border-left: 85px #b6b6b6 solid !important;
}
.nobel--ba-86 {
  border: 86px #b6b6b6 solid !important;
}
.nobel--bt-86 {
  border-top: 86px #b6b6b6 solid !important;
}
.nobel--br-86 {
  border-right: 86px #b6b6b6 solid !important;
}
.nobel--bl-86 {
  border-left: 86px #b6b6b6 solid !important;
}
.nobel--bb-86 {
  border-bottom: 86px #b6b6b6 solid !important;
}
.nobel--by-86 {
  border-top: 86px #b6b6b6 solid !important;
  border-bottom: 86px #b6b6b6 solid !important;
}
.nobel--bx-86 {
  border-right: 86px #b6b6b6 solid !important;
  border-left: 86px #b6b6b6 solid !important;
}
.nobel--ba-87 {
  border: 87px #b6b6b6 solid !important;
}
.nobel--bt-87 {
  border-top: 87px #b6b6b6 solid !important;
}
.nobel--br-87 {
  border-right: 87px #b6b6b6 solid !important;
}
.nobel--bl-87 {
  border-left: 87px #b6b6b6 solid !important;
}
.nobel--bb-87 {
  border-bottom: 87px #b6b6b6 solid !important;
}
.nobel--by-87 {
  border-top: 87px #b6b6b6 solid !important;
  border-bottom: 87px #b6b6b6 solid !important;
}
.nobel--bx-87 {
  border-right: 87px #b6b6b6 solid !important;
  border-left: 87px #b6b6b6 solid !important;
}
.nobel--ba-88 {
  border: 88px #b6b6b6 solid !important;
}
.nobel--bt-88 {
  border-top: 88px #b6b6b6 solid !important;
}
.nobel--br-88 {
  border-right: 88px #b6b6b6 solid !important;
}
.nobel--bl-88 {
  border-left: 88px #b6b6b6 solid !important;
}
.nobel--bb-88 {
  border-bottom: 88px #b6b6b6 solid !important;
}
.nobel--by-88 {
  border-top: 88px #b6b6b6 solid !important;
  border-bottom: 88px #b6b6b6 solid !important;
}
.nobel--bx-88 {
  border-right: 88px #b6b6b6 solid !important;
  border-left: 88px #b6b6b6 solid !important;
}
.nobel--ba-89 {
  border: 89px #b6b6b6 solid !important;
}
.nobel--bt-89 {
  border-top: 89px #b6b6b6 solid !important;
}
.nobel--br-89 {
  border-right: 89px #b6b6b6 solid !important;
}
.nobel--bl-89 {
  border-left: 89px #b6b6b6 solid !important;
}
.nobel--bb-89 {
  border-bottom: 89px #b6b6b6 solid !important;
}
.nobel--by-89 {
  border-top: 89px #b6b6b6 solid !important;
  border-bottom: 89px #b6b6b6 solid !important;
}
.nobel--bx-89 {
  border-right: 89px #b6b6b6 solid !important;
  border-left: 89px #b6b6b6 solid !important;
}
.nobel--ba-90 {
  border: 90px #b6b6b6 solid !important;
}
.nobel--bt-90 {
  border-top: 90px #b6b6b6 solid !important;
}
.nobel--br-90 {
  border-right: 90px #b6b6b6 solid !important;
}
.nobel--bl-90 {
  border-left: 90px #b6b6b6 solid !important;
}
.nobel--bb-90 {
  border-bottom: 90px #b6b6b6 solid !important;
}
.nobel--by-90 {
  border-top: 90px #b6b6b6 solid !important;
  border-bottom: 90px #b6b6b6 solid !important;
}
.nobel--bx-90 {
  border-right: 90px #b6b6b6 solid !important;
  border-left: 90px #b6b6b6 solid !important;
}
.nobel--ba-91 {
  border: 91px #b6b6b6 solid !important;
}
.nobel--bt-91 {
  border-top: 91px #b6b6b6 solid !important;
}
.nobel--br-91 {
  border-right: 91px #b6b6b6 solid !important;
}
.nobel--bl-91 {
  border-left: 91px #b6b6b6 solid !important;
}
.nobel--bb-91 {
  border-bottom: 91px #b6b6b6 solid !important;
}
.nobel--by-91 {
  border-top: 91px #b6b6b6 solid !important;
  border-bottom: 91px #b6b6b6 solid !important;
}
.nobel--bx-91 {
  border-right: 91px #b6b6b6 solid !important;
  border-left: 91px #b6b6b6 solid !important;
}
.nobel--ba-92 {
  border: 92px #b6b6b6 solid !important;
}
.nobel--bt-92 {
  border-top: 92px #b6b6b6 solid !important;
}
.nobel--br-92 {
  border-right: 92px #b6b6b6 solid !important;
}
.nobel--bl-92 {
  border-left: 92px #b6b6b6 solid !important;
}
.nobel--bb-92 {
  border-bottom: 92px #b6b6b6 solid !important;
}
.nobel--by-92 {
  border-top: 92px #b6b6b6 solid !important;
  border-bottom: 92px #b6b6b6 solid !important;
}
.nobel--bx-92 {
  border-right: 92px #b6b6b6 solid !important;
  border-left: 92px #b6b6b6 solid !important;
}
.nobel--ba-93 {
  border: 93px #b6b6b6 solid !important;
}
.nobel--bt-93 {
  border-top: 93px #b6b6b6 solid !important;
}
.nobel--br-93 {
  border-right: 93px #b6b6b6 solid !important;
}
.nobel--bl-93 {
  border-left: 93px #b6b6b6 solid !important;
}
.nobel--bb-93 {
  border-bottom: 93px #b6b6b6 solid !important;
}
.nobel--by-93 {
  border-top: 93px #b6b6b6 solid !important;
  border-bottom: 93px #b6b6b6 solid !important;
}
.nobel--bx-93 {
  border-right: 93px #b6b6b6 solid !important;
  border-left: 93px #b6b6b6 solid !important;
}
.nobel--ba-94 {
  border: 94px #b6b6b6 solid !important;
}
.nobel--bt-94 {
  border-top: 94px #b6b6b6 solid !important;
}
.nobel--br-94 {
  border-right: 94px #b6b6b6 solid !important;
}
.nobel--bl-94 {
  border-left: 94px #b6b6b6 solid !important;
}
.nobel--bb-94 {
  border-bottom: 94px #b6b6b6 solid !important;
}
.nobel--by-94 {
  border-top: 94px #b6b6b6 solid !important;
  border-bottom: 94px #b6b6b6 solid !important;
}
.nobel--bx-94 {
  border-right: 94px #b6b6b6 solid !important;
  border-left: 94px #b6b6b6 solid !important;
}
.nobel--ba-95 {
  border: 95px #b6b6b6 solid !important;
}
.nobel--bt-95 {
  border-top: 95px #b6b6b6 solid !important;
}
.nobel--br-95 {
  border-right: 95px #b6b6b6 solid !important;
}
.nobel--bl-95 {
  border-left: 95px #b6b6b6 solid !important;
}
.nobel--bb-95 {
  border-bottom: 95px #b6b6b6 solid !important;
}
.nobel--by-95 {
  border-top: 95px #b6b6b6 solid !important;
  border-bottom: 95px #b6b6b6 solid !important;
}
.nobel--bx-95 {
  border-right: 95px #b6b6b6 solid !important;
  border-left: 95px #b6b6b6 solid !important;
}
.nobel--ba-96 {
  border: 96px #b6b6b6 solid !important;
}
.nobel--bt-96 {
  border-top: 96px #b6b6b6 solid !important;
}
.nobel--br-96 {
  border-right: 96px #b6b6b6 solid !important;
}
.nobel--bl-96 {
  border-left: 96px #b6b6b6 solid !important;
}
.nobel--bb-96 {
  border-bottom: 96px #b6b6b6 solid !important;
}
.nobel--by-96 {
  border-top: 96px #b6b6b6 solid !important;
  border-bottom: 96px #b6b6b6 solid !important;
}
.nobel--bx-96 {
  border-right: 96px #b6b6b6 solid !important;
  border-left: 96px #b6b6b6 solid !important;
}
.nobel--ba-97 {
  border: 97px #b6b6b6 solid !important;
}
.nobel--bt-97 {
  border-top: 97px #b6b6b6 solid !important;
}
.nobel--br-97 {
  border-right: 97px #b6b6b6 solid !important;
}
.nobel--bl-97 {
  border-left: 97px #b6b6b6 solid !important;
}
.nobel--bb-97 {
  border-bottom: 97px #b6b6b6 solid !important;
}
.nobel--by-97 {
  border-top: 97px #b6b6b6 solid !important;
  border-bottom: 97px #b6b6b6 solid !important;
}
.nobel--bx-97 {
  border-right: 97px #b6b6b6 solid !important;
  border-left: 97px #b6b6b6 solid !important;
}
.nobel--ba-98 {
  border: 98px #b6b6b6 solid !important;
}
.nobel--bt-98 {
  border-top: 98px #b6b6b6 solid !important;
}
.nobel--br-98 {
  border-right: 98px #b6b6b6 solid !important;
}
.nobel--bl-98 {
  border-left: 98px #b6b6b6 solid !important;
}
.nobel--bb-98 {
  border-bottom: 98px #b6b6b6 solid !important;
}
.nobel--by-98 {
  border-top: 98px #b6b6b6 solid !important;
  border-bottom: 98px #b6b6b6 solid !important;
}
.nobel--bx-98 {
  border-right: 98px #b6b6b6 solid !important;
  border-left: 98px #b6b6b6 solid !important;
}
.nobel--ba-99 {
  border: 99px #b6b6b6 solid !important;
}
.nobel--bt-99 {
  border-top: 99px #b6b6b6 solid !important;
}
.nobel--br-99 {
  border-right: 99px #b6b6b6 solid !important;
}
.nobel--bl-99 {
  border-left: 99px #b6b6b6 solid !important;
}
.nobel--bb-99 {
  border-bottom: 99px #b6b6b6 solid !important;
}
.nobel--by-99 {
  border-top: 99px #b6b6b6 solid !important;
  border-bottom: 99px #b6b6b6 solid !important;
}
.nobel--bx-99 {
  border-right: 99px #b6b6b6 solid !important;
  border-left: 99px #b6b6b6 solid !important;
}
.nobel--ba-100 {
  border: 100px #b6b6b6 solid !important;
}
.nobel--bt-100 {
  border-top: 100px #b6b6b6 solid !important;
}
.nobel--br-100 {
  border-right: 100px #b6b6b6 solid !important;
}
.nobel--bl-100 {
  border-left: 100px #b6b6b6 solid !important;
}
.nobel--bb-100 {
  border-bottom: 100px #b6b6b6 solid !important;
}
.nobel--by-100 {
  border-top: 100px #b6b6b6 solid !important;
  border-bottom: 100px #b6b6b6 solid !important;
}
.nobel--bx-100 {
  border-right: 100px #b6b6b6 solid !important;
  border-left: 100px #b6b6b6 solid !important;
}
.outer-space--ba-1 {
  border: 1px #343a40 solid !important;
}
.outer-space--bt-1 {
  border-top: 1px #343a40 solid !important;
}
.outer-space--br-1 {
  border-right: 1px #343a40 solid !important;
}
.outer-space--bl-1 {
  border-left: 1px #343a40 solid !important;
}
.outer-space--bb-1 {
  border-bottom: 1px #343a40 solid !important;
}
.outer-space--by-1 {
  border-top: 1px #343a40 solid !important;
  border-bottom: 1px #343a40 solid !important;
}
.outer-space--bx-1 {
  border-right: 1px #343a40 solid !important;
  border-left: 1px #343a40 solid !important;
}
.outer-space--ba-2 {
  border: 2px #343a40 solid !important;
}
.outer-space--bt-2 {
  border-top: 2px #343a40 solid !important;
}
.outer-space--br-2 {
  border-right: 2px #343a40 solid !important;
}
.outer-space--bl-2 {
  border-left: 2px #343a40 solid !important;
}
.outer-space--bb-2 {
  border-bottom: 2px #343a40 solid !important;
}
.outer-space--by-2 {
  border-top: 2px #343a40 solid !important;
  border-bottom: 2px #343a40 solid !important;
}
.outer-space--bx-2 {
  border-right: 2px #343a40 solid !important;
  border-left: 2px #343a40 solid !important;
}
.outer-space--ba-3 {
  border: 3px #343a40 solid !important;
}
.outer-space--bt-3 {
  border-top: 3px #343a40 solid !important;
}
.outer-space--br-3 {
  border-right: 3px #343a40 solid !important;
}
.outer-space--bl-3 {
  border-left: 3px #343a40 solid !important;
}
.outer-space--bb-3 {
  border-bottom: 3px #343a40 solid !important;
}
.outer-space--by-3 {
  border-top: 3px #343a40 solid !important;
  border-bottom: 3px #343a40 solid !important;
}
.outer-space--bx-3 {
  border-right: 3px #343a40 solid !important;
  border-left: 3px #343a40 solid !important;
}
.outer-space--ba-4 {
  border: 4px #343a40 solid !important;
}
.outer-space--bt-4 {
  border-top: 4px #343a40 solid !important;
}
.outer-space--br-4 {
  border-right: 4px #343a40 solid !important;
}
.outer-space--bl-4 {
  border-left: 4px #343a40 solid !important;
}
.outer-space--bb-4 {
  border-bottom: 4px #343a40 solid !important;
}
.outer-space--by-4 {
  border-top: 4px #343a40 solid !important;
  border-bottom: 4px #343a40 solid !important;
}
.outer-space--bx-4 {
  border-right: 4px #343a40 solid !important;
  border-left: 4px #343a40 solid !important;
}
.outer-space--ba-5 {
  border: 5px #343a40 solid !important;
}
.outer-space--bt-5 {
  border-top: 5px #343a40 solid !important;
}
.outer-space--br-5 {
  border-right: 5px #343a40 solid !important;
}
.outer-space--bl-5 {
  border-left: 5px #343a40 solid !important;
}
.outer-space--bb-5 {
  border-bottom: 5px #343a40 solid !important;
}
.outer-space--by-5 {
  border-top: 5px #343a40 solid !important;
  border-bottom: 5px #343a40 solid !important;
}
.outer-space--bx-5 {
  border-right: 5px #343a40 solid !important;
  border-left: 5px #343a40 solid !important;
}
.outer-space--ba-6 {
  border: 6px #343a40 solid !important;
}
.outer-space--bt-6 {
  border-top: 6px #343a40 solid !important;
}
.outer-space--br-6 {
  border-right: 6px #343a40 solid !important;
}
.outer-space--bl-6 {
  border-left: 6px #343a40 solid !important;
}
.outer-space--bb-6 {
  border-bottom: 6px #343a40 solid !important;
}
.outer-space--by-6 {
  border-top: 6px #343a40 solid !important;
  border-bottom: 6px #343a40 solid !important;
}
.outer-space--bx-6 {
  border-right: 6px #343a40 solid !important;
  border-left: 6px #343a40 solid !important;
}
.outer-space--ba-7 {
  border: 7px #343a40 solid !important;
}
.outer-space--bt-7 {
  border-top: 7px #343a40 solid !important;
}
.outer-space--br-7 {
  border-right: 7px #343a40 solid !important;
}
.outer-space--bl-7 {
  border-left: 7px #343a40 solid !important;
}
.outer-space--bb-7 {
  border-bottom: 7px #343a40 solid !important;
}
.outer-space--by-7 {
  border-top: 7px #343a40 solid !important;
  border-bottom: 7px #343a40 solid !important;
}
.outer-space--bx-7 {
  border-right: 7px #343a40 solid !important;
  border-left: 7px #343a40 solid !important;
}
.outer-space--ba-8 {
  border: 8px #343a40 solid !important;
}
.outer-space--bt-8 {
  border-top: 8px #343a40 solid !important;
}
.outer-space--br-8 {
  border-right: 8px #343a40 solid !important;
}
.outer-space--bl-8 {
  border-left: 8px #343a40 solid !important;
}
.outer-space--bb-8 {
  border-bottom: 8px #343a40 solid !important;
}
.outer-space--by-8 {
  border-top: 8px #343a40 solid !important;
  border-bottom: 8px #343a40 solid !important;
}
.outer-space--bx-8 {
  border-right: 8px #343a40 solid !important;
  border-left: 8px #343a40 solid !important;
}
.outer-space--ba-9 {
  border: 9px #343a40 solid !important;
}
.outer-space--bt-9 {
  border-top: 9px #343a40 solid !important;
}
.outer-space--br-9 {
  border-right: 9px #343a40 solid !important;
}
.outer-space--bl-9 {
  border-left: 9px #343a40 solid !important;
}
.outer-space--bb-9 {
  border-bottom: 9px #343a40 solid !important;
}
.outer-space--by-9 {
  border-top: 9px #343a40 solid !important;
  border-bottom: 9px #343a40 solid !important;
}
.outer-space--bx-9 {
  border-right: 9px #343a40 solid !important;
  border-left: 9px #343a40 solid !important;
}
.outer-space--ba-10 {
  border: 10px #343a40 solid !important;
}
.outer-space--bt-10 {
  border-top: 10px #343a40 solid !important;
}
.outer-space--br-10 {
  border-right: 10px #343a40 solid !important;
}
.outer-space--bl-10 {
  border-left: 10px #343a40 solid !important;
}
.outer-space--bb-10 {
  border-bottom: 10px #343a40 solid !important;
}
.outer-space--by-10 {
  border-top: 10px #343a40 solid !important;
  border-bottom: 10px #343a40 solid !important;
}
.outer-space--bx-10 {
  border-right: 10px #343a40 solid !important;
  border-left: 10px #343a40 solid !important;
}
.outer-space--ba-11 {
  border: 11px #343a40 solid !important;
}
.outer-space--bt-11 {
  border-top: 11px #343a40 solid !important;
}
.outer-space--br-11 {
  border-right: 11px #343a40 solid !important;
}
.outer-space--bl-11 {
  border-left: 11px #343a40 solid !important;
}
.outer-space--bb-11 {
  border-bottom: 11px #343a40 solid !important;
}
.outer-space--by-11 {
  border-top: 11px #343a40 solid !important;
  border-bottom: 11px #343a40 solid !important;
}
.outer-space--bx-11 {
  border-right: 11px #343a40 solid !important;
  border-left: 11px #343a40 solid !important;
}
.outer-space--ba-12 {
  border: 12px #343a40 solid !important;
}
.outer-space--bt-12 {
  border-top: 12px #343a40 solid !important;
}
.outer-space--br-12 {
  border-right: 12px #343a40 solid !important;
}
.outer-space--bl-12 {
  border-left: 12px #343a40 solid !important;
}
.outer-space--bb-12 {
  border-bottom: 12px #343a40 solid !important;
}
.outer-space--by-12 {
  border-top: 12px #343a40 solid !important;
  border-bottom: 12px #343a40 solid !important;
}
.outer-space--bx-12 {
  border-right: 12px #343a40 solid !important;
  border-left: 12px #343a40 solid !important;
}
.outer-space--ba-13 {
  border: 13px #343a40 solid !important;
}
.outer-space--bt-13 {
  border-top: 13px #343a40 solid !important;
}
.outer-space--br-13 {
  border-right: 13px #343a40 solid !important;
}
.outer-space--bl-13 {
  border-left: 13px #343a40 solid !important;
}
.outer-space--bb-13 {
  border-bottom: 13px #343a40 solid !important;
}
.outer-space--by-13 {
  border-top: 13px #343a40 solid !important;
  border-bottom: 13px #343a40 solid !important;
}
.outer-space--bx-13 {
  border-right: 13px #343a40 solid !important;
  border-left: 13px #343a40 solid !important;
}
.outer-space--ba-14 {
  border: 14px #343a40 solid !important;
}
.outer-space--bt-14 {
  border-top: 14px #343a40 solid !important;
}
.outer-space--br-14 {
  border-right: 14px #343a40 solid !important;
}
.outer-space--bl-14 {
  border-left: 14px #343a40 solid !important;
}
.outer-space--bb-14 {
  border-bottom: 14px #343a40 solid !important;
}
.outer-space--by-14 {
  border-top: 14px #343a40 solid !important;
  border-bottom: 14px #343a40 solid !important;
}
.outer-space--bx-14 {
  border-right: 14px #343a40 solid !important;
  border-left: 14px #343a40 solid !important;
}
.outer-space--ba-15 {
  border: 15px #343a40 solid !important;
}
.outer-space--bt-15 {
  border-top: 15px #343a40 solid !important;
}
.outer-space--br-15 {
  border-right: 15px #343a40 solid !important;
}
.outer-space--bl-15 {
  border-left: 15px #343a40 solid !important;
}
.outer-space--bb-15 {
  border-bottom: 15px #343a40 solid !important;
}
.outer-space--by-15 {
  border-top: 15px #343a40 solid !important;
  border-bottom: 15px #343a40 solid !important;
}
.outer-space--bx-15 {
  border-right: 15px #343a40 solid !important;
  border-left: 15px #343a40 solid !important;
}
.outer-space--ba-16 {
  border: 16px #343a40 solid !important;
}
.outer-space--bt-16 {
  border-top: 16px #343a40 solid !important;
}
.outer-space--br-16 {
  border-right: 16px #343a40 solid !important;
}
.outer-space--bl-16 {
  border-left: 16px #343a40 solid !important;
}
.outer-space--bb-16 {
  border-bottom: 16px #343a40 solid !important;
}
.outer-space--by-16 {
  border-top: 16px #343a40 solid !important;
  border-bottom: 16px #343a40 solid !important;
}
.outer-space--bx-16 {
  border-right: 16px #343a40 solid !important;
  border-left: 16px #343a40 solid !important;
}
.outer-space--ba-17 {
  border: 17px #343a40 solid !important;
}
.outer-space--bt-17 {
  border-top: 17px #343a40 solid !important;
}
.outer-space--br-17 {
  border-right: 17px #343a40 solid !important;
}
.outer-space--bl-17 {
  border-left: 17px #343a40 solid !important;
}
.outer-space--bb-17 {
  border-bottom: 17px #343a40 solid !important;
}
.outer-space--by-17 {
  border-top: 17px #343a40 solid !important;
  border-bottom: 17px #343a40 solid !important;
}
.outer-space--bx-17 {
  border-right: 17px #343a40 solid !important;
  border-left: 17px #343a40 solid !important;
}
.outer-space--ba-18 {
  border: 18px #343a40 solid !important;
}
.outer-space--bt-18 {
  border-top: 18px #343a40 solid !important;
}
.outer-space--br-18 {
  border-right: 18px #343a40 solid !important;
}
.outer-space--bl-18 {
  border-left: 18px #343a40 solid !important;
}
.outer-space--bb-18 {
  border-bottom: 18px #343a40 solid !important;
}
.outer-space--by-18 {
  border-top: 18px #343a40 solid !important;
  border-bottom: 18px #343a40 solid !important;
}
.outer-space--bx-18 {
  border-right: 18px #343a40 solid !important;
  border-left: 18px #343a40 solid !important;
}
.outer-space--ba-19 {
  border: 19px #343a40 solid !important;
}
.outer-space--bt-19 {
  border-top: 19px #343a40 solid !important;
}
.outer-space--br-19 {
  border-right: 19px #343a40 solid !important;
}
.outer-space--bl-19 {
  border-left: 19px #343a40 solid !important;
}
.outer-space--bb-19 {
  border-bottom: 19px #343a40 solid !important;
}
.outer-space--by-19 {
  border-top: 19px #343a40 solid !important;
  border-bottom: 19px #343a40 solid !important;
}
.outer-space--bx-19 {
  border-right: 19px #343a40 solid !important;
  border-left: 19px #343a40 solid !important;
}
.outer-space--ba-20 {
  border: 20px #343a40 solid !important;
}
.outer-space--bt-20 {
  border-top: 20px #343a40 solid !important;
}
.outer-space--br-20 {
  border-right: 20px #343a40 solid !important;
}
.outer-space--bl-20 {
  border-left: 20px #343a40 solid !important;
}
.outer-space--bb-20 {
  border-bottom: 20px #343a40 solid !important;
}
.outer-space--by-20 {
  border-top: 20px #343a40 solid !important;
  border-bottom: 20px #343a40 solid !important;
}
.outer-space--bx-20 {
  border-right: 20px #343a40 solid !important;
  border-left: 20px #343a40 solid !important;
}
.outer-space--ba-21 {
  border: 21px #343a40 solid !important;
}
.outer-space--bt-21 {
  border-top: 21px #343a40 solid !important;
}
.outer-space--br-21 {
  border-right: 21px #343a40 solid !important;
}
.outer-space--bl-21 {
  border-left: 21px #343a40 solid !important;
}
.outer-space--bb-21 {
  border-bottom: 21px #343a40 solid !important;
}
.outer-space--by-21 {
  border-top: 21px #343a40 solid !important;
  border-bottom: 21px #343a40 solid !important;
}
.outer-space--bx-21 {
  border-right: 21px #343a40 solid !important;
  border-left: 21px #343a40 solid !important;
}
.outer-space--ba-22 {
  border: 22px #343a40 solid !important;
}
.outer-space--bt-22 {
  border-top: 22px #343a40 solid !important;
}
.outer-space--br-22 {
  border-right: 22px #343a40 solid !important;
}
.outer-space--bl-22 {
  border-left: 22px #343a40 solid !important;
}
.outer-space--bb-22 {
  border-bottom: 22px #343a40 solid !important;
}
.outer-space--by-22 {
  border-top: 22px #343a40 solid !important;
  border-bottom: 22px #343a40 solid !important;
}
.outer-space--bx-22 {
  border-right: 22px #343a40 solid !important;
  border-left: 22px #343a40 solid !important;
}
.outer-space--ba-23 {
  border: 23px #343a40 solid !important;
}
.outer-space--bt-23 {
  border-top: 23px #343a40 solid !important;
}
.outer-space--br-23 {
  border-right: 23px #343a40 solid !important;
}
.outer-space--bl-23 {
  border-left: 23px #343a40 solid !important;
}
.outer-space--bb-23 {
  border-bottom: 23px #343a40 solid !important;
}
.outer-space--by-23 {
  border-top: 23px #343a40 solid !important;
  border-bottom: 23px #343a40 solid !important;
}
.outer-space--bx-23 {
  border-right: 23px #343a40 solid !important;
  border-left: 23px #343a40 solid !important;
}
.outer-space--ba-24 {
  border: 24px #343a40 solid !important;
}
.outer-space--bt-24 {
  border-top: 24px #343a40 solid !important;
}
.outer-space--br-24 {
  border-right: 24px #343a40 solid !important;
}
.outer-space--bl-24 {
  border-left: 24px #343a40 solid !important;
}
.outer-space--bb-24 {
  border-bottom: 24px #343a40 solid !important;
}
.outer-space--by-24 {
  border-top: 24px #343a40 solid !important;
  border-bottom: 24px #343a40 solid !important;
}
.outer-space--bx-24 {
  border-right: 24px #343a40 solid !important;
  border-left: 24px #343a40 solid !important;
}
.outer-space--ba-25 {
  border: 25px #343a40 solid !important;
}
.outer-space--bt-25 {
  border-top: 25px #343a40 solid !important;
}
.outer-space--br-25 {
  border-right: 25px #343a40 solid !important;
}
.outer-space--bl-25 {
  border-left: 25px #343a40 solid !important;
}
.outer-space--bb-25 {
  border-bottom: 25px #343a40 solid !important;
}
.outer-space--by-25 {
  border-top: 25px #343a40 solid !important;
  border-bottom: 25px #343a40 solid !important;
}
.outer-space--bx-25 {
  border-right: 25px #343a40 solid !important;
  border-left: 25px #343a40 solid !important;
}
.outer-space--ba-26 {
  border: 26px #343a40 solid !important;
}
.outer-space--bt-26 {
  border-top: 26px #343a40 solid !important;
}
.outer-space--br-26 {
  border-right: 26px #343a40 solid !important;
}
.outer-space--bl-26 {
  border-left: 26px #343a40 solid !important;
}
.outer-space--bb-26 {
  border-bottom: 26px #343a40 solid !important;
}
.outer-space--by-26 {
  border-top: 26px #343a40 solid !important;
  border-bottom: 26px #343a40 solid !important;
}
.outer-space--bx-26 {
  border-right: 26px #343a40 solid !important;
  border-left: 26px #343a40 solid !important;
}
.outer-space--ba-27 {
  border: 27px #343a40 solid !important;
}
.outer-space--bt-27 {
  border-top: 27px #343a40 solid !important;
}
.outer-space--br-27 {
  border-right: 27px #343a40 solid !important;
}
.outer-space--bl-27 {
  border-left: 27px #343a40 solid !important;
}
.outer-space--bb-27 {
  border-bottom: 27px #343a40 solid !important;
}
.outer-space--by-27 {
  border-top: 27px #343a40 solid !important;
  border-bottom: 27px #343a40 solid !important;
}
.outer-space--bx-27 {
  border-right: 27px #343a40 solid !important;
  border-left: 27px #343a40 solid !important;
}
.outer-space--ba-28 {
  border: 28px #343a40 solid !important;
}
.outer-space--bt-28 {
  border-top: 28px #343a40 solid !important;
}
.outer-space--br-28 {
  border-right: 28px #343a40 solid !important;
}
.outer-space--bl-28 {
  border-left: 28px #343a40 solid !important;
}
.outer-space--bb-28 {
  border-bottom: 28px #343a40 solid !important;
}
.outer-space--by-28 {
  border-top: 28px #343a40 solid !important;
  border-bottom: 28px #343a40 solid !important;
}
.outer-space--bx-28 {
  border-right: 28px #343a40 solid !important;
  border-left: 28px #343a40 solid !important;
}
.outer-space--ba-29 {
  border: 29px #343a40 solid !important;
}
.outer-space--bt-29 {
  border-top: 29px #343a40 solid !important;
}
.outer-space--br-29 {
  border-right: 29px #343a40 solid !important;
}
.outer-space--bl-29 {
  border-left: 29px #343a40 solid !important;
}
.outer-space--bb-29 {
  border-bottom: 29px #343a40 solid !important;
}
.outer-space--by-29 {
  border-top: 29px #343a40 solid !important;
  border-bottom: 29px #343a40 solid !important;
}
.outer-space--bx-29 {
  border-right: 29px #343a40 solid !important;
  border-left: 29px #343a40 solid !important;
}
.outer-space--ba-30 {
  border: 30px #343a40 solid !important;
}
.outer-space--bt-30 {
  border-top: 30px #343a40 solid !important;
}
.outer-space--br-30 {
  border-right: 30px #343a40 solid !important;
}
.outer-space--bl-30 {
  border-left: 30px #343a40 solid !important;
}
.outer-space--bb-30 {
  border-bottom: 30px #343a40 solid !important;
}
.outer-space--by-30 {
  border-top: 30px #343a40 solid !important;
  border-bottom: 30px #343a40 solid !important;
}
.outer-space--bx-30 {
  border-right: 30px #343a40 solid !important;
  border-left: 30px #343a40 solid !important;
}
.outer-space--ba-31 {
  border: 31px #343a40 solid !important;
}
.outer-space--bt-31 {
  border-top: 31px #343a40 solid !important;
}
.outer-space--br-31 {
  border-right: 31px #343a40 solid !important;
}
.outer-space--bl-31 {
  border-left: 31px #343a40 solid !important;
}
.outer-space--bb-31 {
  border-bottom: 31px #343a40 solid !important;
}
.outer-space--by-31 {
  border-top: 31px #343a40 solid !important;
  border-bottom: 31px #343a40 solid !important;
}
.outer-space--bx-31 {
  border-right: 31px #343a40 solid !important;
  border-left: 31px #343a40 solid !important;
}
.outer-space--ba-32 {
  border: 32px #343a40 solid !important;
}
.outer-space--bt-32 {
  border-top: 32px #343a40 solid !important;
}
.outer-space--br-32 {
  border-right: 32px #343a40 solid !important;
}
.outer-space--bl-32 {
  border-left: 32px #343a40 solid !important;
}
.outer-space--bb-32 {
  border-bottom: 32px #343a40 solid !important;
}
.outer-space--by-32 {
  border-top: 32px #343a40 solid !important;
  border-bottom: 32px #343a40 solid !important;
}
.outer-space--bx-32 {
  border-right: 32px #343a40 solid !important;
  border-left: 32px #343a40 solid !important;
}
.outer-space--ba-33 {
  border: 33px #343a40 solid !important;
}
.outer-space--bt-33 {
  border-top: 33px #343a40 solid !important;
}
.outer-space--br-33 {
  border-right: 33px #343a40 solid !important;
}
.outer-space--bl-33 {
  border-left: 33px #343a40 solid !important;
}
.outer-space--bb-33 {
  border-bottom: 33px #343a40 solid !important;
}
.outer-space--by-33 {
  border-top: 33px #343a40 solid !important;
  border-bottom: 33px #343a40 solid !important;
}
.outer-space--bx-33 {
  border-right: 33px #343a40 solid !important;
  border-left: 33px #343a40 solid !important;
}
.outer-space--ba-34 {
  border: 34px #343a40 solid !important;
}
.outer-space--bt-34 {
  border-top: 34px #343a40 solid !important;
}
.outer-space--br-34 {
  border-right: 34px #343a40 solid !important;
}
.outer-space--bl-34 {
  border-left: 34px #343a40 solid !important;
}
.outer-space--bb-34 {
  border-bottom: 34px #343a40 solid !important;
}
.outer-space--by-34 {
  border-top: 34px #343a40 solid !important;
  border-bottom: 34px #343a40 solid !important;
}
.outer-space--bx-34 {
  border-right: 34px #343a40 solid !important;
  border-left: 34px #343a40 solid !important;
}
.outer-space--ba-35 {
  border: 35px #343a40 solid !important;
}
.outer-space--bt-35 {
  border-top: 35px #343a40 solid !important;
}
.outer-space--br-35 {
  border-right: 35px #343a40 solid !important;
}
.outer-space--bl-35 {
  border-left: 35px #343a40 solid !important;
}
.outer-space--bb-35 {
  border-bottom: 35px #343a40 solid !important;
}
.outer-space--by-35 {
  border-top: 35px #343a40 solid !important;
  border-bottom: 35px #343a40 solid !important;
}
.outer-space--bx-35 {
  border-right: 35px #343a40 solid !important;
  border-left: 35px #343a40 solid !important;
}
.outer-space--ba-36 {
  border: 36px #343a40 solid !important;
}
.outer-space--bt-36 {
  border-top: 36px #343a40 solid !important;
}
.outer-space--br-36 {
  border-right: 36px #343a40 solid !important;
}
.outer-space--bl-36 {
  border-left: 36px #343a40 solid !important;
}
.outer-space--bb-36 {
  border-bottom: 36px #343a40 solid !important;
}
.outer-space--by-36 {
  border-top: 36px #343a40 solid !important;
  border-bottom: 36px #343a40 solid !important;
}
.outer-space--bx-36 {
  border-right: 36px #343a40 solid !important;
  border-left: 36px #343a40 solid !important;
}
.outer-space--ba-37 {
  border: 37px #343a40 solid !important;
}
.outer-space--bt-37 {
  border-top: 37px #343a40 solid !important;
}
.outer-space--br-37 {
  border-right: 37px #343a40 solid !important;
}
.outer-space--bl-37 {
  border-left: 37px #343a40 solid !important;
}
.outer-space--bb-37 {
  border-bottom: 37px #343a40 solid !important;
}
.outer-space--by-37 {
  border-top: 37px #343a40 solid !important;
  border-bottom: 37px #343a40 solid !important;
}
.outer-space--bx-37 {
  border-right: 37px #343a40 solid !important;
  border-left: 37px #343a40 solid !important;
}
.outer-space--ba-38 {
  border: 38px #343a40 solid !important;
}
.outer-space--bt-38 {
  border-top: 38px #343a40 solid !important;
}
.outer-space--br-38 {
  border-right: 38px #343a40 solid !important;
}
.outer-space--bl-38 {
  border-left: 38px #343a40 solid !important;
}
.outer-space--bb-38 {
  border-bottom: 38px #343a40 solid !important;
}
.outer-space--by-38 {
  border-top: 38px #343a40 solid !important;
  border-bottom: 38px #343a40 solid !important;
}
.outer-space--bx-38 {
  border-right: 38px #343a40 solid !important;
  border-left: 38px #343a40 solid !important;
}
.outer-space--ba-39 {
  border: 39px #343a40 solid !important;
}
.outer-space--bt-39 {
  border-top: 39px #343a40 solid !important;
}
.outer-space--br-39 {
  border-right: 39px #343a40 solid !important;
}
.outer-space--bl-39 {
  border-left: 39px #343a40 solid !important;
}
.outer-space--bb-39 {
  border-bottom: 39px #343a40 solid !important;
}
.outer-space--by-39 {
  border-top: 39px #343a40 solid !important;
  border-bottom: 39px #343a40 solid !important;
}
.outer-space--bx-39 {
  border-right: 39px #343a40 solid !important;
  border-left: 39px #343a40 solid !important;
}
.outer-space--ba-40 {
  border: 40px #343a40 solid !important;
}
.outer-space--bt-40 {
  border-top: 40px #343a40 solid !important;
}
.outer-space--br-40 {
  border-right: 40px #343a40 solid !important;
}
.outer-space--bl-40 {
  border-left: 40px #343a40 solid !important;
}
.outer-space--bb-40 {
  border-bottom: 40px #343a40 solid !important;
}
.outer-space--by-40 {
  border-top: 40px #343a40 solid !important;
  border-bottom: 40px #343a40 solid !important;
}
.outer-space--bx-40 {
  border-right: 40px #343a40 solid !important;
  border-left: 40px #343a40 solid !important;
}
.outer-space--ba-41 {
  border: 41px #343a40 solid !important;
}
.outer-space--bt-41 {
  border-top: 41px #343a40 solid !important;
}
.outer-space--br-41 {
  border-right: 41px #343a40 solid !important;
}
.outer-space--bl-41 {
  border-left: 41px #343a40 solid !important;
}
.outer-space--bb-41 {
  border-bottom: 41px #343a40 solid !important;
}
.outer-space--by-41 {
  border-top: 41px #343a40 solid !important;
  border-bottom: 41px #343a40 solid !important;
}
.outer-space--bx-41 {
  border-right: 41px #343a40 solid !important;
  border-left: 41px #343a40 solid !important;
}
.outer-space--ba-42 {
  border: 42px #343a40 solid !important;
}
.outer-space--bt-42 {
  border-top: 42px #343a40 solid !important;
}
.outer-space--br-42 {
  border-right: 42px #343a40 solid !important;
}
.outer-space--bl-42 {
  border-left: 42px #343a40 solid !important;
}
.outer-space--bb-42 {
  border-bottom: 42px #343a40 solid !important;
}
.outer-space--by-42 {
  border-top: 42px #343a40 solid !important;
  border-bottom: 42px #343a40 solid !important;
}
.outer-space--bx-42 {
  border-right: 42px #343a40 solid !important;
  border-left: 42px #343a40 solid !important;
}
.outer-space--ba-43 {
  border: 43px #343a40 solid !important;
}
.outer-space--bt-43 {
  border-top: 43px #343a40 solid !important;
}
.outer-space--br-43 {
  border-right: 43px #343a40 solid !important;
}
.outer-space--bl-43 {
  border-left: 43px #343a40 solid !important;
}
.outer-space--bb-43 {
  border-bottom: 43px #343a40 solid !important;
}
.outer-space--by-43 {
  border-top: 43px #343a40 solid !important;
  border-bottom: 43px #343a40 solid !important;
}
.outer-space--bx-43 {
  border-right: 43px #343a40 solid !important;
  border-left: 43px #343a40 solid !important;
}
.outer-space--ba-44 {
  border: 44px #343a40 solid !important;
}
.outer-space--bt-44 {
  border-top: 44px #343a40 solid !important;
}
.outer-space--br-44 {
  border-right: 44px #343a40 solid !important;
}
.outer-space--bl-44 {
  border-left: 44px #343a40 solid !important;
}
.outer-space--bb-44 {
  border-bottom: 44px #343a40 solid !important;
}
.outer-space--by-44 {
  border-top: 44px #343a40 solid !important;
  border-bottom: 44px #343a40 solid !important;
}
.outer-space--bx-44 {
  border-right: 44px #343a40 solid !important;
  border-left: 44px #343a40 solid !important;
}
.outer-space--ba-45 {
  border: 45px #343a40 solid !important;
}
.outer-space--bt-45 {
  border-top: 45px #343a40 solid !important;
}
.outer-space--br-45 {
  border-right: 45px #343a40 solid !important;
}
.outer-space--bl-45 {
  border-left: 45px #343a40 solid !important;
}
.outer-space--bb-45 {
  border-bottom: 45px #343a40 solid !important;
}
.outer-space--by-45 {
  border-top: 45px #343a40 solid !important;
  border-bottom: 45px #343a40 solid !important;
}
.outer-space--bx-45 {
  border-right: 45px #343a40 solid !important;
  border-left: 45px #343a40 solid !important;
}
.outer-space--ba-46 {
  border: 46px #343a40 solid !important;
}
.outer-space--bt-46 {
  border-top: 46px #343a40 solid !important;
}
.outer-space--br-46 {
  border-right: 46px #343a40 solid !important;
}
.outer-space--bl-46 {
  border-left: 46px #343a40 solid !important;
}
.outer-space--bb-46 {
  border-bottom: 46px #343a40 solid !important;
}
.outer-space--by-46 {
  border-top: 46px #343a40 solid !important;
  border-bottom: 46px #343a40 solid !important;
}
.outer-space--bx-46 {
  border-right: 46px #343a40 solid !important;
  border-left: 46px #343a40 solid !important;
}
.outer-space--ba-47 {
  border: 47px #343a40 solid !important;
}
.outer-space--bt-47 {
  border-top: 47px #343a40 solid !important;
}
.outer-space--br-47 {
  border-right: 47px #343a40 solid !important;
}
.outer-space--bl-47 {
  border-left: 47px #343a40 solid !important;
}
.outer-space--bb-47 {
  border-bottom: 47px #343a40 solid !important;
}
.outer-space--by-47 {
  border-top: 47px #343a40 solid !important;
  border-bottom: 47px #343a40 solid !important;
}
.outer-space--bx-47 {
  border-right: 47px #343a40 solid !important;
  border-left: 47px #343a40 solid !important;
}
.outer-space--ba-48 {
  border: 48px #343a40 solid !important;
}
.outer-space--bt-48 {
  border-top: 48px #343a40 solid !important;
}
.outer-space--br-48 {
  border-right: 48px #343a40 solid !important;
}
.outer-space--bl-48 {
  border-left: 48px #343a40 solid !important;
}
.outer-space--bb-48 {
  border-bottom: 48px #343a40 solid !important;
}
.outer-space--by-48 {
  border-top: 48px #343a40 solid !important;
  border-bottom: 48px #343a40 solid !important;
}
.outer-space--bx-48 {
  border-right: 48px #343a40 solid !important;
  border-left: 48px #343a40 solid !important;
}
.outer-space--ba-49 {
  border: 49px #343a40 solid !important;
}
.outer-space--bt-49 {
  border-top: 49px #343a40 solid !important;
}
.outer-space--br-49 {
  border-right: 49px #343a40 solid !important;
}
.outer-space--bl-49 {
  border-left: 49px #343a40 solid !important;
}
.outer-space--bb-49 {
  border-bottom: 49px #343a40 solid !important;
}
.outer-space--by-49 {
  border-top: 49px #343a40 solid !important;
  border-bottom: 49px #343a40 solid !important;
}
.outer-space--bx-49 {
  border-right: 49px #343a40 solid !important;
  border-left: 49px #343a40 solid !important;
}
.outer-space--ba-50 {
  border: 50px #343a40 solid !important;
}
.outer-space--bt-50 {
  border-top: 50px #343a40 solid !important;
}
.outer-space--br-50 {
  border-right: 50px #343a40 solid !important;
}
.outer-space--bl-50 {
  border-left: 50px #343a40 solid !important;
}
.outer-space--bb-50 {
  border-bottom: 50px #343a40 solid !important;
}
.outer-space--by-50 {
  border-top: 50px #343a40 solid !important;
  border-bottom: 50px #343a40 solid !important;
}
.outer-space--bx-50 {
  border-right: 50px #343a40 solid !important;
  border-left: 50px #343a40 solid !important;
}
.outer-space--ba-51 {
  border: 51px #343a40 solid !important;
}
.outer-space--bt-51 {
  border-top: 51px #343a40 solid !important;
}
.outer-space--br-51 {
  border-right: 51px #343a40 solid !important;
}
.outer-space--bl-51 {
  border-left: 51px #343a40 solid !important;
}
.outer-space--bb-51 {
  border-bottom: 51px #343a40 solid !important;
}
.outer-space--by-51 {
  border-top: 51px #343a40 solid !important;
  border-bottom: 51px #343a40 solid !important;
}
.outer-space--bx-51 {
  border-right: 51px #343a40 solid !important;
  border-left: 51px #343a40 solid !important;
}
.outer-space--ba-52 {
  border: 52px #343a40 solid !important;
}
.outer-space--bt-52 {
  border-top: 52px #343a40 solid !important;
}
.outer-space--br-52 {
  border-right: 52px #343a40 solid !important;
}
.outer-space--bl-52 {
  border-left: 52px #343a40 solid !important;
}
.outer-space--bb-52 {
  border-bottom: 52px #343a40 solid !important;
}
.outer-space--by-52 {
  border-top: 52px #343a40 solid !important;
  border-bottom: 52px #343a40 solid !important;
}
.outer-space--bx-52 {
  border-right: 52px #343a40 solid !important;
  border-left: 52px #343a40 solid !important;
}
.outer-space--ba-53 {
  border: 53px #343a40 solid !important;
}
.outer-space--bt-53 {
  border-top: 53px #343a40 solid !important;
}
.outer-space--br-53 {
  border-right: 53px #343a40 solid !important;
}
.outer-space--bl-53 {
  border-left: 53px #343a40 solid !important;
}
.outer-space--bb-53 {
  border-bottom: 53px #343a40 solid !important;
}
.outer-space--by-53 {
  border-top: 53px #343a40 solid !important;
  border-bottom: 53px #343a40 solid !important;
}
.outer-space--bx-53 {
  border-right: 53px #343a40 solid !important;
  border-left: 53px #343a40 solid !important;
}
.outer-space--ba-54 {
  border: 54px #343a40 solid !important;
}
.outer-space--bt-54 {
  border-top: 54px #343a40 solid !important;
}
.outer-space--br-54 {
  border-right: 54px #343a40 solid !important;
}
.outer-space--bl-54 {
  border-left: 54px #343a40 solid !important;
}
.outer-space--bb-54 {
  border-bottom: 54px #343a40 solid !important;
}
.outer-space--by-54 {
  border-top: 54px #343a40 solid !important;
  border-bottom: 54px #343a40 solid !important;
}
.outer-space--bx-54 {
  border-right: 54px #343a40 solid !important;
  border-left: 54px #343a40 solid !important;
}
.outer-space--ba-55 {
  border: 55px #343a40 solid !important;
}
.outer-space--bt-55 {
  border-top: 55px #343a40 solid !important;
}
.outer-space--br-55 {
  border-right: 55px #343a40 solid !important;
}
.outer-space--bl-55 {
  border-left: 55px #343a40 solid !important;
}
.outer-space--bb-55 {
  border-bottom: 55px #343a40 solid !important;
}
.outer-space--by-55 {
  border-top: 55px #343a40 solid !important;
  border-bottom: 55px #343a40 solid !important;
}
.outer-space--bx-55 {
  border-right: 55px #343a40 solid !important;
  border-left: 55px #343a40 solid !important;
}
.outer-space--ba-56 {
  border: 56px #343a40 solid !important;
}
.outer-space--bt-56 {
  border-top: 56px #343a40 solid !important;
}
.outer-space--br-56 {
  border-right: 56px #343a40 solid !important;
}
.outer-space--bl-56 {
  border-left: 56px #343a40 solid !important;
}
.outer-space--bb-56 {
  border-bottom: 56px #343a40 solid !important;
}
.outer-space--by-56 {
  border-top: 56px #343a40 solid !important;
  border-bottom: 56px #343a40 solid !important;
}
.outer-space--bx-56 {
  border-right: 56px #343a40 solid !important;
  border-left: 56px #343a40 solid !important;
}
.outer-space--ba-57 {
  border: 57px #343a40 solid !important;
}
.outer-space--bt-57 {
  border-top: 57px #343a40 solid !important;
}
.outer-space--br-57 {
  border-right: 57px #343a40 solid !important;
}
.outer-space--bl-57 {
  border-left: 57px #343a40 solid !important;
}
.outer-space--bb-57 {
  border-bottom: 57px #343a40 solid !important;
}
.outer-space--by-57 {
  border-top: 57px #343a40 solid !important;
  border-bottom: 57px #343a40 solid !important;
}
.outer-space--bx-57 {
  border-right: 57px #343a40 solid !important;
  border-left: 57px #343a40 solid !important;
}
.outer-space--ba-58 {
  border: 58px #343a40 solid !important;
}
.outer-space--bt-58 {
  border-top: 58px #343a40 solid !important;
}
.outer-space--br-58 {
  border-right: 58px #343a40 solid !important;
}
.outer-space--bl-58 {
  border-left: 58px #343a40 solid !important;
}
.outer-space--bb-58 {
  border-bottom: 58px #343a40 solid !important;
}
.outer-space--by-58 {
  border-top: 58px #343a40 solid !important;
  border-bottom: 58px #343a40 solid !important;
}
.outer-space--bx-58 {
  border-right: 58px #343a40 solid !important;
  border-left: 58px #343a40 solid !important;
}
.outer-space--ba-59 {
  border: 59px #343a40 solid !important;
}
.outer-space--bt-59 {
  border-top: 59px #343a40 solid !important;
}
.outer-space--br-59 {
  border-right: 59px #343a40 solid !important;
}
.outer-space--bl-59 {
  border-left: 59px #343a40 solid !important;
}
.outer-space--bb-59 {
  border-bottom: 59px #343a40 solid !important;
}
.outer-space--by-59 {
  border-top: 59px #343a40 solid !important;
  border-bottom: 59px #343a40 solid !important;
}
.outer-space--bx-59 {
  border-right: 59px #343a40 solid !important;
  border-left: 59px #343a40 solid !important;
}
.outer-space--ba-60 {
  border: 60px #343a40 solid !important;
}
.outer-space--bt-60 {
  border-top: 60px #343a40 solid !important;
}
.outer-space--br-60 {
  border-right: 60px #343a40 solid !important;
}
.outer-space--bl-60 {
  border-left: 60px #343a40 solid !important;
}
.outer-space--bb-60 {
  border-bottom: 60px #343a40 solid !important;
}
.outer-space--by-60 {
  border-top: 60px #343a40 solid !important;
  border-bottom: 60px #343a40 solid !important;
}
.outer-space--bx-60 {
  border-right: 60px #343a40 solid !important;
  border-left: 60px #343a40 solid !important;
}
.outer-space--ba-61 {
  border: 61px #343a40 solid !important;
}
.outer-space--bt-61 {
  border-top: 61px #343a40 solid !important;
}
.outer-space--br-61 {
  border-right: 61px #343a40 solid !important;
}
.outer-space--bl-61 {
  border-left: 61px #343a40 solid !important;
}
.outer-space--bb-61 {
  border-bottom: 61px #343a40 solid !important;
}
.outer-space--by-61 {
  border-top: 61px #343a40 solid !important;
  border-bottom: 61px #343a40 solid !important;
}
.outer-space--bx-61 {
  border-right: 61px #343a40 solid !important;
  border-left: 61px #343a40 solid !important;
}
.outer-space--ba-62 {
  border: 62px #343a40 solid !important;
}
.outer-space--bt-62 {
  border-top: 62px #343a40 solid !important;
}
.outer-space--br-62 {
  border-right: 62px #343a40 solid !important;
}
.outer-space--bl-62 {
  border-left: 62px #343a40 solid !important;
}
.outer-space--bb-62 {
  border-bottom: 62px #343a40 solid !important;
}
.outer-space--by-62 {
  border-top: 62px #343a40 solid !important;
  border-bottom: 62px #343a40 solid !important;
}
.outer-space--bx-62 {
  border-right: 62px #343a40 solid !important;
  border-left: 62px #343a40 solid !important;
}
.outer-space--ba-63 {
  border: 63px #343a40 solid !important;
}
.outer-space--bt-63 {
  border-top: 63px #343a40 solid !important;
}
.outer-space--br-63 {
  border-right: 63px #343a40 solid !important;
}
.outer-space--bl-63 {
  border-left: 63px #343a40 solid !important;
}
.outer-space--bb-63 {
  border-bottom: 63px #343a40 solid !important;
}
.outer-space--by-63 {
  border-top: 63px #343a40 solid !important;
  border-bottom: 63px #343a40 solid !important;
}
.outer-space--bx-63 {
  border-right: 63px #343a40 solid !important;
  border-left: 63px #343a40 solid !important;
}
.outer-space--ba-64 {
  border: 64px #343a40 solid !important;
}
.outer-space--bt-64 {
  border-top: 64px #343a40 solid !important;
}
.outer-space--br-64 {
  border-right: 64px #343a40 solid !important;
}
.outer-space--bl-64 {
  border-left: 64px #343a40 solid !important;
}
.outer-space--bb-64 {
  border-bottom: 64px #343a40 solid !important;
}
.outer-space--by-64 {
  border-top: 64px #343a40 solid !important;
  border-bottom: 64px #343a40 solid !important;
}
.outer-space--bx-64 {
  border-right: 64px #343a40 solid !important;
  border-left: 64px #343a40 solid !important;
}
.outer-space--ba-65 {
  border: 65px #343a40 solid !important;
}
.outer-space--bt-65 {
  border-top: 65px #343a40 solid !important;
}
.outer-space--br-65 {
  border-right: 65px #343a40 solid !important;
}
.outer-space--bl-65 {
  border-left: 65px #343a40 solid !important;
}
.outer-space--bb-65 {
  border-bottom: 65px #343a40 solid !important;
}
.outer-space--by-65 {
  border-top: 65px #343a40 solid !important;
  border-bottom: 65px #343a40 solid !important;
}
.outer-space--bx-65 {
  border-right: 65px #343a40 solid !important;
  border-left: 65px #343a40 solid !important;
}
.outer-space--ba-66 {
  border: 66px #343a40 solid !important;
}
.outer-space--bt-66 {
  border-top: 66px #343a40 solid !important;
}
.outer-space--br-66 {
  border-right: 66px #343a40 solid !important;
}
.outer-space--bl-66 {
  border-left: 66px #343a40 solid !important;
}
.outer-space--bb-66 {
  border-bottom: 66px #343a40 solid !important;
}
.outer-space--by-66 {
  border-top: 66px #343a40 solid !important;
  border-bottom: 66px #343a40 solid !important;
}
.outer-space--bx-66 {
  border-right: 66px #343a40 solid !important;
  border-left: 66px #343a40 solid !important;
}
.outer-space--ba-67 {
  border: 67px #343a40 solid !important;
}
.outer-space--bt-67 {
  border-top: 67px #343a40 solid !important;
}
.outer-space--br-67 {
  border-right: 67px #343a40 solid !important;
}
.outer-space--bl-67 {
  border-left: 67px #343a40 solid !important;
}
.outer-space--bb-67 {
  border-bottom: 67px #343a40 solid !important;
}
.outer-space--by-67 {
  border-top: 67px #343a40 solid !important;
  border-bottom: 67px #343a40 solid !important;
}
.outer-space--bx-67 {
  border-right: 67px #343a40 solid !important;
  border-left: 67px #343a40 solid !important;
}
.outer-space--ba-68 {
  border: 68px #343a40 solid !important;
}
.outer-space--bt-68 {
  border-top: 68px #343a40 solid !important;
}
.outer-space--br-68 {
  border-right: 68px #343a40 solid !important;
}
.outer-space--bl-68 {
  border-left: 68px #343a40 solid !important;
}
.outer-space--bb-68 {
  border-bottom: 68px #343a40 solid !important;
}
.outer-space--by-68 {
  border-top: 68px #343a40 solid !important;
  border-bottom: 68px #343a40 solid !important;
}
.outer-space--bx-68 {
  border-right: 68px #343a40 solid !important;
  border-left: 68px #343a40 solid !important;
}
.outer-space--ba-69 {
  border: 69px #343a40 solid !important;
}
.outer-space--bt-69 {
  border-top: 69px #343a40 solid !important;
}
.outer-space--br-69 {
  border-right: 69px #343a40 solid !important;
}
.outer-space--bl-69 {
  border-left: 69px #343a40 solid !important;
}
.outer-space--bb-69 {
  border-bottom: 69px #343a40 solid !important;
}
.outer-space--by-69 {
  border-top: 69px #343a40 solid !important;
  border-bottom: 69px #343a40 solid !important;
}
.outer-space--bx-69 {
  border-right: 69px #343a40 solid !important;
  border-left: 69px #343a40 solid !important;
}
.outer-space--ba-70 {
  border: 70px #343a40 solid !important;
}
.outer-space--bt-70 {
  border-top: 70px #343a40 solid !important;
}
.outer-space--br-70 {
  border-right: 70px #343a40 solid !important;
}
.outer-space--bl-70 {
  border-left: 70px #343a40 solid !important;
}
.outer-space--bb-70 {
  border-bottom: 70px #343a40 solid !important;
}
.outer-space--by-70 {
  border-top: 70px #343a40 solid !important;
  border-bottom: 70px #343a40 solid !important;
}
.outer-space--bx-70 {
  border-right: 70px #343a40 solid !important;
  border-left: 70px #343a40 solid !important;
}
.outer-space--ba-71 {
  border: 71px #343a40 solid !important;
}
.outer-space--bt-71 {
  border-top: 71px #343a40 solid !important;
}
.outer-space--br-71 {
  border-right: 71px #343a40 solid !important;
}
.outer-space--bl-71 {
  border-left: 71px #343a40 solid !important;
}
.outer-space--bb-71 {
  border-bottom: 71px #343a40 solid !important;
}
.outer-space--by-71 {
  border-top: 71px #343a40 solid !important;
  border-bottom: 71px #343a40 solid !important;
}
.outer-space--bx-71 {
  border-right: 71px #343a40 solid !important;
  border-left: 71px #343a40 solid !important;
}
.outer-space--ba-72 {
  border: 72px #343a40 solid !important;
}
.outer-space--bt-72 {
  border-top: 72px #343a40 solid !important;
}
.outer-space--br-72 {
  border-right: 72px #343a40 solid !important;
}
.outer-space--bl-72 {
  border-left: 72px #343a40 solid !important;
}
.outer-space--bb-72 {
  border-bottom: 72px #343a40 solid !important;
}
.outer-space--by-72 {
  border-top: 72px #343a40 solid !important;
  border-bottom: 72px #343a40 solid !important;
}
.outer-space--bx-72 {
  border-right: 72px #343a40 solid !important;
  border-left: 72px #343a40 solid !important;
}
.outer-space--ba-73 {
  border: 73px #343a40 solid !important;
}
.outer-space--bt-73 {
  border-top: 73px #343a40 solid !important;
}
.outer-space--br-73 {
  border-right: 73px #343a40 solid !important;
}
.outer-space--bl-73 {
  border-left: 73px #343a40 solid !important;
}
.outer-space--bb-73 {
  border-bottom: 73px #343a40 solid !important;
}
.outer-space--by-73 {
  border-top: 73px #343a40 solid !important;
  border-bottom: 73px #343a40 solid !important;
}
.outer-space--bx-73 {
  border-right: 73px #343a40 solid !important;
  border-left: 73px #343a40 solid !important;
}
.outer-space--ba-74 {
  border: 74px #343a40 solid !important;
}
.outer-space--bt-74 {
  border-top: 74px #343a40 solid !important;
}
.outer-space--br-74 {
  border-right: 74px #343a40 solid !important;
}
.outer-space--bl-74 {
  border-left: 74px #343a40 solid !important;
}
.outer-space--bb-74 {
  border-bottom: 74px #343a40 solid !important;
}
.outer-space--by-74 {
  border-top: 74px #343a40 solid !important;
  border-bottom: 74px #343a40 solid !important;
}
.outer-space--bx-74 {
  border-right: 74px #343a40 solid !important;
  border-left: 74px #343a40 solid !important;
}
.outer-space--ba-75 {
  border: 75px #343a40 solid !important;
}
.outer-space--bt-75 {
  border-top: 75px #343a40 solid !important;
}
.outer-space--br-75 {
  border-right: 75px #343a40 solid !important;
}
.outer-space--bl-75 {
  border-left: 75px #343a40 solid !important;
}
.outer-space--bb-75 {
  border-bottom: 75px #343a40 solid !important;
}
.outer-space--by-75 {
  border-top: 75px #343a40 solid !important;
  border-bottom: 75px #343a40 solid !important;
}
.outer-space--bx-75 {
  border-right: 75px #343a40 solid !important;
  border-left: 75px #343a40 solid !important;
}
.outer-space--ba-76 {
  border: 76px #343a40 solid !important;
}
.outer-space--bt-76 {
  border-top: 76px #343a40 solid !important;
}
.outer-space--br-76 {
  border-right: 76px #343a40 solid !important;
}
.outer-space--bl-76 {
  border-left: 76px #343a40 solid !important;
}
.outer-space--bb-76 {
  border-bottom: 76px #343a40 solid !important;
}
.outer-space--by-76 {
  border-top: 76px #343a40 solid !important;
  border-bottom: 76px #343a40 solid !important;
}
.outer-space--bx-76 {
  border-right: 76px #343a40 solid !important;
  border-left: 76px #343a40 solid !important;
}
.outer-space--ba-77 {
  border: 77px #343a40 solid !important;
}
.outer-space--bt-77 {
  border-top: 77px #343a40 solid !important;
}
.outer-space--br-77 {
  border-right: 77px #343a40 solid !important;
}
.outer-space--bl-77 {
  border-left: 77px #343a40 solid !important;
}
.outer-space--bb-77 {
  border-bottom: 77px #343a40 solid !important;
}
.outer-space--by-77 {
  border-top: 77px #343a40 solid !important;
  border-bottom: 77px #343a40 solid !important;
}
.outer-space--bx-77 {
  border-right: 77px #343a40 solid !important;
  border-left: 77px #343a40 solid !important;
}
.outer-space--ba-78 {
  border: 78px #343a40 solid !important;
}
.outer-space--bt-78 {
  border-top: 78px #343a40 solid !important;
}
.outer-space--br-78 {
  border-right: 78px #343a40 solid !important;
}
.outer-space--bl-78 {
  border-left: 78px #343a40 solid !important;
}
.outer-space--bb-78 {
  border-bottom: 78px #343a40 solid !important;
}
.outer-space--by-78 {
  border-top: 78px #343a40 solid !important;
  border-bottom: 78px #343a40 solid !important;
}
.outer-space--bx-78 {
  border-right: 78px #343a40 solid !important;
  border-left: 78px #343a40 solid !important;
}
.outer-space--ba-79 {
  border: 79px #343a40 solid !important;
}
.outer-space--bt-79 {
  border-top: 79px #343a40 solid !important;
}
.outer-space--br-79 {
  border-right: 79px #343a40 solid !important;
}
.outer-space--bl-79 {
  border-left: 79px #343a40 solid !important;
}
.outer-space--bb-79 {
  border-bottom: 79px #343a40 solid !important;
}
.outer-space--by-79 {
  border-top: 79px #343a40 solid !important;
  border-bottom: 79px #343a40 solid !important;
}
.outer-space--bx-79 {
  border-right: 79px #343a40 solid !important;
  border-left: 79px #343a40 solid !important;
}
.outer-space--ba-80 {
  border: 80px #343a40 solid !important;
}
.outer-space--bt-80 {
  border-top: 80px #343a40 solid !important;
}
.outer-space--br-80 {
  border-right: 80px #343a40 solid !important;
}
.outer-space--bl-80 {
  border-left: 80px #343a40 solid !important;
}
.outer-space--bb-80 {
  border-bottom: 80px #343a40 solid !important;
}
.outer-space--by-80 {
  border-top: 80px #343a40 solid !important;
  border-bottom: 80px #343a40 solid !important;
}
.outer-space--bx-80 {
  border-right: 80px #343a40 solid !important;
  border-left: 80px #343a40 solid !important;
}
.outer-space--ba-81 {
  border: 81px #343a40 solid !important;
}
.outer-space--bt-81 {
  border-top: 81px #343a40 solid !important;
}
.outer-space--br-81 {
  border-right: 81px #343a40 solid !important;
}
.outer-space--bl-81 {
  border-left: 81px #343a40 solid !important;
}
.outer-space--bb-81 {
  border-bottom: 81px #343a40 solid !important;
}
.outer-space--by-81 {
  border-top: 81px #343a40 solid !important;
  border-bottom: 81px #343a40 solid !important;
}
.outer-space--bx-81 {
  border-right: 81px #343a40 solid !important;
  border-left: 81px #343a40 solid !important;
}
.outer-space--ba-82 {
  border: 82px #343a40 solid !important;
}
.outer-space--bt-82 {
  border-top: 82px #343a40 solid !important;
}
.outer-space--br-82 {
  border-right: 82px #343a40 solid !important;
}
.outer-space--bl-82 {
  border-left: 82px #343a40 solid !important;
}
.outer-space--bb-82 {
  border-bottom: 82px #343a40 solid !important;
}
.outer-space--by-82 {
  border-top: 82px #343a40 solid !important;
  border-bottom: 82px #343a40 solid !important;
}
.outer-space--bx-82 {
  border-right: 82px #343a40 solid !important;
  border-left: 82px #343a40 solid !important;
}
.outer-space--ba-83 {
  border: 83px #343a40 solid !important;
}
.outer-space--bt-83 {
  border-top: 83px #343a40 solid !important;
}
.outer-space--br-83 {
  border-right: 83px #343a40 solid !important;
}
.outer-space--bl-83 {
  border-left: 83px #343a40 solid !important;
}
.outer-space--bb-83 {
  border-bottom: 83px #343a40 solid !important;
}
.outer-space--by-83 {
  border-top: 83px #343a40 solid !important;
  border-bottom: 83px #343a40 solid !important;
}
.outer-space--bx-83 {
  border-right: 83px #343a40 solid !important;
  border-left: 83px #343a40 solid !important;
}
.outer-space--ba-84 {
  border: 84px #343a40 solid !important;
}
.outer-space--bt-84 {
  border-top: 84px #343a40 solid !important;
}
.outer-space--br-84 {
  border-right: 84px #343a40 solid !important;
}
.outer-space--bl-84 {
  border-left: 84px #343a40 solid !important;
}
.outer-space--bb-84 {
  border-bottom: 84px #343a40 solid !important;
}
.outer-space--by-84 {
  border-top: 84px #343a40 solid !important;
  border-bottom: 84px #343a40 solid !important;
}
.outer-space--bx-84 {
  border-right: 84px #343a40 solid !important;
  border-left: 84px #343a40 solid !important;
}
.outer-space--ba-85 {
  border: 85px #343a40 solid !important;
}
.outer-space--bt-85 {
  border-top: 85px #343a40 solid !important;
}
.outer-space--br-85 {
  border-right: 85px #343a40 solid !important;
}
.outer-space--bl-85 {
  border-left: 85px #343a40 solid !important;
}
.outer-space--bb-85 {
  border-bottom: 85px #343a40 solid !important;
}
.outer-space--by-85 {
  border-top: 85px #343a40 solid !important;
  border-bottom: 85px #343a40 solid !important;
}
.outer-space--bx-85 {
  border-right: 85px #343a40 solid !important;
  border-left: 85px #343a40 solid !important;
}
.outer-space--ba-86 {
  border: 86px #343a40 solid !important;
}
.outer-space--bt-86 {
  border-top: 86px #343a40 solid !important;
}
.outer-space--br-86 {
  border-right: 86px #343a40 solid !important;
}
.outer-space--bl-86 {
  border-left: 86px #343a40 solid !important;
}
.outer-space--bb-86 {
  border-bottom: 86px #343a40 solid !important;
}
.outer-space--by-86 {
  border-top: 86px #343a40 solid !important;
  border-bottom: 86px #343a40 solid !important;
}
.outer-space--bx-86 {
  border-right: 86px #343a40 solid !important;
  border-left: 86px #343a40 solid !important;
}
.outer-space--ba-87 {
  border: 87px #343a40 solid !important;
}
.outer-space--bt-87 {
  border-top: 87px #343a40 solid !important;
}
.outer-space--br-87 {
  border-right: 87px #343a40 solid !important;
}
.outer-space--bl-87 {
  border-left: 87px #343a40 solid !important;
}
.outer-space--bb-87 {
  border-bottom: 87px #343a40 solid !important;
}
.outer-space--by-87 {
  border-top: 87px #343a40 solid !important;
  border-bottom: 87px #343a40 solid !important;
}
.outer-space--bx-87 {
  border-right: 87px #343a40 solid !important;
  border-left: 87px #343a40 solid !important;
}
.outer-space--ba-88 {
  border: 88px #343a40 solid !important;
}
.outer-space--bt-88 {
  border-top: 88px #343a40 solid !important;
}
.outer-space--br-88 {
  border-right: 88px #343a40 solid !important;
}
.outer-space--bl-88 {
  border-left: 88px #343a40 solid !important;
}
.outer-space--bb-88 {
  border-bottom: 88px #343a40 solid !important;
}
.outer-space--by-88 {
  border-top: 88px #343a40 solid !important;
  border-bottom: 88px #343a40 solid !important;
}
.outer-space--bx-88 {
  border-right: 88px #343a40 solid !important;
  border-left: 88px #343a40 solid !important;
}
.outer-space--ba-89 {
  border: 89px #343a40 solid !important;
}
.outer-space--bt-89 {
  border-top: 89px #343a40 solid !important;
}
.outer-space--br-89 {
  border-right: 89px #343a40 solid !important;
}
.outer-space--bl-89 {
  border-left: 89px #343a40 solid !important;
}
.outer-space--bb-89 {
  border-bottom: 89px #343a40 solid !important;
}
.outer-space--by-89 {
  border-top: 89px #343a40 solid !important;
  border-bottom: 89px #343a40 solid !important;
}
.outer-space--bx-89 {
  border-right: 89px #343a40 solid !important;
  border-left: 89px #343a40 solid !important;
}
.outer-space--ba-90 {
  border: 90px #343a40 solid !important;
}
.outer-space--bt-90 {
  border-top: 90px #343a40 solid !important;
}
.outer-space--br-90 {
  border-right: 90px #343a40 solid !important;
}
.outer-space--bl-90 {
  border-left: 90px #343a40 solid !important;
}
.outer-space--bb-90 {
  border-bottom: 90px #343a40 solid !important;
}
.outer-space--by-90 {
  border-top: 90px #343a40 solid !important;
  border-bottom: 90px #343a40 solid !important;
}
.outer-space--bx-90 {
  border-right: 90px #343a40 solid !important;
  border-left: 90px #343a40 solid !important;
}
.outer-space--ba-91 {
  border: 91px #343a40 solid !important;
}
.outer-space--bt-91 {
  border-top: 91px #343a40 solid !important;
}
.outer-space--br-91 {
  border-right: 91px #343a40 solid !important;
}
.outer-space--bl-91 {
  border-left: 91px #343a40 solid !important;
}
.outer-space--bb-91 {
  border-bottom: 91px #343a40 solid !important;
}
.outer-space--by-91 {
  border-top: 91px #343a40 solid !important;
  border-bottom: 91px #343a40 solid !important;
}
.outer-space--bx-91 {
  border-right: 91px #343a40 solid !important;
  border-left: 91px #343a40 solid !important;
}
.outer-space--ba-92 {
  border: 92px #343a40 solid !important;
}
.outer-space--bt-92 {
  border-top: 92px #343a40 solid !important;
}
.outer-space--br-92 {
  border-right: 92px #343a40 solid !important;
}
.outer-space--bl-92 {
  border-left: 92px #343a40 solid !important;
}
.outer-space--bb-92 {
  border-bottom: 92px #343a40 solid !important;
}
.outer-space--by-92 {
  border-top: 92px #343a40 solid !important;
  border-bottom: 92px #343a40 solid !important;
}
.outer-space--bx-92 {
  border-right: 92px #343a40 solid !important;
  border-left: 92px #343a40 solid !important;
}
.outer-space--ba-93 {
  border: 93px #343a40 solid !important;
}
.outer-space--bt-93 {
  border-top: 93px #343a40 solid !important;
}
.outer-space--br-93 {
  border-right: 93px #343a40 solid !important;
}
.outer-space--bl-93 {
  border-left: 93px #343a40 solid !important;
}
.outer-space--bb-93 {
  border-bottom: 93px #343a40 solid !important;
}
.outer-space--by-93 {
  border-top: 93px #343a40 solid !important;
  border-bottom: 93px #343a40 solid !important;
}
.outer-space--bx-93 {
  border-right: 93px #343a40 solid !important;
  border-left: 93px #343a40 solid !important;
}
.outer-space--ba-94 {
  border: 94px #343a40 solid !important;
}
.outer-space--bt-94 {
  border-top: 94px #343a40 solid !important;
}
.outer-space--br-94 {
  border-right: 94px #343a40 solid !important;
}
.outer-space--bl-94 {
  border-left: 94px #343a40 solid !important;
}
.outer-space--bb-94 {
  border-bottom: 94px #343a40 solid !important;
}
.outer-space--by-94 {
  border-top: 94px #343a40 solid !important;
  border-bottom: 94px #343a40 solid !important;
}
.outer-space--bx-94 {
  border-right: 94px #343a40 solid !important;
  border-left: 94px #343a40 solid !important;
}
.outer-space--ba-95 {
  border: 95px #343a40 solid !important;
}
.outer-space--bt-95 {
  border-top: 95px #343a40 solid !important;
}
.outer-space--br-95 {
  border-right: 95px #343a40 solid !important;
}
.outer-space--bl-95 {
  border-left: 95px #343a40 solid !important;
}
.outer-space--bb-95 {
  border-bottom: 95px #343a40 solid !important;
}
.outer-space--by-95 {
  border-top: 95px #343a40 solid !important;
  border-bottom: 95px #343a40 solid !important;
}
.outer-space--bx-95 {
  border-right: 95px #343a40 solid !important;
  border-left: 95px #343a40 solid !important;
}
.outer-space--ba-96 {
  border: 96px #343a40 solid !important;
}
.outer-space--bt-96 {
  border-top: 96px #343a40 solid !important;
}
.outer-space--br-96 {
  border-right: 96px #343a40 solid !important;
}
.outer-space--bl-96 {
  border-left: 96px #343a40 solid !important;
}
.outer-space--bb-96 {
  border-bottom: 96px #343a40 solid !important;
}
.outer-space--by-96 {
  border-top: 96px #343a40 solid !important;
  border-bottom: 96px #343a40 solid !important;
}
.outer-space--bx-96 {
  border-right: 96px #343a40 solid !important;
  border-left: 96px #343a40 solid !important;
}
.outer-space--ba-97 {
  border: 97px #343a40 solid !important;
}
.outer-space--bt-97 {
  border-top: 97px #343a40 solid !important;
}
.outer-space--br-97 {
  border-right: 97px #343a40 solid !important;
}
.outer-space--bl-97 {
  border-left: 97px #343a40 solid !important;
}
.outer-space--bb-97 {
  border-bottom: 97px #343a40 solid !important;
}
.outer-space--by-97 {
  border-top: 97px #343a40 solid !important;
  border-bottom: 97px #343a40 solid !important;
}
.outer-space--bx-97 {
  border-right: 97px #343a40 solid !important;
  border-left: 97px #343a40 solid !important;
}
.outer-space--ba-98 {
  border: 98px #343a40 solid !important;
}
.outer-space--bt-98 {
  border-top: 98px #343a40 solid !important;
}
.outer-space--br-98 {
  border-right: 98px #343a40 solid !important;
}
.outer-space--bl-98 {
  border-left: 98px #343a40 solid !important;
}
.outer-space--bb-98 {
  border-bottom: 98px #343a40 solid !important;
}
.outer-space--by-98 {
  border-top: 98px #343a40 solid !important;
  border-bottom: 98px #343a40 solid !important;
}
.outer-space--bx-98 {
  border-right: 98px #343a40 solid !important;
  border-left: 98px #343a40 solid !important;
}
.outer-space--ba-99 {
  border: 99px #343a40 solid !important;
}
.outer-space--bt-99 {
  border-top: 99px #343a40 solid !important;
}
.outer-space--br-99 {
  border-right: 99px #343a40 solid !important;
}
.outer-space--bl-99 {
  border-left: 99px #343a40 solid !important;
}
.outer-space--bb-99 {
  border-bottom: 99px #343a40 solid !important;
}
.outer-space--by-99 {
  border-top: 99px #343a40 solid !important;
  border-bottom: 99px #343a40 solid !important;
}
.outer-space--bx-99 {
  border-right: 99px #343a40 solid !important;
  border-left: 99px #343a40 solid !important;
}
.outer-space--ba-100 {
  border: 100px #343a40 solid !important;
}
.outer-space--bt-100 {
  border-top: 100px #343a40 solid !important;
}
.outer-space--br-100 {
  border-right: 100px #343a40 solid !important;
}
.outer-space--bl-100 {
  border-left: 100px #343a40 solid !important;
}
.outer-space--bb-100 {
  border-bottom: 100px #343a40 solid !important;
}
.outer-space--by-100 {
  border-top: 100px #343a40 solid !important;
  border-bottom: 100px #343a40 solid !important;
}
.outer-space--bx-100 {
  border-right: 100px #343a40 solid !important;
  border-left: 100px #343a40 solid !important;
}
.fiejoa--ba-1 {
  border: 1px #8ed891 solid !important;
}
.fiejoa--bt-1 {
  border-top: 1px #8ed891 solid !important;
}
.fiejoa--br-1 {
  border-right: 1px #8ed891 solid !important;
}
.fiejoa--bl-1 {
  border-left: 1px #8ed891 solid !important;
}
.fiejoa--bb-1 {
  border-bottom: 1px #8ed891 solid !important;
}
.fiejoa--by-1 {
  border-top: 1px #8ed891 solid !important;
  border-bottom: 1px #8ed891 solid !important;
}
.fiejoa--bx-1 {
  border-right: 1px #8ed891 solid !important;
  border-left: 1px #8ed891 solid !important;
}
.fiejoa--ba-2 {
  border: 2px #8ed891 solid !important;
}
.fiejoa--bt-2 {
  border-top: 2px #8ed891 solid !important;
}
.fiejoa--br-2 {
  border-right: 2px #8ed891 solid !important;
}
.fiejoa--bl-2 {
  border-left: 2px #8ed891 solid !important;
}
.fiejoa--bb-2 {
  border-bottom: 2px #8ed891 solid !important;
}
.fiejoa--by-2 {
  border-top: 2px #8ed891 solid !important;
  border-bottom: 2px #8ed891 solid !important;
}
.fiejoa--bx-2 {
  border-right: 2px #8ed891 solid !important;
  border-left: 2px #8ed891 solid !important;
}
.fiejoa--ba-3 {
  border: 3px #8ed891 solid !important;
}
.fiejoa--bt-3 {
  border-top: 3px #8ed891 solid !important;
}
.fiejoa--br-3 {
  border-right: 3px #8ed891 solid !important;
}
.fiejoa--bl-3 {
  border-left: 3px #8ed891 solid !important;
}
.fiejoa--bb-3 {
  border-bottom: 3px #8ed891 solid !important;
}
.fiejoa--by-3 {
  border-top: 3px #8ed891 solid !important;
  border-bottom: 3px #8ed891 solid !important;
}
.fiejoa--bx-3 {
  border-right: 3px #8ed891 solid !important;
  border-left: 3px #8ed891 solid !important;
}
.fiejoa--ba-4 {
  border: 4px #8ed891 solid !important;
}
.fiejoa--bt-4 {
  border-top: 4px #8ed891 solid !important;
}
.fiejoa--br-4 {
  border-right: 4px #8ed891 solid !important;
}
.fiejoa--bl-4 {
  border-left: 4px #8ed891 solid !important;
}
.fiejoa--bb-4 {
  border-bottom: 4px #8ed891 solid !important;
}
.fiejoa--by-4 {
  border-top: 4px #8ed891 solid !important;
  border-bottom: 4px #8ed891 solid !important;
}
.fiejoa--bx-4 {
  border-right: 4px #8ed891 solid !important;
  border-left: 4px #8ed891 solid !important;
}
.fiejoa--ba-5 {
  border: 5px #8ed891 solid !important;
}
.fiejoa--bt-5 {
  border-top: 5px #8ed891 solid !important;
}
.fiejoa--br-5 {
  border-right: 5px #8ed891 solid !important;
}
.fiejoa--bl-5 {
  border-left: 5px #8ed891 solid !important;
}
.fiejoa--bb-5 {
  border-bottom: 5px #8ed891 solid !important;
}
.fiejoa--by-5 {
  border-top: 5px #8ed891 solid !important;
  border-bottom: 5px #8ed891 solid !important;
}
.fiejoa--bx-5 {
  border-right: 5px #8ed891 solid !important;
  border-left: 5px #8ed891 solid !important;
}
.fiejoa--ba-6 {
  border: 6px #8ed891 solid !important;
}
.fiejoa--bt-6 {
  border-top: 6px #8ed891 solid !important;
}
.fiejoa--br-6 {
  border-right: 6px #8ed891 solid !important;
}
.fiejoa--bl-6 {
  border-left: 6px #8ed891 solid !important;
}
.fiejoa--bb-6 {
  border-bottom: 6px #8ed891 solid !important;
}
.fiejoa--by-6 {
  border-top: 6px #8ed891 solid !important;
  border-bottom: 6px #8ed891 solid !important;
}
.fiejoa--bx-6 {
  border-right: 6px #8ed891 solid !important;
  border-left: 6px #8ed891 solid !important;
}
.fiejoa--ba-7 {
  border: 7px #8ed891 solid !important;
}
.fiejoa--bt-7 {
  border-top: 7px #8ed891 solid !important;
}
.fiejoa--br-7 {
  border-right: 7px #8ed891 solid !important;
}
.fiejoa--bl-7 {
  border-left: 7px #8ed891 solid !important;
}
.fiejoa--bb-7 {
  border-bottom: 7px #8ed891 solid !important;
}
.fiejoa--by-7 {
  border-top: 7px #8ed891 solid !important;
  border-bottom: 7px #8ed891 solid !important;
}
.fiejoa--bx-7 {
  border-right: 7px #8ed891 solid !important;
  border-left: 7px #8ed891 solid !important;
}
.fiejoa--ba-8 {
  border: 8px #8ed891 solid !important;
}
.fiejoa--bt-8 {
  border-top: 8px #8ed891 solid !important;
}
.fiejoa--br-8 {
  border-right: 8px #8ed891 solid !important;
}
.fiejoa--bl-8 {
  border-left: 8px #8ed891 solid !important;
}
.fiejoa--bb-8 {
  border-bottom: 8px #8ed891 solid !important;
}
.fiejoa--by-8 {
  border-top: 8px #8ed891 solid !important;
  border-bottom: 8px #8ed891 solid !important;
}
.fiejoa--bx-8 {
  border-right: 8px #8ed891 solid !important;
  border-left: 8px #8ed891 solid !important;
}
.fiejoa--ba-9 {
  border: 9px #8ed891 solid !important;
}
.fiejoa--bt-9 {
  border-top: 9px #8ed891 solid !important;
}
.fiejoa--br-9 {
  border-right: 9px #8ed891 solid !important;
}
.fiejoa--bl-9 {
  border-left: 9px #8ed891 solid !important;
}
.fiejoa--bb-9 {
  border-bottom: 9px #8ed891 solid !important;
}
.fiejoa--by-9 {
  border-top: 9px #8ed891 solid !important;
  border-bottom: 9px #8ed891 solid !important;
}
.fiejoa--bx-9 {
  border-right: 9px #8ed891 solid !important;
  border-left: 9px #8ed891 solid !important;
}
.fiejoa--ba-10 {
  border: 10px #8ed891 solid !important;
}
.fiejoa--bt-10 {
  border-top: 10px #8ed891 solid !important;
}
.fiejoa--br-10 {
  border-right: 10px #8ed891 solid !important;
}
.fiejoa--bl-10 {
  border-left: 10px #8ed891 solid !important;
}
.fiejoa--bb-10 {
  border-bottom: 10px #8ed891 solid !important;
}
.fiejoa--by-10 {
  border-top: 10px #8ed891 solid !important;
  border-bottom: 10px #8ed891 solid !important;
}
.fiejoa--bx-10 {
  border-right: 10px #8ed891 solid !important;
  border-left: 10px #8ed891 solid !important;
}
.fiejoa--ba-11 {
  border: 11px #8ed891 solid !important;
}
.fiejoa--bt-11 {
  border-top: 11px #8ed891 solid !important;
}
.fiejoa--br-11 {
  border-right: 11px #8ed891 solid !important;
}
.fiejoa--bl-11 {
  border-left: 11px #8ed891 solid !important;
}
.fiejoa--bb-11 {
  border-bottom: 11px #8ed891 solid !important;
}
.fiejoa--by-11 {
  border-top: 11px #8ed891 solid !important;
  border-bottom: 11px #8ed891 solid !important;
}
.fiejoa--bx-11 {
  border-right: 11px #8ed891 solid !important;
  border-left: 11px #8ed891 solid !important;
}
.fiejoa--ba-12 {
  border: 12px #8ed891 solid !important;
}
.fiejoa--bt-12 {
  border-top: 12px #8ed891 solid !important;
}
.fiejoa--br-12 {
  border-right: 12px #8ed891 solid !important;
}
.fiejoa--bl-12 {
  border-left: 12px #8ed891 solid !important;
}
.fiejoa--bb-12 {
  border-bottom: 12px #8ed891 solid !important;
}
.fiejoa--by-12 {
  border-top: 12px #8ed891 solid !important;
  border-bottom: 12px #8ed891 solid !important;
}
.fiejoa--bx-12 {
  border-right: 12px #8ed891 solid !important;
  border-left: 12px #8ed891 solid !important;
}
.fiejoa--ba-13 {
  border: 13px #8ed891 solid !important;
}
.fiejoa--bt-13 {
  border-top: 13px #8ed891 solid !important;
}
.fiejoa--br-13 {
  border-right: 13px #8ed891 solid !important;
}
.fiejoa--bl-13 {
  border-left: 13px #8ed891 solid !important;
}
.fiejoa--bb-13 {
  border-bottom: 13px #8ed891 solid !important;
}
.fiejoa--by-13 {
  border-top: 13px #8ed891 solid !important;
  border-bottom: 13px #8ed891 solid !important;
}
.fiejoa--bx-13 {
  border-right: 13px #8ed891 solid !important;
  border-left: 13px #8ed891 solid !important;
}
.fiejoa--ba-14 {
  border: 14px #8ed891 solid !important;
}
.fiejoa--bt-14 {
  border-top: 14px #8ed891 solid !important;
}
.fiejoa--br-14 {
  border-right: 14px #8ed891 solid !important;
}
.fiejoa--bl-14 {
  border-left: 14px #8ed891 solid !important;
}
.fiejoa--bb-14 {
  border-bottom: 14px #8ed891 solid !important;
}
.fiejoa--by-14 {
  border-top: 14px #8ed891 solid !important;
  border-bottom: 14px #8ed891 solid !important;
}
.fiejoa--bx-14 {
  border-right: 14px #8ed891 solid !important;
  border-left: 14px #8ed891 solid !important;
}
.fiejoa--ba-15 {
  border: 15px #8ed891 solid !important;
}
.fiejoa--bt-15 {
  border-top: 15px #8ed891 solid !important;
}
.fiejoa--br-15 {
  border-right: 15px #8ed891 solid !important;
}
.fiejoa--bl-15 {
  border-left: 15px #8ed891 solid !important;
}
.fiejoa--bb-15 {
  border-bottom: 15px #8ed891 solid !important;
}
.fiejoa--by-15 {
  border-top: 15px #8ed891 solid !important;
  border-bottom: 15px #8ed891 solid !important;
}
.fiejoa--bx-15 {
  border-right: 15px #8ed891 solid !important;
  border-left: 15px #8ed891 solid !important;
}
.fiejoa--ba-16 {
  border: 16px #8ed891 solid !important;
}
.fiejoa--bt-16 {
  border-top: 16px #8ed891 solid !important;
}
.fiejoa--br-16 {
  border-right: 16px #8ed891 solid !important;
}
.fiejoa--bl-16 {
  border-left: 16px #8ed891 solid !important;
}
.fiejoa--bb-16 {
  border-bottom: 16px #8ed891 solid !important;
}
.fiejoa--by-16 {
  border-top: 16px #8ed891 solid !important;
  border-bottom: 16px #8ed891 solid !important;
}
.fiejoa--bx-16 {
  border-right: 16px #8ed891 solid !important;
  border-left: 16px #8ed891 solid !important;
}
.fiejoa--ba-17 {
  border: 17px #8ed891 solid !important;
}
.fiejoa--bt-17 {
  border-top: 17px #8ed891 solid !important;
}
.fiejoa--br-17 {
  border-right: 17px #8ed891 solid !important;
}
.fiejoa--bl-17 {
  border-left: 17px #8ed891 solid !important;
}
.fiejoa--bb-17 {
  border-bottom: 17px #8ed891 solid !important;
}
.fiejoa--by-17 {
  border-top: 17px #8ed891 solid !important;
  border-bottom: 17px #8ed891 solid !important;
}
.fiejoa--bx-17 {
  border-right: 17px #8ed891 solid !important;
  border-left: 17px #8ed891 solid !important;
}
.fiejoa--ba-18 {
  border: 18px #8ed891 solid !important;
}
.fiejoa--bt-18 {
  border-top: 18px #8ed891 solid !important;
}
.fiejoa--br-18 {
  border-right: 18px #8ed891 solid !important;
}
.fiejoa--bl-18 {
  border-left: 18px #8ed891 solid !important;
}
.fiejoa--bb-18 {
  border-bottom: 18px #8ed891 solid !important;
}
.fiejoa--by-18 {
  border-top: 18px #8ed891 solid !important;
  border-bottom: 18px #8ed891 solid !important;
}
.fiejoa--bx-18 {
  border-right: 18px #8ed891 solid !important;
  border-left: 18px #8ed891 solid !important;
}
.fiejoa--ba-19 {
  border: 19px #8ed891 solid !important;
}
.fiejoa--bt-19 {
  border-top: 19px #8ed891 solid !important;
}
.fiejoa--br-19 {
  border-right: 19px #8ed891 solid !important;
}
.fiejoa--bl-19 {
  border-left: 19px #8ed891 solid !important;
}
.fiejoa--bb-19 {
  border-bottom: 19px #8ed891 solid !important;
}
.fiejoa--by-19 {
  border-top: 19px #8ed891 solid !important;
  border-bottom: 19px #8ed891 solid !important;
}
.fiejoa--bx-19 {
  border-right: 19px #8ed891 solid !important;
  border-left: 19px #8ed891 solid !important;
}
.fiejoa--ba-20 {
  border: 20px #8ed891 solid !important;
}
.fiejoa--bt-20 {
  border-top: 20px #8ed891 solid !important;
}
.fiejoa--br-20 {
  border-right: 20px #8ed891 solid !important;
}
.fiejoa--bl-20 {
  border-left: 20px #8ed891 solid !important;
}
.fiejoa--bb-20 {
  border-bottom: 20px #8ed891 solid !important;
}
.fiejoa--by-20 {
  border-top: 20px #8ed891 solid !important;
  border-bottom: 20px #8ed891 solid !important;
}
.fiejoa--bx-20 {
  border-right: 20px #8ed891 solid !important;
  border-left: 20px #8ed891 solid !important;
}
.fiejoa--ba-21 {
  border: 21px #8ed891 solid !important;
}
.fiejoa--bt-21 {
  border-top: 21px #8ed891 solid !important;
}
.fiejoa--br-21 {
  border-right: 21px #8ed891 solid !important;
}
.fiejoa--bl-21 {
  border-left: 21px #8ed891 solid !important;
}
.fiejoa--bb-21 {
  border-bottom: 21px #8ed891 solid !important;
}
.fiejoa--by-21 {
  border-top: 21px #8ed891 solid !important;
  border-bottom: 21px #8ed891 solid !important;
}
.fiejoa--bx-21 {
  border-right: 21px #8ed891 solid !important;
  border-left: 21px #8ed891 solid !important;
}
.fiejoa--ba-22 {
  border: 22px #8ed891 solid !important;
}
.fiejoa--bt-22 {
  border-top: 22px #8ed891 solid !important;
}
.fiejoa--br-22 {
  border-right: 22px #8ed891 solid !important;
}
.fiejoa--bl-22 {
  border-left: 22px #8ed891 solid !important;
}
.fiejoa--bb-22 {
  border-bottom: 22px #8ed891 solid !important;
}
.fiejoa--by-22 {
  border-top: 22px #8ed891 solid !important;
  border-bottom: 22px #8ed891 solid !important;
}
.fiejoa--bx-22 {
  border-right: 22px #8ed891 solid !important;
  border-left: 22px #8ed891 solid !important;
}
.fiejoa--ba-23 {
  border: 23px #8ed891 solid !important;
}
.fiejoa--bt-23 {
  border-top: 23px #8ed891 solid !important;
}
.fiejoa--br-23 {
  border-right: 23px #8ed891 solid !important;
}
.fiejoa--bl-23 {
  border-left: 23px #8ed891 solid !important;
}
.fiejoa--bb-23 {
  border-bottom: 23px #8ed891 solid !important;
}
.fiejoa--by-23 {
  border-top: 23px #8ed891 solid !important;
  border-bottom: 23px #8ed891 solid !important;
}
.fiejoa--bx-23 {
  border-right: 23px #8ed891 solid !important;
  border-left: 23px #8ed891 solid !important;
}
.fiejoa--ba-24 {
  border: 24px #8ed891 solid !important;
}
.fiejoa--bt-24 {
  border-top: 24px #8ed891 solid !important;
}
.fiejoa--br-24 {
  border-right: 24px #8ed891 solid !important;
}
.fiejoa--bl-24 {
  border-left: 24px #8ed891 solid !important;
}
.fiejoa--bb-24 {
  border-bottom: 24px #8ed891 solid !important;
}
.fiejoa--by-24 {
  border-top: 24px #8ed891 solid !important;
  border-bottom: 24px #8ed891 solid !important;
}
.fiejoa--bx-24 {
  border-right: 24px #8ed891 solid !important;
  border-left: 24px #8ed891 solid !important;
}
.fiejoa--ba-25 {
  border: 25px #8ed891 solid !important;
}
.fiejoa--bt-25 {
  border-top: 25px #8ed891 solid !important;
}
.fiejoa--br-25 {
  border-right: 25px #8ed891 solid !important;
}
.fiejoa--bl-25 {
  border-left: 25px #8ed891 solid !important;
}
.fiejoa--bb-25 {
  border-bottom: 25px #8ed891 solid !important;
}
.fiejoa--by-25 {
  border-top: 25px #8ed891 solid !important;
  border-bottom: 25px #8ed891 solid !important;
}
.fiejoa--bx-25 {
  border-right: 25px #8ed891 solid !important;
  border-left: 25px #8ed891 solid !important;
}
.fiejoa--ba-26 {
  border: 26px #8ed891 solid !important;
}
.fiejoa--bt-26 {
  border-top: 26px #8ed891 solid !important;
}
.fiejoa--br-26 {
  border-right: 26px #8ed891 solid !important;
}
.fiejoa--bl-26 {
  border-left: 26px #8ed891 solid !important;
}
.fiejoa--bb-26 {
  border-bottom: 26px #8ed891 solid !important;
}
.fiejoa--by-26 {
  border-top: 26px #8ed891 solid !important;
  border-bottom: 26px #8ed891 solid !important;
}
.fiejoa--bx-26 {
  border-right: 26px #8ed891 solid !important;
  border-left: 26px #8ed891 solid !important;
}
.fiejoa--ba-27 {
  border: 27px #8ed891 solid !important;
}
.fiejoa--bt-27 {
  border-top: 27px #8ed891 solid !important;
}
.fiejoa--br-27 {
  border-right: 27px #8ed891 solid !important;
}
.fiejoa--bl-27 {
  border-left: 27px #8ed891 solid !important;
}
.fiejoa--bb-27 {
  border-bottom: 27px #8ed891 solid !important;
}
.fiejoa--by-27 {
  border-top: 27px #8ed891 solid !important;
  border-bottom: 27px #8ed891 solid !important;
}
.fiejoa--bx-27 {
  border-right: 27px #8ed891 solid !important;
  border-left: 27px #8ed891 solid !important;
}
.fiejoa--ba-28 {
  border: 28px #8ed891 solid !important;
}
.fiejoa--bt-28 {
  border-top: 28px #8ed891 solid !important;
}
.fiejoa--br-28 {
  border-right: 28px #8ed891 solid !important;
}
.fiejoa--bl-28 {
  border-left: 28px #8ed891 solid !important;
}
.fiejoa--bb-28 {
  border-bottom: 28px #8ed891 solid !important;
}
.fiejoa--by-28 {
  border-top: 28px #8ed891 solid !important;
  border-bottom: 28px #8ed891 solid !important;
}
.fiejoa--bx-28 {
  border-right: 28px #8ed891 solid !important;
  border-left: 28px #8ed891 solid !important;
}
.fiejoa--ba-29 {
  border: 29px #8ed891 solid !important;
}
.fiejoa--bt-29 {
  border-top: 29px #8ed891 solid !important;
}
.fiejoa--br-29 {
  border-right: 29px #8ed891 solid !important;
}
.fiejoa--bl-29 {
  border-left: 29px #8ed891 solid !important;
}
.fiejoa--bb-29 {
  border-bottom: 29px #8ed891 solid !important;
}
.fiejoa--by-29 {
  border-top: 29px #8ed891 solid !important;
  border-bottom: 29px #8ed891 solid !important;
}
.fiejoa--bx-29 {
  border-right: 29px #8ed891 solid !important;
  border-left: 29px #8ed891 solid !important;
}
.fiejoa--ba-30 {
  border: 30px #8ed891 solid !important;
}
.fiejoa--bt-30 {
  border-top: 30px #8ed891 solid !important;
}
.fiejoa--br-30 {
  border-right: 30px #8ed891 solid !important;
}
.fiejoa--bl-30 {
  border-left: 30px #8ed891 solid !important;
}
.fiejoa--bb-30 {
  border-bottom: 30px #8ed891 solid !important;
}
.fiejoa--by-30 {
  border-top: 30px #8ed891 solid !important;
  border-bottom: 30px #8ed891 solid !important;
}
.fiejoa--bx-30 {
  border-right: 30px #8ed891 solid !important;
  border-left: 30px #8ed891 solid !important;
}
.fiejoa--ba-31 {
  border: 31px #8ed891 solid !important;
}
.fiejoa--bt-31 {
  border-top: 31px #8ed891 solid !important;
}
.fiejoa--br-31 {
  border-right: 31px #8ed891 solid !important;
}
.fiejoa--bl-31 {
  border-left: 31px #8ed891 solid !important;
}
.fiejoa--bb-31 {
  border-bottom: 31px #8ed891 solid !important;
}
.fiejoa--by-31 {
  border-top: 31px #8ed891 solid !important;
  border-bottom: 31px #8ed891 solid !important;
}
.fiejoa--bx-31 {
  border-right: 31px #8ed891 solid !important;
  border-left: 31px #8ed891 solid !important;
}
.fiejoa--ba-32 {
  border: 32px #8ed891 solid !important;
}
.fiejoa--bt-32 {
  border-top: 32px #8ed891 solid !important;
}
.fiejoa--br-32 {
  border-right: 32px #8ed891 solid !important;
}
.fiejoa--bl-32 {
  border-left: 32px #8ed891 solid !important;
}
.fiejoa--bb-32 {
  border-bottom: 32px #8ed891 solid !important;
}
.fiejoa--by-32 {
  border-top: 32px #8ed891 solid !important;
  border-bottom: 32px #8ed891 solid !important;
}
.fiejoa--bx-32 {
  border-right: 32px #8ed891 solid !important;
  border-left: 32px #8ed891 solid !important;
}
.fiejoa--ba-33 {
  border: 33px #8ed891 solid !important;
}
.fiejoa--bt-33 {
  border-top: 33px #8ed891 solid !important;
}
.fiejoa--br-33 {
  border-right: 33px #8ed891 solid !important;
}
.fiejoa--bl-33 {
  border-left: 33px #8ed891 solid !important;
}
.fiejoa--bb-33 {
  border-bottom: 33px #8ed891 solid !important;
}
.fiejoa--by-33 {
  border-top: 33px #8ed891 solid !important;
  border-bottom: 33px #8ed891 solid !important;
}
.fiejoa--bx-33 {
  border-right: 33px #8ed891 solid !important;
  border-left: 33px #8ed891 solid !important;
}
.fiejoa--ba-34 {
  border: 34px #8ed891 solid !important;
}
.fiejoa--bt-34 {
  border-top: 34px #8ed891 solid !important;
}
.fiejoa--br-34 {
  border-right: 34px #8ed891 solid !important;
}
.fiejoa--bl-34 {
  border-left: 34px #8ed891 solid !important;
}
.fiejoa--bb-34 {
  border-bottom: 34px #8ed891 solid !important;
}
.fiejoa--by-34 {
  border-top: 34px #8ed891 solid !important;
  border-bottom: 34px #8ed891 solid !important;
}
.fiejoa--bx-34 {
  border-right: 34px #8ed891 solid !important;
  border-left: 34px #8ed891 solid !important;
}
.fiejoa--ba-35 {
  border: 35px #8ed891 solid !important;
}
.fiejoa--bt-35 {
  border-top: 35px #8ed891 solid !important;
}
.fiejoa--br-35 {
  border-right: 35px #8ed891 solid !important;
}
.fiejoa--bl-35 {
  border-left: 35px #8ed891 solid !important;
}
.fiejoa--bb-35 {
  border-bottom: 35px #8ed891 solid !important;
}
.fiejoa--by-35 {
  border-top: 35px #8ed891 solid !important;
  border-bottom: 35px #8ed891 solid !important;
}
.fiejoa--bx-35 {
  border-right: 35px #8ed891 solid !important;
  border-left: 35px #8ed891 solid !important;
}
.fiejoa--ba-36 {
  border: 36px #8ed891 solid !important;
}
.fiejoa--bt-36 {
  border-top: 36px #8ed891 solid !important;
}
.fiejoa--br-36 {
  border-right: 36px #8ed891 solid !important;
}
.fiejoa--bl-36 {
  border-left: 36px #8ed891 solid !important;
}
.fiejoa--bb-36 {
  border-bottom: 36px #8ed891 solid !important;
}
.fiejoa--by-36 {
  border-top: 36px #8ed891 solid !important;
  border-bottom: 36px #8ed891 solid !important;
}
.fiejoa--bx-36 {
  border-right: 36px #8ed891 solid !important;
  border-left: 36px #8ed891 solid !important;
}
.fiejoa--ba-37 {
  border: 37px #8ed891 solid !important;
}
.fiejoa--bt-37 {
  border-top: 37px #8ed891 solid !important;
}
.fiejoa--br-37 {
  border-right: 37px #8ed891 solid !important;
}
.fiejoa--bl-37 {
  border-left: 37px #8ed891 solid !important;
}
.fiejoa--bb-37 {
  border-bottom: 37px #8ed891 solid !important;
}
.fiejoa--by-37 {
  border-top: 37px #8ed891 solid !important;
  border-bottom: 37px #8ed891 solid !important;
}
.fiejoa--bx-37 {
  border-right: 37px #8ed891 solid !important;
  border-left: 37px #8ed891 solid !important;
}
.fiejoa--ba-38 {
  border: 38px #8ed891 solid !important;
}
.fiejoa--bt-38 {
  border-top: 38px #8ed891 solid !important;
}
.fiejoa--br-38 {
  border-right: 38px #8ed891 solid !important;
}
.fiejoa--bl-38 {
  border-left: 38px #8ed891 solid !important;
}
.fiejoa--bb-38 {
  border-bottom: 38px #8ed891 solid !important;
}
.fiejoa--by-38 {
  border-top: 38px #8ed891 solid !important;
  border-bottom: 38px #8ed891 solid !important;
}
.fiejoa--bx-38 {
  border-right: 38px #8ed891 solid !important;
  border-left: 38px #8ed891 solid !important;
}
.fiejoa--ba-39 {
  border: 39px #8ed891 solid !important;
}
.fiejoa--bt-39 {
  border-top: 39px #8ed891 solid !important;
}
.fiejoa--br-39 {
  border-right: 39px #8ed891 solid !important;
}
.fiejoa--bl-39 {
  border-left: 39px #8ed891 solid !important;
}
.fiejoa--bb-39 {
  border-bottom: 39px #8ed891 solid !important;
}
.fiejoa--by-39 {
  border-top: 39px #8ed891 solid !important;
  border-bottom: 39px #8ed891 solid !important;
}
.fiejoa--bx-39 {
  border-right: 39px #8ed891 solid !important;
  border-left: 39px #8ed891 solid !important;
}
.fiejoa--ba-40 {
  border: 40px #8ed891 solid !important;
}
.fiejoa--bt-40 {
  border-top: 40px #8ed891 solid !important;
}
.fiejoa--br-40 {
  border-right: 40px #8ed891 solid !important;
}
.fiejoa--bl-40 {
  border-left: 40px #8ed891 solid !important;
}
.fiejoa--bb-40 {
  border-bottom: 40px #8ed891 solid !important;
}
.fiejoa--by-40 {
  border-top: 40px #8ed891 solid !important;
  border-bottom: 40px #8ed891 solid !important;
}
.fiejoa--bx-40 {
  border-right: 40px #8ed891 solid !important;
  border-left: 40px #8ed891 solid !important;
}
.fiejoa--ba-41 {
  border: 41px #8ed891 solid !important;
}
.fiejoa--bt-41 {
  border-top: 41px #8ed891 solid !important;
}
.fiejoa--br-41 {
  border-right: 41px #8ed891 solid !important;
}
.fiejoa--bl-41 {
  border-left: 41px #8ed891 solid !important;
}
.fiejoa--bb-41 {
  border-bottom: 41px #8ed891 solid !important;
}
.fiejoa--by-41 {
  border-top: 41px #8ed891 solid !important;
  border-bottom: 41px #8ed891 solid !important;
}
.fiejoa--bx-41 {
  border-right: 41px #8ed891 solid !important;
  border-left: 41px #8ed891 solid !important;
}
.fiejoa--ba-42 {
  border: 42px #8ed891 solid !important;
}
.fiejoa--bt-42 {
  border-top: 42px #8ed891 solid !important;
}
.fiejoa--br-42 {
  border-right: 42px #8ed891 solid !important;
}
.fiejoa--bl-42 {
  border-left: 42px #8ed891 solid !important;
}
.fiejoa--bb-42 {
  border-bottom: 42px #8ed891 solid !important;
}
.fiejoa--by-42 {
  border-top: 42px #8ed891 solid !important;
  border-bottom: 42px #8ed891 solid !important;
}
.fiejoa--bx-42 {
  border-right: 42px #8ed891 solid !important;
  border-left: 42px #8ed891 solid !important;
}
.fiejoa--ba-43 {
  border: 43px #8ed891 solid !important;
}
.fiejoa--bt-43 {
  border-top: 43px #8ed891 solid !important;
}
.fiejoa--br-43 {
  border-right: 43px #8ed891 solid !important;
}
.fiejoa--bl-43 {
  border-left: 43px #8ed891 solid !important;
}
.fiejoa--bb-43 {
  border-bottom: 43px #8ed891 solid !important;
}
.fiejoa--by-43 {
  border-top: 43px #8ed891 solid !important;
  border-bottom: 43px #8ed891 solid !important;
}
.fiejoa--bx-43 {
  border-right: 43px #8ed891 solid !important;
  border-left: 43px #8ed891 solid !important;
}
.fiejoa--ba-44 {
  border: 44px #8ed891 solid !important;
}
.fiejoa--bt-44 {
  border-top: 44px #8ed891 solid !important;
}
.fiejoa--br-44 {
  border-right: 44px #8ed891 solid !important;
}
.fiejoa--bl-44 {
  border-left: 44px #8ed891 solid !important;
}
.fiejoa--bb-44 {
  border-bottom: 44px #8ed891 solid !important;
}
.fiejoa--by-44 {
  border-top: 44px #8ed891 solid !important;
  border-bottom: 44px #8ed891 solid !important;
}
.fiejoa--bx-44 {
  border-right: 44px #8ed891 solid !important;
  border-left: 44px #8ed891 solid !important;
}
.fiejoa--ba-45 {
  border: 45px #8ed891 solid !important;
}
.fiejoa--bt-45 {
  border-top: 45px #8ed891 solid !important;
}
.fiejoa--br-45 {
  border-right: 45px #8ed891 solid !important;
}
.fiejoa--bl-45 {
  border-left: 45px #8ed891 solid !important;
}
.fiejoa--bb-45 {
  border-bottom: 45px #8ed891 solid !important;
}
.fiejoa--by-45 {
  border-top: 45px #8ed891 solid !important;
  border-bottom: 45px #8ed891 solid !important;
}
.fiejoa--bx-45 {
  border-right: 45px #8ed891 solid !important;
  border-left: 45px #8ed891 solid !important;
}
.fiejoa--ba-46 {
  border: 46px #8ed891 solid !important;
}
.fiejoa--bt-46 {
  border-top: 46px #8ed891 solid !important;
}
.fiejoa--br-46 {
  border-right: 46px #8ed891 solid !important;
}
.fiejoa--bl-46 {
  border-left: 46px #8ed891 solid !important;
}
.fiejoa--bb-46 {
  border-bottom: 46px #8ed891 solid !important;
}
.fiejoa--by-46 {
  border-top: 46px #8ed891 solid !important;
  border-bottom: 46px #8ed891 solid !important;
}
.fiejoa--bx-46 {
  border-right: 46px #8ed891 solid !important;
  border-left: 46px #8ed891 solid !important;
}
.fiejoa--ba-47 {
  border: 47px #8ed891 solid !important;
}
.fiejoa--bt-47 {
  border-top: 47px #8ed891 solid !important;
}
.fiejoa--br-47 {
  border-right: 47px #8ed891 solid !important;
}
.fiejoa--bl-47 {
  border-left: 47px #8ed891 solid !important;
}
.fiejoa--bb-47 {
  border-bottom: 47px #8ed891 solid !important;
}
.fiejoa--by-47 {
  border-top: 47px #8ed891 solid !important;
  border-bottom: 47px #8ed891 solid !important;
}
.fiejoa--bx-47 {
  border-right: 47px #8ed891 solid !important;
  border-left: 47px #8ed891 solid !important;
}
.fiejoa--ba-48 {
  border: 48px #8ed891 solid !important;
}
.fiejoa--bt-48 {
  border-top: 48px #8ed891 solid !important;
}
.fiejoa--br-48 {
  border-right: 48px #8ed891 solid !important;
}
.fiejoa--bl-48 {
  border-left: 48px #8ed891 solid !important;
}
.fiejoa--bb-48 {
  border-bottom: 48px #8ed891 solid !important;
}
.fiejoa--by-48 {
  border-top: 48px #8ed891 solid !important;
  border-bottom: 48px #8ed891 solid !important;
}
.fiejoa--bx-48 {
  border-right: 48px #8ed891 solid !important;
  border-left: 48px #8ed891 solid !important;
}
.fiejoa--ba-49 {
  border: 49px #8ed891 solid !important;
}
.fiejoa--bt-49 {
  border-top: 49px #8ed891 solid !important;
}
.fiejoa--br-49 {
  border-right: 49px #8ed891 solid !important;
}
.fiejoa--bl-49 {
  border-left: 49px #8ed891 solid !important;
}
.fiejoa--bb-49 {
  border-bottom: 49px #8ed891 solid !important;
}
.fiejoa--by-49 {
  border-top: 49px #8ed891 solid !important;
  border-bottom: 49px #8ed891 solid !important;
}
.fiejoa--bx-49 {
  border-right: 49px #8ed891 solid !important;
  border-left: 49px #8ed891 solid !important;
}
.fiejoa--ba-50 {
  border: 50px #8ed891 solid !important;
}
.fiejoa--bt-50 {
  border-top: 50px #8ed891 solid !important;
}
.fiejoa--br-50 {
  border-right: 50px #8ed891 solid !important;
}
.fiejoa--bl-50 {
  border-left: 50px #8ed891 solid !important;
}
.fiejoa--bb-50 {
  border-bottom: 50px #8ed891 solid !important;
}
.fiejoa--by-50 {
  border-top: 50px #8ed891 solid !important;
  border-bottom: 50px #8ed891 solid !important;
}
.fiejoa--bx-50 {
  border-right: 50px #8ed891 solid !important;
  border-left: 50px #8ed891 solid !important;
}
.fiejoa--ba-51 {
  border: 51px #8ed891 solid !important;
}
.fiejoa--bt-51 {
  border-top: 51px #8ed891 solid !important;
}
.fiejoa--br-51 {
  border-right: 51px #8ed891 solid !important;
}
.fiejoa--bl-51 {
  border-left: 51px #8ed891 solid !important;
}
.fiejoa--bb-51 {
  border-bottom: 51px #8ed891 solid !important;
}
.fiejoa--by-51 {
  border-top: 51px #8ed891 solid !important;
  border-bottom: 51px #8ed891 solid !important;
}
.fiejoa--bx-51 {
  border-right: 51px #8ed891 solid !important;
  border-left: 51px #8ed891 solid !important;
}
.fiejoa--ba-52 {
  border: 52px #8ed891 solid !important;
}
.fiejoa--bt-52 {
  border-top: 52px #8ed891 solid !important;
}
.fiejoa--br-52 {
  border-right: 52px #8ed891 solid !important;
}
.fiejoa--bl-52 {
  border-left: 52px #8ed891 solid !important;
}
.fiejoa--bb-52 {
  border-bottom: 52px #8ed891 solid !important;
}
.fiejoa--by-52 {
  border-top: 52px #8ed891 solid !important;
  border-bottom: 52px #8ed891 solid !important;
}
.fiejoa--bx-52 {
  border-right: 52px #8ed891 solid !important;
  border-left: 52px #8ed891 solid !important;
}
.fiejoa--ba-53 {
  border: 53px #8ed891 solid !important;
}
.fiejoa--bt-53 {
  border-top: 53px #8ed891 solid !important;
}
.fiejoa--br-53 {
  border-right: 53px #8ed891 solid !important;
}
.fiejoa--bl-53 {
  border-left: 53px #8ed891 solid !important;
}
.fiejoa--bb-53 {
  border-bottom: 53px #8ed891 solid !important;
}
.fiejoa--by-53 {
  border-top: 53px #8ed891 solid !important;
  border-bottom: 53px #8ed891 solid !important;
}
.fiejoa--bx-53 {
  border-right: 53px #8ed891 solid !important;
  border-left: 53px #8ed891 solid !important;
}
.fiejoa--ba-54 {
  border: 54px #8ed891 solid !important;
}
.fiejoa--bt-54 {
  border-top: 54px #8ed891 solid !important;
}
.fiejoa--br-54 {
  border-right: 54px #8ed891 solid !important;
}
.fiejoa--bl-54 {
  border-left: 54px #8ed891 solid !important;
}
.fiejoa--bb-54 {
  border-bottom: 54px #8ed891 solid !important;
}
.fiejoa--by-54 {
  border-top: 54px #8ed891 solid !important;
  border-bottom: 54px #8ed891 solid !important;
}
.fiejoa--bx-54 {
  border-right: 54px #8ed891 solid !important;
  border-left: 54px #8ed891 solid !important;
}
.fiejoa--ba-55 {
  border: 55px #8ed891 solid !important;
}
.fiejoa--bt-55 {
  border-top: 55px #8ed891 solid !important;
}
.fiejoa--br-55 {
  border-right: 55px #8ed891 solid !important;
}
.fiejoa--bl-55 {
  border-left: 55px #8ed891 solid !important;
}
.fiejoa--bb-55 {
  border-bottom: 55px #8ed891 solid !important;
}
.fiejoa--by-55 {
  border-top: 55px #8ed891 solid !important;
  border-bottom: 55px #8ed891 solid !important;
}
.fiejoa--bx-55 {
  border-right: 55px #8ed891 solid !important;
  border-left: 55px #8ed891 solid !important;
}
.fiejoa--ba-56 {
  border: 56px #8ed891 solid !important;
}
.fiejoa--bt-56 {
  border-top: 56px #8ed891 solid !important;
}
.fiejoa--br-56 {
  border-right: 56px #8ed891 solid !important;
}
.fiejoa--bl-56 {
  border-left: 56px #8ed891 solid !important;
}
.fiejoa--bb-56 {
  border-bottom: 56px #8ed891 solid !important;
}
.fiejoa--by-56 {
  border-top: 56px #8ed891 solid !important;
  border-bottom: 56px #8ed891 solid !important;
}
.fiejoa--bx-56 {
  border-right: 56px #8ed891 solid !important;
  border-left: 56px #8ed891 solid !important;
}
.fiejoa--ba-57 {
  border: 57px #8ed891 solid !important;
}
.fiejoa--bt-57 {
  border-top: 57px #8ed891 solid !important;
}
.fiejoa--br-57 {
  border-right: 57px #8ed891 solid !important;
}
.fiejoa--bl-57 {
  border-left: 57px #8ed891 solid !important;
}
.fiejoa--bb-57 {
  border-bottom: 57px #8ed891 solid !important;
}
.fiejoa--by-57 {
  border-top: 57px #8ed891 solid !important;
  border-bottom: 57px #8ed891 solid !important;
}
.fiejoa--bx-57 {
  border-right: 57px #8ed891 solid !important;
  border-left: 57px #8ed891 solid !important;
}
.fiejoa--ba-58 {
  border: 58px #8ed891 solid !important;
}
.fiejoa--bt-58 {
  border-top: 58px #8ed891 solid !important;
}
.fiejoa--br-58 {
  border-right: 58px #8ed891 solid !important;
}
.fiejoa--bl-58 {
  border-left: 58px #8ed891 solid !important;
}
.fiejoa--bb-58 {
  border-bottom: 58px #8ed891 solid !important;
}
.fiejoa--by-58 {
  border-top: 58px #8ed891 solid !important;
  border-bottom: 58px #8ed891 solid !important;
}
.fiejoa--bx-58 {
  border-right: 58px #8ed891 solid !important;
  border-left: 58px #8ed891 solid !important;
}
.fiejoa--ba-59 {
  border: 59px #8ed891 solid !important;
}
.fiejoa--bt-59 {
  border-top: 59px #8ed891 solid !important;
}
.fiejoa--br-59 {
  border-right: 59px #8ed891 solid !important;
}
.fiejoa--bl-59 {
  border-left: 59px #8ed891 solid !important;
}
.fiejoa--bb-59 {
  border-bottom: 59px #8ed891 solid !important;
}
.fiejoa--by-59 {
  border-top: 59px #8ed891 solid !important;
  border-bottom: 59px #8ed891 solid !important;
}
.fiejoa--bx-59 {
  border-right: 59px #8ed891 solid !important;
  border-left: 59px #8ed891 solid !important;
}
.fiejoa--ba-60 {
  border: 60px #8ed891 solid !important;
}
.fiejoa--bt-60 {
  border-top: 60px #8ed891 solid !important;
}
.fiejoa--br-60 {
  border-right: 60px #8ed891 solid !important;
}
.fiejoa--bl-60 {
  border-left: 60px #8ed891 solid !important;
}
.fiejoa--bb-60 {
  border-bottom: 60px #8ed891 solid !important;
}
.fiejoa--by-60 {
  border-top: 60px #8ed891 solid !important;
  border-bottom: 60px #8ed891 solid !important;
}
.fiejoa--bx-60 {
  border-right: 60px #8ed891 solid !important;
  border-left: 60px #8ed891 solid !important;
}
.fiejoa--ba-61 {
  border: 61px #8ed891 solid !important;
}
.fiejoa--bt-61 {
  border-top: 61px #8ed891 solid !important;
}
.fiejoa--br-61 {
  border-right: 61px #8ed891 solid !important;
}
.fiejoa--bl-61 {
  border-left: 61px #8ed891 solid !important;
}
.fiejoa--bb-61 {
  border-bottom: 61px #8ed891 solid !important;
}
.fiejoa--by-61 {
  border-top: 61px #8ed891 solid !important;
  border-bottom: 61px #8ed891 solid !important;
}
.fiejoa--bx-61 {
  border-right: 61px #8ed891 solid !important;
  border-left: 61px #8ed891 solid !important;
}
.fiejoa--ba-62 {
  border: 62px #8ed891 solid !important;
}
.fiejoa--bt-62 {
  border-top: 62px #8ed891 solid !important;
}
.fiejoa--br-62 {
  border-right: 62px #8ed891 solid !important;
}
.fiejoa--bl-62 {
  border-left: 62px #8ed891 solid !important;
}
.fiejoa--bb-62 {
  border-bottom: 62px #8ed891 solid !important;
}
.fiejoa--by-62 {
  border-top: 62px #8ed891 solid !important;
  border-bottom: 62px #8ed891 solid !important;
}
.fiejoa--bx-62 {
  border-right: 62px #8ed891 solid !important;
  border-left: 62px #8ed891 solid !important;
}
.fiejoa--ba-63 {
  border: 63px #8ed891 solid !important;
}
.fiejoa--bt-63 {
  border-top: 63px #8ed891 solid !important;
}
.fiejoa--br-63 {
  border-right: 63px #8ed891 solid !important;
}
.fiejoa--bl-63 {
  border-left: 63px #8ed891 solid !important;
}
.fiejoa--bb-63 {
  border-bottom: 63px #8ed891 solid !important;
}
.fiejoa--by-63 {
  border-top: 63px #8ed891 solid !important;
  border-bottom: 63px #8ed891 solid !important;
}
.fiejoa--bx-63 {
  border-right: 63px #8ed891 solid !important;
  border-left: 63px #8ed891 solid !important;
}
.fiejoa--ba-64 {
  border: 64px #8ed891 solid !important;
}
.fiejoa--bt-64 {
  border-top: 64px #8ed891 solid !important;
}
.fiejoa--br-64 {
  border-right: 64px #8ed891 solid !important;
}
.fiejoa--bl-64 {
  border-left: 64px #8ed891 solid !important;
}
.fiejoa--bb-64 {
  border-bottom: 64px #8ed891 solid !important;
}
.fiejoa--by-64 {
  border-top: 64px #8ed891 solid !important;
  border-bottom: 64px #8ed891 solid !important;
}
.fiejoa--bx-64 {
  border-right: 64px #8ed891 solid !important;
  border-left: 64px #8ed891 solid !important;
}
.fiejoa--ba-65 {
  border: 65px #8ed891 solid !important;
}
.fiejoa--bt-65 {
  border-top: 65px #8ed891 solid !important;
}
.fiejoa--br-65 {
  border-right: 65px #8ed891 solid !important;
}
.fiejoa--bl-65 {
  border-left: 65px #8ed891 solid !important;
}
.fiejoa--bb-65 {
  border-bottom: 65px #8ed891 solid !important;
}
.fiejoa--by-65 {
  border-top: 65px #8ed891 solid !important;
  border-bottom: 65px #8ed891 solid !important;
}
.fiejoa--bx-65 {
  border-right: 65px #8ed891 solid !important;
  border-left: 65px #8ed891 solid !important;
}
.fiejoa--ba-66 {
  border: 66px #8ed891 solid !important;
}
.fiejoa--bt-66 {
  border-top: 66px #8ed891 solid !important;
}
.fiejoa--br-66 {
  border-right: 66px #8ed891 solid !important;
}
.fiejoa--bl-66 {
  border-left: 66px #8ed891 solid !important;
}
.fiejoa--bb-66 {
  border-bottom: 66px #8ed891 solid !important;
}
.fiejoa--by-66 {
  border-top: 66px #8ed891 solid !important;
  border-bottom: 66px #8ed891 solid !important;
}
.fiejoa--bx-66 {
  border-right: 66px #8ed891 solid !important;
  border-left: 66px #8ed891 solid !important;
}
.fiejoa--ba-67 {
  border: 67px #8ed891 solid !important;
}
.fiejoa--bt-67 {
  border-top: 67px #8ed891 solid !important;
}
.fiejoa--br-67 {
  border-right: 67px #8ed891 solid !important;
}
.fiejoa--bl-67 {
  border-left: 67px #8ed891 solid !important;
}
.fiejoa--bb-67 {
  border-bottom: 67px #8ed891 solid !important;
}
.fiejoa--by-67 {
  border-top: 67px #8ed891 solid !important;
  border-bottom: 67px #8ed891 solid !important;
}
.fiejoa--bx-67 {
  border-right: 67px #8ed891 solid !important;
  border-left: 67px #8ed891 solid !important;
}
.fiejoa--ba-68 {
  border: 68px #8ed891 solid !important;
}
.fiejoa--bt-68 {
  border-top: 68px #8ed891 solid !important;
}
.fiejoa--br-68 {
  border-right: 68px #8ed891 solid !important;
}
.fiejoa--bl-68 {
  border-left: 68px #8ed891 solid !important;
}
.fiejoa--bb-68 {
  border-bottom: 68px #8ed891 solid !important;
}
.fiejoa--by-68 {
  border-top: 68px #8ed891 solid !important;
  border-bottom: 68px #8ed891 solid !important;
}
.fiejoa--bx-68 {
  border-right: 68px #8ed891 solid !important;
  border-left: 68px #8ed891 solid !important;
}
.fiejoa--ba-69 {
  border: 69px #8ed891 solid !important;
}
.fiejoa--bt-69 {
  border-top: 69px #8ed891 solid !important;
}
.fiejoa--br-69 {
  border-right: 69px #8ed891 solid !important;
}
.fiejoa--bl-69 {
  border-left: 69px #8ed891 solid !important;
}
.fiejoa--bb-69 {
  border-bottom: 69px #8ed891 solid !important;
}
.fiejoa--by-69 {
  border-top: 69px #8ed891 solid !important;
  border-bottom: 69px #8ed891 solid !important;
}
.fiejoa--bx-69 {
  border-right: 69px #8ed891 solid !important;
  border-left: 69px #8ed891 solid !important;
}
.fiejoa--ba-70 {
  border: 70px #8ed891 solid !important;
}
.fiejoa--bt-70 {
  border-top: 70px #8ed891 solid !important;
}
.fiejoa--br-70 {
  border-right: 70px #8ed891 solid !important;
}
.fiejoa--bl-70 {
  border-left: 70px #8ed891 solid !important;
}
.fiejoa--bb-70 {
  border-bottom: 70px #8ed891 solid !important;
}
.fiejoa--by-70 {
  border-top: 70px #8ed891 solid !important;
  border-bottom: 70px #8ed891 solid !important;
}
.fiejoa--bx-70 {
  border-right: 70px #8ed891 solid !important;
  border-left: 70px #8ed891 solid !important;
}
.fiejoa--ba-71 {
  border: 71px #8ed891 solid !important;
}
.fiejoa--bt-71 {
  border-top: 71px #8ed891 solid !important;
}
.fiejoa--br-71 {
  border-right: 71px #8ed891 solid !important;
}
.fiejoa--bl-71 {
  border-left: 71px #8ed891 solid !important;
}
.fiejoa--bb-71 {
  border-bottom: 71px #8ed891 solid !important;
}
.fiejoa--by-71 {
  border-top: 71px #8ed891 solid !important;
  border-bottom: 71px #8ed891 solid !important;
}
.fiejoa--bx-71 {
  border-right: 71px #8ed891 solid !important;
  border-left: 71px #8ed891 solid !important;
}
.fiejoa--ba-72 {
  border: 72px #8ed891 solid !important;
}
.fiejoa--bt-72 {
  border-top: 72px #8ed891 solid !important;
}
.fiejoa--br-72 {
  border-right: 72px #8ed891 solid !important;
}
.fiejoa--bl-72 {
  border-left: 72px #8ed891 solid !important;
}
.fiejoa--bb-72 {
  border-bottom: 72px #8ed891 solid !important;
}
.fiejoa--by-72 {
  border-top: 72px #8ed891 solid !important;
  border-bottom: 72px #8ed891 solid !important;
}
.fiejoa--bx-72 {
  border-right: 72px #8ed891 solid !important;
  border-left: 72px #8ed891 solid !important;
}
.fiejoa--ba-73 {
  border: 73px #8ed891 solid !important;
}
.fiejoa--bt-73 {
  border-top: 73px #8ed891 solid !important;
}
.fiejoa--br-73 {
  border-right: 73px #8ed891 solid !important;
}
.fiejoa--bl-73 {
  border-left: 73px #8ed891 solid !important;
}
.fiejoa--bb-73 {
  border-bottom: 73px #8ed891 solid !important;
}
.fiejoa--by-73 {
  border-top: 73px #8ed891 solid !important;
  border-bottom: 73px #8ed891 solid !important;
}
.fiejoa--bx-73 {
  border-right: 73px #8ed891 solid !important;
  border-left: 73px #8ed891 solid !important;
}
.fiejoa--ba-74 {
  border: 74px #8ed891 solid !important;
}
.fiejoa--bt-74 {
  border-top: 74px #8ed891 solid !important;
}
.fiejoa--br-74 {
  border-right: 74px #8ed891 solid !important;
}
.fiejoa--bl-74 {
  border-left: 74px #8ed891 solid !important;
}
.fiejoa--bb-74 {
  border-bottom: 74px #8ed891 solid !important;
}
.fiejoa--by-74 {
  border-top: 74px #8ed891 solid !important;
  border-bottom: 74px #8ed891 solid !important;
}
.fiejoa--bx-74 {
  border-right: 74px #8ed891 solid !important;
  border-left: 74px #8ed891 solid !important;
}
.fiejoa--ba-75 {
  border: 75px #8ed891 solid !important;
}
.fiejoa--bt-75 {
  border-top: 75px #8ed891 solid !important;
}
.fiejoa--br-75 {
  border-right: 75px #8ed891 solid !important;
}
.fiejoa--bl-75 {
  border-left: 75px #8ed891 solid !important;
}
.fiejoa--bb-75 {
  border-bottom: 75px #8ed891 solid !important;
}
.fiejoa--by-75 {
  border-top: 75px #8ed891 solid !important;
  border-bottom: 75px #8ed891 solid !important;
}
.fiejoa--bx-75 {
  border-right: 75px #8ed891 solid !important;
  border-left: 75px #8ed891 solid !important;
}
.fiejoa--ba-76 {
  border: 76px #8ed891 solid !important;
}
.fiejoa--bt-76 {
  border-top: 76px #8ed891 solid !important;
}
.fiejoa--br-76 {
  border-right: 76px #8ed891 solid !important;
}
.fiejoa--bl-76 {
  border-left: 76px #8ed891 solid !important;
}
.fiejoa--bb-76 {
  border-bottom: 76px #8ed891 solid !important;
}
.fiejoa--by-76 {
  border-top: 76px #8ed891 solid !important;
  border-bottom: 76px #8ed891 solid !important;
}
.fiejoa--bx-76 {
  border-right: 76px #8ed891 solid !important;
  border-left: 76px #8ed891 solid !important;
}
.fiejoa--ba-77 {
  border: 77px #8ed891 solid !important;
}
.fiejoa--bt-77 {
  border-top: 77px #8ed891 solid !important;
}
.fiejoa--br-77 {
  border-right: 77px #8ed891 solid !important;
}
.fiejoa--bl-77 {
  border-left: 77px #8ed891 solid !important;
}
.fiejoa--bb-77 {
  border-bottom: 77px #8ed891 solid !important;
}
.fiejoa--by-77 {
  border-top: 77px #8ed891 solid !important;
  border-bottom: 77px #8ed891 solid !important;
}
.fiejoa--bx-77 {
  border-right: 77px #8ed891 solid !important;
  border-left: 77px #8ed891 solid !important;
}
.fiejoa--ba-78 {
  border: 78px #8ed891 solid !important;
}
.fiejoa--bt-78 {
  border-top: 78px #8ed891 solid !important;
}
.fiejoa--br-78 {
  border-right: 78px #8ed891 solid !important;
}
.fiejoa--bl-78 {
  border-left: 78px #8ed891 solid !important;
}
.fiejoa--bb-78 {
  border-bottom: 78px #8ed891 solid !important;
}
.fiejoa--by-78 {
  border-top: 78px #8ed891 solid !important;
  border-bottom: 78px #8ed891 solid !important;
}
.fiejoa--bx-78 {
  border-right: 78px #8ed891 solid !important;
  border-left: 78px #8ed891 solid !important;
}
.fiejoa--ba-79 {
  border: 79px #8ed891 solid !important;
}
.fiejoa--bt-79 {
  border-top: 79px #8ed891 solid !important;
}
.fiejoa--br-79 {
  border-right: 79px #8ed891 solid !important;
}
.fiejoa--bl-79 {
  border-left: 79px #8ed891 solid !important;
}
.fiejoa--bb-79 {
  border-bottom: 79px #8ed891 solid !important;
}
.fiejoa--by-79 {
  border-top: 79px #8ed891 solid !important;
  border-bottom: 79px #8ed891 solid !important;
}
.fiejoa--bx-79 {
  border-right: 79px #8ed891 solid !important;
  border-left: 79px #8ed891 solid !important;
}
.fiejoa--ba-80 {
  border: 80px #8ed891 solid !important;
}
.fiejoa--bt-80 {
  border-top: 80px #8ed891 solid !important;
}
.fiejoa--br-80 {
  border-right: 80px #8ed891 solid !important;
}
.fiejoa--bl-80 {
  border-left: 80px #8ed891 solid !important;
}
.fiejoa--bb-80 {
  border-bottom: 80px #8ed891 solid !important;
}
.fiejoa--by-80 {
  border-top: 80px #8ed891 solid !important;
  border-bottom: 80px #8ed891 solid !important;
}
.fiejoa--bx-80 {
  border-right: 80px #8ed891 solid !important;
  border-left: 80px #8ed891 solid !important;
}
.fiejoa--ba-81 {
  border: 81px #8ed891 solid !important;
}
.fiejoa--bt-81 {
  border-top: 81px #8ed891 solid !important;
}
.fiejoa--br-81 {
  border-right: 81px #8ed891 solid !important;
}
.fiejoa--bl-81 {
  border-left: 81px #8ed891 solid !important;
}
.fiejoa--bb-81 {
  border-bottom: 81px #8ed891 solid !important;
}
.fiejoa--by-81 {
  border-top: 81px #8ed891 solid !important;
  border-bottom: 81px #8ed891 solid !important;
}
.fiejoa--bx-81 {
  border-right: 81px #8ed891 solid !important;
  border-left: 81px #8ed891 solid !important;
}
.fiejoa--ba-82 {
  border: 82px #8ed891 solid !important;
}
.fiejoa--bt-82 {
  border-top: 82px #8ed891 solid !important;
}
.fiejoa--br-82 {
  border-right: 82px #8ed891 solid !important;
}
.fiejoa--bl-82 {
  border-left: 82px #8ed891 solid !important;
}
.fiejoa--bb-82 {
  border-bottom: 82px #8ed891 solid !important;
}
.fiejoa--by-82 {
  border-top: 82px #8ed891 solid !important;
  border-bottom: 82px #8ed891 solid !important;
}
.fiejoa--bx-82 {
  border-right: 82px #8ed891 solid !important;
  border-left: 82px #8ed891 solid !important;
}
.fiejoa--ba-83 {
  border: 83px #8ed891 solid !important;
}
.fiejoa--bt-83 {
  border-top: 83px #8ed891 solid !important;
}
.fiejoa--br-83 {
  border-right: 83px #8ed891 solid !important;
}
.fiejoa--bl-83 {
  border-left: 83px #8ed891 solid !important;
}
.fiejoa--bb-83 {
  border-bottom: 83px #8ed891 solid !important;
}
.fiejoa--by-83 {
  border-top: 83px #8ed891 solid !important;
  border-bottom: 83px #8ed891 solid !important;
}
.fiejoa--bx-83 {
  border-right: 83px #8ed891 solid !important;
  border-left: 83px #8ed891 solid !important;
}
.fiejoa--ba-84 {
  border: 84px #8ed891 solid !important;
}
.fiejoa--bt-84 {
  border-top: 84px #8ed891 solid !important;
}
.fiejoa--br-84 {
  border-right: 84px #8ed891 solid !important;
}
.fiejoa--bl-84 {
  border-left: 84px #8ed891 solid !important;
}
.fiejoa--bb-84 {
  border-bottom: 84px #8ed891 solid !important;
}
.fiejoa--by-84 {
  border-top: 84px #8ed891 solid !important;
  border-bottom: 84px #8ed891 solid !important;
}
.fiejoa--bx-84 {
  border-right: 84px #8ed891 solid !important;
  border-left: 84px #8ed891 solid !important;
}
.fiejoa--ba-85 {
  border: 85px #8ed891 solid !important;
}
.fiejoa--bt-85 {
  border-top: 85px #8ed891 solid !important;
}
.fiejoa--br-85 {
  border-right: 85px #8ed891 solid !important;
}
.fiejoa--bl-85 {
  border-left: 85px #8ed891 solid !important;
}
.fiejoa--bb-85 {
  border-bottom: 85px #8ed891 solid !important;
}
.fiejoa--by-85 {
  border-top: 85px #8ed891 solid !important;
  border-bottom: 85px #8ed891 solid !important;
}
.fiejoa--bx-85 {
  border-right: 85px #8ed891 solid !important;
  border-left: 85px #8ed891 solid !important;
}
.fiejoa--ba-86 {
  border: 86px #8ed891 solid !important;
}
.fiejoa--bt-86 {
  border-top: 86px #8ed891 solid !important;
}
.fiejoa--br-86 {
  border-right: 86px #8ed891 solid !important;
}
.fiejoa--bl-86 {
  border-left: 86px #8ed891 solid !important;
}
.fiejoa--bb-86 {
  border-bottom: 86px #8ed891 solid !important;
}
.fiejoa--by-86 {
  border-top: 86px #8ed891 solid !important;
  border-bottom: 86px #8ed891 solid !important;
}
.fiejoa--bx-86 {
  border-right: 86px #8ed891 solid !important;
  border-left: 86px #8ed891 solid !important;
}
.fiejoa--ba-87 {
  border: 87px #8ed891 solid !important;
}
.fiejoa--bt-87 {
  border-top: 87px #8ed891 solid !important;
}
.fiejoa--br-87 {
  border-right: 87px #8ed891 solid !important;
}
.fiejoa--bl-87 {
  border-left: 87px #8ed891 solid !important;
}
.fiejoa--bb-87 {
  border-bottom: 87px #8ed891 solid !important;
}
.fiejoa--by-87 {
  border-top: 87px #8ed891 solid !important;
  border-bottom: 87px #8ed891 solid !important;
}
.fiejoa--bx-87 {
  border-right: 87px #8ed891 solid !important;
  border-left: 87px #8ed891 solid !important;
}
.fiejoa--ba-88 {
  border: 88px #8ed891 solid !important;
}
.fiejoa--bt-88 {
  border-top: 88px #8ed891 solid !important;
}
.fiejoa--br-88 {
  border-right: 88px #8ed891 solid !important;
}
.fiejoa--bl-88 {
  border-left: 88px #8ed891 solid !important;
}
.fiejoa--bb-88 {
  border-bottom: 88px #8ed891 solid !important;
}
.fiejoa--by-88 {
  border-top: 88px #8ed891 solid !important;
  border-bottom: 88px #8ed891 solid !important;
}
.fiejoa--bx-88 {
  border-right: 88px #8ed891 solid !important;
  border-left: 88px #8ed891 solid !important;
}
.fiejoa--ba-89 {
  border: 89px #8ed891 solid !important;
}
.fiejoa--bt-89 {
  border-top: 89px #8ed891 solid !important;
}
.fiejoa--br-89 {
  border-right: 89px #8ed891 solid !important;
}
.fiejoa--bl-89 {
  border-left: 89px #8ed891 solid !important;
}
.fiejoa--bb-89 {
  border-bottom: 89px #8ed891 solid !important;
}
.fiejoa--by-89 {
  border-top: 89px #8ed891 solid !important;
  border-bottom: 89px #8ed891 solid !important;
}
.fiejoa--bx-89 {
  border-right: 89px #8ed891 solid !important;
  border-left: 89px #8ed891 solid !important;
}
.fiejoa--ba-90 {
  border: 90px #8ed891 solid !important;
}
.fiejoa--bt-90 {
  border-top: 90px #8ed891 solid !important;
}
.fiejoa--br-90 {
  border-right: 90px #8ed891 solid !important;
}
.fiejoa--bl-90 {
  border-left: 90px #8ed891 solid !important;
}
.fiejoa--bb-90 {
  border-bottom: 90px #8ed891 solid !important;
}
.fiejoa--by-90 {
  border-top: 90px #8ed891 solid !important;
  border-bottom: 90px #8ed891 solid !important;
}
.fiejoa--bx-90 {
  border-right: 90px #8ed891 solid !important;
  border-left: 90px #8ed891 solid !important;
}
.fiejoa--ba-91 {
  border: 91px #8ed891 solid !important;
}
.fiejoa--bt-91 {
  border-top: 91px #8ed891 solid !important;
}
.fiejoa--br-91 {
  border-right: 91px #8ed891 solid !important;
}
.fiejoa--bl-91 {
  border-left: 91px #8ed891 solid !important;
}
.fiejoa--bb-91 {
  border-bottom: 91px #8ed891 solid !important;
}
.fiejoa--by-91 {
  border-top: 91px #8ed891 solid !important;
  border-bottom: 91px #8ed891 solid !important;
}
.fiejoa--bx-91 {
  border-right: 91px #8ed891 solid !important;
  border-left: 91px #8ed891 solid !important;
}
.fiejoa--ba-92 {
  border: 92px #8ed891 solid !important;
}
.fiejoa--bt-92 {
  border-top: 92px #8ed891 solid !important;
}
.fiejoa--br-92 {
  border-right: 92px #8ed891 solid !important;
}
.fiejoa--bl-92 {
  border-left: 92px #8ed891 solid !important;
}
.fiejoa--bb-92 {
  border-bottom: 92px #8ed891 solid !important;
}
.fiejoa--by-92 {
  border-top: 92px #8ed891 solid !important;
  border-bottom: 92px #8ed891 solid !important;
}
.fiejoa--bx-92 {
  border-right: 92px #8ed891 solid !important;
  border-left: 92px #8ed891 solid !important;
}
.fiejoa--ba-93 {
  border: 93px #8ed891 solid !important;
}
.fiejoa--bt-93 {
  border-top: 93px #8ed891 solid !important;
}
.fiejoa--br-93 {
  border-right: 93px #8ed891 solid !important;
}
.fiejoa--bl-93 {
  border-left: 93px #8ed891 solid !important;
}
.fiejoa--bb-93 {
  border-bottom: 93px #8ed891 solid !important;
}
.fiejoa--by-93 {
  border-top: 93px #8ed891 solid !important;
  border-bottom: 93px #8ed891 solid !important;
}
.fiejoa--bx-93 {
  border-right: 93px #8ed891 solid !important;
  border-left: 93px #8ed891 solid !important;
}
.fiejoa--ba-94 {
  border: 94px #8ed891 solid !important;
}
.fiejoa--bt-94 {
  border-top: 94px #8ed891 solid !important;
}
.fiejoa--br-94 {
  border-right: 94px #8ed891 solid !important;
}
.fiejoa--bl-94 {
  border-left: 94px #8ed891 solid !important;
}
.fiejoa--bb-94 {
  border-bottom: 94px #8ed891 solid !important;
}
.fiejoa--by-94 {
  border-top: 94px #8ed891 solid !important;
  border-bottom: 94px #8ed891 solid !important;
}
.fiejoa--bx-94 {
  border-right: 94px #8ed891 solid !important;
  border-left: 94px #8ed891 solid !important;
}
.fiejoa--ba-95 {
  border: 95px #8ed891 solid !important;
}
.fiejoa--bt-95 {
  border-top: 95px #8ed891 solid !important;
}
.fiejoa--br-95 {
  border-right: 95px #8ed891 solid !important;
}
.fiejoa--bl-95 {
  border-left: 95px #8ed891 solid !important;
}
.fiejoa--bb-95 {
  border-bottom: 95px #8ed891 solid !important;
}
.fiejoa--by-95 {
  border-top: 95px #8ed891 solid !important;
  border-bottom: 95px #8ed891 solid !important;
}
.fiejoa--bx-95 {
  border-right: 95px #8ed891 solid !important;
  border-left: 95px #8ed891 solid !important;
}
.fiejoa--ba-96 {
  border: 96px #8ed891 solid !important;
}
.fiejoa--bt-96 {
  border-top: 96px #8ed891 solid !important;
}
.fiejoa--br-96 {
  border-right: 96px #8ed891 solid !important;
}
.fiejoa--bl-96 {
  border-left: 96px #8ed891 solid !important;
}
.fiejoa--bb-96 {
  border-bottom: 96px #8ed891 solid !important;
}
.fiejoa--by-96 {
  border-top: 96px #8ed891 solid !important;
  border-bottom: 96px #8ed891 solid !important;
}
.fiejoa--bx-96 {
  border-right: 96px #8ed891 solid !important;
  border-left: 96px #8ed891 solid !important;
}
.fiejoa--ba-97 {
  border: 97px #8ed891 solid !important;
}
.fiejoa--bt-97 {
  border-top: 97px #8ed891 solid !important;
}
.fiejoa--br-97 {
  border-right: 97px #8ed891 solid !important;
}
.fiejoa--bl-97 {
  border-left: 97px #8ed891 solid !important;
}
.fiejoa--bb-97 {
  border-bottom: 97px #8ed891 solid !important;
}
.fiejoa--by-97 {
  border-top: 97px #8ed891 solid !important;
  border-bottom: 97px #8ed891 solid !important;
}
.fiejoa--bx-97 {
  border-right: 97px #8ed891 solid !important;
  border-left: 97px #8ed891 solid !important;
}
.fiejoa--ba-98 {
  border: 98px #8ed891 solid !important;
}
.fiejoa--bt-98 {
  border-top: 98px #8ed891 solid !important;
}
.fiejoa--br-98 {
  border-right: 98px #8ed891 solid !important;
}
.fiejoa--bl-98 {
  border-left: 98px #8ed891 solid !important;
}
.fiejoa--bb-98 {
  border-bottom: 98px #8ed891 solid !important;
}
.fiejoa--by-98 {
  border-top: 98px #8ed891 solid !important;
  border-bottom: 98px #8ed891 solid !important;
}
.fiejoa--bx-98 {
  border-right: 98px #8ed891 solid !important;
  border-left: 98px #8ed891 solid !important;
}
.fiejoa--ba-99 {
  border: 99px #8ed891 solid !important;
}
.fiejoa--bt-99 {
  border-top: 99px #8ed891 solid !important;
}
.fiejoa--br-99 {
  border-right: 99px #8ed891 solid !important;
}
.fiejoa--bl-99 {
  border-left: 99px #8ed891 solid !important;
}
.fiejoa--bb-99 {
  border-bottom: 99px #8ed891 solid !important;
}
.fiejoa--by-99 {
  border-top: 99px #8ed891 solid !important;
  border-bottom: 99px #8ed891 solid !important;
}
.fiejoa--bx-99 {
  border-right: 99px #8ed891 solid !important;
  border-left: 99px #8ed891 solid !important;
}
.fiejoa--ba-100 {
  border: 100px #8ed891 solid !important;
}
.fiejoa--bt-100 {
  border-top: 100px #8ed891 solid !important;
}
.fiejoa--br-100 {
  border-right: 100px #8ed891 solid !important;
}
.fiejoa--bl-100 {
  border-left: 100px #8ed891 solid !important;
}
.fiejoa--bb-100 {
  border-bottom: 100px #8ed891 solid !important;
}
.fiejoa--by-100 {
  border-top: 100px #8ed891 solid !important;
  border-bottom: 100px #8ed891 solid !important;
}
.fiejoa--bx-100 {
  border-right: 100px #8ed891 solid !important;
  border-left: 100px #8ed891 solid !important;
}
.silver--ba-1 {
  border: 1px #c7c7c7 solid !important;
}
.silver--bt-1 {
  border-top: 1px #c7c7c7 solid !important;
}
.silver--br-1 {
  border-right: 1px #c7c7c7 solid !important;
}
.silver--bl-1 {
  border-left: 1px #c7c7c7 solid !important;
}
.silver--bb-1 {
  border-bottom: 1px #c7c7c7 solid !important;
}
.silver--by-1 {
  border-top: 1px #c7c7c7 solid !important;
  border-bottom: 1px #c7c7c7 solid !important;
}
.silver--bx-1 {
  border-right: 1px #c7c7c7 solid !important;
  border-left: 1px #c7c7c7 solid !important;
}
.silver--ba-2 {
  border: 2px #c7c7c7 solid !important;
}
.silver--bt-2 {
  border-top: 2px #c7c7c7 solid !important;
}
.silver--br-2 {
  border-right: 2px #c7c7c7 solid !important;
}
.silver--bl-2 {
  border-left: 2px #c7c7c7 solid !important;
}
.silver--bb-2 {
  border-bottom: 2px #c7c7c7 solid !important;
}
.silver--by-2 {
  border-top: 2px #c7c7c7 solid !important;
  border-bottom: 2px #c7c7c7 solid !important;
}
.silver--bx-2 {
  border-right: 2px #c7c7c7 solid !important;
  border-left: 2px #c7c7c7 solid !important;
}
.silver--ba-3 {
  border: 3px #c7c7c7 solid !important;
}
.silver--bt-3 {
  border-top: 3px #c7c7c7 solid !important;
}
.silver--br-3 {
  border-right: 3px #c7c7c7 solid !important;
}
.silver--bl-3 {
  border-left: 3px #c7c7c7 solid !important;
}
.silver--bb-3 {
  border-bottom: 3px #c7c7c7 solid !important;
}
.silver--by-3 {
  border-top: 3px #c7c7c7 solid !important;
  border-bottom: 3px #c7c7c7 solid !important;
}
.silver--bx-3 {
  border-right: 3px #c7c7c7 solid !important;
  border-left: 3px #c7c7c7 solid !important;
}
.silver--ba-4 {
  border: 4px #c7c7c7 solid !important;
}
.silver--bt-4 {
  border-top: 4px #c7c7c7 solid !important;
}
.silver--br-4 {
  border-right: 4px #c7c7c7 solid !important;
}
.silver--bl-4 {
  border-left: 4px #c7c7c7 solid !important;
}
.silver--bb-4 {
  border-bottom: 4px #c7c7c7 solid !important;
}
.silver--by-4 {
  border-top: 4px #c7c7c7 solid !important;
  border-bottom: 4px #c7c7c7 solid !important;
}
.silver--bx-4 {
  border-right: 4px #c7c7c7 solid !important;
  border-left: 4px #c7c7c7 solid !important;
}
.silver--ba-5 {
  border: 5px #c7c7c7 solid !important;
}
.silver--bt-5 {
  border-top: 5px #c7c7c7 solid !important;
}
.silver--br-5 {
  border-right: 5px #c7c7c7 solid !important;
}
.silver--bl-5 {
  border-left: 5px #c7c7c7 solid !important;
}
.silver--bb-5 {
  border-bottom: 5px #c7c7c7 solid !important;
}
.silver--by-5 {
  border-top: 5px #c7c7c7 solid !important;
  border-bottom: 5px #c7c7c7 solid !important;
}
.silver--bx-5 {
  border-right: 5px #c7c7c7 solid !important;
  border-left: 5px #c7c7c7 solid !important;
}
.silver--ba-6 {
  border: 6px #c7c7c7 solid !important;
}
.silver--bt-6 {
  border-top: 6px #c7c7c7 solid !important;
}
.silver--br-6 {
  border-right: 6px #c7c7c7 solid !important;
}
.silver--bl-6 {
  border-left: 6px #c7c7c7 solid !important;
}
.silver--bb-6 {
  border-bottom: 6px #c7c7c7 solid !important;
}
.silver--by-6 {
  border-top: 6px #c7c7c7 solid !important;
  border-bottom: 6px #c7c7c7 solid !important;
}
.silver--bx-6 {
  border-right: 6px #c7c7c7 solid !important;
  border-left: 6px #c7c7c7 solid !important;
}
.silver--ba-7 {
  border: 7px #c7c7c7 solid !important;
}
.silver--bt-7 {
  border-top: 7px #c7c7c7 solid !important;
}
.silver--br-7 {
  border-right: 7px #c7c7c7 solid !important;
}
.silver--bl-7 {
  border-left: 7px #c7c7c7 solid !important;
}
.silver--bb-7 {
  border-bottom: 7px #c7c7c7 solid !important;
}
.silver--by-7 {
  border-top: 7px #c7c7c7 solid !important;
  border-bottom: 7px #c7c7c7 solid !important;
}
.silver--bx-7 {
  border-right: 7px #c7c7c7 solid !important;
  border-left: 7px #c7c7c7 solid !important;
}
.silver--ba-8 {
  border: 8px #c7c7c7 solid !important;
}
.silver--bt-8 {
  border-top: 8px #c7c7c7 solid !important;
}
.silver--br-8 {
  border-right: 8px #c7c7c7 solid !important;
}
.silver--bl-8 {
  border-left: 8px #c7c7c7 solid !important;
}
.silver--bb-8 {
  border-bottom: 8px #c7c7c7 solid !important;
}
.silver--by-8 {
  border-top: 8px #c7c7c7 solid !important;
  border-bottom: 8px #c7c7c7 solid !important;
}
.silver--bx-8 {
  border-right: 8px #c7c7c7 solid !important;
  border-left: 8px #c7c7c7 solid !important;
}
.silver--ba-9 {
  border: 9px #c7c7c7 solid !important;
}
.silver--bt-9 {
  border-top: 9px #c7c7c7 solid !important;
}
.silver--br-9 {
  border-right: 9px #c7c7c7 solid !important;
}
.silver--bl-9 {
  border-left: 9px #c7c7c7 solid !important;
}
.silver--bb-9 {
  border-bottom: 9px #c7c7c7 solid !important;
}
.silver--by-9 {
  border-top: 9px #c7c7c7 solid !important;
  border-bottom: 9px #c7c7c7 solid !important;
}
.silver--bx-9 {
  border-right: 9px #c7c7c7 solid !important;
  border-left: 9px #c7c7c7 solid !important;
}
.silver--ba-10 {
  border: 10px #c7c7c7 solid !important;
}
.silver--bt-10 {
  border-top: 10px #c7c7c7 solid !important;
}
.silver--br-10 {
  border-right: 10px #c7c7c7 solid !important;
}
.silver--bl-10 {
  border-left: 10px #c7c7c7 solid !important;
}
.silver--bb-10 {
  border-bottom: 10px #c7c7c7 solid !important;
}
.silver--by-10 {
  border-top: 10px #c7c7c7 solid !important;
  border-bottom: 10px #c7c7c7 solid !important;
}
.silver--bx-10 {
  border-right: 10px #c7c7c7 solid !important;
  border-left: 10px #c7c7c7 solid !important;
}
.silver--ba-11 {
  border: 11px #c7c7c7 solid !important;
}
.silver--bt-11 {
  border-top: 11px #c7c7c7 solid !important;
}
.silver--br-11 {
  border-right: 11px #c7c7c7 solid !important;
}
.silver--bl-11 {
  border-left: 11px #c7c7c7 solid !important;
}
.silver--bb-11 {
  border-bottom: 11px #c7c7c7 solid !important;
}
.silver--by-11 {
  border-top: 11px #c7c7c7 solid !important;
  border-bottom: 11px #c7c7c7 solid !important;
}
.silver--bx-11 {
  border-right: 11px #c7c7c7 solid !important;
  border-left: 11px #c7c7c7 solid !important;
}
.silver--ba-12 {
  border: 12px #c7c7c7 solid !important;
}
.silver--bt-12 {
  border-top: 12px #c7c7c7 solid !important;
}
.silver--br-12 {
  border-right: 12px #c7c7c7 solid !important;
}
.silver--bl-12 {
  border-left: 12px #c7c7c7 solid !important;
}
.silver--bb-12 {
  border-bottom: 12px #c7c7c7 solid !important;
}
.silver--by-12 {
  border-top: 12px #c7c7c7 solid !important;
  border-bottom: 12px #c7c7c7 solid !important;
}
.silver--bx-12 {
  border-right: 12px #c7c7c7 solid !important;
  border-left: 12px #c7c7c7 solid !important;
}
.silver--ba-13 {
  border: 13px #c7c7c7 solid !important;
}
.silver--bt-13 {
  border-top: 13px #c7c7c7 solid !important;
}
.silver--br-13 {
  border-right: 13px #c7c7c7 solid !important;
}
.silver--bl-13 {
  border-left: 13px #c7c7c7 solid !important;
}
.silver--bb-13 {
  border-bottom: 13px #c7c7c7 solid !important;
}
.silver--by-13 {
  border-top: 13px #c7c7c7 solid !important;
  border-bottom: 13px #c7c7c7 solid !important;
}
.silver--bx-13 {
  border-right: 13px #c7c7c7 solid !important;
  border-left: 13px #c7c7c7 solid !important;
}
.silver--ba-14 {
  border: 14px #c7c7c7 solid !important;
}
.silver--bt-14 {
  border-top: 14px #c7c7c7 solid !important;
}
.silver--br-14 {
  border-right: 14px #c7c7c7 solid !important;
}
.silver--bl-14 {
  border-left: 14px #c7c7c7 solid !important;
}
.silver--bb-14 {
  border-bottom: 14px #c7c7c7 solid !important;
}
.silver--by-14 {
  border-top: 14px #c7c7c7 solid !important;
  border-bottom: 14px #c7c7c7 solid !important;
}
.silver--bx-14 {
  border-right: 14px #c7c7c7 solid !important;
  border-left: 14px #c7c7c7 solid !important;
}
.silver--ba-15 {
  border: 15px #c7c7c7 solid !important;
}
.silver--bt-15 {
  border-top: 15px #c7c7c7 solid !important;
}
.silver--br-15 {
  border-right: 15px #c7c7c7 solid !important;
}
.silver--bl-15 {
  border-left: 15px #c7c7c7 solid !important;
}
.silver--bb-15 {
  border-bottom: 15px #c7c7c7 solid !important;
}
.silver--by-15 {
  border-top: 15px #c7c7c7 solid !important;
  border-bottom: 15px #c7c7c7 solid !important;
}
.silver--bx-15 {
  border-right: 15px #c7c7c7 solid !important;
  border-left: 15px #c7c7c7 solid !important;
}
.silver--ba-16 {
  border: 16px #c7c7c7 solid !important;
}
.silver--bt-16 {
  border-top: 16px #c7c7c7 solid !important;
}
.silver--br-16 {
  border-right: 16px #c7c7c7 solid !important;
}
.silver--bl-16 {
  border-left: 16px #c7c7c7 solid !important;
}
.silver--bb-16 {
  border-bottom: 16px #c7c7c7 solid !important;
}
.silver--by-16 {
  border-top: 16px #c7c7c7 solid !important;
  border-bottom: 16px #c7c7c7 solid !important;
}
.silver--bx-16 {
  border-right: 16px #c7c7c7 solid !important;
  border-left: 16px #c7c7c7 solid !important;
}
.silver--ba-17 {
  border: 17px #c7c7c7 solid !important;
}
.silver--bt-17 {
  border-top: 17px #c7c7c7 solid !important;
}
.silver--br-17 {
  border-right: 17px #c7c7c7 solid !important;
}
.silver--bl-17 {
  border-left: 17px #c7c7c7 solid !important;
}
.silver--bb-17 {
  border-bottom: 17px #c7c7c7 solid !important;
}
.silver--by-17 {
  border-top: 17px #c7c7c7 solid !important;
  border-bottom: 17px #c7c7c7 solid !important;
}
.silver--bx-17 {
  border-right: 17px #c7c7c7 solid !important;
  border-left: 17px #c7c7c7 solid !important;
}
.silver--ba-18 {
  border: 18px #c7c7c7 solid !important;
}
.silver--bt-18 {
  border-top: 18px #c7c7c7 solid !important;
}
.silver--br-18 {
  border-right: 18px #c7c7c7 solid !important;
}
.silver--bl-18 {
  border-left: 18px #c7c7c7 solid !important;
}
.silver--bb-18 {
  border-bottom: 18px #c7c7c7 solid !important;
}
.silver--by-18 {
  border-top: 18px #c7c7c7 solid !important;
  border-bottom: 18px #c7c7c7 solid !important;
}
.silver--bx-18 {
  border-right: 18px #c7c7c7 solid !important;
  border-left: 18px #c7c7c7 solid !important;
}
.silver--ba-19 {
  border: 19px #c7c7c7 solid !important;
}
.silver--bt-19 {
  border-top: 19px #c7c7c7 solid !important;
}
.silver--br-19 {
  border-right: 19px #c7c7c7 solid !important;
}
.silver--bl-19 {
  border-left: 19px #c7c7c7 solid !important;
}
.silver--bb-19 {
  border-bottom: 19px #c7c7c7 solid !important;
}
.silver--by-19 {
  border-top: 19px #c7c7c7 solid !important;
  border-bottom: 19px #c7c7c7 solid !important;
}
.silver--bx-19 {
  border-right: 19px #c7c7c7 solid !important;
  border-left: 19px #c7c7c7 solid !important;
}
.silver--ba-20 {
  border: 20px #c7c7c7 solid !important;
}
.silver--bt-20 {
  border-top: 20px #c7c7c7 solid !important;
}
.silver--br-20 {
  border-right: 20px #c7c7c7 solid !important;
}
.silver--bl-20 {
  border-left: 20px #c7c7c7 solid !important;
}
.silver--bb-20 {
  border-bottom: 20px #c7c7c7 solid !important;
}
.silver--by-20 {
  border-top: 20px #c7c7c7 solid !important;
  border-bottom: 20px #c7c7c7 solid !important;
}
.silver--bx-20 {
  border-right: 20px #c7c7c7 solid !important;
  border-left: 20px #c7c7c7 solid !important;
}
.silver--ba-21 {
  border: 21px #c7c7c7 solid !important;
}
.silver--bt-21 {
  border-top: 21px #c7c7c7 solid !important;
}
.silver--br-21 {
  border-right: 21px #c7c7c7 solid !important;
}
.silver--bl-21 {
  border-left: 21px #c7c7c7 solid !important;
}
.silver--bb-21 {
  border-bottom: 21px #c7c7c7 solid !important;
}
.silver--by-21 {
  border-top: 21px #c7c7c7 solid !important;
  border-bottom: 21px #c7c7c7 solid !important;
}
.silver--bx-21 {
  border-right: 21px #c7c7c7 solid !important;
  border-left: 21px #c7c7c7 solid !important;
}
.silver--ba-22 {
  border: 22px #c7c7c7 solid !important;
}
.silver--bt-22 {
  border-top: 22px #c7c7c7 solid !important;
}
.silver--br-22 {
  border-right: 22px #c7c7c7 solid !important;
}
.silver--bl-22 {
  border-left: 22px #c7c7c7 solid !important;
}
.silver--bb-22 {
  border-bottom: 22px #c7c7c7 solid !important;
}
.silver--by-22 {
  border-top: 22px #c7c7c7 solid !important;
  border-bottom: 22px #c7c7c7 solid !important;
}
.silver--bx-22 {
  border-right: 22px #c7c7c7 solid !important;
  border-left: 22px #c7c7c7 solid !important;
}
.silver--ba-23 {
  border: 23px #c7c7c7 solid !important;
}
.silver--bt-23 {
  border-top: 23px #c7c7c7 solid !important;
}
.silver--br-23 {
  border-right: 23px #c7c7c7 solid !important;
}
.silver--bl-23 {
  border-left: 23px #c7c7c7 solid !important;
}
.silver--bb-23 {
  border-bottom: 23px #c7c7c7 solid !important;
}
.silver--by-23 {
  border-top: 23px #c7c7c7 solid !important;
  border-bottom: 23px #c7c7c7 solid !important;
}
.silver--bx-23 {
  border-right: 23px #c7c7c7 solid !important;
  border-left: 23px #c7c7c7 solid !important;
}
.silver--ba-24 {
  border: 24px #c7c7c7 solid !important;
}
.silver--bt-24 {
  border-top: 24px #c7c7c7 solid !important;
}
.silver--br-24 {
  border-right: 24px #c7c7c7 solid !important;
}
.silver--bl-24 {
  border-left: 24px #c7c7c7 solid !important;
}
.silver--bb-24 {
  border-bottom: 24px #c7c7c7 solid !important;
}
.silver--by-24 {
  border-top: 24px #c7c7c7 solid !important;
  border-bottom: 24px #c7c7c7 solid !important;
}
.silver--bx-24 {
  border-right: 24px #c7c7c7 solid !important;
  border-left: 24px #c7c7c7 solid !important;
}
.silver--ba-25 {
  border: 25px #c7c7c7 solid !important;
}
.silver--bt-25 {
  border-top: 25px #c7c7c7 solid !important;
}
.silver--br-25 {
  border-right: 25px #c7c7c7 solid !important;
}
.silver--bl-25 {
  border-left: 25px #c7c7c7 solid !important;
}
.silver--bb-25 {
  border-bottom: 25px #c7c7c7 solid !important;
}
.silver--by-25 {
  border-top: 25px #c7c7c7 solid !important;
  border-bottom: 25px #c7c7c7 solid !important;
}
.silver--bx-25 {
  border-right: 25px #c7c7c7 solid !important;
  border-left: 25px #c7c7c7 solid !important;
}
.silver--ba-26 {
  border: 26px #c7c7c7 solid !important;
}
.silver--bt-26 {
  border-top: 26px #c7c7c7 solid !important;
}
.silver--br-26 {
  border-right: 26px #c7c7c7 solid !important;
}
.silver--bl-26 {
  border-left: 26px #c7c7c7 solid !important;
}
.silver--bb-26 {
  border-bottom: 26px #c7c7c7 solid !important;
}
.silver--by-26 {
  border-top: 26px #c7c7c7 solid !important;
  border-bottom: 26px #c7c7c7 solid !important;
}
.silver--bx-26 {
  border-right: 26px #c7c7c7 solid !important;
  border-left: 26px #c7c7c7 solid !important;
}
.silver--ba-27 {
  border: 27px #c7c7c7 solid !important;
}
.silver--bt-27 {
  border-top: 27px #c7c7c7 solid !important;
}
.silver--br-27 {
  border-right: 27px #c7c7c7 solid !important;
}
.silver--bl-27 {
  border-left: 27px #c7c7c7 solid !important;
}
.silver--bb-27 {
  border-bottom: 27px #c7c7c7 solid !important;
}
.silver--by-27 {
  border-top: 27px #c7c7c7 solid !important;
  border-bottom: 27px #c7c7c7 solid !important;
}
.silver--bx-27 {
  border-right: 27px #c7c7c7 solid !important;
  border-left: 27px #c7c7c7 solid !important;
}
.silver--ba-28 {
  border: 28px #c7c7c7 solid !important;
}
.silver--bt-28 {
  border-top: 28px #c7c7c7 solid !important;
}
.silver--br-28 {
  border-right: 28px #c7c7c7 solid !important;
}
.silver--bl-28 {
  border-left: 28px #c7c7c7 solid !important;
}
.silver--bb-28 {
  border-bottom: 28px #c7c7c7 solid !important;
}
.silver--by-28 {
  border-top: 28px #c7c7c7 solid !important;
  border-bottom: 28px #c7c7c7 solid !important;
}
.silver--bx-28 {
  border-right: 28px #c7c7c7 solid !important;
  border-left: 28px #c7c7c7 solid !important;
}
.silver--ba-29 {
  border: 29px #c7c7c7 solid !important;
}
.silver--bt-29 {
  border-top: 29px #c7c7c7 solid !important;
}
.silver--br-29 {
  border-right: 29px #c7c7c7 solid !important;
}
.silver--bl-29 {
  border-left: 29px #c7c7c7 solid !important;
}
.silver--bb-29 {
  border-bottom: 29px #c7c7c7 solid !important;
}
.silver--by-29 {
  border-top: 29px #c7c7c7 solid !important;
  border-bottom: 29px #c7c7c7 solid !important;
}
.silver--bx-29 {
  border-right: 29px #c7c7c7 solid !important;
  border-left: 29px #c7c7c7 solid !important;
}
.silver--ba-30 {
  border: 30px #c7c7c7 solid !important;
}
.silver--bt-30 {
  border-top: 30px #c7c7c7 solid !important;
}
.silver--br-30 {
  border-right: 30px #c7c7c7 solid !important;
}
.silver--bl-30 {
  border-left: 30px #c7c7c7 solid !important;
}
.silver--bb-30 {
  border-bottom: 30px #c7c7c7 solid !important;
}
.silver--by-30 {
  border-top: 30px #c7c7c7 solid !important;
  border-bottom: 30px #c7c7c7 solid !important;
}
.silver--bx-30 {
  border-right: 30px #c7c7c7 solid !important;
  border-left: 30px #c7c7c7 solid !important;
}
.silver--ba-31 {
  border: 31px #c7c7c7 solid !important;
}
.silver--bt-31 {
  border-top: 31px #c7c7c7 solid !important;
}
.silver--br-31 {
  border-right: 31px #c7c7c7 solid !important;
}
.silver--bl-31 {
  border-left: 31px #c7c7c7 solid !important;
}
.silver--bb-31 {
  border-bottom: 31px #c7c7c7 solid !important;
}
.silver--by-31 {
  border-top: 31px #c7c7c7 solid !important;
  border-bottom: 31px #c7c7c7 solid !important;
}
.silver--bx-31 {
  border-right: 31px #c7c7c7 solid !important;
  border-left: 31px #c7c7c7 solid !important;
}
.silver--ba-32 {
  border: 32px #c7c7c7 solid !important;
}
.silver--bt-32 {
  border-top: 32px #c7c7c7 solid !important;
}
.silver--br-32 {
  border-right: 32px #c7c7c7 solid !important;
}
.silver--bl-32 {
  border-left: 32px #c7c7c7 solid !important;
}
.silver--bb-32 {
  border-bottom: 32px #c7c7c7 solid !important;
}
.silver--by-32 {
  border-top: 32px #c7c7c7 solid !important;
  border-bottom: 32px #c7c7c7 solid !important;
}
.silver--bx-32 {
  border-right: 32px #c7c7c7 solid !important;
  border-left: 32px #c7c7c7 solid !important;
}
.silver--ba-33 {
  border: 33px #c7c7c7 solid !important;
}
.silver--bt-33 {
  border-top: 33px #c7c7c7 solid !important;
}
.silver--br-33 {
  border-right: 33px #c7c7c7 solid !important;
}
.silver--bl-33 {
  border-left: 33px #c7c7c7 solid !important;
}
.silver--bb-33 {
  border-bottom: 33px #c7c7c7 solid !important;
}
.silver--by-33 {
  border-top: 33px #c7c7c7 solid !important;
  border-bottom: 33px #c7c7c7 solid !important;
}
.silver--bx-33 {
  border-right: 33px #c7c7c7 solid !important;
  border-left: 33px #c7c7c7 solid !important;
}
.silver--ba-34 {
  border: 34px #c7c7c7 solid !important;
}
.silver--bt-34 {
  border-top: 34px #c7c7c7 solid !important;
}
.silver--br-34 {
  border-right: 34px #c7c7c7 solid !important;
}
.silver--bl-34 {
  border-left: 34px #c7c7c7 solid !important;
}
.silver--bb-34 {
  border-bottom: 34px #c7c7c7 solid !important;
}
.silver--by-34 {
  border-top: 34px #c7c7c7 solid !important;
  border-bottom: 34px #c7c7c7 solid !important;
}
.silver--bx-34 {
  border-right: 34px #c7c7c7 solid !important;
  border-left: 34px #c7c7c7 solid !important;
}
.silver--ba-35 {
  border: 35px #c7c7c7 solid !important;
}
.silver--bt-35 {
  border-top: 35px #c7c7c7 solid !important;
}
.silver--br-35 {
  border-right: 35px #c7c7c7 solid !important;
}
.silver--bl-35 {
  border-left: 35px #c7c7c7 solid !important;
}
.silver--bb-35 {
  border-bottom: 35px #c7c7c7 solid !important;
}
.silver--by-35 {
  border-top: 35px #c7c7c7 solid !important;
  border-bottom: 35px #c7c7c7 solid !important;
}
.silver--bx-35 {
  border-right: 35px #c7c7c7 solid !important;
  border-left: 35px #c7c7c7 solid !important;
}
.silver--ba-36 {
  border: 36px #c7c7c7 solid !important;
}
.silver--bt-36 {
  border-top: 36px #c7c7c7 solid !important;
}
.silver--br-36 {
  border-right: 36px #c7c7c7 solid !important;
}
.silver--bl-36 {
  border-left: 36px #c7c7c7 solid !important;
}
.silver--bb-36 {
  border-bottom: 36px #c7c7c7 solid !important;
}
.silver--by-36 {
  border-top: 36px #c7c7c7 solid !important;
  border-bottom: 36px #c7c7c7 solid !important;
}
.silver--bx-36 {
  border-right: 36px #c7c7c7 solid !important;
  border-left: 36px #c7c7c7 solid !important;
}
.silver--ba-37 {
  border: 37px #c7c7c7 solid !important;
}
.silver--bt-37 {
  border-top: 37px #c7c7c7 solid !important;
}
.silver--br-37 {
  border-right: 37px #c7c7c7 solid !important;
}
.silver--bl-37 {
  border-left: 37px #c7c7c7 solid !important;
}
.silver--bb-37 {
  border-bottom: 37px #c7c7c7 solid !important;
}
.silver--by-37 {
  border-top: 37px #c7c7c7 solid !important;
  border-bottom: 37px #c7c7c7 solid !important;
}
.silver--bx-37 {
  border-right: 37px #c7c7c7 solid !important;
  border-left: 37px #c7c7c7 solid !important;
}
.silver--ba-38 {
  border: 38px #c7c7c7 solid !important;
}
.silver--bt-38 {
  border-top: 38px #c7c7c7 solid !important;
}
.silver--br-38 {
  border-right: 38px #c7c7c7 solid !important;
}
.silver--bl-38 {
  border-left: 38px #c7c7c7 solid !important;
}
.silver--bb-38 {
  border-bottom: 38px #c7c7c7 solid !important;
}
.silver--by-38 {
  border-top: 38px #c7c7c7 solid !important;
  border-bottom: 38px #c7c7c7 solid !important;
}
.silver--bx-38 {
  border-right: 38px #c7c7c7 solid !important;
  border-left: 38px #c7c7c7 solid !important;
}
.silver--ba-39 {
  border: 39px #c7c7c7 solid !important;
}
.silver--bt-39 {
  border-top: 39px #c7c7c7 solid !important;
}
.silver--br-39 {
  border-right: 39px #c7c7c7 solid !important;
}
.silver--bl-39 {
  border-left: 39px #c7c7c7 solid !important;
}
.silver--bb-39 {
  border-bottom: 39px #c7c7c7 solid !important;
}
.silver--by-39 {
  border-top: 39px #c7c7c7 solid !important;
  border-bottom: 39px #c7c7c7 solid !important;
}
.silver--bx-39 {
  border-right: 39px #c7c7c7 solid !important;
  border-left: 39px #c7c7c7 solid !important;
}
.silver--ba-40 {
  border: 40px #c7c7c7 solid !important;
}
.silver--bt-40 {
  border-top: 40px #c7c7c7 solid !important;
}
.silver--br-40 {
  border-right: 40px #c7c7c7 solid !important;
}
.silver--bl-40 {
  border-left: 40px #c7c7c7 solid !important;
}
.silver--bb-40 {
  border-bottom: 40px #c7c7c7 solid !important;
}
.silver--by-40 {
  border-top: 40px #c7c7c7 solid !important;
  border-bottom: 40px #c7c7c7 solid !important;
}
.silver--bx-40 {
  border-right: 40px #c7c7c7 solid !important;
  border-left: 40px #c7c7c7 solid !important;
}
.silver--ba-41 {
  border: 41px #c7c7c7 solid !important;
}
.silver--bt-41 {
  border-top: 41px #c7c7c7 solid !important;
}
.silver--br-41 {
  border-right: 41px #c7c7c7 solid !important;
}
.silver--bl-41 {
  border-left: 41px #c7c7c7 solid !important;
}
.silver--bb-41 {
  border-bottom: 41px #c7c7c7 solid !important;
}
.silver--by-41 {
  border-top: 41px #c7c7c7 solid !important;
  border-bottom: 41px #c7c7c7 solid !important;
}
.silver--bx-41 {
  border-right: 41px #c7c7c7 solid !important;
  border-left: 41px #c7c7c7 solid !important;
}
.silver--ba-42 {
  border: 42px #c7c7c7 solid !important;
}
.silver--bt-42 {
  border-top: 42px #c7c7c7 solid !important;
}
.silver--br-42 {
  border-right: 42px #c7c7c7 solid !important;
}
.silver--bl-42 {
  border-left: 42px #c7c7c7 solid !important;
}
.silver--bb-42 {
  border-bottom: 42px #c7c7c7 solid !important;
}
.silver--by-42 {
  border-top: 42px #c7c7c7 solid !important;
  border-bottom: 42px #c7c7c7 solid !important;
}
.silver--bx-42 {
  border-right: 42px #c7c7c7 solid !important;
  border-left: 42px #c7c7c7 solid !important;
}
.silver--ba-43 {
  border: 43px #c7c7c7 solid !important;
}
.silver--bt-43 {
  border-top: 43px #c7c7c7 solid !important;
}
.silver--br-43 {
  border-right: 43px #c7c7c7 solid !important;
}
.silver--bl-43 {
  border-left: 43px #c7c7c7 solid !important;
}
.silver--bb-43 {
  border-bottom: 43px #c7c7c7 solid !important;
}
.silver--by-43 {
  border-top: 43px #c7c7c7 solid !important;
  border-bottom: 43px #c7c7c7 solid !important;
}
.silver--bx-43 {
  border-right: 43px #c7c7c7 solid !important;
  border-left: 43px #c7c7c7 solid !important;
}
.silver--ba-44 {
  border: 44px #c7c7c7 solid !important;
}
.silver--bt-44 {
  border-top: 44px #c7c7c7 solid !important;
}
.silver--br-44 {
  border-right: 44px #c7c7c7 solid !important;
}
.silver--bl-44 {
  border-left: 44px #c7c7c7 solid !important;
}
.silver--bb-44 {
  border-bottom: 44px #c7c7c7 solid !important;
}
.silver--by-44 {
  border-top: 44px #c7c7c7 solid !important;
  border-bottom: 44px #c7c7c7 solid !important;
}
.silver--bx-44 {
  border-right: 44px #c7c7c7 solid !important;
  border-left: 44px #c7c7c7 solid !important;
}
.silver--ba-45 {
  border: 45px #c7c7c7 solid !important;
}
.silver--bt-45 {
  border-top: 45px #c7c7c7 solid !important;
}
.silver--br-45 {
  border-right: 45px #c7c7c7 solid !important;
}
.silver--bl-45 {
  border-left: 45px #c7c7c7 solid !important;
}
.silver--bb-45 {
  border-bottom: 45px #c7c7c7 solid !important;
}
.silver--by-45 {
  border-top: 45px #c7c7c7 solid !important;
  border-bottom: 45px #c7c7c7 solid !important;
}
.silver--bx-45 {
  border-right: 45px #c7c7c7 solid !important;
  border-left: 45px #c7c7c7 solid !important;
}
.silver--ba-46 {
  border: 46px #c7c7c7 solid !important;
}
.silver--bt-46 {
  border-top: 46px #c7c7c7 solid !important;
}
.silver--br-46 {
  border-right: 46px #c7c7c7 solid !important;
}
.silver--bl-46 {
  border-left: 46px #c7c7c7 solid !important;
}
.silver--bb-46 {
  border-bottom: 46px #c7c7c7 solid !important;
}
.silver--by-46 {
  border-top: 46px #c7c7c7 solid !important;
  border-bottom: 46px #c7c7c7 solid !important;
}
.silver--bx-46 {
  border-right: 46px #c7c7c7 solid !important;
  border-left: 46px #c7c7c7 solid !important;
}
.silver--ba-47 {
  border: 47px #c7c7c7 solid !important;
}
.silver--bt-47 {
  border-top: 47px #c7c7c7 solid !important;
}
.silver--br-47 {
  border-right: 47px #c7c7c7 solid !important;
}
.silver--bl-47 {
  border-left: 47px #c7c7c7 solid !important;
}
.silver--bb-47 {
  border-bottom: 47px #c7c7c7 solid !important;
}
.silver--by-47 {
  border-top: 47px #c7c7c7 solid !important;
  border-bottom: 47px #c7c7c7 solid !important;
}
.silver--bx-47 {
  border-right: 47px #c7c7c7 solid !important;
  border-left: 47px #c7c7c7 solid !important;
}
.silver--ba-48 {
  border: 48px #c7c7c7 solid !important;
}
.silver--bt-48 {
  border-top: 48px #c7c7c7 solid !important;
}
.silver--br-48 {
  border-right: 48px #c7c7c7 solid !important;
}
.silver--bl-48 {
  border-left: 48px #c7c7c7 solid !important;
}
.silver--bb-48 {
  border-bottom: 48px #c7c7c7 solid !important;
}
.silver--by-48 {
  border-top: 48px #c7c7c7 solid !important;
  border-bottom: 48px #c7c7c7 solid !important;
}
.silver--bx-48 {
  border-right: 48px #c7c7c7 solid !important;
  border-left: 48px #c7c7c7 solid !important;
}
.silver--ba-49 {
  border: 49px #c7c7c7 solid !important;
}
.silver--bt-49 {
  border-top: 49px #c7c7c7 solid !important;
}
.silver--br-49 {
  border-right: 49px #c7c7c7 solid !important;
}
.silver--bl-49 {
  border-left: 49px #c7c7c7 solid !important;
}
.silver--bb-49 {
  border-bottom: 49px #c7c7c7 solid !important;
}
.silver--by-49 {
  border-top: 49px #c7c7c7 solid !important;
  border-bottom: 49px #c7c7c7 solid !important;
}
.silver--bx-49 {
  border-right: 49px #c7c7c7 solid !important;
  border-left: 49px #c7c7c7 solid !important;
}
.silver--ba-50 {
  border: 50px #c7c7c7 solid !important;
}
.silver--bt-50 {
  border-top: 50px #c7c7c7 solid !important;
}
.silver--br-50 {
  border-right: 50px #c7c7c7 solid !important;
}
.silver--bl-50 {
  border-left: 50px #c7c7c7 solid !important;
}
.silver--bb-50 {
  border-bottom: 50px #c7c7c7 solid !important;
}
.silver--by-50 {
  border-top: 50px #c7c7c7 solid !important;
  border-bottom: 50px #c7c7c7 solid !important;
}
.silver--bx-50 {
  border-right: 50px #c7c7c7 solid !important;
  border-left: 50px #c7c7c7 solid !important;
}
.silver--ba-51 {
  border: 51px #c7c7c7 solid !important;
}
.silver--bt-51 {
  border-top: 51px #c7c7c7 solid !important;
}
.silver--br-51 {
  border-right: 51px #c7c7c7 solid !important;
}
.silver--bl-51 {
  border-left: 51px #c7c7c7 solid !important;
}
.silver--bb-51 {
  border-bottom: 51px #c7c7c7 solid !important;
}
.silver--by-51 {
  border-top: 51px #c7c7c7 solid !important;
  border-bottom: 51px #c7c7c7 solid !important;
}
.silver--bx-51 {
  border-right: 51px #c7c7c7 solid !important;
  border-left: 51px #c7c7c7 solid !important;
}
.silver--ba-52 {
  border: 52px #c7c7c7 solid !important;
}
.silver--bt-52 {
  border-top: 52px #c7c7c7 solid !important;
}
.silver--br-52 {
  border-right: 52px #c7c7c7 solid !important;
}
.silver--bl-52 {
  border-left: 52px #c7c7c7 solid !important;
}
.silver--bb-52 {
  border-bottom: 52px #c7c7c7 solid !important;
}
.silver--by-52 {
  border-top: 52px #c7c7c7 solid !important;
  border-bottom: 52px #c7c7c7 solid !important;
}
.silver--bx-52 {
  border-right: 52px #c7c7c7 solid !important;
  border-left: 52px #c7c7c7 solid !important;
}
.silver--ba-53 {
  border: 53px #c7c7c7 solid !important;
}
.silver--bt-53 {
  border-top: 53px #c7c7c7 solid !important;
}
.silver--br-53 {
  border-right: 53px #c7c7c7 solid !important;
}
.silver--bl-53 {
  border-left: 53px #c7c7c7 solid !important;
}
.silver--bb-53 {
  border-bottom: 53px #c7c7c7 solid !important;
}
.silver--by-53 {
  border-top: 53px #c7c7c7 solid !important;
  border-bottom: 53px #c7c7c7 solid !important;
}
.silver--bx-53 {
  border-right: 53px #c7c7c7 solid !important;
  border-left: 53px #c7c7c7 solid !important;
}
.silver--ba-54 {
  border: 54px #c7c7c7 solid !important;
}
.silver--bt-54 {
  border-top: 54px #c7c7c7 solid !important;
}
.silver--br-54 {
  border-right: 54px #c7c7c7 solid !important;
}
.silver--bl-54 {
  border-left: 54px #c7c7c7 solid !important;
}
.silver--bb-54 {
  border-bottom: 54px #c7c7c7 solid !important;
}
.silver--by-54 {
  border-top: 54px #c7c7c7 solid !important;
  border-bottom: 54px #c7c7c7 solid !important;
}
.silver--bx-54 {
  border-right: 54px #c7c7c7 solid !important;
  border-left: 54px #c7c7c7 solid !important;
}
.silver--ba-55 {
  border: 55px #c7c7c7 solid !important;
}
.silver--bt-55 {
  border-top: 55px #c7c7c7 solid !important;
}
.silver--br-55 {
  border-right: 55px #c7c7c7 solid !important;
}
.silver--bl-55 {
  border-left: 55px #c7c7c7 solid !important;
}
.silver--bb-55 {
  border-bottom: 55px #c7c7c7 solid !important;
}
.silver--by-55 {
  border-top: 55px #c7c7c7 solid !important;
  border-bottom: 55px #c7c7c7 solid !important;
}
.silver--bx-55 {
  border-right: 55px #c7c7c7 solid !important;
  border-left: 55px #c7c7c7 solid !important;
}
.silver--ba-56 {
  border: 56px #c7c7c7 solid !important;
}
.silver--bt-56 {
  border-top: 56px #c7c7c7 solid !important;
}
.silver--br-56 {
  border-right: 56px #c7c7c7 solid !important;
}
.silver--bl-56 {
  border-left: 56px #c7c7c7 solid !important;
}
.silver--bb-56 {
  border-bottom: 56px #c7c7c7 solid !important;
}
.silver--by-56 {
  border-top: 56px #c7c7c7 solid !important;
  border-bottom: 56px #c7c7c7 solid !important;
}
.silver--bx-56 {
  border-right: 56px #c7c7c7 solid !important;
  border-left: 56px #c7c7c7 solid !important;
}
.silver--ba-57 {
  border: 57px #c7c7c7 solid !important;
}
.silver--bt-57 {
  border-top: 57px #c7c7c7 solid !important;
}
.silver--br-57 {
  border-right: 57px #c7c7c7 solid !important;
}
.silver--bl-57 {
  border-left: 57px #c7c7c7 solid !important;
}
.silver--bb-57 {
  border-bottom: 57px #c7c7c7 solid !important;
}
.silver--by-57 {
  border-top: 57px #c7c7c7 solid !important;
  border-bottom: 57px #c7c7c7 solid !important;
}
.silver--bx-57 {
  border-right: 57px #c7c7c7 solid !important;
  border-left: 57px #c7c7c7 solid !important;
}
.silver--ba-58 {
  border: 58px #c7c7c7 solid !important;
}
.silver--bt-58 {
  border-top: 58px #c7c7c7 solid !important;
}
.silver--br-58 {
  border-right: 58px #c7c7c7 solid !important;
}
.silver--bl-58 {
  border-left: 58px #c7c7c7 solid !important;
}
.silver--bb-58 {
  border-bottom: 58px #c7c7c7 solid !important;
}
.silver--by-58 {
  border-top: 58px #c7c7c7 solid !important;
  border-bottom: 58px #c7c7c7 solid !important;
}
.silver--bx-58 {
  border-right: 58px #c7c7c7 solid !important;
  border-left: 58px #c7c7c7 solid !important;
}
.silver--ba-59 {
  border: 59px #c7c7c7 solid !important;
}
.silver--bt-59 {
  border-top: 59px #c7c7c7 solid !important;
}
.silver--br-59 {
  border-right: 59px #c7c7c7 solid !important;
}
.silver--bl-59 {
  border-left: 59px #c7c7c7 solid !important;
}
.silver--bb-59 {
  border-bottom: 59px #c7c7c7 solid !important;
}
.silver--by-59 {
  border-top: 59px #c7c7c7 solid !important;
  border-bottom: 59px #c7c7c7 solid !important;
}
.silver--bx-59 {
  border-right: 59px #c7c7c7 solid !important;
  border-left: 59px #c7c7c7 solid !important;
}
.silver--ba-60 {
  border: 60px #c7c7c7 solid !important;
}
.silver--bt-60 {
  border-top: 60px #c7c7c7 solid !important;
}
.silver--br-60 {
  border-right: 60px #c7c7c7 solid !important;
}
.silver--bl-60 {
  border-left: 60px #c7c7c7 solid !important;
}
.silver--bb-60 {
  border-bottom: 60px #c7c7c7 solid !important;
}
.silver--by-60 {
  border-top: 60px #c7c7c7 solid !important;
  border-bottom: 60px #c7c7c7 solid !important;
}
.silver--bx-60 {
  border-right: 60px #c7c7c7 solid !important;
  border-left: 60px #c7c7c7 solid !important;
}
.silver--ba-61 {
  border: 61px #c7c7c7 solid !important;
}
.silver--bt-61 {
  border-top: 61px #c7c7c7 solid !important;
}
.silver--br-61 {
  border-right: 61px #c7c7c7 solid !important;
}
.silver--bl-61 {
  border-left: 61px #c7c7c7 solid !important;
}
.silver--bb-61 {
  border-bottom: 61px #c7c7c7 solid !important;
}
.silver--by-61 {
  border-top: 61px #c7c7c7 solid !important;
  border-bottom: 61px #c7c7c7 solid !important;
}
.silver--bx-61 {
  border-right: 61px #c7c7c7 solid !important;
  border-left: 61px #c7c7c7 solid !important;
}
.silver--ba-62 {
  border: 62px #c7c7c7 solid !important;
}
.silver--bt-62 {
  border-top: 62px #c7c7c7 solid !important;
}
.silver--br-62 {
  border-right: 62px #c7c7c7 solid !important;
}
.silver--bl-62 {
  border-left: 62px #c7c7c7 solid !important;
}
.silver--bb-62 {
  border-bottom: 62px #c7c7c7 solid !important;
}
.silver--by-62 {
  border-top: 62px #c7c7c7 solid !important;
  border-bottom: 62px #c7c7c7 solid !important;
}
.silver--bx-62 {
  border-right: 62px #c7c7c7 solid !important;
  border-left: 62px #c7c7c7 solid !important;
}
.silver--ba-63 {
  border: 63px #c7c7c7 solid !important;
}
.silver--bt-63 {
  border-top: 63px #c7c7c7 solid !important;
}
.silver--br-63 {
  border-right: 63px #c7c7c7 solid !important;
}
.silver--bl-63 {
  border-left: 63px #c7c7c7 solid !important;
}
.silver--bb-63 {
  border-bottom: 63px #c7c7c7 solid !important;
}
.silver--by-63 {
  border-top: 63px #c7c7c7 solid !important;
  border-bottom: 63px #c7c7c7 solid !important;
}
.silver--bx-63 {
  border-right: 63px #c7c7c7 solid !important;
  border-left: 63px #c7c7c7 solid !important;
}
.silver--ba-64 {
  border: 64px #c7c7c7 solid !important;
}
.silver--bt-64 {
  border-top: 64px #c7c7c7 solid !important;
}
.silver--br-64 {
  border-right: 64px #c7c7c7 solid !important;
}
.silver--bl-64 {
  border-left: 64px #c7c7c7 solid !important;
}
.silver--bb-64 {
  border-bottom: 64px #c7c7c7 solid !important;
}
.silver--by-64 {
  border-top: 64px #c7c7c7 solid !important;
  border-bottom: 64px #c7c7c7 solid !important;
}
.silver--bx-64 {
  border-right: 64px #c7c7c7 solid !important;
  border-left: 64px #c7c7c7 solid !important;
}
.silver--ba-65 {
  border: 65px #c7c7c7 solid !important;
}
.silver--bt-65 {
  border-top: 65px #c7c7c7 solid !important;
}
.silver--br-65 {
  border-right: 65px #c7c7c7 solid !important;
}
.silver--bl-65 {
  border-left: 65px #c7c7c7 solid !important;
}
.silver--bb-65 {
  border-bottom: 65px #c7c7c7 solid !important;
}
.silver--by-65 {
  border-top: 65px #c7c7c7 solid !important;
  border-bottom: 65px #c7c7c7 solid !important;
}
.silver--bx-65 {
  border-right: 65px #c7c7c7 solid !important;
  border-left: 65px #c7c7c7 solid !important;
}
.silver--ba-66 {
  border: 66px #c7c7c7 solid !important;
}
.silver--bt-66 {
  border-top: 66px #c7c7c7 solid !important;
}
.silver--br-66 {
  border-right: 66px #c7c7c7 solid !important;
}
.silver--bl-66 {
  border-left: 66px #c7c7c7 solid !important;
}
.silver--bb-66 {
  border-bottom: 66px #c7c7c7 solid !important;
}
.silver--by-66 {
  border-top: 66px #c7c7c7 solid !important;
  border-bottom: 66px #c7c7c7 solid !important;
}
.silver--bx-66 {
  border-right: 66px #c7c7c7 solid !important;
  border-left: 66px #c7c7c7 solid !important;
}
.silver--ba-67 {
  border: 67px #c7c7c7 solid !important;
}
.silver--bt-67 {
  border-top: 67px #c7c7c7 solid !important;
}
.silver--br-67 {
  border-right: 67px #c7c7c7 solid !important;
}
.silver--bl-67 {
  border-left: 67px #c7c7c7 solid !important;
}
.silver--bb-67 {
  border-bottom: 67px #c7c7c7 solid !important;
}
.silver--by-67 {
  border-top: 67px #c7c7c7 solid !important;
  border-bottom: 67px #c7c7c7 solid !important;
}
.silver--bx-67 {
  border-right: 67px #c7c7c7 solid !important;
  border-left: 67px #c7c7c7 solid !important;
}
.silver--ba-68 {
  border: 68px #c7c7c7 solid !important;
}
.silver--bt-68 {
  border-top: 68px #c7c7c7 solid !important;
}
.silver--br-68 {
  border-right: 68px #c7c7c7 solid !important;
}
.silver--bl-68 {
  border-left: 68px #c7c7c7 solid !important;
}
.silver--bb-68 {
  border-bottom: 68px #c7c7c7 solid !important;
}
.silver--by-68 {
  border-top: 68px #c7c7c7 solid !important;
  border-bottom: 68px #c7c7c7 solid !important;
}
.silver--bx-68 {
  border-right: 68px #c7c7c7 solid !important;
  border-left: 68px #c7c7c7 solid !important;
}
.silver--ba-69 {
  border: 69px #c7c7c7 solid !important;
}
.silver--bt-69 {
  border-top: 69px #c7c7c7 solid !important;
}
.silver--br-69 {
  border-right: 69px #c7c7c7 solid !important;
}
.silver--bl-69 {
  border-left: 69px #c7c7c7 solid !important;
}
.silver--bb-69 {
  border-bottom: 69px #c7c7c7 solid !important;
}
.silver--by-69 {
  border-top: 69px #c7c7c7 solid !important;
  border-bottom: 69px #c7c7c7 solid !important;
}
.silver--bx-69 {
  border-right: 69px #c7c7c7 solid !important;
  border-left: 69px #c7c7c7 solid !important;
}
.silver--ba-70 {
  border: 70px #c7c7c7 solid !important;
}
.silver--bt-70 {
  border-top: 70px #c7c7c7 solid !important;
}
.silver--br-70 {
  border-right: 70px #c7c7c7 solid !important;
}
.silver--bl-70 {
  border-left: 70px #c7c7c7 solid !important;
}
.silver--bb-70 {
  border-bottom: 70px #c7c7c7 solid !important;
}
.silver--by-70 {
  border-top: 70px #c7c7c7 solid !important;
  border-bottom: 70px #c7c7c7 solid !important;
}
.silver--bx-70 {
  border-right: 70px #c7c7c7 solid !important;
  border-left: 70px #c7c7c7 solid !important;
}
.silver--ba-71 {
  border: 71px #c7c7c7 solid !important;
}
.silver--bt-71 {
  border-top: 71px #c7c7c7 solid !important;
}
.silver--br-71 {
  border-right: 71px #c7c7c7 solid !important;
}
.silver--bl-71 {
  border-left: 71px #c7c7c7 solid !important;
}
.silver--bb-71 {
  border-bottom: 71px #c7c7c7 solid !important;
}
.silver--by-71 {
  border-top: 71px #c7c7c7 solid !important;
  border-bottom: 71px #c7c7c7 solid !important;
}
.silver--bx-71 {
  border-right: 71px #c7c7c7 solid !important;
  border-left: 71px #c7c7c7 solid !important;
}
.silver--ba-72 {
  border: 72px #c7c7c7 solid !important;
}
.silver--bt-72 {
  border-top: 72px #c7c7c7 solid !important;
}
.silver--br-72 {
  border-right: 72px #c7c7c7 solid !important;
}
.silver--bl-72 {
  border-left: 72px #c7c7c7 solid !important;
}
.silver--bb-72 {
  border-bottom: 72px #c7c7c7 solid !important;
}
.silver--by-72 {
  border-top: 72px #c7c7c7 solid !important;
  border-bottom: 72px #c7c7c7 solid !important;
}
.silver--bx-72 {
  border-right: 72px #c7c7c7 solid !important;
  border-left: 72px #c7c7c7 solid !important;
}
.silver--ba-73 {
  border: 73px #c7c7c7 solid !important;
}
.silver--bt-73 {
  border-top: 73px #c7c7c7 solid !important;
}
.silver--br-73 {
  border-right: 73px #c7c7c7 solid !important;
}
.silver--bl-73 {
  border-left: 73px #c7c7c7 solid !important;
}
.silver--bb-73 {
  border-bottom: 73px #c7c7c7 solid !important;
}
.silver--by-73 {
  border-top: 73px #c7c7c7 solid !important;
  border-bottom: 73px #c7c7c7 solid !important;
}
.silver--bx-73 {
  border-right: 73px #c7c7c7 solid !important;
  border-left: 73px #c7c7c7 solid !important;
}
.silver--ba-74 {
  border: 74px #c7c7c7 solid !important;
}
.silver--bt-74 {
  border-top: 74px #c7c7c7 solid !important;
}
.silver--br-74 {
  border-right: 74px #c7c7c7 solid !important;
}
.silver--bl-74 {
  border-left: 74px #c7c7c7 solid !important;
}
.silver--bb-74 {
  border-bottom: 74px #c7c7c7 solid !important;
}
.silver--by-74 {
  border-top: 74px #c7c7c7 solid !important;
  border-bottom: 74px #c7c7c7 solid !important;
}
.silver--bx-74 {
  border-right: 74px #c7c7c7 solid !important;
  border-left: 74px #c7c7c7 solid !important;
}
.silver--ba-75 {
  border: 75px #c7c7c7 solid !important;
}
.silver--bt-75 {
  border-top: 75px #c7c7c7 solid !important;
}
.silver--br-75 {
  border-right: 75px #c7c7c7 solid !important;
}
.silver--bl-75 {
  border-left: 75px #c7c7c7 solid !important;
}
.silver--bb-75 {
  border-bottom: 75px #c7c7c7 solid !important;
}
.silver--by-75 {
  border-top: 75px #c7c7c7 solid !important;
  border-bottom: 75px #c7c7c7 solid !important;
}
.silver--bx-75 {
  border-right: 75px #c7c7c7 solid !important;
  border-left: 75px #c7c7c7 solid !important;
}
.silver--ba-76 {
  border: 76px #c7c7c7 solid !important;
}
.silver--bt-76 {
  border-top: 76px #c7c7c7 solid !important;
}
.silver--br-76 {
  border-right: 76px #c7c7c7 solid !important;
}
.silver--bl-76 {
  border-left: 76px #c7c7c7 solid !important;
}
.silver--bb-76 {
  border-bottom: 76px #c7c7c7 solid !important;
}
.silver--by-76 {
  border-top: 76px #c7c7c7 solid !important;
  border-bottom: 76px #c7c7c7 solid !important;
}
.silver--bx-76 {
  border-right: 76px #c7c7c7 solid !important;
  border-left: 76px #c7c7c7 solid !important;
}
.silver--ba-77 {
  border: 77px #c7c7c7 solid !important;
}
.silver--bt-77 {
  border-top: 77px #c7c7c7 solid !important;
}
.silver--br-77 {
  border-right: 77px #c7c7c7 solid !important;
}
.silver--bl-77 {
  border-left: 77px #c7c7c7 solid !important;
}
.silver--bb-77 {
  border-bottom: 77px #c7c7c7 solid !important;
}
.silver--by-77 {
  border-top: 77px #c7c7c7 solid !important;
  border-bottom: 77px #c7c7c7 solid !important;
}
.silver--bx-77 {
  border-right: 77px #c7c7c7 solid !important;
  border-left: 77px #c7c7c7 solid !important;
}
.silver--ba-78 {
  border: 78px #c7c7c7 solid !important;
}
.silver--bt-78 {
  border-top: 78px #c7c7c7 solid !important;
}
.silver--br-78 {
  border-right: 78px #c7c7c7 solid !important;
}
.silver--bl-78 {
  border-left: 78px #c7c7c7 solid !important;
}
.silver--bb-78 {
  border-bottom: 78px #c7c7c7 solid !important;
}
.silver--by-78 {
  border-top: 78px #c7c7c7 solid !important;
  border-bottom: 78px #c7c7c7 solid !important;
}
.silver--bx-78 {
  border-right: 78px #c7c7c7 solid !important;
  border-left: 78px #c7c7c7 solid !important;
}
.silver--ba-79 {
  border: 79px #c7c7c7 solid !important;
}
.silver--bt-79 {
  border-top: 79px #c7c7c7 solid !important;
}
.silver--br-79 {
  border-right: 79px #c7c7c7 solid !important;
}
.silver--bl-79 {
  border-left: 79px #c7c7c7 solid !important;
}
.silver--bb-79 {
  border-bottom: 79px #c7c7c7 solid !important;
}
.silver--by-79 {
  border-top: 79px #c7c7c7 solid !important;
  border-bottom: 79px #c7c7c7 solid !important;
}
.silver--bx-79 {
  border-right: 79px #c7c7c7 solid !important;
  border-left: 79px #c7c7c7 solid !important;
}
.silver--ba-80 {
  border: 80px #c7c7c7 solid !important;
}
.silver--bt-80 {
  border-top: 80px #c7c7c7 solid !important;
}
.silver--br-80 {
  border-right: 80px #c7c7c7 solid !important;
}
.silver--bl-80 {
  border-left: 80px #c7c7c7 solid !important;
}
.silver--bb-80 {
  border-bottom: 80px #c7c7c7 solid !important;
}
.silver--by-80 {
  border-top: 80px #c7c7c7 solid !important;
  border-bottom: 80px #c7c7c7 solid !important;
}
.silver--bx-80 {
  border-right: 80px #c7c7c7 solid !important;
  border-left: 80px #c7c7c7 solid !important;
}
.silver--ba-81 {
  border: 81px #c7c7c7 solid !important;
}
.silver--bt-81 {
  border-top: 81px #c7c7c7 solid !important;
}
.silver--br-81 {
  border-right: 81px #c7c7c7 solid !important;
}
.silver--bl-81 {
  border-left: 81px #c7c7c7 solid !important;
}
.silver--bb-81 {
  border-bottom: 81px #c7c7c7 solid !important;
}
.silver--by-81 {
  border-top: 81px #c7c7c7 solid !important;
  border-bottom: 81px #c7c7c7 solid !important;
}
.silver--bx-81 {
  border-right: 81px #c7c7c7 solid !important;
  border-left: 81px #c7c7c7 solid !important;
}
.silver--ba-82 {
  border: 82px #c7c7c7 solid !important;
}
.silver--bt-82 {
  border-top: 82px #c7c7c7 solid !important;
}
.silver--br-82 {
  border-right: 82px #c7c7c7 solid !important;
}
.silver--bl-82 {
  border-left: 82px #c7c7c7 solid !important;
}
.silver--bb-82 {
  border-bottom: 82px #c7c7c7 solid !important;
}
.silver--by-82 {
  border-top: 82px #c7c7c7 solid !important;
  border-bottom: 82px #c7c7c7 solid !important;
}
.silver--bx-82 {
  border-right: 82px #c7c7c7 solid !important;
  border-left: 82px #c7c7c7 solid !important;
}
.silver--ba-83 {
  border: 83px #c7c7c7 solid !important;
}
.silver--bt-83 {
  border-top: 83px #c7c7c7 solid !important;
}
.silver--br-83 {
  border-right: 83px #c7c7c7 solid !important;
}
.silver--bl-83 {
  border-left: 83px #c7c7c7 solid !important;
}
.silver--bb-83 {
  border-bottom: 83px #c7c7c7 solid !important;
}
.silver--by-83 {
  border-top: 83px #c7c7c7 solid !important;
  border-bottom: 83px #c7c7c7 solid !important;
}
.silver--bx-83 {
  border-right: 83px #c7c7c7 solid !important;
  border-left: 83px #c7c7c7 solid !important;
}
.silver--ba-84 {
  border: 84px #c7c7c7 solid !important;
}
.silver--bt-84 {
  border-top: 84px #c7c7c7 solid !important;
}
.silver--br-84 {
  border-right: 84px #c7c7c7 solid !important;
}
.silver--bl-84 {
  border-left: 84px #c7c7c7 solid !important;
}
.silver--bb-84 {
  border-bottom: 84px #c7c7c7 solid !important;
}
.silver--by-84 {
  border-top: 84px #c7c7c7 solid !important;
  border-bottom: 84px #c7c7c7 solid !important;
}
.silver--bx-84 {
  border-right: 84px #c7c7c7 solid !important;
  border-left: 84px #c7c7c7 solid !important;
}
.silver--ba-85 {
  border: 85px #c7c7c7 solid !important;
}
.silver--bt-85 {
  border-top: 85px #c7c7c7 solid !important;
}
.silver--br-85 {
  border-right: 85px #c7c7c7 solid !important;
}
.silver--bl-85 {
  border-left: 85px #c7c7c7 solid !important;
}
.silver--bb-85 {
  border-bottom: 85px #c7c7c7 solid !important;
}
.silver--by-85 {
  border-top: 85px #c7c7c7 solid !important;
  border-bottom: 85px #c7c7c7 solid !important;
}
.silver--bx-85 {
  border-right: 85px #c7c7c7 solid !important;
  border-left: 85px #c7c7c7 solid !important;
}
.silver--ba-86 {
  border: 86px #c7c7c7 solid !important;
}
.silver--bt-86 {
  border-top: 86px #c7c7c7 solid !important;
}
.silver--br-86 {
  border-right: 86px #c7c7c7 solid !important;
}
.silver--bl-86 {
  border-left: 86px #c7c7c7 solid !important;
}
.silver--bb-86 {
  border-bottom: 86px #c7c7c7 solid !important;
}
.silver--by-86 {
  border-top: 86px #c7c7c7 solid !important;
  border-bottom: 86px #c7c7c7 solid !important;
}
.silver--bx-86 {
  border-right: 86px #c7c7c7 solid !important;
  border-left: 86px #c7c7c7 solid !important;
}
.silver--ba-87 {
  border: 87px #c7c7c7 solid !important;
}
.silver--bt-87 {
  border-top: 87px #c7c7c7 solid !important;
}
.silver--br-87 {
  border-right: 87px #c7c7c7 solid !important;
}
.silver--bl-87 {
  border-left: 87px #c7c7c7 solid !important;
}
.silver--bb-87 {
  border-bottom: 87px #c7c7c7 solid !important;
}
.silver--by-87 {
  border-top: 87px #c7c7c7 solid !important;
  border-bottom: 87px #c7c7c7 solid !important;
}
.silver--bx-87 {
  border-right: 87px #c7c7c7 solid !important;
  border-left: 87px #c7c7c7 solid !important;
}
.silver--ba-88 {
  border: 88px #c7c7c7 solid !important;
}
.silver--bt-88 {
  border-top: 88px #c7c7c7 solid !important;
}
.silver--br-88 {
  border-right: 88px #c7c7c7 solid !important;
}
.silver--bl-88 {
  border-left: 88px #c7c7c7 solid !important;
}
.silver--bb-88 {
  border-bottom: 88px #c7c7c7 solid !important;
}
.silver--by-88 {
  border-top: 88px #c7c7c7 solid !important;
  border-bottom: 88px #c7c7c7 solid !important;
}
.silver--bx-88 {
  border-right: 88px #c7c7c7 solid !important;
  border-left: 88px #c7c7c7 solid !important;
}
.silver--ba-89 {
  border: 89px #c7c7c7 solid !important;
}
.silver--bt-89 {
  border-top: 89px #c7c7c7 solid !important;
}
.silver--br-89 {
  border-right: 89px #c7c7c7 solid !important;
}
.silver--bl-89 {
  border-left: 89px #c7c7c7 solid !important;
}
.silver--bb-89 {
  border-bottom: 89px #c7c7c7 solid !important;
}
.silver--by-89 {
  border-top: 89px #c7c7c7 solid !important;
  border-bottom: 89px #c7c7c7 solid !important;
}
.silver--bx-89 {
  border-right: 89px #c7c7c7 solid !important;
  border-left: 89px #c7c7c7 solid !important;
}
.silver--ba-90 {
  border: 90px #c7c7c7 solid !important;
}
.silver--bt-90 {
  border-top: 90px #c7c7c7 solid !important;
}
.silver--br-90 {
  border-right: 90px #c7c7c7 solid !important;
}
.silver--bl-90 {
  border-left: 90px #c7c7c7 solid !important;
}
.silver--bb-90 {
  border-bottom: 90px #c7c7c7 solid !important;
}
.silver--by-90 {
  border-top: 90px #c7c7c7 solid !important;
  border-bottom: 90px #c7c7c7 solid !important;
}
.silver--bx-90 {
  border-right: 90px #c7c7c7 solid !important;
  border-left: 90px #c7c7c7 solid !important;
}
.silver--ba-91 {
  border: 91px #c7c7c7 solid !important;
}
.silver--bt-91 {
  border-top: 91px #c7c7c7 solid !important;
}
.silver--br-91 {
  border-right: 91px #c7c7c7 solid !important;
}
.silver--bl-91 {
  border-left: 91px #c7c7c7 solid !important;
}
.silver--bb-91 {
  border-bottom: 91px #c7c7c7 solid !important;
}
.silver--by-91 {
  border-top: 91px #c7c7c7 solid !important;
  border-bottom: 91px #c7c7c7 solid !important;
}
.silver--bx-91 {
  border-right: 91px #c7c7c7 solid !important;
  border-left: 91px #c7c7c7 solid !important;
}
.silver--ba-92 {
  border: 92px #c7c7c7 solid !important;
}
.silver--bt-92 {
  border-top: 92px #c7c7c7 solid !important;
}
.silver--br-92 {
  border-right: 92px #c7c7c7 solid !important;
}
.silver--bl-92 {
  border-left: 92px #c7c7c7 solid !important;
}
.silver--bb-92 {
  border-bottom: 92px #c7c7c7 solid !important;
}
.silver--by-92 {
  border-top: 92px #c7c7c7 solid !important;
  border-bottom: 92px #c7c7c7 solid !important;
}
.silver--bx-92 {
  border-right: 92px #c7c7c7 solid !important;
  border-left: 92px #c7c7c7 solid !important;
}
.silver--ba-93 {
  border: 93px #c7c7c7 solid !important;
}
.silver--bt-93 {
  border-top: 93px #c7c7c7 solid !important;
}
.silver--br-93 {
  border-right: 93px #c7c7c7 solid !important;
}
.silver--bl-93 {
  border-left: 93px #c7c7c7 solid !important;
}
.silver--bb-93 {
  border-bottom: 93px #c7c7c7 solid !important;
}
.silver--by-93 {
  border-top: 93px #c7c7c7 solid !important;
  border-bottom: 93px #c7c7c7 solid !important;
}
.silver--bx-93 {
  border-right: 93px #c7c7c7 solid !important;
  border-left: 93px #c7c7c7 solid !important;
}
.silver--ba-94 {
  border: 94px #c7c7c7 solid !important;
}
.silver--bt-94 {
  border-top: 94px #c7c7c7 solid !important;
}
.silver--br-94 {
  border-right: 94px #c7c7c7 solid !important;
}
.silver--bl-94 {
  border-left: 94px #c7c7c7 solid !important;
}
.silver--bb-94 {
  border-bottom: 94px #c7c7c7 solid !important;
}
.silver--by-94 {
  border-top: 94px #c7c7c7 solid !important;
  border-bottom: 94px #c7c7c7 solid !important;
}
.silver--bx-94 {
  border-right: 94px #c7c7c7 solid !important;
  border-left: 94px #c7c7c7 solid !important;
}
.silver--ba-95 {
  border: 95px #c7c7c7 solid !important;
}
.silver--bt-95 {
  border-top: 95px #c7c7c7 solid !important;
}
.silver--br-95 {
  border-right: 95px #c7c7c7 solid !important;
}
.silver--bl-95 {
  border-left: 95px #c7c7c7 solid !important;
}
.silver--bb-95 {
  border-bottom: 95px #c7c7c7 solid !important;
}
.silver--by-95 {
  border-top: 95px #c7c7c7 solid !important;
  border-bottom: 95px #c7c7c7 solid !important;
}
.silver--bx-95 {
  border-right: 95px #c7c7c7 solid !important;
  border-left: 95px #c7c7c7 solid !important;
}
.silver--ba-96 {
  border: 96px #c7c7c7 solid !important;
}
.silver--bt-96 {
  border-top: 96px #c7c7c7 solid !important;
}
.silver--br-96 {
  border-right: 96px #c7c7c7 solid !important;
}
.silver--bl-96 {
  border-left: 96px #c7c7c7 solid !important;
}
.silver--bb-96 {
  border-bottom: 96px #c7c7c7 solid !important;
}
.silver--by-96 {
  border-top: 96px #c7c7c7 solid !important;
  border-bottom: 96px #c7c7c7 solid !important;
}
.silver--bx-96 {
  border-right: 96px #c7c7c7 solid !important;
  border-left: 96px #c7c7c7 solid !important;
}
.silver--ba-97 {
  border: 97px #c7c7c7 solid !important;
}
.silver--bt-97 {
  border-top: 97px #c7c7c7 solid !important;
}
.silver--br-97 {
  border-right: 97px #c7c7c7 solid !important;
}
.silver--bl-97 {
  border-left: 97px #c7c7c7 solid !important;
}
.silver--bb-97 {
  border-bottom: 97px #c7c7c7 solid !important;
}
.silver--by-97 {
  border-top: 97px #c7c7c7 solid !important;
  border-bottom: 97px #c7c7c7 solid !important;
}
.silver--bx-97 {
  border-right: 97px #c7c7c7 solid !important;
  border-left: 97px #c7c7c7 solid !important;
}
.silver--ba-98 {
  border: 98px #c7c7c7 solid !important;
}
.silver--bt-98 {
  border-top: 98px #c7c7c7 solid !important;
}
.silver--br-98 {
  border-right: 98px #c7c7c7 solid !important;
}
.silver--bl-98 {
  border-left: 98px #c7c7c7 solid !important;
}
.silver--bb-98 {
  border-bottom: 98px #c7c7c7 solid !important;
}
.silver--by-98 {
  border-top: 98px #c7c7c7 solid !important;
  border-bottom: 98px #c7c7c7 solid !important;
}
.silver--bx-98 {
  border-right: 98px #c7c7c7 solid !important;
  border-left: 98px #c7c7c7 solid !important;
}
.silver--ba-99 {
  border: 99px #c7c7c7 solid !important;
}
.silver--bt-99 {
  border-top: 99px #c7c7c7 solid !important;
}
.silver--br-99 {
  border-right: 99px #c7c7c7 solid !important;
}
.silver--bl-99 {
  border-left: 99px #c7c7c7 solid !important;
}
.silver--bb-99 {
  border-bottom: 99px #c7c7c7 solid !important;
}
.silver--by-99 {
  border-top: 99px #c7c7c7 solid !important;
  border-bottom: 99px #c7c7c7 solid !important;
}
.silver--bx-99 {
  border-right: 99px #c7c7c7 solid !important;
  border-left: 99px #c7c7c7 solid !important;
}
.silver--ba-100 {
  border: 100px #c7c7c7 solid !important;
}
.silver--bt-100 {
  border-top: 100px #c7c7c7 solid !important;
}
.silver--br-100 {
  border-right: 100px #c7c7c7 solid !important;
}
.silver--bl-100 {
  border-left: 100px #c7c7c7 solid !important;
}
.silver--bb-100 {
  border-bottom: 100px #c7c7c7 solid !important;
}
.silver--by-100 {
  border-top: 100px #c7c7c7 solid !important;
  border-bottom: 100px #c7c7c7 solid !important;
}
.silver--bx-100 {
  border-right: 100px #c7c7c7 solid !important;
  border-left: 100px #c7c7c7 solid !important;
}
.cascade--ba-1 {
  border: 1px #95a5a6 solid !important;
}
.cascade--bt-1 {
  border-top: 1px #95a5a6 solid !important;
}
.cascade--br-1 {
  border-right: 1px #95a5a6 solid !important;
}
.cascade--bl-1 {
  border-left: 1px #95a5a6 solid !important;
}
.cascade--bb-1 {
  border-bottom: 1px #95a5a6 solid !important;
}
.cascade--by-1 {
  border-top: 1px #95a5a6 solid !important;
  border-bottom: 1px #95a5a6 solid !important;
}
.cascade--bx-1 {
  border-right: 1px #95a5a6 solid !important;
  border-left: 1px #95a5a6 solid !important;
}
.cascade--ba-2 {
  border: 2px #95a5a6 solid !important;
}
.cascade--bt-2 {
  border-top: 2px #95a5a6 solid !important;
}
.cascade--br-2 {
  border-right: 2px #95a5a6 solid !important;
}
.cascade--bl-2 {
  border-left: 2px #95a5a6 solid !important;
}
.cascade--bb-2 {
  border-bottom: 2px #95a5a6 solid !important;
}
.cascade--by-2 {
  border-top: 2px #95a5a6 solid !important;
  border-bottom: 2px #95a5a6 solid !important;
}
.cascade--bx-2 {
  border-right: 2px #95a5a6 solid !important;
  border-left: 2px #95a5a6 solid !important;
}
.cascade--ba-3 {
  border: 3px #95a5a6 solid !important;
}
.cascade--bt-3 {
  border-top: 3px #95a5a6 solid !important;
}
.cascade--br-3 {
  border-right: 3px #95a5a6 solid !important;
}
.cascade--bl-3 {
  border-left: 3px #95a5a6 solid !important;
}
.cascade--bb-3 {
  border-bottom: 3px #95a5a6 solid !important;
}
.cascade--by-3 {
  border-top: 3px #95a5a6 solid !important;
  border-bottom: 3px #95a5a6 solid !important;
}
.cascade--bx-3 {
  border-right: 3px #95a5a6 solid !important;
  border-left: 3px #95a5a6 solid !important;
}
.cascade--ba-4 {
  border: 4px #95a5a6 solid !important;
}
.cascade--bt-4 {
  border-top: 4px #95a5a6 solid !important;
}
.cascade--br-4 {
  border-right: 4px #95a5a6 solid !important;
}
.cascade--bl-4 {
  border-left: 4px #95a5a6 solid !important;
}
.cascade--bb-4 {
  border-bottom: 4px #95a5a6 solid !important;
}
.cascade--by-4 {
  border-top: 4px #95a5a6 solid !important;
  border-bottom: 4px #95a5a6 solid !important;
}
.cascade--bx-4 {
  border-right: 4px #95a5a6 solid !important;
  border-left: 4px #95a5a6 solid !important;
}
.cascade--ba-5 {
  border: 5px #95a5a6 solid !important;
}
.cascade--bt-5 {
  border-top: 5px #95a5a6 solid !important;
}
.cascade--br-5 {
  border-right: 5px #95a5a6 solid !important;
}
.cascade--bl-5 {
  border-left: 5px #95a5a6 solid !important;
}
.cascade--bb-5 {
  border-bottom: 5px #95a5a6 solid !important;
}
.cascade--by-5 {
  border-top: 5px #95a5a6 solid !important;
  border-bottom: 5px #95a5a6 solid !important;
}
.cascade--bx-5 {
  border-right: 5px #95a5a6 solid !important;
  border-left: 5px #95a5a6 solid !important;
}
.cascade--ba-6 {
  border: 6px #95a5a6 solid !important;
}
.cascade--bt-6 {
  border-top: 6px #95a5a6 solid !important;
}
.cascade--br-6 {
  border-right: 6px #95a5a6 solid !important;
}
.cascade--bl-6 {
  border-left: 6px #95a5a6 solid !important;
}
.cascade--bb-6 {
  border-bottom: 6px #95a5a6 solid !important;
}
.cascade--by-6 {
  border-top: 6px #95a5a6 solid !important;
  border-bottom: 6px #95a5a6 solid !important;
}
.cascade--bx-6 {
  border-right: 6px #95a5a6 solid !important;
  border-left: 6px #95a5a6 solid !important;
}
.cascade--ba-7 {
  border: 7px #95a5a6 solid !important;
}
.cascade--bt-7 {
  border-top: 7px #95a5a6 solid !important;
}
.cascade--br-7 {
  border-right: 7px #95a5a6 solid !important;
}
.cascade--bl-7 {
  border-left: 7px #95a5a6 solid !important;
}
.cascade--bb-7 {
  border-bottom: 7px #95a5a6 solid !important;
}
.cascade--by-7 {
  border-top: 7px #95a5a6 solid !important;
  border-bottom: 7px #95a5a6 solid !important;
}
.cascade--bx-7 {
  border-right: 7px #95a5a6 solid !important;
  border-left: 7px #95a5a6 solid !important;
}
.cascade--ba-8 {
  border: 8px #95a5a6 solid !important;
}
.cascade--bt-8 {
  border-top: 8px #95a5a6 solid !important;
}
.cascade--br-8 {
  border-right: 8px #95a5a6 solid !important;
}
.cascade--bl-8 {
  border-left: 8px #95a5a6 solid !important;
}
.cascade--bb-8 {
  border-bottom: 8px #95a5a6 solid !important;
}
.cascade--by-8 {
  border-top: 8px #95a5a6 solid !important;
  border-bottom: 8px #95a5a6 solid !important;
}
.cascade--bx-8 {
  border-right: 8px #95a5a6 solid !important;
  border-left: 8px #95a5a6 solid !important;
}
.cascade--ba-9 {
  border: 9px #95a5a6 solid !important;
}
.cascade--bt-9 {
  border-top: 9px #95a5a6 solid !important;
}
.cascade--br-9 {
  border-right: 9px #95a5a6 solid !important;
}
.cascade--bl-9 {
  border-left: 9px #95a5a6 solid !important;
}
.cascade--bb-9 {
  border-bottom: 9px #95a5a6 solid !important;
}
.cascade--by-9 {
  border-top: 9px #95a5a6 solid !important;
  border-bottom: 9px #95a5a6 solid !important;
}
.cascade--bx-9 {
  border-right: 9px #95a5a6 solid !important;
  border-left: 9px #95a5a6 solid !important;
}
.cascade--ba-10 {
  border: 10px #95a5a6 solid !important;
}
.cascade--bt-10 {
  border-top: 10px #95a5a6 solid !important;
}
.cascade--br-10 {
  border-right: 10px #95a5a6 solid !important;
}
.cascade--bl-10 {
  border-left: 10px #95a5a6 solid !important;
}
.cascade--bb-10 {
  border-bottom: 10px #95a5a6 solid !important;
}
.cascade--by-10 {
  border-top: 10px #95a5a6 solid !important;
  border-bottom: 10px #95a5a6 solid !important;
}
.cascade--bx-10 {
  border-right: 10px #95a5a6 solid !important;
  border-left: 10px #95a5a6 solid !important;
}
.cascade--ba-11 {
  border: 11px #95a5a6 solid !important;
}
.cascade--bt-11 {
  border-top: 11px #95a5a6 solid !important;
}
.cascade--br-11 {
  border-right: 11px #95a5a6 solid !important;
}
.cascade--bl-11 {
  border-left: 11px #95a5a6 solid !important;
}
.cascade--bb-11 {
  border-bottom: 11px #95a5a6 solid !important;
}
.cascade--by-11 {
  border-top: 11px #95a5a6 solid !important;
  border-bottom: 11px #95a5a6 solid !important;
}
.cascade--bx-11 {
  border-right: 11px #95a5a6 solid !important;
  border-left: 11px #95a5a6 solid !important;
}
.cascade--ba-12 {
  border: 12px #95a5a6 solid !important;
}
.cascade--bt-12 {
  border-top: 12px #95a5a6 solid !important;
}
.cascade--br-12 {
  border-right: 12px #95a5a6 solid !important;
}
.cascade--bl-12 {
  border-left: 12px #95a5a6 solid !important;
}
.cascade--bb-12 {
  border-bottom: 12px #95a5a6 solid !important;
}
.cascade--by-12 {
  border-top: 12px #95a5a6 solid !important;
  border-bottom: 12px #95a5a6 solid !important;
}
.cascade--bx-12 {
  border-right: 12px #95a5a6 solid !important;
  border-left: 12px #95a5a6 solid !important;
}
.cascade--ba-13 {
  border: 13px #95a5a6 solid !important;
}
.cascade--bt-13 {
  border-top: 13px #95a5a6 solid !important;
}
.cascade--br-13 {
  border-right: 13px #95a5a6 solid !important;
}
.cascade--bl-13 {
  border-left: 13px #95a5a6 solid !important;
}
.cascade--bb-13 {
  border-bottom: 13px #95a5a6 solid !important;
}
.cascade--by-13 {
  border-top: 13px #95a5a6 solid !important;
  border-bottom: 13px #95a5a6 solid !important;
}
.cascade--bx-13 {
  border-right: 13px #95a5a6 solid !important;
  border-left: 13px #95a5a6 solid !important;
}
.cascade--ba-14 {
  border: 14px #95a5a6 solid !important;
}
.cascade--bt-14 {
  border-top: 14px #95a5a6 solid !important;
}
.cascade--br-14 {
  border-right: 14px #95a5a6 solid !important;
}
.cascade--bl-14 {
  border-left: 14px #95a5a6 solid !important;
}
.cascade--bb-14 {
  border-bottom: 14px #95a5a6 solid !important;
}
.cascade--by-14 {
  border-top: 14px #95a5a6 solid !important;
  border-bottom: 14px #95a5a6 solid !important;
}
.cascade--bx-14 {
  border-right: 14px #95a5a6 solid !important;
  border-left: 14px #95a5a6 solid !important;
}
.cascade--ba-15 {
  border: 15px #95a5a6 solid !important;
}
.cascade--bt-15 {
  border-top: 15px #95a5a6 solid !important;
}
.cascade--br-15 {
  border-right: 15px #95a5a6 solid !important;
}
.cascade--bl-15 {
  border-left: 15px #95a5a6 solid !important;
}
.cascade--bb-15 {
  border-bottom: 15px #95a5a6 solid !important;
}
.cascade--by-15 {
  border-top: 15px #95a5a6 solid !important;
  border-bottom: 15px #95a5a6 solid !important;
}
.cascade--bx-15 {
  border-right: 15px #95a5a6 solid !important;
  border-left: 15px #95a5a6 solid !important;
}
.cascade--ba-16 {
  border: 16px #95a5a6 solid !important;
}
.cascade--bt-16 {
  border-top: 16px #95a5a6 solid !important;
}
.cascade--br-16 {
  border-right: 16px #95a5a6 solid !important;
}
.cascade--bl-16 {
  border-left: 16px #95a5a6 solid !important;
}
.cascade--bb-16 {
  border-bottom: 16px #95a5a6 solid !important;
}
.cascade--by-16 {
  border-top: 16px #95a5a6 solid !important;
  border-bottom: 16px #95a5a6 solid !important;
}
.cascade--bx-16 {
  border-right: 16px #95a5a6 solid !important;
  border-left: 16px #95a5a6 solid !important;
}
.cascade--ba-17 {
  border: 17px #95a5a6 solid !important;
}
.cascade--bt-17 {
  border-top: 17px #95a5a6 solid !important;
}
.cascade--br-17 {
  border-right: 17px #95a5a6 solid !important;
}
.cascade--bl-17 {
  border-left: 17px #95a5a6 solid !important;
}
.cascade--bb-17 {
  border-bottom: 17px #95a5a6 solid !important;
}
.cascade--by-17 {
  border-top: 17px #95a5a6 solid !important;
  border-bottom: 17px #95a5a6 solid !important;
}
.cascade--bx-17 {
  border-right: 17px #95a5a6 solid !important;
  border-left: 17px #95a5a6 solid !important;
}
.cascade--ba-18 {
  border: 18px #95a5a6 solid !important;
}
.cascade--bt-18 {
  border-top: 18px #95a5a6 solid !important;
}
.cascade--br-18 {
  border-right: 18px #95a5a6 solid !important;
}
.cascade--bl-18 {
  border-left: 18px #95a5a6 solid !important;
}
.cascade--bb-18 {
  border-bottom: 18px #95a5a6 solid !important;
}
.cascade--by-18 {
  border-top: 18px #95a5a6 solid !important;
  border-bottom: 18px #95a5a6 solid !important;
}
.cascade--bx-18 {
  border-right: 18px #95a5a6 solid !important;
  border-left: 18px #95a5a6 solid !important;
}
.cascade--ba-19 {
  border: 19px #95a5a6 solid !important;
}
.cascade--bt-19 {
  border-top: 19px #95a5a6 solid !important;
}
.cascade--br-19 {
  border-right: 19px #95a5a6 solid !important;
}
.cascade--bl-19 {
  border-left: 19px #95a5a6 solid !important;
}
.cascade--bb-19 {
  border-bottom: 19px #95a5a6 solid !important;
}
.cascade--by-19 {
  border-top: 19px #95a5a6 solid !important;
  border-bottom: 19px #95a5a6 solid !important;
}
.cascade--bx-19 {
  border-right: 19px #95a5a6 solid !important;
  border-left: 19px #95a5a6 solid !important;
}
.cascade--ba-20 {
  border: 20px #95a5a6 solid !important;
}
.cascade--bt-20 {
  border-top: 20px #95a5a6 solid !important;
}
.cascade--br-20 {
  border-right: 20px #95a5a6 solid !important;
}
.cascade--bl-20 {
  border-left: 20px #95a5a6 solid !important;
}
.cascade--bb-20 {
  border-bottom: 20px #95a5a6 solid !important;
}
.cascade--by-20 {
  border-top: 20px #95a5a6 solid !important;
  border-bottom: 20px #95a5a6 solid !important;
}
.cascade--bx-20 {
  border-right: 20px #95a5a6 solid !important;
  border-left: 20px #95a5a6 solid !important;
}
.cascade--ba-21 {
  border: 21px #95a5a6 solid !important;
}
.cascade--bt-21 {
  border-top: 21px #95a5a6 solid !important;
}
.cascade--br-21 {
  border-right: 21px #95a5a6 solid !important;
}
.cascade--bl-21 {
  border-left: 21px #95a5a6 solid !important;
}
.cascade--bb-21 {
  border-bottom: 21px #95a5a6 solid !important;
}
.cascade--by-21 {
  border-top: 21px #95a5a6 solid !important;
  border-bottom: 21px #95a5a6 solid !important;
}
.cascade--bx-21 {
  border-right: 21px #95a5a6 solid !important;
  border-left: 21px #95a5a6 solid !important;
}
.cascade--ba-22 {
  border: 22px #95a5a6 solid !important;
}
.cascade--bt-22 {
  border-top: 22px #95a5a6 solid !important;
}
.cascade--br-22 {
  border-right: 22px #95a5a6 solid !important;
}
.cascade--bl-22 {
  border-left: 22px #95a5a6 solid !important;
}
.cascade--bb-22 {
  border-bottom: 22px #95a5a6 solid !important;
}
.cascade--by-22 {
  border-top: 22px #95a5a6 solid !important;
  border-bottom: 22px #95a5a6 solid !important;
}
.cascade--bx-22 {
  border-right: 22px #95a5a6 solid !important;
  border-left: 22px #95a5a6 solid !important;
}
.cascade--ba-23 {
  border: 23px #95a5a6 solid !important;
}
.cascade--bt-23 {
  border-top: 23px #95a5a6 solid !important;
}
.cascade--br-23 {
  border-right: 23px #95a5a6 solid !important;
}
.cascade--bl-23 {
  border-left: 23px #95a5a6 solid !important;
}
.cascade--bb-23 {
  border-bottom: 23px #95a5a6 solid !important;
}
.cascade--by-23 {
  border-top: 23px #95a5a6 solid !important;
  border-bottom: 23px #95a5a6 solid !important;
}
.cascade--bx-23 {
  border-right: 23px #95a5a6 solid !important;
  border-left: 23px #95a5a6 solid !important;
}
.cascade--ba-24 {
  border: 24px #95a5a6 solid !important;
}
.cascade--bt-24 {
  border-top: 24px #95a5a6 solid !important;
}
.cascade--br-24 {
  border-right: 24px #95a5a6 solid !important;
}
.cascade--bl-24 {
  border-left: 24px #95a5a6 solid !important;
}
.cascade--bb-24 {
  border-bottom: 24px #95a5a6 solid !important;
}
.cascade--by-24 {
  border-top: 24px #95a5a6 solid !important;
  border-bottom: 24px #95a5a6 solid !important;
}
.cascade--bx-24 {
  border-right: 24px #95a5a6 solid !important;
  border-left: 24px #95a5a6 solid !important;
}
.cascade--ba-25 {
  border: 25px #95a5a6 solid !important;
}
.cascade--bt-25 {
  border-top: 25px #95a5a6 solid !important;
}
.cascade--br-25 {
  border-right: 25px #95a5a6 solid !important;
}
.cascade--bl-25 {
  border-left: 25px #95a5a6 solid !important;
}
.cascade--bb-25 {
  border-bottom: 25px #95a5a6 solid !important;
}
.cascade--by-25 {
  border-top: 25px #95a5a6 solid !important;
  border-bottom: 25px #95a5a6 solid !important;
}
.cascade--bx-25 {
  border-right: 25px #95a5a6 solid !important;
  border-left: 25px #95a5a6 solid !important;
}
.cascade--ba-26 {
  border: 26px #95a5a6 solid !important;
}
.cascade--bt-26 {
  border-top: 26px #95a5a6 solid !important;
}
.cascade--br-26 {
  border-right: 26px #95a5a6 solid !important;
}
.cascade--bl-26 {
  border-left: 26px #95a5a6 solid !important;
}
.cascade--bb-26 {
  border-bottom: 26px #95a5a6 solid !important;
}
.cascade--by-26 {
  border-top: 26px #95a5a6 solid !important;
  border-bottom: 26px #95a5a6 solid !important;
}
.cascade--bx-26 {
  border-right: 26px #95a5a6 solid !important;
  border-left: 26px #95a5a6 solid !important;
}
.cascade--ba-27 {
  border: 27px #95a5a6 solid !important;
}
.cascade--bt-27 {
  border-top: 27px #95a5a6 solid !important;
}
.cascade--br-27 {
  border-right: 27px #95a5a6 solid !important;
}
.cascade--bl-27 {
  border-left: 27px #95a5a6 solid !important;
}
.cascade--bb-27 {
  border-bottom: 27px #95a5a6 solid !important;
}
.cascade--by-27 {
  border-top: 27px #95a5a6 solid !important;
  border-bottom: 27px #95a5a6 solid !important;
}
.cascade--bx-27 {
  border-right: 27px #95a5a6 solid !important;
  border-left: 27px #95a5a6 solid !important;
}
.cascade--ba-28 {
  border: 28px #95a5a6 solid !important;
}
.cascade--bt-28 {
  border-top: 28px #95a5a6 solid !important;
}
.cascade--br-28 {
  border-right: 28px #95a5a6 solid !important;
}
.cascade--bl-28 {
  border-left: 28px #95a5a6 solid !important;
}
.cascade--bb-28 {
  border-bottom: 28px #95a5a6 solid !important;
}
.cascade--by-28 {
  border-top: 28px #95a5a6 solid !important;
  border-bottom: 28px #95a5a6 solid !important;
}
.cascade--bx-28 {
  border-right: 28px #95a5a6 solid !important;
  border-left: 28px #95a5a6 solid !important;
}
.cascade--ba-29 {
  border: 29px #95a5a6 solid !important;
}
.cascade--bt-29 {
  border-top: 29px #95a5a6 solid !important;
}
.cascade--br-29 {
  border-right: 29px #95a5a6 solid !important;
}
.cascade--bl-29 {
  border-left: 29px #95a5a6 solid !important;
}
.cascade--bb-29 {
  border-bottom: 29px #95a5a6 solid !important;
}
.cascade--by-29 {
  border-top: 29px #95a5a6 solid !important;
  border-bottom: 29px #95a5a6 solid !important;
}
.cascade--bx-29 {
  border-right: 29px #95a5a6 solid !important;
  border-left: 29px #95a5a6 solid !important;
}
.cascade--ba-30 {
  border: 30px #95a5a6 solid !important;
}
.cascade--bt-30 {
  border-top: 30px #95a5a6 solid !important;
}
.cascade--br-30 {
  border-right: 30px #95a5a6 solid !important;
}
.cascade--bl-30 {
  border-left: 30px #95a5a6 solid !important;
}
.cascade--bb-30 {
  border-bottom: 30px #95a5a6 solid !important;
}
.cascade--by-30 {
  border-top: 30px #95a5a6 solid !important;
  border-bottom: 30px #95a5a6 solid !important;
}
.cascade--bx-30 {
  border-right: 30px #95a5a6 solid !important;
  border-left: 30px #95a5a6 solid !important;
}
.cascade--ba-31 {
  border: 31px #95a5a6 solid !important;
}
.cascade--bt-31 {
  border-top: 31px #95a5a6 solid !important;
}
.cascade--br-31 {
  border-right: 31px #95a5a6 solid !important;
}
.cascade--bl-31 {
  border-left: 31px #95a5a6 solid !important;
}
.cascade--bb-31 {
  border-bottom: 31px #95a5a6 solid !important;
}
.cascade--by-31 {
  border-top: 31px #95a5a6 solid !important;
  border-bottom: 31px #95a5a6 solid !important;
}
.cascade--bx-31 {
  border-right: 31px #95a5a6 solid !important;
  border-left: 31px #95a5a6 solid !important;
}
.cascade--ba-32 {
  border: 32px #95a5a6 solid !important;
}
.cascade--bt-32 {
  border-top: 32px #95a5a6 solid !important;
}
.cascade--br-32 {
  border-right: 32px #95a5a6 solid !important;
}
.cascade--bl-32 {
  border-left: 32px #95a5a6 solid !important;
}
.cascade--bb-32 {
  border-bottom: 32px #95a5a6 solid !important;
}
.cascade--by-32 {
  border-top: 32px #95a5a6 solid !important;
  border-bottom: 32px #95a5a6 solid !important;
}
.cascade--bx-32 {
  border-right: 32px #95a5a6 solid !important;
  border-left: 32px #95a5a6 solid !important;
}
.cascade--ba-33 {
  border: 33px #95a5a6 solid !important;
}
.cascade--bt-33 {
  border-top: 33px #95a5a6 solid !important;
}
.cascade--br-33 {
  border-right: 33px #95a5a6 solid !important;
}
.cascade--bl-33 {
  border-left: 33px #95a5a6 solid !important;
}
.cascade--bb-33 {
  border-bottom: 33px #95a5a6 solid !important;
}
.cascade--by-33 {
  border-top: 33px #95a5a6 solid !important;
  border-bottom: 33px #95a5a6 solid !important;
}
.cascade--bx-33 {
  border-right: 33px #95a5a6 solid !important;
  border-left: 33px #95a5a6 solid !important;
}
.cascade--ba-34 {
  border: 34px #95a5a6 solid !important;
}
.cascade--bt-34 {
  border-top: 34px #95a5a6 solid !important;
}
.cascade--br-34 {
  border-right: 34px #95a5a6 solid !important;
}
.cascade--bl-34 {
  border-left: 34px #95a5a6 solid !important;
}
.cascade--bb-34 {
  border-bottom: 34px #95a5a6 solid !important;
}
.cascade--by-34 {
  border-top: 34px #95a5a6 solid !important;
  border-bottom: 34px #95a5a6 solid !important;
}
.cascade--bx-34 {
  border-right: 34px #95a5a6 solid !important;
  border-left: 34px #95a5a6 solid !important;
}
.cascade--ba-35 {
  border: 35px #95a5a6 solid !important;
}
.cascade--bt-35 {
  border-top: 35px #95a5a6 solid !important;
}
.cascade--br-35 {
  border-right: 35px #95a5a6 solid !important;
}
.cascade--bl-35 {
  border-left: 35px #95a5a6 solid !important;
}
.cascade--bb-35 {
  border-bottom: 35px #95a5a6 solid !important;
}
.cascade--by-35 {
  border-top: 35px #95a5a6 solid !important;
  border-bottom: 35px #95a5a6 solid !important;
}
.cascade--bx-35 {
  border-right: 35px #95a5a6 solid !important;
  border-left: 35px #95a5a6 solid !important;
}
.cascade--ba-36 {
  border: 36px #95a5a6 solid !important;
}
.cascade--bt-36 {
  border-top: 36px #95a5a6 solid !important;
}
.cascade--br-36 {
  border-right: 36px #95a5a6 solid !important;
}
.cascade--bl-36 {
  border-left: 36px #95a5a6 solid !important;
}
.cascade--bb-36 {
  border-bottom: 36px #95a5a6 solid !important;
}
.cascade--by-36 {
  border-top: 36px #95a5a6 solid !important;
  border-bottom: 36px #95a5a6 solid !important;
}
.cascade--bx-36 {
  border-right: 36px #95a5a6 solid !important;
  border-left: 36px #95a5a6 solid !important;
}
.cascade--ba-37 {
  border: 37px #95a5a6 solid !important;
}
.cascade--bt-37 {
  border-top: 37px #95a5a6 solid !important;
}
.cascade--br-37 {
  border-right: 37px #95a5a6 solid !important;
}
.cascade--bl-37 {
  border-left: 37px #95a5a6 solid !important;
}
.cascade--bb-37 {
  border-bottom: 37px #95a5a6 solid !important;
}
.cascade--by-37 {
  border-top: 37px #95a5a6 solid !important;
  border-bottom: 37px #95a5a6 solid !important;
}
.cascade--bx-37 {
  border-right: 37px #95a5a6 solid !important;
  border-left: 37px #95a5a6 solid !important;
}
.cascade--ba-38 {
  border: 38px #95a5a6 solid !important;
}
.cascade--bt-38 {
  border-top: 38px #95a5a6 solid !important;
}
.cascade--br-38 {
  border-right: 38px #95a5a6 solid !important;
}
.cascade--bl-38 {
  border-left: 38px #95a5a6 solid !important;
}
.cascade--bb-38 {
  border-bottom: 38px #95a5a6 solid !important;
}
.cascade--by-38 {
  border-top: 38px #95a5a6 solid !important;
  border-bottom: 38px #95a5a6 solid !important;
}
.cascade--bx-38 {
  border-right: 38px #95a5a6 solid !important;
  border-left: 38px #95a5a6 solid !important;
}
.cascade--ba-39 {
  border: 39px #95a5a6 solid !important;
}
.cascade--bt-39 {
  border-top: 39px #95a5a6 solid !important;
}
.cascade--br-39 {
  border-right: 39px #95a5a6 solid !important;
}
.cascade--bl-39 {
  border-left: 39px #95a5a6 solid !important;
}
.cascade--bb-39 {
  border-bottom: 39px #95a5a6 solid !important;
}
.cascade--by-39 {
  border-top: 39px #95a5a6 solid !important;
  border-bottom: 39px #95a5a6 solid !important;
}
.cascade--bx-39 {
  border-right: 39px #95a5a6 solid !important;
  border-left: 39px #95a5a6 solid !important;
}
.cascade--ba-40 {
  border: 40px #95a5a6 solid !important;
}
.cascade--bt-40 {
  border-top: 40px #95a5a6 solid !important;
}
.cascade--br-40 {
  border-right: 40px #95a5a6 solid !important;
}
.cascade--bl-40 {
  border-left: 40px #95a5a6 solid !important;
}
.cascade--bb-40 {
  border-bottom: 40px #95a5a6 solid !important;
}
.cascade--by-40 {
  border-top: 40px #95a5a6 solid !important;
  border-bottom: 40px #95a5a6 solid !important;
}
.cascade--bx-40 {
  border-right: 40px #95a5a6 solid !important;
  border-left: 40px #95a5a6 solid !important;
}
.cascade--ba-41 {
  border: 41px #95a5a6 solid !important;
}
.cascade--bt-41 {
  border-top: 41px #95a5a6 solid !important;
}
.cascade--br-41 {
  border-right: 41px #95a5a6 solid !important;
}
.cascade--bl-41 {
  border-left: 41px #95a5a6 solid !important;
}
.cascade--bb-41 {
  border-bottom: 41px #95a5a6 solid !important;
}
.cascade--by-41 {
  border-top: 41px #95a5a6 solid !important;
  border-bottom: 41px #95a5a6 solid !important;
}
.cascade--bx-41 {
  border-right: 41px #95a5a6 solid !important;
  border-left: 41px #95a5a6 solid !important;
}
.cascade--ba-42 {
  border: 42px #95a5a6 solid !important;
}
.cascade--bt-42 {
  border-top: 42px #95a5a6 solid !important;
}
.cascade--br-42 {
  border-right: 42px #95a5a6 solid !important;
}
.cascade--bl-42 {
  border-left: 42px #95a5a6 solid !important;
}
.cascade--bb-42 {
  border-bottom: 42px #95a5a6 solid !important;
}
.cascade--by-42 {
  border-top: 42px #95a5a6 solid !important;
  border-bottom: 42px #95a5a6 solid !important;
}
.cascade--bx-42 {
  border-right: 42px #95a5a6 solid !important;
  border-left: 42px #95a5a6 solid !important;
}
.cascade--ba-43 {
  border: 43px #95a5a6 solid !important;
}
.cascade--bt-43 {
  border-top: 43px #95a5a6 solid !important;
}
.cascade--br-43 {
  border-right: 43px #95a5a6 solid !important;
}
.cascade--bl-43 {
  border-left: 43px #95a5a6 solid !important;
}
.cascade--bb-43 {
  border-bottom: 43px #95a5a6 solid !important;
}
.cascade--by-43 {
  border-top: 43px #95a5a6 solid !important;
  border-bottom: 43px #95a5a6 solid !important;
}
.cascade--bx-43 {
  border-right: 43px #95a5a6 solid !important;
  border-left: 43px #95a5a6 solid !important;
}
.cascade--ba-44 {
  border: 44px #95a5a6 solid !important;
}
.cascade--bt-44 {
  border-top: 44px #95a5a6 solid !important;
}
.cascade--br-44 {
  border-right: 44px #95a5a6 solid !important;
}
.cascade--bl-44 {
  border-left: 44px #95a5a6 solid !important;
}
.cascade--bb-44 {
  border-bottom: 44px #95a5a6 solid !important;
}
.cascade--by-44 {
  border-top: 44px #95a5a6 solid !important;
  border-bottom: 44px #95a5a6 solid !important;
}
.cascade--bx-44 {
  border-right: 44px #95a5a6 solid !important;
  border-left: 44px #95a5a6 solid !important;
}
.cascade--ba-45 {
  border: 45px #95a5a6 solid !important;
}
.cascade--bt-45 {
  border-top: 45px #95a5a6 solid !important;
}
.cascade--br-45 {
  border-right: 45px #95a5a6 solid !important;
}
.cascade--bl-45 {
  border-left: 45px #95a5a6 solid !important;
}
.cascade--bb-45 {
  border-bottom: 45px #95a5a6 solid !important;
}
.cascade--by-45 {
  border-top: 45px #95a5a6 solid !important;
  border-bottom: 45px #95a5a6 solid !important;
}
.cascade--bx-45 {
  border-right: 45px #95a5a6 solid !important;
  border-left: 45px #95a5a6 solid !important;
}
.cascade--ba-46 {
  border: 46px #95a5a6 solid !important;
}
.cascade--bt-46 {
  border-top: 46px #95a5a6 solid !important;
}
.cascade--br-46 {
  border-right: 46px #95a5a6 solid !important;
}
.cascade--bl-46 {
  border-left: 46px #95a5a6 solid !important;
}
.cascade--bb-46 {
  border-bottom: 46px #95a5a6 solid !important;
}
.cascade--by-46 {
  border-top: 46px #95a5a6 solid !important;
  border-bottom: 46px #95a5a6 solid !important;
}
.cascade--bx-46 {
  border-right: 46px #95a5a6 solid !important;
  border-left: 46px #95a5a6 solid !important;
}
.cascade--ba-47 {
  border: 47px #95a5a6 solid !important;
}
.cascade--bt-47 {
  border-top: 47px #95a5a6 solid !important;
}
.cascade--br-47 {
  border-right: 47px #95a5a6 solid !important;
}
.cascade--bl-47 {
  border-left: 47px #95a5a6 solid !important;
}
.cascade--bb-47 {
  border-bottom: 47px #95a5a6 solid !important;
}
.cascade--by-47 {
  border-top: 47px #95a5a6 solid !important;
  border-bottom: 47px #95a5a6 solid !important;
}
.cascade--bx-47 {
  border-right: 47px #95a5a6 solid !important;
  border-left: 47px #95a5a6 solid !important;
}
.cascade--ba-48 {
  border: 48px #95a5a6 solid !important;
}
.cascade--bt-48 {
  border-top: 48px #95a5a6 solid !important;
}
.cascade--br-48 {
  border-right: 48px #95a5a6 solid !important;
}
.cascade--bl-48 {
  border-left: 48px #95a5a6 solid !important;
}
.cascade--bb-48 {
  border-bottom: 48px #95a5a6 solid !important;
}
.cascade--by-48 {
  border-top: 48px #95a5a6 solid !important;
  border-bottom: 48px #95a5a6 solid !important;
}
.cascade--bx-48 {
  border-right: 48px #95a5a6 solid !important;
  border-left: 48px #95a5a6 solid !important;
}
.cascade--ba-49 {
  border: 49px #95a5a6 solid !important;
}
.cascade--bt-49 {
  border-top: 49px #95a5a6 solid !important;
}
.cascade--br-49 {
  border-right: 49px #95a5a6 solid !important;
}
.cascade--bl-49 {
  border-left: 49px #95a5a6 solid !important;
}
.cascade--bb-49 {
  border-bottom: 49px #95a5a6 solid !important;
}
.cascade--by-49 {
  border-top: 49px #95a5a6 solid !important;
  border-bottom: 49px #95a5a6 solid !important;
}
.cascade--bx-49 {
  border-right: 49px #95a5a6 solid !important;
  border-left: 49px #95a5a6 solid !important;
}
.cascade--ba-50 {
  border: 50px #95a5a6 solid !important;
}
.cascade--bt-50 {
  border-top: 50px #95a5a6 solid !important;
}
.cascade--br-50 {
  border-right: 50px #95a5a6 solid !important;
}
.cascade--bl-50 {
  border-left: 50px #95a5a6 solid !important;
}
.cascade--bb-50 {
  border-bottom: 50px #95a5a6 solid !important;
}
.cascade--by-50 {
  border-top: 50px #95a5a6 solid !important;
  border-bottom: 50px #95a5a6 solid !important;
}
.cascade--bx-50 {
  border-right: 50px #95a5a6 solid !important;
  border-left: 50px #95a5a6 solid !important;
}
.cascade--ba-51 {
  border: 51px #95a5a6 solid !important;
}
.cascade--bt-51 {
  border-top: 51px #95a5a6 solid !important;
}
.cascade--br-51 {
  border-right: 51px #95a5a6 solid !important;
}
.cascade--bl-51 {
  border-left: 51px #95a5a6 solid !important;
}
.cascade--bb-51 {
  border-bottom: 51px #95a5a6 solid !important;
}
.cascade--by-51 {
  border-top: 51px #95a5a6 solid !important;
  border-bottom: 51px #95a5a6 solid !important;
}
.cascade--bx-51 {
  border-right: 51px #95a5a6 solid !important;
  border-left: 51px #95a5a6 solid !important;
}
.cascade--ba-52 {
  border: 52px #95a5a6 solid !important;
}
.cascade--bt-52 {
  border-top: 52px #95a5a6 solid !important;
}
.cascade--br-52 {
  border-right: 52px #95a5a6 solid !important;
}
.cascade--bl-52 {
  border-left: 52px #95a5a6 solid !important;
}
.cascade--bb-52 {
  border-bottom: 52px #95a5a6 solid !important;
}
.cascade--by-52 {
  border-top: 52px #95a5a6 solid !important;
  border-bottom: 52px #95a5a6 solid !important;
}
.cascade--bx-52 {
  border-right: 52px #95a5a6 solid !important;
  border-left: 52px #95a5a6 solid !important;
}
.cascade--ba-53 {
  border: 53px #95a5a6 solid !important;
}
.cascade--bt-53 {
  border-top: 53px #95a5a6 solid !important;
}
.cascade--br-53 {
  border-right: 53px #95a5a6 solid !important;
}
.cascade--bl-53 {
  border-left: 53px #95a5a6 solid !important;
}
.cascade--bb-53 {
  border-bottom: 53px #95a5a6 solid !important;
}
.cascade--by-53 {
  border-top: 53px #95a5a6 solid !important;
  border-bottom: 53px #95a5a6 solid !important;
}
.cascade--bx-53 {
  border-right: 53px #95a5a6 solid !important;
  border-left: 53px #95a5a6 solid !important;
}
.cascade--ba-54 {
  border: 54px #95a5a6 solid !important;
}
.cascade--bt-54 {
  border-top: 54px #95a5a6 solid !important;
}
.cascade--br-54 {
  border-right: 54px #95a5a6 solid !important;
}
.cascade--bl-54 {
  border-left: 54px #95a5a6 solid !important;
}
.cascade--bb-54 {
  border-bottom: 54px #95a5a6 solid !important;
}
.cascade--by-54 {
  border-top: 54px #95a5a6 solid !important;
  border-bottom: 54px #95a5a6 solid !important;
}
.cascade--bx-54 {
  border-right: 54px #95a5a6 solid !important;
  border-left: 54px #95a5a6 solid !important;
}
.cascade--ba-55 {
  border: 55px #95a5a6 solid !important;
}
.cascade--bt-55 {
  border-top: 55px #95a5a6 solid !important;
}
.cascade--br-55 {
  border-right: 55px #95a5a6 solid !important;
}
.cascade--bl-55 {
  border-left: 55px #95a5a6 solid !important;
}
.cascade--bb-55 {
  border-bottom: 55px #95a5a6 solid !important;
}
.cascade--by-55 {
  border-top: 55px #95a5a6 solid !important;
  border-bottom: 55px #95a5a6 solid !important;
}
.cascade--bx-55 {
  border-right: 55px #95a5a6 solid !important;
  border-left: 55px #95a5a6 solid !important;
}
.cascade--ba-56 {
  border: 56px #95a5a6 solid !important;
}
.cascade--bt-56 {
  border-top: 56px #95a5a6 solid !important;
}
.cascade--br-56 {
  border-right: 56px #95a5a6 solid !important;
}
.cascade--bl-56 {
  border-left: 56px #95a5a6 solid !important;
}
.cascade--bb-56 {
  border-bottom: 56px #95a5a6 solid !important;
}
.cascade--by-56 {
  border-top: 56px #95a5a6 solid !important;
  border-bottom: 56px #95a5a6 solid !important;
}
.cascade--bx-56 {
  border-right: 56px #95a5a6 solid !important;
  border-left: 56px #95a5a6 solid !important;
}
.cascade--ba-57 {
  border: 57px #95a5a6 solid !important;
}
.cascade--bt-57 {
  border-top: 57px #95a5a6 solid !important;
}
.cascade--br-57 {
  border-right: 57px #95a5a6 solid !important;
}
.cascade--bl-57 {
  border-left: 57px #95a5a6 solid !important;
}
.cascade--bb-57 {
  border-bottom: 57px #95a5a6 solid !important;
}
.cascade--by-57 {
  border-top: 57px #95a5a6 solid !important;
  border-bottom: 57px #95a5a6 solid !important;
}
.cascade--bx-57 {
  border-right: 57px #95a5a6 solid !important;
  border-left: 57px #95a5a6 solid !important;
}
.cascade--ba-58 {
  border: 58px #95a5a6 solid !important;
}
.cascade--bt-58 {
  border-top: 58px #95a5a6 solid !important;
}
.cascade--br-58 {
  border-right: 58px #95a5a6 solid !important;
}
.cascade--bl-58 {
  border-left: 58px #95a5a6 solid !important;
}
.cascade--bb-58 {
  border-bottom: 58px #95a5a6 solid !important;
}
.cascade--by-58 {
  border-top: 58px #95a5a6 solid !important;
  border-bottom: 58px #95a5a6 solid !important;
}
.cascade--bx-58 {
  border-right: 58px #95a5a6 solid !important;
  border-left: 58px #95a5a6 solid !important;
}
.cascade--ba-59 {
  border: 59px #95a5a6 solid !important;
}
.cascade--bt-59 {
  border-top: 59px #95a5a6 solid !important;
}
.cascade--br-59 {
  border-right: 59px #95a5a6 solid !important;
}
.cascade--bl-59 {
  border-left: 59px #95a5a6 solid !important;
}
.cascade--bb-59 {
  border-bottom: 59px #95a5a6 solid !important;
}
.cascade--by-59 {
  border-top: 59px #95a5a6 solid !important;
  border-bottom: 59px #95a5a6 solid !important;
}
.cascade--bx-59 {
  border-right: 59px #95a5a6 solid !important;
  border-left: 59px #95a5a6 solid !important;
}
.cascade--ba-60 {
  border: 60px #95a5a6 solid !important;
}
.cascade--bt-60 {
  border-top: 60px #95a5a6 solid !important;
}
.cascade--br-60 {
  border-right: 60px #95a5a6 solid !important;
}
.cascade--bl-60 {
  border-left: 60px #95a5a6 solid !important;
}
.cascade--bb-60 {
  border-bottom: 60px #95a5a6 solid !important;
}
.cascade--by-60 {
  border-top: 60px #95a5a6 solid !important;
  border-bottom: 60px #95a5a6 solid !important;
}
.cascade--bx-60 {
  border-right: 60px #95a5a6 solid !important;
  border-left: 60px #95a5a6 solid !important;
}
.cascade--ba-61 {
  border: 61px #95a5a6 solid !important;
}
.cascade--bt-61 {
  border-top: 61px #95a5a6 solid !important;
}
.cascade--br-61 {
  border-right: 61px #95a5a6 solid !important;
}
.cascade--bl-61 {
  border-left: 61px #95a5a6 solid !important;
}
.cascade--bb-61 {
  border-bottom: 61px #95a5a6 solid !important;
}
.cascade--by-61 {
  border-top: 61px #95a5a6 solid !important;
  border-bottom: 61px #95a5a6 solid !important;
}
.cascade--bx-61 {
  border-right: 61px #95a5a6 solid !important;
  border-left: 61px #95a5a6 solid !important;
}
.cascade--ba-62 {
  border: 62px #95a5a6 solid !important;
}
.cascade--bt-62 {
  border-top: 62px #95a5a6 solid !important;
}
.cascade--br-62 {
  border-right: 62px #95a5a6 solid !important;
}
.cascade--bl-62 {
  border-left: 62px #95a5a6 solid !important;
}
.cascade--bb-62 {
  border-bottom: 62px #95a5a6 solid !important;
}
.cascade--by-62 {
  border-top: 62px #95a5a6 solid !important;
  border-bottom: 62px #95a5a6 solid !important;
}
.cascade--bx-62 {
  border-right: 62px #95a5a6 solid !important;
  border-left: 62px #95a5a6 solid !important;
}
.cascade--ba-63 {
  border: 63px #95a5a6 solid !important;
}
.cascade--bt-63 {
  border-top: 63px #95a5a6 solid !important;
}
.cascade--br-63 {
  border-right: 63px #95a5a6 solid !important;
}
.cascade--bl-63 {
  border-left: 63px #95a5a6 solid !important;
}
.cascade--bb-63 {
  border-bottom: 63px #95a5a6 solid !important;
}
.cascade--by-63 {
  border-top: 63px #95a5a6 solid !important;
  border-bottom: 63px #95a5a6 solid !important;
}
.cascade--bx-63 {
  border-right: 63px #95a5a6 solid !important;
  border-left: 63px #95a5a6 solid !important;
}
.cascade--ba-64 {
  border: 64px #95a5a6 solid !important;
}
.cascade--bt-64 {
  border-top: 64px #95a5a6 solid !important;
}
.cascade--br-64 {
  border-right: 64px #95a5a6 solid !important;
}
.cascade--bl-64 {
  border-left: 64px #95a5a6 solid !important;
}
.cascade--bb-64 {
  border-bottom: 64px #95a5a6 solid !important;
}
.cascade--by-64 {
  border-top: 64px #95a5a6 solid !important;
  border-bottom: 64px #95a5a6 solid !important;
}
.cascade--bx-64 {
  border-right: 64px #95a5a6 solid !important;
  border-left: 64px #95a5a6 solid !important;
}
.cascade--ba-65 {
  border: 65px #95a5a6 solid !important;
}
.cascade--bt-65 {
  border-top: 65px #95a5a6 solid !important;
}
.cascade--br-65 {
  border-right: 65px #95a5a6 solid !important;
}
.cascade--bl-65 {
  border-left: 65px #95a5a6 solid !important;
}
.cascade--bb-65 {
  border-bottom: 65px #95a5a6 solid !important;
}
.cascade--by-65 {
  border-top: 65px #95a5a6 solid !important;
  border-bottom: 65px #95a5a6 solid !important;
}
.cascade--bx-65 {
  border-right: 65px #95a5a6 solid !important;
  border-left: 65px #95a5a6 solid !important;
}
.cascade--ba-66 {
  border: 66px #95a5a6 solid !important;
}
.cascade--bt-66 {
  border-top: 66px #95a5a6 solid !important;
}
.cascade--br-66 {
  border-right: 66px #95a5a6 solid !important;
}
.cascade--bl-66 {
  border-left: 66px #95a5a6 solid !important;
}
.cascade--bb-66 {
  border-bottom: 66px #95a5a6 solid !important;
}
.cascade--by-66 {
  border-top: 66px #95a5a6 solid !important;
  border-bottom: 66px #95a5a6 solid !important;
}
.cascade--bx-66 {
  border-right: 66px #95a5a6 solid !important;
  border-left: 66px #95a5a6 solid !important;
}
.cascade--ba-67 {
  border: 67px #95a5a6 solid !important;
}
.cascade--bt-67 {
  border-top: 67px #95a5a6 solid !important;
}
.cascade--br-67 {
  border-right: 67px #95a5a6 solid !important;
}
.cascade--bl-67 {
  border-left: 67px #95a5a6 solid !important;
}
.cascade--bb-67 {
  border-bottom: 67px #95a5a6 solid !important;
}
.cascade--by-67 {
  border-top: 67px #95a5a6 solid !important;
  border-bottom: 67px #95a5a6 solid !important;
}
.cascade--bx-67 {
  border-right: 67px #95a5a6 solid !important;
  border-left: 67px #95a5a6 solid !important;
}
.cascade--ba-68 {
  border: 68px #95a5a6 solid !important;
}
.cascade--bt-68 {
  border-top: 68px #95a5a6 solid !important;
}
.cascade--br-68 {
  border-right: 68px #95a5a6 solid !important;
}
.cascade--bl-68 {
  border-left: 68px #95a5a6 solid !important;
}
.cascade--bb-68 {
  border-bottom: 68px #95a5a6 solid !important;
}
.cascade--by-68 {
  border-top: 68px #95a5a6 solid !important;
  border-bottom: 68px #95a5a6 solid !important;
}
.cascade--bx-68 {
  border-right: 68px #95a5a6 solid !important;
  border-left: 68px #95a5a6 solid !important;
}
.cascade--ba-69 {
  border: 69px #95a5a6 solid !important;
}
.cascade--bt-69 {
  border-top: 69px #95a5a6 solid !important;
}
.cascade--br-69 {
  border-right: 69px #95a5a6 solid !important;
}
.cascade--bl-69 {
  border-left: 69px #95a5a6 solid !important;
}
.cascade--bb-69 {
  border-bottom: 69px #95a5a6 solid !important;
}
.cascade--by-69 {
  border-top: 69px #95a5a6 solid !important;
  border-bottom: 69px #95a5a6 solid !important;
}
.cascade--bx-69 {
  border-right: 69px #95a5a6 solid !important;
  border-left: 69px #95a5a6 solid !important;
}
.cascade--ba-70 {
  border: 70px #95a5a6 solid !important;
}
.cascade--bt-70 {
  border-top: 70px #95a5a6 solid !important;
}
.cascade--br-70 {
  border-right: 70px #95a5a6 solid !important;
}
.cascade--bl-70 {
  border-left: 70px #95a5a6 solid !important;
}
.cascade--bb-70 {
  border-bottom: 70px #95a5a6 solid !important;
}
.cascade--by-70 {
  border-top: 70px #95a5a6 solid !important;
  border-bottom: 70px #95a5a6 solid !important;
}
.cascade--bx-70 {
  border-right: 70px #95a5a6 solid !important;
  border-left: 70px #95a5a6 solid !important;
}
.cascade--ba-71 {
  border: 71px #95a5a6 solid !important;
}
.cascade--bt-71 {
  border-top: 71px #95a5a6 solid !important;
}
.cascade--br-71 {
  border-right: 71px #95a5a6 solid !important;
}
.cascade--bl-71 {
  border-left: 71px #95a5a6 solid !important;
}
.cascade--bb-71 {
  border-bottom: 71px #95a5a6 solid !important;
}
.cascade--by-71 {
  border-top: 71px #95a5a6 solid !important;
  border-bottom: 71px #95a5a6 solid !important;
}
.cascade--bx-71 {
  border-right: 71px #95a5a6 solid !important;
  border-left: 71px #95a5a6 solid !important;
}
.cascade--ba-72 {
  border: 72px #95a5a6 solid !important;
}
.cascade--bt-72 {
  border-top: 72px #95a5a6 solid !important;
}
.cascade--br-72 {
  border-right: 72px #95a5a6 solid !important;
}
.cascade--bl-72 {
  border-left: 72px #95a5a6 solid !important;
}
.cascade--bb-72 {
  border-bottom: 72px #95a5a6 solid !important;
}
.cascade--by-72 {
  border-top: 72px #95a5a6 solid !important;
  border-bottom: 72px #95a5a6 solid !important;
}
.cascade--bx-72 {
  border-right: 72px #95a5a6 solid !important;
  border-left: 72px #95a5a6 solid !important;
}
.cascade--ba-73 {
  border: 73px #95a5a6 solid !important;
}
.cascade--bt-73 {
  border-top: 73px #95a5a6 solid !important;
}
.cascade--br-73 {
  border-right: 73px #95a5a6 solid !important;
}
.cascade--bl-73 {
  border-left: 73px #95a5a6 solid !important;
}
.cascade--bb-73 {
  border-bottom: 73px #95a5a6 solid !important;
}
.cascade--by-73 {
  border-top: 73px #95a5a6 solid !important;
  border-bottom: 73px #95a5a6 solid !important;
}
.cascade--bx-73 {
  border-right: 73px #95a5a6 solid !important;
  border-left: 73px #95a5a6 solid !important;
}
.cascade--ba-74 {
  border: 74px #95a5a6 solid !important;
}
.cascade--bt-74 {
  border-top: 74px #95a5a6 solid !important;
}
.cascade--br-74 {
  border-right: 74px #95a5a6 solid !important;
}
.cascade--bl-74 {
  border-left: 74px #95a5a6 solid !important;
}
.cascade--bb-74 {
  border-bottom: 74px #95a5a6 solid !important;
}
.cascade--by-74 {
  border-top: 74px #95a5a6 solid !important;
  border-bottom: 74px #95a5a6 solid !important;
}
.cascade--bx-74 {
  border-right: 74px #95a5a6 solid !important;
  border-left: 74px #95a5a6 solid !important;
}
.cascade--ba-75 {
  border: 75px #95a5a6 solid !important;
}
.cascade--bt-75 {
  border-top: 75px #95a5a6 solid !important;
}
.cascade--br-75 {
  border-right: 75px #95a5a6 solid !important;
}
.cascade--bl-75 {
  border-left: 75px #95a5a6 solid !important;
}
.cascade--bb-75 {
  border-bottom: 75px #95a5a6 solid !important;
}
.cascade--by-75 {
  border-top: 75px #95a5a6 solid !important;
  border-bottom: 75px #95a5a6 solid !important;
}
.cascade--bx-75 {
  border-right: 75px #95a5a6 solid !important;
  border-left: 75px #95a5a6 solid !important;
}
.cascade--ba-76 {
  border: 76px #95a5a6 solid !important;
}
.cascade--bt-76 {
  border-top: 76px #95a5a6 solid !important;
}
.cascade--br-76 {
  border-right: 76px #95a5a6 solid !important;
}
.cascade--bl-76 {
  border-left: 76px #95a5a6 solid !important;
}
.cascade--bb-76 {
  border-bottom: 76px #95a5a6 solid !important;
}
.cascade--by-76 {
  border-top: 76px #95a5a6 solid !important;
  border-bottom: 76px #95a5a6 solid !important;
}
.cascade--bx-76 {
  border-right: 76px #95a5a6 solid !important;
  border-left: 76px #95a5a6 solid !important;
}
.cascade--ba-77 {
  border: 77px #95a5a6 solid !important;
}
.cascade--bt-77 {
  border-top: 77px #95a5a6 solid !important;
}
.cascade--br-77 {
  border-right: 77px #95a5a6 solid !important;
}
.cascade--bl-77 {
  border-left: 77px #95a5a6 solid !important;
}
.cascade--bb-77 {
  border-bottom: 77px #95a5a6 solid !important;
}
.cascade--by-77 {
  border-top: 77px #95a5a6 solid !important;
  border-bottom: 77px #95a5a6 solid !important;
}
.cascade--bx-77 {
  border-right: 77px #95a5a6 solid !important;
  border-left: 77px #95a5a6 solid !important;
}
.cascade--ba-78 {
  border: 78px #95a5a6 solid !important;
}
.cascade--bt-78 {
  border-top: 78px #95a5a6 solid !important;
}
.cascade--br-78 {
  border-right: 78px #95a5a6 solid !important;
}
.cascade--bl-78 {
  border-left: 78px #95a5a6 solid !important;
}
.cascade--bb-78 {
  border-bottom: 78px #95a5a6 solid !important;
}
.cascade--by-78 {
  border-top: 78px #95a5a6 solid !important;
  border-bottom: 78px #95a5a6 solid !important;
}
.cascade--bx-78 {
  border-right: 78px #95a5a6 solid !important;
  border-left: 78px #95a5a6 solid !important;
}
.cascade--ba-79 {
  border: 79px #95a5a6 solid !important;
}
.cascade--bt-79 {
  border-top: 79px #95a5a6 solid !important;
}
.cascade--br-79 {
  border-right: 79px #95a5a6 solid !important;
}
.cascade--bl-79 {
  border-left: 79px #95a5a6 solid !important;
}
.cascade--bb-79 {
  border-bottom: 79px #95a5a6 solid !important;
}
.cascade--by-79 {
  border-top: 79px #95a5a6 solid !important;
  border-bottom: 79px #95a5a6 solid !important;
}
.cascade--bx-79 {
  border-right: 79px #95a5a6 solid !important;
  border-left: 79px #95a5a6 solid !important;
}
.cascade--ba-80 {
  border: 80px #95a5a6 solid !important;
}
.cascade--bt-80 {
  border-top: 80px #95a5a6 solid !important;
}
.cascade--br-80 {
  border-right: 80px #95a5a6 solid !important;
}
.cascade--bl-80 {
  border-left: 80px #95a5a6 solid !important;
}
.cascade--bb-80 {
  border-bottom: 80px #95a5a6 solid !important;
}
.cascade--by-80 {
  border-top: 80px #95a5a6 solid !important;
  border-bottom: 80px #95a5a6 solid !important;
}
.cascade--bx-80 {
  border-right: 80px #95a5a6 solid !important;
  border-left: 80px #95a5a6 solid !important;
}
.cascade--ba-81 {
  border: 81px #95a5a6 solid !important;
}
.cascade--bt-81 {
  border-top: 81px #95a5a6 solid !important;
}
.cascade--br-81 {
  border-right: 81px #95a5a6 solid !important;
}
.cascade--bl-81 {
  border-left: 81px #95a5a6 solid !important;
}
.cascade--bb-81 {
  border-bottom: 81px #95a5a6 solid !important;
}
.cascade--by-81 {
  border-top: 81px #95a5a6 solid !important;
  border-bottom: 81px #95a5a6 solid !important;
}
.cascade--bx-81 {
  border-right: 81px #95a5a6 solid !important;
  border-left: 81px #95a5a6 solid !important;
}
.cascade--ba-82 {
  border: 82px #95a5a6 solid !important;
}
.cascade--bt-82 {
  border-top: 82px #95a5a6 solid !important;
}
.cascade--br-82 {
  border-right: 82px #95a5a6 solid !important;
}
.cascade--bl-82 {
  border-left: 82px #95a5a6 solid !important;
}
.cascade--bb-82 {
  border-bottom: 82px #95a5a6 solid !important;
}
.cascade--by-82 {
  border-top: 82px #95a5a6 solid !important;
  border-bottom: 82px #95a5a6 solid !important;
}
.cascade--bx-82 {
  border-right: 82px #95a5a6 solid !important;
  border-left: 82px #95a5a6 solid !important;
}
.cascade--ba-83 {
  border: 83px #95a5a6 solid !important;
}
.cascade--bt-83 {
  border-top: 83px #95a5a6 solid !important;
}
.cascade--br-83 {
  border-right: 83px #95a5a6 solid !important;
}
.cascade--bl-83 {
  border-left: 83px #95a5a6 solid !important;
}
.cascade--bb-83 {
  border-bottom: 83px #95a5a6 solid !important;
}
.cascade--by-83 {
  border-top: 83px #95a5a6 solid !important;
  border-bottom: 83px #95a5a6 solid !important;
}
.cascade--bx-83 {
  border-right: 83px #95a5a6 solid !important;
  border-left: 83px #95a5a6 solid !important;
}
.cascade--ba-84 {
  border: 84px #95a5a6 solid !important;
}
.cascade--bt-84 {
  border-top: 84px #95a5a6 solid !important;
}
.cascade--br-84 {
  border-right: 84px #95a5a6 solid !important;
}
.cascade--bl-84 {
  border-left: 84px #95a5a6 solid !important;
}
.cascade--bb-84 {
  border-bottom: 84px #95a5a6 solid !important;
}
.cascade--by-84 {
  border-top: 84px #95a5a6 solid !important;
  border-bottom: 84px #95a5a6 solid !important;
}
.cascade--bx-84 {
  border-right: 84px #95a5a6 solid !important;
  border-left: 84px #95a5a6 solid !important;
}
.cascade--ba-85 {
  border: 85px #95a5a6 solid !important;
}
.cascade--bt-85 {
  border-top: 85px #95a5a6 solid !important;
}
.cascade--br-85 {
  border-right: 85px #95a5a6 solid !important;
}
.cascade--bl-85 {
  border-left: 85px #95a5a6 solid !important;
}
.cascade--bb-85 {
  border-bottom: 85px #95a5a6 solid !important;
}
.cascade--by-85 {
  border-top: 85px #95a5a6 solid !important;
  border-bottom: 85px #95a5a6 solid !important;
}
.cascade--bx-85 {
  border-right: 85px #95a5a6 solid !important;
  border-left: 85px #95a5a6 solid !important;
}
.cascade--ba-86 {
  border: 86px #95a5a6 solid !important;
}
.cascade--bt-86 {
  border-top: 86px #95a5a6 solid !important;
}
.cascade--br-86 {
  border-right: 86px #95a5a6 solid !important;
}
.cascade--bl-86 {
  border-left: 86px #95a5a6 solid !important;
}
.cascade--bb-86 {
  border-bottom: 86px #95a5a6 solid !important;
}
.cascade--by-86 {
  border-top: 86px #95a5a6 solid !important;
  border-bottom: 86px #95a5a6 solid !important;
}
.cascade--bx-86 {
  border-right: 86px #95a5a6 solid !important;
  border-left: 86px #95a5a6 solid !important;
}
.cascade--ba-87 {
  border: 87px #95a5a6 solid !important;
}
.cascade--bt-87 {
  border-top: 87px #95a5a6 solid !important;
}
.cascade--br-87 {
  border-right: 87px #95a5a6 solid !important;
}
.cascade--bl-87 {
  border-left: 87px #95a5a6 solid !important;
}
.cascade--bb-87 {
  border-bottom: 87px #95a5a6 solid !important;
}
.cascade--by-87 {
  border-top: 87px #95a5a6 solid !important;
  border-bottom: 87px #95a5a6 solid !important;
}
.cascade--bx-87 {
  border-right: 87px #95a5a6 solid !important;
  border-left: 87px #95a5a6 solid !important;
}
.cascade--ba-88 {
  border: 88px #95a5a6 solid !important;
}
.cascade--bt-88 {
  border-top: 88px #95a5a6 solid !important;
}
.cascade--br-88 {
  border-right: 88px #95a5a6 solid !important;
}
.cascade--bl-88 {
  border-left: 88px #95a5a6 solid !important;
}
.cascade--bb-88 {
  border-bottom: 88px #95a5a6 solid !important;
}
.cascade--by-88 {
  border-top: 88px #95a5a6 solid !important;
  border-bottom: 88px #95a5a6 solid !important;
}
.cascade--bx-88 {
  border-right: 88px #95a5a6 solid !important;
  border-left: 88px #95a5a6 solid !important;
}
.cascade--ba-89 {
  border: 89px #95a5a6 solid !important;
}
.cascade--bt-89 {
  border-top: 89px #95a5a6 solid !important;
}
.cascade--br-89 {
  border-right: 89px #95a5a6 solid !important;
}
.cascade--bl-89 {
  border-left: 89px #95a5a6 solid !important;
}
.cascade--bb-89 {
  border-bottom: 89px #95a5a6 solid !important;
}
.cascade--by-89 {
  border-top: 89px #95a5a6 solid !important;
  border-bottom: 89px #95a5a6 solid !important;
}
.cascade--bx-89 {
  border-right: 89px #95a5a6 solid !important;
  border-left: 89px #95a5a6 solid !important;
}
.cascade--ba-90 {
  border: 90px #95a5a6 solid !important;
}
.cascade--bt-90 {
  border-top: 90px #95a5a6 solid !important;
}
.cascade--br-90 {
  border-right: 90px #95a5a6 solid !important;
}
.cascade--bl-90 {
  border-left: 90px #95a5a6 solid !important;
}
.cascade--bb-90 {
  border-bottom: 90px #95a5a6 solid !important;
}
.cascade--by-90 {
  border-top: 90px #95a5a6 solid !important;
  border-bottom: 90px #95a5a6 solid !important;
}
.cascade--bx-90 {
  border-right: 90px #95a5a6 solid !important;
  border-left: 90px #95a5a6 solid !important;
}
.cascade--ba-91 {
  border: 91px #95a5a6 solid !important;
}
.cascade--bt-91 {
  border-top: 91px #95a5a6 solid !important;
}
.cascade--br-91 {
  border-right: 91px #95a5a6 solid !important;
}
.cascade--bl-91 {
  border-left: 91px #95a5a6 solid !important;
}
.cascade--bb-91 {
  border-bottom: 91px #95a5a6 solid !important;
}
.cascade--by-91 {
  border-top: 91px #95a5a6 solid !important;
  border-bottom: 91px #95a5a6 solid !important;
}
.cascade--bx-91 {
  border-right: 91px #95a5a6 solid !important;
  border-left: 91px #95a5a6 solid !important;
}
.cascade--ba-92 {
  border: 92px #95a5a6 solid !important;
}
.cascade--bt-92 {
  border-top: 92px #95a5a6 solid !important;
}
.cascade--br-92 {
  border-right: 92px #95a5a6 solid !important;
}
.cascade--bl-92 {
  border-left: 92px #95a5a6 solid !important;
}
.cascade--bb-92 {
  border-bottom: 92px #95a5a6 solid !important;
}
.cascade--by-92 {
  border-top: 92px #95a5a6 solid !important;
  border-bottom: 92px #95a5a6 solid !important;
}
.cascade--bx-92 {
  border-right: 92px #95a5a6 solid !important;
  border-left: 92px #95a5a6 solid !important;
}
.cascade--ba-93 {
  border: 93px #95a5a6 solid !important;
}
.cascade--bt-93 {
  border-top: 93px #95a5a6 solid !important;
}
.cascade--br-93 {
  border-right: 93px #95a5a6 solid !important;
}
.cascade--bl-93 {
  border-left: 93px #95a5a6 solid !important;
}
.cascade--bb-93 {
  border-bottom: 93px #95a5a6 solid !important;
}
.cascade--by-93 {
  border-top: 93px #95a5a6 solid !important;
  border-bottom: 93px #95a5a6 solid !important;
}
.cascade--bx-93 {
  border-right: 93px #95a5a6 solid !important;
  border-left: 93px #95a5a6 solid !important;
}
.cascade--ba-94 {
  border: 94px #95a5a6 solid !important;
}
.cascade--bt-94 {
  border-top: 94px #95a5a6 solid !important;
}
.cascade--br-94 {
  border-right: 94px #95a5a6 solid !important;
}
.cascade--bl-94 {
  border-left: 94px #95a5a6 solid !important;
}
.cascade--bb-94 {
  border-bottom: 94px #95a5a6 solid !important;
}
.cascade--by-94 {
  border-top: 94px #95a5a6 solid !important;
  border-bottom: 94px #95a5a6 solid !important;
}
.cascade--bx-94 {
  border-right: 94px #95a5a6 solid !important;
  border-left: 94px #95a5a6 solid !important;
}
.cascade--ba-95 {
  border: 95px #95a5a6 solid !important;
}
.cascade--bt-95 {
  border-top: 95px #95a5a6 solid !important;
}
.cascade--br-95 {
  border-right: 95px #95a5a6 solid !important;
}
.cascade--bl-95 {
  border-left: 95px #95a5a6 solid !important;
}
.cascade--bb-95 {
  border-bottom: 95px #95a5a6 solid !important;
}
.cascade--by-95 {
  border-top: 95px #95a5a6 solid !important;
  border-bottom: 95px #95a5a6 solid !important;
}
.cascade--bx-95 {
  border-right: 95px #95a5a6 solid !important;
  border-left: 95px #95a5a6 solid !important;
}
.cascade--ba-96 {
  border: 96px #95a5a6 solid !important;
}
.cascade--bt-96 {
  border-top: 96px #95a5a6 solid !important;
}
.cascade--br-96 {
  border-right: 96px #95a5a6 solid !important;
}
.cascade--bl-96 {
  border-left: 96px #95a5a6 solid !important;
}
.cascade--bb-96 {
  border-bottom: 96px #95a5a6 solid !important;
}
.cascade--by-96 {
  border-top: 96px #95a5a6 solid !important;
  border-bottom: 96px #95a5a6 solid !important;
}
.cascade--bx-96 {
  border-right: 96px #95a5a6 solid !important;
  border-left: 96px #95a5a6 solid !important;
}
.cascade--ba-97 {
  border: 97px #95a5a6 solid !important;
}
.cascade--bt-97 {
  border-top: 97px #95a5a6 solid !important;
}
.cascade--br-97 {
  border-right: 97px #95a5a6 solid !important;
}
.cascade--bl-97 {
  border-left: 97px #95a5a6 solid !important;
}
.cascade--bb-97 {
  border-bottom: 97px #95a5a6 solid !important;
}
.cascade--by-97 {
  border-top: 97px #95a5a6 solid !important;
  border-bottom: 97px #95a5a6 solid !important;
}
.cascade--bx-97 {
  border-right: 97px #95a5a6 solid !important;
  border-left: 97px #95a5a6 solid !important;
}
.cascade--ba-98 {
  border: 98px #95a5a6 solid !important;
}
.cascade--bt-98 {
  border-top: 98px #95a5a6 solid !important;
}
.cascade--br-98 {
  border-right: 98px #95a5a6 solid !important;
}
.cascade--bl-98 {
  border-left: 98px #95a5a6 solid !important;
}
.cascade--bb-98 {
  border-bottom: 98px #95a5a6 solid !important;
}
.cascade--by-98 {
  border-top: 98px #95a5a6 solid !important;
  border-bottom: 98px #95a5a6 solid !important;
}
.cascade--bx-98 {
  border-right: 98px #95a5a6 solid !important;
  border-left: 98px #95a5a6 solid !important;
}
.cascade--ba-99 {
  border: 99px #95a5a6 solid !important;
}
.cascade--bt-99 {
  border-top: 99px #95a5a6 solid !important;
}
.cascade--br-99 {
  border-right: 99px #95a5a6 solid !important;
}
.cascade--bl-99 {
  border-left: 99px #95a5a6 solid !important;
}
.cascade--bb-99 {
  border-bottom: 99px #95a5a6 solid !important;
}
.cascade--by-99 {
  border-top: 99px #95a5a6 solid !important;
  border-bottom: 99px #95a5a6 solid !important;
}
.cascade--bx-99 {
  border-right: 99px #95a5a6 solid !important;
  border-left: 99px #95a5a6 solid !important;
}
.cascade--ba-100 {
  border: 100px #95a5a6 solid !important;
}
.cascade--bt-100 {
  border-top: 100px #95a5a6 solid !important;
}
.cascade--br-100 {
  border-right: 100px #95a5a6 solid !important;
}
.cascade--bl-100 {
  border-left: 100px #95a5a6 solid !important;
}
.cascade--bb-100 {
  border-bottom: 100px #95a5a6 solid !important;
}
.cascade--by-100 {
  border-top: 100px #95a5a6 solid !important;
  border-bottom: 100px #95a5a6 solid !important;
}
.cascade--bx-100 {
  border-right: 100px #95a5a6 solid !important;
  border-left: 100px #95a5a6 solid !important;
}
.sunset-orange--ba-1 {
  border: 1px #ff5050 solid !important;
}
.sunset-orange--bt-1 {
  border-top: 1px #ff5050 solid !important;
}
.sunset-orange--br-1 {
  border-right: 1px #ff5050 solid !important;
}
.sunset-orange--bl-1 {
  border-left: 1px #ff5050 solid !important;
}
.sunset-orange--bb-1 {
  border-bottom: 1px #ff5050 solid !important;
}
.sunset-orange--by-1 {
  border-top: 1px #ff5050 solid !important;
  border-bottom: 1px #ff5050 solid !important;
}
.sunset-orange--bx-1 {
  border-right: 1px #ff5050 solid !important;
  border-left: 1px #ff5050 solid !important;
}
.sunset-orange--ba-2 {
  border: 2px #ff5050 solid !important;
}
.sunset-orange--bt-2 {
  border-top: 2px #ff5050 solid !important;
}
.sunset-orange--br-2 {
  border-right: 2px #ff5050 solid !important;
}
.sunset-orange--bl-2 {
  border-left: 2px #ff5050 solid !important;
}
.sunset-orange--bb-2 {
  border-bottom: 2px #ff5050 solid !important;
}
.sunset-orange--by-2 {
  border-top: 2px #ff5050 solid !important;
  border-bottom: 2px #ff5050 solid !important;
}
.sunset-orange--bx-2 {
  border-right: 2px #ff5050 solid !important;
  border-left: 2px #ff5050 solid !important;
}
.sunset-orange--ba-3 {
  border: 3px #ff5050 solid !important;
}
.sunset-orange--bt-3 {
  border-top: 3px #ff5050 solid !important;
}
.sunset-orange--br-3 {
  border-right: 3px #ff5050 solid !important;
}
.sunset-orange--bl-3 {
  border-left: 3px #ff5050 solid !important;
}
.sunset-orange--bb-3 {
  border-bottom: 3px #ff5050 solid !important;
}
.sunset-orange--by-3 {
  border-top: 3px #ff5050 solid !important;
  border-bottom: 3px #ff5050 solid !important;
}
.sunset-orange--bx-3 {
  border-right: 3px #ff5050 solid !important;
  border-left: 3px #ff5050 solid !important;
}
.sunset-orange--ba-4 {
  border: 4px #ff5050 solid !important;
}
.sunset-orange--bt-4 {
  border-top: 4px #ff5050 solid !important;
}
.sunset-orange--br-4 {
  border-right: 4px #ff5050 solid !important;
}
.sunset-orange--bl-4 {
  border-left: 4px #ff5050 solid !important;
}
.sunset-orange--bb-4 {
  border-bottom: 4px #ff5050 solid !important;
}
.sunset-orange--by-4 {
  border-top: 4px #ff5050 solid !important;
  border-bottom: 4px #ff5050 solid !important;
}
.sunset-orange--bx-4 {
  border-right: 4px #ff5050 solid !important;
  border-left: 4px #ff5050 solid !important;
}
.sunset-orange--ba-5 {
  border: 5px #ff5050 solid !important;
}
.sunset-orange--bt-5 {
  border-top: 5px #ff5050 solid !important;
}
.sunset-orange--br-5 {
  border-right: 5px #ff5050 solid !important;
}
.sunset-orange--bl-5 {
  border-left: 5px #ff5050 solid !important;
}
.sunset-orange--bb-5 {
  border-bottom: 5px #ff5050 solid !important;
}
.sunset-orange--by-5 {
  border-top: 5px #ff5050 solid !important;
  border-bottom: 5px #ff5050 solid !important;
}
.sunset-orange--bx-5 {
  border-right: 5px #ff5050 solid !important;
  border-left: 5px #ff5050 solid !important;
}
.sunset-orange--ba-6 {
  border: 6px #ff5050 solid !important;
}
.sunset-orange--bt-6 {
  border-top: 6px #ff5050 solid !important;
}
.sunset-orange--br-6 {
  border-right: 6px #ff5050 solid !important;
}
.sunset-orange--bl-6 {
  border-left: 6px #ff5050 solid !important;
}
.sunset-orange--bb-6 {
  border-bottom: 6px #ff5050 solid !important;
}
.sunset-orange--by-6 {
  border-top: 6px #ff5050 solid !important;
  border-bottom: 6px #ff5050 solid !important;
}
.sunset-orange--bx-6 {
  border-right: 6px #ff5050 solid !important;
  border-left: 6px #ff5050 solid !important;
}
.sunset-orange--ba-7 {
  border: 7px #ff5050 solid !important;
}
.sunset-orange--bt-7 {
  border-top: 7px #ff5050 solid !important;
}
.sunset-orange--br-7 {
  border-right: 7px #ff5050 solid !important;
}
.sunset-orange--bl-7 {
  border-left: 7px #ff5050 solid !important;
}
.sunset-orange--bb-7 {
  border-bottom: 7px #ff5050 solid !important;
}
.sunset-orange--by-7 {
  border-top: 7px #ff5050 solid !important;
  border-bottom: 7px #ff5050 solid !important;
}
.sunset-orange--bx-7 {
  border-right: 7px #ff5050 solid !important;
  border-left: 7px #ff5050 solid !important;
}
.sunset-orange--ba-8 {
  border: 8px #ff5050 solid !important;
}
.sunset-orange--bt-8 {
  border-top: 8px #ff5050 solid !important;
}
.sunset-orange--br-8 {
  border-right: 8px #ff5050 solid !important;
}
.sunset-orange--bl-8 {
  border-left: 8px #ff5050 solid !important;
}
.sunset-orange--bb-8 {
  border-bottom: 8px #ff5050 solid !important;
}
.sunset-orange--by-8 {
  border-top: 8px #ff5050 solid !important;
  border-bottom: 8px #ff5050 solid !important;
}
.sunset-orange--bx-8 {
  border-right: 8px #ff5050 solid !important;
  border-left: 8px #ff5050 solid !important;
}
.sunset-orange--ba-9 {
  border: 9px #ff5050 solid !important;
}
.sunset-orange--bt-9 {
  border-top: 9px #ff5050 solid !important;
}
.sunset-orange--br-9 {
  border-right: 9px #ff5050 solid !important;
}
.sunset-orange--bl-9 {
  border-left: 9px #ff5050 solid !important;
}
.sunset-orange--bb-9 {
  border-bottom: 9px #ff5050 solid !important;
}
.sunset-orange--by-9 {
  border-top: 9px #ff5050 solid !important;
  border-bottom: 9px #ff5050 solid !important;
}
.sunset-orange--bx-9 {
  border-right: 9px #ff5050 solid !important;
  border-left: 9px #ff5050 solid !important;
}
.sunset-orange--ba-10 {
  border: 10px #ff5050 solid !important;
}
.sunset-orange--bt-10 {
  border-top: 10px #ff5050 solid !important;
}
.sunset-orange--br-10 {
  border-right: 10px #ff5050 solid !important;
}
.sunset-orange--bl-10 {
  border-left: 10px #ff5050 solid !important;
}
.sunset-orange--bb-10 {
  border-bottom: 10px #ff5050 solid !important;
}
.sunset-orange--by-10 {
  border-top: 10px #ff5050 solid !important;
  border-bottom: 10px #ff5050 solid !important;
}
.sunset-orange--bx-10 {
  border-right: 10px #ff5050 solid !important;
  border-left: 10px #ff5050 solid !important;
}
.sunset-orange--ba-11 {
  border: 11px #ff5050 solid !important;
}
.sunset-orange--bt-11 {
  border-top: 11px #ff5050 solid !important;
}
.sunset-orange--br-11 {
  border-right: 11px #ff5050 solid !important;
}
.sunset-orange--bl-11 {
  border-left: 11px #ff5050 solid !important;
}
.sunset-orange--bb-11 {
  border-bottom: 11px #ff5050 solid !important;
}
.sunset-orange--by-11 {
  border-top: 11px #ff5050 solid !important;
  border-bottom: 11px #ff5050 solid !important;
}
.sunset-orange--bx-11 {
  border-right: 11px #ff5050 solid !important;
  border-left: 11px #ff5050 solid !important;
}
.sunset-orange--ba-12 {
  border: 12px #ff5050 solid !important;
}
.sunset-orange--bt-12 {
  border-top: 12px #ff5050 solid !important;
}
.sunset-orange--br-12 {
  border-right: 12px #ff5050 solid !important;
}
.sunset-orange--bl-12 {
  border-left: 12px #ff5050 solid !important;
}
.sunset-orange--bb-12 {
  border-bottom: 12px #ff5050 solid !important;
}
.sunset-orange--by-12 {
  border-top: 12px #ff5050 solid !important;
  border-bottom: 12px #ff5050 solid !important;
}
.sunset-orange--bx-12 {
  border-right: 12px #ff5050 solid !important;
  border-left: 12px #ff5050 solid !important;
}
.sunset-orange--ba-13 {
  border: 13px #ff5050 solid !important;
}
.sunset-orange--bt-13 {
  border-top: 13px #ff5050 solid !important;
}
.sunset-orange--br-13 {
  border-right: 13px #ff5050 solid !important;
}
.sunset-orange--bl-13 {
  border-left: 13px #ff5050 solid !important;
}
.sunset-orange--bb-13 {
  border-bottom: 13px #ff5050 solid !important;
}
.sunset-orange--by-13 {
  border-top: 13px #ff5050 solid !important;
  border-bottom: 13px #ff5050 solid !important;
}
.sunset-orange--bx-13 {
  border-right: 13px #ff5050 solid !important;
  border-left: 13px #ff5050 solid !important;
}
.sunset-orange--ba-14 {
  border: 14px #ff5050 solid !important;
}
.sunset-orange--bt-14 {
  border-top: 14px #ff5050 solid !important;
}
.sunset-orange--br-14 {
  border-right: 14px #ff5050 solid !important;
}
.sunset-orange--bl-14 {
  border-left: 14px #ff5050 solid !important;
}
.sunset-orange--bb-14 {
  border-bottom: 14px #ff5050 solid !important;
}
.sunset-orange--by-14 {
  border-top: 14px #ff5050 solid !important;
  border-bottom: 14px #ff5050 solid !important;
}
.sunset-orange--bx-14 {
  border-right: 14px #ff5050 solid !important;
  border-left: 14px #ff5050 solid !important;
}
.sunset-orange--ba-15 {
  border: 15px #ff5050 solid !important;
}
.sunset-orange--bt-15 {
  border-top: 15px #ff5050 solid !important;
}
.sunset-orange--br-15 {
  border-right: 15px #ff5050 solid !important;
}
.sunset-orange--bl-15 {
  border-left: 15px #ff5050 solid !important;
}
.sunset-orange--bb-15 {
  border-bottom: 15px #ff5050 solid !important;
}
.sunset-orange--by-15 {
  border-top: 15px #ff5050 solid !important;
  border-bottom: 15px #ff5050 solid !important;
}
.sunset-orange--bx-15 {
  border-right: 15px #ff5050 solid !important;
  border-left: 15px #ff5050 solid !important;
}
.sunset-orange--ba-16 {
  border: 16px #ff5050 solid !important;
}
.sunset-orange--bt-16 {
  border-top: 16px #ff5050 solid !important;
}
.sunset-orange--br-16 {
  border-right: 16px #ff5050 solid !important;
}
.sunset-orange--bl-16 {
  border-left: 16px #ff5050 solid !important;
}
.sunset-orange--bb-16 {
  border-bottom: 16px #ff5050 solid !important;
}
.sunset-orange--by-16 {
  border-top: 16px #ff5050 solid !important;
  border-bottom: 16px #ff5050 solid !important;
}
.sunset-orange--bx-16 {
  border-right: 16px #ff5050 solid !important;
  border-left: 16px #ff5050 solid !important;
}
.sunset-orange--ba-17 {
  border: 17px #ff5050 solid !important;
}
.sunset-orange--bt-17 {
  border-top: 17px #ff5050 solid !important;
}
.sunset-orange--br-17 {
  border-right: 17px #ff5050 solid !important;
}
.sunset-orange--bl-17 {
  border-left: 17px #ff5050 solid !important;
}
.sunset-orange--bb-17 {
  border-bottom: 17px #ff5050 solid !important;
}
.sunset-orange--by-17 {
  border-top: 17px #ff5050 solid !important;
  border-bottom: 17px #ff5050 solid !important;
}
.sunset-orange--bx-17 {
  border-right: 17px #ff5050 solid !important;
  border-left: 17px #ff5050 solid !important;
}
.sunset-orange--ba-18 {
  border: 18px #ff5050 solid !important;
}
.sunset-orange--bt-18 {
  border-top: 18px #ff5050 solid !important;
}
.sunset-orange--br-18 {
  border-right: 18px #ff5050 solid !important;
}
.sunset-orange--bl-18 {
  border-left: 18px #ff5050 solid !important;
}
.sunset-orange--bb-18 {
  border-bottom: 18px #ff5050 solid !important;
}
.sunset-orange--by-18 {
  border-top: 18px #ff5050 solid !important;
  border-bottom: 18px #ff5050 solid !important;
}
.sunset-orange--bx-18 {
  border-right: 18px #ff5050 solid !important;
  border-left: 18px #ff5050 solid !important;
}
.sunset-orange--ba-19 {
  border: 19px #ff5050 solid !important;
}
.sunset-orange--bt-19 {
  border-top: 19px #ff5050 solid !important;
}
.sunset-orange--br-19 {
  border-right: 19px #ff5050 solid !important;
}
.sunset-orange--bl-19 {
  border-left: 19px #ff5050 solid !important;
}
.sunset-orange--bb-19 {
  border-bottom: 19px #ff5050 solid !important;
}
.sunset-orange--by-19 {
  border-top: 19px #ff5050 solid !important;
  border-bottom: 19px #ff5050 solid !important;
}
.sunset-orange--bx-19 {
  border-right: 19px #ff5050 solid !important;
  border-left: 19px #ff5050 solid !important;
}
.sunset-orange--ba-20 {
  border: 20px #ff5050 solid !important;
}
.sunset-orange--bt-20 {
  border-top: 20px #ff5050 solid !important;
}
.sunset-orange--br-20 {
  border-right: 20px #ff5050 solid !important;
}
.sunset-orange--bl-20 {
  border-left: 20px #ff5050 solid !important;
}
.sunset-orange--bb-20 {
  border-bottom: 20px #ff5050 solid !important;
}
.sunset-orange--by-20 {
  border-top: 20px #ff5050 solid !important;
  border-bottom: 20px #ff5050 solid !important;
}
.sunset-orange--bx-20 {
  border-right: 20px #ff5050 solid !important;
  border-left: 20px #ff5050 solid !important;
}
.sunset-orange--ba-21 {
  border: 21px #ff5050 solid !important;
}
.sunset-orange--bt-21 {
  border-top: 21px #ff5050 solid !important;
}
.sunset-orange--br-21 {
  border-right: 21px #ff5050 solid !important;
}
.sunset-orange--bl-21 {
  border-left: 21px #ff5050 solid !important;
}
.sunset-orange--bb-21 {
  border-bottom: 21px #ff5050 solid !important;
}
.sunset-orange--by-21 {
  border-top: 21px #ff5050 solid !important;
  border-bottom: 21px #ff5050 solid !important;
}
.sunset-orange--bx-21 {
  border-right: 21px #ff5050 solid !important;
  border-left: 21px #ff5050 solid !important;
}
.sunset-orange--ba-22 {
  border: 22px #ff5050 solid !important;
}
.sunset-orange--bt-22 {
  border-top: 22px #ff5050 solid !important;
}
.sunset-orange--br-22 {
  border-right: 22px #ff5050 solid !important;
}
.sunset-orange--bl-22 {
  border-left: 22px #ff5050 solid !important;
}
.sunset-orange--bb-22 {
  border-bottom: 22px #ff5050 solid !important;
}
.sunset-orange--by-22 {
  border-top: 22px #ff5050 solid !important;
  border-bottom: 22px #ff5050 solid !important;
}
.sunset-orange--bx-22 {
  border-right: 22px #ff5050 solid !important;
  border-left: 22px #ff5050 solid !important;
}
.sunset-orange--ba-23 {
  border: 23px #ff5050 solid !important;
}
.sunset-orange--bt-23 {
  border-top: 23px #ff5050 solid !important;
}
.sunset-orange--br-23 {
  border-right: 23px #ff5050 solid !important;
}
.sunset-orange--bl-23 {
  border-left: 23px #ff5050 solid !important;
}
.sunset-orange--bb-23 {
  border-bottom: 23px #ff5050 solid !important;
}
.sunset-orange--by-23 {
  border-top: 23px #ff5050 solid !important;
  border-bottom: 23px #ff5050 solid !important;
}
.sunset-orange--bx-23 {
  border-right: 23px #ff5050 solid !important;
  border-left: 23px #ff5050 solid !important;
}
.sunset-orange--ba-24 {
  border: 24px #ff5050 solid !important;
}
.sunset-orange--bt-24 {
  border-top: 24px #ff5050 solid !important;
}
.sunset-orange--br-24 {
  border-right: 24px #ff5050 solid !important;
}
.sunset-orange--bl-24 {
  border-left: 24px #ff5050 solid !important;
}
.sunset-orange--bb-24 {
  border-bottom: 24px #ff5050 solid !important;
}
.sunset-orange--by-24 {
  border-top: 24px #ff5050 solid !important;
  border-bottom: 24px #ff5050 solid !important;
}
.sunset-orange--bx-24 {
  border-right: 24px #ff5050 solid !important;
  border-left: 24px #ff5050 solid !important;
}
.sunset-orange--ba-25 {
  border: 25px #ff5050 solid !important;
}
.sunset-orange--bt-25 {
  border-top: 25px #ff5050 solid !important;
}
.sunset-orange--br-25 {
  border-right: 25px #ff5050 solid !important;
}
.sunset-orange--bl-25 {
  border-left: 25px #ff5050 solid !important;
}
.sunset-orange--bb-25 {
  border-bottom: 25px #ff5050 solid !important;
}
.sunset-orange--by-25 {
  border-top: 25px #ff5050 solid !important;
  border-bottom: 25px #ff5050 solid !important;
}
.sunset-orange--bx-25 {
  border-right: 25px #ff5050 solid !important;
  border-left: 25px #ff5050 solid !important;
}
.sunset-orange--ba-26 {
  border: 26px #ff5050 solid !important;
}
.sunset-orange--bt-26 {
  border-top: 26px #ff5050 solid !important;
}
.sunset-orange--br-26 {
  border-right: 26px #ff5050 solid !important;
}
.sunset-orange--bl-26 {
  border-left: 26px #ff5050 solid !important;
}
.sunset-orange--bb-26 {
  border-bottom: 26px #ff5050 solid !important;
}
.sunset-orange--by-26 {
  border-top: 26px #ff5050 solid !important;
  border-bottom: 26px #ff5050 solid !important;
}
.sunset-orange--bx-26 {
  border-right: 26px #ff5050 solid !important;
  border-left: 26px #ff5050 solid !important;
}
.sunset-orange--ba-27 {
  border: 27px #ff5050 solid !important;
}
.sunset-orange--bt-27 {
  border-top: 27px #ff5050 solid !important;
}
.sunset-orange--br-27 {
  border-right: 27px #ff5050 solid !important;
}
.sunset-orange--bl-27 {
  border-left: 27px #ff5050 solid !important;
}
.sunset-orange--bb-27 {
  border-bottom: 27px #ff5050 solid !important;
}
.sunset-orange--by-27 {
  border-top: 27px #ff5050 solid !important;
  border-bottom: 27px #ff5050 solid !important;
}
.sunset-orange--bx-27 {
  border-right: 27px #ff5050 solid !important;
  border-left: 27px #ff5050 solid !important;
}
.sunset-orange--ba-28 {
  border: 28px #ff5050 solid !important;
}
.sunset-orange--bt-28 {
  border-top: 28px #ff5050 solid !important;
}
.sunset-orange--br-28 {
  border-right: 28px #ff5050 solid !important;
}
.sunset-orange--bl-28 {
  border-left: 28px #ff5050 solid !important;
}
.sunset-orange--bb-28 {
  border-bottom: 28px #ff5050 solid !important;
}
.sunset-orange--by-28 {
  border-top: 28px #ff5050 solid !important;
  border-bottom: 28px #ff5050 solid !important;
}
.sunset-orange--bx-28 {
  border-right: 28px #ff5050 solid !important;
  border-left: 28px #ff5050 solid !important;
}
.sunset-orange--ba-29 {
  border: 29px #ff5050 solid !important;
}
.sunset-orange--bt-29 {
  border-top: 29px #ff5050 solid !important;
}
.sunset-orange--br-29 {
  border-right: 29px #ff5050 solid !important;
}
.sunset-orange--bl-29 {
  border-left: 29px #ff5050 solid !important;
}
.sunset-orange--bb-29 {
  border-bottom: 29px #ff5050 solid !important;
}
.sunset-orange--by-29 {
  border-top: 29px #ff5050 solid !important;
  border-bottom: 29px #ff5050 solid !important;
}
.sunset-orange--bx-29 {
  border-right: 29px #ff5050 solid !important;
  border-left: 29px #ff5050 solid !important;
}
.sunset-orange--ba-30 {
  border: 30px #ff5050 solid !important;
}
.sunset-orange--bt-30 {
  border-top: 30px #ff5050 solid !important;
}
.sunset-orange--br-30 {
  border-right: 30px #ff5050 solid !important;
}
.sunset-orange--bl-30 {
  border-left: 30px #ff5050 solid !important;
}
.sunset-orange--bb-30 {
  border-bottom: 30px #ff5050 solid !important;
}
.sunset-orange--by-30 {
  border-top: 30px #ff5050 solid !important;
  border-bottom: 30px #ff5050 solid !important;
}
.sunset-orange--bx-30 {
  border-right: 30px #ff5050 solid !important;
  border-left: 30px #ff5050 solid !important;
}
.sunset-orange--ba-31 {
  border: 31px #ff5050 solid !important;
}
.sunset-orange--bt-31 {
  border-top: 31px #ff5050 solid !important;
}
.sunset-orange--br-31 {
  border-right: 31px #ff5050 solid !important;
}
.sunset-orange--bl-31 {
  border-left: 31px #ff5050 solid !important;
}
.sunset-orange--bb-31 {
  border-bottom: 31px #ff5050 solid !important;
}
.sunset-orange--by-31 {
  border-top: 31px #ff5050 solid !important;
  border-bottom: 31px #ff5050 solid !important;
}
.sunset-orange--bx-31 {
  border-right: 31px #ff5050 solid !important;
  border-left: 31px #ff5050 solid !important;
}
.sunset-orange--ba-32 {
  border: 32px #ff5050 solid !important;
}
.sunset-orange--bt-32 {
  border-top: 32px #ff5050 solid !important;
}
.sunset-orange--br-32 {
  border-right: 32px #ff5050 solid !important;
}
.sunset-orange--bl-32 {
  border-left: 32px #ff5050 solid !important;
}
.sunset-orange--bb-32 {
  border-bottom: 32px #ff5050 solid !important;
}
.sunset-orange--by-32 {
  border-top: 32px #ff5050 solid !important;
  border-bottom: 32px #ff5050 solid !important;
}
.sunset-orange--bx-32 {
  border-right: 32px #ff5050 solid !important;
  border-left: 32px #ff5050 solid !important;
}
.sunset-orange--ba-33 {
  border: 33px #ff5050 solid !important;
}
.sunset-orange--bt-33 {
  border-top: 33px #ff5050 solid !important;
}
.sunset-orange--br-33 {
  border-right: 33px #ff5050 solid !important;
}
.sunset-orange--bl-33 {
  border-left: 33px #ff5050 solid !important;
}
.sunset-orange--bb-33 {
  border-bottom: 33px #ff5050 solid !important;
}
.sunset-orange--by-33 {
  border-top: 33px #ff5050 solid !important;
  border-bottom: 33px #ff5050 solid !important;
}
.sunset-orange--bx-33 {
  border-right: 33px #ff5050 solid !important;
  border-left: 33px #ff5050 solid !important;
}
.sunset-orange--ba-34 {
  border: 34px #ff5050 solid !important;
}
.sunset-orange--bt-34 {
  border-top: 34px #ff5050 solid !important;
}
.sunset-orange--br-34 {
  border-right: 34px #ff5050 solid !important;
}
.sunset-orange--bl-34 {
  border-left: 34px #ff5050 solid !important;
}
.sunset-orange--bb-34 {
  border-bottom: 34px #ff5050 solid !important;
}
.sunset-orange--by-34 {
  border-top: 34px #ff5050 solid !important;
  border-bottom: 34px #ff5050 solid !important;
}
.sunset-orange--bx-34 {
  border-right: 34px #ff5050 solid !important;
  border-left: 34px #ff5050 solid !important;
}
.sunset-orange--ba-35 {
  border: 35px #ff5050 solid !important;
}
.sunset-orange--bt-35 {
  border-top: 35px #ff5050 solid !important;
}
.sunset-orange--br-35 {
  border-right: 35px #ff5050 solid !important;
}
.sunset-orange--bl-35 {
  border-left: 35px #ff5050 solid !important;
}
.sunset-orange--bb-35 {
  border-bottom: 35px #ff5050 solid !important;
}
.sunset-orange--by-35 {
  border-top: 35px #ff5050 solid !important;
  border-bottom: 35px #ff5050 solid !important;
}
.sunset-orange--bx-35 {
  border-right: 35px #ff5050 solid !important;
  border-left: 35px #ff5050 solid !important;
}
.sunset-orange--ba-36 {
  border: 36px #ff5050 solid !important;
}
.sunset-orange--bt-36 {
  border-top: 36px #ff5050 solid !important;
}
.sunset-orange--br-36 {
  border-right: 36px #ff5050 solid !important;
}
.sunset-orange--bl-36 {
  border-left: 36px #ff5050 solid !important;
}
.sunset-orange--bb-36 {
  border-bottom: 36px #ff5050 solid !important;
}
.sunset-orange--by-36 {
  border-top: 36px #ff5050 solid !important;
  border-bottom: 36px #ff5050 solid !important;
}
.sunset-orange--bx-36 {
  border-right: 36px #ff5050 solid !important;
  border-left: 36px #ff5050 solid !important;
}
.sunset-orange--ba-37 {
  border: 37px #ff5050 solid !important;
}
.sunset-orange--bt-37 {
  border-top: 37px #ff5050 solid !important;
}
.sunset-orange--br-37 {
  border-right: 37px #ff5050 solid !important;
}
.sunset-orange--bl-37 {
  border-left: 37px #ff5050 solid !important;
}
.sunset-orange--bb-37 {
  border-bottom: 37px #ff5050 solid !important;
}
.sunset-orange--by-37 {
  border-top: 37px #ff5050 solid !important;
  border-bottom: 37px #ff5050 solid !important;
}
.sunset-orange--bx-37 {
  border-right: 37px #ff5050 solid !important;
  border-left: 37px #ff5050 solid !important;
}
.sunset-orange--ba-38 {
  border: 38px #ff5050 solid !important;
}
.sunset-orange--bt-38 {
  border-top: 38px #ff5050 solid !important;
}
.sunset-orange--br-38 {
  border-right: 38px #ff5050 solid !important;
}
.sunset-orange--bl-38 {
  border-left: 38px #ff5050 solid !important;
}
.sunset-orange--bb-38 {
  border-bottom: 38px #ff5050 solid !important;
}
.sunset-orange--by-38 {
  border-top: 38px #ff5050 solid !important;
  border-bottom: 38px #ff5050 solid !important;
}
.sunset-orange--bx-38 {
  border-right: 38px #ff5050 solid !important;
  border-left: 38px #ff5050 solid !important;
}
.sunset-orange--ba-39 {
  border: 39px #ff5050 solid !important;
}
.sunset-orange--bt-39 {
  border-top: 39px #ff5050 solid !important;
}
.sunset-orange--br-39 {
  border-right: 39px #ff5050 solid !important;
}
.sunset-orange--bl-39 {
  border-left: 39px #ff5050 solid !important;
}
.sunset-orange--bb-39 {
  border-bottom: 39px #ff5050 solid !important;
}
.sunset-orange--by-39 {
  border-top: 39px #ff5050 solid !important;
  border-bottom: 39px #ff5050 solid !important;
}
.sunset-orange--bx-39 {
  border-right: 39px #ff5050 solid !important;
  border-left: 39px #ff5050 solid !important;
}
.sunset-orange--ba-40 {
  border: 40px #ff5050 solid !important;
}
.sunset-orange--bt-40 {
  border-top: 40px #ff5050 solid !important;
}
.sunset-orange--br-40 {
  border-right: 40px #ff5050 solid !important;
}
.sunset-orange--bl-40 {
  border-left: 40px #ff5050 solid !important;
}
.sunset-orange--bb-40 {
  border-bottom: 40px #ff5050 solid !important;
}
.sunset-orange--by-40 {
  border-top: 40px #ff5050 solid !important;
  border-bottom: 40px #ff5050 solid !important;
}
.sunset-orange--bx-40 {
  border-right: 40px #ff5050 solid !important;
  border-left: 40px #ff5050 solid !important;
}
.sunset-orange--ba-41 {
  border: 41px #ff5050 solid !important;
}
.sunset-orange--bt-41 {
  border-top: 41px #ff5050 solid !important;
}
.sunset-orange--br-41 {
  border-right: 41px #ff5050 solid !important;
}
.sunset-orange--bl-41 {
  border-left: 41px #ff5050 solid !important;
}
.sunset-orange--bb-41 {
  border-bottom: 41px #ff5050 solid !important;
}
.sunset-orange--by-41 {
  border-top: 41px #ff5050 solid !important;
  border-bottom: 41px #ff5050 solid !important;
}
.sunset-orange--bx-41 {
  border-right: 41px #ff5050 solid !important;
  border-left: 41px #ff5050 solid !important;
}
.sunset-orange--ba-42 {
  border: 42px #ff5050 solid !important;
}
.sunset-orange--bt-42 {
  border-top: 42px #ff5050 solid !important;
}
.sunset-orange--br-42 {
  border-right: 42px #ff5050 solid !important;
}
.sunset-orange--bl-42 {
  border-left: 42px #ff5050 solid !important;
}
.sunset-orange--bb-42 {
  border-bottom: 42px #ff5050 solid !important;
}
.sunset-orange--by-42 {
  border-top: 42px #ff5050 solid !important;
  border-bottom: 42px #ff5050 solid !important;
}
.sunset-orange--bx-42 {
  border-right: 42px #ff5050 solid !important;
  border-left: 42px #ff5050 solid !important;
}
.sunset-orange--ba-43 {
  border: 43px #ff5050 solid !important;
}
.sunset-orange--bt-43 {
  border-top: 43px #ff5050 solid !important;
}
.sunset-orange--br-43 {
  border-right: 43px #ff5050 solid !important;
}
.sunset-orange--bl-43 {
  border-left: 43px #ff5050 solid !important;
}
.sunset-orange--bb-43 {
  border-bottom: 43px #ff5050 solid !important;
}
.sunset-orange--by-43 {
  border-top: 43px #ff5050 solid !important;
  border-bottom: 43px #ff5050 solid !important;
}
.sunset-orange--bx-43 {
  border-right: 43px #ff5050 solid !important;
  border-left: 43px #ff5050 solid !important;
}
.sunset-orange--ba-44 {
  border: 44px #ff5050 solid !important;
}
.sunset-orange--bt-44 {
  border-top: 44px #ff5050 solid !important;
}
.sunset-orange--br-44 {
  border-right: 44px #ff5050 solid !important;
}
.sunset-orange--bl-44 {
  border-left: 44px #ff5050 solid !important;
}
.sunset-orange--bb-44 {
  border-bottom: 44px #ff5050 solid !important;
}
.sunset-orange--by-44 {
  border-top: 44px #ff5050 solid !important;
  border-bottom: 44px #ff5050 solid !important;
}
.sunset-orange--bx-44 {
  border-right: 44px #ff5050 solid !important;
  border-left: 44px #ff5050 solid !important;
}
.sunset-orange--ba-45 {
  border: 45px #ff5050 solid !important;
}
.sunset-orange--bt-45 {
  border-top: 45px #ff5050 solid !important;
}
.sunset-orange--br-45 {
  border-right: 45px #ff5050 solid !important;
}
.sunset-orange--bl-45 {
  border-left: 45px #ff5050 solid !important;
}
.sunset-orange--bb-45 {
  border-bottom: 45px #ff5050 solid !important;
}
.sunset-orange--by-45 {
  border-top: 45px #ff5050 solid !important;
  border-bottom: 45px #ff5050 solid !important;
}
.sunset-orange--bx-45 {
  border-right: 45px #ff5050 solid !important;
  border-left: 45px #ff5050 solid !important;
}
.sunset-orange--ba-46 {
  border: 46px #ff5050 solid !important;
}
.sunset-orange--bt-46 {
  border-top: 46px #ff5050 solid !important;
}
.sunset-orange--br-46 {
  border-right: 46px #ff5050 solid !important;
}
.sunset-orange--bl-46 {
  border-left: 46px #ff5050 solid !important;
}
.sunset-orange--bb-46 {
  border-bottom: 46px #ff5050 solid !important;
}
.sunset-orange--by-46 {
  border-top: 46px #ff5050 solid !important;
  border-bottom: 46px #ff5050 solid !important;
}
.sunset-orange--bx-46 {
  border-right: 46px #ff5050 solid !important;
  border-left: 46px #ff5050 solid !important;
}
.sunset-orange--ba-47 {
  border: 47px #ff5050 solid !important;
}
.sunset-orange--bt-47 {
  border-top: 47px #ff5050 solid !important;
}
.sunset-orange--br-47 {
  border-right: 47px #ff5050 solid !important;
}
.sunset-orange--bl-47 {
  border-left: 47px #ff5050 solid !important;
}
.sunset-orange--bb-47 {
  border-bottom: 47px #ff5050 solid !important;
}
.sunset-orange--by-47 {
  border-top: 47px #ff5050 solid !important;
  border-bottom: 47px #ff5050 solid !important;
}
.sunset-orange--bx-47 {
  border-right: 47px #ff5050 solid !important;
  border-left: 47px #ff5050 solid !important;
}
.sunset-orange--ba-48 {
  border: 48px #ff5050 solid !important;
}
.sunset-orange--bt-48 {
  border-top: 48px #ff5050 solid !important;
}
.sunset-orange--br-48 {
  border-right: 48px #ff5050 solid !important;
}
.sunset-orange--bl-48 {
  border-left: 48px #ff5050 solid !important;
}
.sunset-orange--bb-48 {
  border-bottom: 48px #ff5050 solid !important;
}
.sunset-orange--by-48 {
  border-top: 48px #ff5050 solid !important;
  border-bottom: 48px #ff5050 solid !important;
}
.sunset-orange--bx-48 {
  border-right: 48px #ff5050 solid !important;
  border-left: 48px #ff5050 solid !important;
}
.sunset-orange--ba-49 {
  border: 49px #ff5050 solid !important;
}
.sunset-orange--bt-49 {
  border-top: 49px #ff5050 solid !important;
}
.sunset-orange--br-49 {
  border-right: 49px #ff5050 solid !important;
}
.sunset-orange--bl-49 {
  border-left: 49px #ff5050 solid !important;
}
.sunset-orange--bb-49 {
  border-bottom: 49px #ff5050 solid !important;
}
.sunset-orange--by-49 {
  border-top: 49px #ff5050 solid !important;
  border-bottom: 49px #ff5050 solid !important;
}
.sunset-orange--bx-49 {
  border-right: 49px #ff5050 solid !important;
  border-left: 49px #ff5050 solid !important;
}
.sunset-orange--ba-50 {
  border: 50px #ff5050 solid !important;
}
.sunset-orange--bt-50 {
  border-top: 50px #ff5050 solid !important;
}
.sunset-orange--br-50 {
  border-right: 50px #ff5050 solid !important;
}
.sunset-orange--bl-50 {
  border-left: 50px #ff5050 solid !important;
}
.sunset-orange--bb-50 {
  border-bottom: 50px #ff5050 solid !important;
}
.sunset-orange--by-50 {
  border-top: 50px #ff5050 solid !important;
  border-bottom: 50px #ff5050 solid !important;
}
.sunset-orange--bx-50 {
  border-right: 50px #ff5050 solid !important;
  border-left: 50px #ff5050 solid !important;
}
.sunset-orange--ba-51 {
  border: 51px #ff5050 solid !important;
}
.sunset-orange--bt-51 {
  border-top: 51px #ff5050 solid !important;
}
.sunset-orange--br-51 {
  border-right: 51px #ff5050 solid !important;
}
.sunset-orange--bl-51 {
  border-left: 51px #ff5050 solid !important;
}
.sunset-orange--bb-51 {
  border-bottom: 51px #ff5050 solid !important;
}
.sunset-orange--by-51 {
  border-top: 51px #ff5050 solid !important;
  border-bottom: 51px #ff5050 solid !important;
}
.sunset-orange--bx-51 {
  border-right: 51px #ff5050 solid !important;
  border-left: 51px #ff5050 solid !important;
}
.sunset-orange--ba-52 {
  border: 52px #ff5050 solid !important;
}
.sunset-orange--bt-52 {
  border-top: 52px #ff5050 solid !important;
}
.sunset-orange--br-52 {
  border-right: 52px #ff5050 solid !important;
}
.sunset-orange--bl-52 {
  border-left: 52px #ff5050 solid !important;
}
.sunset-orange--bb-52 {
  border-bottom: 52px #ff5050 solid !important;
}
.sunset-orange--by-52 {
  border-top: 52px #ff5050 solid !important;
  border-bottom: 52px #ff5050 solid !important;
}
.sunset-orange--bx-52 {
  border-right: 52px #ff5050 solid !important;
  border-left: 52px #ff5050 solid !important;
}
.sunset-orange--ba-53 {
  border: 53px #ff5050 solid !important;
}
.sunset-orange--bt-53 {
  border-top: 53px #ff5050 solid !important;
}
.sunset-orange--br-53 {
  border-right: 53px #ff5050 solid !important;
}
.sunset-orange--bl-53 {
  border-left: 53px #ff5050 solid !important;
}
.sunset-orange--bb-53 {
  border-bottom: 53px #ff5050 solid !important;
}
.sunset-orange--by-53 {
  border-top: 53px #ff5050 solid !important;
  border-bottom: 53px #ff5050 solid !important;
}
.sunset-orange--bx-53 {
  border-right: 53px #ff5050 solid !important;
  border-left: 53px #ff5050 solid !important;
}
.sunset-orange--ba-54 {
  border: 54px #ff5050 solid !important;
}
.sunset-orange--bt-54 {
  border-top: 54px #ff5050 solid !important;
}
.sunset-orange--br-54 {
  border-right: 54px #ff5050 solid !important;
}
.sunset-orange--bl-54 {
  border-left: 54px #ff5050 solid !important;
}
.sunset-orange--bb-54 {
  border-bottom: 54px #ff5050 solid !important;
}
.sunset-orange--by-54 {
  border-top: 54px #ff5050 solid !important;
  border-bottom: 54px #ff5050 solid !important;
}
.sunset-orange--bx-54 {
  border-right: 54px #ff5050 solid !important;
  border-left: 54px #ff5050 solid !important;
}
.sunset-orange--ba-55 {
  border: 55px #ff5050 solid !important;
}
.sunset-orange--bt-55 {
  border-top: 55px #ff5050 solid !important;
}
.sunset-orange--br-55 {
  border-right: 55px #ff5050 solid !important;
}
.sunset-orange--bl-55 {
  border-left: 55px #ff5050 solid !important;
}
.sunset-orange--bb-55 {
  border-bottom: 55px #ff5050 solid !important;
}
.sunset-orange--by-55 {
  border-top: 55px #ff5050 solid !important;
  border-bottom: 55px #ff5050 solid !important;
}
.sunset-orange--bx-55 {
  border-right: 55px #ff5050 solid !important;
  border-left: 55px #ff5050 solid !important;
}
.sunset-orange--ba-56 {
  border: 56px #ff5050 solid !important;
}
.sunset-orange--bt-56 {
  border-top: 56px #ff5050 solid !important;
}
.sunset-orange--br-56 {
  border-right: 56px #ff5050 solid !important;
}
.sunset-orange--bl-56 {
  border-left: 56px #ff5050 solid !important;
}
.sunset-orange--bb-56 {
  border-bottom: 56px #ff5050 solid !important;
}
.sunset-orange--by-56 {
  border-top: 56px #ff5050 solid !important;
  border-bottom: 56px #ff5050 solid !important;
}
.sunset-orange--bx-56 {
  border-right: 56px #ff5050 solid !important;
  border-left: 56px #ff5050 solid !important;
}
.sunset-orange--ba-57 {
  border: 57px #ff5050 solid !important;
}
.sunset-orange--bt-57 {
  border-top: 57px #ff5050 solid !important;
}
.sunset-orange--br-57 {
  border-right: 57px #ff5050 solid !important;
}
.sunset-orange--bl-57 {
  border-left: 57px #ff5050 solid !important;
}
.sunset-orange--bb-57 {
  border-bottom: 57px #ff5050 solid !important;
}
.sunset-orange--by-57 {
  border-top: 57px #ff5050 solid !important;
  border-bottom: 57px #ff5050 solid !important;
}
.sunset-orange--bx-57 {
  border-right: 57px #ff5050 solid !important;
  border-left: 57px #ff5050 solid !important;
}
.sunset-orange--ba-58 {
  border: 58px #ff5050 solid !important;
}
.sunset-orange--bt-58 {
  border-top: 58px #ff5050 solid !important;
}
.sunset-orange--br-58 {
  border-right: 58px #ff5050 solid !important;
}
.sunset-orange--bl-58 {
  border-left: 58px #ff5050 solid !important;
}
.sunset-orange--bb-58 {
  border-bottom: 58px #ff5050 solid !important;
}
.sunset-orange--by-58 {
  border-top: 58px #ff5050 solid !important;
  border-bottom: 58px #ff5050 solid !important;
}
.sunset-orange--bx-58 {
  border-right: 58px #ff5050 solid !important;
  border-left: 58px #ff5050 solid !important;
}
.sunset-orange--ba-59 {
  border: 59px #ff5050 solid !important;
}
.sunset-orange--bt-59 {
  border-top: 59px #ff5050 solid !important;
}
.sunset-orange--br-59 {
  border-right: 59px #ff5050 solid !important;
}
.sunset-orange--bl-59 {
  border-left: 59px #ff5050 solid !important;
}
.sunset-orange--bb-59 {
  border-bottom: 59px #ff5050 solid !important;
}
.sunset-orange--by-59 {
  border-top: 59px #ff5050 solid !important;
  border-bottom: 59px #ff5050 solid !important;
}
.sunset-orange--bx-59 {
  border-right: 59px #ff5050 solid !important;
  border-left: 59px #ff5050 solid !important;
}
.sunset-orange--ba-60 {
  border: 60px #ff5050 solid !important;
}
.sunset-orange--bt-60 {
  border-top: 60px #ff5050 solid !important;
}
.sunset-orange--br-60 {
  border-right: 60px #ff5050 solid !important;
}
.sunset-orange--bl-60 {
  border-left: 60px #ff5050 solid !important;
}
.sunset-orange--bb-60 {
  border-bottom: 60px #ff5050 solid !important;
}
.sunset-orange--by-60 {
  border-top: 60px #ff5050 solid !important;
  border-bottom: 60px #ff5050 solid !important;
}
.sunset-orange--bx-60 {
  border-right: 60px #ff5050 solid !important;
  border-left: 60px #ff5050 solid !important;
}
.sunset-orange--ba-61 {
  border: 61px #ff5050 solid !important;
}
.sunset-orange--bt-61 {
  border-top: 61px #ff5050 solid !important;
}
.sunset-orange--br-61 {
  border-right: 61px #ff5050 solid !important;
}
.sunset-orange--bl-61 {
  border-left: 61px #ff5050 solid !important;
}
.sunset-orange--bb-61 {
  border-bottom: 61px #ff5050 solid !important;
}
.sunset-orange--by-61 {
  border-top: 61px #ff5050 solid !important;
  border-bottom: 61px #ff5050 solid !important;
}
.sunset-orange--bx-61 {
  border-right: 61px #ff5050 solid !important;
  border-left: 61px #ff5050 solid !important;
}
.sunset-orange--ba-62 {
  border: 62px #ff5050 solid !important;
}
.sunset-orange--bt-62 {
  border-top: 62px #ff5050 solid !important;
}
.sunset-orange--br-62 {
  border-right: 62px #ff5050 solid !important;
}
.sunset-orange--bl-62 {
  border-left: 62px #ff5050 solid !important;
}
.sunset-orange--bb-62 {
  border-bottom: 62px #ff5050 solid !important;
}
.sunset-orange--by-62 {
  border-top: 62px #ff5050 solid !important;
  border-bottom: 62px #ff5050 solid !important;
}
.sunset-orange--bx-62 {
  border-right: 62px #ff5050 solid !important;
  border-left: 62px #ff5050 solid !important;
}
.sunset-orange--ba-63 {
  border: 63px #ff5050 solid !important;
}
.sunset-orange--bt-63 {
  border-top: 63px #ff5050 solid !important;
}
.sunset-orange--br-63 {
  border-right: 63px #ff5050 solid !important;
}
.sunset-orange--bl-63 {
  border-left: 63px #ff5050 solid !important;
}
.sunset-orange--bb-63 {
  border-bottom: 63px #ff5050 solid !important;
}
.sunset-orange--by-63 {
  border-top: 63px #ff5050 solid !important;
  border-bottom: 63px #ff5050 solid !important;
}
.sunset-orange--bx-63 {
  border-right: 63px #ff5050 solid !important;
  border-left: 63px #ff5050 solid !important;
}
.sunset-orange--ba-64 {
  border: 64px #ff5050 solid !important;
}
.sunset-orange--bt-64 {
  border-top: 64px #ff5050 solid !important;
}
.sunset-orange--br-64 {
  border-right: 64px #ff5050 solid !important;
}
.sunset-orange--bl-64 {
  border-left: 64px #ff5050 solid !important;
}
.sunset-orange--bb-64 {
  border-bottom: 64px #ff5050 solid !important;
}
.sunset-orange--by-64 {
  border-top: 64px #ff5050 solid !important;
  border-bottom: 64px #ff5050 solid !important;
}
.sunset-orange--bx-64 {
  border-right: 64px #ff5050 solid !important;
  border-left: 64px #ff5050 solid !important;
}
.sunset-orange--ba-65 {
  border: 65px #ff5050 solid !important;
}
.sunset-orange--bt-65 {
  border-top: 65px #ff5050 solid !important;
}
.sunset-orange--br-65 {
  border-right: 65px #ff5050 solid !important;
}
.sunset-orange--bl-65 {
  border-left: 65px #ff5050 solid !important;
}
.sunset-orange--bb-65 {
  border-bottom: 65px #ff5050 solid !important;
}
.sunset-orange--by-65 {
  border-top: 65px #ff5050 solid !important;
  border-bottom: 65px #ff5050 solid !important;
}
.sunset-orange--bx-65 {
  border-right: 65px #ff5050 solid !important;
  border-left: 65px #ff5050 solid !important;
}
.sunset-orange--ba-66 {
  border: 66px #ff5050 solid !important;
}
.sunset-orange--bt-66 {
  border-top: 66px #ff5050 solid !important;
}
.sunset-orange--br-66 {
  border-right: 66px #ff5050 solid !important;
}
.sunset-orange--bl-66 {
  border-left: 66px #ff5050 solid !important;
}
.sunset-orange--bb-66 {
  border-bottom: 66px #ff5050 solid !important;
}
.sunset-orange--by-66 {
  border-top: 66px #ff5050 solid !important;
  border-bottom: 66px #ff5050 solid !important;
}
.sunset-orange--bx-66 {
  border-right: 66px #ff5050 solid !important;
  border-left: 66px #ff5050 solid !important;
}
.sunset-orange--ba-67 {
  border: 67px #ff5050 solid !important;
}
.sunset-orange--bt-67 {
  border-top: 67px #ff5050 solid !important;
}
.sunset-orange--br-67 {
  border-right: 67px #ff5050 solid !important;
}
.sunset-orange--bl-67 {
  border-left: 67px #ff5050 solid !important;
}
.sunset-orange--bb-67 {
  border-bottom: 67px #ff5050 solid !important;
}
.sunset-orange--by-67 {
  border-top: 67px #ff5050 solid !important;
  border-bottom: 67px #ff5050 solid !important;
}
.sunset-orange--bx-67 {
  border-right: 67px #ff5050 solid !important;
  border-left: 67px #ff5050 solid !important;
}
.sunset-orange--ba-68 {
  border: 68px #ff5050 solid !important;
}
.sunset-orange--bt-68 {
  border-top: 68px #ff5050 solid !important;
}
.sunset-orange--br-68 {
  border-right: 68px #ff5050 solid !important;
}
.sunset-orange--bl-68 {
  border-left: 68px #ff5050 solid !important;
}
.sunset-orange--bb-68 {
  border-bottom: 68px #ff5050 solid !important;
}
.sunset-orange--by-68 {
  border-top: 68px #ff5050 solid !important;
  border-bottom: 68px #ff5050 solid !important;
}
.sunset-orange--bx-68 {
  border-right: 68px #ff5050 solid !important;
  border-left: 68px #ff5050 solid !important;
}
.sunset-orange--ba-69 {
  border: 69px #ff5050 solid !important;
}
.sunset-orange--bt-69 {
  border-top: 69px #ff5050 solid !important;
}
.sunset-orange--br-69 {
  border-right: 69px #ff5050 solid !important;
}
.sunset-orange--bl-69 {
  border-left: 69px #ff5050 solid !important;
}
.sunset-orange--bb-69 {
  border-bottom: 69px #ff5050 solid !important;
}
.sunset-orange--by-69 {
  border-top: 69px #ff5050 solid !important;
  border-bottom: 69px #ff5050 solid !important;
}
.sunset-orange--bx-69 {
  border-right: 69px #ff5050 solid !important;
  border-left: 69px #ff5050 solid !important;
}
.sunset-orange--ba-70 {
  border: 70px #ff5050 solid !important;
}
.sunset-orange--bt-70 {
  border-top: 70px #ff5050 solid !important;
}
.sunset-orange--br-70 {
  border-right: 70px #ff5050 solid !important;
}
.sunset-orange--bl-70 {
  border-left: 70px #ff5050 solid !important;
}
.sunset-orange--bb-70 {
  border-bottom: 70px #ff5050 solid !important;
}
.sunset-orange--by-70 {
  border-top: 70px #ff5050 solid !important;
  border-bottom: 70px #ff5050 solid !important;
}
.sunset-orange--bx-70 {
  border-right: 70px #ff5050 solid !important;
  border-left: 70px #ff5050 solid !important;
}
.sunset-orange--ba-71 {
  border: 71px #ff5050 solid !important;
}
.sunset-orange--bt-71 {
  border-top: 71px #ff5050 solid !important;
}
.sunset-orange--br-71 {
  border-right: 71px #ff5050 solid !important;
}
.sunset-orange--bl-71 {
  border-left: 71px #ff5050 solid !important;
}
.sunset-orange--bb-71 {
  border-bottom: 71px #ff5050 solid !important;
}
.sunset-orange--by-71 {
  border-top: 71px #ff5050 solid !important;
  border-bottom: 71px #ff5050 solid !important;
}
.sunset-orange--bx-71 {
  border-right: 71px #ff5050 solid !important;
  border-left: 71px #ff5050 solid !important;
}
.sunset-orange--ba-72 {
  border: 72px #ff5050 solid !important;
}
.sunset-orange--bt-72 {
  border-top: 72px #ff5050 solid !important;
}
.sunset-orange--br-72 {
  border-right: 72px #ff5050 solid !important;
}
.sunset-orange--bl-72 {
  border-left: 72px #ff5050 solid !important;
}
.sunset-orange--bb-72 {
  border-bottom: 72px #ff5050 solid !important;
}
.sunset-orange--by-72 {
  border-top: 72px #ff5050 solid !important;
  border-bottom: 72px #ff5050 solid !important;
}
.sunset-orange--bx-72 {
  border-right: 72px #ff5050 solid !important;
  border-left: 72px #ff5050 solid !important;
}
.sunset-orange--ba-73 {
  border: 73px #ff5050 solid !important;
}
.sunset-orange--bt-73 {
  border-top: 73px #ff5050 solid !important;
}
.sunset-orange--br-73 {
  border-right: 73px #ff5050 solid !important;
}
.sunset-orange--bl-73 {
  border-left: 73px #ff5050 solid !important;
}
.sunset-orange--bb-73 {
  border-bottom: 73px #ff5050 solid !important;
}
.sunset-orange--by-73 {
  border-top: 73px #ff5050 solid !important;
  border-bottom: 73px #ff5050 solid !important;
}
.sunset-orange--bx-73 {
  border-right: 73px #ff5050 solid !important;
  border-left: 73px #ff5050 solid !important;
}
.sunset-orange--ba-74 {
  border: 74px #ff5050 solid !important;
}
.sunset-orange--bt-74 {
  border-top: 74px #ff5050 solid !important;
}
.sunset-orange--br-74 {
  border-right: 74px #ff5050 solid !important;
}
.sunset-orange--bl-74 {
  border-left: 74px #ff5050 solid !important;
}
.sunset-orange--bb-74 {
  border-bottom: 74px #ff5050 solid !important;
}
.sunset-orange--by-74 {
  border-top: 74px #ff5050 solid !important;
  border-bottom: 74px #ff5050 solid !important;
}
.sunset-orange--bx-74 {
  border-right: 74px #ff5050 solid !important;
  border-left: 74px #ff5050 solid !important;
}
.sunset-orange--ba-75 {
  border: 75px #ff5050 solid !important;
}
.sunset-orange--bt-75 {
  border-top: 75px #ff5050 solid !important;
}
.sunset-orange--br-75 {
  border-right: 75px #ff5050 solid !important;
}
.sunset-orange--bl-75 {
  border-left: 75px #ff5050 solid !important;
}
.sunset-orange--bb-75 {
  border-bottom: 75px #ff5050 solid !important;
}
.sunset-orange--by-75 {
  border-top: 75px #ff5050 solid !important;
  border-bottom: 75px #ff5050 solid !important;
}
.sunset-orange--bx-75 {
  border-right: 75px #ff5050 solid !important;
  border-left: 75px #ff5050 solid !important;
}
.sunset-orange--ba-76 {
  border: 76px #ff5050 solid !important;
}
.sunset-orange--bt-76 {
  border-top: 76px #ff5050 solid !important;
}
.sunset-orange--br-76 {
  border-right: 76px #ff5050 solid !important;
}
.sunset-orange--bl-76 {
  border-left: 76px #ff5050 solid !important;
}
.sunset-orange--bb-76 {
  border-bottom: 76px #ff5050 solid !important;
}
.sunset-orange--by-76 {
  border-top: 76px #ff5050 solid !important;
  border-bottom: 76px #ff5050 solid !important;
}
.sunset-orange--bx-76 {
  border-right: 76px #ff5050 solid !important;
  border-left: 76px #ff5050 solid !important;
}
.sunset-orange--ba-77 {
  border: 77px #ff5050 solid !important;
}
.sunset-orange--bt-77 {
  border-top: 77px #ff5050 solid !important;
}
.sunset-orange--br-77 {
  border-right: 77px #ff5050 solid !important;
}
.sunset-orange--bl-77 {
  border-left: 77px #ff5050 solid !important;
}
.sunset-orange--bb-77 {
  border-bottom: 77px #ff5050 solid !important;
}
.sunset-orange--by-77 {
  border-top: 77px #ff5050 solid !important;
  border-bottom: 77px #ff5050 solid !important;
}
.sunset-orange--bx-77 {
  border-right: 77px #ff5050 solid !important;
  border-left: 77px #ff5050 solid !important;
}
.sunset-orange--ba-78 {
  border: 78px #ff5050 solid !important;
}
.sunset-orange--bt-78 {
  border-top: 78px #ff5050 solid !important;
}
.sunset-orange--br-78 {
  border-right: 78px #ff5050 solid !important;
}
.sunset-orange--bl-78 {
  border-left: 78px #ff5050 solid !important;
}
.sunset-orange--bb-78 {
  border-bottom: 78px #ff5050 solid !important;
}
.sunset-orange--by-78 {
  border-top: 78px #ff5050 solid !important;
  border-bottom: 78px #ff5050 solid !important;
}
.sunset-orange--bx-78 {
  border-right: 78px #ff5050 solid !important;
  border-left: 78px #ff5050 solid !important;
}
.sunset-orange--ba-79 {
  border: 79px #ff5050 solid !important;
}
.sunset-orange--bt-79 {
  border-top: 79px #ff5050 solid !important;
}
.sunset-orange--br-79 {
  border-right: 79px #ff5050 solid !important;
}
.sunset-orange--bl-79 {
  border-left: 79px #ff5050 solid !important;
}
.sunset-orange--bb-79 {
  border-bottom: 79px #ff5050 solid !important;
}
.sunset-orange--by-79 {
  border-top: 79px #ff5050 solid !important;
  border-bottom: 79px #ff5050 solid !important;
}
.sunset-orange--bx-79 {
  border-right: 79px #ff5050 solid !important;
  border-left: 79px #ff5050 solid !important;
}
.sunset-orange--ba-80 {
  border: 80px #ff5050 solid !important;
}
.sunset-orange--bt-80 {
  border-top: 80px #ff5050 solid !important;
}
.sunset-orange--br-80 {
  border-right: 80px #ff5050 solid !important;
}
.sunset-orange--bl-80 {
  border-left: 80px #ff5050 solid !important;
}
.sunset-orange--bb-80 {
  border-bottom: 80px #ff5050 solid !important;
}
.sunset-orange--by-80 {
  border-top: 80px #ff5050 solid !important;
  border-bottom: 80px #ff5050 solid !important;
}
.sunset-orange--bx-80 {
  border-right: 80px #ff5050 solid !important;
  border-left: 80px #ff5050 solid !important;
}
.sunset-orange--ba-81 {
  border: 81px #ff5050 solid !important;
}
.sunset-orange--bt-81 {
  border-top: 81px #ff5050 solid !important;
}
.sunset-orange--br-81 {
  border-right: 81px #ff5050 solid !important;
}
.sunset-orange--bl-81 {
  border-left: 81px #ff5050 solid !important;
}
.sunset-orange--bb-81 {
  border-bottom: 81px #ff5050 solid !important;
}
.sunset-orange--by-81 {
  border-top: 81px #ff5050 solid !important;
  border-bottom: 81px #ff5050 solid !important;
}
.sunset-orange--bx-81 {
  border-right: 81px #ff5050 solid !important;
  border-left: 81px #ff5050 solid !important;
}
.sunset-orange--ba-82 {
  border: 82px #ff5050 solid !important;
}
.sunset-orange--bt-82 {
  border-top: 82px #ff5050 solid !important;
}
.sunset-orange--br-82 {
  border-right: 82px #ff5050 solid !important;
}
.sunset-orange--bl-82 {
  border-left: 82px #ff5050 solid !important;
}
.sunset-orange--bb-82 {
  border-bottom: 82px #ff5050 solid !important;
}
.sunset-orange--by-82 {
  border-top: 82px #ff5050 solid !important;
  border-bottom: 82px #ff5050 solid !important;
}
.sunset-orange--bx-82 {
  border-right: 82px #ff5050 solid !important;
  border-left: 82px #ff5050 solid !important;
}
.sunset-orange--ba-83 {
  border: 83px #ff5050 solid !important;
}
.sunset-orange--bt-83 {
  border-top: 83px #ff5050 solid !important;
}
.sunset-orange--br-83 {
  border-right: 83px #ff5050 solid !important;
}
.sunset-orange--bl-83 {
  border-left: 83px #ff5050 solid !important;
}
.sunset-orange--bb-83 {
  border-bottom: 83px #ff5050 solid !important;
}
.sunset-orange--by-83 {
  border-top: 83px #ff5050 solid !important;
  border-bottom: 83px #ff5050 solid !important;
}
.sunset-orange--bx-83 {
  border-right: 83px #ff5050 solid !important;
  border-left: 83px #ff5050 solid !important;
}
.sunset-orange--ba-84 {
  border: 84px #ff5050 solid !important;
}
.sunset-orange--bt-84 {
  border-top: 84px #ff5050 solid !important;
}
.sunset-orange--br-84 {
  border-right: 84px #ff5050 solid !important;
}
.sunset-orange--bl-84 {
  border-left: 84px #ff5050 solid !important;
}
.sunset-orange--bb-84 {
  border-bottom: 84px #ff5050 solid !important;
}
.sunset-orange--by-84 {
  border-top: 84px #ff5050 solid !important;
  border-bottom: 84px #ff5050 solid !important;
}
.sunset-orange--bx-84 {
  border-right: 84px #ff5050 solid !important;
  border-left: 84px #ff5050 solid !important;
}
.sunset-orange--ba-85 {
  border: 85px #ff5050 solid !important;
}
.sunset-orange--bt-85 {
  border-top: 85px #ff5050 solid !important;
}
.sunset-orange--br-85 {
  border-right: 85px #ff5050 solid !important;
}
.sunset-orange--bl-85 {
  border-left: 85px #ff5050 solid !important;
}
.sunset-orange--bb-85 {
  border-bottom: 85px #ff5050 solid !important;
}
.sunset-orange--by-85 {
  border-top: 85px #ff5050 solid !important;
  border-bottom: 85px #ff5050 solid !important;
}
.sunset-orange--bx-85 {
  border-right: 85px #ff5050 solid !important;
  border-left: 85px #ff5050 solid !important;
}
.sunset-orange--ba-86 {
  border: 86px #ff5050 solid !important;
}
.sunset-orange--bt-86 {
  border-top: 86px #ff5050 solid !important;
}
.sunset-orange--br-86 {
  border-right: 86px #ff5050 solid !important;
}
.sunset-orange--bl-86 {
  border-left: 86px #ff5050 solid !important;
}
.sunset-orange--bb-86 {
  border-bottom: 86px #ff5050 solid !important;
}
.sunset-orange--by-86 {
  border-top: 86px #ff5050 solid !important;
  border-bottom: 86px #ff5050 solid !important;
}
.sunset-orange--bx-86 {
  border-right: 86px #ff5050 solid !important;
  border-left: 86px #ff5050 solid !important;
}
.sunset-orange--ba-87 {
  border: 87px #ff5050 solid !important;
}
.sunset-orange--bt-87 {
  border-top: 87px #ff5050 solid !important;
}
.sunset-orange--br-87 {
  border-right: 87px #ff5050 solid !important;
}
.sunset-orange--bl-87 {
  border-left: 87px #ff5050 solid !important;
}
.sunset-orange--bb-87 {
  border-bottom: 87px #ff5050 solid !important;
}
.sunset-orange--by-87 {
  border-top: 87px #ff5050 solid !important;
  border-bottom: 87px #ff5050 solid !important;
}
.sunset-orange--bx-87 {
  border-right: 87px #ff5050 solid !important;
  border-left: 87px #ff5050 solid !important;
}
.sunset-orange--ba-88 {
  border: 88px #ff5050 solid !important;
}
.sunset-orange--bt-88 {
  border-top: 88px #ff5050 solid !important;
}
.sunset-orange--br-88 {
  border-right: 88px #ff5050 solid !important;
}
.sunset-orange--bl-88 {
  border-left: 88px #ff5050 solid !important;
}
.sunset-orange--bb-88 {
  border-bottom: 88px #ff5050 solid !important;
}
.sunset-orange--by-88 {
  border-top: 88px #ff5050 solid !important;
  border-bottom: 88px #ff5050 solid !important;
}
.sunset-orange--bx-88 {
  border-right: 88px #ff5050 solid !important;
  border-left: 88px #ff5050 solid !important;
}
.sunset-orange--ba-89 {
  border: 89px #ff5050 solid !important;
}
.sunset-orange--bt-89 {
  border-top: 89px #ff5050 solid !important;
}
.sunset-orange--br-89 {
  border-right: 89px #ff5050 solid !important;
}
.sunset-orange--bl-89 {
  border-left: 89px #ff5050 solid !important;
}
.sunset-orange--bb-89 {
  border-bottom: 89px #ff5050 solid !important;
}
.sunset-orange--by-89 {
  border-top: 89px #ff5050 solid !important;
  border-bottom: 89px #ff5050 solid !important;
}
.sunset-orange--bx-89 {
  border-right: 89px #ff5050 solid !important;
  border-left: 89px #ff5050 solid !important;
}
.sunset-orange--ba-90 {
  border: 90px #ff5050 solid !important;
}
.sunset-orange--bt-90 {
  border-top: 90px #ff5050 solid !important;
}
.sunset-orange--br-90 {
  border-right: 90px #ff5050 solid !important;
}
.sunset-orange--bl-90 {
  border-left: 90px #ff5050 solid !important;
}
.sunset-orange--bb-90 {
  border-bottom: 90px #ff5050 solid !important;
}
.sunset-orange--by-90 {
  border-top: 90px #ff5050 solid !important;
  border-bottom: 90px #ff5050 solid !important;
}
.sunset-orange--bx-90 {
  border-right: 90px #ff5050 solid !important;
  border-left: 90px #ff5050 solid !important;
}
.sunset-orange--ba-91 {
  border: 91px #ff5050 solid !important;
}
.sunset-orange--bt-91 {
  border-top: 91px #ff5050 solid !important;
}
.sunset-orange--br-91 {
  border-right: 91px #ff5050 solid !important;
}
.sunset-orange--bl-91 {
  border-left: 91px #ff5050 solid !important;
}
.sunset-orange--bb-91 {
  border-bottom: 91px #ff5050 solid !important;
}
.sunset-orange--by-91 {
  border-top: 91px #ff5050 solid !important;
  border-bottom: 91px #ff5050 solid !important;
}
.sunset-orange--bx-91 {
  border-right: 91px #ff5050 solid !important;
  border-left: 91px #ff5050 solid !important;
}
.sunset-orange--ba-92 {
  border: 92px #ff5050 solid !important;
}
.sunset-orange--bt-92 {
  border-top: 92px #ff5050 solid !important;
}
.sunset-orange--br-92 {
  border-right: 92px #ff5050 solid !important;
}
.sunset-orange--bl-92 {
  border-left: 92px #ff5050 solid !important;
}
.sunset-orange--bb-92 {
  border-bottom: 92px #ff5050 solid !important;
}
.sunset-orange--by-92 {
  border-top: 92px #ff5050 solid !important;
  border-bottom: 92px #ff5050 solid !important;
}
.sunset-orange--bx-92 {
  border-right: 92px #ff5050 solid !important;
  border-left: 92px #ff5050 solid !important;
}
.sunset-orange--ba-93 {
  border: 93px #ff5050 solid !important;
}
.sunset-orange--bt-93 {
  border-top: 93px #ff5050 solid !important;
}
.sunset-orange--br-93 {
  border-right: 93px #ff5050 solid !important;
}
.sunset-orange--bl-93 {
  border-left: 93px #ff5050 solid !important;
}
.sunset-orange--bb-93 {
  border-bottom: 93px #ff5050 solid !important;
}
.sunset-orange--by-93 {
  border-top: 93px #ff5050 solid !important;
  border-bottom: 93px #ff5050 solid !important;
}
.sunset-orange--bx-93 {
  border-right: 93px #ff5050 solid !important;
  border-left: 93px #ff5050 solid !important;
}
.sunset-orange--ba-94 {
  border: 94px #ff5050 solid !important;
}
.sunset-orange--bt-94 {
  border-top: 94px #ff5050 solid !important;
}
.sunset-orange--br-94 {
  border-right: 94px #ff5050 solid !important;
}
.sunset-orange--bl-94 {
  border-left: 94px #ff5050 solid !important;
}
.sunset-orange--bb-94 {
  border-bottom: 94px #ff5050 solid !important;
}
.sunset-orange--by-94 {
  border-top: 94px #ff5050 solid !important;
  border-bottom: 94px #ff5050 solid !important;
}
.sunset-orange--bx-94 {
  border-right: 94px #ff5050 solid !important;
  border-left: 94px #ff5050 solid !important;
}
.sunset-orange--ba-95 {
  border: 95px #ff5050 solid !important;
}
.sunset-orange--bt-95 {
  border-top: 95px #ff5050 solid !important;
}
.sunset-orange--br-95 {
  border-right: 95px #ff5050 solid !important;
}
.sunset-orange--bl-95 {
  border-left: 95px #ff5050 solid !important;
}
.sunset-orange--bb-95 {
  border-bottom: 95px #ff5050 solid !important;
}
.sunset-orange--by-95 {
  border-top: 95px #ff5050 solid !important;
  border-bottom: 95px #ff5050 solid !important;
}
.sunset-orange--bx-95 {
  border-right: 95px #ff5050 solid !important;
  border-left: 95px #ff5050 solid !important;
}
.sunset-orange--ba-96 {
  border: 96px #ff5050 solid !important;
}
.sunset-orange--bt-96 {
  border-top: 96px #ff5050 solid !important;
}
.sunset-orange--br-96 {
  border-right: 96px #ff5050 solid !important;
}
.sunset-orange--bl-96 {
  border-left: 96px #ff5050 solid !important;
}
.sunset-orange--bb-96 {
  border-bottom: 96px #ff5050 solid !important;
}
.sunset-orange--by-96 {
  border-top: 96px #ff5050 solid !important;
  border-bottom: 96px #ff5050 solid !important;
}
.sunset-orange--bx-96 {
  border-right: 96px #ff5050 solid !important;
  border-left: 96px #ff5050 solid !important;
}
.sunset-orange--ba-97 {
  border: 97px #ff5050 solid !important;
}
.sunset-orange--bt-97 {
  border-top: 97px #ff5050 solid !important;
}
.sunset-orange--br-97 {
  border-right: 97px #ff5050 solid !important;
}
.sunset-orange--bl-97 {
  border-left: 97px #ff5050 solid !important;
}
.sunset-orange--bb-97 {
  border-bottom: 97px #ff5050 solid !important;
}
.sunset-orange--by-97 {
  border-top: 97px #ff5050 solid !important;
  border-bottom: 97px #ff5050 solid !important;
}
.sunset-orange--bx-97 {
  border-right: 97px #ff5050 solid !important;
  border-left: 97px #ff5050 solid !important;
}
.sunset-orange--ba-98 {
  border: 98px #ff5050 solid !important;
}
.sunset-orange--bt-98 {
  border-top: 98px #ff5050 solid !important;
}
.sunset-orange--br-98 {
  border-right: 98px #ff5050 solid !important;
}
.sunset-orange--bl-98 {
  border-left: 98px #ff5050 solid !important;
}
.sunset-orange--bb-98 {
  border-bottom: 98px #ff5050 solid !important;
}
.sunset-orange--by-98 {
  border-top: 98px #ff5050 solid !important;
  border-bottom: 98px #ff5050 solid !important;
}
.sunset-orange--bx-98 {
  border-right: 98px #ff5050 solid !important;
  border-left: 98px #ff5050 solid !important;
}
.sunset-orange--ba-99 {
  border: 99px #ff5050 solid !important;
}
.sunset-orange--bt-99 {
  border-top: 99px #ff5050 solid !important;
}
.sunset-orange--br-99 {
  border-right: 99px #ff5050 solid !important;
}
.sunset-orange--bl-99 {
  border-left: 99px #ff5050 solid !important;
}
.sunset-orange--bb-99 {
  border-bottom: 99px #ff5050 solid !important;
}
.sunset-orange--by-99 {
  border-top: 99px #ff5050 solid !important;
  border-bottom: 99px #ff5050 solid !important;
}
.sunset-orange--bx-99 {
  border-right: 99px #ff5050 solid !important;
  border-left: 99px #ff5050 solid !important;
}
.sunset-orange--ba-100 {
  border: 100px #ff5050 solid !important;
}
.sunset-orange--bt-100 {
  border-top: 100px #ff5050 solid !important;
}
.sunset-orange--br-100 {
  border-right: 100px #ff5050 solid !important;
}
.sunset-orange--bl-100 {
  border-left: 100px #ff5050 solid !important;
}
.sunset-orange--bb-100 {
  border-bottom: 100px #ff5050 solid !important;
}
.sunset-orange--by-100 {
  border-top: 100px #ff5050 solid !important;
  border-bottom: 100px #ff5050 solid !important;
}
.sunset-orange--bx-100 {
  border-right: 100px #ff5050 solid !important;
  border-left: 100px #ff5050 solid !important;
}
.dodger-blue--ba-1 {
  border: 1px #1b9cfc solid !important;
}
.dodger-blue--bt-1 {
  border-top: 1px #1b9cfc solid !important;
}
.dodger-blue--br-1 {
  border-right: 1px #1b9cfc solid !important;
}
.dodger-blue--bl-1 {
  border-left: 1px #1b9cfc solid !important;
}
.dodger-blue--bb-1 {
  border-bottom: 1px #1b9cfc solid !important;
}
.dodger-blue--by-1 {
  border-top: 1px #1b9cfc solid !important;
  border-bottom: 1px #1b9cfc solid !important;
}
.dodger-blue--bx-1 {
  border-right: 1px #1b9cfc solid !important;
  border-left: 1px #1b9cfc solid !important;
}
.dodger-blue--ba-2 {
  border: 2px #1b9cfc solid !important;
}
.dodger-blue--bt-2 {
  border-top: 2px #1b9cfc solid !important;
}
.dodger-blue--br-2 {
  border-right: 2px #1b9cfc solid !important;
}
.dodger-blue--bl-2 {
  border-left: 2px #1b9cfc solid !important;
}
.dodger-blue--bb-2 {
  border-bottom: 2px #1b9cfc solid !important;
}
.dodger-blue--by-2 {
  border-top: 2px #1b9cfc solid !important;
  border-bottom: 2px #1b9cfc solid !important;
}
.dodger-blue--bx-2 {
  border-right: 2px #1b9cfc solid !important;
  border-left: 2px #1b9cfc solid !important;
}
.dodger-blue--ba-3 {
  border: 3px #1b9cfc solid !important;
}
.dodger-blue--bt-3 {
  border-top: 3px #1b9cfc solid !important;
}
.dodger-blue--br-3 {
  border-right: 3px #1b9cfc solid !important;
}
.dodger-blue--bl-3 {
  border-left: 3px #1b9cfc solid !important;
}
.dodger-blue--bb-3 {
  border-bottom: 3px #1b9cfc solid !important;
}
.dodger-blue--by-3 {
  border-top: 3px #1b9cfc solid !important;
  border-bottom: 3px #1b9cfc solid !important;
}
.dodger-blue--bx-3 {
  border-right: 3px #1b9cfc solid !important;
  border-left: 3px #1b9cfc solid !important;
}
.dodger-blue--ba-4 {
  border: 4px #1b9cfc solid !important;
}
.dodger-blue--bt-4 {
  border-top: 4px #1b9cfc solid !important;
}
.dodger-blue--br-4 {
  border-right: 4px #1b9cfc solid !important;
}
.dodger-blue--bl-4 {
  border-left: 4px #1b9cfc solid !important;
}
.dodger-blue--bb-4 {
  border-bottom: 4px #1b9cfc solid !important;
}
.dodger-blue--by-4 {
  border-top: 4px #1b9cfc solid !important;
  border-bottom: 4px #1b9cfc solid !important;
}
.dodger-blue--bx-4 {
  border-right: 4px #1b9cfc solid !important;
  border-left: 4px #1b9cfc solid !important;
}
.dodger-blue--ba-5 {
  border: 5px #1b9cfc solid !important;
}
.dodger-blue--bt-5 {
  border-top: 5px #1b9cfc solid !important;
}
.dodger-blue--br-5 {
  border-right: 5px #1b9cfc solid !important;
}
.dodger-blue--bl-5 {
  border-left: 5px #1b9cfc solid !important;
}
.dodger-blue--bb-5 {
  border-bottom: 5px #1b9cfc solid !important;
}
.dodger-blue--by-5 {
  border-top: 5px #1b9cfc solid !important;
  border-bottom: 5px #1b9cfc solid !important;
}
.dodger-blue--bx-5 {
  border-right: 5px #1b9cfc solid !important;
  border-left: 5px #1b9cfc solid !important;
}
.dodger-blue--ba-6 {
  border: 6px #1b9cfc solid !important;
}
.dodger-blue--bt-6 {
  border-top: 6px #1b9cfc solid !important;
}
.dodger-blue--br-6 {
  border-right: 6px #1b9cfc solid !important;
}
.dodger-blue--bl-6 {
  border-left: 6px #1b9cfc solid !important;
}
.dodger-blue--bb-6 {
  border-bottom: 6px #1b9cfc solid !important;
}
.dodger-blue--by-6 {
  border-top: 6px #1b9cfc solid !important;
  border-bottom: 6px #1b9cfc solid !important;
}
.dodger-blue--bx-6 {
  border-right: 6px #1b9cfc solid !important;
  border-left: 6px #1b9cfc solid !important;
}
.dodger-blue--ba-7 {
  border: 7px #1b9cfc solid !important;
}
.dodger-blue--bt-7 {
  border-top: 7px #1b9cfc solid !important;
}
.dodger-blue--br-7 {
  border-right: 7px #1b9cfc solid !important;
}
.dodger-blue--bl-7 {
  border-left: 7px #1b9cfc solid !important;
}
.dodger-blue--bb-7 {
  border-bottom: 7px #1b9cfc solid !important;
}
.dodger-blue--by-7 {
  border-top: 7px #1b9cfc solid !important;
  border-bottom: 7px #1b9cfc solid !important;
}
.dodger-blue--bx-7 {
  border-right: 7px #1b9cfc solid !important;
  border-left: 7px #1b9cfc solid !important;
}
.dodger-blue--ba-8 {
  border: 8px #1b9cfc solid !important;
}
.dodger-blue--bt-8 {
  border-top: 8px #1b9cfc solid !important;
}
.dodger-blue--br-8 {
  border-right: 8px #1b9cfc solid !important;
}
.dodger-blue--bl-8 {
  border-left: 8px #1b9cfc solid !important;
}
.dodger-blue--bb-8 {
  border-bottom: 8px #1b9cfc solid !important;
}
.dodger-blue--by-8 {
  border-top: 8px #1b9cfc solid !important;
  border-bottom: 8px #1b9cfc solid !important;
}
.dodger-blue--bx-8 {
  border-right: 8px #1b9cfc solid !important;
  border-left: 8px #1b9cfc solid !important;
}
.dodger-blue--ba-9 {
  border: 9px #1b9cfc solid !important;
}
.dodger-blue--bt-9 {
  border-top: 9px #1b9cfc solid !important;
}
.dodger-blue--br-9 {
  border-right: 9px #1b9cfc solid !important;
}
.dodger-blue--bl-9 {
  border-left: 9px #1b9cfc solid !important;
}
.dodger-blue--bb-9 {
  border-bottom: 9px #1b9cfc solid !important;
}
.dodger-blue--by-9 {
  border-top: 9px #1b9cfc solid !important;
  border-bottom: 9px #1b9cfc solid !important;
}
.dodger-blue--bx-9 {
  border-right: 9px #1b9cfc solid !important;
  border-left: 9px #1b9cfc solid !important;
}
.dodger-blue--ba-10 {
  border: 10px #1b9cfc solid !important;
}
.dodger-blue--bt-10 {
  border-top: 10px #1b9cfc solid !important;
}
.dodger-blue--br-10 {
  border-right: 10px #1b9cfc solid !important;
}
.dodger-blue--bl-10 {
  border-left: 10px #1b9cfc solid !important;
}
.dodger-blue--bb-10 {
  border-bottom: 10px #1b9cfc solid !important;
}
.dodger-blue--by-10 {
  border-top: 10px #1b9cfc solid !important;
  border-bottom: 10px #1b9cfc solid !important;
}
.dodger-blue--bx-10 {
  border-right: 10px #1b9cfc solid !important;
  border-left: 10px #1b9cfc solid !important;
}
.dodger-blue--ba-11 {
  border: 11px #1b9cfc solid !important;
}
.dodger-blue--bt-11 {
  border-top: 11px #1b9cfc solid !important;
}
.dodger-blue--br-11 {
  border-right: 11px #1b9cfc solid !important;
}
.dodger-blue--bl-11 {
  border-left: 11px #1b9cfc solid !important;
}
.dodger-blue--bb-11 {
  border-bottom: 11px #1b9cfc solid !important;
}
.dodger-blue--by-11 {
  border-top: 11px #1b9cfc solid !important;
  border-bottom: 11px #1b9cfc solid !important;
}
.dodger-blue--bx-11 {
  border-right: 11px #1b9cfc solid !important;
  border-left: 11px #1b9cfc solid !important;
}
.dodger-blue--ba-12 {
  border: 12px #1b9cfc solid !important;
}
.dodger-blue--bt-12 {
  border-top: 12px #1b9cfc solid !important;
}
.dodger-blue--br-12 {
  border-right: 12px #1b9cfc solid !important;
}
.dodger-blue--bl-12 {
  border-left: 12px #1b9cfc solid !important;
}
.dodger-blue--bb-12 {
  border-bottom: 12px #1b9cfc solid !important;
}
.dodger-blue--by-12 {
  border-top: 12px #1b9cfc solid !important;
  border-bottom: 12px #1b9cfc solid !important;
}
.dodger-blue--bx-12 {
  border-right: 12px #1b9cfc solid !important;
  border-left: 12px #1b9cfc solid !important;
}
.dodger-blue--ba-13 {
  border: 13px #1b9cfc solid !important;
}
.dodger-blue--bt-13 {
  border-top: 13px #1b9cfc solid !important;
}
.dodger-blue--br-13 {
  border-right: 13px #1b9cfc solid !important;
}
.dodger-blue--bl-13 {
  border-left: 13px #1b9cfc solid !important;
}
.dodger-blue--bb-13 {
  border-bottom: 13px #1b9cfc solid !important;
}
.dodger-blue--by-13 {
  border-top: 13px #1b9cfc solid !important;
  border-bottom: 13px #1b9cfc solid !important;
}
.dodger-blue--bx-13 {
  border-right: 13px #1b9cfc solid !important;
  border-left: 13px #1b9cfc solid !important;
}
.dodger-blue--ba-14 {
  border: 14px #1b9cfc solid !important;
}
.dodger-blue--bt-14 {
  border-top: 14px #1b9cfc solid !important;
}
.dodger-blue--br-14 {
  border-right: 14px #1b9cfc solid !important;
}
.dodger-blue--bl-14 {
  border-left: 14px #1b9cfc solid !important;
}
.dodger-blue--bb-14 {
  border-bottom: 14px #1b9cfc solid !important;
}
.dodger-blue--by-14 {
  border-top: 14px #1b9cfc solid !important;
  border-bottom: 14px #1b9cfc solid !important;
}
.dodger-blue--bx-14 {
  border-right: 14px #1b9cfc solid !important;
  border-left: 14px #1b9cfc solid !important;
}
.dodger-blue--ba-15 {
  border: 15px #1b9cfc solid !important;
}
.dodger-blue--bt-15 {
  border-top: 15px #1b9cfc solid !important;
}
.dodger-blue--br-15 {
  border-right: 15px #1b9cfc solid !important;
}
.dodger-blue--bl-15 {
  border-left: 15px #1b9cfc solid !important;
}
.dodger-blue--bb-15 {
  border-bottom: 15px #1b9cfc solid !important;
}
.dodger-blue--by-15 {
  border-top: 15px #1b9cfc solid !important;
  border-bottom: 15px #1b9cfc solid !important;
}
.dodger-blue--bx-15 {
  border-right: 15px #1b9cfc solid !important;
  border-left: 15px #1b9cfc solid !important;
}
.dodger-blue--ba-16 {
  border: 16px #1b9cfc solid !important;
}
.dodger-blue--bt-16 {
  border-top: 16px #1b9cfc solid !important;
}
.dodger-blue--br-16 {
  border-right: 16px #1b9cfc solid !important;
}
.dodger-blue--bl-16 {
  border-left: 16px #1b9cfc solid !important;
}
.dodger-blue--bb-16 {
  border-bottom: 16px #1b9cfc solid !important;
}
.dodger-blue--by-16 {
  border-top: 16px #1b9cfc solid !important;
  border-bottom: 16px #1b9cfc solid !important;
}
.dodger-blue--bx-16 {
  border-right: 16px #1b9cfc solid !important;
  border-left: 16px #1b9cfc solid !important;
}
.dodger-blue--ba-17 {
  border: 17px #1b9cfc solid !important;
}
.dodger-blue--bt-17 {
  border-top: 17px #1b9cfc solid !important;
}
.dodger-blue--br-17 {
  border-right: 17px #1b9cfc solid !important;
}
.dodger-blue--bl-17 {
  border-left: 17px #1b9cfc solid !important;
}
.dodger-blue--bb-17 {
  border-bottom: 17px #1b9cfc solid !important;
}
.dodger-blue--by-17 {
  border-top: 17px #1b9cfc solid !important;
  border-bottom: 17px #1b9cfc solid !important;
}
.dodger-blue--bx-17 {
  border-right: 17px #1b9cfc solid !important;
  border-left: 17px #1b9cfc solid !important;
}
.dodger-blue--ba-18 {
  border: 18px #1b9cfc solid !important;
}
.dodger-blue--bt-18 {
  border-top: 18px #1b9cfc solid !important;
}
.dodger-blue--br-18 {
  border-right: 18px #1b9cfc solid !important;
}
.dodger-blue--bl-18 {
  border-left: 18px #1b9cfc solid !important;
}
.dodger-blue--bb-18 {
  border-bottom: 18px #1b9cfc solid !important;
}
.dodger-blue--by-18 {
  border-top: 18px #1b9cfc solid !important;
  border-bottom: 18px #1b9cfc solid !important;
}
.dodger-blue--bx-18 {
  border-right: 18px #1b9cfc solid !important;
  border-left: 18px #1b9cfc solid !important;
}
.dodger-blue--ba-19 {
  border: 19px #1b9cfc solid !important;
}
.dodger-blue--bt-19 {
  border-top: 19px #1b9cfc solid !important;
}
.dodger-blue--br-19 {
  border-right: 19px #1b9cfc solid !important;
}
.dodger-blue--bl-19 {
  border-left: 19px #1b9cfc solid !important;
}
.dodger-blue--bb-19 {
  border-bottom: 19px #1b9cfc solid !important;
}
.dodger-blue--by-19 {
  border-top: 19px #1b9cfc solid !important;
  border-bottom: 19px #1b9cfc solid !important;
}
.dodger-blue--bx-19 {
  border-right: 19px #1b9cfc solid !important;
  border-left: 19px #1b9cfc solid !important;
}
.dodger-blue--ba-20 {
  border: 20px #1b9cfc solid !important;
}
.dodger-blue--bt-20 {
  border-top: 20px #1b9cfc solid !important;
}
.dodger-blue--br-20 {
  border-right: 20px #1b9cfc solid !important;
}
.dodger-blue--bl-20 {
  border-left: 20px #1b9cfc solid !important;
}
.dodger-blue--bb-20 {
  border-bottom: 20px #1b9cfc solid !important;
}
.dodger-blue--by-20 {
  border-top: 20px #1b9cfc solid !important;
  border-bottom: 20px #1b9cfc solid !important;
}
.dodger-blue--bx-20 {
  border-right: 20px #1b9cfc solid !important;
  border-left: 20px #1b9cfc solid !important;
}
.dodger-blue--ba-21 {
  border: 21px #1b9cfc solid !important;
}
.dodger-blue--bt-21 {
  border-top: 21px #1b9cfc solid !important;
}
.dodger-blue--br-21 {
  border-right: 21px #1b9cfc solid !important;
}
.dodger-blue--bl-21 {
  border-left: 21px #1b9cfc solid !important;
}
.dodger-blue--bb-21 {
  border-bottom: 21px #1b9cfc solid !important;
}
.dodger-blue--by-21 {
  border-top: 21px #1b9cfc solid !important;
  border-bottom: 21px #1b9cfc solid !important;
}
.dodger-blue--bx-21 {
  border-right: 21px #1b9cfc solid !important;
  border-left: 21px #1b9cfc solid !important;
}
.dodger-blue--ba-22 {
  border: 22px #1b9cfc solid !important;
}
.dodger-blue--bt-22 {
  border-top: 22px #1b9cfc solid !important;
}
.dodger-blue--br-22 {
  border-right: 22px #1b9cfc solid !important;
}
.dodger-blue--bl-22 {
  border-left: 22px #1b9cfc solid !important;
}
.dodger-blue--bb-22 {
  border-bottom: 22px #1b9cfc solid !important;
}
.dodger-blue--by-22 {
  border-top: 22px #1b9cfc solid !important;
  border-bottom: 22px #1b9cfc solid !important;
}
.dodger-blue--bx-22 {
  border-right: 22px #1b9cfc solid !important;
  border-left: 22px #1b9cfc solid !important;
}
.dodger-blue--ba-23 {
  border: 23px #1b9cfc solid !important;
}
.dodger-blue--bt-23 {
  border-top: 23px #1b9cfc solid !important;
}
.dodger-blue--br-23 {
  border-right: 23px #1b9cfc solid !important;
}
.dodger-blue--bl-23 {
  border-left: 23px #1b9cfc solid !important;
}
.dodger-blue--bb-23 {
  border-bottom: 23px #1b9cfc solid !important;
}
.dodger-blue--by-23 {
  border-top: 23px #1b9cfc solid !important;
  border-bottom: 23px #1b9cfc solid !important;
}
.dodger-blue--bx-23 {
  border-right: 23px #1b9cfc solid !important;
  border-left: 23px #1b9cfc solid !important;
}
.dodger-blue--ba-24 {
  border: 24px #1b9cfc solid !important;
}
.dodger-blue--bt-24 {
  border-top: 24px #1b9cfc solid !important;
}
.dodger-blue--br-24 {
  border-right: 24px #1b9cfc solid !important;
}
.dodger-blue--bl-24 {
  border-left: 24px #1b9cfc solid !important;
}
.dodger-blue--bb-24 {
  border-bottom: 24px #1b9cfc solid !important;
}
.dodger-blue--by-24 {
  border-top: 24px #1b9cfc solid !important;
  border-bottom: 24px #1b9cfc solid !important;
}
.dodger-blue--bx-24 {
  border-right: 24px #1b9cfc solid !important;
  border-left: 24px #1b9cfc solid !important;
}
.dodger-blue--ba-25 {
  border: 25px #1b9cfc solid !important;
}
.dodger-blue--bt-25 {
  border-top: 25px #1b9cfc solid !important;
}
.dodger-blue--br-25 {
  border-right: 25px #1b9cfc solid !important;
}
.dodger-blue--bl-25 {
  border-left: 25px #1b9cfc solid !important;
}
.dodger-blue--bb-25 {
  border-bottom: 25px #1b9cfc solid !important;
}
.dodger-blue--by-25 {
  border-top: 25px #1b9cfc solid !important;
  border-bottom: 25px #1b9cfc solid !important;
}
.dodger-blue--bx-25 {
  border-right: 25px #1b9cfc solid !important;
  border-left: 25px #1b9cfc solid !important;
}
.dodger-blue--ba-26 {
  border: 26px #1b9cfc solid !important;
}
.dodger-blue--bt-26 {
  border-top: 26px #1b9cfc solid !important;
}
.dodger-blue--br-26 {
  border-right: 26px #1b9cfc solid !important;
}
.dodger-blue--bl-26 {
  border-left: 26px #1b9cfc solid !important;
}
.dodger-blue--bb-26 {
  border-bottom: 26px #1b9cfc solid !important;
}
.dodger-blue--by-26 {
  border-top: 26px #1b9cfc solid !important;
  border-bottom: 26px #1b9cfc solid !important;
}
.dodger-blue--bx-26 {
  border-right: 26px #1b9cfc solid !important;
  border-left: 26px #1b9cfc solid !important;
}
.dodger-blue--ba-27 {
  border: 27px #1b9cfc solid !important;
}
.dodger-blue--bt-27 {
  border-top: 27px #1b9cfc solid !important;
}
.dodger-blue--br-27 {
  border-right: 27px #1b9cfc solid !important;
}
.dodger-blue--bl-27 {
  border-left: 27px #1b9cfc solid !important;
}
.dodger-blue--bb-27 {
  border-bottom: 27px #1b9cfc solid !important;
}
.dodger-blue--by-27 {
  border-top: 27px #1b9cfc solid !important;
  border-bottom: 27px #1b9cfc solid !important;
}
.dodger-blue--bx-27 {
  border-right: 27px #1b9cfc solid !important;
  border-left: 27px #1b9cfc solid !important;
}
.dodger-blue--ba-28 {
  border: 28px #1b9cfc solid !important;
}
.dodger-blue--bt-28 {
  border-top: 28px #1b9cfc solid !important;
}
.dodger-blue--br-28 {
  border-right: 28px #1b9cfc solid !important;
}
.dodger-blue--bl-28 {
  border-left: 28px #1b9cfc solid !important;
}
.dodger-blue--bb-28 {
  border-bottom: 28px #1b9cfc solid !important;
}
.dodger-blue--by-28 {
  border-top: 28px #1b9cfc solid !important;
  border-bottom: 28px #1b9cfc solid !important;
}
.dodger-blue--bx-28 {
  border-right: 28px #1b9cfc solid !important;
  border-left: 28px #1b9cfc solid !important;
}
.dodger-blue--ba-29 {
  border: 29px #1b9cfc solid !important;
}
.dodger-blue--bt-29 {
  border-top: 29px #1b9cfc solid !important;
}
.dodger-blue--br-29 {
  border-right: 29px #1b9cfc solid !important;
}
.dodger-blue--bl-29 {
  border-left: 29px #1b9cfc solid !important;
}
.dodger-blue--bb-29 {
  border-bottom: 29px #1b9cfc solid !important;
}
.dodger-blue--by-29 {
  border-top: 29px #1b9cfc solid !important;
  border-bottom: 29px #1b9cfc solid !important;
}
.dodger-blue--bx-29 {
  border-right: 29px #1b9cfc solid !important;
  border-left: 29px #1b9cfc solid !important;
}
.dodger-blue--ba-30 {
  border: 30px #1b9cfc solid !important;
}
.dodger-blue--bt-30 {
  border-top: 30px #1b9cfc solid !important;
}
.dodger-blue--br-30 {
  border-right: 30px #1b9cfc solid !important;
}
.dodger-blue--bl-30 {
  border-left: 30px #1b9cfc solid !important;
}
.dodger-blue--bb-30 {
  border-bottom: 30px #1b9cfc solid !important;
}
.dodger-blue--by-30 {
  border-top: 30px #1b9cfc solid !important;
  border-bottom: 30px #1b9cfc solid !important;
}
.dodger-blue--bx-30 {
  border-right: 30px #1b9cfc solid !important;
  border-left: 30px #1b9cfc solid !important;
}
.dodger-blue--ba-31 {
  border: 31px #1b9cfc solid !important;
}
.dodger-blue--bt-31 {
  border-top: 31px #1b9cfc solid !important;
}
.dodger-blue--br-31 {
  border-right: 31px #1b9cfc solid !important;
}
.dodger-blue--bl-31 {
  border-left: 31px #1b9cfc solid !important;
}
.dodger-blue--bb-31 {
  border-bottom: 31px #1b9cfc solid !important;
}
.dodger-blue--by-31 {
  border-top: 31px #1b9cfc solid !important;
  border-bottom: 31px #1b9cfc solid !important;
}
.dodger-blue--bx-31 {
  border-right: 31px #1b9cfc solid !important;
  border-left: 31px #1b9cfc solid !important;
}
.dodger-blue--ba-32 {
  border: 32px #1b9cfc solid !important;
}
.dodger-blue--bt-32 {
  border-top: 32px #1b9cfc solid !important;
}
.dodger-blue--br-32 {
  border-right: 32px #1b9cfc solid !important;
}
.dodger-blue--bl-32 {
  border-left: 32px #1b9cfc solid !important;
}
.dodger-blue--bb-32 {
  border-bottom: 32px #1b9cfc solid !important;
}
.dodger-blue--by-32 {
  border-top: 32px #1b9cfc solid !important;
  border-bottom: 32px #1b9cfc solid !important;
}
.dodger-blue--bx-32 {
  border-right: 32px #1b9cfc solid !important;
  border-left: 32px #1b9cfc solid !important;
}
.dodger-blue--ba-33 {
  border: 33px #1b9cfc solid !important;
}
.dodger-blue--bt-33 {
  border-top: 33px #1b9cfc solid !important;
}
.dodger-blue--br-33 {
  border-right: 33px #1b9cfc solid !important;
}
.dodger-blue--bl-33 {
  border-left: 33px #1b9cfc solid !important;
}
.dodger-blue--bb-33 {
  border-bottom: 33px #1b9cfc solid !important;
}
.dodger-blue--by-33 {
  border-top: 33px #1b9cfc solid !important;
  border-bottom: 33px #1b9cfc solid !important;
}
.dodger-blue--bx-33 {
  border-right: 33px #1b9cfc solid !important;
  border-left: 33px #1b9cfc solid !important;
}
.dodger-blue--ba-34 {
  border: 34px #1b9cfc solid !important;
}
.dodger-blue--bt-34 {
  border-top: 34px #1b9cfc solid !important;
}
.dodger-blue--br-34 {
  border-right: 34px #1b9cfc solid !important;
}
.dodger-blue--bl-34 {
  border-left: 34px #1b9cfc solid !important;
}
.dodger-blue--bb-34 {
  border-bottom: 34px #1b9cfc solid !important;
}
.dodger-blue--by-34 {
  border-top: 34px #1b9cfc solid !important;
  border-bottom: 34px #1b9cfc solid !important;
}
.dodger-blue--bx-34 {
  border-right: 34px #1b9cfc solid !important;
  border-left: 34px #1b9cfc solid !important;
}
.dodger-blue--ba-35 {
  border: 35px #1b9cfc solid !important;
}
.dodger-blue--bt-35 {
  border-top: 35px #1b9cfc solid !important;
}
.dodger-blue--br-35 {
  border-right: 35px #1b9cfc solid !important;
}
.dodger-blue--bl-35 {
  border-left: 35px #1b9cfc solid !important;
}
.dodger-blue--bb-35 {
  border-bottom: 35px #1b9cfc solid !important;
}
.dodger-blue--by-35 {
  border-top: 35px #1b9cfc solid !important;
  border-bottom: 35px #1b9cfc solid !important;
}
.dodger-blue--bx-35 {
  border-right: 35px #1b9cfc solid !important;
  border-left: 35px #1b9cfc solid !important;
}
.dodger-blue--ba-36 {
  border: 36px #1b9cfc solid !important;
}
.dodger-blue--bt-36 {
  border-top: 36px #1b9cfc solid !important;
}
.dodger-blue--br-36 {
  border-right: 36px #1b9cfc solid !important;
}
.dodger-blue--bl-36 {
  border-left: 36px #1b9cfc solid !important;
}
.dodger-blue--bb-36 {
  border-bottom: 36px #1b9cfc solid !important;
}
.dodger-blue--by-36 {
  border-top: 36px #1b9cfc solid !important;
  border-bottom: 36px #1b9cfc solid !important;
}
.dodger-blue--bx-36 {
  border-right: 36px #1b9cfc solid !important;
  border-left: 36px #1b9cfc solid !important;
}
.dodger-blue--ba-37 {
  border: 37px #1b9cfc solid !important;
}
.dodger-blue--bt-37 {
  border-top: 37px #1b9cfc solid !important;
}
.dodger-blue--br-37 {
  border-right: 37px #1b9cfc solid !important;
}
.dodger-blue--bl-37 {
  border-left: 37px #1b9cfc solid !important;
}
.dodger-blue--bb-37 {
  border-bottom: 37px #1b9cfc solid !important;
}
.dodger-blue--by-37 {
  border-top: 37px #1b9cfc solid !important;
  border-bottom: 37px #1b9cfc solid !important;
}
.dodger-blue--bx-37 {
  border-right: 37px #1b9cfc solid !important;
  border-left: 37px #1b9cfc solid !important;
}
.dodger-blue--ba-38 {
  border: 38px #1b9cfc solid !important;
}
.dodger-blue--bt-38 {
  border-top: 38px #1b9cfc solid !important;
}
.dodger-blue--br-38 {
  border-right: 38px #1b9cfc solid !important;
}
.dodger-blue--bl-38 {
  border-left: 38px #1b9cfc solid !important;
}
.dodger-blue--bb-38 {
  border-bottom: 38px #1b9cfc solid !important;
}
.dodger-blue--by-38 {
  border-top: 38px #1b9cfc solid !important;
  border-bottom: 38px #1b9cfc solid !important;
}
.dodger-blue--bx-38 {
  border-right: 38px #1b9cfc solid !important;
  border-left: 38px #1b9cfc solid !important;
}
.dodger-blue--ba-39 {
  border: 39px #1b9cfc solid !important;
}
.dodger-blue--bt-39 {
  border-top: 39px #1b9cfc solid !important;
}
.dodger-blue--br-39 {
  border-right: 39px #1b9cfc solid !important;
}
.dodger-blue--bl-39 {
  border-left: 39px #1b9cfc solid !important;
}
.dodger-blue--bb-39 {
  border-bottom: 39px #1b9cfc solid !important;
}
.dodger-blue--by-39 {
  border-top: 39px #1b9cfc solid !important;
  border-bottom: 39px #1b9cfc solid !important;
}
.dodger-blue--bx-39 {
  border-right: 39px #1b9cfc solid !important;
  border-left: 39px #1b9cfc solid !important;
}
.dodger-blue--ba-40 {
  border: 40px #1b9cfc solid !important;
}
.dodger-blue--bt-40 {
  border-top: 40px #1b9cfc solid !important;
}
.dodger-blue--br-40 {
  border-right: 40px #1b9cfc solid !important;
}
.dodger-blue--bl-40 {
  border-left: 40px #1b9cfc solid !important;
}
.dodger-blue--bb-40 {
  border-bottom: 40px #1b9cfc solid !important;
}
.dodger-blue--by-40 {
  border-top: 40px #1b9cfc solid !important;
  border-bottom: 40px #1b9cfc solid !important;
}
.dodger-blue--bx-40 {
  border-right: 40px #1b9cfc solid !important;
  border-left: 40px #1b9cfc solid !important;
}
.dodger-blue--ba-41 {
  border: 41px #1b9cfc solid !important;
}
.dodger-blue--bt-41 {
  border-top: 41px #1b9cfc solid !important;
}
.dodger-blue--br-41 {
  border-right: 41px #1b9cfc solid !important;
}
.dodger-blue--bl-41 {
  border-left: 41px #1b9cfc solid !important;
}
.dodger-blue--bb-41 {
  border-bottom: 41px #1b9cfc solid !important;
}
.dodger-blue--by-41 {
  border-top: 41px #1b9cfc solid !important;
  border-bottom: 41px #1b9cfc solid !important;
}
.dodger-blue--bx-41 {
  border-right: 41px #1b9cfc solid !important;
  border-left: 41px #1b9cfc solid !important;
}
.dodger-blue--ba-42 {
  border: 42px #1b9cfc solid !important;
}
.dodger-blue--bt-42 {
  border-top: 42px #1b9cfc solid !important;
}
.dodger-blue--br-42 {
  border-right: 42px #1b9cfc solid !important;
}
.dodger-blue--bl-42 {
  border-left: 42px #1b9cfc solid !important;
}
.dodger-blue--bb-42 {
  border-bottom: 42px #1b9cfc solid !important;
}
.dodger-blue--by-42 {
  border-top: 42px #1b9cfc solid !important;
  border-bottom: 42px #1b9cfc solid !important;
}
.dodger-blue--bx-42 {
  border-right: 42px #1b9cfc solid !important;
  border-left: 42px #1b9cfc solid !important;
}
.dodger-blue--ba-43 {
  border: 43px #1b9cfc solid !important;
}
.dodger-blue--bt-43 {
  border-top: 43px #1b9cfc solid !important;
}
.dodger-blue--br-43 {
  border-right: 43px #1b9cfc solid !important;
}
.dodger-blue--bl-43 {
  border-left: 43px #1b9cfc solid !important;
}
.dodger-blue--bb-43 {
  border-bottom: 43px #1b9cfc solid !important;
}
.dodger-blue--by-43 {
  border-top: 43px #1b9cfc solid !important;
  border-bottom: 43px #1b9cfc solid !important;
}
.dodger-blue--bx-43 {
  border-right: 43px #1b9cfc solid !important;
  border-left: 43px #1b9cfc solid !important;
}
.dodger-blue--ba-44 {
  border: 44px #1b9cfc solid !important;
}
.dodger-blue--bt-44 {
  border-top: 44px #1b9cfc solid !important;
}
.dodger-blue--br-44 {
  border-right: 44px #1b9cfc solid !important;
}
.dodger-blue--bl-44 {
  border-left: 44px #1b9cfc solid !important;
}
.dodger-blue--bb-44 {
  border-bottom: 44px #1b9cfc solid !important;
}
.dodger-blue--by-44 {
  border-top: 44px #1b9cfc solid !important;
  border-bottom: 44px #1b9cfc solid !important;
}
.dodger-blue--bx-44 {
  border-right: 44px #1b9cfc solid !important;
  border-left: 44px #1b9cfc solid !important;
}
.dodger-blue--ba-45 {
  border: 45px #1b9cfc solid !important;
}
.dodger-blue--bt-45 {
  border-top: 45px #1b9cfc solid !important;
}
.dodger-blue--br-45 {
  border-right: 45px #1b9cfc solid !important;
}
.dodger-blue--bl-45 {
  border-left: 45px #1b9cfc solid !important;
}
.dodger-blue--bb-45 {
  border-bottom: 45px #1b9cfc solid !important;
}
.dodger-blue--by-45 {
  border-top: 45px #1b9cfc solid !important;
  border-bottom: 45px #1b9cfc solid !important;
}
.dodger-blue--bx-45 {
  border-right: 45px #1b9cfc solid !important;
  border-left: 45px #1b9cfc solid !important;
}
.dodger-blue--ba-46 {
  border: 46px #1b9cfc solid !important;
}
.dodger-blue--bt-46 {
  border-top: 46px #1b9cfc solid !important;
}
.dodger-blue--br-46 {
  border-right: 46px #1b9cfc solid !important;
}
.dodger-blue--bl-46 {
  border-left: 46px #1b9cfc solid !important;
}
.dodger-blue--bb-46 {
  border-bottom: 46px #1b9cfc solid !important;
}
.dodger-blue--by-46 {
  border-top: 46px #1b9cfc solid !important;
  border-bottom: 46px #1b9cfc solid !important;
}
.dodger-blue--bx-46 {
  border-right: 46px #1b9cfc solid !important;
  border-left: 46px #1b9cfc solid !important;
}
.dodger-blue--ba-47 {
  border: 47px #1b9cfc solid !important;
}
.dodger-blue--bt-47 {
  border-top: 47px #1b9cfc solid !important;
}
.dodger-blue--br-47 {
  border-right: 47px #1b9cfc solid !important;
}
.dodger-blue--bl-47 {
  border-left: 47px #1b9cfc solid !important;
}
.dodger-blue--bb-47 {
  border-bottom: 47px #1b9cfc solid !important;
}
.dodger-blue--by-47 {
  border-top: 47px #1b9cfc solid !important;
  border-bottom: 47px #1b9cfc solid !important;
}
.dodger-blue--bx-47 {
  border-right: 47px #1b9cfc solid !important;
  border-left: 47px #1b9cfc solid !important;
}
.dodger-blue--ba-48 {
  border: 48px #1b9cfc solid !important;
}
.dodger-blue--bt-48 {
  border-top: 48px #1b9cfc solid !important;
}
.dodger-blue--br-48 {
  border-right: 48px #1b9cfc solid !important;
}
.dodger-blue--bl-48 {
  border-left: 48px #1b9cfc solid !important;
}
.dodger-blue--bb-48 {
  border-bottom: 48px #1b9cfc solid !important;
}
.dodger-blue--by-48 {
  border-top: 48px #1b9cfc solid !important;
  border-bottom: 48px #1b9cfc solid !important;
}
.dodger-blue--bx-48 {
  border-right: 48px #1b9cfc solid !important;
  border-left: 48px #1b9cfc solid !important;
}
.dodger-blue--ba-49 {
  border: 49px #1b9cfc solid !important;
}
.dodger-blue--bt-49 {
  border-top: 49px #1b9cfc solid !important;
}
.dodger-blue--br-49 {
  border-right: 49px #1b9cfc solid !important;
}
.dodger-blue--bl-49 {
  border-left: 49px #1b9cfc solid !important;
}
.dodger-blue--bb-49 {
  border-bottom: 49px #1b9cfc solid !important;
}
.dodger-blue--by-49 {
  border-top: 49px #1b9cfc solid !important;
  border-bottom: 49px #1b9cfc solid !important;
}
.dodger-blue--bx-49 {
  border-right: 49px #1b9cfc solid !important;
  border-left: 49px #1b9cfc solid !important;
}
.dodger-blue--ba-50 {
  border: 50px #1b9cfc solid !important;
}
.dodger-blue--bt-50 {
  border-top: 50px #1b9cfc solid !important;
}
.dodger-blue--br-50 {
  border-right: 50px #1b9cfc solid !important;
}
.dodger-blue--bl-50 {
  border-left: 50px #1b9cfc solid !important;
}
.dodger-blue--bb-50 {
  border-bottom: 50px #1b9cfc solid !important;
}
.dodger-blue--by-50 {
  border-top: 50px #1b9cfc solid !important;
  border-bottom: 50px #1b9cfc solid !important;
}
.dodger-blue--bx-50 {
  border-right: 50px #1b9cfc solid !important;
  border-left: 50px #1b9cfc solid !important;
}
.dodger-blue--ba-51 {
  border: 51px #1b9cfc solid !important;
}
.dodger-blue--bt-51 {
  border-top: 51px #1b9cfc solid !important;
}
.dodger-blue--br-51 {
  border-right: 51px #1b9cfc solid !important;
}
.dodger-blue--bl-51 {
  border-left: 51px #1b9cfc solid !important;
}
.dodger-blue--bb-51 {
  border-bottom: 51px #1b9cfc solid !important;
}
.dodger-blue--by-51 {
  border-top: 51px #1b9cfc solid !important;
  border-bottom: 51px #1b9cfc solid !important;
}
.dodger-blue--bx-51 {
  border-right: 51px #1b9cfc solid !important;
  border-left: 51px #1b9cfc solid !important;
}
.dodger-blue--ba-52 {
  border: 52px #1b9cfc solid !important;
}
.dodger-blue--bt-52 {
  border-top: 52px #1b9cfc solid !important;
}
.dodger-blue--br-52 {
  border-right: 52px #1b9cfc solid !important;
}
.dodger-blue--bl-52 {
  border-left: 52px #1b9cfc solid !important;
}
.dodger-blue--bb-52 {
  border-bottom: 52px #1b9cfc solid !important;
}
.dodger-blue--by-52 {
  border-top: 52px #1b9cfc solid !important;
  border-bottom: 52px #1b9cfc solid !important;
}
.dodger-blue--bx-52 {
  border-right: 52px #1b9cfc solid !important;
  border-left: 52px #1b9cfc solid !important;
}
.dodger-blue--ba-53 {
  border: 53px #1b9cfc solid !important;
}
.dodger-blue--bt-53 {
  border-top: 53px #1b9cfc solid !important;
}
.dodger-blue--br-53 {
  border-right: 53px #1b9cfc solid !important;
}
.dodger-blue--bl-53 {
  border-left: 53px #1b9cfc solid !important;
}
.dodger-blue--bb-53 {
  border-bottom: 53px #1b9cfc solid !important;
}
.dodger-blue--by-53 {
  border-top: 53px #1b9cfc solid !important;
  border-bottom: 53px #1b9cfc solid !important;
}
.dodger-blue--bx-53 {
  border-right: 53px #1b9cfc solid !important;
  border-left: 53px #1b9cfc solid !important;
}
.dodger-blue--ba-54 {
  border: 54px #1b9cfc solid !important;
}
.dodger-blue--bt-54 {
  border-top: 54px #1b9cfc solid !important;
}
.dodger-blue--br-54 {
  border-right: 54px #1b9cfc solid !important;
}
.dodger-blue--bl-54 {
  border-left: 54px #1b9cfc solid !important;
}
.dodger-blue--bb-54 {
  border-bottom: 54px #1b9cfc solid !important;
}
.dodger-blue--by-54 {
  border-top: 54px #1b9cfc solid !important;
  border-bottom: 54px #1b9cfc solid !important;
}
.dodger-blue--bx-54 {
  border-right: 54px #1b9cfc solid !important;
  border-left: 54px #1b9cfc solid !important;
}
.dodger-blue--ba-55 {
  border: 55px #1b9cfc solid !important;
}
.dodger-blue--bt-55 {
  border-top: 55px #1b9cfc solid !important;
}
.dodger-blue--br-55 {
  border-right: 55px #1b9cfc solid !important;
}
.dodger-blue--bl-55 {
  border-left: 55px #1b9cfc solid !important;
}
.dodger-blue--bb-55 {
  border-bottom: 55px #1b9cfc solid !important;
}
.dodger-blue--by-55 {
  border-top: 55px #1b9cfc solid !important;
  border-bottom: 55px #1b9cfc solid !important;
}
.dodger-blue--bx-55 {
  border-right: 55px #1b9cfc solid !important;
  border-left: 55px #1b9cfc solid !important;
}
.dodger-blue--ba-56 {
  border: 56px #1b9cfc solid !important;
}
.dodger-blue--bt-56 {
  border-top: 56px #1b9cfc solid !important;
}
.dodger-blue--br-56 {
  border-right: 56px #1b9cfc solid !important;
}
.dodger-blue--bl-56 {
  border-left: 56px #1b9cfc solid !important;
}
.dodger-blue--bb-56 {
  border-bottom: 56px #1b9cfc solid !important;
}
.dodger-blue--by-56 {
  border-top: 56px #1b9cfc solid !important;
  border-bottom: 56px #1b9cfc solid !important;
}
.dodger-blue--bx-56 {
  border-right: 56px #1b9cfc solid !important;
  border-left: 56px #1b9cfc solid !important;
}
.dodger-blue--ba-57 {
  border: 57px #1b9cfc solid !important;
}
.dodger-blue--bt-57 {
  border-top: 57px #1b9cfc solid !important;
}
.dodger-blue--br-57 {
  border-right: 57px #1b9cfc solid !important;
}
.dodger-blue--bl-57 {
  border-left: 57px #1b9cfc solid !important;
}
.dodger-blue--bb-57 {
  border-bottom: 57px #1b9cfc solid !important;
}
.dodger-blue--by-57 {
  border-top: 57px #1b9cfc solid !important;
  border-bottom: 57px #1b9cfc solid !important;
}
.dodger-blue--bx-57 {
  border-right: 57px #1b9cfc solid !important;
  border-left: 57px #1b9cfc solid !important;
}
.dodger-blue--ba-58 {
  border: 58px #1b9cfc solid !important;
}
.dodger-blue--bt-58 {
  border-top: 58px #1b9cfc solid !important;
}
.dodger-blue--br-58 {
  border-right: 58px #1b9cfc solid !important;
}
.dodger-blue--bl-58 {
  border-left: 58px #1b9cfc solid !important;
}
.dodger-blue--bb-58 {
  border-bottom: 58px #1b9cfc solid !important;
}
.dodger-blue--by-58 {
  border-top: 58px #1b9cfc solid !important;
  border-bottom: 58px #1b9cfc solid !important;
}
.dodger-blue--bx-58 {
  border-right: 58px #1b9cfc solid !important;
  border-left: 58px #1b9cfc solid !important;
}
.dodger-blue--ba-59 {
  border: 59px #1b9cfc solid !important;
}
.dodger-blue--bt-59 {
  border-top: 59px #1b9cfc solid !important;
}
.dodger-blue--br-59 {
  border-right: 59px #1b9cfc solid !important;
}
.dodger-blue--bl-59 {
  border-left: 59px #1b9cfc solid !important;
}
.dodger-blue--bb-59 {
  border-bottom: 59px #1b9cfc solid !important;
}
.dodger-blue--by-59 {
  border-top: 59px #1b9cfc solid !important;
  border-bottom: 59px #1b9cfc solid !important;
}
.dodger-blue--bx-59 {
  border-right: 59px #1b9cfc solid !important;
  border-left: 59px #1b9cfc solid !important;
}
.dodger-blue--ba-60 {
  border: 60px #1b9cfc solid !important;
}
.dodger-blue--bt-60 {
  border-top: 60px #1b9cfc solid !important;
}
.dodger-blue--br-60 {
  border-right: 60px #1b9cfc solid !important;
}
.dodger-blue--bl-60 {
  border-left: 60px #1b9cfc solid !important;
}
.dodger-blue--bb-60 {
  border-bottom: 60px #1b9cfc solid !important;
}
.dodger-blue--by-60 {
  border-top: 60px #1b9cfc solid !important;
  border-bottom: 60px #1b9cfc solid !important;
}
.dodger-blue--bx-60 {
  border-right: 60px #1b9cfc solid !important;
  border-left: 60px #1b9cfc solid !important;
}
.dodger-blue--ba-61 {
  border: 61px #1b9cfc solid !important;
}
.dodger-blue--bt-61 {
  border-top: 61px #1b9cfc solid !important;
}
.dodger-blue--br-61 {
  border-right: 61px #1b9cfc solid !important;
}
.dodger-blue--bl-61 {
  border-left: 61px #1b9cfc solid !important;
}
.dodger-blue--bb-61 {
  border-bottom: 61px #1b9cfc solid !important;
}
.dodger-blue--by-61 {
  border-top: 61px #1b9cfc solid !important;
  border-bottom: 61px #1b9cfc solid !important;
}
.dodger-blue--bx-61 {
  border-right: 61px #1b9cfc solid !important;
  border-left: 61px #1b9cfc solid !important;
}
.dodger-blue--ba-62 {
  border: 62px #1b9cfc solid !important;
}
.dodger-blue--bt-62 {
  border-top: 62px #1b9cfc solid !important;
}
.dodger-blue--br-62 {
  border-right: 62px #1b9cfc solid !important;
}
.dodger-blue--bl-62 {
  border-left: 62px #1b9cfc solid !important;
}
.dodger-blue--bb-62 {
  border-bottom: 62px #1b9cfc solid !important;
}
.dodger-blue--by-62 {
  border-top: 62px #1b9cfc solid !important;
  border-bottom: 62px #1b9cfc solid !important;
}
.dodger-blue--bx-62 {
  border-right: 62px #1b9cfc solid !important;
  border-left: 62px #1b9cfc solid !important;
}
.dodger-blue--ba-63 {
  border: 63px #1b9cfc solid !important;
}
.dodger-blue--bt-63 {
  border-top: 63px #1b9cfc solid !important;
}
.dodger-blue--br-63 {
  border-right: 63px #1b9cfc solid !important;
}
.dodger-blue--bl-63 {
  border-left: 63px #1b9cfc solid !important;
}
.dodger-blue--bb-63 {
  border-bottom: 63px #1b9cfc solid !important;
}
.dodger-blue--by-63 {
  border-top: 63px #1b9cfc solid !important;
  border-bottom: 63px #1b9cfc solid !important;
}
.dodger-blue--bx-63 {
  border-right: 63px #1b9cfc solid !important;
  border-left: 63px #1b9cfc solid !important;
}
.dodger-blue--ba-64 {
  border: 64px #1b9cfc solid !important;
}
.dodger-blue--bt-64 {
  border-top: 64px #1b9cfc solid !important;
}
.dodger-blue--br-64 {
  border-right: 64px #1b9cfc solid !important;
}
.dodger-blue--bl-64 {
  border-left: 64px #1b9cfc solid !important;
}
.dodger-blue--bb-64 {
  border-bottom: 64px #1b9cfc solid !important;
}
.dodger-blue--by-64 {
  border-top: 64px #1b9cfc solid !important;
  border-bottom: 64px #1b9cfc solid !important;
}
.dodger-blue--bx-64 {
  border-right: 64px #1b9cfc solid !important;
  border-left: 64px #1b9cfc solid !important;
}
.dodger-blue--ba-65 {
  border: 65px #1b9cfc solid !important;
}
.dodger-blue--bt-65 {
  border-top: 65px #1b9cfc solid !important;
}
.dodger-blue--br-65 {
  border-right: 65px #1b9cfc solid !important;
}
.dodger-blue--bl-65 {
  border-left: 65px #1b9cfc solid !important;
}
.dodger-blue--bb-65 {
  border-bottom: 65px #1b9cfc solid !important;
}
.dodger-blue--by-65 {
  border-top: 65px #1b9cfc solid !important;
  border-bottom: 65px #1b9cfc solid !important;
}
.dodger-blue--bx-65 {
  border-right: 65px #1b9cfc solid !important;
  border-left: 65px #1b9cfc solid !important;
}
.dodger-blue--ba-66 {
  border: 66px #1b9cfc solid !important;
}
.dodger-blue--bt-66 {
  border-top: 66px #1b9cfc solid !important;
}
.dodger-blue--br-66 {
  border-right: 66px #1b9cfc solid !important;
}
.dodger-blue--bl-66 {
  border-left: 66px #1b9cfc solid !important;
}
.dodger-blue--bb-66 {
  border-bottom: 66px #1b9cfc solid !important;
}
.dodger-blue--by-66 {
  border-top: 66px #1b9cfc solid !important;
  border-bottom: 66px #1b9cfc solid !important;
}
.dodger-blue--bx-66 {
  border-right: 66px #1b9cfc solid !important;
  border-left: 66px #1b9cfc solid !important;
}
.dodger-blue--ba-67 {
  border: 67px #1b9cfc solid !important;
}
.dodger-blue--bt-67 {
  border-top: 67px #1b9cfc solid !important;
}
.dodger-blue--br-67 {
  border-right: 67px #1b9cfc solid !important;
}
.dodger-blue--bl-67 {
  border-left: 67px #1b9cfc solid !important;
}
.dodger-blue--bb-67 {
  border-bottom: 67px #1b9cfc solid !important;
}
.dodger-blue--by-67 {
  border-top: 67px #1b9cfc solid !important;
  border-bottom: 67px #1b9cfc solid !important;
}
.dodger-blue--bx-67 {
  border-right: 67px #1b9cfc solid !important;
  border-left: 67px #1b9cfc solid !important;
}
.dodger-blue--ba-68 {
  border: 68px #1b9cfc solid !important;
}
.dodger-blue--bt-68 {
  border-top: 68px #1b9cfc solid !important;
}
.dodger-blue--br-68 {
  border-right: 68px #1b9cfc solid !important;
}
.dodger-blue--bl-68 {
  border-left: 68px #1b9cfc solid !important;
}
.dodger-blue--bb-68 {
  border-bottom: 68px #1b9cfc solid !important;
}
.dodger-blue--by-68 {
  border-top: 68px #1b9cfc solid !important;
  border-bottom: 68px #1b9cfc solid !important;
}
.dodger-blue--bx-68 {
  border-right: 68px #1b9cfc solid !important;
  border-left: 68px #1b9cfc solid !important;
}
.dodger-blue--ba-69 {
  border: 69px #1b9cfc solid !important;
}
.dodger-blue--bt-69 {
  border-top: 69px #1b9cfc solid !important;
}
.dodger-blue--br-69 {
  border-right: 69px #1b9cfc solid !important;
}
.dodger-blue--bl-69 {
  border-left: 69px #1b9cfc solid !important;
}
.dodger-blue--bb-69 {
  border-bottom: 69px #1b9cfc solid !important;
}
.dodger-blue--by-69 {
  border-top: 69px #1b9cfc solid !important;
  border-bottom: 69px #1b9cfc solid !important;
}
.dodger-blue--bx-69 {
  border-right: 69px #1b9cfc solid !important;
  border-left: 69px #1b9cfc solid !important;
}
.dodger-blue--ba-70 {
  border: 70px #1b9cfc solid !important;
}
.dodger-blue--bt-70 {
  border-top: 70px #1b9cfc solid !important;
}
.dodger-blue--br-70 {
  border-right: 70px #1b9cfc solid !important;
}
.dodger-blue--bl-70 {
  border-left: 70px #1b9cfc solid !important;
}
.dodger-blue--bb-70 {
  border-bottom: 70px #1b9cfc solid !important;
}
.dodger-blue--by-70 {
  border-top: 70px #1b9cfc solid !important;
  border-bottom: 70px #1b9cfc solid !important;
}
.dodger-blue--bx-70 {
  border-right: 70px #1b9cfc solid !important;
  border-left: 70px #1b9cfc solid !important;
}
.dodger-blue--ba-71 {
  border: 71px #1b9cfc solid !important;
}
.dodger-blue--bt-71 {
  border-top: 71px #1b9cfc solid !important;
}
.dodger-blue--br-71 {
  border-right: 71px #1b9cfc solid !important;
}
.dodger-blue--bl-71 {
  border-left: 71px #1b9cfc solid !important;
}
.dodger-blue--bb-71 {
  border-bottom: 71px #1b9cfc solid !important;
}
.dodger-blue--by-71 {
  border-top: 71px #1b9cfc solid !important;
  border-bottom: 71px #1b9cfc solid !important;
}
.dodger-blue--bx-71 {
  border-right: 71px #1b9cfc solid !important;
  border-left: 71px #1b9cfc solid !important;
}
.dodger-blue--ba-72 {
  border: 72px #1b9cfc solid !important;
}
.dodger-blue--bt-72 {
  border-top: 72px #1b9cfc solid !important;
}
.dodger-blue--br-72 {
  border-right: 72px #1b9cfc solid !important;
}
.dodger-blue--bl-72 {
  border-left: 72px #1b9cfc solid !important;
}
.dodger-blue--bb-72 {
  border-bottom: 72px #1b9cfc solid !important;
}
.dodger-blue--by-72 {
  border-top: 72px #1b9cfc solid !important;
  border-bottom: 72px #1b9cfc solid !important;
}
.dodger-blue--bx-72 {
  border-right: 72px #1b9cfc solid !important;
  border-left: 72px #1b9cfc solid !important;
}
.dodger-blue--ba-73 {
  border: 73px #1b9cfc solid !important;
}
.dodger-blue--bt-73 {
  border-top: 73px #1b9cfc solid !important;
}
.dodger-blue--br-73 {
  border-right: 73px #1b9cfc solid !important;
}
.dodger-blue--bl-73 {
  border-left: 73px #1b9cfc solid !important;
}
.dodger-blue--bb-73 {
  border-bottom: 73px #1b9cfc solid !important;
}
.dodger-blue--by-73 {
  border-top: 73px #1b9cfc solid !important;
  border-bottom: 73px #1b9cfc solid !important;
}
.dodger-blue--bx-73 {
  border-right: 73px #1b9cfc solid !important;
  border-left: 73px #1b9cfc solid !important;
}
.dodger-blue--ba-74 {
  border: 74px #1b9cfc solid !important;
}
.dodger-blue--bt-74 {
  border-top: 74px #1b9cfc solid !important;
}
.dodger-blue--br-74 {
  border-right: 74px #1b9cfc solid !important;
}
.dodger-blue--bl-74 {
  border-left: 74px #1b9cfc solid !important;
}
.dodger-blue--bb-74 {
  border-bottom: 74px #1b9cfc solid !important;
}
.dodger-blue--by-74 {
  border-top: 74px #1b9cfc solid !important;
  border-bottom: 74px #1b9cfc solid !important;
}
.dodger-blue--bx-74 {
  border-right: 74px #1b9cfc solid !important;
  border-left: 74px #1b9cfc solid !important;
}
.dodger-blue--ba-75 {
  border: 75px #1b9cfc solid !important;
}
.dodger-blue--bt-75 {
  border-top: 75px #1b9cfc solid !important;
}
.dodger-blue--br-75 {
  border-right: 75px #1b9cfc solid !important;
}
.dodger-blue--bl-75 {
  border-left: 75px #1b9cfc solid !important;
}
.dodger-blue--bb-75 {
  border-bottom: 75px #1b9cfc solid !important;
}
.dodger-blue--by-75 {
  border-top: 75px #1b9cfc solid !important;
  border-bottom: 75px #1b9cfc solid !important;
}
.dodger-blue--bx-75 {
  border-right: 75px #1b9cfc solid !important;
  border-left: 75px #1b9cfc solid !important;
}
.dodger-blue--ba-76 {
  border: 76px #1b9cfc solid !important;
}
.dodger-blue--bt-76 {
  border-top: 76px #1b9cfc solid !important;
}
.dodger-blue--br-76 {
  border-right: 76px #1b9cfc solid !important;
}
.dodger-blue--bl-76 {
  border-left: 76px #1b9cfc solid !important;
}
.dodger-blue--bb-76 {
  border-bottom: 76px #1b9cfc solid !important;
}
.dodger-blue--by-76 {
  border-top: 76px #1b9cfc solid !important;
  border-bottom: 76px #1b9cfc solid !important;
}
.dodger-blue--bx-76 {
  border-right: 76px #1b9cfc solid !important;
  border-left: 76px #1b9cfc solid !important;
}
.dodger-blue--ba-77 {
  border: 77px #1b9cfc solid !important;
}
.dodger-blue--bt-77 {
  border-top: 77px #1b9cfc solid !important;
}
.dodger-blue--br-77 {
  border-right: 77px #1b9cfc solid !important;
}
.dodger-blue--bl-77 {
  border-left: 77px #1b9cfc solid !important;
}
.dodger-blue--bb-77 {
  border-bottom: 77px #1b9cfc solid !important;
}
.dodger-blue--by-77 {
  border-top: 77px #1b9cfc solid !important;
  border-bottom: 77px #1b9cfc solid !important;
}
.dodger-blue--bx-77 {
  border-right: 77px #1b9cfc solid !important;
  border-left: 77px #1b9cfc solid !important;
}
.dodger-blue--ba-78 {
  border: 78px #1b9cfc solid !important;
}
.dodger-blue--bt-78 {
  border-top: 78px #1b9cfc solid !important;
}
.dodger-blue--br-78 {
  border-right: 78px #1b9cfc solid !important;
}
.dodger-blue--bl-78 {
  border-left: 78px #1b9cfc solid !important;
}
.dodger-blue--bb-78 {
  border-bottom: 78px #1b9cfc solid !important;
}
.dodger-blue--by-78 {
  border-top: 78px #1b9cfc solid !important;
  border-bottom: 78px #1b9cfc solid !important;
}
.dodger-blue--bx-78 {
  border-right: 78px #1b9cfc solid !important;
  border-left: 78px #1b9cfc solid !important;
}
.dodger-blue--ba-79 {
  border: 79px #1b9cfc solid !important;
}
.dodger-blue--bt-79 {
  border-top: 79px #1b9cfc solid !important;
}
.dodger-blue--br-79 {
  border-right: 79px #1b9cfc solid !important;
}
.dodger-blue--bl-79 {
  border-left: 79px #1b9cfc solid !important;
}
.dodger-blue--bb-79 {
  border-bottom: 79px #1b9cfc solid !important;
}
.dodger-blue--by-79 {
  border-top: 79px #1b9cfc solid !important;
  border-bottom: 79px #1b9cfc solid !important;
}
.dodger-blue--bx-79 {
  border-right: 79px #1b9cfc solid !important;
  border-left: 79px #1b9cfc solid !important;
}
.dodger-blue--ba-80 {
  border: 80px #1b9cfc solid !important;
}
.dodger-blue--bt-80 {
  border-top: 80px #1b9cfc solid !important;
}
.dodger-blue--br-80 {
  border-right: 80px #1b9cfc solid !important;
}
.dodger-blue--bl-80 {
  border-left: 80px #1b9cfc solid !important;
}
.dodger-blue--bb-80 {
  border-bottom: 80px #1b9cfc solid !important;
}
.dodger-blue--by-80 {
  border-top: 80px #1b9cfc solid !important;
  border-bottom: 80px #1b9cfc solid !important;
}
.dodger-blue--bx-80 {
  border-right: 80px #1b9cfc solid !important;
  border-left: 80px #1b9cfc solid !important;
}
.dodger-blue--ba-81 {
  border: 81px #1b9cfc solid !important;
}
.dodger-blue--bt-81 {
  border-top: 81px #1b9cfc solid !important;
}
.dodger-blue--br-81 {
  border-right: 81px #1b9cfc solid !important;
}
.dodger-blue--bl-81 {
  border-left: 81px #1b9cfc solid !important;
}
.dodger-blue--bb-81 {
  border-bottom: 81px #1b9cfc solid !important;
}
.dodger-blue--by-81 {
  border-top: 81px #1b9cfc solid !important;
  border-bottom: 81px #1b9cfc solid !important;
}
.dodger-blue--bx-81 {
  border-right: 81px #1b9cfc solid !important;
  border-left: 81px #1b9cfc solid !important;
}
.dodger-blue--ba-82 {
  border: 82px #1b9cfc solid !important;
}
.dodger-blue--bt-82 {
  border-top: 82px #1b9cfc solid !important;
}
.dodger-blue--br-82 {
  border-right: 82px #1b9cfc solid !important;
}
.dodger-blue--bl-82 {
  border-left: 82px #1b9cfc solid !important;
}
.dodger-blue--bb-82 {
  border-bottom: 82px #1b9cfc solid !important;
}
.dodger-blue--by-82 {
  border-top: 82px #1b9cfc solid !important;
  border-bottom: 82px #1b9cfc solid !important;
}
.dodger-blue--bx-82 {
  border-right: 82px #1b9cfc solid !important;
  border-left: 82px #1b9cfc solid !important;
}
.dodger-blue--ba-83 {
  border: 83px #1b9cfc solid !important;
}
.dodger-blue--bt-83 {
  border-top: 83px #1b9cfc solid !important;
}
.dodger-blue--br-83 {
  border-right: 83px #1b9cfc solid !important;
}
.dodger-blue--bl-83 {
  border-left: 83px #1b9cfc solid !important;
}
.dodger-blue--bb-83 {
  border-bottom: 83px #1b9cfc solid !important;
}
.dodger-blue--by-83 {
  border-top: 83px #1b9cfc solid !important;
  border-bottom: 83px #1b9cfc solid !important;
}
.dodger-blue--bx-83 {
  border-right: 83px #1b9cfc solid !important;
  border-left: 83px #1b9cfc solid !important;
}
.dodger-blue--ba-84 {
  border: 84px #1b9cfc solid !important;
}
.dodger-blue--bt-84 {
  border-top: 84px #1b9cfc solid !important;
}
.dodger-blue--br-84 {
  border-right: 84px #1b9cfc solid !important;
}
.dodger-blue--bl-84 {
  border-left: 84px #1b9cfc solid !important;
}
.dodger-blue--bb-84 {
  border-bottom: 84px #1b9cfc solid !important;
}
.dodger-blue--by-84 {
  border-top: 84px #1b9cfc solid !important;
  border-bottom: 84px #1b9cfc solid !important;
}
.dodger-blue--bx-84 {
  border-right: 84px #1b9cfc solid !important;
  border-left: 84px #1b9cfc solid !important;
}
.dodger-blue--ba-85 {
  border: 85px #1b9cfc solid !important;
}
.dodger-blue--bt-85 {
  border-top: 85px #1b9cfc solid !important;
}
.dodger-blue--br-85 {
  border-right: 85px #1b9cfc solid !important;
}
.dodger-blue--bl-85 {
  border-left: 85px #1b9cfc solid !important;
}
.dodger-blue--bb-85 {
  border-bottom: 85px #1b9cfc solid !important;
}
.dodger-blue--by-85 {
  border-top: 85px #1b9cfc solid !important;
  border-bottom: 85px #1b9cfc solid !important;
}
.dodger-blue--bx-85 {
  border-right: 85px #1b9cfc solid !important;
  border-left: 85px #1b9cfc solid !important;
}
.dodger-blue--ba-86 {
  border: 86px #1b9cfc solid !important;
}
.dodger-blue--bt-86 {
  border-top: 86px #1b9cfc solid !important;
}
.dodger-blue--br-86 {
  border-right: 86px #1b9cfc solid !important;
}
.dodger-blue--bl-86 {
  border-left: 86px #1b9cfc solid !important;
}
.dodger-blue--bb-86 {
  border-bottom: 86px #1b9cfc solid !important;
}
.dodger-blue--by-86 {
  border-top: 86px #1b9cfc solid !important;
  border-bottom: 86px #1b9cfc solid !important;
}
.dodger-blue--bx-86 {
  border-right: 86px #1b9cfc solid !important;
  border-left: 86px #1b9cfc solid !important;
}
.dodger-blue--ba-87 {
  border: 87px #1b9cfc solid !important;
}
.dodger-blue--bt-87 {
  border-top: 87px #1b9cfc solid !important;
}
.dodger-blue--br-87 {
  border-right: 87px #1b9cfc solid !important;
}
.dodger-blue--bl-87 {
  border-left: 87px #1b9cfc solid !important;
}
.dodger-blue--bb-87 {
  border-bottom: 87px #1b9cfc solid !important;
}
.dodger-blue--by-87 {
  border-top: 87px #1b9cfc solid !important;
  border-bottom: 87px #1b9cfc solid !important;
}
.dodger-blue--bx-87 {
  border-right: 87px #1b9cfc solid !important;
  border-left: 87px #1b9cfc solid !important;
}
.dodger-blue--ba-88 {
  border: 88px #1b9cfc solid !important;
}
.dodger-blue--bt-88 {
  border-top: 88px #1b9cfc solid !important;
}
.dodger-blue--br-88 {
  border-right: 88px #1b9cfc solid !important;
}
.dodger-blue--bl-88 {
  border-left: 88px #1b9cfc solid !important;
}
.dodger-blue--bb-88 {
  border-bottom: 88px #1b9cfc solid !important;
}
.dodger-blue--by-88 {
  border-top: 88px #1b9cfc solid !important;
  border-bottom: 88px #1b9cfc solid !important;
}
.dodger-blue--bx-88 {
  border-right: 88px #1b9cfc solid !important;
  border-left: 88px #1b9cfc solid !important;
}
.dodger-blue--ba-89 {
  border: 89px #1b9cfc solid !important;
}
.dodger-blue--bt-89 {
  border-top: 89px #1b9cfc solid !important;
}
.dodger-blue--br-89 {
  border-right: 89px #1b9cfc solid !important;
}
.dodger-blue--bl-89 {
  border-left: 89px #1b9cfc solid !important;
}
.dodger-blue--bb-89 {
  border-bottom: 89px #1b9cfc solid !important;
}
.dodger-blue--by-89 {
  border-top: 89px #1b9cfc solid !important;
  border-bottom: 89px #1b9cfc solid !important;
}
.dodger-blue--bx-89 {
  border-right: 89px #1b9cfc solid !important;
  border-left: 89px #1b9cfc solid !important;
}
.dodger-blue--ba-90 {
  border: 90px #1b9cfc solid !important;
}
.dodger-blue--bt-90 {
  border-top: 90px #1b9cfc solid !important;
}
.dodger-blue--br-90 {
  border-right: 90px #1b9cfc solid !important;
}
.dodger-blue--bl-90 {
  border-left: 90px #1b9cfc solid !important;
}
.dodger-blue--bb-90 {
  border-bottom: 90px #1b9cfc solid !important;
}
.dodger-blue--by-90 {
  border-top: 90px #1b9cfc solid !important;
  border-bottom: 90px #1b9cfc solid !important;
}
.dodger-blue--bx-90 {
  border-right: 90px #1b9cfc solid !important;
  border-left: 90px #1b9cfc solid !important;
}
.dodger-blue--ba-91 {
  border: 91px #1b9cfc solid !important;
}
.dodger-blue--bt-91 {
  border-top: 91px #1b9cfc solid !important;
}
.dodger-blue--br-91 {
  border-right: 91px #1b9cfc solid !important;
}
.dodger-blue--bl-91 {
  border-left: 91px #1b9cfc solid !important;
}
.dodger-blue--bb-91 {
  border-bottom: 91px #1b9cfc solid !important;
}
.dodger-blue--by-91 {
  border-top: 91px #1b9cfc solid !important;
  border-bottom: 91px #1b9cfc solid !important;
}
.dodger-blue--bx-91 {
  border-right: 91px #1b9cfc solid !important;
  border-left: 91px #1b9cfc solid !important;
}
.dodger-blue--ba-92 {
  border: 92px #1b9cfc solid !important;
}
.dodger-blue--bt-92 {
  border-top: 92px #1b9cfc solid !important;
}
.dodger-blue--br-92 {
  border-right: 92px #1b9cfc solid !important;
}
.dodger-blue--bl-92 {
  border-left: 92px #1b9cfc solid !important;
}
.dodger-blue--bb-92 {
  border-bottom: 92px #1b9cfc solid !important;
}
.dodger-blue--by-92 {
  border-top: 92px #1b9cfc solid !important;
  border-bottom: 92px #1b9cfc solid !important;
}
.dodger-blue--bx-92 {
  border-right: 92px #1b9cfc solid !important;
  border-left: 92px #1b9cfc solid !important;
}
.dodger-blue--ba-93 {
  border: 93px #1b9cfc solid !important;
}
.dodger-blue--bt-93 {
  border-top: 93px #1b9cfc solid !important;
}
.dodger-blue--br-93 {
  border-right: 93px #1b9cfc solid !important;
}
.dodger-blue--bl-93 {
  border-left: 93px #1b9cfc solid !important;
}
.dodger-blue--bb-93 {
  border-bottom: 93px #1b9cfc solid !important;
}
.dodger-blue--by-93 {
  border-top: 93px #1b9cfc solid !important;
  border-bottom: 93px #1b9cfc solid !important;
}
.dodger-blue--bx-93 {
  border-right: 93px #1b9cfc solid !important;
  border-left: 93px #1b9cfc solid !important;
}
.dodger-blue--ba-94 {
  border: 94px #1b9cfc solid !important;
}
.dodger-blue--bt-94 {
  border-top: 94px #1b9cfc solid !important;
}
.dodger-blue--br-94 {
  border-right: 94px #1b9cfc solid !important;
}
.dodger-blue--bl-94 {
  border-left: 94px #1b9cfc solid !important;
}
.dodger-blue--bb-94 {
  border-bottom: 94px #1b9cfc solid !important;
}
.dodger-blue--by-94 {
  border-top: 94px #1b9cfc solid !important;
  border-bottom: 94px #1b9cfc solid !important;
}
.dodger-blue--bx-94 {
  border-right: 94px #1b9cfc solid !important;
  border-left: 94px #1b9cfc solid !important;
}
.dodger-blue--ba-95 {
  border: 95px #1b9cfc solid !important;
}
.dodger-blue--bt-95 {
  border-top: 95px #1b9cfc solid !important;
}
.dodger-blue--br-95 {
  border-right: 95px #1b9cfc solid !important;
}
.dodger-blue--bl-95 {
  border-left: 95px #1b9cfc solid !important;
}
.dodger-blue--bb-95 {
  border-bottom: 95px #1b9cfc solid !important;
}
.dodger-blue--by-95 {
  border-top: 95px #1b9cfc solid !important;
  border-bottom: 95px #1b9cfc solid !important;
}
.dodger-blue--bx-95 {
  border-right: 95px #1b9cfc solid !important;
  border-left: 95px #1b9cfc solid !important;
}
.dodger-blue--ba-96 {
  border: 96px #1b9cfc solid !important;
}
.dodger-blue--bt-96 {
  border-top: 96px #1b9cfc solid !important;
}
.dodger-blue--br-96 {
  border-right: 96px #1b9cfc solid !important;
}
.dodger-blue--bl-96 {
  border-left: 96px #1b9cfc solid !important;
}
.dodger-blue--bb-96 {
  border-bottom: 96px #1b9cfc solid !important;
}
.dodger-blue--by-96 {
  border-top: 96px #1b9cfc solid !important;
  border-bottom: 96px #1b9cfc solid !important;
}
.dodger-blue--bx-96 {
  border-right: 96px #1b9cfc solid !important;
  border-left: 96px #1b9cfc solid !important;
}
.dodger-blue--ba-97 {
  border: 97px #1b9cfc solid !important;
}
.dodger-blue--bt-97 {
  border-top: 97px #1b9cfc solid !important;
}
.dodger-blue--br-97 {
  border-right: 97px #1b9cfc solid !important;
}
.dodger-blue--bl-97 {
  border-left: 97px #1b9cfc solid !important;
}
.dodger-blue--bb-97 {
  border-bottom: 97px #1b9cfc solid !important;
}
.dodger-blue--by-97 {
  border-top: 97px #1b9cfc solid !important;
  border-bottom: 97px #1b9cfc solid !important;
}
.dodger-blue--bx-97 {
  border-right: 97px #1b9cfc solid !important;
  border-left: 97px #1b9cfc solid !important;
}
.dodger-blue--ba-98 {
  border: 98px #1b9cfc solid !important;
}
.dodger-blue--bt-98 {
  border-top: 98px #1b9cfc solid !important;
}
.dodger-blue--br-98 {
  border-right: 98px #1b9cfc solid !important;
}
.dodger-blue--bl-98 {
  border-left: 98px #1b9cfc solid !important;
}
.dodger-blue--bb-98 {
  border-bottom: 98px #1b9cfc solid !important;
}
.dodger-blue--by-98 {
  border-top: 98px #1b9cfc solid !important;
  border-bottom: 98px #1b9cfc solid !important;
}
.dodger-blue--bx-98 {
  border-right: 98px #1b9cfc solid !important;
  border-left: 98px #1b9cfc solid !important;
}
.dodger-blue--ba-99 {
  border: 99px #1b9cfc solid !important;
}
.dodger-blue--bt-99 {
  border-top: 99px #1b9cfc solid !important;
}
.dodger-blue--br-99 {
  border-right: 99px #1b9cfc solid !important;
}
.dodger-blue--bl-99 {
  border-left: 99px #1b9cfc solid !important;
}
.dodger-blue--bb-99 {
  border-bottom: 99px #1b9cfc solid !important;
}
.dodger-blue--by-99 {
  border-top: 99px #1b9cfc solid !important;
  border-bottom: 99px #1b9cfc solid !important;
}
.dodger-blue--bx-99 {
  border-right: 99px #1b9cfc solid !important;
  border-left: 99px #1b9cfc solid !important;
}
.dodger-blue--ba-100 {
  border: 100px #1b9cfc solid !important;
}
.dodger-blue--bt-100 {
  border-top: 100px #1b9cfc solid !important;
}
.dodger-blue--br-100 {
  border-right: 100px #1b9cfc solid !important;
}
.dodger-blue--bl-100 {
  border-left: 100px #1b9cfc solid !important;
}
.dodger-blue--bb-100 {
  border-bottom: 100px #1b9cfc solid !important;
}
.dodger-blue--by-100 {
  border-top: 100px #1b9cfc solid !important;
  border-bottom: 100px #1b9cfc solid !important;
}
.dodger-blue--bx-100 {
  border-right: 100px #1b9cfc solid !important;
  border-left: 100px #1b9cfc solid !important;
}
.fountain-blue--ba-1 {
  border: 1px #66bbc1 solid !important;
}
.fountain-blue--bt-1 {
  border-top: 1px #66bbc1 solid !important;
}
.fountain-blue--br-1 {
  border-right: 1px #66bbc1 solid !important;
}
.fountain-blue--bl-1 {
  border-left: 1px #66bbc1 solid !important;
}
.fountain-blue--bb-1 {
  border-bottom: 1px #66bbc1 solid !important;
}
.fountain-blue--by-1 {
  border-top: 1px #66bbc1 solid !important;
  border-bottom: 1px #66bbc1 solid !important;
}
.fountain-blue--bx-1 {
  border-right: 1px #66bbc1 solid !important;
  border-left: 1px #66bbc1 solid !important;
}
.fountain-blue--ba-2 {
  border: 2px #66bbc1 solid !important;
}
.fountain-blue--bt-2 {
  border-top: 2px #66bbc1 solid !important;
}
.fountain-blue--br-2 {
  border-right: 2px #66bbc1 solid !important;
}
.fountain-blue--bl-2 {
  border-left: 2px #66bbc1 solid !important;
}
.fountain-blue--bb-2 {
  border-bottom: 2px #66bbc1 solid !important;
}
.fountain-blue--by-2 {
  border-top: 2px #66bbc1 solid !important;
  border-bottom: 2px #66bbc1 solid !important;
}
.fountain-blue--bx-2 {
  border-right: 2px #66bbc1 solid !important;
  border-left: 2px #66bbc1 solid !important;
}
.fountain-blue--ba-3 {
  border: 3px #66bbc1 solid !important;
}
.fountain-blue--bt-3 {
  border-top: 3px #66bbc1 solid !important;
}
.fountain-blue--br-3 {
  border-right: 3px #66bbc1 solid !important;
}
.fountain-blue--bl-3 {
  border-left: 3px #66bbc1 solid !important;
}
.fountain-blue--bb-3 {
  border-bottom: 3px #66bbc1 solid !important;
}
.fountain-blue--by-3 {
  border-top: 3px #66bbc1 solid !important;
  border-bottom: 3px #66bbc1 solid !important;
}
.fountain-blue--bx-3 {
  border-right: 3px #66bbc1 solid !important;
  border-left: 3px #66bbc1 solid !important;
}
.fountain-blue--ba-4 {
  border: 4px #66bbc1 solid !important;
}
.fountain-blue--bt-4 {
  border-top: 4px #66bbc1 solid !important;
}
.fountain-blue--br-4 {
  border-right: 4px #66bbc1 solid !important;
}
.fountain-blue--bl-4 {
  border-left: 4px #66bbc1 solid !important;
}
.fountain-blue--bb-4 {
  border-bottom: 4px #66bbc1 solid !important;
}
.fountain-blue--by-4 {
  border-top: 4px #66bbc1 solid !important;
  border-bottom: 4px #66bbc1 solid !important;
}
.fountain-blue--bx-4 {
  border-right: 4px #66bbc1 solid !important;
  border-left: 4px #66bbc1 solid !important;
}
.fountain-blue--ba-5 {
  border: 5px #66bbc1 solid !important;
}
.fountain-blue--bt-5 {
  border-top: 5px #66bbc1 solid !important;
}
.fountain-blue--br-5 {
  border-right: 5px #66bbc1 solid !important;
}
.fountain-blue--bl-5 {
  border-left: 5px #66bbc1 solid !important;
}
.fountain-blue--bb-5 {
  border-bottom: 5px #66bbc1 solid !important;
}
.fountain-blue--by-5 {
  border-top: 5px #66bbc1 solid !important;
  border-bottom: 5px #66bbc1 solid !important;
}
.fountain-blue--bx-5 {
  border-right: 5px #66bbc1 solid !important;
  border-left: 5px #66bbc1 solid !important;
}
.fountain-blue--ba-6 {
  border: 6px #66bbc1 solid !important;
}
.fountain-blue--bt-6 {
  border-top: 6px #66bbc1 solid !important;
}
.fountain-blue--br-6 {
  border-right: 6px #66bbc1 solid !important;
}
.fountain-blue--bl-6 {
  border-left: 6px #66bbc1 solid !important;
}
.fountain-blue--bb-6 {
  border-bottom: 6px #66bbc1 solid !important;
}
.fountain-blue--by-6 {
  border-top: 6px #66bbc1 solid !important;
  border-bottom: 6px #66bbc1 solid !important;
}
.fountain-blue--bx-6 {
  border-right: 6px #66bbc1 solid !important;
  border-left: 6px #66bbc1 solid !important;
}
.fountain-blue--ba-7 {
  border: 7px #66bbc1 solid !important;
}
.fountain-blue--bt-7 {
  border-top: 7px #66bbc1 solid !important;
}
.fountain-blue--br-7 {
  border-right: 7px #66bbc1 solid !important;
}
.fountain-blue--bl-7 {
  border-left: 7px #66bbc1 solid !important;
}
.fountain-blue--bb-7 {
  border-bottom: 7px #66bbc1 solid !important;
}
.fountain-blue--by-7 {
  border-top: 7px #66bbc1 solid !important;
  border-bottom: 7px #66bbc1 solid !important;
}
.fountain-blue--bx-7 {
  border-right: 7px #66bbc1 solid !important;
  border-left: 7px #66bbc1 solid !important;
}
.fountain-blue--ba-8 {
  border: 8px #66bbc1 solid !important;
}
.fountain-blue--bt-8 {
  border-top: 8px #66bbc1 solid !important;
}
.fountain-blue--br-8 {
  border-right: 8px #66bbc1 solid !important;
}
.fountain-blue--bl-8 {
  border-left: 8px #66bbc1 solid !important;
}
.fountain-blue--bb-8 {
  border-bottom: 8px #66bbc1 solid !important;
}
.fountain-blue--by-8 {
  border-top: 8px #66bbc1 solid !important;
  border-bottom: 8px #66bbc1 solid !important;
}
.fountain-blue--bx-8 {
  border-right: 8px #66bbc1 solid !important;
  border-left: 8px #66bbc1 solid !important;
}
.fountain-blue--ba-9 {
  border: 9px #66bbc1 solid !important;
}
.fountain-blue--bt-9 {
  border-top: 9px #66bbc1 solid !important;
}
.fountain-blue--br-9 {
  border-right: 9px #66bbc1 solid !important;
}
.fountain-blue--bl-9 {
  border-left: 9px #66bbc1 solid !important;
}
.fountain-blue--bb-9 {
  border-bottom: 9px #66bbc1 solid !important;
}
.fountain-blue--by-9 {
  border-top: 9px #66bbc1 solid !important;
  border-bottom: 9px #66bbc1 solid !important;
}
.fountain-blue--bx-9 {
  border-right: 9px #66bbc1 solid !important;
  border-left: 9px #66bbc1 solid !important;
}
.fountain-blue--ba-10 {
  border: 10px #66bbc1 solid !important;
}
.fountain-blue--bt-10 {
  border-top: 10px #66bbc1 solid !important;
}
.fountain-blue--br-10 {
  border-right: 10px #66bbc1 solid !important;
}
.fountain-blue--bl-10 {
  border-left: 10px #66bbc1 solid !important;
}
.fountain-blue--bb-10 {
  border-bottom: 10px #66bbc1 solid !important;
}
.fountain-blue--by-10 {
  border-top: 10px #66bbc1 solid !important;
  border-bottom: 10px #66bbc1 solid !important;
}
.fountain-blue--bx-10 {
  border-right: 10px #66bbc1 solid !important;
  border-left: 10px #66bbc1 solid !important;
}
.fountain-blue--ba-11 {
  border: 11px #66bbc1 solid !important;
}
.fountain-blue--bt-11 {
  border-top: 11px #66bbc1 solid !important;
}
.fountain-blue--br-11 {
  border-right: 11px #66bbc1 solid !important;
}
.fountain-blue--bl-11 {
  border-left: 11px #66bbc1 solid !important;
}
.fountain-blue--bb-11 {
  border-bottom: 11px #66bbc1 solid !important;
}
.fountain-blue--by-11 {
  border-top: 11px #66bbc1 solid !important;
  border-bottom: 11px #66bbc1 solid !important;
}
.fountain-blue--bx-11 {
  border-right: 11px #66bbc1 solid !important;
  border-left: 11px #66bbc1 solid !important;
}
.fountain-blue--ba-12 {
  border: 12px #66bbc1 solid !important;
}
.fountain-blue--bt-12 {
  border-top: 12px #66bbc1 solid !important;
}
.fountain-blue--br-12 {
  border-right: 12px #66bbc1 solid !important;
}
.fountain-blue--bl-12 {
  border-left: 12px #66bbc1 solid !important;
}
.fountain-blue--bb-12 {
  border-bottom: 12px #66bbc1 solid !important;
}
.fountain-blue--by-12 {
  border-top: 12px #66bbc1 solid !important;
  border-bottom: 12px #66bbc1 solid !important;
}
.fountain-blue--bx-12 {
  border-right: 12px #66bbc1 solid !important;
  border-left: 12px #66bbc1 solid !important;
}
.fountain-blue--ba-13 {
  border: 13px #66bbc1 solid !important;
}
.fountain-blue--bt-13 {
  border-top: 13px #66bbc1 solid !important;
}
.fountain-blue--br-13 {
  border-right: 13px #66bbc1 solid !important;
}
.fountain-blue--bl-13 {
  border-left: 13px #66bbc1 solid !important;
}
.fountain-blue--bb-13 {
  border-bottom: 13px #66bbc1 solid !important;
}
.fountain-blue--by-13 {
  border-top: 13px #66bbc1 solid !important;
  border-bottom: 13px #66bbc1 solid !important;
}
.fountain-blue--bx-13 {
  border-right: 13px #66bbc1 solid !important;
  border-left: 13px #66bbc1 solid !important;
}
.fountain-blue--ba-14 {
  border: 14px #66bbc1 solid !important;
}
.fountain-blue--bt-14 {
  border-top: 14px #66bbc1 solid !important;
}
.fountain-blue--br-14 {
  border-right: 14px #66bbc1 solid !important;
}
.fountain-blue--bl-14 {
  border-left: 14px #66bbc1 solid !important;
}
.fountain-blue--bb-14 {
  border-bottom: 14px #66bbc1 solid !important;
}
.fountain-blue--by-14 {
  border-top: 14px #66bbc1 solid !important;
  border-bottom: 14px #66bbc1 solid !important;
}
.fountain-blue--bx-14 {
  border-right: 14px #66bbc1 solid !important;
  border-left: 14px #66bbc1 solid !important;
}
.fountain-blue--ba-15 {
  border: 15px #66bbc1 solid !important;
}
.fountain-blue--bt-15 {
  border-top: 15px #66bbc1 solid !important;
}
.fountain-blue--br-15 {
  border-right: 15px #66bbc1 solid !important;
}
.fountain-blue--bl-15 {
  border-left: 15px #66bbc1 solid !important;
}
.fountain-blue--bb-15 {
  border-bottom: 15px #66bbc1 solid !important;
}
.fountain-blue--by-15 {
  border-top: 15px #66bbc1 solid !important;
  border-bottom: 15px #66bbc1 solid !important;
}
.fountain-blue--bx-15 {
  border-right: 15px #66bbc1 solid !important;
  border-left: 15px #66bbc1 solid !important;
}
.fountain-blue--ba-16 {
  border: 16px #66bbc1 solid !important;
}
.fountain-blue--bt-16 {
  border-top: 16px #66bbc1 solid !important;
}
.fountain-blue--br-16 {
  border-right: 16px #66bbc1 solid !important;
}
.fountain-blue--bl-16 {
  border-left: 16px #66bbc1 solid !important;
}
.fountain-blue--bb-16 {
  border-bottom: 16px #66bbc1 solid !important;
}
.fountain-blue--by-16 {
  border-top: 16px #66bbc1 solid !important;
  border-bottom: 16px #66bbc1 solid !important;
}
.fountain-blue--bx-16 {
  border-right: 16px #66bbc1 solid !important;
  border-left: 16px #66bbc1 solid !important;
}
.fountain-blue--ba-17 {
  border: 17px #66bbc1 solid !important;
}
.fountain-blue--bt-17 {
  border-top: 17px #66bbc1 solid !important;
}
.fountain-blue--br-17 {
  border-right: 17px #66bbc1 solid !important;
}
.fountain-blue--bl-17 {
  border-left: 17px #66bbc1 solid !important;
}
.fountain-blue--bb-17 {
  border-bottom: 17px #66bbc1 solid !important;
}
.fountain-blue--by-17 {
  border-top: 17px #66bbc1 solid !important;
  border-bottom: 17px #66bbc1 solid !important;
}
.fountain-blue--bx-17 {
  border-right: 17px #66bbc1 solid !important;
  border-left: 17px #66bbc1 solid !important;
}
.fountain-blue--ba-18 {
  border: 18px #66bbc1 solid !important;
}
.fountain-blue--bt-18 {
  border-top: 18px #66bbc1 solid !important;
}
.fountain-blue--br-18 {
  border-right: 18px #66bbc1 solid !important;
}
.fountain-blue--bl-18 {
  border-left: 18px #66bbc1 solid !important;
}
.fountain-blue--bb-18 {
  border-bottom: 18px #66bbc1 solid !important;
}
.fountain-blue--by-18 {
  border-top: 18px #66bbc1 solid !important;
  border-bottom: 18px #66bbc1 solid !important;
}
.fountain-blue--bx-18 {
  border-right: 18px #66bbc1 solid !important;
  border-left: 18px #66bbc1 solid !important;
}
.fountain-blue--ba-19 {
  border: 19px #66bbc1 solid !important;
}
.fountain-blue--bt-19 {
  border-top: 19px #66bbc1 solid !important;
}
.fountain-blue--br-19 {
  border-right: 19px #66bbc1 solid !important;
}
.fountain-blue--bl-19 {
  border-left: 19px #66bbc1 solid !important;
}
.fountain-blue--bb-19 {
  border-bottom: 19px #66bbc1 solid !important;
}
.fountain-blue--by-19 {
  border-top: 19px #66bbc1 solid !important;
  border-bottom: 19px #66bbc1 solid !important;
}
.fountain-blue--bx-19 {
  border-right: 19px #66bbc1 solid !important;
  border-left: 19px #66bbc1 solid !important;
}
.fountain-blue--ba-20 {
  border: 20px #66bbc1 solid !important;
}
.fountain-blue--bt-20 {
  border-top: 20px #66bbc1 solid !important;
}
.fountain-blue--br-20 {
  border-right: 20px #66bbc1 solid !important;
}
.fountain-blue--bl-20 {
  border-left: 20px #66bbc1 solid !important;
}
.fountain-blue--bb-20 {
  border-bottom: 20px #66bbc1 solid !important;
}
.fountain-blue--by-20 {
  border-top: 20px #66bbc1 solid !important;
  border-bottom: 20px #66bbc1 solid !important;
}
.fountain-blue--bx-20 {
  border-right: 20px #66bbc1 solid !important;
  border-left: 20px #66bbc1 solid !important;
}
.fountain-blue--ba-21 {
  border: 21px #66bbc1 solid !important;
}
.fountain-blue--bt-21 {
  border-top: 21px #66bbc1 solid !important;
}
.fountain-blue--br-21 {
  border-right: 21px #66bbc1 solid !important;
}
.fountain-blue--bl-21 {
  border-left: 21px #66bbc1 solid !important;
}
.fountain-blue--bb-21 {
  border-bottom: 21px #66bbc1 solid !important;
}
.fountain-blue--by-21 {
  border-top: 21px #66bbc1 solid !important;
  border-bottom: 21px #66bbc1 solid !important;
}
.fountain-blue--bx-21 {
  border-right: 21px #66bbc1 solid !important;
  border-left: 21px #66bbc1 solid !important;
}
.fountain-blue--ba-22 {
  border: 22px #66bbc1 solid !important;
}
.fountain-blue--bt-22 {
  border-top: 22px #66bbc1 solid !important;
}
.fountain-blue--br-22 {
  border-right: 22px #66bbc1 solid !important;
}
.fountain-blue--bl-22 {
  border-left: 22px #66bbc1 solid !important;
}
.fountain-blue--bb-22 {
  border-bottom: 22px #66bbc1 solid !important;
}
.fountain-blue--by-22 {
  border-top: 22px #66bbc1 solid !important;
  border-bottom: 22px #66bbc1 solid !important;
}
.fountain-blue--bx-22 {
  border-right: 22px #66bbc1 solid !important;
  border-left: 22px #66bbc1 solid !important;
}
.fountain-blue--ba-23 {
  border: 23px #66bbc1 solid !important;
}
.fountain-blue--bt-23 {
  border-top: 23px #66bbc1 solid !important;
}
.fountain-blue--br-23 {
  border-right: 23px #66bbc1 solid !important;
}
.fountain-blue--bl-23 {
  border-left: 23px #66bbc1 solid !important;
}
.fountain-blue--bb-23 {
  border-bottom: 23px #66bbc1 solid !important;
}
.fountain-blue--by-23 {
  border-top: 23px #66bbc1 solid !important;
  border-bottom: 23px #66bbc1 solid !important;
}
.fountain-blue--bx-23 {
  border-right: 23px #66bbc1 solid !important;
  border-left: 23px #66bbc1 solid !important;
}
.fountain-blue--ba-24 {
  border: 24px #66bbc1 solid !important;
}
.fountain-blue--bt-24 {
  border-top: 24px #66bbc1 solid !important;
}
.fountain-blue--br-24 {
  border-right: 24px #66bbc1 solid !important;
}
.fountain-blue--bl-24 {
  border-left: 24px #66bbc1 solid !important;
}
.fountain-blue--bb-24 {
  border-bottom: 24px #66bbc1 solid !important;
}
.fountain-blue--by-24 {
  border-top: 24px #66bbc1 solid !important;
  border-bottom: 24px #66bbc1 solid !important;
}
.fountain-blue--bx-24 {
  border-right: 24px #66bbc1 solid !important;
  border-left: 24px #66bbc1 solid !important;
}
.fountain-blue--ba-25 {
  border: 25px #66bbc1 solid !important;
}
.fountain-blue--bt-25 {
  border-top: 25px #66bbc1 solid !important;
}
.fountain-blue--br-25 {
  border-right: 25px #66bbc1 solid !important;
}
.fountain-blue--bl-25 {
  border-left: 25px #66bbc1 solid !important;
}
.fountain-blue--bb-25 {
  border-bottom: 25px #66bbc1 solid !important;
}
.fountain-blue--by-25 {
  border-top: 25px #66bbc1 solid !important;
  border-bottom: 25px #66bbc1 solid !important;
}
.fountain-blue--bx-25 {
  border-right: 25px #66bbc1 solid !important;
  border-left: 25px #66bbc1 solid !important;
}
.fountain-blue--ba-26 {
  border: 26px #66bbc1 solid !important;
}
.fountain-blue--bt-26 {
  border-top: 26px #66bbc1 solid !important;
}
.fountain-blue--br-26 {
  border-right: 26px #66bbc1 solid !important;
}
.fountain-blue--bl-26 {
  border-left: 26px #66bbc1 solid !important;
}
.fountain-blue--bb-26 {
  border-bottom: 26px #66bbc1 solid !important;
}
.fountain-blue--by-26 {
  border-top: 26px #66bbc1 solid !important;
  border-bottom: 26px #66bbc1 solid !important;
}
.fountain-blue--bx-26 {
  border-right: 26px #66bbc1 solid !important;
  border-left: 26px #66bbc1 solid !important;
}
.fountain-blue--ba-27 {
  border: 27px #66bbc1 solid !important;
}
.fountain-blue--bt-27 {
  border-top: 27px #66bbc1 solid !important;
}
.fountain-blue--br-27 {
  border-right: 27px #66bbc1 solid !important;
}
.fountain-blue--bl-27 {
  border-left: 27px #66bbc1 solid !important;
}
.fountain-blue--bb-27 {
  border-bottom: 27px #66bbc1 solid !important;
}
.fountain-blue--by-27 {
  border-top: 27px #66bbc1 solid !important;
  border-bottom: 27px #66bbc1 solid !important;
}
.fountain-blue--bx-27 {
  border-right: 27px #66bbc1 solid !important;
  border-left: 27px #66bbc1 solid !important;
}
.fountain-blue--ba-28 {
  border: 28px #66bbc1 solid !important;
}
.fountain-blue--bt-28 {
  border-top: 28px #66bbc1 solid !important;
}
.fountain-blue--br-28 {
  border-right: 28px #66bbc1 solid !important;
}
.fountain-blue--bl-28 {
  border-left: 28px #66bbc1 solid !important;
}
.fountain-blue--bb-28 {
  border-bottom: 28px #66bbc1 solid !important;
}
.fountain-blue--by-28 {
  border-top: 28px #66bbc1 solid !important;
  border-bottom: 28px #66bbc1 solid !important;
}
.fountain-blue--bx-28 {
  border-right: 28px #66bbc1 solid !important;
  border-left: 28px #66bbc1 solid !important;
}
.fountain-blue--ba-29 {
  border: 29px #66bbc1 solid !important;
}
.fountain-blue--bt-29 {
  border-top: 29px #66bbc1 solid !important;
}
.fountain-blue--br-29 {
  border-right: 29px #66bbc1 solid !important;
}
.fountain-blue--bl-29 {
  border-left: 29px #66bbc1 solid !important;
}
.fountain-blue--bb-29 {
  border-bottom: 29px #66bbc1 solid !important;
}
.fountain-blue--by-29 {
  border-top: 29px #66bbc1 solid !important;
  border-bottom: 29px #66bbc1 solid !important;
}
.fountain-blue--bx-29 {
  border-right: 29px #66bbc1 solid !important;
  border-left: 29px #66bbc1 solid !important;
}
.fountain-blue--ba-30 {
  border: 30px #66bbc1 solid !important;
}
.fountain-blue--bt-30 {
  border-top: 30px #66bbc1 solid !important;
}
.fountain-blue--br-30 {
  border-right: 30px #66bbc1 solid !important;
}
.fountain-blue--bl-30 {
  border-left: 30px #66bbc1 solid !important;
}
.fountain-blue--bb-30 {
  border-bottom: 30px #66bbc1 solid !important;
}
.fountain-blue--by-30 {
  border-top: 30px #66bbc1 solid !important;
  border-bottom: 30px #66bbc1 solid !important;
}
.fountain-blue--bx-30 {
  border-right: 30px #66bbc1 solid !important;
  border-left: 30px #66bbc1 solid !important;
}
.fountain-blue--ba-31 {
  border: 31px #66bbc1 solid !important;
}
.fountain-blue--bt-31 {
  border-top: 31px #66bbc1 solid !important;
}
.fountain-blue--br-31 {
  border-right: 31px #66bbc1 solid !important;
}
.fountain-blue--bl-31 {
  border-left: 31px #66bbc1 solid !important;
}
.fountain-blue--bb-31 {
  border-bottom: 31px #66bbc1 solid !important;
}
.fountain-blue--by-31 {
  border-top: 31px #66bbc1 solid !important;
  border-bottom: 31px #66bbc1 solid !important;
}
.fountain-blue--bx-31 {
  border-right: 31px #66bbc1 solid !important;
  border-left: 31px #66bbc1 solid !important;
}
.fountain-blue--ba-32 {
  border: 32px #66bbc1 solid !important;
}
.fountain-blue--bt-32 {
  border-top: 32px #66bbc1 solid !important;
}
.fountain-blue--br-32 {
  border-right: 32px #66bbc1 solid !important;
}
.fountain-blue--bl-32 {
  border-left: 32px #66bbc1 solid !important;
}
.fountain-blue--bb-32 {
  border-bottom: 32px #66bbc1 solid !important;
}
.fountain-blue--by-32 {
  border-top: 32px #66bbc1 solid !important;
  border-bottom: 32px #66bbc1 solid !important;
}
.fountain-blue--bx-32 {
  border-right: 32px #66bbc1 solid !important;
  border-left: 32px #66bbc1 solid !important;
}
.fountain-blue--ba-33 {
  border: 33px #66bbc1 solid !important;
}
.fountain-blue--bt-33 {
  border-top: 33px #66bbc1 solid !important;
}
.fountain-blue--br-33 {
  border-right: 33px #66bbc1 solid !important;
}
.fountain-blue--bl-33 {
  border-left: 33px #66bbc1 solid !important;
}
.fountain-blue--bb-33 {
  border-bottom: 33px #66bbc1 solid !important;
}
.fountain-blue--by-33 {
  border-top: 33px #66bbc1 solid !important;
  border-bottom: 33px #66bbc1 solid !important;
}
.fountain-blue--bx-33 {
  border-right: 33px #66bbc1 solid !important;
  border-left: 33px #66bbc1 solid !important;
}
.fountain-blue--ba-34 {
  border: 34px #66bbc1 solid !important;
}
.fountain-blue--bt-34 {
  border-top: 34px #66bbc1 solid !important;
}
.fountain-blue--br-34 {
  border-right: 34px #66bbc1 solid !important;
}
.fountain-blue--bl-34 {
  border-left: 34px #66bbc1 solid !important;
}
.fountain-blue--bb-34 {
  border-bottom: 34px #66bbc1 solid !important;
}
.fountain-blue--by-34 {
  border-top: 34px #66bbc1 solid !important;
  border-bottom: 34px #66bbc1 solid !important;
}
.fountain-blue--bx-34 {
  border-right: 34px #66bbc1 solid !important;
  border-left: 34px #66bbc1 solid !important;
}
.fountain-blue--ba-35 {
  border: 35px #66bbc1 solid !important;
}
.fountain-blue--bt-35 {
  border-top: 35px #66bbc1 solid !important;
}
.fountain-blue--br-35 {
  border-right: 35px #66bbc1 solid !important;
}
.fountain-blue--bl-35 {
  border-left: 35px #66bbc1 solid !important;
}
.fountain-blue--bb-35 {
  border-bottom: 35px #66bbc1 solid !important;
}
.fountain-blue--by-35 {
  border-top: 35px #66bbc1 solid !important;
  border-bottom: 35px #66bbc1 solid !important;
}
.fountain-blue--bx-35 {
  border-right: 35px #66bbc1 solid !important;
  border-left: 35px #66bbc1 solid !important;
}
.fountain-blue--ba-36 {
  border: 36px #66bbc1 solid !important;
}
.fountain-blue--bt-36 {
  border-top: 36px #66bbc1 solid !important;
}
.fountain-blue--br-36 {
  border-right: 36px #66bbc1 solid !important;
}
.fountain-blue--bl-36 {
  border-left: 36px #66bbc1 solid !important;
}
.fountain-blue--bb-36 {
  border-bottom: 36px #66bbc1 solid !important;
}
.fountain-blue--by-36 {
  border-top: 36px #66bbc1 solid !important;
  border-bottom: 36px #66bbc1 solid !important;
}
.fountain-blue--bx-36 {
  border-right: 36px #66bbc1 solid !important;
  border-left: 36px #66bbc1 solid !important;
}
.fountain-blue--ba-37 {
  border: 37px #66bbc1 solid !important;
}
.fountain-blue--bt-37 {
  border-top: 37px #66bbc1 solid !important;
}
.fountain-blue--br-37 {
  border-right: 37px #66bbc1 solid !important;
}
.fountain-blue--bl-37 {
  border-left: 37px #66bbc1 solid !important;
}
.fountain-blue--bb-37 {
  border-bottom: 37px #66bbc1 solid !important;
}
.fountain-blue--by-37 {
  border-top: 37px #66bbc1 solid !important;
  border-bottom: 37px #66bbc1 solid !important;
}
.fountain-blue--bx-37 {
  border-right: 37px #66bbc1 solid !important;
  border-left: 37px #66bbc1 solid !important;
}
.fountain-blue--ba-38 {
  border: 38px #66bbc1 solid !important;
}
.fountain-blue--bt-38 {
  border-top: 38px #66bbc1 solid !important;
}
.fountain-blue--br-38 {
  border-right: 38px #66bbc1 solid !important;
}
.fountain-blue--bl-38 {
  border-left: 38px #66bbc1 solid !important;
}
.fountain-blue--bb-38 {
  border-bottom: 38px #66bbc1 solid !important;
}
.fountain-blue--by-38 {
  border-top: 38px #66bbc1 solid !important;
  border-bottom: 38px #66bbc1 solid !important;
}
.fountain-blue--bx-38 {
  border-right: 38px #66bbc1 solid !important;
  border-left: 38px #66bbc1 solid !important;
}
.fountain-blue--ba-39 {
  border: 39px #66bbc1 solid !important;
}
.fountain-blue--bt-39 {
  border-top: 39px #66bbc1 solid !important;
}
.fountain-blue--br-39 {
  border-right: 39px #66bbc1 solid !important;
}
.fountain-blue--bl-39 {
  border-left: 39px #66bbc1 solid !important;
}
.fountain-blue--bb-39 {
  border-bottom: 39px #66bbc1 solid !important;
}
.fountain-blue--by-39 {
  border-top: 39px #66bbc1 solid !important;
  border-bottom: 39px #66bbc1 solid !important;
}
.fountain-blue--bx-39 {
  border-right: 39px #66bbc1 solid !important;
  border-left: 39px #66bbc1 solid !important;
}
.fountain-blue--ba-40 {
  border: 40px #66bbc1 solid !important;
}
.fountain-blue--bt-40 {
  border-top: 40px #66bbc1 solid !important;
}
.fountain-blue--br-40 {
  border-right: 40px #66bbc1 solid !important;
}
.fountain-blue--bl-40 {
  border-left: 40px #66bbc1 solid !important;
}
.fountain-blue--bb-40 {
  border-bottom: 40px #66bbc1 solid !important;
}
.fountain-blue--by-40 {
  border-top: 40px #66bbc1 solid !important;
  border-bottom: 40px #66bbc1 solid !important;
}
.fountain-blue--bx-40 {
  border-right: 40px #66bbc1 solid !important;
  border-left: 40px #66bbc1 solid !important;
}
.fountain-blue--ba-41 {
  border: 41px #66bbc1 solid !important;
}
.fountain-blue--bt-41 {
  border-top: 41px #66bbc1 solid !important;
}
.fountain-blue--br-41 {
  border-right: 41px #66bbc1 solid !important;
}
.fountain-blue--bl-41 {
  border-left: 41px #66bbc1 solid !important;
}
.fountain-blue--bb-41 {
  border-bottom: 41px #66bbc1 solid !important;
}
.fountain-blue--by-41 {
  border-top: 41px #66bbc1 solid !important;
  border-bottom: 41px #66bbc1 solid !important;
}
.fountain-blue--bx-41 {
  border-right: 41px #66bbc1 solid !important;
  border-left: 41px #66bbc1 solid !important;
}
.fountain-blue--ba-42 {
  border: 42px #66bbc1 solid !important;
}
.fountain-blue--bt-42 {
  border-top: 42px #66bbc1 solid !important;
}
.fountain-blue--br-42 {
  border-right: 42px #66bbc1 solid !important;
}
.fountain-blue--bl-42 {
  border-left: 42px #66bbc1 solid !important;
}
.fountain-blue--bb-42 {
  border-bottom: 42px #66bbc1 solid !important;
}
.fountain-blue--by-42 {
  border-top: 42px #66bbc1 solid !important;
  border-bottom: 42px #66bbc1 solid !important;
}
.fountain-blue--bx-42 {
  border-right: 42px #66bbc1 solid !important;
  border-left: 42px #66bbc1 solid !important;
}
.fountain-blue--ba-43 {
  border: 43px #66bbc1 solid !important;
}
.fountain-blue--bt-43 {
  border-top: 43px #66bbc1 solid !important;
}
.fountain-blue--br-43 {
  border-right: 43px #66bbc1 solid !important;
}
.fountain-blue--bl-43 {
  border-left: 43px #66bbc1 solid !important;
}
.fountain-blue--bb-43 {
  border-bottom: 43px #66bbc1 solid !important;
}
.fountain-blue--by-43 {
  border-top: 43px #66bbc1 solid !important;
  border-bottom: 43px #66bbc1 solid !important;
}
.fountain-blue--bx-43 {
  border-right: 43px #66bbc1 solid !important;
  border-left: 43px #66bbc1 solid !important;
}
.fountain-blue--ba-44 {
  border: 44px #66bbc1 solid !important;
}
.fountain-blue--bt-44 {
  border-top: 44px #66bbc1 solid !important;
}
.fountain-blue--br-44 {
  border-right: 44px #66bbc1 solid !important;
}
.fountain-blue--bl-44 {
  border-left: 44px #66bbc1 solid !important;
}
.fountain-blue--bb-44 {
  border-bottom: 44px #66bbc1 solid !important;
}
.fountain-blue--by-44 {
  border-top: 44px #66bbc1 solid !important;
  border-bottom: 44px #66bbc1 solid !important;
}
.fountain-blue--bx-44 {
  border-right: 44px #66bbc1 solid !important;
  border-left: 44px #66bbc1 solid !important;
}
.fountain-blue--ba-45 {
  border: 45px #66bbc1 solid !important;
}
.fountain-blue--bt-45 {
  border-top: 45px #66bbc1 solid !important;
}
.fountain-blue--br-45 {
  border-right: 45px #66bbc1 solid !important;
}
.fountain-blue--bl-45 {
  border-left: 45px #66bbc1 solid !important;
}
.fountain-blue--bb-45 {
  border-bottom: 45px #66bbc1 solid !important;
}
.fountain-blue--by-45 {
  border-top: 45px #66bbc1 solid !important;
  border-bottom: 45px #66bbc1 solid !important;
}
.fountain-blue--bx-45 {
  border-right: 45px #66bbc1 solid !important;
  border-left: 45px #66bbc1 solid !important;
}
.fountain-blue--ba-46 {
  border: 46px #66bbc1 solid !important;
}
.fountain-blue--bt-46 {
  border-top: 46px #66bbc1 solid !important;
}
.fountain-blue--br-46 {
  border-right: 46px #66bbc1 solid !important;
}
.fountain-blue--bl-46 {
  border-left: 46px #66bbc1 solid !important;
}
.fountain-blue--bb-46 {
  border-bottom: 46px #66bbc1 solid !important;
}
.fountain-blue--by-46 {
  border-top: 46px #66bbc1 solid !important;
  border-bottom: 46px #66bbc1 solid !important;
}
.fountain-blue--bx-46 {
  border-right: 46px #66bbc1 solid !important;
  border-left: 46px #66bbc1 solid !important;
}
.fountain-blue--ba-47 {
  border: 47px #66bbc1 solid !important;
}
.fountain-blue--bt-47 {
  border-top: 47px #66bbc1 solid !important;
}
.fountain-blue--br-47 {
  border-right: 47px #66bbc1 solid !important;
}
.fountain-blue--bl-47 {
  border-left: 47px #66bbc1 solid !important;
}
.fountain-blue--bb-47 {
  border-bottom: 47px #66bbc1 solid !important;
}
.fountain-blue--by-47 {
  border-top: 47px #66bbc1 solid !important;
  border-bottom: 47px #66bbc1 solid !important;
}
.fountain-blue--bx-47 {
  border-right: 47px #66bbc1 solid !important;
  border-left: 47px #66bbc1 solid !important;
}
.fountain-blue--ba-48 {
  border: 48px #66bbc1 solid !important;
}
.fountain-blue--bt-48 {
  border-top: 48px #66bbc1 solid !important;
}
.fountain-blue--br-48 {
  border-right: 48px #66bbc1 solid !important;
}
.fountain-blue--bl-48 {
  border-left: 48px #66bbc1 solid !important;
}
.fountain-blue--bb-48 {
  border-bottom: 48px #66bbc1 solid !important;
}
.fountain-blue--by-48 {
  border-top: 48px #66bbc1 solid !important;
  border-bottom: 48px #66bbc1 solid !important;
}
.fountain-blue--bx-48 {
  border-right: 48px #66bbc1 solid !important;
  border-left: 48px #66bbc1 solid !important;
}
.fountain-blue--ba-49 {
  border: 49px #66bbc1 solid !important;
}
.fountain-blue--bt-49 {
  border-top: 49px #66bbc1 solid !important;
}
.fountain-blue--br-49 {
  border-right: 49px #66bbc1 solid !important;
}
.fountain-blue--bl-49 {
  border-left: 49px #66bbc1 solid !important;
}
.fountain-blue--bb-49 {
  border-bottom: 49px #66bbc1 solid !important;
}
.fountain-blue--by-49 {
  border-top: 49px #66bbc1 solid !important;
  border-bottom: 49px #66bbc1 solid !important;
}
.fountain-blue--bx-49 {
  border-right: 49px #66bbc1 solid !important;
  border-left: 49px #66bbc1 solid !important;
}
.fountain-blue--ba-50 {
  border: 50px #66bbc1 solid !important;
}
.fountain-blue--bt-50 {
  border-top: 50px #66bbc1 solid !important;
}
.fountain-blue--br-50 {
  border-right: 50px #66bbc1 solid !important;
}
.fountain-blue--bl-50 {
  border-left: 50px #66bbc1 solid !important;
}
.fountain-blue--bb-50 {
  border-bottom: 50px #66bbc1 solid !important;
}
.fountain-blue--by-50 {
  border-top: 50px #66bbc1 solid !important;
  border-bottom: 50px #66bbc1 solid !important;
}
.fountain-blue--bx-50 {
  border-right: 50px #66bbc1 solid !important;
  border-left: 50px #66bbc1 solid !important;
}
.fountain-blue--ba-51 {
  border: 51px #66bbc1 solid !important;
}
.fountain-blue--bt-51 {
  border-top: 51px #66bbc1 solid !important;
}
.fountain-blue--br-51 {
  border-right: 51px #66bbc1 solid !important;
}
.fountain-blue--bl-51 {
  border-left: 51px #66bbc1 solid !important;
}
.fountain-blue--bb-51 {
  border-bottom: 51px #66bbc1 solid !important;
}
.fountain-blue--by-51 {
  border-top: 51px #66bbc1 solid !important;
  border-bottom: 51px #66bbc1 solid !important;
}
.fountain-blue--bx-51 {
  border-right: 51px #66bbc1 solid !important;
  border-left: 51px #66bbc1 solid !important;
}
.fountain-blue--ba-52 {
  border: 52px #66bbc1 solid !important;
}
.fountain-blue--bt-52 {
  border-top: 52px #66bbc1 solid !important;
}
.fountain-blue--br-52 {
  border-right: 52px #66bbc1 solid !important;
}
.fountain-blue--bl-52 {
  border-left: 52px #66bbc1 solid !important;
}
.fountain-blue--bb-52 {
  border-bottom: 52px #66bbc1 solid !important;
}
.fountain-blue--by-52 {
  border-top: 52px #66bbc1 solid !important;
  border-bottom: 52px #66bbc1 solid !important;
}
.fountain-blue--bx-52 {
  border-right: 52px #66bbc1 solid !important;
  border-left: 52px #66bbc1 solid !important;
}
.fountain-blue--ba-53 {
  border: 53px #66bbc1 solid !important;
}
.fountain-blue--bt-53 {
  border-top: 53px #66bbc1 solid !important;
}
.fountain-blue--br-53 {
  border-right: 53px #66bbc1 solid !important;
}
.fountain-blue--bl-53 {
  border-left: 53px #66bbc1 solid !important;
}
.fountain-blue--bb-53 {
  border-bottom: 53px #66bbc1 solid !important;
}
.fountain-blue--by-53 {
  border-top: 53px #66bbc1 solid !important;
  border-bottom: 53px #66bbc1 solid !important;
}
.fountain-blue--bx-53 {
  border-right: 53px #66bbc1 solid !important;
  border-left: 53px #66bbc1 solid !important;
}
.fountain-blue--ba-54 {
  border: 54px #66bbc1 solid !important;
}
.fountain-blue--bt-54 {
  border-top: 54px #66bbc1 solid !important;
}
.fountain-blue--br-54 {
  border-right: 54px #66bbc1 solid !important;
}
.fountain-blue--bl-54 {
  border-left: 54px #66bbc1 solid !important;
}
.fountain-blue--bb-54 {
  border-bottom: 54px #66bbc1 solid !important;
}
.fountain-blue--by-54 {
  border-top: 54px #66bbc1 solid !important;
  border-bottom: 54px #66bbc1 solid !important;
}
.fountain-blue--bx-54 {
  border-right: 54px #66bbc1 solid !important;
  border-left: 54px #66bbc1 solid !important;
}
.fountain-blue--ba-55 {
  border: 55px #66bbc1 solid !important;
}
.fountain-blue--bt-55 {
  border-top: 55px #66bbc1 solid !important;
}
.fountain-blue--br-55 {
  border-right: 55px #66bbc1 solid !important;
}
.fountain-blue--bl-55 {
  border-left: 55px #66bbc1 solid !important;
}
.fountain-blue--bb-55 {
  border-bottom: 55px #66bbc1 solid !important;
}
.fountain-blue--by-55 {
  border-top: 55px #66bbc1 solid !important;
  border-bottom: 55px #66bbc1 solid !important;
}
.fountain-blue--bx-55 {
  border-right: 55px #66bbc1 solid !important;
  border-left: 55px #66bbc1 solid !important;
}
.fountain-blue--ba-56 {
  border: 56px #66bbc1 solid !important;
}
.fountain-blue--bt-56 {
  border-top: 56px #66bbc1 solid !important;
}
.fountain-blue--br-56 {
  border-right: 56px #66bbc1 solid !important;
}
.fountain-blue--bl-56 {
  border-left: 56px #66bbc1 solid !important;
}
.fountain-blue--bb-56 {
  border-bottom: 56px #66bbc1 solid !important;
}
.fountain-blue--by-56 {
  border-top: 56px #66bbc1 solid !important;
  border-bottom: 56px #66bbc1 solid !important;
}
.fountain-blue--bx-56 {
  border-right: 56px #66bbc1 solid !important;
  border-left: 56px #66bbc1 solid !important;
}
.fountain-blue--ba-57 {
  border: 57px #66bbc1 solid !important;
}
.fountain-blue--bt-57 {
  border-top: 57px #66bbc1 solid !important;
}
.fountain-blue--br-57 {
  border-right: 57px #66bbc1 solid !important;
}
.fountain-blue--bl-57 {
  border-left: 57px #66bbc1 solid !important;
}
.fountain-blue--bb-57 {
  border-bottom: 57px #66bbc1 solid !important;
}
.fountain-blue--by-57 {
  border-top: 57px #66bbc1 solid !important;
  border-bottom: 57px #66bbc1 solid !important;
}
.fountain-blue--bx-57 {
  border-right: 57px #66bbc1 solid !important;
  border-left: 57px #66bbc1 solid !important;
}
.fountain-blue--ba-58 {
  border: 58px #66bbc1 solid !important;
}
.fountain-blue--bt-58 {
  border-top: 58px #66bbc1 solid !important;
}
.fountain-blue--br-58 {
  border-right: 58px #66bbc1 solid !important;
}
.fountain-blue--bl-58 {
  border-left: 58px #66bbc1 solid !important;
}
.fountain-blue--bb-58 {
  border-bottom: 58px #66bbc1 solid !important;
}
.fountain-blue--by-58 {
  border-top: 58px #66bbc1 solid !important;
  border-bottom: 58px #66bbc1 solid !important;
}
.fountain-blue--bx-58 {
  border-right: 58px #66bbc1 solid !important;
  border-left: 58px #66bbc1 solid !important;
}
.fountain-blue--ba-59 {
  border: 59px #66bbc1 solid !important;
}
.fountain-blue--bt-59 {
  border-top: 59px #66bbc1 solid !important;
}
.fountain-blue--br-59 {
  border-right: 59px #66bbc1 solid !important;
}
.fountain-blue--bl-59 {
  border-left: 59px #66bbc1 solid !important;
}
.fountain-blue--bb-59 {
  border-bottom: 59px #66bbc1 solid !important;
}
.fountain-blue--by-59 {
  border-top: 59px #66bbc1 solid !important;
  border-bottom: 59px #66bbc1 solid !important;
}
.fountain-blue--bx-59 {
  border-right: 59px #66bbc1 solid !important;
  border-left: 59px #66bbc1 solid !important;
}
.fountain-blue--ba-60 {
  border: 60px #66bbc1 solid !important;
}
.fountain-blue--bt-60 {
  border-top: 60px #66bbc1 solid !important;
}
.fountain-blue--br-60 {
  border-right: 60px #66bbc1 solid !important;
}
.fountain-blue--bl-60 {
  border-left: 60px #66bbc1 solid !important;
}
.fountain-blue--bb-60 {
  border-bottom: 60px #66bbc1 solid !important;
}
.fountain-blue--by-60 {
  border-top: 60px #66bbc1 solid !important;
  border-bottom: 60px #66bbc1 solid !important;
}
.fountain-blue--bx-60 {
  border-right: 60px #66bbc1 solid !important;
  border-left: 60px #66bbc1 solid !important;
}
.fountain-blue--ba-61 {
  border: 61px #66bbc1 solid !important;
}
.fountain-blue--bt-61 {
  border-top: 61px #66bbc1 solid !important;
}
.fountain-blue--br-61 {
  border-right: 61px #66bbc1 solid !important;
}
.fountain-blue--bl-61 {
  border-left: 61px #66bbc1 solid !important;
}
.fountain-blue--bb-61 {
  border-bottom: 61px #66bbc1 solid !important;
}
.fountain-blue--by-61 {
  border-top: 61px #66bbc1 solid !important;
  border-bottom: 61px #66bbc1 solid !important;
}
.fountain-blue--bx-61 {
  border-right: 61px #66bbc1 solid !important;
  border-left: 61px #66bbc1 solid !important;
}
.fountain-blue--ba-62 {
  border: 62px #66bbc1 solid !important;
}
.fountain-blue--bt-62 {
  border-top: 62px #66bbc1 solid !important;
}
.fountain-blue--br-62 {
  border-right: 62px #66bbc1 solid !important;
}
.fountain-blue--bl-62 {
  border-left: 62px #66bbc1 solid !important;
}
.fountain-blue--bb-62 {
  border-bottom: 62px #66bbc1 solid !important;
}
.fountain-blue--by-62 {
  border-top: 62px #66bbc1 solid !important;
  border-bottom: 62px #66bbc1 solid !important;
}
.fountain-blue--bx-62 {
  border-right: 62px #66bbc1 solid !important;
  border-left: 62px #66bbc1 solid !important;
}
.fountain-blue--ba-63 {
  border: 63px #66bbc1 solid !important;
}
.fountain-blue--bt-63 {
  border-top: 63px #66bbc1 solid !important;
}
.fountain-blue--br-63 {
  border-right: 63px #66bbc1 solid !important;
}
.fountain-blue--bl-63 {
  border-left: 63px #66bbc1 solid !important;
}
.fountain-blue--bb-63 {
  border-bottom: 63px #66bbc1 solid !important;
}
.fountain-blue--by-63 {
  border-top: 63px #66bbc1 solid !important;
  border-bottom: 63px #66bbc1 solid !important;
}
.fountain-blue--bx-63 {
  border-right: 63px #66bbc1 solid !important;
  border-left: 63px #66bbc1 solid !important;
}
.fountain-blue--ba-64 {
  border: 64px #66bbc1 solid !important;
}
.fountain-blue--bt-64 {
  border-top: 64px #66bbc1 solid !important;
}
.fountain-blue--br-64 {
  border-right: 64px #66bbc1 solid !important;
}
.fountain-blue--bl-64 {
  border-left: 64px #66bbc1 solid !important;
}
.fountain-blue--bb-64 {
  border-bottom: 64px #66bbc1 solid !important;
}
.fountain-blue--by-64 {
  border-top: 64px #66bbc1 solid !important;
  border-bottom: 64px #66bbc1 solid !important;
}
.fountain-blue--bx-64 {
  border-right: 64px #66bbc1 solid !important;
  border-left: 64px #66bbc1 solid !important;
}
.fountain-blue--ba-65 {
  border: 65px #66bbc1 solid !important;
}
.fountain-blue--bt-65 {
  border-top: 65px #66bbc1 solid !important;
}
.fountain-blue--br-65 {
  border-right: 65px #66bbc1 solid !important;
}
.fountain-blue--bl-65 {
  border-left: 65px #66bbc1 solid !important;
}
.fountain-blue--bb-65 {
  border-bottom: 65px #66bbc1 solid !important;
}
.fountain-blue--by-65 {
  border-top: 65px #66bbc1 solid !important;
  border-bottom: 65px #66bbc1 solid !important;
}
.fountain-blue--bx-65 {
  border-right: 65px #66bbc1 solid !important;
  border-left: 65px #66bbc1 solid !important;
}
.fountain-blue--ba-66 {
  border: 66px #66bbc1 solid !important;
}
.fountain-blue--bt-66 {
  border-top: 66px #66bbc1 solid !important;
}
.fountain-blue--br-66 {
  border-right: 66px #66bbc1 solid !important;
}
.fountain-blue--bl-66 {
  border-left: 66px #66bbc1 solid !important;
}
.fountain-blue--bb-66 {
  border-bottom: 66px #66bbc1 solid !important;
}
.fountain-blue--by-66 {
  border-top: 66px #66bbc1 solid !important;
  border-bottom: 66px #66bbc1 solid !important;
}
.fountain-blue--bx-66 {
  border-right: 66px #66bbc1 solid !important;
  border-left: 66px #66bbc1 solid !important;
}
.fountain-blue--ba-67 {
  border: 67px #66bbc1 solid !important;
}
.fountain-blue--bt-67 {
  border-top: 67px #66bbc1 solid !important;
}
.fountain-blue--br-67 {
  border-right: 67px #66bbc1 solid !important;
}
.fountain-blue--bl-67 {
  border-left: 67px #66bbc1 solid !important;
}
.fountain-blue--bb-67 {
  border-bottom: 67px #66bbc1 solid !important;
}
.fountain-blue--by-67 {
  border-top: 67px #66bbc1 solid !important;
  border-bottom: 67px #66bbc1 solid !important;
}
.fountain-blue--bx-67 {
  border-right: 67px #66bbc1 solid !important;
  border-left: 67px #66bbc1 solid !important;
}
.fountain-blue--ba-68 {
  border: 68px #66bbc1 solid !important;
}
.fountain-blue--bt-68 {
  border-top: 68px #66bbc1 solid !important;
}
.fountain-blue--br-68 {
  border-right: 68px #66bbc1 solid !important;
}
.fountain-blue--bl-68 {
  border-left: 68px #66bbc1 solid !important;
}
.fountain-blue--bb-68 {
  border-bottom: 68px #66bbc1 solid !important;
}
.fountain-blue--by-68 {
  border-top: 68px #66bbc1 solid !important;
  border-bottom: 68px #66bbc1 solid !important;
}
.fountain-blue--bx-68 {
  border-right: 68px #66bbc1 solid !important;
  border-left: 68px #66bbc1 solid !important;
}
.fountain-blue--ba-69 {
  border: 69px #66bbc1 solid !important;
}
.fountain-blue--bt-69 {
  border-top: 69px #66bbc1 solid !important;
}
.fountain-blue--br-69 {
  border-right: 69px #66bbc1 solid !important;
}
.fountain-blue--bl-69 {
  border-left: 69px #66bbc1 solid !important;
}
.fountain-blue--bb-69 {
  border-bottom: 69px #66bbc1 solid !important;
}
.fountain-blue--by-69 {
  border-top: 69px #66bbc1 solid !important;
  border-bottom: 69px #66bbc1 solid !important;
}
.fountain-blue--bx-69 {
  border-right: 69px #66bbc1 solid !important;
  border-left: 69px #66bbc1 solid !important;
}
.fountain-blue--ba-70 {
  border: 70px #66bbc1 solid !important;
}
.fountain-blue--bt-70 {
  border-top: 70px #66bbc1 solid !important;
}
.fountain-blue--br-70 {
  border-right: 70px #66bbc1 solid !important;
}
.fountain-blue--bl-70 {
  border-left: 70px #66bbc1 solid !important;
}
.fountain-blue--bb-70 {
  border-bottom: 70px #66bbc1 solid !important;
}
.fountain-blue--by-70 {
  border-top: 70px #66bbc1 solid !important;
  border-bottom: 70px #66bbc1 solid !important;
}
.fountain-blue--bx-70 {
  border-right: 70px #66bbc1 solid !important;
  border-left: 70px #66bbc1 solid !important;
}
.fountain-blue--ba-71 {
  border: 71px #66bbc1 solid !important;
}
.fountain-blue--bt-71 {
  border-top: 71px #66bbc1 solid !important;
}
.fountain-blue--br-71 {
  border-right: 71px #66bbc1 solid !important;
}
.fountain-blue--bl-71 {
  border-left: 71px #66bbc1 solid !important;
}
.fountain-blue--bb-71 {
  border-bottom: 71px #66bbc1 solid !important;
}
.fountain-blue--by-71 {
  border-top: 71px #66bbc1 solid !important;
  border-bottom: 71px #66bbc1 solid !important;
}
.fountain-blue--bx-71 {
  border-right: 71px #66bbc1 solid !important;
  border-left: 71px #66bbc1 solid !important;
}
.fountain-blue--ba-72 {
  border: 72px #66bbc1 solid !important;
}
.fountain-blue--bt-72 {
  border-top: 72px #66bbc1 solid !important;
}
.fountain-blue--br-72 {
  border-right: 72px #66bbc1 solid !important;
}
.fountain-blue--bl-72 {
  border-left: 72px #66bbc1 solid !important;
}
.fountain-blue--bb-72 {
  border-bottom: 72px #66bbc1 solid !important;
}
.fountain-blue--by-72 {
  border-top: 72px #66bbc1 solid !important;
  border-bottom: 72px #66bbc1 solid !important;
}
.fountain-blue--bx-72 {
  border-right: 72px #66bbc1 solid !important;
  border-left: 72px #66bbc1 solid !important;
}
.fountain-blue--ba-73 {
  border: 73px #66bbc1 solid !important;
}
.fountain-blue--bt-73 {
  border-top: 73px #66bbc1 solid !important;
}
.fountain-blue--br-73 {
  border-right: 73px #66bbc1 solid !important;
}
.fountain-blue--bl-73 {
  border-left: 73px #66bbc1 solid !important;
}
.fountain-blue--bb-73 {
  border-bottom: 73px #66bbc1 solid !important;
}
.fountain-blue--by-73 {
  border-top: 73px #66bbc1 solid !important;
  border-bottom: 73px #66bbc1 solid !important;
}
.fountain-blue--bx-73 {
  border-right: 73px #66bbc1 solid !important;
  border-left: 73px #66bbc1 solid !important;
}
.fountain-blue--ba-74 {
  border: 74px #66bbc1 solid !important;
}
.fountain-blue--bt-74 {
  border-top: 74px #66bbc1 solid !important;
}
.fountain-blue--br-74 {
  border-right: 74px #66bbc1 solid !important;
}
.fountain-blue--bl-74 {
  border-left: 74px #66bbc1 solid !important;
}
.fountain-blue--bb-74 {
  border-bottom: 74px #66bbc1 solid !important;
}
.fountain-blue--by-74 {
  border-top: 74px #66bbc1 solid !important;
  border-bottom: 74px #66bbc1 solid !important;
}
.fountain-blue--bx-74 {
  border-right: 74px #66bbc1 solid !important;
  border-left: 74px #66bbc1 solid !important;
}
.fountain-blue--ba-75 {
  border: 75px #66bbc1 solid !important;
}
.fountain-blue--bt-75 {
  border-top: 75px #66bbc1 solid !important;
}
.fountain-blue--br-75 {
  border-right: 75px #66bbc1 solid !important;
}
.fountain-blue--bl-75 {
  border-left: 75px #66bbc1 solid !important;
}
.fountain-blue--bb-75 {
  border-bottom: 75px #66bbc1 solid !important;
}
.fountain-blue--by-75 {
  border-top: 75px #66bbc1 solid !important;
  border-bottom: 75px #66bbc1 solid !important;
}
.fountain-blue--bx-75 {
  border-right: 75px #66bbc1 solid !important;
  border-left: 75px #66bbc1 solid !important;
}
.fountain-blue--ba-76 {
  border: 76px #66bbc1 solid !important;
}
.fountain-blue--bt-76 {
  border-top: 76px #66bbc1 solid !important;
}
.fountain-blue--br-76 {
  border-right: 76px #66bbc1 solid !important;
}
.fountain-blue--bl-76 {
  border-left: 76px #66bbc1 solid !important;
}
.fountain-blue--bb-76 {
  border-bottom: 76px #66bbc1 solid !important;
}
.fountain-blue--by-76 {
  border-top: 76px #66bbc1 solid !important;
  border-bottom: 76px #66bbc1 solid !important;
}
.fountain-blue--bx-76 {
  border-right: 76px #66bbc1 solid !important;
  border-left: 76px #66bbc1 solid !important;
}
.fountain-blue--ba-77 {
  border: 77px #66bbc1 solid !important;
}
.fountain-blue--bt-77 {
  border-top: 77px #66bbc1 solid !important;
}
.fountain-blue--br-77 {
  border-right: 77px #66bbc1 solid !important;
}
.fountain-blue--bl-77 {
  border-left: 77px #66bbc1 solid !important;
}
.fountain-blue--bb-77 {
  border-bottom: 77px #66bbc1 solid !important;
}
.fountain-blue--by-77 {
  border-top: 77px #66bbc1 solid !important;
  border-bottom: 77px #66bbc1 solid !important;
}
.fountain-blue--bx-77 {
  border-right: 77px #66bbc1 solid !important;
  border-left: 77px #66bbc1 solid !important;
}
.fountain-blue--ba-78 {
  border: 78px #66bbc1 solid !important;
}
.fountain-blue--bt-78 {
  border-top: 78px #66bbc1 solid !important;
}
.fountain-blue--br-78 {
  border-right: 78px #66bbc1 solid !important;
}
.fountain-blue--bl-78 {
  border-left: 78px #66bbc1 solid !important;
}
.fountain-blue--bb-78 {
  border-bottom: 78px #66bbc1 solid !important;
}
.fountain-blue--by-78 {
  border-top: 78px #66bbc1 solid !important;
  border-bottom: 78px #66bbc1 solid !important;
}
.fountain-blue--bx-78 {
  border-right: 78px #66bbc1 solid !important;
  border-left: 78px #66bbc1 solid !important;
}
.fountain-blue--ba-79 {
  border: 79px #66bbc1 solid !important;
}
.fountain-blue--bt-79 {
  border-top: 79px #66bbc1 solid !important;
}
.fountain-blue--br-79 {
  border-right: 79px #66bbc1 solid !important;
}
.fountain-blue--bl-79 {
  border-left: 79px #66bbc1 solid !important;
}
.fountain-blue--bb-79 {
  border-bottom: 79px #66bbc1 solid !important;
}
.fountain-blue--by-79 {
  border-top: 79px #66bbc1 solid !important;
  border-bottom: 79px #66bbc1 solid !important;
}
.fountain-blue--bx-79 {
  border-right: 79px #66bbc1 solid !important;
  border-left: 79px #66bbc1 solid !important;
}
.fountain-blue--ba-80 {
  border: 80px #66bbc1 solid !important;
}
.fountain-blue--bt-80 {
  border-top: 80px #66bbc1 solid !important;
}
.fountain-blue--br-80 {
  border-right: 80px #66bbc1 solid !important;
}
.fountain-blue--bl-80 {
  border-left: 80px #66bbc1 solid !important;
}
.fountain-blue--bb-80 {
  border-bottom: 80px #66bbc1 solid !important;
}
.fountain-blue--by-80 {
  border-top: 80px #66bbc1 solid !important;
  border-bottom: 80px #66bbc1 solid !important;
}
.fountain-blue--bx-80 {
  border-right: 80px #66bbc1 solid !important;
  border-left: 80px #66bbc1 solid !important;
}
.fountain-blue--ba-81 {
  border: 81px #66bbc1 solid !important;
}
.fountain-blue--bt-81 {
  border-top: 81px #66bbc1 solid !important;
}
.fountain-blue--br-81 {
  border-right: 81px #66bbc1 solid !important;
}
.fountain-blue--bl-81 {
  border-left: 81px #66bbc1 solid !important;
}
.fountain-blue--bb-81 {
  border-bottom: 81px #66bbc1 solid !important;
}
.fountain-blue--by-81 {
  border-top: 81px #66bbc1 solid !important;
  border-bottom: 81px #66bbc1 solid !important;
}
.fountain-blue--bx-81 {
  border-right: 81px #66bbc1 solid !important;
  border-left: 81px #66bbc1 solid !important;
}
.fountain-blue--ba-82 {
  border: 82px #66bbc1 solid !important;
}
.fountain-blue--bt-82 {
  border-top: 82px #66bbc1 solid !important;
}
.fountain-blue--br-82 {
  border-right: 82px #66bbc1 solid !important;
}
.fountain-blue--bl-82 {
  border-left: 82px #66bbc1 solid !important;
}
.fountain-blue--bb-82 {
  border-bottom: 82px #66bbc1 solid !important;
}
.fountain-blue--by-82 {
  border-top: 82px #66bbc1 solid !important;
  border-bottom: 82px #66bbc1 solid !important;
}
.fountain-blue--bx-82 {
  border-right: 82px #66bbc1 solid !important;
  border-left: 82px #66bbc1 solid !important;
}
.fountain-blue--ba-83 {
  border: 83px #66bbc1 solid !important;
}
.fountain-blue--bt-83 {
  border-top: 83px #66bbc1 solid !important;
}
.fountain-blue--br-83 {
  border-right: 83px #66bbc1 solid !important;
}
.fountain-blue--bl-83 {
  border-left: 83px #66bbc1 solid !important;
}
.fountain-blue--bb-83 {
  border-bottom: 83px #66bbc1 solid !important;
}
.fountain-blue--by-83 {
  border-top: 83px #66bbc1 solid !important;
  border-bottom: 83px #66bbc1 solid !important;
}
.fountain-blue--bx-83 {
  border-right: 83px #66bbc1 solid !important;
  border-left: 83px #66bbc1 solid !important;
}
.fountain-blue--ba-84 {
  border: 84px #66bbc1 solid !important;
}
.fountain-blue--bt-84 {
  border-top: 84px #66bbc1 solid !important;
}
.fountain-blue--br-84 {
  border-right: 84px #66bbc1 solid !important;
}
.fountain-blue--bl-84 {
  border-left: 84px #66bbc1 solid !important;
}
.fountain-blue--bb-84 {
  border-bottom: 84px #66bbc1 solid !important;
}
.fountain-blue--by-84 {
  border-top: 84px #66bbc1 solid !important;
  border-bottom: 84px #66bbc1 solid !important;
}
.fountain-blue--bx-84 {
  border-right: 84px #66bbc1 solid !important;
  border-left: 84px #66bbc1 solid !important;
}
.fountain-blue--ba-85 {
  border: 85px #66bbc1 solid !important;
}
.fountain-blue--bt-85 {
  border-top: 85px #66bbc1 solid !important;
}
.fountain-blue--br-85 {
  border-right: 85px #66bbc1 solid !important;
}
.fountain-blue--bl-85 {
  border-left: 85px #66bbc1 solid !important;
}
.fountain-blue--bb-85 {
  border-bottom: 85px #66bbc1 solid !important;
}
.fountain-blue--by-85 {
  border-top: 85px #66bbc1 solid !important;
  border-bottom: 85px #66bbc1 solid !important;
}
.fountain-blue--bx-85 {
  border-right: 85px #66bbc1 solid !important;
  border-left: 85px #66bbc1 solid !important;
}
.fountain-blue--ba-86 {
  border: 86px #66bbc1 solid !important;
}
.fountain-blue--bt-86 {
  border-top: 86px #66bbc1 solid !important;
}
.fountain-blue--br-86 {
  border-right: 86px #66bbc1 solid !important;
}
.fountain-blue--bl-86 {
  border-left: 86px #66bbc1 solid !important;
}
.fountain-blue--bb-86 {
  border-bottom: 86px #66bbc1 solid !important;
}
.fountain-blue--by-86 {
  border-top: 86px #66bbc1 solid !important;
  border-bottom: 86px #66bbc1 solid !important;
}
.fountain-blue--bx-86 {
  border-right: 86px #66bbc1 solid !important;
  border-left: 86px #66bbc1 solid !important;
}
.fountain-blue--ba-87 {
  border: 87px #66bbc1 solid !important;
}
.fountain-blue--bt-87 {
  border-top: 87px #66bbc1 solid !important;
}
.fountain-blue--br-87 {
  border-right: 87px #66bbc1 solid !important;
}
.fountain-blue--bl-87 {
  border-left: 87px #66bbc1 solid !important;
}
.fountain-blue--bb-87 {
  border-bottom: 87px #66bbc1 solid !important;
}
.fountain-blue--by-87 {
  border-top: 87px #66bbc1 solid !important;
  border-bottom: 87px #66bbc1 solid !important;
}
.fountain-blue--bx-87 {
  border-right: 87px #66bbc1 solid !important;
  border-left: 87px #66bbc1 solid !important;
}
.fountain-blue--ba-88 {
  border: 88px #66bbc1 solid !important;
}
.fountain-blue--bt-88 {
  border-top: 88px #66bbc1 solid !important;
}
.fountain-blue--br-88 {
  border-right: 88px #66bbc1 solid !important;
}
.fountain-blue--bl-88 {
  border-left: 88px #66bbc1 solid !important;
}
.fountain-blue--bb-88 {
  border-bottom: 88px #66bbc1 solid !important;
}
.fountain-blue--by-88 {
  border-top: 88px #66bbc1 solid !important;
  border-bottom: 88px #66bbc1 solid !important;
}
.fountain-blue--bx-88 {
  border-right: 88px #66bbc1 solid !important;
  border-left: 88px #66bbc1 solid !important;
}
.fountain-blue--ba-89 {
  border: 89px #66bbc1 solid !important;
}
.fountain-blue--bt-89 {
  border-top: 89px #66bbc1 solid !important;
}
.fountain-blue--br-89 {
  border-right: 89px #66bbc1 solid !important;
}
.fountain-blue--bl-89 {
  border-left: 89px #66bbc1 solid !important;
}
.fountain-blue--bb-89 {
  border-bottom: 89px #66bbc1 solid !important;
}
.fountain-blue--by-89 {
  border-top: 89px #66bbc1 solid !important;
  border-bottom: 89px #66bbc1 solid !important;
}
.fountain-blue--bx-89 {
  border-right: 89px #66bbc1 solid !important;
  border-left: 89px #66bbc1 solid !important;
}
.fountain-blue--ba-90 {
  border: 90px #66bbc1 solid !important;
}
.fountain-blue--bt-90 {
  border-top: 90px #66bbc1 solid !important;
}
.fountain-blue--br-90 {
  border-right: 90px #66bbc1 solid !important;
}
.fountain-blue--bl-90 {
  border-left: 90px #66bbc1 solid !important;
}
.fountain-blue--bb-90 {
  border-bottom: 90px #66bbc1 solid !important;
}
.fountain-blue--by-90 {
  border-top: 90px #66bbc1 solid !important;
  border-bottom: 90px #66bbc1 solid !important;
}
.fountain-blue--bx-90 {
  border-right: 90px #66bbc1 solid !important;
  border-left: 90px #66bbc1 solid !important;
}
.fountain-blue--ba-91 {
  border: 91px #66bbc1 solid !important;
}
.fountain-blue--bt-91 {
  border-top: 91px #66bbc1 solid !important;
}
.fountain-blue--br-91 {
  border-right: 91px #66bbc1 solid !important;
}
.fountain-blue--bl-91 {
  border-left: 91px #66bbc1 solid !important;
}
.fountain-blue--bb-91 {
  border-bottom: 91px #66bbc1 solid !important;
}
.fountain-blue--by-91 {
  border-top: 91px #66bbc1 solid !important;
  border-bottom: 91px #66bbc1 solid !important;
}
.fountain-blue--bx-91 {
  border-right: 91px #66bbc1 solid !important;
  border-left: 91px #66bbc1 solid !important;
}
.fountain-blue--ba-92 {
  border: 92px #66bbc1 solid !important;
}
.fountain-blue--bt-92 {
  border-top: 92px #66bbc1 solid !important;
}
.fountain-blue--br-92 {
  border-right: 92px #66bbc1 solid !important;
}
.fountain-blue--bl-92 {
  border-left: 92px #66bbc1 solid !important;
}
.fountain-blue--bb-92 {
  border-bottom: 92px #66bbc1 solid !important;
}
.fountain-blue--by-92 {
  border-top: 92px #66bbc1 solid !important;
  border-bottom: 92px #66bbc1 solid !important;
}
.fountain-blue--bx-92 {
  border-right: 92px #66bbc1 solid !important;
  border-left: 92px #66bbc1 solid !important;
}
.fountain-blue--ba-93 {
  border: 93px #66bbc1 solid !important;
}
.fountain-blue--bt-93 {
  border-top: 93px #66bbc1 solid !important;
}
.fountain-blue--br-93 {
  border-right: 93px #66bbc1 solid !important;
}
.fountain-blue--bl-93 {
  border-left: 93px #66bbc1 solid !important;
}
.fountain-blue--bb-93 {
  border-bottom: 93px #66bbc1 solid !important;
}
.fountain-blue--by-93 {
  border-top: 93px #66bbc1 solid !important;
  border-bottom: 93px #66bbc1 solid !important;
}
.fountain-blue--bx-93 {
  border-right: 93px #66bbc1 solid !important;
  border-left: 93px #66bbc1 solid !important;
}
.fountain-blue--ba-94 {
  border: 94px #66bbc1 solid !important;
}
.fountain-blue--bt-94 {
  border-top: 94px #66bbc1 solid !important;
}
.fountain-blue--br-94 {
  border-right: 94px #66bbc1 solid !important;
}
.fountain-blue--bl-94 {
  border-left: 94px #66bbc1 solid !important;
}
.fountain-blue--bb-94 {
  border-bottom: 94px #66bbc1 solid !important;
}
.fountain-blue--by-94 {
  border-top: 94px #66bbc1 solid !important;
  border-bottom: 94px #66bbc1 solid !important;
}
.fountain-blue--bx-94 {
  border-right: 94px #66bbc1 solid !important;
  border-left: 94px #66bbc1 solid !important;
}
.fountain-blue--ba-95 {
  border: 95px #66bbc1 solid !important;
}
.fountain-blue--bt-95 {
  border-top: 95px #66bbc1 solid !important;
}
.fountain-blue--br-95 {
  border-right: 95px #66bbc1 solid !important;
}
.fountain-blue--bl-95 {
  border-left: 95px #66bbc1 solid !important;
}
.fountain-blue--bb-95 {
  border-bottom: 95px #66bbc1 solid !important;
}
.fountain-blue--by-95 {
  border-top: 95px #66bbc1 solid !important;
  border-bottom: 95px #66bbc1 solid !important;
}
.fountain-blue--bx-95 {
  border-right: 95px #66bbc1 solid !important;
  border-left: 95px #66bbc1 solid !important;
}
.fountain-blue--ba-96 {
  border: 96px #66bbc1 solid !important;
}
.fountain-blue--bt-96 {
  border-top: 96px #66bbc1 solid !important;
}
.fountain-blue--br-96 {
  border-right: 96px #66bbc1 solid !important;
}
.fountain-blue--bl-96 {
  border-left: 96px #66bbc1 solid !important;
}
.fountain-blue--bb-96 {
  border-bottom: 96px #66bbc1 solid !important;
}
.fountain-blue--by-96 {
  border-top: 96px #66bbc1 solid !important;
  border-bottom: 96px #66bbc1 solid !important;
}
.fountain-blue--bx-96 {
  border-right: 96px #66bbc1 solid !important;
  border-left: 96px #66bbc1 solid !important;
}
.fountain-blue--ba-97 {
  border: 97px #66bbc1 solid !important;
}
.fountain-blue--bt-97 {
  border-top: 97px #66bbc1 solid !important;
}
.fountain-blue--br-97 {
  border-right: 97px #66bbc1 solid !important;
}
.fountain-blue--bl-97 {
  border-left: 97px #66bbc1 solid !important;
}
.fountain-blue--bb-97 {
  border-bottom: 97px #66bbc1 solid !important;
}
.fountain-blue--by-97 {
  border-top: 97px #66bbc1 solid !important;
  border-bottom: 97px #66bbc1 solid !important;
}
.fountain-blue--bx-97 {
  border-right: 97px #66bbc1 solid !important;
  border-left: 97px #66bbc1 solid !important;
}
.fountain-blue--ba-98 {
  border: 98px #66bbc1 solid !important;
}
.fountain-blue--bt-98 {
  border-top: 98px #66bbc1 solid !important;
}
.fountain-blue--br-98 {
  border-right: 98px #66bbc1 solid !important;
}
.fountain-blue--bl-98 {
  border-left: 98px #66bbc1 solid !important;
}
.fountain-blue--bb-98 {
  border-bottom: 98px #66bbc1 solid !important;
}
.fountain-blue--by-98 {
  border-top: 98px #66bbc1 solid !important;
  border-bottom: 98px #66bbc1 solid !important;
}
.fountain-blue--bx-98 {
  border-right: 98px #66bbc1 solid !important;
  border-left: 98px #66bbc1 solid !important;
}
.fountain-blue--ba-99 {
  border: 99px #66bbc1 solid !important;
}
.fountain-blue--bt-99 {
  border-top: 99px #66bbc1 solid !important;
}
.fountain-blue--br-99 {
  border-right: 99px #66bbc1 solid !important;
}
.fountain-blue--bl-99 {
  border-left: 99px #66bbc1 solid !important;
}
.fountain-blue--bb-99 {
  border-bottom: 99px #66bbc1 solid !important;
}
.fountain-blue--by-99 {
  border-top: 99px #66bbc1 solid !important;
  border-bottom: 99px #66bbc1 solid !important;
}
.fountain-blue--bx-99 {
  border-right: 99px #66bbc1 solid !important;
  border-left: 99px #66bbc1 solid !important;
}
.fountain-blue--ba-100 {
  border: 100px #66bbc1 solid !important;
}
.fountain-blue--bt-100 {
  border-top: 100px #66bbc1 solid !important;
}
.fountain-blue--br-100 {
  border-right: 100px #66bbc1 solid !important;
}
.fountain-blue--bl-100 {
  border-left: 100px #66bbc1 solid !important;
}
.fountain-blue--bb-100 {
  border-bottom: 100px #66bbc1 solid !important;
}
.fountain-blue--by-100 {
  border-top: 100px #66bbc1 solid !important;
  border-bottom: 100px #66bbc1 solid !important;
}
.fountain-blue--bx-100 {
  border-right: 100px #66bbc1 solid !important;
  border-left: 100px #66bbc1 solid !important;
}
.kashimir-blue--ba-1 {
  border: 1px #506498 solid !important;
}
.kashimir-blue--bt-1 {
  border-top: 1px #506498 solid !important;
}
.kashimir-blue--br-1 {
  border-right: 1px #506498 solid !important;
}
.kashimir-blue--bl-1 {
  border-left: 1px #506498 solid !important;
}
.kashimir-blue--bb-1 {
  border-bottom: 1px #506498 solid !important;
}
.kashimir-blue--by-1 {
  border-top: 1px #506498 solid !important;
  border-bottom: 1px #506498 solid !important;
}
.kashimir-blue--bx-1 {
  border-right: 1px #506498 solid !important;
  border-left: 1px #506498 solid !important;
}
.kashimir-blue--ba-2 {
  border: 2px #506498 solid !important;
}
.kashimir-blue--bt-2 {
  border-top: 2px #506498 solid !important;
}
.kashimir-blue--br-2 {
  border-right: 2px #506498 solid !important;
}
.kashimir-blue--bl-2 {
  border-left: 2px #506498 solid !important;
}
.kashimir-blue--bb-2 {
  border-bottom: 2px #506498 solid !important;
}
.kashimir-blue--by-2 {
  border-top: 2px #506498 solid !important;
  border-bottom: 2px #506498 solid !important;
}
.kashimir-blue--bx-2 {
  border-right: 2px #506498 solid !important;
  border-left: 2px #506498 solid !important;
}
.kashimir-blue--ba-3 {
  border: 3px #506498 solid !important;
}
.kashimir-blue--bt-3 {
  border-top: 3px #506498 solid !important;
}
.kashimir-blue--br-3 {
  border-right: 3px #506498 solid !important;
}
.kashimir-blue--bl-3 {
  border-left: 3px #506498 solid !important;
}
.kashimir-blue--bb-3 {
  border-bottom: 3px #506498 solid !important;
}
.kashimir-blue--by-3 {
  border-top: 3px #506498 solid !important;
  border-bottom: 3px #506498 solid !important;
}
.kashimir-blue--bx-3 {
  border-right: 3px #506498 solid !important;
  border-left: 3px #506498 solid !important;
}
.kashimir-blue--ba-4 {
  border: 4px #506498 solid !important;
}
.kashimir-blue--bt-4 {
  border-top: 4px #506498 solid !important;
}
.kashimir-blue--br-4 {
  border-right: 4px #506498 solid !important;
}
.kashimir-blue--bl-4 {
  border-left: 4px #506498 solid !important;
}
.kashimir-blue--bb-4 {
  border-bottom: 4px #506498 solid !important;
}
.kashimir-blue--by-4 {
  border-top: 4px #506498 solid !important;
  border-bottom: 4px #506498 solid !important;
}
.kashimir-blue--bx-4 {
  border-right: 4px #506498 solid !important;
  border-left: 4px #506498 solid !important;
}
.kashimir-blue--ba-5 {
  border: 5px #506498 solid !important;
}
.kashimir-blue--bt-5 {
  border-top: 5px #506498 solid !important;
}
.kashimir-blue--br-5 {
  border-right: 5px #506498 solid !important;
}
.kashimir-blue--bl-5 {
  border-left: 5px #506498 solid !important;
}
.kashimir-blue--bb-5 {
  border-bottom: 5px #506498 solid !important;
}
.kashimir-blue--by-5 {
  border-top: 5px #506498 solid !important;
  border-bottom: 5px #506498 solid !important;
}
.kashimir-blue--bx-5 {
  border-right: 5px #506498 solid !important;
  border-left: 5px #506498 solid !important;
}
.kashimir-blue--ba-6 {
  border: 6px #506498 solid !important;
}
.kashimir-blue--bt-6 {
  border-top: 6px #506498 solid !important;
}
.kashimir-blue--br-6 {
  border-right: 6px #506498 solid !important;
}
.kashimir-blue--bl-6 {
  border-left: 6px #506498 solid !important;
}
.kashimir-blue--bb-6 {
  border-bottom: 6px #506498 solid !important;
}
.kashimir-blue--by-6 {
  border-top: 6px #506498 solid !important;
  border-bottom: 6px #506498 solid !important;
}
.kashimir-blue--bx-6 {
  border-right: 6px #506498 solid !important;
  border-left: 6px #506498 solid !important;
}
.kashimir-blue--ba-7 {
  border: 7px #506498 solid !important;
}
.kashimir-blue--bt-7 {
  border-top: 7px #506498 solid !important;
}
.kashimir-blue--br-7 {
  border-right: 7px #506498 solid !important;
}
.kashimir-blue--bl-7 {
  border-left: 7px #506498 solid !important;
}
.kashimir-blue--bb-7 {
  border-bottom: 7px #506498 solid !important;
}
.kashimir-blue--by-7 {
  border-top: 7px #506498 solid !important;
  border-bottom: 7px #506498 solid !important;
}
.kashimir-blue--bx-7 {
  border-right: 7px #506498 solid !important;
  border-left: 7px #506498 solid !important;
}
.kashimir-blue--ba-8 {
  border: 8px #506498 solid !important;
}
.kashimir-blue--bt-8 {
  border-top: 8px #506498 solid !important;
}
.kashimir-blue--br-8 {
  border-right: 8px #506498 solid !important;
}
.kashimir-blue--bl-8 {
  border-left: 8px #506498 solid !important;
}
.kashimir-blue--bb-8 {
  border-bottom: 8px #506498 solid !important;
}
.kashimir-blue--by-8 {
  border-top: 8px #506498 solid !important;
  border-bottom: 8px #506498 solid !important;
}
.kashimir-blue--bx-8 {
  border-right: 8px #506498 solid !important;
  border-left: 8px #506498 solid !important;
}
.kashimir-blue--ba-9 {
  border: 9px #506498 solid !important;
}
.kashimir-blue--bt-9 {
  border-top: 9px #506498 solid !important;
}
.kashimir-blue--br-9 {
  border-right: 9px #506498 solid !important;
}
.kashimir-blue--bl-9 {
  border-left: 9px #506498 solid !important;
}
.kashimir-blue--bb-9 {
  border-bottom: 9px #506498 solid !important;
}
.kashimir-blue--by-9 {
  border-top: 9px #506498 solid !important;
  border-bottom: 9px #506498 solid !important;
}
.kashimir-blue--bx-9 {
  border-right: 9px #506498 solid !important;
  border-left: 9px #506498 solid !important;
}
.kashimir-blue--ba-10 {
  border: 10px #506498 solid !important;
}
.kashimir-blue--bt-10 {
  border-top: 10px #506498 solid !important;
}
.kashimir-blue--br-10 {
  border-right: 10px #506498 solid !important;
}
.kashimir-blue--bl-10 {
  border-left: 10px #506498 solid !important;
}
.kashimir-blue--bb-10 {
  border-bottom: 10px #506498 solid !important;
}
.kashimir-blue--by-10 {
  border-top: 10px #506498 solid !important;
  border-bottom: 10px #506498 solid !important;
}
.kashimir-blue--bx-10 {
  border-right: 10px #506498 solid !important;
  border-left: 10px #506498 solid !important;
}
.kashimir-blue--ba-11 {
  border: 11px #506498 solid !important;
}
.kashimir-blue--bt-11 {
  border-top: 11px #506498 solid !important;
}
.kashimir-blue--br-11 {
  border-right: 11px #506498 solid !important;
}
.kashimir-blue--bl-11 {
  border-left: 11px #506498 solid !important;
}
.kashimir-blue--bb-11 {
  border-bottom: 11px #506498 solid !important;
}
.kashimir-blue--by-11 {
  border-top: 11px #506498 solid !important;
  border-bottom: 11px #506498 solid !important;
}
.kashimir-blue--bx-11 {
  border-right: 11px #506498 solid !important;
  border-left: 11px #506498 solid !important;
}
.kashimir-blue--ba-12 {
  border: 12px #506498 solid !important;
}
.kashimir-blue--bt-12 {
  border-top: 12px #506498 solid !important;
}
.kashimir-blue--br-12 {
  border-right: 12px #506498 solid !important;
}
.kashimir-blue--bl-12 {
  border-left: 12px #506498 solid !important;
}
.kashimir-blue--bb-12 {
  border-bottom: 12px #506498 solid !important;
}
.kashimir-blue--by-12 {
  border-top: 12px #506498 solid !important;
  border-bottom: 12px #506498 solid !important;
}
.kashimir-blue--bx-12 {
  border-right: 12px #506498 solid !important;
  border-left: 12px #506498 solid !important;
}
.kashimir-blue--ba-13 {
  border: 13px #506498 solid !important;
}
.kashimir-blue--bt-13 {
  border-top: 13px #506498 solid !important;
}
.kashimir-blue--br-13 {
  border-right: 13px #506498 solid !important;
}
.kashimir-blue--bl-13 {
  border-left: 13px #506498 solid !important;
}
.kashimir-blue--bb-13 {
  border-bottom: 13px #506498 solid !important;
}
.kashimir-blue--by-13 {
  border-top: 13px #506498 solid !important;
  border-bottom: 13px #506498 solid !important;
}
.kashimir-blue--bx-13 {
  border-right: 13px #506498 solid !important;
  border-left: 13px #506498 solid !important;
}
.kashimir-blue--ba-14 {
  border: 14px #506498 solid !important;
}
.kashimir-blue--bt-14 {
  border-top: 14px #506498 solid !important;
}
.kashimir-blue--br-14 {
  border-right: 14px #506498 solid !important;
}
.kashimir-blue--bl-14 {
  border-left: 14px #506498 solid !important;
}
.kashimir-blue--bb-14 {
  border-bottom: 14px #506498 solid !important;
}
.kashimir-blue--by-14 {
  border-top: 14px #506498 solid !important;
  border-bottom: 14px #506498 solid !important;
}
.kashimir-blue--bx-14 {
  border-right: 14px #506498 solid !important;
  border-left: 14px #506498 solid !important;
}
.kashimir-blue--ba-15 {
  border: 15px #506498 solid !important;
}
.kashimir-blue--bt-15 {
  border-top: 15px #506498 solid !important;
}
.kashimir-blue--br-15 {
  border-right: 15px #506498 solid !important;
}
.kashimir-blue--bl-15 {
  border-left: 15px #506498 solid !important;
}
.kashimir-blue--bb-15 {
  border-bottom: 15px #506498 solid !important;
}
.kashimir-blue--by-15 {
  border-top: 15px #506498 solid !important;
  border-bottom: 15px #506498 solid !important;
}
.kashimir-blue--bx-15 {
  border-right: 15px #506498 solid !important;
  border-left: 15px #506498 solid !important;
}
.kashimir-blue--ba-16 {
  border: 16px #506498 solid !important;
}
.kashimir-blue--bt-16 {
  border-top: 16px #506498 solid !important;
}
.kashimir-blue--br-16 {
  border-right: 16px #506498 solid !important;
}
.kashimir-blue--bl-16 {
  border-left: 16px #506498 solid !important;
}
.kashimir-blue--bb-16 {
  border-bottom: 16px #506498 solid !important;
}
.kashimir-blue--by-16 {
  border-top: 16px #506498 solid !important;
  border-bottom: 16px #506498 solid !important;
}
.kashimir-blue--bx-16 {
  border-right: 16px #506498 solid !important;
  border-left: 16px #506498 solid !important;
}
.kashimir-blue--ba-17 {
  border: 17px #506498 solid !important;
}
.kashimir-blue--bt-17 {
  border-top: 17px #506498 solid !important;
}
.kashimir-blue--br-17 {
  border-right: 17px #506498 solid !important;
}
.kashimir-blue--bl-17 {
  border-left: 17px #506498 solid !important;
}
.kashimir-blue--bb-17 {
  border-bottom: 17px #506498 solid !important;
}
.kashimir-blue--by-17 {
  border-top: 17px #506498 solid !important;
  border-bottom: 17px #506498 solid !important;
}
.kashimir-blue--bx-17 {
  border-right: 17px #506498 solid !important;
  border-left: 17px #506498 solid !important;
}
.kashimir-blue--ba-18 {
  border: 18px #506498 solid !important;
}
.kashimir-blue--bt-18 {
  border-top: 18px #506498 solid !important;
}
.kashimir-blue--br-18 {
  border-right: 18px #506498 solid !important;
}
.kashimir-blue--bl-18 {
  border-left: 18px #506498 solid !important;
}
.kashimir-blue--bb-18 {
  border-bottom: 18px #506498 solid !important;
}
.kashimir-blue--by-18 {
  border-top: 18px #506498 solid !important;
  border-bottom: 18px #506498 solid !important;
}
.kashimir-blue--bx-18 {
  border-right: 18px #506498 solid !important;
  border-left: 18px #506498 solid !important;
}
.kashimir-blue--ba-19 {
  border: 19px #506498 solid !important;
}
.kashimir-blue--bt-19 {
  border-top: 19px #506498 solid !important;
}
.kashimir-blue--br-19 {
  border-right: 19px #506498 solid !important;
}
.kashimir-blue--bl-19 {
  border-left: 19px #506498 solid !important;
}
.kashimir-blue--bb-19 {
  border-bottom: 19px #506498 solid !important;
}
.kashimir-blue--by-19 {
  border-top: 19px #506498 solid !important;
  border-bottom: 19px #506498 solid !important;
}
.kashimir-blue--bx-19 {
  border-right: 19px #506498 solid !important;
  border-left: 19px #506498 solid !important;
}
.kashimir-blue--ba-20 {
  border: 20px #506498 solid !important;
}
.kashimir-blue--bt-20 {
  border-top: 20px #506498 solid !important;
}
.kashimir-blue--br-20 {
  border-right: 20px #506498 solid !important;
}
.kashimir-blue--bl-20 {
  border-left: 20px #506498 solid !important;
}
.kashimir-blue--bb-20 {
  border-bottom: 20px #506498 solid !important;
}
.kashimir-blue--by-20 {
  border-top: 20px #506498 solid !important;
  border-bottom: 20px #506498 solid !important;
}
.kashimir-blue--bx-20 {
  border-right: 20px #506498 solid !important;
  border-left: 20px #506498 solid !important;
}
.kashimir-blue--ba-21 {
  border: 21px #506498 solid !important;
}
.kashimir-blue--bt-21 {
  border-top: 21px #506498 solid !important;
}
.kashimir-blue--br-21 {
  border-right: 21px #506498 solid !important;
}
.kashimir-blue--bl-21 {
  border-left: 21px #506498 solid !important;
}
.kashimir-blue--bb-21 {
  border-bottom: 21px #506498 solid !important;
}
.kashimir-blue--by-21 {
  border-top: 21px #506498 solid !important;
  border-bottom: 21px #506498 solid !important;
}
.kashimir-blue--bx-21 {
  border-right: 21px #506498 solid !important;
  border-left: 21px #506498 solid !important;
}
.kashimir-blue--ba-22 {
  border: 22px #506498 solid !important;
}
.kashimir-blue--bt-22 {
  border-top: 22px #506498 solid !important;
}
.kashimir-blue--br-22 {
  border-right: 22px #506498 solid !important;
}
.kashimir-blue--bl-22 {
  border-left: 22px #506498 solid !important;
}
.kashimir-blue--bb-22 {
  border-bottom: 22px #506498 solid !important;
}
.kashimir-blue--by-22 {
  border-top: 22px #506498 solid !important;
  border-bottom: 22px #506498 solid !important;
}
.kashimir-blue--bx-22 {
  border-right: 22px #506498 solid !important;
  border-left: 22px #506498 solid !important;
}
.kashimir-blue--ba-23 {
  border: 23px #506498 solid !important;
}
.kashimir-blue--bt-23 {
  border-top: 23px #506498 solid !important;
}
.kashimir-blue--br-23 {
  border-right: 23px #506498 solid !important;
}
.kashimir-blue--bl-23 {
  border-left: 23px #506498 solid !important;
}
.kashimir-blue--bb-23 {
  border-bottom: 23px #506498 solid !important;
}
.kashimir-blue--by-23 {
  border-top: 23px #506498 solid !important;
  border-bottom: 23px #506498 solid !important;
}
.kashimir-blue--bx-23 {
  border-right: 23px #506498 solid !important;
  border-left: 23px #506498 solid !important;
}
.kashimir-blue--ba-24 {
  border: 24px #506498 solid !important;
}
.kashimir-blue--bt-24 {
  border-top: 24px #506498 solid !important;
}
.kashimir-blue--br-24 {
  border-right: 24px #506498 solid !important;
}
.kashimir-blue--bl-24 {
  border-left: 24px #506498 solid !important;
}
.kashimir-blue--bb-24 {
  border-bottom: 24px #506498 solid !important;
}
.kashimir-blue--by-24 {
  border-top: 24px #506498 solid !important;
  border-bottom: 24px #506498 solid !important;
}
.kashimir-blue--bx-24 {
  border-right: 24px #506498 solid !important;
  border-left: 24px #506498 solid !important;
}
.kashimir-blue--ba-25 {
  border: 25px #506498 solid !important;
}
.kashimir-blue--bt-25 {
  border-top: 25px #506498 solid !important;
}
.kashimir-blue--br-25 {
  border-right: 25px #506498 solid !important;
}
.kashimir-blue--bl-25 {
  border-left: 25px #506498 solid !important;
}
.kashimir-blue--bb-25 {
  border-bottom: 25px #506498 solid !important;
}
.kashimir-blue--by-25 {
  border-top: 25px #506498 solid !important;
  border-bottom: 25px #506498 solid !important;
}
.kashimir-blue--bx-25 {
  border-right: 25px #506498 solid !important;
  border-left: 25px #506498 solid !important;
}
.kashimir-blue--ba-26 {
  border: 26px #506498 solid !important;
}
.kashimir-blue--bt-26 {
  border-top: 26px #506498 solid !important;
}
.kashimir-blue--br-26 {
  border-right: 26px #506498 solid !important;
}
.kashimir-blue--bl-26 {
  border-left: 26px #506498 solid !important;
}
.kashimir-blue--bb-26 {
  border-bottom: 26px #506498 solid !important;
}
.kashimir-blue--by-26 {
  border-top: 26px #506498 solid !important;
  border-bottom: 26px #506498 solid !important;
}
.kashimir-blue--bx-26 {
  border-right: 26px #506498 solid !important;
  border-left: 26px #506498 solid !important;
}
.kashimir-blue--ba-27 {
  border: 27px #506498 solid !important;
}
.kashimir-blue--bt-27 {
  border-top: 27px #506498 solid !important;
}
.kashimir-blue--br-27 {
  border-right: 27px #506498 solid !important;
}
.kashimir-blue--bl-27 {
  border-left: 27px #506498 solid !important;
}
.kashimir-blue--bb-27 {
  border-bottom: 27px #506498 solid !important;
}
.kashimir-blue--by-27 {
  border-top: 27px #506498 solid !important;
  border-bottom: 27px #506498 solid !important;
}
.kashimir-blue--bx-27 {
  border-right: 27px #506498 solid !important;
  border-left: 27px #506498 solid !important;
}
.kashimir-blue--ba-28 {
  border: 28px #506498 solid !important;
}
.kashimir-blue--bt-28 {
  border-top: 28px #506498 solid !important;
}
.kashimir-blue--br-28 {
  border-right: 28px #506498 solid !important;
}
.kashimir-blue--bl-28 {
  border-left: 28px #506498 solid !important;
}
.kashimir-blue--bb-28 {
  border-bottom: 28px #506498 solid !important;
}
.kashimir-blue--by-28 {
  border-top: 28px #506498 solid !important;
  border-bottom: 28px #506498 solid !important;
}
.kashimir-blue--bx-28 {
  border-right: 28px #506498 solid !important;
  border-left: 28px #506498 solid !important;
}
.kashimir-blue--ba-29 {
  border: 29px #506498 solid !important;
}
.kashimir-blue--bt-29 {
  border-top: 29px #506498 solid !important;
}
.kashimir-blue--br-29 {
  border-right: 29px #506498 solid !important;
}
.kashimir-blue--bl-29 {
  border-left: 29px #506498 solid !important;
}
.kashimir-blue--bb-29 {
  border-bottom: 29px #506498 solid !important;
}
.kashimir-blue--by-29 {
  border-top: 29px #506498 solid !important;
  border-bottom: 29px #506498 solid !important;
}
.kashimir-blue--bx-29 {
  border-right: 29px #506498 solid !important;
  border-left: 29px #506498 solid !important;
}
.kashimir-blue--ba-30 {
  border: 30px #506498 solid !important;
}
.kashimir-blue--bt-30 {
  border-top: 30px #506498 solid !important;
}
.kashimir-blue--br-30 {
  border-right: 30px #506498 solid !important;
}
.kashimir-blue--bl-30 {
  border-left: 30px #506498 solid !important;
}
.kashimir-blue--bb-30 {
  border-bottom: 30px #506498 solid !important;
}
.kashimir-blue--by-30 {
  border-top: 30px #506498 solid !important;
  border-bottom: 30px #506498 solid !important;
}
.kashimir-blue--bx-30 {
  border-right: 30px #506498 solid !important;
  border-left: 30px #506498 solid !important;
}
.kashimir-blue--ba-31 {
  border: 31px #506498 solid !important;
}
.kashimir-blue--bt-31 {
  border-top: 31px #506498 solid !important;
}
.kashimir-blue--br-31 {
  border-right: 31px #506498 solid !important;
}
.kashimir-blue--bl-31 {
  border-left: 31px #506498 solid !important;
}
.kashimir-blue--bb-31 {
  border-bottom: 31px #506498 solid !important;
}
.kashimir-blue--by-31 {
  border-top: 31px #506498 solid !important;
  border-bottom: 31px #506498 solid !important;
}
.kashimir-blue--bx-31 {
  border-right: 31px #506498 solid !important;
  border-left: 31px #506498 solid !important;
}
.kashimir-blue--ba-32 {
  border: 32px #506498 solid !important;
}
.kashimir-blue--bt-32 {
  border-top: 32px #506498 solid !important;
}
.kashimir-blue--br-32 {
  border-right: 32px #506498 solid !important;
}
.kashimir-blue--bl-32 {
  border-left: 32px #506498 solid !important;
}
.kashimir-blue--bb-32 {
  border-bottom: 32px #506498 solid !important;
}
.kashimir-blue--by-32 {
  border-top: 32px #506498 solid !important;
  border-bottom: 32px #506498 solid !important;
}
.kashimir-blue--bx-32 {
  border-right: 32px #506498 solid !important;
  border-left: 32px #506498 solid !important;
}
.kashimir-blue--ba-33 {
  border: 33px #506498 solid !important;
}
.kashimir-blue--bt-33 {
  border-top: 33px #506498 solid !important;
}
.kashimir-blue--br-33 {
  border-right: 33px #506498 solid !important;
}
.kashimir-blue--bl-33 {
  border-left: 33px #506498 solid !important;
}
.kashimir-blue--bb-33 {
  border-bottom: 33px #506498 solid !important;
}
.kashimir-blue--by-33 {
  border-top: 33px #506498 solid !important;
  border-bottom: 33px #506498 solid !important;
}
.kashimir-blue--bx-33 {
  border-right: 33px #506498 solid !important;
  border-left: 33px #506498 solid !important;
}
.kashimir-blue--ba-34 {
  border: 34px #506498 solid !important;
}
.kashimir-blue--bt-34 {
  border-top: 34px #506498 solid !important;
}
.kashimir-blue--br-34 {
  border-right: 34px #506498 solid !important;
}
.kashimir-blue--bl-34 {
  border-left: 34px #506498 solid !important;
}
.kashimir-blue--bb-34 {
  border-bottom: 34px #506498 solid !important;
}
.kashimir-blue--by-34 {
  border-top: 34px #506498 solid !important;
  border-bottom: 34px #506498 solid !important;
}
.kashimir-blue--bx-34 {
  border-right: 34px #506498 solid !important;
  border-left: 34px #506498 solid !important;
}
.kashimir-blue--ba-35 {
  border: 35px #506498 solid !important;
}
.kashimir-blue--bt-35 {
  border-top: 35px #506498 solid !important;
}
.kashimir-blue--br-35 {
  border-right: 35px #506498 solid !important;
}
.kashimir-blue--bl-35 {
  border-left: 35px #506498 solid !important;
}
.kashimir-blue--bb-35 {
  border-bottom: 35px #506498 solid !important;
}
.kashimir-blue--by-35 {
  border-top: 35px #506498 solid !important;
  border-bottom: 35px #506498 solid !important;
}
.kashimir-blue--bx-35 {
  border-right: 35px #506498 solid !important;
  border-left: 35px #506498 solid !important;
}
.kashimir-blue--ba-36 {
  border: 36px #506498 solid !important;
}
.kashimir-blue--bt-36 {
  border-top: 36px #506498 solid !important;
}
.kashimir-blue--br-36 {
  border-right: 36px #506498 solid !important;
}
.kashimir-blue--bl-36 {
  border-left: 36px #506498 solid !important;
}
.kashimir-blue--bb-36 {
  border-bottom: 36px #506498 solid !important;
}
.kashimir-blue--by-36 {
  border-top: 36px #506498 solid !important;
  border-bottom: 36px #506498 solid !important;
}
.kashimir-blue--bx-36 {
  border-right: 36px #506498 solid !important;
  border-left: 36px #506498 solid !important;
}
.kashimir-blue--ba-37 {
  border: 37px #506498 solid !important;
}
.kashimir-blue--bt-37 {
  border-top: 37px #506498 solid !important;
}
.kashimir-blue--br-37 {
  border-right: 37px #506498 solid !important;
}
.kashimir-blue--bl-37 {
  border-left: 37px #506498 solid !important;
}
.kashimir-blue--bb-37 {
  border-bottom: 37px #506498 solid !important;
}
.kashimir-blue--by-37 {
  border-top: 37px #506498 solid !important;
  border-bottom: 37px #506498 solid !important;
}
.kashimir-blue--bx-37 {
  border-right: 37px #506498 solid !important;
  border-left: 37px #506498 solid !important;
}
.kashimir-blue--ba-38 {
  border: 38px #506498 solid !important;
}
.kashimir-blue--bt-38 {
  border-top: 38px #506498 solid !important;
}
.kashimir-blue--br-38 {
  border-right: 38px #506498 solid !important;
}
.kashimir-blue--bl-38 {
  border-left: 38px #506498 solid !important;
}
.kashimir-blue--bb-38 {
  border-bottom: 38px #506498 solid !important;
}
.kashimir-blue--by-38 {
  border-top: 38px #506498 solid !important;
  border-bottom: 38px #506498 solid !important;
}
.kashimir-blue--bx-38 {
  border-right: 38px #506498 solid !important;
  border-left: 38px #506498 solid !important;
}
.kashimir-blue--ba-39 {
  border: 39px #506498 solid !important;
}
.kashimir-blue--bt-39 {
  border-top: 39px #506498 solid !important;
}
.kashimir-blue--br-39 {
  border-right: 39px #506498 solid !important;
}
.kashimir-blue--bl-39 {
  border-left: 39px #506498 solid !important;
}
.kashimir-blue--bb-39 {
  border-bottom: 39px #506498 solid !important;
}
.kashimir-blue--by-39 {
  border-top: 39px #506498 solid !important;
  border-bottom: 39px #506498 solid !important;
}
.kashimir-blue--bx-39 {
  border-right: 39px #506498 solid !important;
  border-left: 39px #506498 solid !important;
}
.kashimir-blue--ba-40 {
  border: 40px #506498 solid !important;
}
.kashimir-blue--bt-40 {
  border-top: 40px #506498 solid !important;
}
.kashimir-blue--br-40 {
  border-right: 40px #506498 solid !important;
}
.kashimir-blue--bl-40 {
  border-left: 40px #506498 solid !important;
}
.kashimir-blue--bb-40 {
  border-bottom: 40px #506498 solid !important;
}
.kashimir-blue--by-40 {
  border-top: 40px #506498 solid !important;
  border-bottom: 40px #506498 solid !important;
}
.kashimir-blue--bx-40 {
  border-right: 40px #506498 solid !important;
  border-left: 40px #506498 solid !important;
}
.kashimir-blue--ba-41 {
  border: 41px #506498 solid !important;
}
.kashimir-blue--bt-41 {
  border-top: 41px #506498 solid !important;
}
.kashimir-blue--br-41 {
  border-right: 41px #506498 solid !important;
}
.kashimir-blue--bl-41 {
  border-left: 41px #506498 solid !important;
}
.kashimir-blue--bb-41 {
  border-bottom: 41px #506498 solid !important;
}
.kashimir-blue--by-41 {
  border-top: 41px #506498 solid !important;
  border-bottom: 41px #506498 solid !important;
}
.kashimir-blue--bx-41 {
  border-right: 41px #506498 solid !important;
  border-left: 41px #506498 solid !important;
}
.kashimir-blue--ba-42 {
  border: 42px #506498 solid !important;
}
.kashimir-blue--bt-42 {
  border-top: 42px #506498 solid !important;
}
.kashimir-blue--br-42 {
  border-right: 42px #506498 solid !important;
}
.kashimir-blue--bl-42 {
  border-left: 42px #506498 solid !important;
}
.kashimir-blue--bb-42 {
  border-bottom: 42px #506498 solid !important;
}
.kashimir-blue--by-42 {
  border-top: 42px #506498 solid !important;
  border-bottom: 42px #506498 solid !important;
}
.kashimir-blue--bx-42 {
  border-right: 42px #506498 solid !important;
  border-left: 42px #506498 solid !important;
}
.kashimir-blue--ba-43 {
  border: 43px #506498 solid !important;
}
.kashimir-blue--bt-43 {
  border-top: 43px #506498 solid !important;
}
.kashimir-blue--br-43 {
  border-right: 43px #506498 solid !important;
}
.kashimir-blue--bl-43 {
  border-left: 43px #506498 solid !important;
}
.kashimir-blue--bb-43 {
  border-bottom: 43px #506498 solid !important;
}
.kashimir-blue--by-43 {
  border-top: 43px #506498 solid !important;
  border-bottom: 43px #506498 solid !important;
}
.kashimir-blue--bx-43 {
  border-right: 43px #506498 solid !important;
  border-left: 43px #506498 solid !important;
}
.kashimir-blue--ba-44 {
  border: 44px #506498 solid !important;
}
.kashimir-blue--bt-44 {
  border-top: 44px #506498 solid !important;
}
.kashimir-blue--br-44 {
  border-right: 44px #506498 solid !important;
}
.kashimir-blue--bl-44 {
  border-left: 44px #506498 solid !important;
}
.kashimir-blue--bb-44 {
  border-bottom: 44px #506498 solid !important;
}
.kashimir-blue--by-44 {
  border-top: 44px #506498 solid !important;
  border-bottom: 44px #506498 solid !important;
}
.kashimir-blue--bx-44 {
  border-right: 44px #506498 solid !important;
  border-left: 44px #506498 solid !important;
}
.kashimir-blue--ba-45 {
  border: 45px #506498 solid !important;
}
.kashimir-blue--bt-45 {
  border-top: 45px #506498 solid !important;
}
.kashimir-blue--br-45 {
  border-right: 45px #506498 solid !important;
}
.kashimir-blue--bl-45 {
  border-left: 45px #506498 solid !important;
}
.kashimir-blue--bb-45 {
  border-bottom: 45px #506498 solid !important;
}
.kashimir-blue--by-45 {
  border-top: 45px #506498 solid !important;
  border-bottom: 45px #506498 solid !important;
}
.kashimir-blue--bx-45 {
  border-right: 45px #506498 solid !important;
  border-left: 45px #506498 solid !important;
}
.kashimir-blue--ba-46 {
  border: 46px #506498 solid !important;
}
.kashimir-blue--bt-46 {
  border-top: 46px #506498 solid !important;
}
.kashimir-blue--br-46 {
  border-right: 46px #506498 solid !important;
}
.kashimir-blue--bl-46 {
  border-left: 46px #506498 solid !important;
}
.kashimir-blue--bb-46 {
  border-bottom: 46px #506498 solid !important;
}
.kashimir-blue--by-46 {
  border-top: 46px #506498 solid !important;
  border-bottom: 46px #506498 solid !important;
}
.kashimir-blue--bx-46 {
  border-right: 46px #506498 solid !important;
  border-left: 46px #506498 solid !important;
}
.kashimir-blue--ba-47 {
  border: 47px #506498 solid !important;
}
.kashimir-blue--bt-47 {
  border-top: 47px #506498 solid !important;
}
.kashimir-blue--br-47 {
  border-right: 47px #506498 solid !important;
}
.kashimir-blue--bl-47 {
  border-left: 47px #506498 solid !important;
}
.kashimir-blue--bb-47 {
  border-bottom: 47px #506498 solid !important;
}
.kashimir-blue--by-47 {
  border-top: 47px #506498 solid !important;
  border-bottom: 47px #506498 solid !important;
}
.kashimir-blue--bx-47 {
  border-right: 47px #506498 solid !important;
  border-left: 47px #506498 solid !important;
}
.kashimir-blue--ba-48 {
  border: 48px #506498 solid !important;
}
.kashimir-blue--bt-48 {
  border-top: 48px #506498 solid !important;
}
.kashimir-blue--br-48 {
  border-right: 48px #506498 solid !important;
}
.kashimir-blue--bl-48 {
  border-left: 48px #506498 solid !important;
}
.kashimir-blue--bb-48 {
  border-bottom: 48px #506498 solid !important;
}
.kashimir-blue--by-48 {
  border-top: 48px #506498 solid !important;
  border-bottom: 48px #506498 solid !important;
}
.kashimir-blue--bx-48 {
  border-right: 48px #506498 solid !important;
  border-left: 48px #506498 solid !important;
}
.kashimir-blue--ba-49 {
  border: 49px #506498 solid !important;
}
.kashimir-blue--bt-49 {
  border-top: 49px #506498 solid !important;
}
.kashimir-blue--br-49 {
  border-right: 49px #506498 solid !important;
}
.kashimir-blue--bl-49 {
  border-left: 49px #506498 solid !important;
}
.kashimir-blue--bb-49 {
  border-bottom: 49px #506498 solid !important;
}
.kashimir-blue--by-49 {
  border-top: 49px #506498 solid !important;
  border-bottom: 49px #506498 solid !important;
}
.kashimir-blue--bx-49 {
  border-right: 49px #506498 solid !important;
  border-left: 49px #506498 solid !important;
}
.kashimir-blue--ba-50 {
  border: 50px #506498 solid !important;
}
.kashimir-blue--bt-50 {
  border-top: 50px #506498 solid !important;
}
.kashimir-blue--br-50 {
  border-right: 50px #506498 solid !important;
}
.kashimir-blue--bl-50 {
  border-left: 50px #506498 solid !important;
}
.kashimir-blue--bb-50 {
  border-bottom: 50px #506498 solid !important;
}
.kashimir-blue--by-50 {
  border-top: 50px #506498 solid !important;
  border-bottom: 50px #506498 solid !important;
}
.kashimir-blue--bx-50 {
  border-right: 50px #506498 solid !important;
  border-left: 50px #506498 solid !important;
}
.kashimir-blue--ba-51 {
  border: 51px #506498 solid !important;
}
.kashimir-blue--bt-51 {
  border-top: 51px #506498 solid !important;
}
.kashimir-blue--br-51 {
  border-right: 51px #506498 solid !important;
}
.kashimir-blue--bl-51 {
  border-left: 51px #506498 solid !important;
}
.kashimir-blue--bb-51 {
  border-bottom: 51px #506498 solid !important;
}
.kashimir-blue--by-51 {
  border-top: 51px #506498 solid !important;
  border-bottom: 51px #506498 solid !important;
}
.kashimir-blue--bx-51 {
  border-right: 51px #506498 solid !important;
  border-left: 51px #506498 solid !important;
}
.kashimir-blue--ba-52 {
  border: 52px #506498 solid !important;
}
.kashimir-blue--bt-52 {
  border-top: 52px #506498 solid !important;
}
.kashimir-blue--br-52 {
  border-right: 52px #506498 solid !important;
}
.kashimir-blue--bl-52 {
  border-left: 52px #506498 solid !important;
}
.kashimir-blue--bb-52 {
  border-bottom: 52px #506498 solid !important;
}
.kashimir-blue--by-52 {
  border-top: 52px #506498 solid !important;
  border-bottom: 52px #506498 solid !important;
}
.kashimir-blue--bx-52 {
  border-right: 52px #506498 solid !important;
  border-left: 52px #506498 solid !important;
}
.kashimir-blue--ba-53 {
  border: 53px #506498 solid !important;
}
.kashimir-blue--bt-53 {
  border-top: 53px #506498 solid !important;
}
.kashimir-blue--br-53 {
  border-right: 53px #506498 solid !important;
}
.kashimir-blue--bl-53 {
  border-left: 53px #506498 solid !important;
}
.kashimir-blue--bb-53 {
  border-bottom: 53px #506498 solid !important;
}
.kashimir-blue--by-53 {
  border-top: 53px #506498 solid !important;
  border-bottom: 53px #506498 solid !important;
}
.kashimir-blue--bx-53 {
  border-right: 53px #506498 solid !important;
  border-left: 53px #506498 solid !important;
}
.kashimir-blue--ba-54 {
  border: 54px #506498 solid !important;
}
.kashimir-blue--bt-54 {
  border-top: 54px #506498 solid !important;
}
.kashimir-blue--br-54 {
  border-right: 54px #506498 solid !important;
}
.kashimir-blue--bl-54 {
  border-left: 54px #506498 solid !important;
}
.kashimir-blue--bb-54 {
  border-bottom: 54px #506498 solid !important;
}
.kashimir-blue--by-54 {
  border-top: 54px #506498 solid !important;
  border-bottom: 54px #506498 solid !important;
}
.kashimir-blue--bx-54 {
  border-right: 54px #506498 solid !important;
  border-left: 54px #506498 solid !important;
}
.kashimir-blue--ba-55 {
  border: 55px #506498 solid !important;
}
.kashimir-blue--bt-55 {
  border-top: 55px #506498 solid !important;
}
.kashimir-blue--br-55 {
  border-right: 55px #506498 solid !important;
}
.kashimir-blue--bl-55 {
  border-left: 55px #506498 solid !important;
}
.kashimir-blue--bb-55 {
  border-bottom: 55px #506498 solid !important;
}
.kashimir-blue--by-55 {
  border-top: 55px #506498 solid !important;
  border-bottom: 55px #506498 solid !important;
}
.kashimir-blue--bx-55 {
  border-right: 55px #506498 solid !important;
  border-left: 55px #506498 solid !important;
}
.kashimir-blue--ba-56 {
  border: 56px #506498 solid !important;
}
.kashimir-blue--bt-56 {
  border-top: 56px #506498 solid !important;
}
.kashimir-blue--br-56 {
  border-right: 56px #506498 solid !important;
}
.kashimir-blue--bl-56 {
  border-left: 56px #506498 solid !important;
}
.kashimir-blue--bb-56 {
  border-bottom: 56px #506498 solid !important;
}
.kashimir-blue--by-56 {
  border-top: 56px #506498 solid !important;
  border-bottom: 56px #506498 solid !important;
}
.kashimir-blue--bx-56 {
  border-right: 56px #506498 solid !important;
  border-left: 56px #506498 solid !important;
}
.kashimir-blue--ba-57 {
  border: 57px #506498 solid !important;
}
.kashimir-blue--bt-57 {
  border-top: 57px #506498 solid !important;
}
.kashimir-blue--br-57 {
  border-right: 57px #506498 solid !important;
}
.kashimir-blue--bl-57 {
  border-left: 57px #506498 solid !important;
}
.kashimir-blue--bb-57 {
  border-bottom: 57px #506498 solid !important;
}
.kashimir-blue--by-57 {
  border-top: 57px #506498 solid !important;
  border-bottom: 57px #506498 solid !important;
}
.kashimir-blue--bx-57 {
  border-right: 57px #506498 solid !important;
  border-left: 57px #506498 solid !important;
}
.kashimir-blue--ba-58 {
  border: 58px #506498 solid !important;
}
.kashimir-blue--bt-58 {
  border-top: 58px #506498 solid !important;
}
.kashimir-blue--br-58 {
  border-right: 58px #506498 solid !important;
}
.kashimir-blue--bl-58 {
  border-left: 58px #506498 solid !important;
}
.kashimir-blue--bb-58 {
  border-bottom: 58px #506498 solid !important;
}
.kashimir-blue--by-58 {
  border-top: 58px #506498 solid !important;
  border-bottom: 58px #506498 solid !important;
}
.kashimir-blue--bx-58 {
  border-right: 58px #506498 solid !important;
  border-left: 58px #506498 solid !important;
}
.kashimir-blue--ba-59 {
  border: 59px #506498 solid !important;
}
.kashimir-blue--bt-59 {
  border-top: 59px #506498 solid !important;
}
.kashimir-blue--br-59 {
  border-right: 59px #506498 solid !important;
}
.kashimir-blue--bl-59 {
  border-left: 59px #506498 solid !important;
}
.kashimir-blue--bb-59 {
  border-bottom: 59px #506498 solid !important;
}
.kashimir-blue--by-59 {
  border-top: 59px #506498 solid !important;
  border-bottom: 59px #506498 solid !important;
}
.kashimir-blue--bx-59 {
  border-right: 59px #506498 solid !important;
  border-left: 59px #506498 solid !important;
}
.kashimir-blue--ba-60 {
  border: 60px #506498 solid !important;
}
.kashimir-blue--bt-60 {
  border-top: 60px #506498 solid !important;
}
.kashimir-blue--br-60 {
  border-right: 60px #506498 solid !important;
}
.kashimir-blue--bl-60 {
  border-left: 60px #506498 solid !important;
}
.kashimir-blue--bb-60 {
  border-bottom: 60px #506498 solid !important;
}
.kashimir-blue--by-60 {
  border-top: 60px #506498 solid !important;
  border-bottom: 60px #506498 solid !important;
}
.kashimir-blue--bx-60 {
  border-right: 60px #506498 solid !important;
  border-left: 60px #506498 solid !important;
}
.kashimir-blue--ba-61 {
  border: 61px #506498 solid !important;
}
.kashimir-blue--bt-61 {
  border-top: 61px #506498 solid !important;
}
.kashimir-blue--br-61 {
  border-right: 61px #506498 solid !important;
}
.kashimir-blue--bl-61 {
  border-left: 61px #506498 solid !important;
}
.kashimir-blue--bb-61 {
  border-bottom: 61px #506498 solid !important;
}
.kashimir-blue--by-61 {
  border-top: 61px #506498 solid !important;
  border-bottom: 61px #506498 solid !important;
}
.kashimir-blue--bx-61 {
  border-right: 61px #506498 solid !important;
  border-left: 61px #506498 solid !important;
}
.kashimir-blue--ba-62 {
  border: 62px #506498 solid !important;
}
.kashimir-blue--bt-62 {
  border-top: 62px #506498 solid !important;
}
.kashimir-blue--br-62 {
  border-right: 62px #506498 solid !important;
}
.kashimir-blue--bl-62 {
  border-left: 62px #506498 solid !important;
}
.kashimir-blue--bb-62 {
  border-bottom: 62px #506498 solid !important;
}
.kashimir-blue--by-62 {
  border-top: 62px #506498 solid !important;
  border-bottom: 62px #506498 solid !important;
}
.kashimir-blue--bx-62 {
  border-right: 62px #506498 solid !important;
  border-left: 62px #506498 solid !important;
}
.kashimir-blue--ba-63 {
  border: 63px #506498 solid !important;
}
.kashimir-blue--bt-63 {
  border-top: 63px #506498 solid !important;
}
.kashimir-blue--br-63 {
  border-right: 63px #506498 solid !important;
}
.kashimir-blue--bl-63 {
  border-left: 63px #506498 solid !important;
}
.kashimir-blue--bb-63 {
  border-bottom: 63px #506498 solid !important;
}
.kashimir-blue--by-63 {
  border-top: 63px #506498 solid !important;
  border-bottom: 63px #506498 solid !important;
}
.kashimir-blue--bx-63 {
  border-right: 63px #506498 solid !important;
  border-left: 63px #506498 solid !important;
}
.kashimir-blue--ba-64 {
  border: 64px #506498 solid !important;
}
.kashimir-blue--bt-64 {
  border-top: 64px #506498 solid !important;
}
.kashimir-blue--br-64 {
  border-right: 64px #506498 solid !important;
}
.kashimir-blue--bl-64 {
  border-left: 64px #506498 solid !important;
}
.kashimir-blue--bb-64 {
  border-bottom: 64px #506498 solid !important;
}
.kashimir-blue--by-64 {
  border-top: 64px #506498 solid !important;
  border-bottom: 64px #506498 solid !important;
}
.kashimir-blue--bx-64 {
  border-right: 64px #506498 solid !important;
  border-left: 64px #506498 solid !important;
}
.kashimir-blue--ba-65 {
  border: 65px #506498 solid !important;
}
.kashimir-blue--bt-65 {
  border-top: 65px #506498 solid !important;
}
.kashimir-blue--br-65 {
  border-right: 65px #506498 solid !important;
}
.kashimir-blue--bl-65 {
  border-left: 65px #506498 solid !important;
}
.kashimir-blue--bb-65 {
  border-bottom: 65px #506498 solid !important;
}
.kashimir-blue--by-65 {
  border-top: 65px #506498 solid !important;
  border-bottom: 65px #506498 solid !important;
}
.kashimir-blue--bx-65 {
  border-right: 65px #506498 solid !important;
  border-left: 65px #506498 solid !important;
}
.kashimir-blue--ba-66 {
  border: 66px #506498 solid !important;
}
.kashimir-blue--bt-66 {
  border-top: 66px #506498 solid !important;
}
.kashimir-blue--br-66 {
  border-right: 66px #506498 solid !important;
}
.kashimir-blue--bl-66 {
  border-left: 66px #506498 solid !important;
}
.kashimir-blue--bb-66 {
  border-bottom: 66px #506498 solid !important;
}
.kashimir-blue--by-66 {
  border-top: 66px #506498 solid !important;
  border-bottom: 66px #506498 solid !important;
}
.kashimir-blue--bx-66 {
  border-right: 66px #506498 solid !important;
  border-left: 66px #506498 solid !important;
}
.kashimir-blue--ba-67 {
  border: 67px #506498 solid !important;
}
.kashimir-blue--bt-67 {
  border-top: 67px #506498 solid !important;
}
.kashimir-blue--br-67 {
  border-right: 67px #506498 solid !important;
}
.kashimir-blue--bl-67 {
  border-left: 67px #506498 solid !important;
}
.kashimir-blue--bb-67 {
  border-bottom: 67px #506498 solid !important;
}
.kashimir-blue--by-67 {
  border-top: 67px #506498 solid !important;
  border-bottom: 67px #506498 solid !important;
}
.kashimir-blue--bx-67 {
  border-right: 67px #506498 solid !important;
  border-left: 67px #506498 solid !important;
}
.kashimir-blue--ba-68 {
  border: 68px #506498 solid !important;
}
.kashimir-blue--bt-68 {
  border-top: 68px #506498 solid !important;
}
.kashimir-blue--br-68 {
  border-right: 68px #506498 solid !important;
}
.kashimir-blue--bl-68 {
  border-left: 68px #506498 solid !important;
}
.kashimir-blue--bb-68 {
  border-bottom: 68px #506498 solid !important;
}
.kashimir-blue--by-68 {
  border-top: 68px #506498 solid !important;
  border-bottom: 68px #506498 solid !important;
}
.kashimir-blue--bx-68 {
  border-right: 68px #506498 solid !important;
  border-left: 68px #506498 solid !important;
}
.kashimir-blue--ba-69 {
  border: 69px #506498 solid !important;
}
.kashimir-blue--bt-69 {
  border-top: 69px #506498 solid !important;
}
.kashimir-blue--br-69 {
  border-right: 69px #506498 solid !important;
}
.kashimir-blue--bl-69 {
  border-left: 69px #506498 solid !important;
}
.kashimir-blue--bb-69 {
  border-bottom: 69px #506498 solid !important;
}
.kashimir-blue--by-69 {
  border-top: 69px #506498 solid !important;
  border-bottom: 69px #506498 solid !important;
}
.kashimir-blue--bx-69 {
  border-right: 69px #506498 solid !important;
  border-left: 69px #506498 solid !important;
}
.kashimir-blue--ba-70 {
  border: 70px #506498 solid !important;
}
.kashimir-blue--bt-70 {
  border-top: 70px #506498 solid !important;
}
.kashimir-blue--br-70 {
  border-right: 70px #506498 solid !important;
}
.kashimir-blue--bl-70 {
  border-left: 70px #506498 solid !important;
}
.kashimir-blue--bb-70 {
  border-bottom: 70px #506498 solid !important;
}
.kashimir-blue--by-70 {
  border-top: 70px #506498 solid !important;
  border-bottom: 70px #506498 solid !important;
}
.kashimir-blue--bx-70 {
  border-right: 70px #506498 solid !important;
  border-left: 70px #506498 solid !important;
}
.kashimir-blue--ba-71 {
  border: 71px #506498 solid !important;
}
.kashimir-blue--bt-71 {
  border-top: 71px #506498 solid !important;
}
.kashimir-blue--br-71 {
  border-right: 71px #506498 solid !important;
}
.kashimir-blue--bl-71 {
  border-left: 71px #506498 solid !important;
}
.kashimir-blue--bb-71 {
  border-bottom: 71px #506498 solid !important;
}
.kashimir-blue--by-71 {
  border-top: 71px #506498 solid !important;
  border-bottom: 71px #506498 solid !important;
}
.kashimir-blue--bx-71 {
  border-right: 71px #506498 solid !important;
  border-left: 71px #506498 solid !important;
}
.kashimir-blue--ba-72 {
  border: 72px #506498 solid !important;
}
.kashimir-blue--bt-72 {
  border-top: 72px #506498 solid !important;
}
.kashimir-blue--br-72 {
  border-right: 72px #506498 solid !important;
}
.kashimir-blue--bl-72 {
  border-left: 72px #506498 solid !important;
}
.kashimir-blue--bb-72 {
  border-bottom: 72px #506498 solid !important;
}
.kashimir-blue--by-72 {
  border-top: 72px #506498 solid !important;
  border-bottom: 72px #506498 solid !important;
}
.kashimir-blue--bx-72 {
  border-right: 72px #506498 solid !important;
  border-left: 72px #506498 solid !important;
}
.kashimir-blue--ba-73 {
  border: 73px #506498 solid !important;
}
.kashimir-blue--bt-73 {
  border-top: 73px #506498 solid !important;
}
.kashimir-blue--br-73 {
  border-right: 73px #506498 solid !important;
}
.kashimir-blue--bl-73 {
  border-left: 73px #506498 solid !important;
}
.kashimir-blue--bb-73 {
  border-bottom: 73px #506498 solid !important;
}
.kashimir-blue--by-73 {
  border-top: 73px #506498 solid !important;
  border-bottom: 73px #506498 solid !important;
}
.kashimir-blue--bx-73 {
  border-right: 73px #506498 solid !important;
  border-left: 73px #506498 solid !important;
}
.kashimir-blue--ba-74 {
  border: 74px #506498 solid !important;
}
.kashimir-blue--bt-74 {
  border-top: 74px #506498 solid !important;
}
.kashimir-blue--br-74 {
  border-right: 74px #506498 solid !important;
}
.kashimir-blue--bl-74 {
  border-left: 74px #506498 solid !important;
}
.kashimir-blue--bb-74 {
  border-bottom: 74px #506498 solid !important;
}
.kashimir-blue--by-74 {
  border-top: 74px #506498 solid !important;
  border-bottom: 74px #506498 solid !important;
}
.kashimir-blue--bx-74 {
  border-right: 74px #506498 solid !important;
  border-left: 74px #506498 solid !important;
}
.kashimir-blue--ba-75 {
  border: 75px #506498 solid !important;
}
.kashimir-blue--bt-75 {
  border-top: 75px #506498 solid !important;
}
.kashimir-blue--br-75 {
  border-right: 75px #506498 solid !important;
}
.kashimir-blue--bl-75 {
  border-left: 75px #506498 solid !important;
}
.kashimir-blue--bb-75 {
  border-bottom: 75px #506498 solid !important;
}
.kashimir-blue--by-75 {
  border-top: 75px #506498 solid !important;
  border-bottom: 75px #506498 solid !important;
}
.kashimir-blue--bx-75 {
  border-right: 75px #506498 solid !important;
  border-left: 75px #506498 solid !important;
}
.kashimir-blue--ba-76 {
  border: 76px #506498 solid !important;
}
.kashimir-blue--bt-76 {
  border-top: 76px #506498 solid !important;
}
.kashimir-blue--br-76 {
  border-right: 76px #506498 solid !important;
}
.kashimir-blue--bl-76 {
  border-left: 76px #506498 solid !important;
}
.kashimir-blue--bb-76 {
  border-bottom: 76px #506498 solid !important;
}
.kashimir-blue--by-76 {
  border-top: 76px #506498 solid !important;
  border-bottom: 76px #506498 solid !important;
}
.kashimir-blue--bx-76 {
  border-right: 76px #506498 solid !important;
  border-left: 76px #506498 solid !important;
}
.kashimir-blue--ba-77 {
  border: 77px #506498 solid !important;
}
.kashimir-blue--bt-77 {
  border-top: 77px #506498 solid !important;
}
.kashimir-blue--br-77 {
  border-right: 77px #506498 solid !important;
}
.kashimir-blue--bl-77 {
  border-left: 77px #506498 solid !important;
}
.kashimir-blue--bb-77 {
  border-bottom: 77px #506498 solid !important;
}
.kashimir-blue--by-77 {
  border-top: 77px #506498 solid !important;
  border-bottom: 77px #506498 solid !important;
}
.kashimir-blue--bx-77 {
  border-right: 77px #506498 solid !important;
  border-left: 77px #506498 solid !important;
}
.kashimir-blue--ba-78 {
  border: 78px #506498 solid !important;
}
.kashimir-blue--bt-78 {
  border-top: 78px #506498 solid !important;
}
.kashimir-blue--br-78 {
  border-right: 78px #506498 solid !important;
}
.kashimir-blue--bl-78 {
  border-left: 78px #506498 solid !important;
}
.kashimir-blue--bb-78 {
  border-bottom: 78px #506498 solid !important;
}
.kashimir-blue--by-78 {
  border-top: 78px #506498 solid !important;
  border-bottom: 78px #506498 solid !important;
}
.kashimir-blue--bx-78 {
  border-right: 78px #506498 solid !important;
  border-left: 78px #506498 solid !important;
}
.kashimir-blue--ba-79 {
  border: 79px #506498 solid !important;
}
.kashimir-blue--bt-79 {
  border-top: 79px #506498 solid !important;
}
.kashimir-blue--br-79 {
  border-right: 79px #506498 solid !important;
}
.kashimir-blue--bl-79 {
  border-left: 79px #506498 solid !important;
}
.kashimir-blue--bb-79 {
  border-bottom: 79px #506498 solid !important;
}
.kashimir-blue--by-79 {
  border-top: 79px #506498 solid !important;
  border-bottom: 79px #506498 solid !important;
}
.kashimir-blue--bx-79 {
  border-right: 79px #506498 solid !important;
  border-left: 79px #506498 solid !important;
}
.kashimir-blue--ba-80 {
  border: 80px #506498 solid !important;
}
.kashimir-blue--bt-80 {
  border-top: 80px #506498 solid !important;
}
.kashimir-blue--br-80 {
  border-right: 80px #506498 solid !important;
}
.kashimir-blue--bl-80 {
  border-left: 80px #506498 solid !important;
}
.kashimir-blue--bb-80 {
  border-bottom: 80px #506498 solid !important;
}
.kashimir-blue--by-80 {
  border-top: 80px #506498 solid !important;
  border-bottom: 80px #506498 solid !important;
}
.kashimir-blue--bx-80 {
  border-right: 80px #506498 solid !important;
  border-left: 80px #506498 solid !important;
}
.kashimir-blue--ba-81 {
  border: 81px #506498 solid !important;
}
.kashimir-blue--bt-81 {
  border-top: 81px #506498 solid !important;
}
.kashimir-blue--br-81 {
  border-right: 81px #506498 solid !important;
}
.kashimir-blue--bl-81 {
  border-left: 81px #506498 solid !important;
}
.kashimir-blue--bb-81 {
  border-bottom: 81px #506498 solid !important;
}
.kashimir-blue--by-81 {
  border-top: 81px #506498 solid !important;
  border-bottom: 81px #506498 solid !important;
}
.kashimir-blue--bx-81 {
  border-right: 81px #506498 solid !important;
  border-left: 81px #506498 solid !important;
}
.kashimir-blue--ba-82 {
  border: 82px #506498 solid !important;
}
.kashimir-blue--bt-82 {
  border-top: 82px #506498 solid !important;
}
.kashimir-blue--br-82 {
  border-right: 82px #506498 solid !important;
}
.kashimir-blue--bl-82 {
  border-left: 82px #506498 solid !important;
}
.kashimir-blue--bb-82 {
  border-bottom: 82px #506498 solid !important;
}
.kashimir-blue--by-82 {
  border-top: 82px #506498 solid !important;
  border-bottom: 82px #506498 solid !important;
}
.kashimir-blue--bx-82 {
  border-right: 82px #506498 solid !important;
  border-left: 82px #506498 solid !important;
}
.kashimir-blue--ba-83 {
  border: 83px #506498 solid !important;
}
.kashimir-blue--bt-83 {
  border-top: 83px #506498 solid !important;
}
.kashimir-blue--br-83 {
  border-right: 83px #506498 solid !important;
}
.kashimir-blue--bl-83 {
  border-left: 83px #506498 solid !important;
}
.kashimir-blue--bb-83 {
  border-bottom: 83px #506498 solid !important;
}
.kashimir-blue--by-83 {
  border-top: 83px #506498 solid !important;
  border-bottom: 83px #506498 solid !important;
}
.kashimir-blue--bx-83 {
  border-right: 83px #506498 solid !important;
  border-left: 83px #506498 solid !important;
}
.kashimir-blue--ba-84 {
  border: 84px #506498 solid !important;
}
.kashimir-blue--bt-84 {
  border-top: 84px #506498 solid !important;
}
.kashimir-blue--br-84 {
  border-right: 84px #506498 solid !important;
}
.kashimir-blue--bl-84 {
  border-left: 84px #506498 solid !important;
}
.kashimir-blue--bb-84 {
  border-bottom: 84px #506498 solid !important;
}
.kashimir-blue--by-84 {
  border-top: 84px #506498 solid !important;
  border-bottom: 84px #506498 solid !important;
}
.kashimir-blue--bx-84 {
  border-right: 84px #506498 solid !important;
  border-left: 84px #506498 solid !important;
}
.kashimir-blue--ba-85 {
  border: 85px #506498 solid !important;
}
.kashimir-blue--bt-85 {
  border-top: 85px #506498 solid !important;
}
.kashimir-blue--br-85 {
  border-right: 85px #506498 solid !important;
}
.kashimir-blue--bl-85 {
  border-left: 85px #506498 solid !important;
}
.kashimir-blue--bb-85 {
  border-bottom: 85px #506498 solid !important;
}
.kashimir-blue--by-85 {
  border-top: 85px #506498 solid !important;
  border-bottom: 85px #506498 solid !important;
}
.kashimir-blue--bx-85 {
  border-right: 85px #506498 solid !important;
  border-left: 85px #506498 solid !important;
}
.kashimir-blue--ba-86 {
  border: 86px #506498 solid !important;
}
.kashimir-blue--bt-86 {
  border-top: 86px #506498 solid !important;
}
.kashimir-blue--br-86 {
  border-right: 86px #506498 solid !important;
}
.kashimir-blue--bl-86 {
  border-left: 86px #506498 solid !important;
}
.kashimir-blue--bb-86 {
  border-bottom: 86px #506498 solid !important;
}
.kashimir-blue--by-86 {
  border-top: 86px #506498 solid !important;
  border-bottom: 86px #506498 solid !important;
}
.kashimir-blue--bx-86 {
  border-right: 86px #506498 solid !important;
  border-left: 86px #506498 solid !important;
}
.kashimir-blue--ba-87 {
  border: 87px #506498 solid !important;
}
.kashimir-blue--bt-87 {
  border-top: 87px #506498 solid !important;
}
.kashimir-blue--br-87 {
  border-right: 87px #506498 solid !important;
}
.kashimir-blue--bl-87 {
  border-left: 87px #506498 solid !important;
}
.kashimir-blue--bb-87 {
  border-bottom: 87px #506498 solid !important;
}
.kashimir-blue--by-87 {
  border-top: 87px #506498 solid !important;
  border-bottom: 87px #506498 solid !important;
}
.kashimir-blue--bx-87 {
  border-right: 87px #506498 solid !important;
  border-left: 87px #506498 solid !important;
}
.kashimir-blue--ba-88 {
  border: 88px #506498 solid !important;
}
.kashimir-blue--bt-88 {
  border-top: 88px #506498 solid !important;
}
.kashimir-blue--br-88 {
  border-right: 88px #506498 solid !important;
}
.kashimir-blue--bl-88 {
  border-left: 88px #506498 solid !important;
}
.kashimir-blue--bb-88 {
  border-bottom: 88px #506498 solid !important;
}
.kashimir-blue--by-88 {
  border-top: 88px #506498 solid !important;
  border-bottom: 88px #506498 solid !important;
}
.kashimir-blue--bx-88 {
  border-right: 88px #506498 solid !important;
  border-left: 88px #506498 solid !important;
}
.kashimir-blue--ba-89 {
  border: 89px #506498 solid !important;
}
.kashimir-blue--bt-89 {
  border-top: 89px #506498 solid !important;
}
.kashimir-blue--br-89 {
  border-right: 89px #506498 solid !important;
}
.kashimir-blue--bl-89 {
  border-left: 89px #506498 solid !important;
}
.kashimir-blue--bb-89 {
  border-bottom: 89px #506498 solid !important;
}
.kashimir-blue--by-89 {
  border-top: 89px #506498 solid !important;
  border-bottom: 89px #506498 solid !important;
}
.kashimir-blue--bx-89 {
  border-right: 89px #506498 solid !important;
  border-left: 89px #506498 solid !important;
}
.kashimir-blue--ba-90 {
  border: 90px #506498 solid !important;
}
.kashimir-blue--bt-90 {
  border-top: 90px #506498 solid !important;
}
.kashimir-blue--br-90 {
  border-right: 90px #506498 solid !important;
}
.kashimir-blue--bl-90 {
  border-left: 90px #506498 solid !important;
}
.kashimir-blue--bb-90 {
  border-bottom: 90px #506498 solid !important;
}
.kashimir-blue--by-90 {
  border-top: 90px #506498 solid !important;
  border-bottom: 90px #506498 solid !important;
}
.kashimir-blue--bx-90 {
  border-right: 90px #506498 solid !important;
  border-left: 90px #506498 solid !important;
}
.kashimir-blue--ba-91 {
  border: 91px #506498 solid !important;
}
.kashimir-blue--bt-91 {
  border-top: 91px #506498 solid !important;
}
.kashimir-blue--br-91 {
  border-right: 91px #506498 solid !important;
}
.kashimir-blue--bl-91 {
  border-left: 91px #506498 solid !important;
}
.kashimir-blue--bb-91 {
  border-bottom: 91px #506498 solid !important;
}
.kashimir-blue--by-91 {
  border-top: 91px #506498 solid !important;
  border-bottom: 91px #506498 solid !important;
}
.kashimir-blue--bx-91 {
  border-right: 91px #506498 solid !important;
  border-left: 91px #506498 solid !important;
}
.kashimir-blue--ba-92 {
  border: 92px #506498 solid !important;
}
.kashimir-blue--bt-92 {
  border-top: 92px #506498 solid !important;
}
.kashimir-blue--br-92 {
  border-right: 92px #506498 solid !important;
}
.kashimir-blue--bl-92 {
  border-left: 92px #506498 solid !important;
}
.kashimir-blue--bb-92 {
  border-bottom: 92px #506498 solid !important;
}
.kashimir-blue--by-92 {
  border-top: 92px #506498 solid !important;
  border-bottom: 92px #506498 solid !important;
}
.kashimir-blue--bx-92 {
  border-right: 92px #506498 solid !important;
  border-left: 92px #506498 solid !important;
}
.kashimir-blue--ba-93 {
  border: 93px #506498 solid !important;
}
.kashimir-blue--bt-93 {
  border-top: 93px #506498 solid !important;
}
.kashimir-blue--br-93 {
  border-right: 93px #506498 solid !important;
}
.kashimir-blue--bl-93 {
  border-left: 93px #506498 solid !important;
}
.kashimir-blue--bb-93 {
  border-bottom: 93px #506498 solid !important;
}
.kashimir-blue--by-93 {
  border-top: 93px #506498 solid !important;
  border-bottom: 93px #506498 solid !important;
}
.kashimir-blue--bx-93 {
  border-right: 93px #506498 solid !important;
  border-left: 93px #506498 solid !important;
}
.kashimir-blue--ba-94 {
  border: 94px #506498 solid !important;
}
.kashimir-blue--bt-94 {
  border-top: 94px #506498 solid !important;
}
.kashimir-blue--br-94 {
  border-right: 94px #506498 solid !important;
}
.kashimir-blue--bl-94 {
  border-left: 94px #506498 solid !important;
}
.kashimir-blue--bb-94 {
  border-bottom: 94px #506498 solid !important;
}
.kashimir-blue--by-94 {
  border-top: 94px #506498 solid !important;
  border-bottom: 94px #506498 solid !important;
}
.kashimir-blue--bx-94 {
  border-right: 94px #506498 solid !important;
  border-left: 94px #506498 solid !important;
}
.kashimir-blue--ba-95 {
  border: 95px #506498 solid !important;
}
.kashimir-blue--bt-95 {
  border-top: 95px #506498 solid !important;
}
.kashimir-blue--br-95 {
  border-right: 95px #506498 solid !important;
}
.kashimir-blue--bl-95 {
  border-left: 95px #506498 solid !important;
}
.kashimir-blue--bb-95 {
  border-bottom: 95px #506498 solid !important;
}
.kashimir-blue--by-95 {
  border-top: 95px #506498 solid !important;
  border-bottom: 95px #506498 solid !important;
}
.kashimir-blue--bx-95 {
  border-right: 95px #506498 solid !important;
  border-left: 95px #506498 solid !important;
}
.kashimir-blue--ba-96 {
  border: 96px #506498 solid !important;
}
.kashimir-blue--bt-96 {
  border-top: 96px #506498 solid !important;
}
.kashimir-blue--br-96 {
  border-right: 96px #506498 solid !important;
}
.kashimir-blue--bl-96 {
  border-left: 96px #506498 solid !important;
}
.kashimir-blue--bb-96 {
  border-bottom: 96px #506498 solid !important;
}
.kashimir-blue--by-96 {
  border-top: 96px #506498 solid !important;
  border-bottom: 96px #506498 solid !important;
}
.kashimir-blue--bx-96 {
  border-right: 96px #506498 solid !important;
  border-left: 96px #506498 solid !important;
}
.kashimir-blue--ba-97 {
  border: 97px #506498 solid !important;
}
.kashimir-blue--bt-97 {
  border-top: 97px #506498 solid !important;
}
.kashimir-blue--br-97 {
  border-right: 97px #506498 solid !important;
}
.kashimir-blue--bl-97 {
  border-left: 97px #506498 solid !important;
}
.kashimir-blue--bb-97 {
  border-bottom: 97px #506498 solid !important;
}
.kashimir-blue--by-97 {
  border-top: 97px #506498 solid !important;
  border-bottom: 97px #506498 solid !important;
}
.kashimir-blue--bx-97 {
  border-right: 97px #506498 solid !important;
  border-left: 97px #506498 solid !important;
}
.kashimir-blue--ba-98 {
  border: 98px #506498 solid !important;
}
.kashimir-blue--bt-98 {
  border-top: 98px #506498 solid !important;
}
.kashimir-blue--br-98 {
  border-right: 98px #506498 solid !important;
}
.kashimir-blue--bl-98 {
  border-left: 98px #506498 solid !important;
}
.kashimir-blue--bb-98 {
  border-bottom: 98px #506498 solid !important;
}
.kashimir-blue--by-98 {
  border-top: 98px #506498 solid !important;
  border-bottom: 98px #506498 solid !important;
}
.kashimir-blue--bx-98 {
  border-right: 98px #506498 solid !important;
  border-left: 98px #506498 solid !important;
}
.kashimir-blue--ba-99 {
  border: 99px #506498 solid !important;
}
.kashimir-blue--bt-99 {
  border-top: 99px #506498 solid !important;
}
.kashimir-blue--br-99 {
  border-right: 99px #506498 solid !important;
}
.kashimir-blue--bl-99 {
  border-left: 99px #506498 solid !important;
}
.kashimir-blue--bb-99 {
  border-bottom: 99px #506498 solid !important;
}
.kashimir-blue--by-99 {
  border-top: 99px #506498 solid !important;
  border-bottom: 99px #506498 solid !important;
}
.kashimir-blue--bx-99 {
  border-right: 99px #506498 solid !important;
  border-left: 99px #506498 solid !important;
}
.kashimir-blue--ba-100 {
  border: 100px #506498 solid !important;
}
.kashimir-blue--bt-100 {
  border-top: 100px #506498 solid !important;
}
.kashimir-blue--br-100 {
  border-right: 100px #506498 solid !important;
}
.kashimir-blue--bl-100 {
  border-left: 100px #506498 solid !important;
}
.kashimir-blue--bb-100 {
  border-bottom: 100px #506498 solid !important;
}
.kashimir-blue--by-100 {
  border-top: 100px #506498 solid !important;
  border-bottom: 100px #506498 solid !important;
}
.kashimir-blue--bx-100 {
  border-right: 100px #506498 solid !important;
  border-left: 100px #506498 solid !important;
}
.visa-white--ba-1 {
  border: 1px #fdfafa solid !important;
}
.visa-white--bt-1 {
  border-top: 1px #fdfafa solid !important;
}
.visa-white--br-1 {
  border-right: 1px #fdfafa solid !important;
}
.visa-white--bl-1 {
  border-left: 1px #fdfafa solid !important;
}
.visa-white--bb-1 {
  border-bottom: 1px #fdfafa solid !important;
}
.visa-white--by-1 {
  border-top: 1px #fdfafa solid !important;
  border-bottom: 1px #fdfafa solid !important;
}
.visa-white--bx-1 {
  border-right: 1px #fdfafa solid !important;
  border-left: 1px #fdfafa solid !important;
}
.visa-white--ba-2 {
  border: 2px #fdfafa solid !important;
}
.visa-white--bt-2 {
  border-top: 2px #fdfafa solid !important;
}
.visa-white--br-2 {
  border-right: 2px #fdfafa solid !important;
}
.visa-white--bl-2 {
  border-left: 2px #fdfafa solid !important;
}
.visa-white--bb-2 {
  border-bottom: 2px #fdfafa solid !important;
}
.visa-white--by-2 {
  border-top: 2px #fdfafa solid !important;
  border-bottom: 2px #fdfafa solid !important;
}
.visa-white--bx-2 {
  border-right: 2px #fdfafa solid !important;
  border-left: 2px #fdfafa solid !important;
}
.visa-white--ba-3 {
  border: 3px #fdfafa solid !important;
}
.visa-white--bt-3 {
  border-top: 3px #fdfafa solid !important;
}
.visa-white--br-3 {
  border-right: 3px #fdfafa solid !important;
}
.visa-white--bl-3 {
  border-left: 3px #fdfafa solid !important;
}
.visa-white--bb-3 {
  border-bottom: 3px #fdfafa solid !important;
}
.visa-white--by-3 {
  border-top: 3px #fdfafa solid !important;
  border-bottom: 3px #fdfafa solid !important;
}
.visa-white--bx-3 {
  border-right: 3px #fdfafa solid !important;
  border-left: 3px #fdfafa solid !important;
}
.visa-white--ba-4 {
  border: 4px #fdfafa solid !important;
}
.visa-white--bt-4 {
  border-top: 4px #fdfafa solid !important;
}
.visa-white--br-4 {
  border-right: 4px #fdfafa solid !important;
}
.visa-white--bl-4 {
  border-left: 4px #fdfafa solid !important;
}
.visa-white--bb-4 {
  border-bottom: 4px #fdfafa solid !important;
}
.visa-white--by-4 {
  border-top: 4px #fdfafa solid !important;
  border-bottom: 4px #fdfafa solid !important;
}
.visa-white--bx-4 {
  border-right: 4px #fdfafa solid !important;
  border-left: 4px #fdfafa solid !important;
}
.visa-white--ba-5 {
  border: 5px #fdfafa solid !important;
}
.visa-white--bt-5 {
  border-top: 5px #fdfafa solid !important;
}
.visa-white--br-5 {
  border-right: 5px #fdfafa solid !important;
}
.visa-white--bl-5 {
  border-left: 5px #fdfafa solid !important;
}
.visa-white--bb-5 {
  border-bottom: 5px #fdfafa solid !important;
}
.visa-white--by-5 {
  border-top: 5px #fdfafa solid !important;
  border-bottom: 5px #fdfafa solid !important;
}
.visa-white--bx-5 {
  border-right: 5px #fdfafa solid !important;
  border-left: 5px #fdfafa solid !important;
}
.visa-white--ba-6 {
  border: 6px #fdfafa solid !important;
}
.visa-white--bt-6 {
  border-top: 6px #fdfafa solid !important;
}
.visa-white--br-6 {
  border-right: 6px #fdfafa solid !important;
}
.visa-white--bl-6 {
  border-left: 6px #fdfafa solid !important;
}
.visa-white--bb-6 {
  border-bottom: 6px #fdfafa solid !important;
}
.visa-white--by-6 {
  border-top: 6px #fdfafa solid !important;
  border-bottom: 6px #fdfafa solid !important;
}
.visa-white--bx-6 {
  border-right: 6px #fdfafa solid !important;
  border-left: 6px #fdfafa solid !important;
}
.visa-white--ba-7 {
  border: 7px #fdfafa solid !important;
}
.visa-white--bt-7 {
  border-top: 7px #fdfafa solid !important;
}
.visa-white--br-7 {
  border-right: 7px #fdfafa solid !important;
}
.visa-white--bl-7 {
  border-left: 7px #fdfafa solid !important;
}
.visa-white--bb-7 {
  border-bottom: 7px #fdfafa solid !important;
}
.visa-white--by-7 {
  border-top: 7px #fdfafa solid !important;
  border-bottom: 7px #fdfafa solid !important;
}
.visa-white--bx-7 {
  border-right: 7px #fdfafa solid !important;
  border-left: 7px #fdfafa solid !important;
}
.visa-white--ba-8 {
  border: 8px #fdfafa solid !important;
}
.visa-white--bt-8 {
  border-top: 8px #fdfafa solid !important;
}
.visa-white--br-8 {
  border-right: 8px #fdfafa solid !important;
}
.visa-white--bl-8 {
  border-left: 8px #fdfafa solid !important;
}
.visa-white--bb-8 {
  border-bottom: 8px #fdfafa solid !important;
}
.visa-white--by-8 {
  border-top: 8px #fdfafa solid !important;
  border-bottom: 8px #fdfafa solid !important;
}
.visa-white--bx-8 {
  border-right: 8px #fdfafa solid !important;
  border-left: 8px #fdfafa solid !important;
}
.visa-white--ba-9 {
  border: 9px #fdfafa solid !important;
}
.visa-white--bt-9 {
  border-top: 9px #fdfafa solid !important;
}
.visa-white--br-9 {
  border-right: 9px #fdfafa solid !important;
}
.visa-white--bl-9 {
  border-left: 9px #fdfafa solid !important;
}
.visa-white--bb-9 {
  border-bottom: 9px #fdfafa solid !important;
}
.visa-white--by-9 {
  border-top: 9px #fdfafa solid !important;
  border-bottom: 9px #fdfafa solid !important;
}
.visa-white--bx-9 {
  border-right: 9px #fdfafa solid !important;
  border-left: 9px #fdfafa solid !important;
}
.visa-white--ba-10 {
  border: 10px #fdfafa solid !important;
}
.visa-white--bt-10 {
  border-top: 10px #fdfafa solid !important;
}
.visa-white--br-10 {
  border-right: 10px #fdfafa solid !important;
}
.visa-white--bl-10 {
  border-left: 10px #fdfafa solid !important;
}
.visa-white--bb-10 {
  border-bottom: 10px #fdfafa solid !important;
}
.visa-white--by-10 {
  border-top: 10px #fdfafa solid !important;
  border-bottom: 10px #fdfafa solid !important;
}
.visa-white--bx-10 {
  border-right: 10px #fdfafa solid !important;
  border-left: 10px #fdfafa solid !important;
}
.visa-white--ba-11 {
  border: 11px #fdfafa solid !important;
}
.visa-white--bt-11 {
  border-top: 11px #fdfafa solid !important;
}
.visa-white--br-11 {
  border-right: 11px #fdfafa solid !important;
}
.visa-white--bl-11 {
  border-left: 11px #fdfafa solid !important;
}
.visa-white--bb-11 {
  border-bottom: 11px #fdfafa solid !important;
}
.visa-white--by-11 {
  border-top: 11px #fdfafa solid !important;
  border-bottom: 11px #fdfafa solid !important;
}
.visa-white--bx-11 {
  border-right: 11px #fdfafa solid !important;
  border-left: 11px #fdfafa solid !important;
}
.visa-white--ba-12 {
  border: 12px #fdfafa solid !important;
}
.visa-white--bt-12 {
  border-top: 12px #fdfafa solid !important;
}
.visa-white--br-12 {
  border-right: 12px #fdfafa solid !important;
}
.visa-white--bl-12 {
  border-left: 12px #fdfafa solid !important;
}
.visa-white--bb-12 {
  border-bottom: 12px #fdfafa solid !important;
}
.visa-white--by-12 {
  border-top: 12px #fdfafa solid !important;
  border-bottom: 12px #fdfafa solid !important;
}
.visa-white--bx-12 {
  border-right: 12px #fdfafa solid !important;
  border-left: 12px #fdfafa solid !important;
}
.visa-white--ba-13 {
  border: 13px #fdfafa solid !important;
}
.visa-white--bt-13 {
  border-top: 13px #fdfafa solid !important;
}
.visa-white--br-13 {
  border-right: 13px #fdfafa solid !important;
}
.visa-white--bl-13 {
  border-left: 13px #fdfafa solid !important;
}
.visa-white--bb-13 {
  border-bottom: 13px #fdfafa solid !important;
}
.visa-white--by-13 {
  border-top: 13px #fdfafa solid !important;
  border-bottom: 13px #fdfafa solid !important;
}
.visa-white--bx-13 {
  border-right: 13px #fdfafa solid !important;
  border-left: 13px #fdfafa solid !important;
}
.visa-white--ba-14 {
  border: 14px #fdfafa solid !important;
}
.visa-white--bt-14 {
  border-top: 14px #fdfafa solid !important;
}
.visa-white--br-14 {
  border-right: 14px #fdfafa solid !important;
}
.visa-white--bl-14 {
  border-left: 14px #fdfafa solid !important;
}
.visa-white--bb-14 {
  border-bottom: 14px #fdfafa solid !important;
}
.visa-white--by-14 {
  border-top: 14px #fdfafa solid !important;
  border-bottom: 14px #fdfafa solid !important;
}
.visa-white--bx-14 {
  border-right: 14px #fdfafa solid !important;
  border-left: 14px #fdfafa solid !important;
}
.visa-white--ba-15 {
  border: 15px #fdfafa solid !important;
}
.visa-white--bt-15 {
  border-top: 15px #fdfafa solid !important;
}
.visa-white--br-15 {
  border-right: 15px #fdfafa solid !important;
}
.visa-white--bl-15 {
  border-left: 15px #fdfafa solid !important;
}
.visa-white--bb-15 {
  border-bottom: 15px #fdfafa solid !important;
}
.visa-white--by-15 {
  border-top: 15px #fdfafa solid !important;
  border-bottom: 15px #fdfafa solid !important;
}
.visa-white--bx-15 {
  border-right: 15px #fdfafa solid !important;
  border-left: 15px #fdfafa solid !important;
}
.visa-white--ba-16 {
  border: 16px #fdfafa solid !important;
}
.visa-white--bt-16 {
  border-top: 16px #fdfafa solid !important;
}
.visa-white--br-16 {
  border-right: 16px #fdfafa solid !important;
}
.visa-white--bl-16 {
  border-left: 16px #fdfafa solid !important;
}
.visa-white--bb-16 {
  border-bottom: 16px #fdfafa solid !important;
}
.visa-white--by-16 {
  border-top: 16px #fdfafa solid !important;
  border-bottom: 16px #fdfafa solid !important;
}
.visa-white--bx-16 {
  border-right: 16px #fdfafa solid !important;
  border-left: 16px #fdfafa solid !important;
}
.visa-white--ba-17 {
  border: 17px #fdfafa solid !important;
}
.visa-white--bt-17 {
  border-top: 17px #fdfafa solid !important;
}
.visa-white--br-17 {
  border-right: 17px #fdfafa solid !important;
}
.visa-white--bl-17 {
  border-left: 17px #fdfafa solid !important;
}
.visa-white--bb-17 {
  border-bottom: 17px #fdfafa solid !important;
}
.visa-white--by-17 {
  border-top: 17px #fdfafa solid !important;
  border-bottom: 17px #fdfafa solid !important;
}
.visa-white--bx-17 {
  border-right: 17px #fdfafa solid !important;
  border-left: 17px #fdfafa solid !important;
}
.visa-white--ba-18 {
  border: 18px #fdfafa solid !important;
}
.visa-white--bt-18 {
  border-top: 18px #fdfafa solid !important;
}
.visa-white--br-18 {
  border-right: 18px #fdfafa solid !important;
}
.visa-white--bl-18 {
  border-left: 18px #fdfafa solid !important;
}
.visa-white--bb-18 {
  border-bottom: 18px #fdfafa solid !important;
}
.visa-white--by-18 {
  border-top: 18px #fdfafa solid !important;
  border-bottom: 18px #fdfafa solid !important;
}
.visa-white--bx-18 {
  border-right: 18px #fdfafa solid !important;
  border-left: 18px #fdfafa solid !important;
}
.visa-white--ba-19 {
  border: 19px #fdfafa solid !important;
}
.visa-white--bt-19 {
  border-top: 19px #fdfafa solid !important;
}
.visa-white--br-19 {
  border-right: 19px #fdfafa solid !important;
}
.visa-white--bl-19 {
  border-left: 19px #fdfafa solid !important;
}
.visa-white--bb-19 {
  border-bottom: 19px #fdfafa solid !important;
}
.visa-white--by-19 {
  border-top: 19px #fdfafa solid !important;
  border-bottom: 19px #fdfafa solid !important;
}
.visa-white--bx-19 {
  border-right: 19px #fdfafa solid !important;
  border-left: 19px #fdfafa solid !important;
}
.visa-white--ba-20 {
  border: 20px #fdfafa solid !important;
}
.visa-white--bt-20 {
  border-top: 20px #fdfafa solid !important;
}
.visa-white--br-20 {
  border-right: 20px #fdfafa solid !important;
}
.visa-white--bl-20 {
  border-left: 20px #fdfafa solid !important;
}
.visa-white--bb-20 {
  border-bottom: 20px #fdfafa solid !important;
}
.visa-white--by-20 {
  border-top: 20px #fdfafa solid !important;
  border-bottom: 20px #fdfafa solid !important;
}
.visa-white--bx-20 {
  border-right: 20px #fdfafa solid !important;
  border-left: 20px #fdfafa solid !important;
}
.visa-white--ba-21 {
  border: 21px #fdfafa solid !important;
}
.visa-white--bt-21 {
  border-top: 21px #fdfafa solid !important;
}
.visa-white--br-21 {
  border-right: 21px #fdfafa solid !important;
}
.visa-white--bl-21 {
  border-left: 21px #fdfafa solid !important;
}
.visa-white--bb-21 {
  border-bottom: 21px #fdfafa solid !important;
}
.visa-white--by-21 {
  border-top: 21px #fdfafa solid !important;
  border-bottom: 21px #fdfafa solid !important;
}
.visa-white--bx-21 {
  border-right: 21px #fdfafa solid !important;
  border-left: 21px #fdfafa solid !important;
}
.visa-white--ba-22 {
  border: 22px #fdfafa solid !important;
}
.visa-white--bt-22 {
  border-top: 22px #fdfafa solid !important;
}
.visa-white--br-22 {
  border-right: 22px #fdfafa solid !important;
}
.visa-white--bl-22 {
  border-left: 22px #fdfafa solid !important;
}
.visa-white--bb-22 {
  border-bottom: 22px #fdfafa solid !important;
}
.visa-white--by-22 {
  border-top: 22px #fdfafa solid !important;
  border-bottom: 22px #fdfafa solid !important;
}
.visa-white--bx-22 {
  border-right: 22px #fdfafa solid !important;
  border-left: 22px #fdfafa solid !important;
}
.visa-white--ba-23 {
  border: 23px #fdfafa solid !important;
}
.visa-white--bt-23 {
  border-top: 23px #fdfafa solid !important;
}
.visa-white--br-23 {
  border-right: 23px #fdfafa solid !important;
}
.visa-white--bl-23 {
  border-left: 23px #fdfafa solid !important;
}
.visa-white--bb-23 {
  border-bottom: 23px #fdfafa solid !important;
}
.visa-white--by-23 {
  border-top: 23px #fdfafa solid !important;
  border-bottom: 23px #fdfafa solid !important;
}
.visa-white--bx-23 {
  border-right: 23px #fdfafa solid !important;
  border-left: 23px #fdfafa solid !important;
}
.visa-white--ba-24 {
  border: 24px #fdfafa solid !important;
}
.visa-white--bt-24 {
  border-top: 24px #fdfafa solid !important;
}
.visa-white--br-24 {
  border-right: 24px #fdfafa solid !important;
}
.visa-white--bl-24 {
  border-left: 24px #fdfafa solid !important;
}
.visa-white--bb-24 {
  border-bottom: 24px #fdfafa solid !important;
}
.visa-white--by-24 {
  border-top: 24px #fdfafa solid !important;
  border-bottom: 24px #fdfafa solid !important;
}
.visa-white--bx-24 {
  border-right: 24px #fdfafa solid !important;
  border-left: 24px #fdfafa solid !important;
}
.visa-white--ba-25 {
  border: 25px #fdfafa solid !important;
}
.visa-white--bt-25 {
  border-top: 25px #fdfafa solid !important;
}
.visa-white--br-25 {
  border-right: 25px #fdfafa solid !important;
}
.visa-white--bl-25 {
  border-left: 25px #fdfafa solid !important;
}
.visa-white--bb-25 {
  border-bottom: 25px #fdfafa solid !important;
}
.visa-white--by-25 {
  border-top: 25px #fdfafa solid !important;
  border-bottom: 25px #fdfafa solid !important;
}
.visa-white--bx-25 {
  border-right: 25px #fdfafa solid !important;
  border-left: 25px #fdfafa solid !important;
}
.visa-white--ba-26 {
  border: 26px #fdfafa solid !important;
}
.visa-white--bt-26 {
  border-top: 26px #fdfafa solid !important;
}
.visa-white--br-26 {
  border-right: 26px #fdfafa solid !important;
}
.visa-white--bl-26 {
  border-left: 26px #fdfafa solid !important;
}
.visa-white--bb-26 {
  border-bottom: 26px #fdfafa solid !important;
}
.visa-white--by-26 {
  border-top: 26px #fdfafa solid !important;
  border-bottom: 26px #fdfafa solid !important;
}
.visa-white--bx-26 {
  border-right: 26px #fdfafa solid !important;
  border-left: 26px #fdfafa solid !important;
}
.visa-white--ba-27 {
  border: 27px #fdfafa solid !important;
}
.visa-white--bt-27 {
  border-top: 27px #fdfafa solid !important;
}
.visa-white--br-27 {
  border-right: 27px #fdfafa solid !important;
}
.visa-white--bl-27 {
  border-left: 27px #fdfafa solid !important;
}
.visa-white--bb-27 {
  border-bottom: 27px #fdfafa solid !important;
}
.visa-white--by-27 {
  border-top: 27px #fdfafa solid !important;
  border-bottom: 27px #fdfafa solid !important;
}
.visa-white--bx-27 {
  border-right: 27px #fdfafa solid !important;
  border-left: 27px #fdfafa solid !important;
}
.visa-white--ba-28 {
  border: 28px #fdfafa solid !important;
}
.visa-white--bt-28 {
  border-top: 28px #fdfafa solid !important;
}
.visa-white--br-28 {
  border-right: 28px #fdfafa solid !important;
}
.visa-white--bl-28 {
  border-left: 28px #fdfafa solid !important;
}
.visa-white--bb-28 {
  border-bottom: 28px #fdfafa solid !important;
}
.visa-white--by-28 {
  border-top: 28px #fdfafa solid !important;
  border-bottom: 28px #fdfafa solid !important;
}
.visa-white--bx-28 {
  border-right: 28px #fdfafa solid !important;
  border-left: 28px #fdfafa solid !important;
}
.visa-white--ba-29 {
  border: 29px #fdfafa solid !important;
}
.visa-white--bt-29 {
  border-top: 29px #fdfafa solid !important;
}
.visa-white--br-29 {
  border-right: 29px #fdfafa solid !important;
}
.visa-white--bl-29 {
  border-left: 29px #fdfafa solid !important;
}
.visa-white--bb-29 {
  border-bottom: 29px #fdfafa solid !important;
}
.visa-white--by-29 {
  border-top: 29px #fdfafa solid !important;
  border-bottom: 29px #fdfafa solid !important;
}
.visa-white--bx-29 {
  border-right: 29px #fdfafa solid !important;
  border-left: 29px #fdfafa solid !important;
}
.visa-white--ba-30 {
  border: 30px #fdfafa solid !important;
}
.visa-white--bt-30 {
  border-top: 30px #fdfafa solid !important;
}
.visa-white--br-30 {
  border-right: 30px #fdfafa solid !important;
}
.visa-white--bl-30 {
  border-left: 30px #fdfafa solid !important;
}
.visa-white--bb-30 {
  border-bottom: 30px #fdfafa solid !important;
}
.visa-white--by-30 {
  border-top: 30px #fdfafa solid !important;
  border-bottom: 30px #fdfafa solid !important;
}
.visa-white--bx-30 {
  border-right: 30px #fdfafa solid !important;
  border-left: 30px #fdfafa solid !important;
}
.visa-white--ba-31 {
  border: 31px #fdfafa solid !important;
}
.visa-white--bt-31 {
  border-top: 31px #fdfafa solid !important;
}
.visa-white--br-31 {
  border-right: 31px #fdfafa solid !important;
}
.visa-white--bl-31 {
  border-left: 31px #fdfafa solid !important;
}
.visa-white--bb-31 {
  border-bottom: 31px #fdfafa solid !important;
}
.visa-white--by-31 {
  border-top: 31px #fdfafa solid !important;
  border-bottom: 31px #fdfafa solid !important;
}
.visa-white--bx-31 {
  border-right: 31px #fdfafa solid !important;
  border-left: 31px #fdfafa solid !important;
}
.visa-white--ba-32 {
  border: 32px #fdfafa solid !important;
}
.visa-white--bt-32 {
  border-top: 32px #fdfafa solid !important;
}
.visa-white--br-32 {
  border-right: 32px #fdfafa solid !important;
}
.visa-white--bl-32 {
  border-left: 32px #fdfafa solid !important;
}
.visa-white--bb-32 {
  border-bottom: 32px #fdfafa solid !important;
}
.visa-white--by-32 {
  border-top: 32px #fdfafa solid !important;
  border-bottom: 32px #fdfafa solid !important;
}
.visa-white--bx-32 {
  border-right: 32px #fdfafa solid !important;
  border-left: 32px #fdfafa solid !important;
}
.visa-white--ba-33 {
  border: 33px #fdfafa solid !important;
}
.visa-white--bt-33 {
  border-top: 33px #fdfafa solid !important;
}
.visa-white--br-33 {
  border-right: 33px #fdfafa solid !important;
}
.visa-white--bl-33 {
  border-left: 33px #fdfafa solid !important;
}
.visa-white--bb-33 {
  border-bottom: 33px #fdfafa solid !important;
}
.visa-white--by-33 {
  border-top: 33px #fdfafa solid !important;
  border-bottom: 33px #fdfafa solid !important;
}
.visa-white--bx-33 {
  border-right: 33px #fdfafa solid !important;
  border-left: 33px #fdfafa solid !important;
}
.visa-white--ba-34 {
  border: 34px #fdfafa solid !important;
}
.visa-white--bt-34 {
  border-top: 34px #fdfafa solid !important;
}
.visa-white--br-34 {
  border-right: 34px #fdfafa solid !important;
}
.visa-white--bl-34 {
  border-left: 34px #fdfafa solid !important;
}
.visa-white--bb-34 {
  border-bottom: 34px #fdfafa solid !important;
}
.visa-white--by-34 {
  border-top: 34px #fdfafa solid !important;
  border-bottom: 34px #fdfafa solid !important;
}
.visa-white--bx-34 {
  border-right: 34px #fdfafa solid !important;
  border-left: 34px #fdfafa solid !important;
}
.visa-white--ba-35 {
  border: 35px #fdfafa solid !important;
}
.visa-white--bt-35 {
  border-top: 35px #fdfafa solid !important;
}
.visa-white--br-35 {
  border-right: 35px #fdfafa solid !important;
}
.visa-white--bl-35 {
  border-left: 35px #fdfafa solid !important;
}
.visa-white--bb-35 {
  border-bottom: 35px #fdfafa solid !important;
}
.visa-white--by-35 {
  border-top: 35px #fdfafa solid !important;
  border-bottom: 35px #fdfafa solid !important;
}
.visa-white--bx-35 {
  border-right: 35px #fdfafa solid !important;
  border-left: 35px #fdfafa solid !important;
}
.visa-white--ba-36 {
  border: 36px #fdfafa solid !important;
}
.visa-white--bt-36 {
  border-top: 36px #fdfafa solid !important;
}
.visa-white--br-36 {
  border-right: 36px #fdfafa solid !important;
}
.visa-white--bl-36 {
  border-left: 36px #fdfafa solid !important;
}
.visa-white--bb-36 {
  border-bottom: 36px #fdfafa solid !important;
}
.visa-white--by-36 {
  border-top: 36px #fdfafa solid !important;
  border-bottom: 36px #fdfafa solid !important;
}
.visa-white--bx-36 {
  border-right: 36px #fdfafa solid !important;
  border-left: 36px #fdfafa solid !important;
}
.visa-white--ba-37 {
  border: 37px #fdfafa solid !important;
}
.visa-white--bt-37 {
  border-top: 37px #fdfafa solid !important;
}
.visa-white--br-37 {
  border-right: 37px #fdfafa solid !important;
}
.visa-white--bl-37 {
  border-left: 37px #fdfafa solid !important;
}
.visa-white--bb-37 {
  border-bottom: 37px #fdfafa solid !important;
}
.visa-white--by-37 {
  border-top: 37px #fdfafa solid !important;
  border-bottom: 37px #fdfafa solid !important;
}
.visa-white--bx-37 {
  border-right: 37px #fdfafa solid !important;
  border-left: 37px #fdfafa solid !important;
}
.visa-white--ba-38 {
  border: 38px #fdfafa solid !important;
}
.visa-white--bt-38 {
  border-top: 38px #fdfafa solid !important;
}
.visa-white--br-38 {
  border-right: 38px #fdfafa solid !important;
}
.visa-white--bl-38 {
  border-left: 38px #fdfafa solid !important;
}
.visa-white--bb-38 {
  border-bottom: 38px #fdfafa solid !important;
}
.visa-white--by-38 {
  border-top: 38px #fdfafa solid !important;
  border-bottom: 38px #fdfafa solid !important;
}
.visa-white--bx-38 {
  border-right: 38px #fdfafa solid !important;
  border-left: 38px #fdfafa solid !important;
}
.visa-white--ba-39 {
  border: 39px #fdfafa solid !important;
}
.visa-white--bt-39 {
  border-top: 39px #fdfafa solid !important;
}
.visa-white--br-39 {
  border-right: 39px #fdfafa solid !important;
}
.visa-white--bl-39 {
  border-left: 39px #fdfafa solid !important;
}
.visa-white--bb-39 {
  border-bottom: 39px #fdfafa solid !important;
}
.visa-white--by-39 {
  border-top: 39px #fdfafa solid !important;
  border-bottom: 39px #fdfafa solid !important;
}
.visa-white--bx-39 {
  border-right: 39px #fdfafa solid !important;
  border-left: 39px #fdfafa solid !important;
}
.visa-white--ba-40 {
  border: 40px #fdfafa solid !important;
}
.visa-white--bt-40 {
  border-top: 40px #fdfafa solid !important;
}
.visa-white--br-40 {
  border-right: 40px #fdfafa solid !important;
}
.visa-white--bl-40 {
  border-left: 40px #fdfafa solid !important;
}
.visa-white--bb-40 {
  border-bottom: 40px #fdfafa solid !important;
}
.visa-white--by-40 {
  border-top: 40px #fdfafa solid !important;
  border-bottom: 40px #fdfafa solid !important;
}
.visa-white--bx-40 {
  border-right: 40px #fdfafa solid !important;
  border-left: 40px #fdfafa solid !important;
}
.visa-white--ba-41 {
  border: 41px #fdfafa solid !important;
}
.visa-white--bt-41 {
  border-top: 41px #fdfafa solid !important;
}
.visa-white--br-41 {
  border-right: 41px #fdfafa solid !important;
}
.visa-white--bl-41 {
  border-left: 41px #fdfafa solid !important;
}
.visa-white--bb-41 {
  border-bottom: 41px #fdfafa solid !important;
}
.visa-white--by-41 {
  border-top: 41px #fdfafa solid !important;
  border-bottom: 41px #fdfafa solid !important;
}
.visa-white--bx-41 {
  border-right: 41px #fdfafa solid !important;
  border-left: 41px #fdfafa solid !important;
}
.visa-white--ba-42 {
  border: 42px #fdfafa solid !important;
}
.visa-white--bt-42 {
  border-top: 42px #fdfafa solid !important;
}
.visa-white--br-42 {
  border-right: 42px #fdfafa solid !important;
}
.visa-white--bl-42 {
  border-left: 42px #fdfafa solid !important;
}
.visa-white--bb-42 {
  border-bottom: 42px #fdfafa solid !important;
}
.visa-white--by-42 {
  border-top: 42px #fdfafa solid !important;
  border-bottom: 42px #fdfafa solid !important;
}
.visa-white--bx-42 {
  border-right: 42px #fdfafa solid !important;
  border-left: 42px #fdfafa solid !important;
}
.visa-white--ba-43 {
  border: 43px #fdfafa solid !important;
}
.visa-white--bt-43 {
  border-top: 43px #fdfafa solid !important;
}
.visa-white--br-43 {
  border-right: 43px #fdfafa solid !important;
}
.visa-white--bl-43 {
  border-left: 43px #fdfafa solid !important;
}
.visa-white--bb-43 {
  border-bottom: 43px #fdfafa solid !important;
}
.visa-white--by-43 {
  border-top: 43px #fdfafa solid !important;
  border-bottom: 43px #fdfafa solid !important;
}
.visa-white--bx-43 {
  border-right: 43px #fdfafa solid !important;
  border-left: 43px #fdfafa solid !important;
}
.visa-white--ba-44 {
  border: 44px #fdfafa solid !important;
}
.visa-white--bt-44 {
  border-top: 44px #fdfafa solid !important;
}
.visa-white--br-44 {
  border-right: 44px #fdfafa solid !important;
}
.visa-white--bl-44 {
  border-left: 44px #fdfafa solid !important;
}
.visa-white--bb-44 {
  border-bottom: 44px #fdfafa solid !important;
}
.visa-white--by-44 {
  border-top: 44px #fdfafa solid !important;
  border-bottom: 44px #fdfafa solid !important;
}
.visa-white--bx-44 {
  border-right: 44px #fdfafa solid !important;
  border-left: 44px #fdfafa solid !important;
}
.visa-white--ba-45 {
  border: 45px #fdfafa solid !important;
}
.visa-white--bt-45 {
  border-top: 45px #fdfafa solid !important;
}
.visa-white--br-45 {
  border-right: 45px #fdfafa solid !important;
}
.visa-white--bl-45 {
  border-left: 45px #fdfafa solid !important;
}
.visa-white--bb-45 {
  border-bottom: 45px #fdfafa solid !important;
}
.visa-white--by-45 {
  border-top: 45px #fdfafa solid !important;
  border-bottom: 45px #fdfafa solid !important;
}
.visa-white--bx-45 {
  border-right: 45px #fdfafa solid !important;
  border-left: 45px #fdfafa solid !important;
}
.visa-white--ba-46 {
  border: 46px #fdfafa solid !important;
}
.visa-white--bt-46 {
  border-top: 46px #fdfafa solid !important;
}
.visa-white--br-46 {
  border-right: 46px #fdfafa solid !important;
}
.visa-white--bl-46 {
  border-left: 46px #fdfafa solid !important;
}
.visa-white--bb-46 {
  border-bottom: 46px #fdfafa solid !important;
}
.visa-white--by-46 {
  border-top: 46px #fdfafa solid !important;
  border-bottom: 46px #fdfafa solid !important;
}
.visa-white--bx-46 {
  border-right: 46px #fdfafa solid !important;
  border-left: 46px #fdfafa solid !important;
}
.visa-white--ba-47 {
  border: 47px #fdfafa solid !important;
}
.visa-white--bt-47 {
  border-top: 47px #fdfafa solid !important;
}
.visa-white--br-47 {
  border-right: 47px #fdfafa solid !important;
}
.visa-white--bl-47 {
  border-left: 47px #fdfafa solid !important;
}
.visa-white--bb-47 {
  border-bottom: 47px #fdfafa solid !important;
}
.visa-white--by-47 {
  border-top: 47px #fdfafa solid !important;
  border-bottom: 47px #fdfafa solid !important;
}
.visa-white--bx-47 {
  border-right: 47px #fdfafa solid !important;
  border-left: 47px #fdfafa solid !important;
}
.visa-white--ba-48 {
  border: 48px #fdfafa solid !important;
}
.visa-white--bt-48 {
  border-top: 48px #fdfafa solid !important;
}
.visa-white--br-48 {
  border-right: 48px #fdfafa solid !important;
}
.visa-white--bl-48 {
  border-left: 48px #fdfafa solid !important;
}
.visa-white--bb-48 {
  border-bottom: 48px #fdfafa solid !important;
}
.visa-white--by-48 {
  border-top: 48px #fdfafa solid !important;
  border-bottom: 48px #fdfafa solid !important;
}
.visa-white--bx-48 {
  border-right: 48px #fdfafa solid !important;
  border-left: 48px #fdfafa solid !important;
}
.visa-white--ba-49 {
  border: 49px #fdfafa solid !important;
}
.visa-white--bt-49 {
  border-top: 49px #fdfafa solid !important;
}
.visa-white--br-49 {
  border-right: 49px #fdfafa solid !important;
}
.visa-white--bl-49 {
  border-left: 49px #fdfafa solid !important;
}
.visa-white--bb-49 {
  border-bottom: 49px #fdfafa solid !important;
}
.visa-white--by-49 {
  border-top: 49px #fdfafa solid !important;
  border-bottom: 49px #fdfafa solid !important;
}
.visa-white--bx-49 {
  border-right: 49px #fdfafa solid !important;
  border-left: 49px #fdfafa solid !important;
}
.visa-white--ba-50 {
  border: 50px #fdfafa solid !important;
}
.visa-white--bt-50 {
  border-top: 50px #fdfafa solid !important;
}
.visa-white--br-50 {
  border-right: 50px #fdfafa solid !important;
}
.visa-white--bl-50 {
  border-left: 50px #fdfafa solid !important;
}
.visa-white--bb-50 {
  border-bottom: 50px #fdfafa solid !important;
}
.visa-white--by-50 {
  border-top: 50px #fdfafa solid !important;
  border-bottom: 50px #fdfafa solid !important;
}
.visa-white--bx-50 {
  border-right: 50px #fdfafa solid !important;
  border-left: 50px #fdfafa solid !important;
}
.visa-white--ba-51 {
  border: 51px #fdfafa solid !important;
}
.visa-white--bt-51 {
  border-top: 51px #fdfafa solid !important;
}
.visa-white--br-51 {
  border-right: 51px #fdfafa solid !important;
}
.visa-white--bl-51 {
  border-left: 51px #fdfafa solid !important;
}
.visa-white--bb-51 {
  border-bottom: 51px #fdfafa solid !important;
}
.visa-white--by-51 {
  border-top: 51px #fdfafa solid !important;
  border-bottom: 51px #fdfafa solid !important;
}
.visa-white--bx-51 {
  border-right: 51px #fdfafa solid !important;
  border-left: 51px #fdfafa solid !important;
}
.visa-white--ba-52 {
  border: 52px #fdfafa solid !important;
}
.visa-white--bt-52 {
  border-top: 52px #fdfafa solid !important;
}
.visa-white--br-52 {
  border-right: 52px #fdfafa solid !important;
}
.visa-white--bl-52 {
  border-left: 52px #fdfafa solid !important;
}
.visa-white--bb-52 {
  border-bottom: 52px #fdfafa solid !important;
}
.visa-white--by-52 {
  border-top: 52px #fdfafa solid !important;
  border-bottom: 52px #fdfafa solid !important;
}
.visa-white--bx-52 {
  border-right: 52px #fdfafa solid !important;
  border-left: 52px #fdfafa solid !important;
}
.visa-white--ba-53 {
  border: 53px #fdfafa solid !important;
}
.visa-white--bt-53 {
  border-top: 53px #fdfafa solid !important;
}
.visa-white--br-53 {
  border-right: 53px #fdfafa solid !important;
}
.visa-white--bl-53 {
  border-left: 53px #fdfafa solid !important;
}
.visa-white--bb-53 {
  border-bottom: 53px #fdfafa solid !important;
}
.visa-white--by-53 {
  border-top: 53px #fdfafa solid !important;
  border-bottom: 53px #fdfafa solid !important;
}
.visa-white--bx-53 {
  border-right: 53px #fdfafa solid !important;
  border-left: 53px #fdfafa solid !important;
}
.visa-white--ba-54 {
  border: 54px #fdfafa solid !important;
}
.visa-white--bt-54 {
  border-top: 54px #fdfafa solid !important;
}
.visa-white--br-54 {
  border-right: 54px #fdfafa solid !important;
}
.visa-white--bl-54 {
  border-left: 54px #fdfafa solid !important;
}
.visa-white--bb-54 {
  border-bottom: 54px #fdfafa solid !important;
}
.visa-white--by-54 {
  border-top: 54px #fdfafa solid !important;
  border-bottom: 54px #fdfafa solid !important;
}
.visa-white--bx-54 {
  border-right: 54px #fdfafa solid !important;
  border-left: 54px #fdfafa solid !important;
}
.visa-white--ba-55 {
  border: 55px #fdfafa solid !important;
}
.visa-white--bt-55 {
  border-top: 55px #fdfafa solid !important;
}
.visa-white--br-55 {
  border-right: 55px #fdfafa solid !important;
}
.visa-white--bl-55 {
  border-left: 55px #fdfafa solid !important;
}
.visa-white--bb-55 {
  border-bottom: 55px #fdfafa solid !important;
}
.visa-white--by-55 {
  border-top: 55px #fdfafa solid !important;
  border-bottom: 55px #fdfafa solid !important;
}
.visa-white--bx-55 {
  border-right: 55px #fdfafa solid !important;
  border-left: 55px #fdfafa solid !important;
}
.visa-white--ba-56 {
  border: 56px #fdfafa solid !important;
}
.visa-white--bt-56 {
  border-top: 56px #fdfafa solid !important;
}
.visa-white--br-56 {
  border-right: 56px #fdfafa solid !important;
}
.visa-white--bl-56 {
  border-left: 56px #fdfafa solid !important;
}
.visa-white--bb-56 {
  border-bottom: 56px #fdfafa solid !important;
}
.visa-white--by-56 {
  border-top: 56px #fdfafa solid !important;
  border-bottom: 56px #fdfafa solid !important;
}
.visa-white--bx-56 {
  border-right: 56px #fdfafa solid !important;
  border-left: 56px #fdfafa solid !important;
}
.visa-white--ba-57 {
  border: 57px #fdfafa solid !important;
}
.visa-white--bt-57 {
  border-top: 57px #fdfafa solid !important;
}
.visa-white--br-57 {
  border-right: 57px #fdfafa solid !important;
}
.visa-white--bl-57 {
  border-left: 57px #fdfafa solid !important;
}
.visa-white--bb-57 {
  border-bottom: 57px #fdfafa solid !important;
}
.visa-white--by-57 {
  border-top: 57px #fdfafa solid !important;
  border-bottom: 57px #fdfafa solid !important;
}
.visa-white--bx-57 {
  border-right: 57px #fdfafa solid !important;
  border-left: 57px #fdfafa solid !important;
}
.visa-white--ba-58 {
  border: 58px #fdfafa solid !important;
}
.visa-white--bt-58 {
  border-top: 58px #fdfafa solid !important;
}
.visa-white--br-58 {
  border-right: 58px #fdfafa solid !important;
}
.visa-white--bl-58 {
  border-left: 58px #fdfafa solid !important;
}
.visa-white--bb-58 {
  border-bottom: 58px #fdfafa solid !important;
}
.visa-white--by-58 {
  border-top: 58px #fdfafa solid !important;
  border-bottom: 58px #fdfafa solid !important;
}
.visa-white--bx-58 {
  border-right: 58px #fdfafa solid !important;
  border-left: 58px #fdfafa solid !important;
}
.visa-white--ba-59 {
  border: 59px #fdfafa solid !important;
}
.visa-white--bt-59 {
  border-top: 59px #fdfafa solid !important;
}
.visa-white--br-59 {
  border-right: 59px #fdfafa solid !important;
}
.visa-white--bl-59 {
  border-left: 59px #fdfafa solid !important;
}
.visa-white--bb-59 {
  border-bottom: 59px #fdfafa solid !important;
}
.visa-white--by-59 {
  border-top: 59px #fdfafa solid !important;
  border-bottom: 59px #fdfafa solid !important;
}
.visa-white--bx-59 {
  border-right: 59px #fdfafa solid !important;
  border-left: 59px #fdfafa solid !important;
}
.visa-white--ba-60 {
  border: 60px #fdfafa solid !important;
}
.visa-white--bt-60 {
  border-top: 60px #fdfafa solid !important;
}
.visa-white--br-60 {
  border-right: 60px #fdfafa solid !important;
}
.visa-white--bl-60 {
  border-left: 60px #fdfafa solid !important;
}
.visa-white--bb-60 {
  border-bottom: 60px #fdfafa solid !important;
}
.visa-white--by-60 {
  border-top: 60px #fdfafa solid !important;
  border-bottom: 60px #fdfafa solid !important;
}
.visa-white--bx-60 {
  border-right: 60px #fdfafa solid !important;
  border-left: 60px #fdfafa solid !important;
}
.visa-white--ba-61 {
  border: 61px #fdfafa solid !important;
}
.visa-white--bt-61 {
  border-top: 61px #fdfafa solid !important;
}
.visa-white--br-61 {
  border-right: 61px #fdfafa solid !important;
}
.visa-white--bl-61 {
  border-left: 61px #fdfafa solid !important;
}
.visa-white--bb-61 {
  border-bottom: 61px #fdfafa solid !important;
}
.visa-white--by-61 {
  border-top: 61px #fdfafa solid !important;
  border-bottom: 61px #fdfafa solid !important;
}
.visa-white--bx-61 {
  border-right: 61px #fdfafa solid !important;
  border-left: 61px #fdfafa solid !important;
}
.visa-white--ba-62 {
  border: 62px #fdfafa solid !important;
}
.visa-white--bt-62 {
  border-top: 62px #fdfafa solid !important;
}
.visa-white--br-62 {
  border-right: 62px #fdfafa solid !important;
}
.visa-white--bl-62 {
  border-left: 62px #fdfafa solid !important;
}
.visa-white--bb-62 {
  border-bottom: 62px #fdfafa solid !important;
}
.visa-white--by-62 {
  border-top: 62px #fdfafa solid !important;
  border-bottom: 62px #fdfafa solid !important;
}
.visa-white--bx-62 {
  border-right: 62px #fdfafa solid !important;
  border-left: 62px #fdfafa solid !important;
}
.visa-white--ba-63 {
  border: 63px #fdfafa solid !important;
}
.visa-white--bt-63 {
  border-top: 63px #fdfafa solid !important;
}
.visa-white--br-63 {
  border-right: 63px #fdfafa solid !important;
}
.visa-white--bl-63 {
  border-left: 63px #fdfafa solid !important;
}
.visa-white--bb-63 {
  border-bottom: 63px #fdfafa solid !important;
}
.visa-white--by-63 {
  border-top: 63px #fdfafa solid !important;
  border-bottom: 63px #fdfafa solid !important;
}
.visa-white--bx-63 {
  border-right: 63px #fdfafa solid !important;
  border-left: 63px #fdfafa solid !important;
}
.visa-white--ba-64 {
  border: 64px #fdfafa solid !important;
}
.visa-white--bt-64 {
  border-top: 64px #fdfafa solid !important;
}
.visa-white--br-64 {
  border-right: 64px #fdfafa solid !important;
}
.visa-white--bl-64 {
  border-left: 64px #fdfafa solid !important;
}
.visa-white--bb-64 {
  border-bottom: 64px #fdfafa solid !important;
}
.visa-white--by-64 {
  border-top: 64px #fdfafa solid !important;
  border-bottom: 64px #fdfafa solid !important;
}
.visa-white--bx-64 {
  border-right: 64px #fdfafa solid !important;
  border-left: 64px #fdfafa solid !important;
}
.visa-white--ba-65 {
  border: 65px #fdfafa solid !important;
}
.visa-white--bt-65 {
  border-top: 65px #fdfafa solid !important;
}
.visa-white--br-65 {
  border-right: 65px #fdfafa solid !important;
}
.visa-white--bl-65 {
  border-left: 65px #fdfafa solid !important;
}
.visa-white--bb-65 {
  border-bottom: 65px #fdfafa solid !important;
}
.visa-white--by-65 {
  border-top: 65px #fdfafa solid !important;
  border-bottom: 65px #fdfafa solid !important;
}
.visa-white--bx-65 {
  border-right: 65px #fdfafa solid !important;
  border-left: 65px #fdfafa solid !important;
}
.visa-white--ba-66 {
  border: 66px #fdfafa solid !important;
}
.visa-white--bt-66 {
  border-top: 66px #fdfafa solid !important;
}
.visa-white--br-66 {
  border-right: 66px #fdfafa solid !important;
}
.visa-white--bl-66 {
  border-left: 66px #fdfafa solid !important;
}
.visa-white--bb-66 {
  border-bottom: 66px #fdfafa solid !important;
}
.visa-white--by-66 {
  border-top: 66px #fdfafa solid !important;
  border-bottom: 66px #fdfafa solid !important;
}
.visa-white--bx-66 {
  border-right: 66px #fdfafa solid !important;
  border-left: 66px #fdfafa solid !important;
}
.visa-white--ba-67 {
  border: 67px #fdfafa solid !important;
}
.visa-white--bt-67 {
  border-top: 67px #fdfafa solid !important;
}
.visa-white--br-67 {
  border-right: 67px #fdfafa solid !important;
}
.visa-white--bl-67 {
  border-left: 67px #fdfafa solid !important;
}
.visa-white--bb-67 {
  border-bottom: 67px #fdfafa solid !important;
}
.visa-white--by-67 {
  border-top: 67px #fdfafa solid !important;
  border-bottom: 67px #fdfafa solid !important;
}
.visa-white--bx-67 {
  border-right: 67px #fdfafa solid !important;
  border-left: 67px #fdfafa solid !important;
}
.visa-white--ba-68 {
  border: 68px #fdfafa solid !important;
}
.visa-white--bt-68 {
  border-top: 68px #fdfafa solid !important;
}
.visa-white--br-68 {
  border-right: 68px #fdfafa solid !important;
}
.visa-white--bl-68 {
  border-left: 68px #fdfafa solid !important;
}
.visa-white--bb-68 {
  border-bottom: 68px #fdfafa solid !important;
}
.visa-white--by-68 {
  border-top: 68px #fdfafa solid !important;
  border-bottom: 68px #fdfafa solid !important;
}
.visa-white--bx-68 {
  border-right: 68px #fdfafa solid !important;
  border-left: 68px #fdfafa solid !important;
}
.visa-white--ba-69 {
  border: 69px #fdfafa solid !important;
}
.visa-white--bt-69 {
  border-top: 69px #fdfafa solid !important;
}
.visa-white--br-69 {
  border-right: 69px #fdfafa solid !important;
}
.visa-white--bl-69 {
  border-left: 69px #fdfafa solid !important;
}
.visa-white--bb-69 {
  border-bottom: 69px #fdfafa solid !important;
}
.visa-white--by-69 {
  border-top: 69px #fdfafa solid !important;
  border-bottom: 69px #fdfafa solid !important;
}
.visa-white--bx-69 {
  border-right: 69px #fdfafa solid !important;
  border-left: 69px #fdfafa solid !important;
}
.visa-white--ba-70 {
  border: 70px #fdfafa solid !important;
}
.visa-white--bt-70 {
  border-top: 70px #fdfafa solid !important;
}
.visa-white--br-70 {
  border-right: 70px #fdfafa solid !important;
}
.visa-white--bl-70 {
  border-left: 70px #fdfafa solid !important;
}
.visa-white--bb-70 {
  border-bottom: 70px #fdfafa solid !important;
}
.visa-white--by-70 {
  border-top: 70px #fdfafa solid !important;
  border-bottom: 70px #fdfafa solid !important;
}
.visa-white--bx-70 {
  border-right: 70px #fdfafa solid !important;
  border-left: 70px #fdfafa solid !important;
}
.visa-white--ba-71 {
  border: 71px #fdfafa solid !important;
}
.visa-white--bt-71 {
  border-top: 71px #fdfafa solid !important;
}
.visa-white--br-71 {
  border-right: 71px #fdfafa solid !important;
}
.visa-white--bl-71 {
  border-left: 71px #fdfafa solid !important;
}
.visa-white--bb-71 {
  border-bottom: 71px #fdfafa solid !important;
}
.visa-white--by-71 {
  border-top: 71px #fdfafa solid !important;
  border-bottom: 71px #fdfafa solid !important;
}
.visa-white--bx-71 {
  border-right: 71px #fdfafa solid !important;
  border-left: 71px #fdfafa solid !important;
}
.visa-white--ba-72 {
  border: 72px #fdfafa solid !important;
}
.visa-white--bt-72 {
  border-top: 72px #fdfafa solid !important;
}
.visa-white--br-72 {
  border-right: 72px #fdfafa solid !important;
}
.visa-white--bl-72 {
  border-left: 72px #fdfafa solid !important;
}
.visa-white--bb-72 {
  border-bottom: 72px #fdfafa solid !important;
}
.visa-white--by-72 {
  border-top: 72px #fdfafa solid !important;
  border-bottom: 72px #fdfafa solid !important;
}
.visa-white--bx-72 {
  border-right: 72px #fdfafa solid !important;
  border-left: 72px #fdfafa solid !important;
}
.visa-white--ba-73 {
  border: 73px #fdfafa solid !important;
}
.visa-white--bt-73 {
  border-top: 73px #fdfafa solid !important;
}
.visa-white--br-73 {
  border-right: 73px #fdfafa solid !important;
}
.visa-white--bl-73 {
  border-left: 73px #fdfafa solid !important;
}
.visa-white--bb-73 {
  border-bottom: 73px #fdfafa solid !important;
}
.visa-white--by-73 {
  border-top: 73px #fdfafa solid !important;
  border-bottom: 73px #fdfafa solid !important;
}
.visa-white--bx-73 {
  border-right: 73px #fdfafa solid !important;
  border-left: 73px #fdfafa solid !important;
}
.visa-white--ba-74 {
  border: 74px #fdfafa solid !important;
}
.visa-white--bt-74 {
  border-top: 74px #fdfafa solid !important;
}
.visa-white--br-74 {
  border-right: 74px #fdfafa solid !important;
}
.visa-white--bl-74 {
  border-left: 74px #fdfafa solid !important;
}
.visa-white--bb-74 {
  border-bottom: 74px #fdfafa solid !important;
}
.visa-white--by-74 {
  border-top: 74px #fdfafa solid !important;
  border-bottom: 74px #fdfafa solid !important;
}
.visa-white--bx-74 {
  border-right: 74px #fdfafa solid !important;
  border-left: 74px #fdfafa solid !important;
}
.visa-white--ba-75 {
  border: 75px #fdfafa solid !important;
}
.visa-white--bt-75 {
  border-top: 75px #fdfafa solid !important;
}
.visa-white--br-75 {
  border-right: 75px #fdfafa solid !important;
}
.visa-white--bl-75 {
  border-left: 75px #fdfafa solid !important;
}
.visa-white--bb-75 {
  border-bottom: 75px #fdfafa solid !important;
}
.visa-white--by-75 {
  border-top: 75px #fdfafa solid !important;
  border-bottom: 75px #fdfafa solid !important;
}
.visa-white--bx-75 {
  border-right: 75px #fdfafa solid !important;
  border-left: 75px #fdfafa solid !important;
}
.visa-white--ba-76 {
  border: 76px #fdfafa solid !important;
}
.visa-white--bt-76 {
  border-top: 76px #fdfafa solid !important;
}
.visa-white--br-76 {
  border-right: 76px #fdfafa solid !important;
}
.visa-white--bl-76 {
  border-left: 76px #fdfafa solid !important;
}
.visa-white--bb-76 {
  border-bottom: 76px #fdfafa solid !important;
}
.visa-white--by-76 {
  border-top: 76px #fdfafa solid !important;
  border-bottom: 76px #fdfafa solid !important;
}
.visa-white--bx-76 {
  border-right: 76px #fdfafa solid !important;
  border-left: 76px #fdfafa solid !important;
}
.visa-white--ba-77 {
  border: 77px #fdfafa solid !important;
}
.visa-white--bt-77 {
  border-top: 77px #fdfafa solid !important;
}
.visa-white--br-77 {
  border-right: 77px #fdfafa solid !important;
}
.visa-white--bl-77 {
  border-left: 77px #fdfafa solid !important;
}
.visa-white--bb-77 {
  border-bottom: 77px #fdfafa solid !important;
}
.visa-white--by-77 {
  border-top: 77px #fdfafa solid !important;
  border-bottom: 77px #fdfafa solid !important;
}
.visa-white--bx-77 {
  border-right: 77px #fdfafa solid !important;
  border-left: 77px #fdfafa solid !important;
}
.visa-white--ba-78 {
  border: 78px #fdfafa solid !important;
}
.visa-white--bt-78 {
  border-top: 78px #fdfafa solid !important;
}
.visa-white--br-78 {
  border-right: 78px #fdfafa solid !important;
}
.visa-white--bl-78 {
  border-left: 78px #fdfafa solid !important;
}
.visa-white--bb-78 {
  border-bottom: 78px #fdfafa solid !important;
}
.visa-white--by-78 {
  border-top: 78px #fdfafa solid !important;
  border-bottom: 78px #fdfafa solid !important;
}
.visa-white--bx-78 {
  border-right: 78px #fdfafa solid !important;
  border-left: 78px #fdfafa solid !important;
}
.visa-white--ba-79 {
  border: 79px #fdfafa solid !important;
}
.visa-white--bt-79 {
  border-top: 79px #fdfafa solid !important;
}
.visa-white--br-79 {
  border-right: 79px #fdfafa solid !important;
}
.visa-white--bl-79 {
  border-left: 79px #fdfafa solid !important;
}
.visa-white--bb-79 {
  border-bottom: 79px #fdfafa solid !important;
}
.visa-white--by-79 {
  border-top: 79px #fdfafa solid !important;
  border-bottom: 79px #fdfafa solid !important;
}
.visa-white--bx-79 {
  border-right: 79px #fdfafa solid !important;
  border-left: 79px #fdfafa solid !important;
}
.visa-white--ba-80 {
  border: 80px #fdfafa solid !important;
}
.visa-white--bt-80 {
  border-top: 80px #fdfafa solid !important;
}
.visa-white--br-80 {
  border-right: 80px #fdfafa solid !important;
}
.visa-white--bl-80 {
  border-left: 80px #fdfafa solid !important;
}
.visa-white--bb-80 {
  border-bottom: 80px #fdfafa solid !important;
}
.visa-white--by-80 {
  border-top: 80px #fdfafa solid !important;
  border-bottom: 80px #fdfafa solid !important;
}
.visa-white--bx-80 {
  border-right: 80px #fdfafa solid !important;
  border-left: 80px #fdfafa solid !important;
}
.visa-white--ba-81 {
  border: 81px #fdfafa solid !important;
}
.visa-white--bt-81 {
  border-top: 81px #fdfafa solid !important;
}
.visa-white--br-81 {
  border-right: 81px #fdfafa solid !important;
}
.visa-white--bl-81 {
  border-left: 81px #fdfafa solid !important;
}
.visa-white--bb-81 {
  border-bottom: 81px #fdfafa solid !important;
}
.visa-white--by-81 {
  border-top: 81px #fdfafa solid !important;
  border-bottom: 81px #fdfafa solid !important;
}
.visa-white--bx-81 {
  border-right: 81px #fdfafa solid !important;
  border-left: 81px #fdfafa solid !important;
}
.visa-white--ba-82 {
  border: 82px #fdfafa solid !important;
}
.visa-white--bt-82 {
  border-top: 82px #fdfafa solid !important;
}
.visa-white--br-82 {
  border-right: 82px #fdfafa solid !important;
}
.visa-white--bl-82 {
  border-left: 82px #fdfafa solid !important;
}
.visa-white--bb-82 {
  border-bottom: 82px #fdfafa solid !important;
}
.visa-white--by-82 {
  border-top: 82px #fdfafa solid !important;
  border-bottom: 82px #fdfafa solid !important;
}
.visa-white--bx-82 {
  border-right: 82px #fdfafa solid !important;
  border-left: 82px #fdfafa solid !important;
}
.visa-white--ba-83 {
  border: 83px #fdfafa solid !important;
}
.visa-white--bt-83 {
  border-top: 83px #fdfafa solid !important;
}
.visa-white--br-83 {
  border-right: 83px #fdfafa solid !important;
}
.visa-white--bl-83 {
  border-left: 83px #fdfafa solid !important;
}
.visa-white--bb-83 {
  border-bottom: 83px #fdfafa solid !important;
}
.visa-white--by-83 {
  border-top: 83px #fdfafa solid !important;
  border-bottom: 83px #fdfafa solid !important;
}
.visa-white--bx-83 {
  border-right: 83px #fdfafa solid !important;
  border-left: 83px #fdfafa solid !important;
}
.visa-white--ba-84 {
  border: 84px #fdfafa solid !important;
}
.visa-white--bt-84 {
  border-top: 84px #fdfafa solid !important;
}
.visa-white--br-84 {
  border-right: 84px #fdfafa solid !important;
}
.visa-white--bl-84 {
  border-left: 84px #fdfafa solid !important;
}
.visa-white--bb-84 {
  border-bottom: 84px #fdfafa solid !important;
}
.visa-white--by-84 {
  border-top: 84px #fdfafa solid !important;
  border-bottom: 84px #fdfafa solid !important;
}
.visa-white--bx-84 {
  border-right: 84px #fdfafa solid !important;
  border-left: 84px #fdfafa solid !important;
}
.visa-white--ba-85 {
  border: 85px #fdfafa solid !important;
}
.visa-white--bt-85 {
  border-top: 85px #fdfafa solid !important;
}
.visa-white--br-85 {
  border-right: 85px #fdfafa solid !important;
}
.visa-white--bl-85 {
  border-left: 85px #fdfafa solid !important;
}
.visa-white--bb-85 {
  border-bottom: 85px #fdfafa solid !important;
}
.visa-white--by-85 {
  border-top: 85px #fdfafa solid !important;
  border-bottom: 85px #fdfafa solid !important;
}
.visa-white--bx-85 {
  border-right: 85px #fdfafa solid !important;
  border-left: 85px #fdfafa solid !important;
}
.visa-white--ba-86 {
  border: 86px #fdfafa solid !important;
}
.visa-white--bt-86 {
  border-top: 86px #fdfafa solid !important;
}
.visa-white--br-86 {
  border-right: 86px #fdfafa solid !important;
}
.visa-white--bl-86 {
  border-left: 86px #fdfafa solid !important;
}
.visa-white--bb-86 {
  border-bottom: 86px #fdfafa solid !important;
}
.visa-white--by-86 {
  border-top: 86px #fdfafa solid !important;
  border-bottom: 86px #fdfafa solid !important;
}
.visa-white--bx-86 {
  border-right: 86px #fdfafa solid !important;
  border-left: 86px #fdfafa solid !important;
}
.visa-white--ba-87 {
  border: 87px #fdfafa solid !important;
}
.visa-white--bt-87 {
  border-top: 87px #fdfafa solid !important;
}
.visa-white--br-87 {
  border-right: 87px #fdfafa solid !important;
}
.visa-white--bl-87 {
  border-left: 87px #fdfafa solid !important;
}
.visa-white--bb-87 {
  border-bottom: 87px #fdfafa solid !important;
}
.visa-white--by-87 {
  border-top: 87px #fdfafa solid !important;
  border-bottom: 87px #fdfafa solid !important;
}
.visa-white--bx-87 {
  border-right: 87px #fdfafa solid !important;
  border-left: 87px #fdfafa solid !important;
}
.visa-white--ba-88 {
  border: 88px #fdfafa solid !important;
}
.visa-white--bt-88 {
  border-top: 88px #fdfafa solid !important;
}
.visa-white--br-88 {
  border-right: 88px #fdfafa solid !important;
}
.visa-white--bl-88 {
  border-left: 88px #fdfafa solid !important;
}
.visa-white--bb-88 {
  border-bottom: 88px #fdfafa solid !important;
}
.visa-white--by-88 {
  border-top: 88px #fdfafa solid !important;
  border-bottom: 88px #fdfafa solid !important;
}
.visa-white--bx-88 {
  border-right: 88px #fdfafa solid !important;
  border-left: 88px #fdfafa solid !important;
}
.visa-white--ba-89 {
  border: 89px #fdfafa solid !important;
}
.visa-white--bt-89 {
  border-top: 89px #fdfafa solid !important;
}
.visa-white--br-89 {
  border-right: 89px #fdfafa solid !important;
}
.visa-white--bl-89 {
  border-left: 89px #fdfafa solid !important;
}
.visa-white--bb-89 {
  border-bottom: 89px #fdfafa solid !important;
}
.visa-white--by-89 {
  border-top: 89px #fdfafa solid !important;
  border-bottom: 89px #fdfafa solid !important;
}
.visa-white--bx-89 {
  border-right: 89px #fdfafa solid !important;
  border-left: 89px #fdfafa solid !important;
}
.visa-white--ba-90 {
  border: 90px #fdfafa solid !important;
}
.visa-white--bt-90 {
  border-top: 90px #fdfafa solid !important;
}
.visa-white--br-90 {
  border-right: 90px #fdfafa solid !important;
}
.visa-white--bl-90 {
  border-left: 90px #fdfafa solid !important;
}
.visa-white--bb-90 {
  border-bottom: 90px #fdfafa solid !important;
}
.visa-white--by-90 {
  border-top: 90px #fdfafa solid !important;
  border-bottom: 90px #fdfafa solid !important;
}
.visa-white--bx-90 {
  border-right: 90px #fdfafa solid !important;
  border-left: 90px #fdfafa solid !important;
}
.visa-white--ba-91 {
  border: 91px #fdfafa solid !important;
}
.visa-white--bt-91 {
  border-top: 91px #fdfafa solid !important;
}
.visa-white--br-91 {
  border-right: 91px #fdfafa solid !important;
}
.visa-white--bl-91 {
  border-left: 91px #fdfafa solid !important;
}
.visa-white--bb-91 {
  border-bottom: 91px #fdfafa solid !important;
}
.visa-white--by-91 {
  border-top: 91px #fdfafa solid !important;
  border-bottom: 91px #fdfafa solid !important;
}
.visa-white--bx-91 {
  border-right: 91px #fdfafa solid !important;
  border-left: 91px #fdfafa solid !important;
}
.visa-white--ba-92 {
  border: 92px #fdfafa solid !important;
}
.visa-white--bt-92 {
  border-top: 92px #fdfafa solid !important;
}
.visa-white--br-92 {
  border-right: 92px #fdfafa solid !important;
}
.visa-white--bl-92 {
  border-left: 92px #fdfafa solid !important;
}
.visa-white--bb-92 {
  border-bottom: 92px #fdfafa solid !important;
}
.visa-white--by-92 {
  border-top: 92px #fdfafa solid !important;
  border-bottom: 92px #fdfafa solid !important;
}
.visa-white--bx-92 {
  border-right: 92px #fdfafa solid !important;
  border-left: 92px #fdfafa solid !important;
}
.visa-white--ba-93 {
  border: 93px #fdfafa solid !important;
}
.visa-white--bt-93 {
  border-top: 93px #fdfafa solid !important;
}
.visa-white--br-93 {
  border-right: 93px #fdfafa solid !important;
}
.visa-white--bl-93 {
  border-left: 93px #fdfafa solid !important;
}
.visa-white--bb-93 {
  border-bottom: 93px #fdfafa solid !important;
}
.visa-white--by-93 {
  border-top: 93px #fdfafa solid !important;
  border-bottom: 93px #fdfafa solid !important;
}
.visa-white--bx-93 {
  border-right: 93px #fdfafa solid !important;
  border-left: 93px #fdfafa solid !important;
}
.visa-white--ba-94 {
  border: 94px #fdfafa solid !important;
}
.visa-white--bt-94 {
  border-top: 94px #fdfafa solid !important;
}
.visa-white--br-94 {
  border-right: 94px #fdfafa solid !important;
}
.visa-white--bl-94 {
  border-left: 94px #fdfafa solid !important;
}
.visa-white--bb-94 {
  border-bottom: 94px #fdfafa solid !important;
}
.visa-white--by-94 {
  border-top: 94px #fdfafa solid !important;
  border-bottom: 94px #fdfafa solid !important;
}
.visa-white--bx-94 {
  border-right: 94px #fdfafa solid !important;
  border-left: 94px #fdfafa solid !important;
}
.visa-white--ba-95 {
  border: 95px #fdfafa solid !important;
}
.visa-white--bt-95 {
  border-top: 95px #fdfafa solid !important;
}
.visa-white--br-95 {
  border-right: 95px #fdfafa solid !important;
}
.visa-white--bl-95 {
  border-left: 95px #fdfafa solid !important;
}
.visa-white--bb-95 {
  border-bottom: 95px #fdfafa solid !important;
}
.visa-white--by-95 {
  border-top: 95px #fdfafa solid !important;
  border-bottom: 95px #fdfafa solid !important;
}
.visa-white--bx-95 {
  border-right: 95px #fdfafa solid !important;
  border-left: 95px #fdfafa solid !important;
}
.visa-white--ba-96 {
  border: 96px #fdfafa solid !important;
}
.visa-white--bt-96 {
  border-top: 96px #fdfafa solid !important;
}
.visa-white--br-96 {
  border-right: 96px #fdfafa solid !important;
}
.visa-white--bl-96 {
  border-left: 96px #fdfafa solid !important;
}
.visa-white--bb-96 {
  border-bottom: 96px #fdfafa solid !important;
}
.visa-white--by-96 {
  border-top: 96px #fdfafa solid !important;
  border-bottom: 96px #fdfafa solid !important;
}
.visa-white--bx-96 {
  border-right: 96px #fdfafa solid !important;
  border-left: 96px #fdfafa solid !important;
}
.visa-white--ba-97 {
  border: 97px #fdfafa solid !important;
}
.visa-white--bt-97 {
  border-top: 97px #fdfafa solid !important;
}
.visa-white--br-97 {
  border-right: 97px #fdfafa solid !important;
}
.visa-white--bl-97 {
  border-left: 97px #fdfafa solid !important;
}
.visa-white--bb-97 {
  border-bottom: 97px #fdfafa solid !important;
}
.visa-white--by-97 {
  border-top: 97px #fdfafa solid !important;
  border-bottom: 97px #fdfafa solid !important;
}
.visa-white--bx-97 {
  border-right: 97px #fdfafa solid !important;
  border-left: 97px #fdfafa solid !important;
}
.visa-white--ba-98 {
  border: 98px #fdfafa solid !important;
}
.visa-white--bt-98 {
  border-top: 98px #fdfafa solid !important;
}
.visa-white--br-98 {
  border-right: 98px #fdfafa solid !important;
}
.visa-white--bl-98 {
  border-left: 98px #fdfafa solid !important;
}
.visa-white--bb-98 {
  border-bottom: 98px #fdfafa solid !important;
}
.visa-white--by-98 {
  border-top: 98px #fdfafa solid !important;
  border-bottom: 98px #fdfafa solid !important;
}
.visa-white--bx-98 {
  border-right: 98px #fdfafa solid !important;
  border-left: 98px #fdfafa solid !important;
}
.visa-white--ba-99 {
  border: 99px #fdfafa solid !important;
}
.visa-white--bt-99 {
  border-top: 99px #fdfafa solid !important;
}
.visa-white--br-99 {
  border-right: 99px #fdfafa solid !important;
}
.visa-white--bl-99 {
  border-left: 99px #fdfafa solid !important;
}
.visa-white--bb-99 {
  border-bottom: 99px #fdfafa solid !important;
}
.visa-white--by-99 {
  border-top: 99px #fdfafa solid !important;
  border-bottom: 99px #fdfafa solid !important;
}
.visa-white--bx-99 {
  border-right: 99px #fdfafa solid !important;
  border-left: 99px #fdfafa solid !important;
}
.visa-white--ba-100 {
  border: 100px #fdfafa solid !important;
}
.visa-white--bt-100 {
  border-top: 100px #fdfafa solid !important;
}
.visa-white--br-100 {
  border-right: 100px #fdfafa solid !important;
}
.visa-white--bl-100 {
  border-left: 100px #fdfafa solid !important;
}
.visa-white--bb-100 {
  border-bottom: 100px #fdfafa solid !important;
}
.visa-white--by-100 {
  border-top: 100px #fdfafa solid !important;
  border-bottom: 100px #fdfafa solid !important;
}
.visa-white--bx-100 {
  border-right: 100px #fdfafa solid !important;
  border-left: 100px #fdfafa solid !important;
}
.alabaster--ba-1 {
  border: 1px #f7f7f7 solid !important;
}
.alabaster--bt-1 {
  border-top: 1px #f7f7f7 solid !important;
}
.alabaster--br-1 {
  border-right: 1px #f7f7f7 solid !important;
}
.alabaster--bl-1 {
  border-left: 1px #f7f7f7 solid !important;
}
.alabaster--bb-1 {
  border-bottom: 1px #f7f7f7 solid !important;
}
.alabaster--by-1 {
  border-top: 1px #f7f7f7 solid !important;
  border-bottom: 1px #f7f7f7 solid !important;
}
.alabaster--bx-1 {
  border-right: 1px #f7f7f7 solid !important;
  border-left: 1px #f7f7f7 solid !important;
}
.alabaster--ba-2 {
  border: 2px #f7f7f7 solid !important;
}
.alabaster--bt-2 {
  border-top: 2px #f7f7f7 solid !important;
}
.alabaster--br-2 {
  border-right: 2px #f7f7f7 solid !important;
}
.alabaster--bl-2 {
  border-left: 2px #f7f7f7 solid !important;
}
.alabaster--bb-2 {
  border-bottom: 2px #f7f7f7 solid !important;
}
.alabaster--by-2 {
  border-top: 2px #f7f7f7 solid !important;
  border-bottom: 2px #f7f7f7 solid !important;
}
.alabaster--bx-2 {
  border-right: 2px #f7f7f7 solid !important;
  border-left: 2px #f7f7f7 solid !important;
}
.alabaster--ba-3 {
  border: 3px #f7f7f7 solid !important;
}
.alabaster--bt-3 {
  border-top: 3px #f7f7f7 solid !important;
}
.alabaster--br-3 {
  border-right: 3px #f7f7f7 solid !important;
}
.alabaster--bl-3 {
  border-left: 3px #f7f7f7 solid !important;
}
.alabaster--bb-3 {
  border-bottom: 3px #f7f7f7 solid !important;
}
.alabaster--by-3 {
  border-top: 3px #f7f7f7 solid !important;
  border-bottom: 3px #f7f7f7 solid !important;
}
.alabaster--bx-3 {
  border-right: 3px #f7f7f7 solid !important;
  border-left: 3px #f7f7f7 solid !important;
}
.alabaster--ba-4 {
  border: 4px #f7f7f7 solid !important;
}
.alabaster--bt-4 {
  border-top: 4px #f7f7f7 solid !important;
}
.alabaster--br-4 {
  border-right: 4px #f7f7f7 solid !important;
}
.alabaster--bl-4 {
  border-left: 4px #f7f7f7 solid !important;
}
.alabaster--bb-4 {
  border-bottom: 4px #f7f7f7 solid !important;
}
.alabaster--by-4 {
  border-top: 4px #f7f7f7 solid !important;
  border-bottom: 4px #f7f7f7 solid !important;
}
.alabaster--bx-4 {
  border-right: 4px #f7f7f7 solid !important;
  border-left: 4px #f7f7f7 solid !important;
}
.alabaster--ba-5 {
  border: 5px #f7f7f7 solid !important;
}
.alabaster--bt-5 {
  border-top: 5px #f7f7f7 solid !important;
}
.alabaster--br-5 {
  border-right: 5px #f7f7f7 solid !important;
}
.alabaster--bl-5 {
  border-left: 5px #f7f7f7 solid !important;
}
.alabaster--bb-5 {
  border-bottom: 5px #f7f7f7 solid !important;
}
.alabaster--by-5 {
  border-top: 5px #f7f7f7 solid !important;
  border-bottom: 5px #f7f7f7 solid !important;
}
.alabaster--bx-5 {
  border-right: 5px #f7f7f7 solid !important;
  border-left: 5px #f7f7f7 solid !important;
}
.alabaster--ba-6 {
  border: 6px #f7f7f7 solid !important;
}
.alabaster--bt-6 {
  border-top: 6px #f7f7f7 solid !important;
}
.alabaster--br-6 {
  border-right: 6px #f7f7f7 solid !important;
}
.alabaster--bl-6 {
  border-left: 6px #f7f7f7 solid !important;
}
.alabaster--bb-6 {
  border-bottom: 6px #f7f7f7 solid !important;
}
.alabaster--by-6 {
  border-top: 6px #f7f7f7 solid !important;
  border-bottom: 6px #f7f7f7 solid !important;
}
.alabaster--bx-6 {
  border-right: 6px #f7f7f7 solid !important;
  border-left: 6px #f7f7f7 solid !important;
}
.alabaster--ba-7 {
  border: 7px #f7f7f7 solid !important;
}
.alabaster--bt-7 {
  border-top: 7px #f7f7f7 solid !important;
}
.alabaster--br-7 {
  border-right: 7px #f7f7f7 solid !important;
}
.alabaster--bl-7 {
  border-left: 7px #f7f7f7 solid !important;
}
.alabaster--bb-7 {
  border-bottom: 7px #f7f7f7 solid !important;
}
.alabaster--by-7 {
  border-top: 7px #f7f7f7 solid !important;
  border-bottom: 7px #f7f7f7 solid !important;
}
.alabaster--bx-7 {
  border-right: 7px #f7f7f7 solid !important;
  border-left: 7px #f7f7f7 solid !important;
}
.alabaster--ba-8 {
  border: 8px #f7f7f7 solid !important;
}
.alabaster--bt-8 {
  border-top: 8px #f7f7f7 solid !important;
}
.alabaster--br-8 {
  border-right: 8px #f7f7f7 solid !important;
}
.alabaster--bl-8 {
  border-left: 8px #f7f7f7 solid !important;
}
.alabaster--bb-8 {
  border-bottom: 8px #f7f7f7 solid !important;
}
.alabaster--by-8 {
  border-top: 8px #f7f7f7 solid !important;
  border-bottom: 8px #f7f7f7 solid !important;
}
.alabaster--bx-8 {
  border-right: 8px #f7f7f7 solid !important;
  border-left: 8px #f7f7f7 solid !important;
}
.alabaster--ba-9 {
  border: 9px #f7f7f7 solid !important;
}
.alabaster--bt-9 {
  border-top: 9px #f7f7f7 solid !important;
}
.alabaster--br-9 {
  border-right: 9px #f7f7f7 solid !important;
}
.alabaster--bl-9 {
  border-left: 9px #f7f7f7 solid !important;
}
.alabaster--bb-9 {
  border-bottom: 9px #f7f7f7 solid !important;
}
.alabaster--by-9 {
  border-top: 9px #f7f7f7 solid !important;
  border-bottom: 9px #f7f7f7 solid !important;
}
.alabaster--bx-9 {
  border-right: 9px #f7f7f7 solid !important;
  border-left: 9px #f7f7f7 solid !important;
}
.alabaster--ba-10 {
  border: 10px #f7f7f7 solid !important;
}
.alabaster--bt-10 {
  border-top: 10px #f7f7f7 solid !important;
}
.alabaster--br-10 {
  border-right: 10px #f7f7f7 solid !important;
}
.alabaster--bl-10 {
  border-left: 10px #f7f7f7 solid !important;
}
.alabaster--bb-10 {
  border-bottom: 10px #f7f7f7 solid !important;
}
.alabaster--by-10 {
  border-top: 10px #f7f7f7 solid !important;
  border-bottom: 10px #f7f7f7 solid !important;
}
.alabaster--bx-10 {
  border-right: 10px #f7f7f7 solid !important;
  border-left: 10px #f7f7f7 solid !important;
}
.alabaster--ba-11 {
  border: 11px #f7f7f7 solid !important;
}
.alabaster--bt-11 {
  border-top: 11px #f7f7f7 solid !important;
}
.alabaster--br-11 {
  border-right: 11px #f7f7f7 solid !important;
}
.alabaster--bl-11 {
  border-left: 11px #f7f7f7 solid !important;
}
.alabaster--bb-11 {
  border-bottom: 11px #f7f7f7 solid !important;
}
.alabaster--by-11 {
  border-top: 11px #f7f7f7 solid !important;
  border-bottom: 11px #f7f7f7 solid !important;
}
.alabaster--bx-11 {
  border-right: 11px #f7f7f7 solid !important;
  border-left: 11px #f7f7f7 solid !important;
}
.alabaster--ba-12 {
  border: 12px #f7f7f7 solid !important;
}
.alabaster--bt-12 {
  border-top: 12px #f7f7f7 solid !important;
}
.alabaster--br-12 {
  border-right: 12px #f7f7f7 solid !important;
}
.alabaster--bl-12 {
  border-left: 12px #f7f7f7 solid !important;
}
.alabaster--bb-12 {
  border-bottom: 12px #f7f7f7 solid !important;
}
.alabaster--by-12 {
  border-top: 12px #f7f7f7 solid !important;
  border-bottom: 12px #f7f7f7 solid !important;
}
.alabaster--bx-12 {
  border-right: 12px #f7f7f7 solid !important;
  border-left: 12px #f7f7f7 solid !important;
}
.alabaster--ba-13 {
  border: 13px #f7f7f7 solid !important;
}
.alabaster--bt-13 {
  border-top: 13px #f7f7f7 solid !important;
}
.alabaster--br-13 {
  border-right: 13px #f7f7f7 solid !important;
}
.alabaster--bl-13 {
  border-left: 13px #f7f7f7 solid !important;
}
.alabaster--bb-13 {
  border-bottom: 13px #f7f7f7 solid !important;
}
.alabaster--by-13 {
  border-top: 13px #f7f7f7 solid !important;
  border-bottom: 13px #f7f7f7 solid !important;
}
.alabaster--bx-13 {
  border-right: 13px #f7f7f7 solid !important;
  border-left: 13px #f7f7f7 solid !important;
}
.alabaster--ba-14 {
  border: 14px #f7f7f7 solid !important;
}
.alabaster--bt-14 {
  border-top: 14px #f7f7f7 solid !important;
}
.alabaster--br-14 {
  border-right: 14px #f7f7f7 solid !important;
}
.alabaster--bl-14 {
  border-left: 14px #f7f7f7 solid !important;
}
.alabaster--bb-14 {
  border-bottom: 14px #f7f7f7 solid !important;
}
.alabaster--by-14 {
  border-top: 14px #f7f7f7 solid !important;
  border-bottom: 14px #f7f7f7 solid !important;
}
.alabaster--bx-14 {
  border-right: 14px #f7f7f7 solid !important;
  border-left: 14px #f7f7f7 solid !important;
}
.alabaster--ba-15 {
  border: 15px #f7f7f7 solid !important;
}
.alabaster--bt-15 {
  border-top: 15px #f7f7f7 solid !important;
}
.alabaster--br-15 {
  border-right: 15px #f7f7f7 solid !important;
}
.alabaster--bl-15 {
  border-left: 15px #f7f7f7 solid !important;
}
.alabaster--bb-15 {
  border-bottom: 15px #f7f7f7 solid !important;
}
.alabaster--by-15 {
  border-top: 15px #f7f7f7 solid !important;
  border-bottom: 15px #f7f7f7 solid !important;
}
.alabaster--bx-15 {
  border-right: 15px #f7f7f7 solid !important;
  border-left: 15px #f7f7f7 solid !important;
}
.alabaster--ba-16 {
  border: 16px #f7f7f7 solid !important;
}
.alabaster--bt-16 {
  border-top: 16px #f7f7f7 solid !important;
}
.alabaster--br-16 {
  border-right: 16px #f7f7f7 solid !important;
}
.alabaster--bl-16 {
  border-left: 16px #f7f7f7 solid !important;
}
.alabaster--bb-16 {
  border-bottom: 16px #f7f7f7 solid !important;
}
.alabaster--by-16 {
  border-top: 16px #f7f7f7 solid !important;
  border-bottom: 16px #f7f7f7 solid !important;
}
.alabaster--bx-16 {
  border-right: 16px #f7f7f7 solid !important;
  border-left: 16px #f7f7f7 solid !important;
}
.alabaster--ba-17 {
  border: 17px #f7f7f7 solid !important;
}
.alabaster--bt-17 {
  border-top: 17px #f7f7f7 solid !important;
}
.alabaster--br-17 {
  border-right: 17px #f7f7f7 solid !important;
}
.alabaster--bl-17 {
  border-left: 17px #f7f7f7 solid !important;
}
.alabaster--bb-17 {
  border-bottom: 17px #f7f7f7 solid !important;
}
.alabaster--by-17 {
  border-top: 17px #f7f7f7 solid !important;
  border-bottom: 17px #f7f7f7 solid !important;
}
.alabaster--bx-17 {
  border-right: 17px #f7f7f7 solid !important;
  border-left: 17px #f7f7f7 solid !important;
}
.alabaster--ba-18 {
  border: 18px #f7f7f7 solid !important;
}
.alabaster--bt-18 {
  border-top: 18px #f7f7f7 solid !important;
}
.alabaster--br-18 {
  border-right: 18px #f7f7f7 solid !important;
}
.alabaster--bl-18 {
  border-left: 18px #f7f7f7 solid !important;
}
.alabaster--bb-18 {
  border-bottom: 18px #f7f7f7 solid !important;
}
.alabaster--by-18 {
  border-top: 18px #f7f7f7 solid !important;
  border-bottom: 18px #f7f7f7 solid !important;
}
.alabaster--bx-18 {
  border-right: 18px #f7f7f7 solid !important;
  border-left: 18px #f7f7f7 solid !important;
}
.alabaster--ba-19 {
  border: 19px #f7f7f7 solid !important;
}
.alabaster--bt-19 {
  border-top: 19px #f7f7f7 solid !important;
}
.alabaster--br-19 {
  border-right: 19px #f7f7f7 solid !important;
}
.alabaster--bl-19 {
  border-left: 19px #f7f7f7 solid !important;
}
.alabaster--bb-19 {
  border-bottom: 19px #f7f7f7 solid !important;
}
.alabaster--by-19 {
  border-top: 19px #f7f7f7 solid !important;
  border-bottom: 19px #f7f7f7 solid !important;
}
.alabaster--bx-19 {
  border-right: 19px #f7f7f7 solid !important;
  border-left: 19px #f7f7f7 solid !important;
}
.alabaster--ba-20 {
  border: 20px #f7f7f7 solid !important;
}
.alabaster--bt-20 {
  border-top: 20px #f7f7f7 solid !important;
}
.alabaster--br-20 {
  border-right: 20px #f7f7f7 solid !important;
}
.alabaster--bl-20 {
  border-left: 20px #f7f7f7 solid !important;
}
.alabaster--bb-20 {
  border-bottom: 20px #f7f7f7 solid !important;
}
.alabaster--by-20 {
  border-top: 20px #f7f7f7 solid !important;
  border-bottom: 20px #f7f7f7 solid !important;
}
.alabaster--bx-20 {
  border-right: 20px #f7f7f7 solid !important;
  border-left: 20px #f7f7f7 solid !important;
}
.alabaster--ba-21 {
  border: 21px #f7f7f7 solid !important;
}
.alabaster--bt-21 {
  border-top: 21px #f7f7f7 solid !important;
}
.alabaster--br-21 {
  border-right: 21px #f7f7f7 solid !important;
}
.alabaster--bl-21 {
  border-left: 21px #f7f7f7 solid !important;
}
.alabaster--bb-21 {
  border-bottom: 21px #f7f7f7 solid !important;
}
.alabaster--by-21 {
  border-top: 21px #f7f7f7 solid !important;
  border-bottom: 21px #f7f7f7 solid !important;
}
.alabaster--bx-21 {
  border-right: 21px #f7f7f7 solid !important;
  border-left: 21px #f7f7f7 solid !important;
}
.alabaster--ba-22 {
  border: 22px #f7f7f7 solid !important;
}
.alabaster--bt-22 {
  border-top: 22px #f7f7f7 solid !important;
}
.alabaster--br-22 {
  border-right: 22px #f7f7f7 solid !important;
}
.alabaster--bl-22 {
  border-left: 22px #f7f7f7 solid !important;
}
.alabaster--bb-22 {
  border-bottom: 22px #f7f7f7 solid !important;
}
.alabaster--by-22 {
  border-top: 22px #f7f7f7 solid !important;
  border-bottom: 22px #f7f7f7 solid !important;
}
.alabaster--bx-22 {
  border-right: 22px #f7f7f7 solid !important;
  border-left: 22px #f7f7f7 solid !important;
}
.alabaster--ba-23 {
  border: 23px #f7f7f7 solid !important;
}
.alabaster--bt-23 {
  border-top: 23px #f7f7f7 solid !important;
}
.alabaster--br-23 {
  border-right: 23px #f7f7f7 solid !important;
}
.alabaster--bl-23 {
  border-left: 23px #f7f7f7 solid !important;
}
.alabaster--bb-23 {
  border-bottom: 23px #f7f7f7 solid !important;
}
.alabaster--by-23 {
  border-top: 23px #f7f7f7 solid !important;
  border-bottom: 23px #f7f7f7 solid !important;
}
.alabaster--bx-23 {
  border-right: 23px #f7f7f7 solid !important;
  border-left: 23px #f7f7f7 solid !important;
}
.alabaster--ba-24 {
  border: 24px #f7f7f7 solid !important;
}
.alabaster--bt-24 {
  border-top: 24px #f7f7f7 solid !important;
}
.alabaster--br-24 {
  border-right: 24px #f7f7f7 solid !important;
}
.alabaster--bl-24 {
  border-left: 24px #f7f7f7 solid !important;
}
.alabaster--bb-24 {
  border-bottom: 24px #f7f7f7 solid !important;
}
.alabaster--by-24 {
  border-top: 24px #f7f7f7 solid !important;
  border-bottom: 24px #f7f7f7 solid !important;
}
.alabaster--bx-24 {
  border-right: 24px #f7f7f7 solid !important;
  border-left: 24px #f7f7f7 solid !important;
}
.alabaster--ba-25 {
  border: 25px #f7f7f7 solid !important;
}
.alabaster--bt-25 {
  border-top: 25px #f7f7f7 solid !important;
}
.alabaster--br-25 {
  border-right: 25px #f7f7f7 solid !important;
}
.alabaster--bl-25 {
  border-left: 25px #f7f7f7 solid !important;
}
.alabaster--bb-25 {
  border-bottom: 25px #f7f7f7 solid !important;
}
.alabaster--by-25 {
  border-top: 25px #f7f7f7 solid !important;
  border-bottom: 25px #f7f7f7 solid !important;
}
.alabaster--bx-25 {
  border-right: 25px #f7f7f7 solid !important;
  border-left: 25px #f7f7f7 solid !important;
}
.alabaster--ba-26 {
  border: 26px #f7f7f7 solid !important;
}
.alabaster--bt-26 {
  border-top: 26px #f7f7f7 solid !important;
}
.alabaster--br-26 {
  border-right: 26px #f7f7f7 solid !important;
}
.alabaster--bl-26 {
  border-left: 26px #f7f7f7 solid !important;
}
.alabaster--bb-26 {
  border-bottom: 26px #f7f7f7 solid !important;
}
.alabaster--by-26 {
  border-top: 26px #f7f7f7 solid !important;
  border-bottom: 26px #f7f7f7 solid !important;
}
.alabaster--bx-26 {
  border-right: 26px #f7f7f7 solid !important;
  border-left: 26px #f7f7f7 solid !important;
}
.alabaster--ba-27 {
  border: 27px #f7f7f7 solid !important;
}
.alabaster--bt-27 {
  border-top: 27px #f7f7f7 solid !important;
}
.alabaster--br-27 {
  border-right: 27px #f7f7f7 solid !important;
}
.alabaster--bl-27 {
  border-left: 27px #f7f7f7 solid !important;
}
.alabaster--bb-27 {
  border-bottom: 27px #f7f7f7 solid !important;
}
.alabaster--by-27 {
  border-top: 27px #f7f7f7 solid !important;
  border-bottom: 27px #f7f7f7 solid !important;
}
.alabaster--bx-27 {
  border-right: 27px #f7f7f7 solid !important;
  border-left: 27px #f7f7f7 solid !important;
}
.alabaster--ba-28 {
  border: 28px #f7f7f7 solid !important;
}
.alabaster--bt-28 {
  border-top: 28px #f7f7f7 solid !important;
}
.alabaster--br-28 {
  border-right: 28px #f7f7f7 solid !important;
}
.alabaster--bl-28 {
  border-left: 28px #f7f7f7 solid !important;
}
.alabaster--bb-28 {
  border-bottom: 28px #f7f7f7 solid !important;
}
.alabaster--by-28 {
  border-top: 28px #f7f7f7 solid !important;
  border-bottom: 28px #f7f7f7 solid !important;
}
.alabaster--bx-28 {
  border-right: 28px #f7f7f7 solid !important;
  border-left: 28px #f7f7f7 solid !important;
}
.alabaster--ba-29 {
  border: 29px #f7f7f7 solid !important;
}
.alabaster--bt-29 {
  border-top: 29px #f7f7f7 solid !important;
}
.alabaster--br-29 {
  border-right: 29px #f7f7f7 solid !important;
}
.alabaster--bl-29 {
  border-left: 29px #f7f7f7 solid !important;
}
.alabaster--bb-29 {
  border-bottom: 29px #f7f7f7 solid !important;
}
.alabaster--by-29 {
  border-top: 29px #f7f7f7 solid !important;
  border-bottom: 29px #f7f7f7 solid !important;
}
.alabaster--bx-29 {
  border-right: 29px #f7f7f7 solid !important;
  border-left: 29px #f7f7f7 solid !important;
}
.alabaster--ba-30 {
  border: 30px #f7f7f7 solid !important;
}
.alabaster--bt-30 {
  border-top: 30px #f7f7f7 solid !important;
}
.alabaster--br-30 {
  border-right: 30px #f7f7f7 solid !important;
}
.alabaster--bl-30 {
  border-left: 30px #f7f7f7 solid !important;
}
.alabaster--bb-30 {
  border-bottom: 30px #f7f7f7 solid !important;
}
.alabaster--by-30 {
  border-top: 30px #f7f7f7 solid !important;
  border-bottom: 30px #f7f7f7 solid !important;
}
.alabaster--bx-30 {
  border-right: 30px #f7f7f7 solid !important;
  border-left: 30px #f7f7f7 solid !important;
}
.alabaster--ba-31 {
  border: 31px #f7f7f7 solid !important;
}
.alabaster--bt-31 {
  border-top: 31px #f7f7f7 solid !important;
}
.alabaster--br-31 {
  border-right: 31px #f7f7f7 solid !important;
}
.alabaster--bl-31 {
  border-left: 31px #f7f7f7 solid !important;
}
.alabaster--bb-31 {
  border-bottom: 31px #f7f7f7 solid !important;
}
.alabaster--by-31 {
  border-top: 31px #f7f7f7 solid !important;
  border-bottom: 31px #f7f7f7 solid !important;
}
.alabaster--bx-31 {
  border-right: 31px #f7f7f7 solid !important;
  border-left: 31px #f7f7f7 solid !important;
}
.alabaster--ba-32 {
  border: 32px #f7f7f7 solid !important;
}
.alabaster--bt-32 {
  border-top: 32px #f7f7f7 solid !important;
}
.alabaster--br-32 {
  border-right: 32px #f7f7f7 solid !important;
}
.alabaster--bl-32 {
  border-left: 32px #f7f7f7 solid !important;
}
.alabaster--bb-32 {
  border-bottom: 32px #f7f7f7 solid !important;
}
.alabaster--by-32 {
  border-top: 32px #f7f7f7 solid !important;
  border-bottom: 32px #f7f7f7 solid !important;
}
.alabaster--bx-32 {
  border-right: 32px #f7f7f7 solid !important;
  border-left: 32px #f7f7f7 solid !important;
}
.alabaster--ba-33 {
  border: 33px #f7f7f7 solid !important;
}
.alabaster--bt-33 {
  border-top: 33px #f7f7f7 solid !important;
}
.alabaster--br-33 {
  border-right: 33px #f7f7f7 solid !important;
}
.alabaster--bl-33 {
  border-left: 33px #f7f7f7 solid !important;
}
.alabaster--bb-33 {
  border-bottom: 33px #f7f7f7 solid !important;
}
.alabaster--by-33 {
  border-top: 33px #f7f7f7 solid !important;
  border-bottom: 33px #f7f7f7 solid !important;
}
.alabaster--bx-33 {
  border-right: 33px #f7f7f7 solid !important;
  border-left: 33px #f7f7f7 solid !important;
}
.alabaster--ba-34 {
  border: 34px #f7f7f7 solid !important;
}
.alabaster--bt-34 {
  border-top: 34px #f7f7f7 solid !important;
}
.alabaster--br-34 {
  border-right: 34px #f7f7f7 solid !important;
}
.alabaster--bl-34 {
  border-left: 34px #f7f7f7 solid !important;
}
.alabaster--bb-34 {
  border-bottom: 34px #f7f7f7 solid !important;
}
.alabaster--by-34 {
  border-top: 34px #f7f7f7 solid !important;
  border-bottom: 34px #f7f7f7 solid !important;
}
.alabaster--bx-34 {
  border-right: 34px #f7f7f7 solid !important;
  border-left: 34px #f7f7f7 solid !important;
}
.alabaster--ba-35 {
  border: 35px #f7f7f7 solid !important;
}
.alabaster--bt-35 {
  border-top: 35px #f7f7f7 solid !important;
}
.alabaster--br-35 {
  border-right: 35px #f7f7f7 solid !important;
}
.alabaster--bl-35 {
  border-left: 35px #f7f7f7 solid !important;
}
.alabaster--bb-35 {
  border-bottom: 35px #f7f7f7 solid !important;
}
.alabaster--by-35 {
  border-top: 35px #f7f7f7 solid !important;
  border-bottom: 35px #f7f7f7 solid !important;
}
.alabaster--bx-35 {
  border-right: 35px #f7f7f7 solid !important;
  border-left: 35px #f7f7f7 solid !important;
}
.alabaster--ba-36 {
  border: 36px #f7f7f7 solid !important;
}
.alabaster--bt-36 {
  border-top: 36px #f7f7f7 solid !important;
}
.alabaster--br-36 {
  border-right: 36px #f7f7f7 solid !important;
}
.alabaster--bl-36 {
  border-left: 36px #f7f7f7 solid !important;
}
.alabaster--bb-36 {
  border-bottom: 36px #f7f7f7 solid !important;
}
.alabaster--by-36 {
  border-top: 36px #f7f7f7 solid !important;
  border-bottom: 36px #f7f7f7 solid !important;
}
.alabaster--bx-36 {
  border-right: 36px #f7f7f7 solid !important;
  border-left: 36px #f7f7f7 solid !important;
}
.alabaster--ba-37 {
  border: 37px #f7f7f7 solid !important;
}
.alabaster--bt-37 {
  border-top: 37px #f7f7f7 solid !important;
}
.alabaster--br-37 {
  border-right: 37px #f7f7f7 solid !important;
}
.alabaster--bl-37 {
  border-left: 37px #f7f7f7 solid !important;
}
.alabaster--bb-37 {
  border-bottom: 37px #f7f7f7 solid !important;
}
.alabaster--by-37 {
  border-top: 37px #f7f7f7 solid !important;
  border-bottom: 37px #f7f7f7 solid !important;
}
.alabaster--bx-37 {
  border-right: 37px #f7f7f7 solid !important;
  border-left: 37px #f7f7f7 solid !important;
}
.alabaster--ba-38 {
  border: 38px #f7f7f7 solid !important;
}
.alabaster--bt-38 {
  border-top: 38px #f7f7f7 solid !important;
}
.alabaster--br-38 {
  border-right: 38px #f7f7f7 solid !important;
}
.alabaster--bl-38 {
  border-left: 38px #f7f7f7 solid !important;
}
.alabaster--bb-38 {
  border-bottom: 38px #f7f7f7 solid !important;
}
.alabaster--by-38 {
  border-top: 38px #f7f7f7 solid !important;
  border-bottom: 38px #f7f7f7 solid !important;
}
.alabaster--bx-38 {
  border-right: 38px #f7f7f7 solid !important;
  border-left: 38px #f7f7f7 solid !important;
}
.alabaster--ba-39 {
  border: 39px #f7f7f7 solid !important;
}
.alabaster--bt-39 {
  border-top: 39px #f7f7f7 solid !important;
}
.alabaster--br-39 {
  border-right: 39px #f7f7f7 solid !important;
}
.alabaster--bl-39 {
  border-left: 39px #f7f7f7 solid !important;
}
.alabaster--bb-39 {
  border-bottom: 39px #f7f7f7 solid !important;
}
.alabaster--by-39 {
  border-top: 39px #f7f7f7 solid !important;
  border-bottom: 39px #f7f7f7 solid !important;
}
.alabaster--bx-39 {
  border-right: 39px #f7f7f7 solid !important;
  border-left: 39px #f7f7f7 solid !important;
}
.alabaster--ba-40 {
  border: 40px #f7f7f7 solid !important;
}
.alabaster--bt-40 {
  border-top: 40px #f7f7f7 solid !important;
}
.alabaster--br-40 {
  border-right: 40px #f7f7f7 solid !important;
}
.alabaster--bl-40 {
  border-left: 40px #f7f7f7 solid !important;
}
.alabaster--bb-40 {
  border-bottom: 40px #f7f7f7 solid !important;
}
.alabaster--by-40 {
  border-top: 40px #f7f7f7 solid !important;
  border-bottom: 40px #f7f7f7 solid !important;
}
.alabaster--bx-40 {
  border-right: 40px #f7f7f7 solid !important;
  border-left: 40px #f7f7f7 solid !important;
}
.alabaster--ba-41 {
  border: 41px #f7f7f7 solid !important;
}
.alabaster--bt-41 {
  border-top: 41px #f7f7f7 solid !important;
}
.alabaster--br-41 {
  border-right: 41px #f7f7f7 solid !important;
}
.alabaster--bl-41 {
  border-left: 41px #f7f7f7 solid !important;
}
.alabaster--bb-41 {
  border-bottom: 41px #f7f7f7 solid !important;
}
.alabaster--by-41 {
  border-top: 41px #f7f7f7 solid !important;
  border-bottom: 41px #f7f7f7 solid !important;
}
.alabaster--bx-41 {
  border-right: 41px #f7f7f7 solid !important;
  border-left: 41px #f7f7f7 solid !important;
}
.alabaster--ba-42 {
  border: 42px #f7f7f7 solid !important;
}
.alabaster--bt-42 {
  border-top: 42px #f7f7f7 solid !important;
}
.alabaster--br-42 {
  border-right: 42px #f7f7f7 solid !important;
}
.alabaster--bl-42 {
  border-left: 42px #f7f7f7 solid !important;
}
.alabaster--bb-42 {
  border-bottom: 42px #f7f7f7 solid !important;
}
.alabaster--by-42 {
  border-top: 42px #f7f7f7 solid !important;
  border-bottom: 42px #f7f7f7 solid !important;
}
.alabaster--bx-42 {
  border-right: 42px #f7f7f7 solid !important;
  border-left: 42px #f7f7f7 solid !important;
}
.alabaster--ba-43 {
  border: 43px #f7f7f7 solid !important;
}
.alabaster--bt-43 {
  border-top: 43px #f7f7f7 solid !important;
}
.alabaster--br-43 {
  border-right: 43px #f7f7f7 solid !important;
}
.alabaster--bl-43 {
  border-left: 43px #f7f7f7 solid !important;
}
.alabaster--bb-43 {
  border-bottom: 43px #f7f7f7 solid !important;
}
.alabaster--by-43 {
  border-top: 43px #f7f7f7 solid !important;
  border-bottom: 43px #f7f7f7 solid !important;
}
.alabaster--bx-43 {
  border-right: 43px #f7f7f7 solid !important;
  border-left: 43px #f7f7f7 solid !important;
}
.alabaster--ba-44 {
  border: 44px #f7f7f7 solid !important;
}
.alabaster--bt-44 {
  border-top: 44px #f7f7f7 solid !important;
}
.alabaster--br-44 {
  border-right: 44px #f7f7f7 solid !important;
}
.alabaster--bl-44 {
  border-left: 44px #f7f7f7 solid !important;
}
.alabaster--bb-44 {
  border-bottom: 44px #f7f7f7 solid !important;
}
.alabaster--by-44 {
  border-top: 44px #f7f7f7 solid !important;
  border-bottom: 44px #f7f7f7 solid !important;
}
.alabaster--bx-44 {
  border-right: 44px #f7f7f7 solid !important;
  border-left: 44px #f7f7f7 solid !important;
}
.alabaster--ba-45 {
  border: 45px #f7f7f7 solid !important;
}
.alabaster--bt-45 {
  border-top: 45px #f7f7f7 solid !important;
}
.alabaster--br-45 {
  border-right: 45px #f7f7f7 solid !important;
}
.alabaster--bl-45 {
  border-left: 45px #f7f7f7 solid !important;
}
.alabaster--bb-45 {
  border-bottom: 45px #f7f7f7 solid !important;
}
.alabaster--by-45 {
  border-top: 45px #f7f7f7 solid !important;
  border-bottom: 45px #f7f7f7 solid !important;
}
.alabaster--bx-45 {
  border-right: 45px #f7f7f7 solid !important;
  border-left: 45px #f7f7f7 solid !important;
}
.alabaster--ba-46 {
  border: 46px #f7f7f7 solid !important;
}
.alabaster--bt-46 {
  border-top: 46px #f7f7f7 solid !important;
}
.alabaster--br-46 {
  border-right: 46px #f7f7f7 solid !important;
}
.alabaster--bl-46 {
  border-left: 46px #f7f7f7 solid !important;
}
.alabaster--bb-46 {
  border-bottom: 46px #f7f7f7 solid !important;
}
.alabaster--by-46 {
  border-top: 46px #f7f7f7 solid !important;
  border-bottom: 46px #f7f7f7 solid !important;
}
.alabaster--bx-46 {
  border-right: 46px #f7f7f7 solid !important;
  border-left: 46px #f7f7f7 solid !important;
}
.alabaster--ba-47 {
  border: 47px #f7f7f7 solid !important;
}
.alabaster--bt-47 {
  border-top: 47px #f7f7f7 solid !important;
}
.alabaster--br-47 {
  border-right: 47px #f7f7f7 solid !important;
}
.alabaster--bl-47 {
  border-left: 47px #f7f7f7 solid !important;
}
.alabaster--bb-47 {
  border-bottom: 47px #f7f7f7 solid !important;
}
.alabaster--by-47 {
  border-top: 47px #f7f7f7 solid !important;
  border-bottom: 47px #f7f7f7 solid !important;
}
.alabaster--bx-47 {
  border-right: 47px #f7f7f7 solid !important;
  border-left: 47px #f7f7f7 solid !important;
}
.alabaster--ba-48 {
  border: 48px #f7f7f7 solid !important;
}
.alabaster--bt-48 {
  border-top: 48px #f7f7f7 solid !important;
}
.alabaster--br-48 {
  border-right: 48px #f7f7f7 solid !important;
}
.alabaster--bl-48 {
  border-left: 48px #f7f7f7 solid !important;
}
.alabaster--bb-48 {
  border-bottom: 48px #f7f7f7 solid !important;
}
.alabaster--by-48 {
  border-top: 48px #f7f7f7 solid !important;
  border-bottom: 48px #f7f7f7 solid !important;
}
.alabaster--bx-48 {
  border-right: 48px #f7f7f7 solid !important;
  border-left: 48px #f7f7f7 solid !important;
}
.alabaster--ba-49 {
  border: 49px #f7f7f7 solid !important;
}
.alabaster--bt-49 {
  border-top: 49px #f7f7f7 solid !important;
}
.alabaster--br-49 {
  border-right: 49px #f7f7f7 solid !important;
}
.alabaster--bl-49 {
  border-left: 49px #f7f7f7 solid !important;
}
.alabaster--bb-49 {
  border-bottom: 49px #f7f7f7 solid !important;
}
.alabaster--by-49 {
  border-top: 49px #f7f7f7 solid !important;
  border-bottom: 49px #f7f7f7 solid !important;
}
.alabaster--bx-49 {
  border-right: 49px #f7f7f7 solid !important;
  border-left: 49px #f7f7f7 solid !important;
}
.alabaster--ba-50 {
  border: 50px #f7f7f7 solid !important;
}
.alabaster--bt-50 {
  border-top: 50px #f7f7f7 solid !important;
}
.alabaster--br-50 {
  border-right: 50px #f7f7f7 solid !important;
}
.alabaster--bl-50 {
  border-left: 50px #f7f7f7 solid !important;
}
.alabaster--bb-50 {
  border-bottom: 50px #f7f7f7 solid !important;
}
.alabaster--by-50 {
  border-top: 50px #f7f7f7 solid !important;
  border-bottom: 50px #f7f7f7 solid !important;
}
.alabaster--bx-50 {
  border-right: 50px #f7f7f7 solid !important;
  border-left: 50px #f7f7f7 solid !important;
}
.alabaster--ba-51 {
  border: 51px #f7f7f7 solid !important;
}
.alabaster--bt-51 {
  border-top: 51px #f7f7f7 solid !important;
}
.alabaster--br-51 {
  border-right: 51px #f7f7f7 solid !important;
}
.alabaster--bl-51 {
  border-left: 51px #f7f7f7 solid !important;
}
.alabaster--bb-51 {
  border-bottom: 51px #f7f7f7 solid !important;
}
.alabaster--by-51 {
  border-top: 51px #f7f7f7 solid !important;
  border-bottom: 51px #f7f7f7 solid !important;
}
.alabaster--bx-51 {
  border-right: 51px #f7f7f7 solid !important;
  border-left: 51px #f7f7f7 solid !important;
}
.alabaster--ba-52 {
  border: 52px #f7f7f7 solid !important;
}
.alabaster--bt-52 {
  border-top: 52px #f7f7f7 solid !important;
}
.alabaster--br-52 {
  border-right: 52px #f7f7f7 solid !important;
}
.alabaster--bl-52 {
  border-left: 52px #f7f7f7 solid !important;
}
.alabaster--bb-52 {
  border-bottom: 52px #f7f7f7 solid !important;
}
.alabaster--by-52 {
  border-top: 52px #f7f7f7 solid !important;
  border-bottom: 52px #f7f7f7 solid !important;
}
.alabaster--bx-52 {
  border-right: 52px #f7f7f7 solid !important;
  border-left: 52px #f7f7f7 solid !important;
}
.alabaster--ba-53 {
  border: 53px #f7f7f7 solid !important;
}
.alabaster--bt-53 {
  border-top: 53px #f7f7f7 solid !important;
}
.alabaster--br-53 {
  border-right: 53px #f7f7f7 solid !important;
}
.alabaster--bl-53 {
  border-left: 53px #f7f7f7 solid !important;
}
.alabaster--bb-53 {
  border-bottom: 53px #f7f7f7 solid !important;
}
.alabaster--by-53 {
  border-top: 53px #f7f7f7 solid !important;
  border-bottom: 53px #f7f7f7 solid !important;
}
.alabaster--bx-53 {
  border-right: 53px #f7f7f7 solid !important;
  border-left: 53px #f7f7f7 solid !important;
}
.alabaster--ba-54 {
  border: 54px #f7f7f7 solid !important;
}
.alabaster--bt-54 {
  border-top: 54px #f7f7f7 solid !important;
}
.alabaster--br-54 {
  border-right: 54px #f7f7f7 solid !important;
}
.alabaster--bl-54 {
  border-left: 54px #f7f7f7 solid !important;
}
.alabaster--bb-54 {
  border-bottom: 54px #f7f7f7 solid !important;
}
.alabaster--by-54 {
  border-top: 54px #f7f7f7 solid !important;
  border-bottom: 54px #f7f7f7 solid !important;
}
.alabaster--bx-54 {
  border-right: 54px #f7f7f7 solid !important;
  border-left: 54px #f7f7f7 solid !important;
}
.alabaster--ba-55 {
  border: 55px #f7f7f7 solid !important;
}
.alabaster--bt-55 {
  border-top: 55px #f7f7f7 solid !important;
}
.alabaster--br-55 {
  border-right: 55px #f7f7f7 solid !important;
}
.alabaster--bl-55 {
  border-left: 55px #f7f7f7 solid !important;
}
.alabaster--bb-55 {
  border-bottom: 55px #f7f7f7 solid !important;
}
.alabaster--by-55 {
  border-top: 55px #f7f7f7 solid !important;
  border-bottom: 55px #f7f7f7 solid !important;
}
.alabaster--bx-55 {
  border-right: 55px #f7f7f7 solid !important;
  border-left: 55px #f7f7f7 solid !important;
}
.alabaster--ba-56 {
  border: 56px #f7f7f7 solid !important;
}
.alabaster--bt-56 {
  border-top: 56px #f7f7f7 solid !important;
}
.alabaster--br-56 {
  border-right: 56px #f7f7f7 solid !important;
}
.alabaster--bl-56 {
  border-left: 56px #f7f7f7 solid !important;
}
.alabaster--bb-56 {
  border-bottom: 56px #f7f7f7 solid !important;
}
.alabaster--by-56 {
  border-top: 56px #f7f7f7 solid !important;
  border-bottom: 56px #f7f7f7 solid !important;
}
.alabaster--bx-56 {
  border-right: 56px #f7f7f7 solid !important;
  border-left: 56px #f7f7f7 solid !important;
}
.alabaster--ba-57 {
  border: 57px #f7f7f7 solid !important;
}
.alabaster--bt-57 {
  border-top: 57px #f7f7f7 solid !important;
}
.alabaster--br-57 {
  border-right: 57px #f7f7f7 solid !important;
}
.alabaster--bl-57 {
  border-left: 57px #f7f7f7 solid !important;
}
.alabaster--bb-57 {
  border-bottom: 57px #f7f7f7 solid !important;
}
.alabaster--by-57 {
  border-top: 57px #f7f7f7 solid !important;
  border-bottom: 57px #f7f7f7 solid !important;
}
.alabaster--bx-57 {
  border-right: 57px #f7f7f7 solid !important;
  border-left: 57px #f7f7f7 solid !important;
}
.alabaster--ba-58 {
  border: 58px #f7f7f7 solid !important;
}
.alabaster--bt-58 {
  border-top: 58px #f7f7f7 solid !important;
}
.alabaster--br-58 {
  border-right: 58px #f7f7f7 solid !important;
}
.alabaster--bl-58 {
  border-left: 58px #f7f7f7 solid !important;
}
.alabaster--bb-58 {
  border-bottom: 58px #f7f7f7 solid !important;
}
.alabaster--by-58 {
  border-top: 58px #f7f7f7 solid !important;
  border-bottom: 58px #f7f7f7 solid !important;
}
.alabaster--bx-58 {
  border-right: 58px #f7f7f7 solid !important;
  border-left: 58px #f7f7f7 solid !important;
}
.alabaster--ba-59 {
  border: 59px #f7f7f7 solid !important;
}
.alabaster--bt-59 {
  border-top: 59px #f7f7f7 solid !important;
}
.alabaster--br-59 {
  border-right: 59px #f7f7f7 solid !important;
}
.alabaster--bl-59 {
  border-left: 59px #f7f7f7 solid !important;
}
.alabaster--bb-59 {
  border-bottom: 59px #f7f7f7 solid !important;
}
.alabaster--by-59 {
  border-top: 59px #f7f7f7 solid !important;
  border-bottom: 59px #f7f7f7 solid !important;
}
.alabaster--bx-59 {
  border-right: 59px #f7f7f7 solid !important;
  border-left: 59px #f7f7f7 solid !important;
}
.alabaster--ba-60 {
  border: 60px #f7f7f7 solid !important;
}
.alabaster--bt-60 {
  border-top: 60px #f7f7f7 solid !important;
}
.alabaster--br-60 {
  border-right: 60px #f7f7f7 solid !important;
}
.alabaster--bl-60 {
  border-left: 60px #f7f7f7 solid !important;
}
.alabaster--bb-60 {
  border-bottom: 60px #f7f7f7 solid !important;
}
.alabaster--by-60 {
  border-top: 60px #f7f7f7 solid !important;
  border-bottom: 60px #f7f7f7 solid !important;
}
.alabaster--bx-60 {
  border-right: 60px #f7f7f7 solid !important;
  border-left: 60px #f7f7f7 solid !important;
}
.alabaster--ba-61 {
  border: 61px #f7f7f7 solid !important;
}
.alabaster--bt-61 {
  border-top: 61px #f7f7f7 solid !important;
}
.alabaster--br-61 {
  border-right: 61px #f7f7f7 solid !important;
}
.alabaster--bl-61 {
  border-left: 61px #f7f7f7 solid !important;
}
.alabaster--bb-61 {
  border-bottom: 61px #f7f7f7 solid !important;
}
.alabaster--by-61 {
  border-top: 61px #f7f7f7 solid !important;
  border-bottom: 61px #f7f7f7 solid !important;
}
.alabaster--bx-61 {
  border-right: 61px #f7f7f7 solid !important;
  border-left: 61px #f7f7f7 solid !important;
}
.alabaster--ba-62 {
  border: 62px #f7f7f7 solid !important;
}
.alabaster--bt-62 {
  border-top: 62px #f7f7f7 solid !important;
}
.alabaster--br-62 {
  border-right: 62px #f7f7f7 solid !important;
}
.alabaster--bl-62 {
  border-left: 62px #f7f7f7 solid !important;
}
.alabaster--bb-62 {
  border-bottom: 62px #f7f7f7 solid !important;
}
.alabaster--by-62 {
  border-top: 62px #f7f7f7 solid !important;
  border-bottom: 62px #f7f7f7 solid !important;
}
.alabaster--bx-62 {
  border-right: 62px #f7f7f7 solid !important;
  border-left: 62px #f7f7f7 solid !important;
}
.alabaster--ba-63 {
  border: 63px #f7f7f7 solid !important;
}
.alabaster--bt-63 {
  border-top: 63px #f7f7f7 solid !important;
}
.alabaster--br-63 {
  border-right: 63px #f7f7f7 solid !important;
}
.alabaster--bl-63 {
  border-left: 63px #f7f7f7 solid !important;
}
.alabaster--bb-63 {
  border-bottom: 63px #f7f7f7 solid !important;
}
.alabaster--by-63 {
  border-top: 63px #f7f7f7 solid !important;
  border-bottom: 63px #f7f7f7 solid !important;
}
.alabaster--bx-63 {
  border-right: 63px #f7f7f7 solid !important;
  border-left: 63px #f7f7f7 solid !important;
}
.alabaster--ba-64 {
  border: 64px #f7f7f7 solid !important;
}
.alabaster--bt-64 {
  border-top: 64px #f7f7f7 solid !important;
}
.alabaster--br-64 {
  border-right: 64px #f7f7f7 solid !important;
}
.alabaster--bl-64 {
  border-left: 64px #f7f7f7 solid !important;
}
.alabaster--bb-64 {
  border-bottom: 64px #f7f7f7 solid !important;
}
.alabaster--by-64 {
  border-top: 64px #f7f7f7 solid !important;
  border-bottom: 64px #f7f7f7 solid !important;
}
.alabaster--bx-64 {
  border-right: 64px #f7f7f7 solid !important;
  border-left: 64px #f7f7f7 solid !important;
}
.alabaster--ba-65 {
  border: 65px #f7f7f7 solid !important;
}
.alabaster--bt-65 {
  border-top: 65px #f7f7f7 solid !important;
}
.alabaster--br-65 {
  border-right: 65px #f7f7f7 solid !important;
}
.alabaster--bl-65 {
  border-left: 65px #f7f7f7 solid !important;
}
.alabaster--bb-65 {
  border-bottom: 65px #f7f7f7 solid !important;
}
.alabaster--by-65 {
  border-top: 65px #f7f7f7 solid !important;
  border-bottom: 65px #f7f7f7 solid !important;
}
.alabaster--bx-65 {
  border-right: 65px #f7f7f7 solid !important;
  border-left: 65px #f7f7f7 solid !important;
}
.alabaster--ba-66 {
  border: 66px #f7f7f7 solid !important;
}
.alabaster--bt-66 {
  border-top: 66px #f7f7f7 solid !important;
}
.alabaster--br-66 {
  border-right: 66px #f7f7f7 solid !important;
}
.alabaster--bl-66 {
  border-left: 66px #f7f7f7 solid !important;
}
.alabaster--bb-66 {
  border-bottom: 66px #f7f7f7 solid !important;
}
.alabaster--by-66 {
  border-top: 66px #f7f7f7 solid !important;
  border-bottom: 66px #f7f7f7 solid !important;
}
.alabaster--bx-66 {
  border-right: 66px #f7f7f7 solid !important;
  border-left: 66px #f7f7f7 solid !important;
}
.alabaster--ba-67 {
  border: 67px #f7f7f7 solid !important;
}
.alabaster--bt-67 {
  border-top: 67px #f7f7f7 solid !important;
}
.alabaster--br-67 {
  border-right: 67px #f7f7f7 solid !important;
}
.alabaster--bl-67 {
  border-left: 67px #f7f7f7 solid !important;
}
.alabaster--bb-67 {
  border-bottom: 67px #f7f7f7 solid !important;
}
.alabaster--by-67 {
  border-top: 67px #f7f7f7 solid !important;
  border-bottom: 67px #f7f7f7 solid !important;
}
.alabaster--bx-67 {
  border-right: 67px #f7f7f7 solid !important;
  border-left: 67px #f7f7f7 solid !important;
}
.alabaster--ba-68 {
  border: 68px #f7f7f7 solid !important;
}
.alabaster--bt-68 {
  border-top: 68px #f7f7f7 solid !important;
}
.alabaster--br-68 {
  border-right: 68px #f7f7f7 solid !important;
}
.alabaster--bl-68 {
  border-left: 68px #f7f7f7 solid !important;
}
.alabaster--bb-68 {
  border-bottom: 68px #f7f7f7 solid !important;
}
.alabaster--by-68 {
  border-top: 68px #f7f7f7 solid !important;
  border-bottom: 68px #f7f7f7 solid !important;
}
.alabaster--bx-68 {
  border-right: 68px #f7f7f7 solid !important;
  border-left: 68px #f7f7f7 solid !important;
}
.alabaster--ba-69 {
  border: 69px #f7f7f7 solid !important;
}
.alabaster--bt-69 {
  border-top: 69px #f7f7f7 solid !important;
}
.alabaster--br-69 {
  border-right: 69px #f7f7f7 solid !important;
}
.alabaster--bl-69 {
  border-left: 69px #f7f7f7 solid !important;
}
.alabaster--bb-69 {
  border-bottom: 69px #f7f7f7 solid !important;
}
.alabaster--by-69 {
  border-top: 69px #f7f7f7 solid !important;
  border-bottom: 69px #f7f7f7 solid !important;
}
.alabaster--bx-69 {
  border-right: 69px #f7f7f7 solid !important;
  border-left: 69px #f7f7f7 solid !important;
}
.alabaster--ba-70 {
  border: 70px #f7f7f7 solid !important;
}
.alabaster--bt-70 {
  border-top: 70px #f7f7f7 solid !important;
}
.alabaster--br-70 {
  border-right: 70px #f7f7f7 solid !important;
}
.alabaster--bl-70 {
  border-left: 70px #f7f7f7 solid !important;
}
.alabaster--bb-70 {
  border-bottom: 70px #f7f7f7 solid !important;
}
.alabaster--by-70 {
  border-top: 70px #f7f7f7 solid !important;
  border-bottom: 70px #f7f7f7 solid !important;
}
.alabaster--bx-70 {
  border-right: 70px #f7f7f7 solid !important;
  border-left: 70px #f7f7f7 solid !important;
}
.alabaster--ba-71 {
  border: 71px #f7f7f7 solid !important;
}
.alabaster--bt-71 {
  border-top: 71px #f7f7f7 solid !important;
}
.alabaster--br-71 {
  border-right: 71px #f7f7f7 solid !important;
}
.alabaster--bl-71 {
  border-left: 71px #f7f7f7 solid !important;
}
.alabaster--bb-71 {
  border-bottom: 71px #f7f7f7 solid !important;
}
.alabaster--by-71 {
  border-top: 71px #f7f7f7 solid !important;
  border-bottom: 71px #f7f7f7 solid !important;
}
.alabaster--bx-71 {
  border-right: 71px #f7f7f7 solid !important;
  border-left: 71px #f7f7f7 solid !important;
}
.alabaster--ba-72 {
  border: 72px #f7f7f7 solid !important;
}
.alabaster--bt-72 {
  border-top: 72px #f7f7f7 solid !important;
}
.alabaster--br-72 {
  border-right: 72px #f7f7f7 solid !important;
}
.alabaster--bl-72 {
  border-left: 72px #f7f7f7 solid !important;
}
.alabaster--bb-72 {
  border-bottom: 72px #f7f7f7 solid !important;
}
.alabaster--by-72 {
  border-top: 72px #f7f7f7 solid !important;
  border-bottom: 72px #f7f7f7 solid !important;
}
.alabaster--bx-72 {
  border-right: 72px #f7f7f7 solid !important;
  border-left: 72px #f7f7f7 solid !important;
}
.alabaster--ba-73 {
  border: 73px #f7f7f7 solid !important;
}
.alabaster--bt-73 {
  border-top: 73px #f7f7f7 solid !important;
}
.alabaster--br-73 {
  border-right: 73px #f7f7f7 solid !important;
}
.alabaster--bl-73 {
  border-left: 73px #f7f7f7 solid !important;
}
.alabaster--bb-73 {
  border-bottom: 73px #f7f7f7 solid !important;
}
.alabaster--by-73 {
  border-top: 73px #f7f7f7 solid !important;
  border-bottom: 73px #f7f7f7 solid !important;
}
.alabaster--bx-73 {
  border-right: 73px #f7f7f7 solid !important;
  border-left: 73px #f7f7f7 solid !important;
}
.alabaster--ba-74 {
  border: 74px #f7f7f7 solid !important;
}
.alabaster--bt-74 {
  border-top: 74px #f7f7f7 solid !important;
}
.alabaster--br-74 {
  border-right: 74px #f7f7f7 solid !important;
}
.alabaster--bl-74 {
  border-left: 74px #f7f7f7 solid !important;
}
.alabaster--bb-74 {
  border-bottom: 74px #f7f7f7 solid !important;
}
.alabaster--by-74 {
  border-top: 74px #f7f7f7 solid !important;
  border-bottom: 74px #f7f7f7 solid !important;
}
.alabaster--bx-74 {
  border-right: 74px #f7f7f7 solid !important;
  border-left: 74px #f7f7f7 solid !important;
}
.alabaster--ba-75 {
  border: 75px #f7f7f7 solid !important;
}
.alabaster--bt-75 {
  border-top: 75px #f7f7f7 solid !important;
}
.alabaster--br-75 {
  border-right: 75px #f7f7f7 solid !important;
}
.alabaster--bl-75 {
  border-left: 75px #f7f7f7 solid !important;
}
.alabaster--bb-75 {
  border-bottom: 75px #f7f7f7 solid !important;
}
.alabaster--by-75 {
  border-top: 75px #f7f7f7 solid !important;
  border-bottom: 75px #f7f7f7 solid !important;
}
.alabaster--bx-75 {
  border-right: 75px #f7f7f7 solid !important;
  border-left: 75px #f7f7f7 solid !important;
}
.alabaster--ba-76 {
  border: 76px #f7f7f7 solid !important;
}
.alabaster--bt-76 {
  border-top: 76px #f7f7f7 solid !important;
}
.alabaster--br-76 {
  border-right: 76px #f7f7f7 solid !important;
}
.alabaster--bl-76 {
  border-left: 76px #f7f7f7 solid !important;
}
.alabaster--bb-76 {
  border-bottom: 76px #f7f7f7 solid !important;
}
.alabaster--by-76 {
  border-top: 76px #f7f7f7 solid !important;
  border-bottom: 76px #f7f7f7 solid !important;
}
.alabaster--bx-76 {
  border-right: 76px #f7f7f7 solid !important;
  border-left: 76px #f7f7f7 solid !important;
}
.alabaster--ba-77 {
  border: 77px #f7f7f7 solid !important;
}
.alabaster--bt-77 {
  border-top: 77px #f7f7f7 solid !important;
}
.alabaster--br-77 {
  border-right: 77px #f7f7f7 solid !important;
}
.alabaster--bl-77 {
  border-left: 77px #f7f7f7 solid !important;
}
.alabaster--bb-77 {
  border-bottom: 77px #f7f7f7 solid !important;
}
.alabaster--by-77 {
  border-top: 77px #f7f7f7 solid !important;
  border-bottom: 77px #f7f7f7 solid !important;
}
.alabaster--bx-77 {
  border-right: 77px #f7f7f7 solid !important;
  border-left: 77px #f7f7f7 solid !important;
}
.alabaster--ba-78 {
  border: 78px #f7f7f7 solid !important;
}
.alabaster--bt-78 {
  border-top: 78px #f7f7f7 solid !important;
}
.alabaster--br-78 {
  border-right: 78px #f7f7f7 solid !important;
}
.alabaster--bl-78 {
  border-left: 78px #f7f7f7 solid !important;
}
.alabaster--bb-78 {
  border-bottom: 78px #f7f7f7 solid !important;
}
.alabaster--by-78 {
  border-top: 78px #f7f7f7 solid !important;
  border-bottom: 78px #f7f7f7 solid !important;
}
.alabaster--bx-78 {
  border-right: 78px #f7f7f7 solid !important;
  border-left: 78px #f7f7f7 solid !important;
}
.alabaster--ba-79 {
  border: 79px #f7f7f7 solid !important;
}
.alabaster--bt-79 {
  border-top: 79px #f7f7f7 solid !important;
}
.alabaster--br-79 {
  border-right: 79px #f7f7f7 solid !important;
}
.alabaster--bl-79 {
  border-left: 79px #f7f7f7 solid !important;
}
.alabaster--bb-79 {
  border-bottom: 79px #f7f7f7 solid !important;
}
.alabaster--by-79 {
  border-top: 79px #f7f7f7 solid !important;
  border-bottom: 79px #f7f7f7 solid !important;
}
.alabaster--bx-79 {
  border-right: 79px #f7f7f7 solid !important;
  border-left: 79px #f7f7f7 solid !important;
}
.alabaster--ba-80 {
  border: 80px #f7f7f7 solid !important;
}
.alabaster--bt-80 {
  border-top: 80px #f7f7f7 solid !important;
}
.alabaster--br-80 {
  border-right: 80px #f7f7f7 solid !important;
}
.alabaster--bl-80 {
  border-left: 80px #f7f7f7 solid !important;
}
.alabaster--bb-80 {
  border-bottom: 80px #f7f7f7 solid !important;
}
.alabaster--by-80 {
  border-top: 80px #f7f7f7 solid !important;
  border-bottom: 80px #f7f7f7 solid !important;
}
.alabaster--bx-80 {
  border-right: 80px #f7f7f7 solid !important;
  border-left: 80px #f7f7f7 solid !important;
}
.alabaster--ba-81 {
  border: 81px #f7f7f7 solid !important;
}
.alabaster--bt-81 {
  border-top: 81px #f7f7f7 solid !important;
}
.alabaster--br-81 {
  border-right: 81px #f7f7f7 solid !important;
}
.alabaster--bl-81 {
  border-left: 81px #f7f7f7 solid !important;
}
.alabaster--bb-81 {
  border-bottom: 81px #f7f7f7 solid !important;
}
.alabaster--by-81 {
  border-top: 81px #f7f7f7 solid !important;
  border-bottom: 81px #f7f7f7 solid !important;
}
.alabaster--bx-81 {
  border-right: 81px #f7f7f7 solid !important;
  border-left: 81px #f7f7f7 solid !important;
}
.alabaster--ba-82 {
  border: 82px #f7f7f7 solid !important;
}
.alabaster--bt-82 {
  border-top: 82px #f7f7f7 solid !important;
}
.alabaster--br-82 {
  border-right: 82px #f7f7f7 solid !important;
}
.alabaster--bl-82 {
  border-left: 82px #f7f7f7 solid !important;
}
.alabaster--bb-82 {
  border-bottom: 82px #f7f7f7 solid !important;
}
.alabaster--by-82 {
  border-top: 82px #f7f7f7 solid !important;
  border-bottom: 82px #f7f7f7 solid !important;
}
.alabaster--bx-82 {
  border-right: 82px #f7f7f7 solid !important;
  border-left: 82px #f7f7f7 solid !important;
}
.alabaster--ba-83 {
  border: 83px #f7f7f7 solid !important;
}
.alabaster--bt-83 {
  border-top: 83px #f7f7f7 solid !important;
}
.alabaster--br-83 {
  border-right: 83px #f7f7f7 solid !important;
}
.alabaster--bl-83 {
  border-left: 83px #f7f7f7 solid !important;
}
.alabaster--bb-83 {
  border-bottom: 83px #f7f7f7 solid !important;
}
.alabaster--by-83 {
  border-top: 83px #f7f7f7 solid !important;
  border-bottom: 83px #f7f7f7 solid !important;
}
.alabaster--bx-83 {
  border-right: 83px #f7f7f7 solid !important;
  border-left: 83px #f7f7f7 solid !important;
}
.alabaster--ba-84 {
  border: 84px #f7f7f7 solid !important;
}
.alabaster--bt-84 {
  border-top: 84px #f7f7f7 solid !important;
}
.alabaster--br-84 {
  border-right: 84px #f7f7f7 solid !important;
}
.alabaster--bl-84 {
  border-left: 84px #f7f7f7 solid !important;
}
.alabaster--bb-84 {
  border-bottom: 84px #f7f7f7 solid !important;
}
.alabaster--by-84 {
  border-top: 84px #f7f7f7 solid !important;
  border-bottom: 84px #f7f7f7 solid !important;
}
.alabaster--bx-84 {
  border-right: 84px #f7f7f7 solid !important;
  border-left: 84px #f7f7f7 solid !important;
}
.alabaster--ba-85 {
  border: 85px #f7f7f7 solid !important;
}
.alabaster--bt-85 {
  border-top: 85px #f7f7f7 solid !important;
}
.alabaster--br-85 {
  border-right: 85px #f7f7f7 solid !important;
}
.alabaster--bl-85 {
  border-left: 85px #f7f7f7 solid !important;
}
.alabaster--bb-85 {
  border-bottom: 85px #f7f7f7 solid !important;
}
.alabaster--by-85 {
  border-top: 85px #f7f7f7 solid !important;
  border-bottom: 85px #f7f7f7 solid !important;
}
.alabaster--bx-85 {
  border-right: 85px #f7f7f7 solid !important;
  border-left: 85px #f7f7f7 solid !important;
}
.alabaster--ba-86 {
  border: 86px #f7f7f7 solid !important;
}
.alabaster--bt-86 {
  border-top: 86px #f7f7f7 solid !important;
}
.alabaster--br-86 {
  border-right: 86px #f7f7f7 solid !important;
}
.alabaster--bl-86 {
  border-left: 86px #f7f7f7 solid !important;
}
.alabaster--bb-86 {
  border-bottom: 86px #f7f7f7 solid !important;
}
.alabaster--by-86 {
  border-top: 86px #f7f7f7 solid !important;
  border-bottom: 86px #f7f7f7 solid !important;
}
.alabaster--bx-86 {
  border-right: 86px #f7f7f7 solid !important;
  border-left: 86px #f7f7f7 solid !important;
}
.alabaster--ba-87 {
  border: 87px #f7f7f7 solid !important;
}
.alabaster--bt-87 {
  border-top: 87px #f7f7f7 solid !important;
}
.alabaster--br-87 {
  border-right: 87px #f7f7f7 solid !important;
}
.alabaster--bl-87 {
  border-left: 87px #f7f7f7 solid !important;
}
.alabaster--bb-87 {
  border-bottom: 87px #f7f7f7 solid !important;
}
.alabaster--by-87 {
  border-top: 87px #f7f7f7 solid !important;
  border-bottom: 87px #f7f7f7 solid !important;
}
.alabaster--bx-87 {
  border-right: 87px #f7f7f7 solid !important;
  border-left: 87px #f7f7f7 solid !important;
}
.alabaster--ba-88 {
  border: 88px #f7f7f7 solid !important;
}
.alabaster--bt-88 {
  border-top: 88px #f7f7f7 solid !important;
}
.alabaster--br-88 {
  border-right: 88px #f7f7f7 solid !important;
}
.alabaster--bl-88 {
  border-left: 88px #f7f7f7 solid !important;
}
.alabaster--bb-88 {
  border-bottom: 88px #f7f7f7 solid !important;
}
.alabaster--by-88 {
  border-top: 88px #f7f7f7 solid !important;
  border-bottom: 88px #f7f7f7 solid !important;
}
.alabaster--bx-88 {
  border-right: 88px #f7f7f7 solid !important;
  border-left: 88px #f7f7f7 solid !important;
}
.alabaster--ba-89 {
  border: 89px #f7f7f7 solid !important;
}
.alabaster--bt-89 {
  border-top: 89px #f7f7f7 solid !important;
}
.alabaster--br-89 {
  border-right: 89px #f7f7f7 solid !important;
}
.alabaster--bl-89 {
  border-left: 89px #f7f7f7 solid !important;
}
.alabaster--bb-89 {
  border-bottom: 89px #f7f7f7 solid !important;
}
.alabaster--by-89 {
  border-top: 89px #f7f7f7 solid !important;
  border-bottom: 89px #f7f7f7 solid !important;
}
.alabaster--bx-89 {
  border-right: 89px #f7f7f7 solid !important;
  border-left: 89px #f7f7f7 solid !important;
}
.alabaster--ba-90 {
  border: 90px #f7f7f7 solid !important;
}
.alabaster--bt-90 {
  border-top: 90px #f7f7f7 solid !important;
}
.alabaster--br-90 {
  border-right: 90px #f7f7f7 solid !important;
}
.alabaster--bl-90 {
  border-left: 90px #f7f7f7 solid !important;
}
.alabaster--bb-90 {
  border-bottom: 90px #f7f7f7 solid !important;
}
.alabaster--by-90 {
  border-top: 90px #f7f7f7 solid !important;
  border-bottom: 90px #f7f7f7 solid !important;
}
.alabaster--bx-90 {
  border-right: 90px #f7f7f7 solid !important;
  border-left: 90px #f7f7f7 solid !important;
}
.alabaster--ba-91 {
  border: 91px #f7f7f7 solid !important;
}
.alabaster--bt-91 {
  border-top: 91px #f7f7f7 solid !important;
}
.alabaster--br-91 {
  border-right: 91px #f7f7f7 solid !important;
}
.alabaster--bl-91 {
  border-left: 91px #f7f7f7 solid !important;
}
.alabaster--bb-91 {
  border-bottom: 91px #f7f7f7 solid !important;
}
.alabaster--by-91 {
  border-top: 91px #f7f7f7 solid !important;
  border-bottom: 91px #f7f7f7 solid !important;
}
.alabaster--bx-91 {
  border-right: 91px #f7f7f7 solid !important;
  border-left: 91px #f7f7f7 solid !important;
}
.alabaster--ba-92 {
  border: 92px #f7f7f7 solid !important;
}
.alabaster--bt-92 {
  border-top: 92px #f7f7f7 solid !important;
}
.alabaster--br-92 {
  border-right: 92px #f7f7f7 solid !important;
}
.alabaster--bl-92 {
  border-left: 92px #f7f7f7 solid !important;
}
.alabaster--bb-92 {
  border-bottom: 92px #f7f7f7 solid !important;
}
.alabaster--by-92 {
  border-top: 92px #f7f7f7 solid !important;
  border-bottom: 92px #f7f7f7 solid !important;
}
.alabaster--bx-92 {
  border-right: 92px #f7f7f7 solid !important;
  border-left: 92px #f7f7f7 solid !important;
}
.alabaster--ba-93 {
  border: 93px #f7f7f7 solid !important;
}
.alabaster--bt-93 {
  border-top: 93px #f7f7f7 solid !important;
}
.alabaster--br-93 {
  border-right: 93px #f7f7f7 solid !important;
}
.alabaster--bl-93 {
  border-left: 93px #f7f7f7 solid !important;
}
.alabaster--bb-93 {
  border-bottom: 93px #f7f7f7 solid !important;
}
.alabaster--by-93 {
  border-top: 93px #f7f7f7 solid !important;
  border-bottom: 93px #f7f7f7 solid !important;
}
.alabaster--bx-93 {
  border-right: 93px #f7f7f7 solid !important;
  border-left: 93px #f7f7f7 solid !important;
}
.alabaster--ba-94 {
  border: 94px #f7f7f7 solid !important;
}
.alabaster--bt-94 {
  border-top: 94px #f7f7f7 solid !important;
}
.alabaster--br-94 {
  border-right: 94px #f7f7f7 solid !important;
}
.alabaster--bl-94 {
  border-left: 94px #f7f7f7 solid !important;
}
.alabaster--bb-94 {
  border-bottom: 94px #f7f7f7 solid !important;
}
.alabaster--by-94 {
  border-top: 94px #f7f7f7 solid !important;
  border-bottom: 94px #f7f7f7 solid !important;
}
.alabaster--bx-94 {
  border-right: 94px #f7f7f7 solid !important;
  border-left: 94px #f7f7f7 solid !important;
}
.alabaster--ba-95 {
  border: 95px #f7f7f7 solid !important;
}
.alabaster--bt-95 {
  border-top: 95px #f7f7f7 solid !important;
}
.alabaster--br-95 {
  border-right: 95px #f7f7f7 solid !important;
}
.alabaster--bl-95 {
  border-left: 95px #f7f7f7 solid !important;
}
.alabaster--bb-95 {
  border-bottom: 95px #f7f7f7 solid !important;
}
.alabaster--by-95 {
  border-top: 95px #f7f7f7 solid !important;
  border-bottom: 95px #f7f7f7 solid !important;
}
.alabaster--bx-95 {
  border-right: 95px #f7f7f7 solid !important;
  border-left: 95px #f7f7f7 solid !important;
}
.alabaster--ba-96 {
  border: 96px #f7f7f7 solid !important;
}
.alabaster--bt-96 {
  border-top: 96px #f7f7f7 solid !important;
}
.alabaster--br-96 {
  border-right: 96px #f7f7f7 solid !important;
}
.alabaster--bl-96 {
  border-left: 96px #f7f7f7 solid !important;
}
.alabaster--bb-96 {
  border-bottom: 96px #f7f7f7 solid !important;
}
.alabaster--by-96 {
  border-top: 96px #f7f7f7 solid !important;
  border-bottom: 96px #f7f7f7 solid !important;
}
.alabaster--bx-96 {
  border-right: 96px #f7f7f7 solid !important;
  border-left: 96px #f7f7f7 solid !important;
}
.alabaster--ba-97 {
  border: 97px #f7f7f7 solid !important;
}
.alabaster--bt-97 {
  border-top: 97px #f7f7f7 solid !important;
}
.alabaster--br-97 {
  border-right: 97px #f7f7f7 solid !important;
}
.alabaster--bl-97 {
  border-left: 97px #f7f7f7 solid !important;
}
.alabaster--bb-97 {
  border-bottom: 97px #f7f7f7 solid !important;
}
.alabaster--by-97 {
  border-top: 97px #f7f7f7 solid !important;
  border-bottom: 97px #f7f7f7 solid !important;
}
.alabaster--bx-97 {
  border-right: 97px #f7f7f7 solid !important;
  border-left: 97px #f7f7f7 solid !important;
}
.alabaster--ba-98 {
  border: 98px #f7f7f7 solid !important;
}
.alabaster--bt-98 {
  border-top: 98px #f7f7f7 solid !important;
}
.alabaster--br-98 {
  border-right: 98px #f7f7f7 solid !important;
}
.alabaster--bl-98 {
  border-left: 98px #f7f7f7 solid !important;
}
.alabaster--bb-98 {
  border-bottom: 98px #f7f7f7 solid !important;
}
.alabaster--by-98 {
  border-top: 98px #f7f7f7 solid !important;
  border-bottom: 98px #f7f7f7 solid !important;
}
.alabaster--bx-98 {
  border-right: 98px #f7f7f7 solid !important;
  border-left: 98px #f7f7f7 solid !important;
}
.alabaster--ba-99 {
  border: 99px #f7f7f7 solid !important;
}
.alabaster--bt-99 {
  border-top: 99px #f7f7f7 solid !important;
}
.alabaster--br-99 {
  border-right: 99px #f7f7f7 solid !important;
}
.alabaster--bl-99 {
  border-left: 99px #f7f7f7 solid !important;
}
.alabaster--bb-99 {
  border-bottom: 99px #f7f7f7 solid !important;
}
.alabaster--by-99 {
  border-top: 99px #f7f7f7 solid !important;
  border-bottom: 99px #f7f7f7 solid !important;
}
.alabaster--bx-99 {
  border-right: 99px #f7f7f7 solid !important;
  border-left: 99px #f7f7f7 solid !important;
}
.alabaster--ba-100 {
  border: 100px #f7f7f7 solid !important;
}
.alabaster--bt-100 {
  border-top: 100px #f7f7f7 solid !important;
}
.alabaster--br-100 {
  border-right: 100px #f7f7f7 solid !important;
}
.alabaster--bl-100 {
  border-left: 100px #f7f7f7 solid !important;
}
.alabaster--bb-100 {
  border-bottom: 100px #f7f7f7 solid !important;
}
.alabaster--by-100 {
  border-top: 100px #f7f7f7 solid !important;
  border-bottom: 100px #f7f7f7 solid !important;
}
.alabaster--bx-100 {
  border-right: 100px #f7f7f7 solid !important;
  border-left: 100px #f7f7f7 solid !important;
}
.fern--ba-1 {
  border: 1px #66bb6a solid !important;
}
.fern--bt-1 {
  border-top: 1px #66bb6a solid !important;
}
.fern--br-1 {
  border-right: 1px #66bb6a solid !important;
}
.fern--bl-1 {
  border-left: 1px #66bb6a solid !important;
}
.fern--bb-1 {
  border-bottom: 1px #66bb6a solid !important;
}
.fern--by-1 {
  border-top: 1px #66bb6a solid !important;
  border-bottom: 1px #66bb6a solid !important;
}
.fern--bx-1 {
  border-right: 1px #66bb6a solid !important;
  border-left: 1px #66bb6a solid !important;
}
.fern--ba-2 {
  border: 2px #66bb6a solid !important;
}
.fern--bt-2 {
  border-top: 2px #66bb6a solid !important;
}
.fern--br-2 {
  border-right: 2px #66bb6a solid !important;
}
.fern--bl-2 {
  border-left: 2px #66bb6a solid !important;
}
.fern--bb-2 {
  border-bottom: 2px #66bb6a solid !important;
}
.fern--by-2 {
  border-top: 2px #66bb6a solid !important;
  border-bottom: 2px #66bb6a solid !important;
}
.fern--bx-2 {
  border-right: 2px #66bb6a solid !important;
  border-left: 2px #66bb6a solid !important;
}
.fern--ba-3 {
  border: 3px #66bb6a solid !important;
}
.fern--bt-3 {
  border-top: 3px #66bb6a solid !important;
}
.fern--br-3 {
  border-right: 3px #66bb6a solid !important;
}
.fern--bl-3 {
  border-left: 3px #66bb6a solid !important;
}
.fern--bb-3 {
  border-bottom: 3px #66bb6a solid !important;
}
.fern--by-3 {
  border-top: 3px #66bb6a solid !important;
  border-bottom: 3px #66bb6a solid !important;
}
.fern--bx-3 {
  border-right: 3px #66bb6a solid !important;
  border-left: 3px #66bb6a solid !important;
}
.fern--ba-4 {
  border: 4px #66bb6a solid !important;
}
.fern--bt-4 {
  border-top: 4px #66bb6a solid !important;
}
.fern--br-4 {
  border-right: 4px #66bb6a solid !important;
}
.fern--bl-4 {
  border-left: 4px #66bb6a solid !important;
}
.fern--bb-4 {
  border-bottom: 4px #66bb6a solid !important;
}
.fern--by-4 {
  border-top: 4px #66bb6a solid !important;
  border-bottom: 4px #66bb6a solid !important;
}
.fern--bx-4 {
  border-right: 4px #66bb6a solid !important;
  border-left: 4px #66bb6a solid !important;
}
.fern--ba-5 {
  border: 5px #66bb6a solid !important;
}
.fern--bt-5 {
  border-top: 5px #66bb6a solid !important;
}
.fern--br-5 {
  border-right: 5px #66bb6a solid !important;
}
.fern--bl-5 {
  border-left: 5px #66bb6a solid !important;
}
.fern--bb-5 {
  border-bottom: 5px #66bb6a solid !important;
}
.fern--by-5 {
  border-top: 5px #66bb6a solid !important;
  border-bottom: 5px #66bb6a solid !important;
}
.fern--bx-5 {
  border-right: 5px #66bb6a solid !important;
  border-left: 5px #66bb6a solid !important;
}
.fern--ba-6 {
  border: 6px #66bb6a solid !important;
}
.fern--bt-6 {
  border-top: 6px #66bb6a solid !important;
}
.fern--br-6 {
  border-right: 6px #66bb6a solid !important;
}
.fern--bl-6 {
  border-left: 6px #66bb6a solid !important;
}
.fern--bb-6 {
  border-bottom: 6px #66bb6a solid !important;
}
.fern--by-6 {
  border-top: 6px #66bb6a solid !important;
  border-bottom: 6px #66bb6a solid !important;
}
.fern--bx-6 {
  border-right: 6px #66bb6a solid !important;
  border-left: 6px #66bb6a solid !important;
}
.fern--ba-7 {
  border: 7px #66bb6a solid !important;
}
.fern--bt-7 {
  border-top: 7px #66bb6a solid !important;
}
.fern--br-7 {
  border-right: 7px #66bb6a solid !important;
}
.fern--bl-7 {
  border-left: 7px #66bb6a solid !important;
}
.fern--bb-7 {
  border-bottom: 7px #66bb6a solid !important;
}
.fern--by-7 {
  border-top: 7px #66bb6a solid !important;
  border-bottom: 7px #66bb6a solid !important;
}
.fern--bx-7 {
  border-right: 7px #66bb6a solid !important;
  border-left: 7px #66bb6a solid !important;
}
.fern--ba-8 {
  border: 8px #66bb6a solid !important;
}
.fern--bt-8 {
  border-top: 8px #66bb6a solid !important;
}
.fern--br-8 {
  border-right: 8px #66bb6a solid !important;
}
.fern--bl-8 {
  border-left: 8px #66bb6a solid !important;
}
.fern--bb-8 {
  border-bottom: 8px #66bb6a solid !important;
}
.fern--by-8 {
  border-top: 8px #66bb6a solid !important;
  border-bottom: 8px #66bb6a solid !important;
}
.fern--bx-8 {
  border-right: 8px #66bb6a solid !important;
  border-left: 8px #66bb6a solid !important;
}
.fern--ba-9 {
  border: 9px #66bb6a solid !important;
}
.fern--bt-9 {
  border-top: 9px #66bb6a solid !important;
}
.fern--br-9 {
  border-right: 9px #66bb6a solid !important;
}
.fern--bl-9 {
  border-left: 9px #66bb6a solid !important;
}
.fern--bb-9 {
  border-bottom: 9px #66bb6a solid !important;
}
.fern--by-9 {
  border-top: 9px #66bb6a solid !important;
  border-bottom: 9px #66bb6a solid !important;
}
.fern--bx-9 {
  border-right: 9px #66bb6a solid !important;
  border-left: 9px #66bb6a solid !important;
}
.fern--ba-10 {
  border: 10px #66bb6a solid !important;
}
.fern--bt-10 {
  border-top: 10px #66bb6a solid !important;
}
.fern--br-10 {
  border-right: 10px #66bb6a solid !important;
}
.fern--bl-10 {
  border-left: 10px #66bb6a solid !important;
}
.fern--bb-10 {
  border-bottom: 10px #66bb6a solid !important;
}
.fern--by-10 {
  border-top: 10px #66bb6a solid !important;
  border-bottom: 10px #66bb6a solid !important;
}
.fern--bx-10 {
  border-right: 10px #66bb6a solid !important;
  border-left: 10px #66bb6a solid !important;
}
.fern--ba-11 {
  border: 11px #66bb6a solid !important;
}
.fern--bt-11 {
  border-top: 11px #66bb6a solid !important;
}
.fern--br-11 {
  border-right: 11px #66bb6a solid !important;
}
.fern--bl-11 {
  border-left: 11px #66bb6a solid !important;
}
.fern--bb-11 {
  border-bottom: 11px #66bb6a solid !important;
}
.fern--by-11 {
  border-top: 11px #66bb6a solid !important;
  border-bottom: 11px #66bb6a solid !important;
}
.fern--bx-11 {
  border-right: 11px #66bb6a solid !important;
  border-left: 11px #66bb6a solid !important;
}
.fern--ba-12 {
  border: 12px #66bb6a solid !important;
}
.fern--bt-12 {
  border-top: 12px #66bb6a solid !important;
}
.fern--br-12 {
  border-right: 12px #66bb6a solid !important;
}
.fern--bl-12 {
  border-left: 12px #66bb6a solid !important;
}
.fern--bb-12 {
  border-bottom: 12px #66bb6a solid !important;
}
.fern--by-12 {
  border-top: 12px #66bb6a solid !important;
  border-bottom: 12px #66bb6a solid !important;
}
.fern--bx-12 {
  border-right: 12px #66bb6a solid !important;
  border-left: 12px #66bb6a solid !important;
}
.fern--ba-13 {
  border: 13px #66bb6a solid !important;
}
.fern--bt-13 {
  border-top: 13px #66bb6a solid !important;
}
.fern--br-13 {
  border-right: 13px #66bb6a solid !important;
}
.fern--bl-13 {
  border-left: 13px #66bb6a solid !important;
}
.fern--bb-13 {
  border-bottom: 13px #66bb6a solid !important;
}
.fern--by-13 {
  border-top: 13px #66bb6a solid !important;
  border-bottom: 13px #66bb6a solid !important;
}
.fern--bx-13 {
  border-right: 13px #66bb6a solid !important;
  border-left: 13px #66bb6a solid !important;
}
.fern--ba-14 {
  border: 14px #66bb6a solid !important;
}
.fern--bt-14 {
  border-top: 14px #66bb6a solid !important;
}
.fern--br-14 {
  border-right: 14px #66bb6a solid !important;
}
.fern--bl-14 {
  border-left: 14px #66bb6a solid !important;
}
.fern--bb-14 {
  border-bottom: 14px #66bb6a solid !important;
}
.fern--by-14 {
  border-top: 14px #66bb6a solid !important;
  border-bottom: 14px #66bb6a solid !important;
}
.fern--bx-14 {
  border-right: 14px #66bb6a solid !important;
  border-left: 14px #66bb6a solid !important;
}
.fern--ba-15 {
  border: 15px #66bb6a solid !important;
}
.fern--bt-15 {
  border-top: 15px #66bb6a solid !important;
}
.fern--br-15 {
  border-right: 15px #66bb6a solid !important;
}
.fern--bl-15 {
  border-left: 15px #66bb6a solid !important;
}
.fern--bb-15 {
  border-bottom: 15px #66bb6a solid !important;
}
.fern--by-15 {
  border-top: 15px #66bb6a solid !important;
  border-bottom: 15px #66bb6a solid !important;
}
.fern--bx-15 {
  border-right: 15px #66bb6a solid !important;
  border-left: 15px #66bb6a solid !important;
}
.fern--ba-16 {
  border: 16px #66bb6a solid !important;
}
.fern--bt-16 {
  border-top: 16px #66bb6a solid !important;
}
.fern--br-16 {
  border-right: 16px #66bb6a solid !important;
}
.fern--bl-16 {
  border-left: 16px #66bb6a solid !important;
}
.fern--bb-16 {
  border-bottom: 16px #66bb6a solid !important;
}
.fern--by-16 {
  border-top: 16px #66bb6a solid !important;
  border-bottom: 16px #66bb6a solid !important;
}
.fern--bx-16 {
  border-right: 16px #66bb6a solid !important;
  border-left: 16px #66bb6a solid !important;
}
.fern--ba-17 {
  border: 17px #66bb6a solid !important;
}
.fern--bt-17 {
  border-top: 17px #66bb6a solid !important;
}
.fern--br-17 {
  border-right: 17px #66bb6a solid !important;
}
.fern--bl-17 {
  border-left: 17px #66bb6a solid !important;
}
.fern--bb-17 {
  border-bottom: 17px #66bb6a solid !important;
}
.fern--by-17 {
  border-top: 17px #66bb6a solid !important;
  border-bottom: 17px #66bb6a solid !important;
}
.fern--bx-17 {
  border-right: 17px #66bb6a solid !important;
  border-left: 17px #66bb6a solid !important;
}
.fern--ba-18 {
  border: 18px #66bb6a solid !important;
}
.fern--bt-18 {
  border-top: 18px #66bb6a solid !important;
}
.fern--br-18 {
  border-right: 18px #66bb6a solid !important;
}
.fern--bl-18 {
  border-left: 18px #66bb6a solid !important;
}
.fern--bb-18 {
  border-bottom: 18px #66bb6a solid !important;
}
.fern--by-18 {
  border-top: 18px #66bb6a solid !important;
  border-bottom: 18px #66bb6a solid !important;
}
.fern--bx-18 {
  border-right: 18px #66bb6a solid !important;
  border-left: 18px #66bb6a solid !important;
}
.fern--ba-19 {
  border: 19px #66bb6a solid !important;
}
.fern--bt-19 {
  border-top: 19px #66bb6a solid !important;
}
.fern--br-19 {
  border-right: 19px #66bb6a solid !important;
}
.fern--bl-19 {
  border-left: 19px #66bb6a solid !important;
}
.fern--bb-19 {
  border-bottom: 19px #66bb6a solid !important;
}
.fern--by-19 {
  border-top: 19px #66bb6a solid !important;
  border-bottom: 19px #66bb6a solid !important;
}
.fern--bx-19 {
  border-right: 19px #66bb6a solid !important;
  border-left: 19px #66bb6a solid !important;
}
.fern--ba-20 {
  border: 20px #66bb6a solid !important;
}
.fern--bt-20 {
  border-top: 20px #66bb6a solid !important;
}
.fern--br-20 {
  border-right: 20px #66bb6a solid !important;
}
.fern--bl-20 {
  border-left: 20px #66bb6a solid !important;
}
.fern--bb-20 {
  border-bottom: 20px #66bb6a solid !important;
}
.fern--by-20 {
  border-top: 20px #66bb6a solid !important;
  border-bottom: 20px #66bb6a solid !important;
}
.fern--bx-20 {
  border-right: 20px #66bb6a solid !important;
  border-left: 20px #66bb6a solid !important;
}
.fern--ba-21 {
  border: 21px #66bb6a solid !important;
}
.fern--bt-21 {
  border-top: 21px #66bb6a solid !important;
}
.fern--br-21 {
  border-right: 21px #66bb6a solid !important;
}
.fern--bl-21 {
  border-left: 21px #66bb6a solid !important;
}
.fern--bb-21 {
  border-bottom: 21px #66bb6a solid !important;
}
.fern--by-21 {
  border-top: 21px #66bb6a solid !important;
  border-bottom: 21px #66bb6a solid !important;
}
.fern--bx-21 {
  border-right: 21px #66bb6a solid !important;
  border-left: 21px #66bb6a solid !important;
}
.fern--ba-22 {
  border: 22px #66bb6a solid !important;
}
.fern--bt-22 {
  border-top: 22px #66bb6a solid !important;
}
.fern--br-22 {
  border-right: 22px #66bb6a solid !important;
}
.fern--bl-22 {
  border-left: 22px #66bb6a solid !important;
}
.fern--bb-22 {
  border-bottom: 22px #66bb6a solid !important;
}
.fern--by-22 {
  border-top: 22px #66bb6a solid !important;
  border-bottom: 22px #66bb6a solid !important;
}
.fern--bx-22 {
  border-right: 22px #66bb6a solid !important;
  border-left: 22px #66bb6a solid !important;
}
.fern--ba-23 {
  border: 23px #66bb6a solid !important;
}
.fern--bt-23 {
  border-top: 23px #66bb6a solid !important;
}
.fern--br-23 {
  border-right: 23px #66bb6a solid !important;
}
.fern--bl-23 {
  border-left: 23px #66bb6a solid !important;
}
.fern--bb-23 {
  border-bottom: 23px #66bb6a solid !important;
}
.fern--by-23 {
  border-top: 23px #66bb6a solid !important;
  border-bottom: 23px #66bb6a solid !important;
}
.fern--bx-23 {
  border-right: 23px #66bb6a solid !important;
  border-left: 23px #66bb6a solid !important;
}
.fern--ba-24 {
  border: 24px #66bb6a solid !important;
}
.fern--bt-24 {
  border-top: 24px #66bb6a solid !important;
}
.fern--br-24 {
  border-right: 24px #66bb6a solid !important;
}
.fern--bl-24 {
  border-left: 24px #66bb6a solid !important;
}
.fern--bb-24 {
  border-bottom: 24px #66bb6a solid !important;
}
.fern--by-24 {
  border-top: 24px #66bb6a solid !important;
  border-bottom: 24px #66bb6a solid !important;
}
.fern--bx-24 {
  border-right: 24px #66bb6a solid !important;
  border-left: 24px #66bb6a solid !important;
}
.fern--ba-25 {
  border: 25px #66bb6a solid !important;
}
.fern--bt-25 {
  border-top: 25px #66bb6a solid !important;
}
.fern--br-25 {
  border-right: 25px #66bb6a solid !important;
}
.fern--bl-25 {
  border-left: 25px #66bb6a solid !important;
}
.fern--bb-25 {
  border-bottom: 25px #66bb6a solid !important;
}
.fern--by-25 {
  border-top: 25px #66bb6a solid !important;
  border-bottom: 25px #66bb6a solid !important;
}
.fern--bx-25 {
  border-right: 25px #66bb6a solid !important;
  border-left: 25px #66bb6a solid !important;
}
.fern--ba-26 {
  border: 26px #66bb6a solid !important;
}
.fern--bt-26 {
  border-top: 26px #66bb6a solid !important;
}
.fern--br-26 {
  border-right: 26px #66bb6a solid !important;
}
.fern--bl-26 {
  border-left: 26px #66bb6a solid !important;
}
.fern--bb-26 {
  border-bottom: 26px #66bb6a solid !important;
}
.fern--by-26 {
  border-top: 26px #66bb6a solid !important;
  border-bottom: 26px #66bb6a solid !important;
}
.fern--bx-26 {
  border-right: 26px #66bb6a solid !important;
  border-left: 26px #66bb6a solid !important;
}
.fern--ba-27 {
  border: 27px #66bb6a solid !important;
}
.fern--bt-27 {
  border-top: 27px #66bb6a solid !important;
}
.fern--br-27 {
  border-right: 27px #66bb6a solid !important;
}
.fern--bl-27 {
  border-left: 27px #66bb6a solid !important;
}
.fern--bb-27 {
  border-bottom: 27px #66bb6a solid !important;
}
.fern--by-27 {
  border-top: 27px #66bb6a solid !important;
  border-bottom: 27px #66bb6a solid !important;
}
.fern--bx-27 {
  border-right: 27px #66bb6a solid !important;
  border-left: 27px #66bb6a solid !important;
}
.fern--ba-28 {
  border: 28px #66bb6a solid !important;
}
.fern--bt-28 {
  border-top: 28px #66bb6a solid !important;
}
.fern--br-28 {
  border-right: 28px #66bb6a solid !important;
}
.fern--bl-28 {
  border-left: 28px #66bb6a solid !important;
}
.fern--bb-28 {
  border-bottom: 28px #66bb6a solid !important;
}
.fern--by-28 {
  border-top: 28px #66bb6a solid !important;
  border-bottom: 28px #66bb6a solid !important;
}
.fern--bx-28 {
  border-right: 28px #66bb6a solid !important;
  border-left: 28px #66bb6a solid !important;
}
.fern--ba-29 {
  border: 29px #66bb6a solid !important;
}
.fern--bt-29 {
  border-top: 29px #66bb6a solid !important;
}
.fern--br-29 {
  border-right: 29px #66bb6a solid !important;
}
.fern--bl-29 {
  border-left: 29px #66bb6a solid !important;
}
.fern--bb-29 {
  border-bottom: 29px #66bb6a solid !important;
}
.fern--by-29 {
  border-top: 29px #66bb6a solid !important;
  border-bottom: 29px #66bb6a solid !important;
}
.fern--bx-29 {
  border-right: 29px #66bb6a solid !important;
  border-left: 29px #66bb6a solid !important;
}
.fern--ba-30 {
  border: 30px #66bb6a solid !important;
}
.fern--bt-30 {
  border-top: 30px #66bb6a solid !important;
}
.fern--br-30 {
  border-right: 30px #66bb6a solid !important;
}
.fern--bl-30 {
  border-left: 30px #66bb6a solid !important;
}
.fern--bb-30 {
  border-bottom: 30px #66bb6a solid !important;
}
.fern--by-30 {
  border-top: 30px #66bb6a solid !important;
  border-bottom: 30px #66bb6a solid !important;
}
.fern--bx-30 {
  border-right: 30px #66bb6a solid !important;
  border-left: 30px #66bb6a solid !important;
}
.fern--ba-31 {
  border: 31px #66bb6a solid !important;
}
.fern--bt-31 {
  border-top: 31px #66bb6a solid !important;
}
.fern--br-31 {
  border-right: 31px #66bb6a solid !important;
}
.fern--bl-31 {
  border-left: 31px #66bb6a solid !important;
}
.fern--bb-31 {
  border-bottom: 31px #66bb6a solid !important;
}
.fern--by-31 {
  border-top: 31px #66bb6a solid !important;
  border-bottom: 31px #66bb6a solid !important;
}
.fern--bx-31 {
  border-right: 31px #66bb6a solid !important;
  border-left: 31px #66bb6a solid !important;
}
.fern--ba-32 {
  border: 32px #66bb6a solid !important;
}
.fern--bt-32 {
  border-top: 32px #66bb6a solid !important;
}
.fern--br-32 {
  border-right: 32px #66bb6a solid !important;
}
.fern--bl-32 {
  border-left: 32px #66bb6a solid !important;
}
.fern--bb-32 {
  border-bottom: 32px #66bb6a solid !important;
}
.fern--by-32 {
  border-top: 32px #66bb6a solid !important;
  border-bottom: 32px #66bb6a solid !important;
}
.fern--bx-32 {
  border-right: 32px #66bb6a solid !important;
  border-left: 32px #66bb6a solid !important;
}
.fern--ba-33 {
  border: 33px #66bb6a solid !important;
}
.fern--bt-33 {
  border-top: 33px #66bb6a solid !important;
}
.fern--br-33 {
  border-right: 33px #66bb6a solid !important;
}
.fern--bl-33 {
  border-left: 33px #66bb6a solid !important;
}
.fern--bb-33 {
  border-bottom: 33px #66bb6a solid !important;
}
.fern--by-33 {
  border-top: 33px #66bb6a solid !important;
  border-bottom: 33px #66bb6a solid !important;
}
.fern--bx-33 {
  border-right: 33px #66bb6a solid !important;
  border-left: 33px #66bb6a solid !important;
}
.fern--ba-34 {
  border: 34px #66bb6a solid !important;
}
.fern--bt-34 {
  border-top: 34px #66bb6a solid !important;
}
.fern--br-34 {
  border-right: 34px #66bb6a solid !important;
}
.fern--bl-34 {
  border-left: 34px #66bb6a solid !important;
}
.fern--bb-34 {
  border-bottom: 34px #66bb6a solid !important;
}
.fern--by-34 {
  border-top: 34px #66bb6a solid !important;
  border-bottom: 34px #66bb6a solid !important;
}
.fern--bx-34 {
  border-right: 34px #66bb6a solid !important;
  border-left: 34px #66bb6a solid !important;
}
.fern--ba-35 {
  border: 35px #66bb6a solid !important;
}
.fern--bt-35 {
  border-top: 35px #66bb6a solid !important;
}
.fern--br-35 {
  border-right: 35px #66bb6a solid !important;
}
.fern--bl-35 {
  border-left: 35px #66bb6a solid !important;
}
.fern--bb-35 {
  border-bottom: 35px #66bb6a solid !important;
}
.fern--by-35 {
  border-top: 35px #66bb6a solid !important;
  border-bottom: 35px #66bb6a solid !important;
}
.fern--bx-35 {
  border-right: 35px #66bb6a solid !important;
  border-left: 35px #66bb6a solid !important;
}
.fern--ba-36 {
  border: 36px #66bb6a solid !important;
}
.fern--bt-36 {
  border-top: 36px #66bb6a solid !important;
}
.fern--br-36 {
  border-right: 36px #66bb6a solid !important;
}
.fern--bl-36 {
  border-left: 36px #66bb6a solid !important;
}
.fern--bb-36 {
  border-bottom: 36px #66bb6a solid !important;
}
.fern--by-36 {
  border-top: 36px #66bb6a solid !important;
  border-bottom: 36px #66bb6a solid !important;
}
.fern--bx-36 {
  border-right: 36px #66bb6a solid !important;
  border-left: 36px #66bb6a solid !important;
}
.fern--ba-37 {
  border: 37px #66bb6a solid !important;
}
.fern--bt-37 {
  border-top: 37px #66bb6a solid !important;
}
.fern--br-37 {
  border-right: 37px #66bb6a solid !important;
}
.fern--bl-37 {
  border-left: 37px #66bb6a solid !important;
}
.fern--bb-37 {
  border-bottom: 37px #66bb6a solid !important;
}
.fern--by-37 {
  border-top: 37px #66bb6a solid !important;
  border-bottom: 37px #66bb6a solid !important;
}
.fern--bx-37 {
  border-right: 37px #66bb6a solid !important;
  border-left: 37px #66bb6a solid !important;
}
.fern--ba-38 {
  border: 38px #66bb6a solid !important;
}
.fern--bt-38 {
  border-top: 38px #66bb6a solid !important;
}
.fern--br-38 {
  border-right: 38px #66bb6a solid !important;
}
.fern--bl-38 {
  border-left: 38px #66bb6a solid !important;
}
.fern--bb-38 {
  border-bottom: 38px #66bb6a solid !important;
}
.fern--by-38 {
  border-top: 38px #66bb6a solid !important;
  border-bottom: 38px #66bb6a solid !important;
}
.fern--bx-38 {
  border-right: 38px #66bb6a solid !important;
  border-left: 38px #66bb6a solid !important;
}
.fern--ba-39 {
  border: 39px #66bb6a solid !important;
}
.fern--bt-39 {
  border-top: 39px #66bb6a solid !important;
}
.fern--br-39 {
  border-right: 39px #66bb6a solid !important;
}
.fern--bl-39 {
  border-left: 39px #66bb6a solid !important;
}
.fern--bb-39 {
  border-bottom: 39px #66bb6a solid !important;
}
.fern--by-39 {
  border-top: 39px #66bb6a solid !important;
  border-bottom: 39px #66bb6a solid !important;
}
.fern--bx-39 {
  border-right: 39px #66bb6a solid !important;
  border-left: 39px #66bb6a solid !important;
}
.fern--ba-40 {
  border: 40px #66bb6a solid !important;
}
.fern--bt-40 {
  border-top: 40px #66bb6a solid !important;
}
.fern--br-40 {
  border-right: 40px #66bb6a solid !important;
}
.fern--bl-40 {
  border-left: 40px #66bb6a solid !important;
}
.fern--bb-40 {
  border-bottom: 40px #66bb6a solid !important;
}
.fern--by-40 {
  border-top: 40px #66bb6a solid !important;
  border-bottom: 40px #66bb6a solid !important;
}
.fern--bx-40 {
  border-right: 40px #66bb6a solid !important;
  border-left: 40px #66bb6a solid !important;
}
.fern--ba-41 {
  border: 41px #66bb6a solid !important;
}
.fern--bt-41 {
  border-top: 41px #66bb6a solid !important;
}
.fern--br-41 {
  border-right: 41px #66bb6a solid !important;
}
.fern--bl-41 {
  border-left: 41px #66bb6a solid !important;
}
.fern--bb-41 {
  border-bottom: 41px #66bb6a solid !important;
}
.fern--by-41 {
  border-top: 41px #66bb6a solid !important;
  border-bottom: 41px #66bb6a solid !important;
}
.fern--bx-41 {
  border-right: 41px #66bb6a solid !important;
  border-left: 41px #66bb6a solid !important;
}
.fern--ba-42 {
  border: 42px #66bb6a solid !important;
}
.fern--bt-42 {
  border-top: 42px #66bb6a solid !important;
}
.fern--br-42 {
  border-right: 42px #66bb6a solid !important;
}
.fern--bl-42 {
  border-left: 42px #66bb6a solid !important;
}
.fern--bb-42 {
  border-bottom: 42px #66bb6a solid !important;
}
.fern--by-42 {
  border-top: 42px #66bb6a solid !important;
  border-bottom: 42px #66bb6a solid !important;
}
.fern--bx-42 {
  border-right: 42px #66bb6a solid !important;
  border-left: 42px #66bb6a solid !important;
}
.fern--ba-43 {
  border: 43px #66bb6a solid !important;
}
.fern--bt-43 {
  border-top: 43px #66bb6a solid !important;
}
.fern--br-43 {
  border-right: 43px #66bb6a solid !important;
}
.fern--bl-43 {
  border-left: 43px #66bb6a solid !important;
}
.fern--bb-43 {
  border-bottom: 43px #66bb6a solid !important;
}
.fern--by-43 {
  border-top: 43px #66bb6a solid !important;
  border-bottom: 43px #66bb6a solid !important;
}
.fern--bx-43 {
  border-right: 43px #66bb6a solid !important;
  border-left: 43px #66bb6a solid !important;
}
.fern--ba-44 {
  border: 44px #66bb6a solid !important;
}
.fern--bt-44 {
  border-top: 44px #66bb6a solid !important;
}
.fern--br-44 {
  border-right: 44px #66bb6a solid !important;
}
.fern--bl-44 {
  border-left: 44px #66bb6a solid !important;
}
.fern--bb-44 {
  border-bottom: 44px #66bb6a solid !important;
}
.fern--by-44 {
  border-top: 44px #66bb6a solid !important;
  border-bottom: 44px #66bb6a solid !important;
}
.fern--bx-44 {
  border-right: 44px #66bb6a solid !important;
  border-left: 44px #66bb6a solid !important;
}
.fern--ba-45 {
  border: 45px #66bb6a solid !important;
}
.fern--bt-45 {
  border-top: 45px #66bb6a solid !important;
}
.fern--br-45 {
  border-right: 45px #66bb6a solid !important;
}
.fern--bl-45 {
  border-left: 45px #66bb6a solid !important;
}
.fern--bb-45 {
  border-bottom: 45px #66bb6a solid !important;
}
.fern--by-45 {
  border-top: 45px #66bb6a solid !important;
  border-bottom: 45px #66bb6a solid !important;
}
.fern--bx-45 {
  border-right: 45px #66bb6a solid !important;
  border-left: 45px #66bb6a solid !important;
}
.fern--ba-46 {
  border: 46px #66bb6a solid !important;
}
.fern--bt-46 {
  border-top: 46px #66bb6a solid !important;
}
.fern--br-46 {
  border-right: 46px #66bb6a solid !important;
}
.fern--bl-46 {
  border-left: 46px #66bb6a solid !important;
}
.fern--bb-46 {
  border-bottom: 46px #66bb6a solid !important;
}
.fern--by-46 {
  border-top: 46px #66bb6a solid !important;
  border-bottom: 46px #66bb6a solid !important;
}
.fern--bx-46 {
  border-right: 46px #66bb6a solid !important;
  border-left: 46px #66bb6a solid !important;
}
.fern--ba-47 {
  border: 47px #66bb6a solid !important;
}
.fern--bt-47 {
  border-top: 47px #66bb6a solid !important;
}
.fern--br-47 {
  border-right: 47px #66bb6a solid !important;
}
.fern--bl-47 {
  border-left: 47px #66bb6a solid !important;
}
.fern--bb-47 {
  border-bottom: 47px #66bb6a solid !important;
}
.fern--by-47 {
  border-top: 47px #66bb6a solid !important;
  border-bottom: 47px #66bb6a solid !important;
}
.fern--bx-47 {
  border-right: 47px #66bb6a solid !important;
  border-left: 47px #66bb6a solid !important;
}
.fern--ba-48 {
  border: 48px #66bb6a solid !important;
}
.fern--bt-48 {
  border-top: 48px #66bb6a solid !important;
}
.fern--br-48 {
  border-right: 48px #66bb6a solid !important;
}
.fern--bl-48 {
  border-left: 48px #66bb6a solid !important;
}
.fern--bb-48 {
  border-bottom: 48px #66bb6a solid !important;
}
.fern--by-48 {
  border-top: 48px #66bb6a solid !important;
  border-bottom: 48px #66bb6a solid !important;
}
.fern--bx-48 {
  border-right: 48px #66bb6a solid !important;
  border-left: 48px #66bb6a solid !important;
}
.fern--ba-49 {
  border: 49px #66bb6a solid !important;
}
.fern--bt-49 {
  border-top: 49px #66bb6a solid !important;
}
.fern--br-49 {
  border-right: 49px #66bb6a solid !important;
}
.fern--bl-49 {
  border-left: 49px #66bb6a solid !important;
}
.fern--bb-49 {
  border-bottom: 49px #66bb6a solid !important;
}
.fern--by-49 {
  border-top: 49px #66bb6a solid !important;
  border-bottom: 49px #66bb6a solid !important;
}
.fern--bx-49 {
  border-right: 49px #66bb6a solid !important;
  border-left: 49px #66bb6a solid !important;
}
.fern--ba-50 {
  border: 50px #66bb6a solid !important;
}
.fern--bt-50 {
  border-top: 50px #66bb6a solid !important;
}
.fern--br-50 {
  border-right: 50px #66bb6a solid !important;
}
.fern--bl-50 {
  border-left: 50px #66bb6a solid !important;
}
.fern--bb-50 {
  border-bottom: 50px #66bb6a solid !important;
}
.fern--by-50 {
  border-top: 50px #66bb6a solid !important;
  border-bottom: 50px #66bb6a solid !important;
}
.fern--bx-50 {
  border-right: 50px #66bb6a solid !important;
  border-left: 50px #66bb6a solid !important;
}
.fern--ba-51 {
  border: 51px #66bb6a solid !important;
}
.fern--bt-51 {
  border-top: 51px #66bb6a solid !important;
}
.fern--br-51 {
  border-right: 51px #66bb6a solid !important;
}
.fern--bl-51 {
  border-left: 51px #66bb6a solid !important;
}
.fern--bb-51 {
  border-bottom: 51px #66bb6a solid !important;
}
.fern--by-51 {
  border-top: 51px #66bb6a solid !important;
  border-bottom: 51px #66bb6a solid !important;
}
.fern--bx-51 {
  border-right: 51px #66bb6a solid !important;
  border-left: 51px #66bb6a solid !important;
}
.fern--ba-52 {
  border: 52px #66bb6a solid !important;
}
.fern--bt-52 {
  border-top: 52px #66bb6a solid !important;
}
.fern--br-52 {
  border-right: 52px #66bb6a solid !important;
}
.fern--bl-52 {
  border-left: 52px #66bb6a solid !important;
}
.fern--bb-52 {
  border-bottom: 52px #66bb6a solid !important;
}
.fern--by-52 {
  border-top: 52px #66bb6a solid !important;
  border-bottom: 52px #66bb6a solid !important;
}
.fern--bx-52 {
  border-right: 52px #66bb6a solid !important;
  border-left: 52px #66bb6a solid !important;
}
.fern--ba-53 {
  border: 53px #66bb6a solid !important;
}
.fern--bt-53 {
  border-top: 53px #66bb6a solid !important;
}
.fern--br-53 {
  border-right: 53px #66bb6a solid !important;
}
.fern--bl-53 {
  border-left: 53px #66bb6a solid !important;
}
.fern--bb-53 {
  border-bottom: 53px #66bb6a solid !important;
}
.fern--by-53 {
  border-top: 53px #66bb6a solid !important;
  border-bottom: 53px #66bb6a solid !important;
}
.fern--bx-53 {
  border-right: 53px #66bb6a solid !important;
  border-left: 53px #66bb6a solid !important;
}
.fern--ba-54 {
  border: 54px #66bb6a solid !important;
}
.fern--bt-54 {
  border-top: 54px #66bb6a solid !important;
}
.fern--br-54 {
  border-right: 54px #66bb6a solid !important;
}
.fern--bl-54 {
  border-left: 54px #66bb6a solid !important;
}
.fern--bb-54 {
  border-bottom: 54px #66bb6a solid !important;
}
.fern--by-54 {
  border-top: 54px #66bb6a solid !important;
  border-bottom: 54px #66bb6a solid !important;
}
.fern--bx-54 {
  border-right: 54px #66bb6a solid !important;
  border-left: 54px #66bb6a solid !important;
}
.fern--ba-55 {
  border: 55px #66bb6a solid !important;
}
.fern--bt-55 {
  border-top: 55px #66bb6a solid !important;
}
.fern--br-55 {
  border-right: 55px #66bb6a solid !important;
}
.fern--bl-55 {
  border-left: 55px #66bb6a solid !important;
}
.fern--bb-55 {
  border-bottom: 55px #66bb6a solid !important;
}
.fern--by-55 {
  border-top: 55px #66bb6a solid !important;
  border-bottom: 55px #66bb6a solid !important;
}
.fern--bx-55 {
  border-right: 55px #66bb6a solid !important;
  border-left: 55px #66bb6a solid !important;
}
.fern--ba-56 {
  border: 56px #66bb6a solid !important;
}
.fern--bt-56 {
  border-top: 56px #66bb6a solid !important;
}
.fern--br-56 {
  border-right: 56px #66bb6a solid !important;
}
.fern--bl-56 {
  border-left: 56px #66bb6a solid !important;
}
.fern--bb-56 {
  border-bottom: 56px #66bb6a solid !important;
}
.fern--by-56 {
  border-top: 56px #66bb6a solid !important;
  border-bottom: 56px #66bb6a solid !important;
}
.fern--bx-56 {
  border-right: 56px #66bb6a solid !important;
  border-left: 56px #66bb6a solid !important;
}
.fern--ba-57 {
  border: 57px #66bb6a solid !important;
}
.fern--bt-57 {
  border-top: 57px #66bb6a solid !important;
}
.fern--br-57 {
  border-right: 57px #66bb6a solid !important;
}
.fern--bl-57 {
  border-left: 57px #66bb6a solid !important;
}
.fern--bb-57 {
  border-bottom: 57px #66bb6a solid !important;
}
.fern--by-57 {
  border-top: 57px #66bb6a solid !important;
  border-bottom: 57px #66bb6a solid !important;
}
.fern--bx-57 {
  border-right: 57px #66bb6a solid !important;
  border-left: 57px #66bb6a solid !important;
}
.fern--ba-58 {
  border: 58px #66bb6a solid !important;
}
.fern--bt-58 {
  border-top: 58px #66bb6a solid !important;
}
.fern--br-58 {
  border-right: 58px #66bb6a solid !important;
}
.fern--bl-58 {
  border-left: 58px #66bb6a solid !important;
}
.fern--bb-58 {
  border-bottom: 58px #66bb6a solid !important;
}
.fern--by-58 {
  border-top: 58px #66bb6a solid !important;
  border-bottom: 58px #66bb6a solid !important;
}
.fern--bx-58 {
  border-right: 58px #66bb6a solid !important;
  border-left: 58px #66bb6a solid !important;
}
.fern--ba-59 {
  border: 59px #66bb6a solid !important;
}
.fern--bt-59 {
  border-top: 59px #66bb6a solid !important;
}
.fern--br-59 {
  border-right: 59px #66bb6a solid !important;
}
.fern--bl-59 {
  border-left: 59px #66bb6a solid !important;
}
.fern--bb-59 {
  border-bottom: 59px #66bb6a solid !important;
}
.fern--by-59 {
  border-top: 59px #66bb6a solid !important;
  border-bottom: 59px #66bb6a solid !important;
}
.fern--bx-59 {
  border-right: 59px #66bb6a solid !important;
  border-left: 59px #66bb6a solid !important;
}
.fern--ba-60 {
  border: 60px #66bb6a solid !important;
}
.fern--bt-60 {
  border-top: 60px #66bb6a solid !important;
}
.fern--br-60 {
  border-right: 60px #66bb6a solid !important;
}
.fern--bl-60 {
  border-left: 60px #66bb6a solid !important;
}
.fern--bb-60 {
  border-bottom: 60px #66bb6a solid !important;
}
.fern--by-60 {
  border-top: 60px #66bb6a solid !important;
  border-bottom: 60px #66bb6a solid !important;
}
.fern--bx-60 {
  border-right: 60px #66bb6a solid !important;
  border-left: 60px #66bb6a solid !important;
}
.fern--ba-61 {
  border: 61px #66bb6a solid !important;
}
.fern--bt-61 {
  border-top: 61px #66bb6a solid !important;
}
.fern--br-61 {
  border-right: 61px #66bb6a solid !important;
}
.fern--bl-61 {
  border-left: 61px #66bb6a solid !important;
}
.fern--bb-61 {
  border-bottom: 61px #66bb6a solid !important;
}
.fern--by-61 {
  border-top: 61px #66bb6a solid !important;
  border-bottom: 61px #66bb6a solid !important;
}
.fern--bx-61 {
  border-right: 61px #66bb6a solid !important;
  border-left: 61px #66bb6a solid !important;
}
.fern--ba-62 {
  border: 62px #66bb6a solid !important;
}
.fern--bt-62 {
  border-top: 62px #66bb6a solid !important;
}
.fern--br-62 {
  border-right: 62px #66bb6a solid !important;
}
.fern--bl-62 {
  border-left: 62px #66bb6a solid !important;
}
.fern--bb-62 {
  border-bottom: 62px #66bb6a solid !important;
}
.fern--by-62 {
  border-top: 62px #66bb6a solid !important;
  border-bottom: 62px #66bb6a solid !important;
}
.fern--bx-62 {
  border-right: 62px #66bb6a solid !important;
  border-left: 62px #66bb6a solid !important;
}
.fern--ba-63 {
  border: 63px #66bb6a solid !important;
}
.fern--bt-63 {
  border-top: 63px #66bb6a solid !important;
}
.fern--br-63 {
  border-right: 63px #66bb6a solid !important;
}
.fern--bl-63 {
  border-left: 63px #66bb6a solid !important;
}
.fern--bb-63 {
  border-bottom: 63px #66bb6a solid !important;
}
.fern--by-63 {
  border-top: 63px #66bb6a solid !important;
  border-bottom: 63px #66bb6a solid !important;
}
.fern--bx-63 {
  border-right: 63px #66bb6a solid !important;
  border-left: 63px #66bb6a solid !important;
}
.fern--ba-64 {
  border: 64px #66bb6a solid !important;
}
.fern--bt-64 {
  border-top: 64px #66bb6a solid !important;
}
.fern--br-64 {
  border-right: 64px #66bb6a solid !important;
}
.fern--bl-64 {
  border-left: 64px #66bb6a solid !important;
}
.fern--bb-64 {
  border-bottom: 64px #66bb6a solid !important;
}
.fern--by-64 {
  border-top: 64px #66bb6a solid !important;
  border-bottom: 64px #66bb6a solid !important;
}
.fern--bx-64 {
  border-right: 64px #66bb6a solid !important;
  border-left: 64px #66bb6a solid !important;
}
.fern--ba-65 {
  border: 65px #66bb6a solid !important;
}
.fern--bt-65 {
  border-top: 65px #66bb6a solid !important;
}
.fern--br-65 {
  border-right: 65px #66bb6a solid !important;
}
.fern--bl-65 {
  border-left: 65px #66bb6a solid !important;
}
.fern--bb-65 {
  border-bottom: 65px #66bb6a solid !important;
}
.fern--by-65 {
  border-top: 65px #66bb6a solid !important;
  border-bottom: 65px #66bb6a solid !important;
}
.fern--bx-65 {
  border-right: 65px #66bb6a solid !important;
  border-left: 65px #66bb6a solid !important;
}
.fern--ba-66 {
  border: 66px #66bb6a solid !important;
}
.fern--bt-66 {
  border-top: 66px #66bb6a solid !important;
}
.fern--br-66 {
  border-right: 66px #66bb6a solid !important;
}
.fern--bl-66 {
  border-left: 66px #66bb6a solid !important;
}
.fern--bb-66 {
  border-bottom: 66px #66bb6a solid !important;
}
.fern--by-66 {
  border-top: 66px #66bb6a solid !important;
  border-bottom: 66px #66bb6a solid !important;
}
.fern--bx-66 {
  border-right: 66px #66bb6a solid !important;
  border-left: 66px #66bb6a solid !important;
}
.fern--ba-67 {
  border: 67px #66bb6a solid !important;
}
.fern--bt-67 {
  border-top: 67px #66bb6a solid !important;
}
.fern--br-67 {
  border-right: 67px #66bb6a solid !important;
}
.fern--bl-67 {
  border-left: 67px #66bb6a solid !important;
}
.fern--bb-67 {
  border-bottom: 67px #66bb6a solid !important;
}
.fern--by-67 {
  border-top: 67px #66bb6a solid !important;
  border-bottom: 67px #66bb6a solid !important;
}
.fern--bx-67 {
  border-right: 67px #66bb6a solid !important;
  border-left: 67px #66bb6a solid !important;
}
.fern--ba-68 {
  border: 68px #66bb6a solid !important;
}
.fern--bt-68 {
  border-top: 68px #66bb6a solid !important;
}
.fern--br-68 {
  border-right: 68px #66bb6a solid !important;
}
.fern--bl-68 {
  border-left: 68px #66bb6a solid !important;
}
.fern--bb-68 {
  border-bottom: 68px #66bb6a solid !important;
}
.fern--by-68 {
  border-top: 68px #66bb6a solid !important;
  border-bottom: 68px #66bb6a solid !important;
}
.fern--bx-68 {
  border-right: 68px #66bb6a solid !important;
  border-left: 68px #66bb6a solid !important;
}
.fern--ba-69 {
  border: 69px #66bb6a solid !important;
}
.fern--bt-69 {
  border-top: 69px #66bb6a solid !important;
}
.fern--br-69 {
  border-right: 69px #66bb6a solid !important;
}
.fern--bl-69 {
  border-left: 69px #66bb6a solid !important;
}
.fern--bb-69 {
  border-bottom: 69px #66bb6a solid !important;
}
.fern--by-69 {
  border-top: 69px #66bb6a solid !important;
  border-bottom: 69px #66bb6a solid !important;
}
.fern--bx-69 {
  border-right: 69px #66bb6a solid !important;
  border-left: 69px #66bb6a solid !important;
}
.fern--ba-70 {
  border: 70px #66bb6a solid !important;
}
.fern--bt-70 {
  border-top: 70px #66bb6a solid !important;
}
.fern--br-70 {
  border-right: 70px #66bb6a solid !important;
}
.fern--bl-70 {
  border-left: 70px #66bb6a solid !important;
}
.fern--bb-70 {
  border-bottom: 70px #66bb6a solid !important;
}
.fern--by-70 {
  border-top: 70px #66bb6a solid !important;
  border-bottom: 70px #66bb6a solid !important;
}
.fern--bx-70 {
  border-right: 70px #66bb6a solid !important;
  border-left: 70px #66bb6a solid !important;
}
.fern--ba-71 {
  border: 71px #66bb6a solid !important;
}
.fern--bt-71 {
  border-top: 71px #66bb6a solid !important;
}
.fern--br-71 {
  border-right: 71px #66bb6a solid !important;
}
.fern--bl-71 {
  border-left: 71px #66bb6a solid !important;
}
.fern--bb-71 {
  border-bottom: 71px #66bb6a solid !important;
}
.fern--by-71 {
  border-top: 71px #66bb6a solid !important;
  border-bottom: 71px #66bb6a solid !important;
}
.fern--bx-71 {
  border-right: 71px #66bb6a solid !important;
  border-left: 71px #66bb6a solid !important;
}
.fern--ba-72 {
  border: 72px #66bb6a solid !important;
}
.fern--bt-72 {
  border-top: 72px #66bb6a solid !important;
}
.fern--br-72 {
  border-right: 72px #66bb6a solid !important;
}
.fern--bl-72 {
  border-left: 72px #66bb6a solid !important;
}
.fern--bb-72 {
  border-bottom: 72px #66bb6a solid !important;
}
.fern--by-72 {
  border-top: 72px #66bb6a solid !important;
  border-bottom: 72px #66bb6a solid !important;
}
.fern--bx-72 {
  border-right: 72px #66bb6a solid !important;
  border-left: 72px #66bb6a solid !important;
}
.fern--ba-73 {
  border: 73px #66bb6a solid !important;
}
.fern--bt-73 {
  border-top: 73px #66bb6a solid !important;
}
.fern--br-73 {
  border-right: 73px #66bb6a solid !important;
}
.fern--bl-73 {
  border-left: 73px #66bb6a solid !important;
}
.fern--bb-73 {
  border-bottom: 73px #66bb6a solid !important;
}
.fern--by-73 {
  border-top: 73px #66bb6a solid !important;
  border-bottom: 73px #66bb6a solid !important;
}
.fern--bx-73 {
  border-right: 73px #66bb6a solid !important;
  border-left: 73px #66bb6a solid !important;
}
.fern--ba-74 {
  border: 74px #66bb6a solid !important;
}
.fern--bt-74 {
  border-top: 74px #66bb6a solid !important;
}
.fern--br-74 {
  border-right: 74px #66bb6a solid !important;
}
.fern--bl-74 {
  border-left: 74px #66bb6a solid !important;
}
.fern--bb-74 {
  border-bottom: 74px #66bb6a solid !important;
}
.fern--by-74 {
  border-top: 74px #66bb6a solid !important;
  border-bottom: 74px #66bb6a solid !important;
}
.fern--bx-74 {
  border-right: 74px #66bb6a solid !important;
  border-left: 74px #66bb6a solid !important;
}
.fern--ba-75 {
  border: 75px #66bb6a solid !important;
}
.fern--bt-75 {
  border-top: 75px #66bb6a solid !important;
}
.fern--br-75 {
  border-right: 75px #66bb6a solid !important;
}
.fern--bl-75 {
  border-left: 75px #66bb6a solid !important;
}
.fern--bb-75 {
  border-bottom: 75px #66bb6a solid !important;
}
.fern--by-75 {
  border-top: 75px #66bb6a solid !important;
  border-bottom: 75px #66bb6a solid !important;
}
.fern--bx-75 {
  border-right: 75px #66bb6a solid !important;
  border-left: 75px #66bb6a solid !important;
}
.fern--ba-76 {
  border: 76px #66bb6a solid !important;
}
.fern--bt-76 {
  border-top: 76px #66bb6a solid !important;
}
.fern--br-76 {
  border-right: 76px #66bb6a solid !important;
}
.fern--bl-76 {
  border-left: 76px #66bb6a solid !important;
}
.fern--bb-76 {
  border-bottom: 76px #66bb6a solid !important;
}
.fern--by-76 {
  border-top: 76px #66bb6a solid !important;
  border-bottom: 76px #66bb6a solid !important;
}
.fern--bx-76 {
  border-right: 76px #66bb6a solid !important;
  border-left: 76px #66bb6a solid !important;
}
.fern--ba-77 {
  border: 77px #66bb6a solid !important;
}
.fern--bt-77 {
  border-top: 77px #66bb6a solid !important;
}
.fern--br-77 {
  border-right: 77px #66bb6a solid !important;
}
.fern--bl-77 {
  border-left: 77px #66bb6a solid !important;
}
.fern--bb-77 {
  border-bottom: 77px #66bb6a solid !important;
}
.fern--by-77 {
  border-top: 77px #66bb6a solid !important;
  border-bottom: 77px #66bb6a solid !important;
}
.fern--bx-77 {
  border-right: 77px #66bb6a solid !important;
  border-left: 77px #66bb6a solid !important;
}
.fern--ba-78 {
  border: 78px #66bb6a solid !important;
}
.fern--bt-78 {
  border-top: 78px #66bb6a solid !important;
}
.fern--br-78 {
  border-right: 78px #66bb6a solid !important;
}
.fern--bl-78 {
  border-left: 78px #66bb6a solid !important;
}
.fern--bb-78 {
  border-bottom: 78px #66bb6a solid !important;
}
.fern--by-78 {
  border-top: 78px #66bb6a solid !important;
  border-bottom: 78px #66bb6a solid !important;
}
.fern--bx-78 {
  border-right: 78px #66bb6a solid !important;
  border-left: 78px #66bb6a solid !important;
}
.fern--ba-79 {
  border: 79px #66bb6a solid !important;
}
.fern--bt-79 {
  border-top: 79px #66bb6a solid !important;
}
.fern--br-79 {
  border-right: 79px #66bb6a solid !important;
}
.fern--bl-79 {
  border-left: 79px #66bb6a solid !important;
}
.fern--bb-79 {
  border-bottom: 79px #66bb6a solid !important;
}
.fern--by-79 {
  border-top: 79px #66bb6a solid !important;
  border-bottom: 79px #66bb6a solid !important;
}
.fern--bx-79 {
  border-right: 79px #66bb6a solid !important;
  border-left: 79px #66bb6a solid !important;
}
.fern--ba-80 {
  border: 80px #66bb6a solid !important;
}
.fern--bt-80 {
  border-top: 80px #66bb6a solid !important;
}
.fern--br-80 {
  border-right: 80px #66bb6a solid !important;
}
.fern--bl-80 {
  border-left: 80px #66bb6a solid !important;
}
.fern--bb-80 {
  border-bottom: 80px #66bb6a solid !important;
}
.fern--by-80 {
  border-top: 80px #66bb6a solid !important;
  border-bottom: 80px #66bb6a solid !important;
}
.fern--bx-80 {
  border-right: 80px #66bb6a solid !important;
  border-left: 80px #66bb6a solid !important;
}
.fern--ba-81 {
  border: 81px #66bb6a solid !important;
}
.fern--bt-81 {
  border-top: 81px #66bb6a solid !important;
}
.fern--br-81 {
  border-right: 81px #66bb6a solid !important;
}
.fern--bl-81 {
  border-left: 81px #66bb6a solid !important;
}
.fern--bb-81 {
  border-bottom: 81px #66bb6a solid !important;
}
.fern--by-81 {
  border-top: 81px #66bb6a solid !important;
  border-bottom: 81px #66bb6a solid !important;
}
.fern--bx-81 {
  border-right: 81px #66bb6a solid !important;
  border-left: 81px #66bb6a solid !important;
}
.fern--ba-82 {
  border: 82px #66bb6a solid !important;
}
.fern--bt-82 {
  border-top: 82px #66bb6a solid !important;
}
.fern--br-82 {
  border-right: 82px #66bb6a solid !important;
}
.fern--bl-82 {
  border-left: 82px #66bb6a solid !important;
}
.fern--bb-82 {
  border-bottom: 82px #66bb6a solid !important;
}
.fern--by-82 {
  border-top: 82px #66bb6a solid !important;
  border-bottom: 82px #66bb6a solid !important;
}
.fern--bx-82 {
  border-right: 82px #66bb6a solid !important;
  border-left: 82px #66bb6a solid !important;
}
.fern--ba-83 {
  border: 83px #66bb6a solid !important;
}
.fern--bt-83 {
  border-top: 83px #66bb6a solid !important;
}
.fern--br-83 {
  border-right: 83px #66bb6a solid !important;
}
.fern--bl-83 {
  border-left: 83px #66bb6a solid !important;
}
.fern--bb-83 {
  border-bottom: 83px #66bb6a solid !important;
}
.fern--by-83 {
  border-top: 83px #66bb6a solid !important;
  border-bottom: 83px #66bb6a solid !important;
}
.fern--bx-83 {
  border-right: 83px #66bb6a solid !important;
  border-left: 83px #66bb6a solid !important;
}
.fern--ba-84 {
  border: 84px #66bb6a solid !important;
}
.fern--bt-84 {
  border-top: 84px #66bb6a solid !important;
}
.fern--br-84 {
  border-right: 84px #66bb6a solid !important;
}
.fern--bl-84 {
  border-left: 84px #66bb6a solid !important;
}
.fern--bb-84 {
  border-bottom: 84px #66bb6a solid !important;
}
.fern--by-84 {
  border-top: 84px #66bb6a solid !important;
  border-bottom: 84px #66bb6a solid !important;
}
.fern--bx-84 {
  border-right: 84px #66bb6a solid !important;
  border-left: 84px #66bb6a solid !important;
}
.fern--ba-85 {
  border: 85px #66bb6a solid !important;
}
.fern--bt-85 {
  border-top: 85px #66bb6a solid !important;
}
.fern--br-85 {
  border-right: 85px #66bb6a solid !important;
}
.fern--bl-85 {
  border-left: 85px #66bb6a solid !important;
}
.fern--bb-85 {
  border-bottom: 85px #66bb6a solid !important;
}
.fern--by-85 {
  border-top: 85px #66bb6a solid !important;
  border-bottom: 85px #66bb6a solid !important;
}
.fern--bx-85 {
  border-right: 85px #66bb6a solid !important;
  border-left: 85px #66bb6a solid !important;
}
.fern--ba-86 {
  border: 86px #66bb6a solid !important;
}
.fern--bt-86 {
  border-top: 86px #66bb6a solid !important;
}
.fern--br-86 {
  border-right: 86px #66bb6a solid !important;
}
.fern--bl-86 {
  border-left: 86px #66bb6a solid !important;
}
.fern--bb-86 {
  border-bottom: 86px #66bb6a solid !important;
}
.fern--by-86 {
  border-top: 86px #66bb6a solid !important;
  border-bottom: 86px #66bb6a solid !important;
}
.fern--bx-86 {
  border-right: 86px #66bb6a solid !important;
  border-left: 86px #66bb6a solid !important;
}
.fern--ba-87 {
  border: 87px #66bb6a solid !important;
}
.fern--bt-87 {
  border-top: 87px #66bb6a solid !important;
}
.fern--br-87 {
  border-right: 87px #66bb6a solid !important;
}
.fern--bl-87 {
  border-left: 87px #66bb6a solid !important;
}
.fern--bb-87 {
  border-bottom: 87px #66bb6a solid !important;
}
.fern--by-87 {
  border-top: 87px #66bb6a solid !important;
  border-bottom: 87px #66bb6a solid !important;
}
.fern--bx-87 {
  border-right: 87px #66bb6a solid !important;
  border-left: 87px #66bb6a solid !important;
}
.fern--ba-88 {
  border: 88px #66bb6a solid !important;
}
.fern--bt-88 {
  border-top: 88px #66bb6a solid !important;
}
.fern--br-88 {
  border-right: 88px #66bb6a solid !important;
}
.fern--bl-88 {
  border-left: 88px #66bb6a solid !important;
}
.fern--bb-88 {
  border-bottom: 88px #66bb6a solid !important;
}
.fern--by-88 {
  border-top: 88px #66bb6a solid !important;
  border-bottom: 88px #66bb6a solid !important;
}
.fern--bx-88 {
  border-right: 88px #66bb6a solid !important;
  border-left: 88px #66bb6a solid !important;
}
.fern--ba-89 {
  border: 89px #66bb6a solid !important;
}
.fern--bt-89 {
  border-top: 89px #66bb6a solid !important;
}
.fern--br-89 {
  border-right: 89px #66bb6a solid !important;
}
.fern--bl-89 {
  border-left: 89px #66bb6a solid !important;
}
.fern--bb-89 {
  border-bottom: 89px #66bb6a solid !important;
}
.fern--by-89 {
  border-top: 89px #66bb6a solid !important;
  border-bottom: 89px #66bb6a solid !important;
}
.fern--bx-89 {
  border-right: 89px #66bb6a solid !important;
  border-left: 89px #66bb6a solid !important;
}
.fern--ba-90 {
  border: 90px #66bb6a solid !important;
}
.fern--bt-90 {
  border-top: 90px #66bb6a solid !important;
}
.fern--br-90 {
  border-right: 90px #66bb6a solid !important;
}
.fern--bl-90 {
  border-left: 90px #66bb6a solid !important;
}
.fern--bb-90 {
  border-bottom: 90px #66bb6a solid !important;
}
.fern--by-90 {
  border-top: 90px #66bb6a solid !important;
  border-bottom: 90px #66bb6a solid !important;
}
.fern--bx-90 {
  border-right: 90px #66bb6a solid !important;
  border-left: 90px #66bb6a solid !important;
}
.fern--ba-91 {
  border: 91px #66bb6a solid !important;
}
.fern--bt-91 {
  border-top: 91px #66bb6a solid !important;
}
.fern--br-91 {
  border-right: 91px #66bb6a solid !important;
}
.fern--bl-91 {
  border-left: 91px #66bb6a solid !important;
}
.fern--bb-91 {
  border-bottom: 91px #66bb6a solid !important;
}
.fern--by-91 {
  border-top: 91px #66bb6a solid !important;
  border-bottom: 91px #66bb6a solid !important;
}
.fern--bx-91 {
  border-right: 91px #66bb6a solid !important;
  border-left: 91px #66bb6a solid !important;
}
.fern--ba-92 {
  border: 92px #66bb6a solid !important;
}
.fern--bt-92 {
  border-top: 92px #66bb6a solid !important;
}
.fern--br-92 {
  border-right: 92px #66bb6a solid !important;
}
.fern--bl-92 {
  border-left: 92px #66bb6a solid !important;
}
.fern--bb-92 {
  border-bottom: 92px #66bb6a solid !important;
}
.fern--by-92 {
  border-top: 92px #66bb6a solid !important;
  border-bottom: 92px #66bb6a solid !important;
}
.fern--bx-92 {
  border-right: 92px #66bb6a solid !important;
  border-left: 92px #66bb6a solid !important;
}
.fern--ba-93 {
  border: 93px #66bb6a solid !important;
}
.fern--bt-93 {
  border-top: 93px #66bb6a solid !important;
}
.fern--br-93 {
  border-right: 93px #66bb6a solid !important;
}
.fern--bl-93 {
  border-left: 93px #66bb6a solid !important;
}
.fern--bb-93 {
  border-bottom: 93px #66bb6a solid !important;
}
.fern--by-93 {
  border-top: 93px #66bb6a solid !important;
  border-bottom: 93px #66bb6a solid !important;
}
.fern--bx-93 {
  border-right: 93px #66bb6a solid !important;
  border-left: 93px #66bb6a solid !important;
}
.fern--ba-94 {
  border: 94px #66bb6a solid !important;
}
.fern--bt-94 {
  border-top: 94px #66bb6a solid !important;
}
.fern--br-94 {
  border-right: 94px #66bb6a solid !important;
}
.fern--bl-94 {
  border-left: 94px #66bb6a solid !important;
}
.fern--bb-94 {
  border-bottom: 94px #66bb6a solid !important;
}
.fern--by-94 {
  border-top: 94px #66bb6a solid !important;
  border-bottom: 94px #66bb6a solid !important;
}
.fern--bx-94 {
  border-right: 94px #66bb6a solid !important;
  border-left: 94px #66bb6a solid !important;
}
.fern--ba-95 {
  border: 95px #66bb6a solid !important;
}
.fern--bt-95 {
  border-top: 95px #66bb6a solid !important;
}
.fern--br-95 {
  border-right: 95px #66bb6a solid !important;
}
.fern--bl-95 {
  border-left: 95px #66bb6a solid !important;
}
.fern--bb-95 {
  border-bottom: 95px #66bb6a solid !important;
}
.fern--by-95 {
  border-top: 95px #66bb6a solid !important;
  border-bottom: 95px #66bb6a solid !important;
}
.fern--bx-95 {
  border-right: 95px #66bb6a solid !important;
  border-left: 95px #66bb6a solid !important;
}
.fern--ba-96 {
  border: 96px #66bb6a solid !important;
}
.fern--bt-96 {
  border-top: 96px #66bb6a solid !important;
}
.fern--br-96 {
  border-right: 96px #66bb6a solid !important;
}
.fern--bl-96 {
  border-left: 96px #66bb6a solid !important;
}
.fern--bb-96 {
  border-bottom: 96px #66bb6a solid !important;
}
.fern--by-96 {
  border-top: 96px #66bb6a solid !important;
  border-bottom: 96px #66bb6a solid !important;
}
.fern--bx-96 {
  border-right: 96px #66bb6a solid !important;
  border-left: 96px #66bb6a solid !important;
}
.fern--ba-97 {
  border: 97px #66bb6a solid !important;
}
.fern--bt-97 {
  border-top: 97px #66bb6a solid !important;
}
.fern--br-97 {
  border-right: 97px #66bb6a solid !important;
}
.fern--bl-97 {
  border-left: 97px #66bb6a solid !important;
}
.fern--bb-97 {
  border-bottom: 97px #66bb6a solid !important;
}
.fern--by-97 {
  border-top: 97px #66bb6a solid !important;
  border-bottom: 97px #66bb6a solid !important;
}
.fern--bx-97 {
  border-right: 97px #66bb6a solid !important;
  border-left: 97px #66bb6a solid !important;
}
.fern--ba-98 {
  border: 98px #66bb6a solid !important;
}
.fern--bt-98 {
  border-top: 98px #66bb6a solid !important;
}
.fern--br-98 {
  border-right: 98px #66bb6a solid !important;
}
.fern--bl-98 {
  border-left: 98px #66bb6a solid !important;
}
.fern--bb-98 {
  border-bottom: 98px #66bb6a solid !important;
}
.fern--by-98 {
  border-top: 98px #66bb6a solid !important;
  border-bottom: 98px #66bb6a solid !important;
}
.fern--bx-98 {
  border-right: 98px #66bb6a solid !important;
  border-left: 98px #66bb6a solid !important;
}
.fern--ba-99 {
  border: 99px #66bb6a solid !important;
}
.fern--bt-99 {
  border-top: 99px #66bb6a solid !important;
}
.fern--br-99 {
  border-right: 99px #66bb6a solid !important;
}
.fern--bl-99 {
  border-left: 99px #66bb6a solid !important;
}
.fern--bb-99 {
  border-bottom: 99px #66bb6a solid !important;
}
.fern--by-99 {
  border-top: 99px #66bb6a solid !important;
  border-bottom: 99px #66bb6a solid !important;
}
.fern--bx-99 {
  border-right: 99px #66bb6a solid !important;
  border-left: 99px #66bb6a solid !important;
}
.fern--ba-100 {
  border: 100px #66bb6a solid !important;
}
.fern--bt-100 {
  border-top: 100px #66bb6a solid !important;
}
.fern--br-100 {
  border-right: 100px #66bb6a solid !important;
}
.fern--bl-100 {
  border-left: 100px #66bb6a solid !important;
}
.fern--bb-100 {
  border-bottom: 100px #66bb6a solid !important;
}
.fern--by-100 {
  border-top: 100px #66bb6a solid !important;
  border-bottom: 100px #66bb6a solid !important;
}
.fern--bx-100 {
  border-right: 100px #66bb6a solid !important;
  border-left: 100px #66bb6a solid !important;
}
.coral-red--ba-1 {
  border: 1px #f44 solid !important;
}
.coral-red--bt-1 {
  border-top: 1px #f44 solid !important;
}
.coral-red--br-1 {
  border-right: 1px #f44 solid !important;
}
.coral-red--bl-1 {
  border-left: 1px #f44 solid !important;
}
.coral-red--bb-1 {
  border-bottom: 1px #f44 solid !important;
}
.coral-red--by-1 {
  border-top: 1px #f44 solid !important;
  border-bottom: 1px #f44 solid !important;
}
.coral-red--bx-1 {
  border-right: 1px #f44 solid !important;
  border-left: 1px #f44 solid !important;
}
.coral-red--ba-2 {
  border: 2px #f44 solid !important;
}
.coral-red--bt-2 {
  border-top: 2px #f44 solid !important;
}
.coral-red--br-2 {
  border-right: 2px #f44 solid !important;
}
.coral-red--bl-2 {
  border-left: 2px #f44 solid !important;
}
.coral-red--bb-2 {
  border-bottom: 2px #f44 solid !important;
}
.coral-red--by-2 {
  border-top: 2px #f44 solid !important;
  border-bottom: 2px #f44 solid !important;
}
.coral-red--bx-2 {
  border-right: 2px #f44 solid !important;
  border-left: 2px #f44 solid !important;
}
.coral-red--ba-3 {
  border: 3px #f44 solid !important;
}
.coral-red--bt-3 {
  border-top: 3px #f44 solid !important;
}
.coral-red--br-3 {
  border-right: 3px #f44 solid !important;
}
.coral-red--bl-3 {
  border-left: 3px #f44 solid !important;
}
.coral-red--bb-3 {
  border-bottom: 3px #f44 solid !important;
}
.coral-red--by-3 {
  border-top: 3px #f44 solid !important;
  border-bottom: 3px #f44 solid !important;
}
.coral-red--bx-3 {
  border-right: 3px #f44 solid !important;
  border-left: 3px #f44 solid !important;
}
.coral-red--ba-4 {
  border: 4px #f44 solid !important;
}
.coral-red--bt-4 {
  border-top: 4px #f44 solid !important;
}
.coral-red--br-4 {
  border-right: 4px #f44 solid !important;
}
.coral-red--bl-4 {
  border-left: 4px #f44 solid !important;
}
.coral-red--bb-4 {
  border-bottom: 4px #f44 solid !important;
}
.coral-red--by-4 {
  border-top: 4px #f44 solid !important;
  border-bottom: 4px #f44 solid !important;
}
.coral-red--bx-4 {
  border-right: 4px #f44 solid !important;
  border-left: 4px #f44 solid !important;
}
.coral-red--ba-5 {
  border: 5px #f44 solid !important;
}
.coral-red--bt-5 {
  border-top: 5px #f44 solid !important;
}
.coral-red--br-5 {
  border-right: 5px #f44 solid !important;
}
.coral-red--bl-5 {
  border-left: 5px #f44 solid !important;
}
.coral-red--bb-5 {
  border-bottom: 5px #f44 solid !important;
}
.coral-red--by-5 {
  border-top: 5px #f44 solid !important;
  border-bottom: 5px #f44 solid !important;
}
.coral-red--bx-5 {
  border-right: 5px #f44 solid !important;
  border-left: 5px #f44 solid !important;
}
.coral-red--ba-6 {
  border: 6px #f44 solid !important;
}
.coral-red--bt-6 {
  border-top: 6px #f44 solid !important;
}
.coral-red--br-6 {
  border-right: 6px #f44 solid !important;
}
.coral-red--bl-6 {
  border-left: 6px #f44 solid !important;
}
.coral-red--bb-6 {
  border-bottom: 6px #f44 solid !important;
}
.coral-red--by-6 {
  border-top: 6px #f44 solid !important;
  border-bottom: 6px #f44 solid !important;
}
.coral-red--bx-6 {
  border-right: 6px #f44 solid !important;
  border-left: 6px #f44 solid !important;
}
.coral-red--ba-7 {
  border: 7px #f44 solid !important;
}
.coral-red--bt-7 {
  border-top: 7px #f44 solid !important;
}
.coral-red--br-7 {
  border-right: 7px #f44 solid !important;
}
.coral-red--bl-7 {
  border-left: 7px #f44 solid !important;
}
.coral-red--bb-7 {
  border-bottom: 7px #f44 solid !important;
}
.coral-red--by-7 {
  border-top: 7px #f44 solid !important;
  border-bottom: 7px #f44 solid !important;
}
.coral-red--bx-7 {
  border-right: 7px #f44 solid !important;
  border-left: 7px #f44 solid !important;
}
.coral-red--ba-8 {
  border: 8px #f44 solid !important;
}
.coral-red--bt-8 {
  border-top: 8px #f44 solid !important;
}
.coral-red--br-8 {
  border-right: 8px #f44 solid !important;
}
.coral-red--bl-8 {
  border-left: 8px #f44 solid !important;
}
.coral-red--bb-8 {
  border-bottom: 8px #f44 solid !important;
}
.coral-red--by-8 {
  border-top: 8px #f44 solid !important;
  border-bottom: 8px #f44 solid !important;
}
.coral-red--bx-8 {
  border-right: 8px #f44 solid !important;
  border-left: 8px #f44 solid !important;
}
.coral-red--ba-9 {
  border: 9px #f44 solid !important;
}
.coral-red--bt-9 {
  border-top: 9px #f44 solid !important;
}
.coral-red--br-9 {
  border-right: 9px #f44 solid !important;
}
.coral-red--bl-9 {
  border-left: 9px #f44 solid !important;
}
.coral-red--bb-9 {
  border-bottom: 9px #f44 solid !important;
}
.coral-red--by-9 {
  border-top: 9px #f44 solid !important;
  border-bottom: 9px #f44 solid !important;
}
.coral-red--bx-9 {
  border-right: 9px #f44 solid !important;
  border-left: 9px #f44 solid !important;
}
.coral-red--ba-10 {
  border: 10px #f44 solid !important;
}
.coral-red--bt-10 {
  border-top: 10px #f44 solid !important;
}
.coral-red--br-10 {
  border-right: 10px #f44 solid !important;
}
.coral-red--bl-10 {
  border-left: 10px #f44 solid !important;
}
.coral-red--bb-10 {
  border-bottom: 10px #f44 solid !important;
}
.coral-red--by-10 {
  border-top: 10px #f44 solid !important;
  border-bottom: 10px #f44 solid !important;
}
.coral-red--bx-10 {
  border-right: 10px #f44 solid !important;
  border-left: 10px #f44 solid !important;
}
.coral-red--ba-11 {
  border: 11px #f44 solid !important;
}
.coral-red--bt-11 {
  border-top: 11px #f44 solid !important;
}
.coral-red--br-11 {
  border-right: 11px #f44 solid !important;
}
.coral-red--bl-11 {
  border-left: 11px #f44 solid !important;
}
.coral-red--bb-11 {
  border-bottom: 11px #f44 solid !important;
}
.coral-red--by-11 {
  border-top: 11px #f44 solid !important;
  border-bottom: 11px #f44 solid !important;
}
.coral-red--bx-11 {
  border-right: 11px #f44 solid !important;
  border-left: 11px #f44 solid !important;
}
.coral-red--ba-12 {
  border: 12px #f44 solid !important;
}
.coral-red--bt-12 {
  border-top: 12px #f44 solid !important;
}
.coral-red--br-12 {
  border-right: 12px #f44 solid !important;
}
.coral-red--bl-12 {
  border-left: 12px #f44 solid !important;
}
.coral-red--bb-12 {
  border-bottom: 12px #f44 solid !important;
}
.coral-red--by-12 {
  border-top: 12px #f44 solid !important;
  border-bottom: 12px #f44 solid !important;
}
.coral-red--bx-12 {
  border-right: 12px #f44 solid !important;
  border-left: 12px #f44 solid !important;
}
.coral-red--ba-13 {
  border: 13px #f44 solid !important;
}
.coral-red--bt-13 {
  border-top: 13px #f44 solid !important;
}
.coral-red--br-13 {
  border-right: 13px #f44 solid !important;
}
.coral-red--bl-13 {
  border-left: 13px #f44 solid !important;
}
.coral-red--bb-13 {
  border-bottom: 13px #f44 solid !important;
}
.coral-red--by-13 {
  border-top: 13px #f44 solid !important;
  border-bottom: 13px #f44 solid !important;
}
.coral-red--bx-13 {
  border-right: 13px #f44 solid !important;
  border-left: 13px #f44 solid !important;
}
.coral-red--ba-14 {
  border: 14px #f44 solid !important;
}
.coral-red--bt-14 {
  border-top: 14px #f44 solid !important;
}
.coral-red--br-14 {
  border-right: 14px #f44 solid !important;
}
.coral-red--bl-14 {
  border-left: 14px #f44 solid !important;
}
.coral-red--bb-14 {
  border-bottom: 14px #f44 solid !important;
}
.coral-red--by-14 {
  border-top: 14px #f44 solid !important;
  border-bottom: 14px #f44 solid !important;
}
.coral-red--bx-14 {
  border-right: 14px #f44 solid !important;
  border-left: 14px #f44 solid !important;
}
.coral-red--ba-15 {
  border: 15px #f44 solid !important;
}
.coral-red--bt-15 {
  border-top: 15px #f44 solid !important;
}
.coral-red--br-15 {
  border-right: 15px #f44 solid !important;
}
.coral-red--bl-15 {
  border-left: 15px #f44 solid !important;
}
.coral-red--bb-15 {
  border-bottom: 15px #f44 solid !important;
}
.coral-red--by-15 {
  border-top: 15px #f44 solid !important;
  border-bottom: 15px #f44 solid !important;
}
.coral-red--bx-15 {
  border-right: 15px #f44 solid !important;
  border-left: 15px #f44 solid !important;
}
.coral-red--ba-16 {
  border: 16px #f44 solid !important;
}
.coral-red--bt-16 {
  border-top: 16px #f44 solid !important;
}
.coral-red--br-16 {
  border-right: 16px #f44 solid !important;
}
.coral-red--bl-16 {
  border-left: 16px #f44 solid !important;
}
.coral-red--bb-16 {
  border-bottom: 16px #f44 solid !important;
}
.coral-red--by-16 {
  border-top: 16px #f44 solid !important;
  border-bottom: 16px #f44 solid !important;
}
.coral-red--bx-16 {
  border-right: 16px #f44 solid !important;
  border-left: 16px #f44 solid !important;
}
.coral-red--ba-17 {
  border: 17px #f44 solid !important;
}
.coral-red--bt-17 {
  border-top: 17px #f44 solid !important;
}
.coral-red--br-17 {
  border-right: 17px #f44 solid !important;
}
.coral-red--bl-17 {
  border-left: 17px #f44 solid !important;
}
.coral-red--bb-17 {
  border-bottom: 17px #f44 solid !important;
}
.coral-red--by-17 {
  border-top: 17px #f44 solid !important;
  border-bottom: 17px #f44 solid !important;
}
.coral-red--bx-17 {
  border-right: 17px #f44 solid !important;
  border-left: 17px #f44 solid !important;
}
.coral-red--ba-18 {
  border: 18px #f44 solid !important;
}
.coral-red--bt-18 {
  border-top: 18px #f44 solid !important;
}
.coral-red--br-18 {
  border-right: 18px #f44 solid !important;
}
.coral-red--bl-18 {
  border-left: 18px #f44 solid !important;
}
.coral-red--bb-18 {
  border-bottom: 18px #f44 solid !important;
}
.coral-red--by-18 {
  border-top: 18px #f44 solid !important;
  border-bottom: 18px #f44 solid !important;
}
.coral-red--bx-18 {
  border-right: 18px #f44 solid !important;
  border-left: 18px #f44 solid !important;
}
.coral-red--ba-19 {
  border: 19px #f44 solid !important;
}
.coral-red--bt-19 {
  border-top: 19px #f44 solid !important;
}
.coral-red--br-19 {
  border-right: 19px #f44 solid !important;
}
.coral-red--bl-19 {
  border-left: 19px #f44 solid !important;
}
.coral-red--bb-19 {
  border-bottom: 19px #f44 solid !important;
}
.coral-red--by-19 {
  border-top: 19px #f44 solid !important;
  border-bottom: 19px #f44 solid !important;
}
.coral-red--bx-19 {
  border-right: 19px #f44 solid !important;
  border-left: 19px #f44 solid !important;
}
.coral-red--ba-20 {
  border: 20px #f44 solid !important;
}
.coral-red--bt-20 {
  border-top: 20px #f44 solid !important;
}
.coral-red--br-20 {
  border-right: 20px #f44 solid !important;
}
.coral-red--bl-20 {
  border-left: 20px #f44 solid !important;
}
.coral-red--bb-20 {
  border-bottom: 20px #f44 solid !important;
}
.coral-red--by-20 {
  border-top: 20px #f44 solid !important;
  border-bottom: 20px #f44 solid !important;
}
.coral-red--bx-20 {
  border-right: 20px #f44 solid !important;
  border-left: 20px #f44 solid !important;
}
.coral-red--ba-21 {
  border: 21px #f44 solid !important;
}
.coral-red--bt-21 {
  border-top: 21px #f44 solid !important;
}
.coral-red--br-21 {
  border-right: 21px #f44 solid !important;
}
.coral-red--bl-21 {
  border-left: 21px #f44 solid !important;
}
.coral-red--bb-21 {
  border-bottom: 21px #f44 solid !important;
}
.coral-red--by-21 {
  border-top: 21px #f44 solid !important;
  border-bottom: 21px #f44 solid !important;
}
.coral-red--bx-21 {
  border-right: 21px #f44 solid !important;
  border-left: 21px #f44 solid !important;
}
.coral-red--ba-22 {
  border: 22px #f44 solid !important;
}
.coral-red--bt-22 {
  border-top: 22px #f44 solid !important;
}
.coral-red--br-22 {
  border-right: 22px #f44 solid !important;
}
.coral-red--bl-22 {
  border-left: 22px #f44 solid !important;
}
.coral-red--bb-22 {
  border-bottom: 22px #f44 solid !important;
}
.coral-red--by-22 {
  border-top: 22px #f44 solid !important;
  border-bottom: 22px #f44 solid !important;
}
.coral-red--bx-22 {
  border-right: 22px #f44 solid !important;
  border-left: 22px #f44 solid !important;
}
.coral-red--ba-23 {
  border: 23px #f44 solid !important;
}
.coral-red--bt-23 {
  border-top: 23px #f44 solid !important;
}
.coral-red--br-23 {
  border-right: 23px #f44 solid !important;
}
.coral-red--bl-23 {
  border-left: 23px #f44 solid !important;
}
.coral-red--bb-23 {
  border-bottom: 23px #f44 solid !important;
}
.coral-red--by-23 {
  border-top: 23px #f44 solid !important;
  border-bottom: 23px #f44 solid !important;
}
.coral-red--bx-23 {
  border-right: 23px #f44 solid !important;
  border-left: 23px #f44 solid !important;
}
.coral-red--ba-24 {
  border: 24px #f44 solid !important;
}
.coral-red--bt-24 {
  border-top: 24px #f44 solid !important;
}
.coral-red--br-24 {
  border-right: 24px #f44 solid !important;
}
.coral-red--bl-24 {
  border-left: 24px #f44 solid !important;
}
.coral-red--bb-24 {
  border-bottom: 24px #f44 solid !important;
}
.coral-red--by-24 {
  border-top: 24px #f44 solid !important;
  border-bottom: 24px #f44 solid !important;
}
.coral-red--bx-24 {
  border-right: 24px #f44 solid !important;
  border-left: 24px #f44 solid !important;
}
.coral-red--ba-25 {
  border: 25px #f44 solid !important;
}
.coral-red--bt-25 {
  border-top: 25px #f44 solid !important;
}
.coral-red--br-25 {
  border-right: 25px #f44 solid !important;
}
.coral-red--bl-25 {
  border-left: 25px #f44 solid !important;
}
.coral-red--bb-25 {
  border-bottom: 25px #f44 solid !important;
}
.coral-red--by-25 {
  border-top: 25px #f44 solid !important;
  border-bottom: 25px #f44 solid !important;
}
.coral-red--bx-25 {
  border-right: 25px #f44 solid !important;
  border-left: 25px #f44 solid !important;
}
.coral-red--ba-26 {
  border: 26px #f44 solid !important;
}
.coral-red--bt-26 {
  border-top: 26px #f44 solid !important;
}
.coral-red--br-26 {
  border-right: 26px #f44 solid !important;
}
.coral-red--bl-26 {
  border-left: 26px #f44 solid !important;
}
.coral-red--bb-26 {
  border-bottom: 26px #f44 solid !important;
}
.coral-red--by-26 {
  border-top: 26px #f44 solid !important;
  border-bottom: 26px #f44 solid !important;
}
.coral-red--bx-26 {
  border-right: 26px #f44 solid !important;
  border-left: 26px #f44 solid !important;
}
.coral-red--ba-27 {
  border: 27px #f44 solid !important;
}
.coral-red--bt-27 {
  border-top: 27px #f44 solid !important;
}
.coral-red--br-27 {
  border-right: 27px #f44 solid !important;
}
.coral-red--bl-27 {
  border-left: 27px #f44 solid !important;
}
.coral-red--bb-27 {
  border-bottom: 27px #f44 solid !important;
}
.coral-red--by-27 {
  border-top: 27px #f44 solid !important;
  border-bottom: 27px #f44 solid !important;
}
.coral-red--bx-27 {
  border-right: 27px #f44 solid !important;
  border-left: 27px #f44 solid !important;
}
.coral-red--ba-28 {
  border: 28px #f44 solid !important;
}
.coral-red--bt-28 {
  border-top: 28px #f44 solid !important;
}
.coral-red--br-28 {
  border-right: 28px #f44 solid !important;
}
.coral-red--bl-28 {
  border-left: 28px #f44 solid !important;
}
.coral-red--bb-28 {
  border-bottom: 28px #f44 solid !important;
}
.coral-red--by-28 {
  border-top: 28px #f44 solid !important;
  border-bottom: 28px #f44 solid !important;
}
.coral-red--bx-28 {
  border-right: 28px #f44 solid !important;
  border-left: 28px #f44 solid !important;
}
.coral-red--ba-29 {
  border: 29px #f44 solid !important;
}
.coral-red--bt-29 {
  border-top: 29px #f44 solid !important;
}
.coral-red--br-29 {
  border-right: 29px #f44 solid !important;
}
.coral-red--bl-29 {
  border-left: 29px #f44 solid !important;
}
.coral-red--bb-29 {
  border-bottom: 29px #f44 solid !important;
}
.coral-red--by-29 {
  border-top: 29px #f44 solid !important;
  border-bottom: 29px #f44 solid !important;
}
.coral-red--bx-29 {
  border-right: 29px #f44 solid !important;
  border-left: 29px #f44 solid !important;
}
.coral-red--ba-30 {
  border: 30px #f44 solid !important;
}
.coral-red--bt-30 {
  border-top: 30px #f44 solid !important;
}
.coral-red--br-30 {
  border-right: 30px #f44 solid !important;
}
.coral-red--bl-30 {
  border-left: 30px #f44 solid !important;
}
.coral-red--bb-30 {
  border-bottom: 30px #f44 solid !important;
}
.coral-red--by-30 {
  border-top: 30px #f44 solid !important;
  border-bottom: 30px #f44 solid !important;
}
.coral-red--bx-30 {
  border-right: 30px #f44 solid !important;
  border-left: 30px #f44 solid !important;
}
.coral-red--ba-31 {
  border: 31px #f44 solid !important;
}
.coral-red--bt-31 {
  border-top: 31px #f44 solid !important;
}
.coral-red--br-31 {
  border-right: 31px #f44 solid !important;
}
.coral-red--bl-31 {
  border-left: 31px #f44 solid !important;
}
.coral-red--bb-31 {
  border-bottom: 31px #f44 solid !important;
}
.coral-red--by-31 {
  border-top: 31px #f44 solid !important;
  border-bottom: 31px #f44 solid !important;
}
.coral-red--bx-31 {
  border-right: 31px #f44 solid !important;
  border-left: 31px #f44 solid !important;
}
.coral-red--ba-32 {
  border: 32px #f44 solid !important;
}
.coral-red--bt-32 {
  border-top: 32px #f44 solid !important;
}
.coral-red--br-32 {
  border-right: 32px #f44 solid !important;
}
.coral-red--bl-32 {
  border-left: 32px #f44 solid !important;
}
.coral-red--bb-32 {
  border-bottom: 32px #f44 solid !important;
}
.coral-red--by-32 {
  border-top: 32px #f44 solid !important;
  border-bottom: 32px #f44 solid !important;
}
.coral-red--bx-32 {
  border-right: 32px #f44 solid !important;
  border-left: 32px #f44 solid !important;
}
.coral-red--ba-33 {
  border: 33px #f44 solid !important;
}
.coral-red--bt-33 {
  border-top: 33px #f44 solid !important;
}
.coral-red--br-33 {
  border-right: 33px #f44 solid !important;
}
.coral-red--bl-33 {
  border-left: 33px #f44 solid !important;
}
.coral-red--bb-33 {
  border-bottom: 33px #f44 solid !important;
}
.coral-red--by-33 {
  border-top: 33px #f44 solid !important;
  border-bottom: 33px #f44 solid !important;
}
.coral-red--bx-33 {
  border-right: 33px #f44 solid !important;
  border-left: 33px #f44 solid !important;
}
.coral-red--ba-34 {
  border: 34px #f44 solid !important;
}
.coral-red--bt-34 {
  border-top: 34px #f44 solid !important;
}
.coral-red--br-34 {
  border-right: 34px #f44 solid !important;
}
.coral-red--bl-34 {
  border-left: 34px #f44 solid !important;
}
.coral-red--bb-34 {
  border-bottom: 34px #f44 solid !important;
}
.coral-red--by-34 {
  border-top: 34px #f44 solid !important;
  border-bottom: 34px #f44 solid !important;
}
.coral-red--bx-34 {
  border-right: 34px #f44 solid !important;
  border-left: 34px #f44 solid !important;
}
.coral-red--ba-35 {
  border: 35px #f44 solid !important;
}
.coral-red--bt-35 {
  border-top: 35px #f44 solid !important;
}
.coral-red--br-35 {
  border-right: 35px #f44 solid !important;
}
.coral-red--bl-35 {
  border-left: 35px #f44 solid !important;
}
.coral-red--bb-35 {
  border-bottom: 35px #f44 solid !important;
}
.coral-red--by-35 {
  border-top: 35px #f44 solid !important;
  border-bottom: 35px #f44 solid !important;
}
.coral-red--bx-35 {
  border-right: 35px #f44 solid !important;
  border-left: 35px #f44 solid !important;
}
.coral-red--ba-36 {
  border: 36px #f44 solid !important;
}
.coral-red--bt-36 {
  border-top: 36px #f44 solid !important;
}
.coral-red--br-36 {
  border-right: 36px #f44 solid !important;
}
.coral-red--bl-36 {
  border-left: 36px #f44 solid !important;
}
.coral-red--bb-36 {
  border-bottom: 36px #f44 solid !important;
}
.coral-red--by-36 {
  border-top: 36px #f44 solid !important;
  border-bottom: 36px #f44 solid !important;
}
.coral-red--bx-36 {
  border-right: 36px #f44 solid !important;
  border-left: 36px #f44 solid !important;
}
.coral-red--ba-37 {
  border: 37px #f44 solid !important;
}
.coral-red--bt-37 {
  border-top: 37px #f44 solid !important;
}
.coral-red--br-37 {
  border-right: 37px #f44 solid !important;
}
.coral-red--bl-37 {
  border-left: 37px #f44 solid !important;
}
.coral-red--bb-37 {
  border-bottom: 37px #f44 solid !important;
}
.coral-red--by-37 {
  border-top: 37px #f44 solid !important;
  border-bottom: 37px #f44 solid !important;
}
.coral-red--bx-37 {
  border-right: 37px #f44 solid !important;
  border-left: 37px #f44 solid !important;
}
.coral-red--ba-38 {
  border: 38px #f44 solid !important;
}
.coral-red--bt-38 {
  border-top: 38px #f44 solid !important;
}
.coral-red--br-38 {
  border-right: 38px #f44 solid !important;
}
.coral-red--bl-38 {
  border-left: 38px #f44 solid !important;
}
.coral-red--bb-38 {
  border-bottom: 38px #f44 solid !important;
}
.coral-red--by-38 {
  border-top: 38px #f44 solid !important;
  border-bottom: 38px #f44 solid !important;
}
.coral-red--bx-38 {
  border-right: 38px #f44 solid !important;
  border-left: 38px #f44 solid !important;
}
.coral-red--ba-39 {
  border: 39px #f44 solid !important;
}
.coral-red--bt-39 {
  border-top: 39px #f44 solid !important;
}
.coral-red--br-39 {
  border-right: 39px #f44 solid !important;
}
.coral-red--bl-39 {
  border-left: 39px #f44 solid !important;
}
.coral-red--bb-39 {
  border-bottom: 39px #f44 solid !important;
}
.coral-red--by-39 {
  border-top: 39px #f44 solid !important;
  border-bottom: 39px #f44 solid !important;
}
.coral-red--bx-39 {
  border-right: 39px #f44 solid !important;
  border-left: 39px #f44 solid !important;
}
.coral-red--ba-40 {
  border: 40px #f44 solid !important;
}
.coral-red--bt-40 {
  border-top: 40px #f44 solid !important;
}
.coral-red--br-40 {
  border-right: 40px #f44 solid !important;
}
.coral-red--bl-40 {
  border-left: 40px #f44 solid !important;
}
.coral-red--bb-40 {
  border-bottom: 40px #f44 solid !important;
}
.coral-red--by-40 {
  border-top: 40px #f44 solid !important;
  border-bottom: 40px #f44 solid !important;
}
.coral-red--bx-40 {
  border-right: 40px #f44 solid !important;
  border-left: 40px #f44 solid !important;
}
.coral-red--ba-41 {
  border: 41px #f44 solid !important;
}
.coral-red--bt-41 {
  border-top: 41px #f44 solid !important;
}
.coral-red--br-41 {
  border-right: 41px #f44 solid !important;
}
.coral-red--bl-41 {
  border-left: 41px #f44 solid !important;
}
.coral-red--bb-41 {
  border-bottom: 41px #f44 solid !important;
}
.coral-red--by-41 {
  border-top: 41px #f44 solid !important;
  border-bottom: 41px #f44 solid !important;
}
.coral-red--bx-41 {
  border-right: 41px #f44 solid !important;
  border-left: 41px #f44 solid !important;
}
.coral-red--ba-42 {
  border: 42px #f44 solid !important;
}
.coral-red--bt-42 {
  border-top: 42px #f44 solid !important;
}
.coral-red--br-42 {
  border-right: 42px #f44 solid !important;
}
.coral-red--bl-42 {
  border-left: 42px #f44 solid !important;
}
.coral-red--bb-42 {
  border-bottom: 42px #f44 solid !important;
}
.coral-red--by-42 {
  border-top: 42px #f44 solid !important;
  border-bottom: 42px #f44 solid !important;
}
.coral-red--bx-42 {
  border-right: 42px #f44 solid !important;
  border-left: 42px #f44 solid !important;
}
.coral-red--ba-43 {
  border: 43px #f44 solid !important;
}
.coral-red--bt-43 {
  border-top: 43px #f44 solid !important;
}
.coral-red--br-43 {
  border-right: 43px #f44 solid !important;
}
.coral-red--bl-43 {
  border-left: 43px #f44 solid !important;
}
.coral-red--bb-43 {
  border-bottom: 43px #f44 solid !important;
}
.coral-red--by-43 {
  border-top: 43px #f44 solid !important;
  border-bottom: 43px #f44 solid !important;
}
.coral-red--bx-43 {
  border-right: 43px #f44 solid !important;
  border-left: 43px #f44 solid !important;
}
.coral-red--ba-44 {
  border: 44px #f44 solid !important;
}
.coral-red--bt-44 {
  border-top: 44px #f44 solid !important;
}
.coral-red--br-44 {
  border-right: 44px #f44 solid !important;
}
.coral-red--bl-44 {
  border-left: 44px #f44 solid !important;
}
.coral-red--bb-44 {
  border-bottom: 44px #f44 solid !important;
}
.coral-red--by-44 {
  border-top: 44px #f44 solid !important;
  border-bottom: 44px #f44 solid !important;
}
.coral-red--bx-44 {
  border-right: 44px #f44 solid !important;
  border-left: 44px #f44 solid !important;
}
.coral-red--ba-45 {
  border: 45px #f44 solid !important;
}
.coral-red--bt-45 {
  border-top: 45px #f44 solid !important;
}
.coral-red--br-45 {
  border-right: 45px #f44 solid !important;
}
.coral-red--bl-45 {
  border-left: 45px #f44 solid !important;
}
.coral-red--bb-45 {
  border-bottom: 45px #f44 solid !important;
}
.coral-red--by-45 {
  border-top: 45px #f44 solid !important;
  border-bottom: 45px #f44 solid !important;
}
.coral-red--bx-45 {
  border-right: 45px #f44 solid !important;
  border-left: 45px #f44 solid !important;
}
.coral-red--ba-46 {
  border: 46px #f44 solid !important;
}
.coral-red--bt-46 {
  border-top: 46px #f44 solid !important;
}
.coral-red--br-46 {
  border-right: 46px #f44 solid !important;
}
.coral-red--bl-46 {
  border-left: 46px #f44 solid !important;
}
.coral-red--bb-46 {
  border-bottom: 46px #f44 solid !important;
}
.coral-red--by-46 {
  border-top: 46px #f44 solid !important;
  border-bottom: 46px #f44 solid !important;
}
.coral-red--bx-46 {
  border-right: 46px #f44 solid !important;
  border-left: 46px #f44 solid !important;
}
.coral-red--ba-47 {
  border: 47px #f44 solid !important;
}
.coral-red--bt-47 {
  border-top: 47px #f44 solid !important;
}
.coral-red--br-47 {
  border-right: 47px #f44 solid !important;
}
.coral-red--bl-47 {
  border-left: 47px #f44 solid !important;
}
.coral-red--bb-47 {
  border-bottom: 47px #f44 solid !important;
}
.coral-red--by-47 {
  border-top: 47px #f44 solid !important;
  border-bottom: 47px #f44 solid !important;
}
.coral-red--bx-47 {
  border-right: 47px #f44 solid !important;
  border-left: 47px #f44 solid !important;
}
.coral-red--ba-48 {
  border: 48px #f44 solid !important;
}
.coral-red--bt-48 {
  border-top: 48px #f44 solid !important;
}
.coral-red--br-48 {
  border-right: 48px #f44 solid !important;
}
.coral-red--bl-48 {
  border-left: 48px #f44 solid !important;
}
.coral-red--bb-48 {
  border-bottom: 48px #f44 solid !important;
}
.coral-red--by-48 {
  border-top: 48px #f44 solid !important;
  border-bottom: 48px #f44 solid !important;
}
.coral-red--bx-48 {
  border-right: 48px #f44 solid !important;
  border-left: 48px #f44 solid !important;
}
.coral-red--ba-49 {
  border: 49px #f44 solid !important;
}
.coral-red--bt-49 {
  border-top: 49px #f44 solid !important;
}
.coral-red--br-49 {
  border-right: 49px #f44 solid !important;
}
.coral-red--bl-49 {
  border-left: 49px #f44 solid !important;
}
.coral-red--bb-49 {
  border-bottom: 49px #f44 solid !important;
}
.coral-red--by-49 {
  border-top: 49px #f44 solid !important;
  border-bottom: 49px #f44 solid !important;
}
.coral-red--bx-49 {
  border-right: 49px #f44 solid !important;
  border-left: 49px #f44 solid !important;
}
.coral-red--ba-50 {
  border: 50px #f44 solid !important;
}
.coral-red--bt-50 {
  border-top: 50px #f44 solid !important;
}
.coral-red--br-50 {
  border-right: 50px #f44 solid !important;
}
.coral-red--bl-50 {
  border-left: 50px #f44 solid !important;
}
.coral-red--bb-50 {
  border-bottom: 50px #f44 solid !important;
}
.coral-red--by-50 {
  border-top: 50px #f44 solid !important;
  border-bottom: 50px #f44 solid !important;
}
.coral-red--bx-50 {
  border-right: 50px #f44 solid !important;
  border-left: 50px #f44 solid !important;
}
.coral-red--ba-51 {
  border: 51px #f44 solid !important;
}
.coral-red--bt-51 {
  border-top: 51px #f44 solid !important;
}
.coral-red--br-51 {
  border-right: 51px #f44 solid !important;
}
.coral-red--bl-51 {
  border-left: 51px #f44 solid !important;
}
.coral-red--bb-51 {
  border-bottom: 51px #f44 solid !important;
}
.coral-red--by-51 {
  border-top: 51px #f44 solid !important;
  border-bottom: 51px #f44 solid !important;
}
.coral-red--bx-51 {
  border-right: 51px #f44 solid !important;
  border-left: 51px #f44 solid !important;
}
.coral-red--ba-52 {
  border: 52px #f44 solid !important;
}
.coral-red--bt-52 {
  border-top: 52px #f44 solid !important;
}
.coral-red--br-52 {
  border-right: 52px #f44 solid !important;
}
.coral-red--bl-52 {
  border-left: 52px #f44 solid !important;
}
.coral-red--bb-52 {
  border-bottom: 52px #f44 solid !important;
}
.coral-red--by-52 {
  border-top: 52px #f44 solid !important;
  border-bottom: 52px #f44 solid !important;
}
.coral-red--bx-52 {
  border-right: 52px #f44 solid !important;
  border-left: 52px #f44 solid !important;
}
.coral-red--ba-53 {
  border: 53px #f44 solid !important;
}
.coral-red--bt-53 {
  border-top: 53px #f44 solid !important;
}
.coral-red--br-53 {
  border-right: 53px #f44 solid !important;
}
.coral-red--bl-53 {
  border-left: 53px #f44 solid !important;
}
.coral-red--bb-53 {
  border-bottom: 53px #f44 solid !important;
}
.coral-red--by-53 {
  border-top: 53px #f44 solid !important;
  border-bottom: 53px #f44 solid !important;
}
.coral-red--bx-53 {
  border-right: 53px #f44 solid !important;
  border-left: 53px #f44 solid !important;
}
.coral-red--ba-54 {
  border: 54px #f44 solid !important;
}
.coral-red--bt-54 {
  border-top: 54px #f44 solid !important;
}
.coral-red--br-54 {
  border-right: 54px #f44 solid !important;
}
.coral-red--bl-54 {
  border-left: 54px #f44 solid !important;
}
.coral-red--bb-54 {
  border-bottom: 54px #f44 solid !important;
}
.coral-red--by-54 {
  border-top: 54px #f44 solid !important;
  border-bottom: 54px #f44 solid !important;
}
.coral-red--bx-54 {
  border-right: 54px #f44 solid !important;
  border-left: 54px #f44 solid !important;
}
.coral-red--ba-55 {
  border: 55px #f44 solid !important;
}
.coral-red--bt-55 {
  border-top: 55px #f44 solid !important;
}
.coral-red--br-55 {
  border-right: 55px #f44 solid !important;
}
.coral-red--bl-55 {
  border-left: 55px #f44 solid !important;
}
.coral-red--bb-55 {
  border-bottom: 55px #f44 solid !important;
}
.coral-red--by-55 {
  border-top: 55px #f44 solid !important;
  border-bottom: 55px #f44 solid !important;
}
.coral-red--bx-55 {
  border-right: 55px #f44 solid !important;
  border-left: 55px #f44 solid !important;
}
.coral-red--ba-56 {
  border: 56px #f44 solid !important;
}
.coral-red--bt-56 {
  border-top: 56px #f44 solid !important;
}
.coral-red--br-56 {
  border-right: 56px #f44 solid !important;
}
.coral-red--bl-56 {
  border-left: 56px #f44 solid !important;
}
.coral-red--bb-56 {
  border-bottom: 56px #f44 solid !important;
}
.coral-red--by-56 {
  border-top: 56px #f44 solid !important;
  border-bottom: 56px #f44 solid !important;
}
.coral-red--bx-56 {
  border-right: 56px #f44 solid !important;
  border-left: 56px #f44 solid !important;
}
.coral-red--ba-57 {
  border: 57px #f44 solid !important;
}
.coral-red--bt-57 {
  border-top: 57px #f44 solid !important;
}
.coral-red--br-57 {
  border-right: 57px #f44 solid !important;
}
.coral-red--bl-57 {
  border-left: 57px #f44 solid !important;
}
.coral-red--bb-57 {
  border-bottom: 57px #f44 solid !important;
}
.coral-red--by-57 {
  border-top: 57px #f44 solid !important;
  border-bottom: 57px #f44 solid !important;
}
.coral-red--bx-57 {
  border-right: 57px #f44 solid !important;
  border-left: 57px #f44 solid !important;
}
.coral-red--ba-58 {
  border: 58px #f44 solid !important;
}
.coral-red--bt-58 {
  border-top: 58px #f44 solid !important;
}
.coral-red--br-58 {
  border-right: 58px #f44 solid !important;
}
.coral-red--bl-58 {
  border-left: 58px #f44 solid !important;
}
.coral-red--bb-58 {
  border-bottom: 58px #f44 solid !important;
}
.coral-red--by-58 {
  border-top: 58px #f44 solid !important;
  border-bottom: 58px #f44 solid !important;
}
.coral-red--bx-58 {
  border-right: 58px #f44 solid !important;
  border-left: 58px #f44 solid !important;
}
.coral-red--ba-59 {
  border: 59px #f44 solid !important;
}
.coral-red--bt-59 {
  border-top: 59px #f44 solid !important;
}
.coral-red--br-59 {
  border-right: 59px #f44 solid !important;
}
.coral-red--bl-59 {
  border-left: 59px #f44 solid !important;
}
.coral-red--bb-59 {
  border-bottom: 59px #f44 solid !important;
}
.coral-red--by-59 {
  border-top: 59px #f44 solid !important;
  border-bottom: 59px #f44 solid !important;
}
.coral-red--bx-59 {
  border-right: 59px #f44 solid !important;
  border-left: 59px #f44 solid !important;
}
.coral-red--ba-60 {
  border: 60px #f44 solid !important;
}
.coral-red--bt-60 {
  border-top: 60px #f44 solid !important;
}
.coral-red--br-60 {
  border-right: 60px #f44 solid !important;
}
.coral-red--bl-60 {
  border-left: 60px #f44 solid !important;
}
.coral-red--bb-60 {
  border-bottom: 60px #f44 solid !important;
}
.coral-red--by-60 {
  border-top: 60px #f44 solid !important;
  border-bottom: 60px #f44 solid !important;
}
.coral-red--bx-60 {
  border-right: 60px #f44 solid !important;
  border-left: 60px #f44 solid !important;
}
.coral-red--ba-61 {
  border: 61px #f44 solid !important;
}
.coral-red--bt-61 {
  border-top: 61px #f44 solid !important;
}
.coral-red--br-61 {
  border-right: 61px #f44 solid !important;
}
.coral-red--bl-61 {
  border-left: 61px #f44 solid !important;
}
.coral-red--bb-61 {
  border-bottom: 61px #f44 solid !important;
}
.coral-red--by-61 {
  border-top: 61px #f44 solid !important;
  border-bottom: 61px #f44 solid !important;
}
.coral-red--bx-61 {
  border-right: 61px #f44 solid !important;
  border-left: 61px #f44 solid !important;
}
.coral-red--ba-62 {
  border: 62px #f44 solid !important;
}
.coral-red--bt-62 {
  border-top: 62px #f44 solid !important;
}
.coral-red--br-62 {
  border-right: 62px #f44 solid !important;
}
.coral-red--bl-62 {
  border-left: 62px #f44 solid !important;
}
.coral-red--bb-62 {
  border-bottom: 62px #f44 solid !important;
}
.coral-red--by-62 {
  border-top: 62px #f44 solid !important;
  border-bottom: 62px #f44 solid !important;
}
.coral-red--bx-62 {
  border-right: 62px #f44 solid !important;
  border-left: 62px #f44 solid !important;
}
.coral-red--ba-63 {
  border: 63px #f44 solid !important;
}
.coral-red--bt-63 {
  border-top: 63px #f44 solid !important;
}
.coral-red--br-63 {
  border-right: 63px #f44 solid !important;
}
.coral-red--bl-63 {
  border-left: 63px #f44 solid !important;
}
.coral-red--bb-63 {
  border-bottom: 63px #f44 solid !important;
}
.coral-red--by-63 {
  border-top: 63px #f44 solid !important;
  border-bottom: 63px #f44 solid !important;
}
.coral-red--bx-63 {
  border-right: 63px #f44 solid !important;
  border-left: 63px #f44 solid !important;
}
.coral-red--ba-64 {
  border: 64px #f44 solid !important;
}
.coral-red--bt-64 {
  border-top: 64px #f44 solid !important;
}
.coral-red--br-64 {
  border-right: 64px #f44 solid !important;
}
.coral-red--bl-64 {
  border-left: 64px #f44 solid !important;
}
.coral-red--bb-64 {
  border-bottom: 64px #f44 solid !important;
}
.coral-red--by-64 {
  border-top: 64px #f44 solid !important;
  border-bottom: 64px #f44 solid !important;
}
.coral-red--bx-64 {
  border-right: 64px #f44 solid !important;
  border-left: 64px #f44 solid !important;
}
.coral-red--ba-65 {
  border: 65px #f44 solid !important;
}
.coral-red--bt-65 {
  border-top: 65px #f44 solid !important;
}
.coral-red--br-65 {
  border-right: 65px #f44 solid !important;
}
.coral-red--bl-65 {
  border-left: 65px #f44 solid !important;
}
.coral-red--bb-65 {
  border-bottom: 65px #f44 solid !important;
}
.coral-red--by-65 {
  border-top: 65px #f44 solid !important;
  border-bottom: 65px #f44 solid !important;
}
.coral-red--bx-65 {
  border-right: 65px #f44 solid !important;
  border-left: 65px #f44 solid !important;
}
.coral-red--ba-66 {
  border: 66px #f44 solid !important;
}
.coral-red--bt-66 {
  border-top: 66px #f44 solid !important;
}
.coral-red--br-66 {
  border-right: 66px #f44 solid !important;
}
.coral-red--bl-66 {
  border-left: 66px #f44 solid !important;
}
.coral-red--bb-66 {
  border-bottom: 66px #f44 solid !important;
}
.coral-red--by-66 {
  border-top: 66px #f44 solid !important;
  border-bottom: 66px #f44 solid !important;
}
.coral-red--bx-66 {
  border-right: 66px #f44 solid !important;
  border-left: 66px #f44 solid !important;
}
.coral-red--ba-67 {
  border: 67px #f44 solid !important;
}
.coral-red--bt-67 {
  border-top: 67px #f44 solid !important;
}
.coral-red--br-67 {
  border-right: 67px #f44 solid !important;
}
.coral-red--bl-67 {
  border-left: 67px #f44 solid !important;
}
.coral-red--bb-67 {
  border-bottom: 67px #f44 solid !important;
}
.coral-red--by-67 {
  border-top: 67px #f44 solid !important;
  border-bottom: 67px #f44 solid !important;
}
.coral-red--bx-67 {
  border-right: 67px #f44 solid !important;
  border-left: 67px #f44 solid !important;
}
.coral-red--ba-68 {
  border: 68px #f44 solid !important;
}
.coral-red--bt-68 {
  border-top: 68px #f44 solid !important;
}
.coral-red--br-68 {
  border-right: 68px #f44 solid !important;
}
.coral-red--bl-68 {
  border-left: 68px #f44 solid !important;
}
.coral-red--bb-68 {
  border-bottom: 68px #f44 solid !important;
}
.coral-red--by-68 {
  border-top: 68px #f44 solid !important;
  border-bottom: 68px #f44 solid !important;
}
.coral-red--bx-68 {
  border-right: 68px #f44 solid !important;
  border-left: 68px #f44 solid !important;
}
.coral-red--ba-69 {
  border: 69px #f44 solid !important;
}
.coral-red--bt-69 {
  border-top: 69px #f44 solid !important;
}
.coral-red--br-69 {
  border-right: 69px #f44 solid !important;
}
.coral-red--bl-69 {
  border-left: 69px #f44 solid !important;
}
.coral-red--bb-69 {
  border-bottom: 69px #f44 solid !important;
}
.coral-red--by-69 {
  border-top: 69px #f44 solid !important;
  border-bottom: 69px #f44 solid !important;
}
.coral-red--bx-69 {
  border-right: 69px #f44 solid !important;
  border-left: 69px #f44 solid !important;
}
.coral-red--ba-70 {
  border: 70px #f44 solid !important;
}
.coral-red--bt-70 {
  border-top: 70px #f44 solid !important;
}
.coral-red--br-70 {
  border-right: 70px #f44 solid !important;
}
.coral-red--bl-70 {
  border-left: 70px #f44 solid !important;
}
.coral-red--bb-70 {
  border-bottom: 70px #f44 solid !important;
}
.coral-red--by-70 {
  border-top: 70px #f44 solid !important;
  border-bottom: 70px #f44 solid !important;
}
.coral-red--bx-70 {
  border-right: 70px #f44 solid !important;
  border-left: 70px #f44 solid !important;
}
.coral-red--ba-71 {
  border: 71px #f44 solid !important;
}
.coral-red--bt-71 {
  border-top: 71px #f44 solid !important;
}
.coral-red--br-71 {
  border-right: 71px #f44 solid !important;
}
.coral-red--bl-71 {
  border-left: 71px #f44 solid !important;
}
.coral-red--bb-71 {
  border-bottom: 71px #f44 solid !important;
}
.coral-red--by-71 {
  border-top: 71px #f44 solid !important;
  border-bottom: 71px #f44 solid !important;
}
.coral-red--bx-71 {
  border-right: 71px #f44 solid !important;
  border-left: 71px #f44 solid !important;
}
.coral-red--ba-72 {
  border: 72px #f44 solid !important;
}
.coral-red--bt-72 {
  border-top: 72px #f44 solid !important;
}
.coral-red--br-72 {
  border-right: 72px #f44 solid !important;
}
.coral-red--bl-72 {
  border-left: 72px #f44 solid !important;
}
.coral-red--bb-72 {
  border-bottom: 72px #f44 solid !important;
}
.coral-red--by-72 {
  border-top: 72px #f44 solid !important;
  border-bottom: 72px #f44 solid !important;
}
.coral-red--bx-72 {
  border-right: 72px #f44 solid !important;
  border-left: 72px #f44 solid !important;
}
.coral-red--ba-73 {
  border: 73px #f44 solid !important;
}
.coral-red--bt-73 {
  border-top: 73px #f44 solid !important;
}
.coral-red--br-73 {
  border-right: 73px #f44 solid !important;
}
.coral-red--bl-73 {
  border-left: 73px #f44 solid !important;
}
.coral-red--bb-73 {
  border-bottom: 73px #f44 solid !important;
}
.coral-red--by-73 {
  border-top: 73px #f44 solid !important;
  border-bottom: 73px #f44 solid !important;
}
.coral-red--bx-73 {
  border-right: 73px #f44 solid !important;
  border-left: 73px #f44 solid !important;
}
.coral-red--ba-74 {
  border: 74px #f44 solid !important;
}
.coral-red--bt-74 {
  border-top: 74px #f44 solid !important;
}
.coral-red--br-74 {
  border-right: 74px #f44 solid !important;
}
.coral-red--bl-74 {
  border-left: 74px #f44 solid !important;
}
.coral-red--bb-74 {
  border-bottom: 74px #f44 solid !important;
}
.coral-red--by-74 {
  border-top: 74px #f44 solid !important;
  border-bottom: 74px #f44 solid !important;
}
.coral-red--bx-74 {
  border-right: 74px #f44 solid !important;
  border-left: 74px #f44 solid !important;
}
.coral-red--ba-75 {
  border: 75px #f44 solid !important;
}
.coral-red--bt-75 {
  border-top: 75px #f44 solid !important;
}
.coral-red--br-75 {
  border-right: 75px #f44 solid !important;
}
.coral-red--bl-75 {
  border-left: 75px #f44 solid !important;
}
.coral-red--bb-75 {
  border-bottom: 75px #f44 solid !important;
}
.coral-red--by-75 {
  border-top: 75px #f44 solid !important;
  border-bottom: 75px #f44 solid !important;
}
.coral-red--bx-75 {
  border-right: 75px #f44 solid !important;
  border-left: 75px #f44 solid !important;
}
.coral-red--ba-76 {
  border: 76px #f44 solid !important;
}
.coral-red--bt-76 {
  border-top: 76px #f44 solid !important;
}
.coral-red--br-76 {
  border-right: 76px #f44 solid !important;
}
.coral-red--bl-76 {
  border-left: 76px #f44 solid !important;
}
.coral-red--bb-76 {
  border-bottom: 76px #f44 solid !important;
}
.coral-red--by-76 {
  border-top: 76px #f44 solid !important;
  border-bottom: 76px #f44 solid !important;
}
.coral-red--bx-76 {
  border-right: 76px #f44 solid !important;
  border-left: 76px #f44 solid !important;
}
.coral-red--ba-77 {
  border: 77px #f44 solid !important;
}
.coral-red--bt-77 {
  border-top: 77px #f44 solid !important;
}
.coral-red--br-77 {
  border-right: 77px #f44 solid !important;
}
.coral-red--bl-77 {
  border-left: 77px #f44 solid !important;
}
.coral-red--bb-77 {
  border-bottom: 77px #f44 solid !important;
}
.coral-red--by-77 {
  border-top: 77px #f44 solid !important;
  border-bottom: 77px #f44 solid !important;
}
.coral-red--bx-77 {
  border-right: 77px #f44 solid !important;
  border-left: 77px #f44 solid !important;
}
.coral-red--ba-78 {
  border: 78px #f44 solid !important;
}
.coral-red--bt-78 {
  border-top: 78px #f44 solid !important;
}
.coral-red--br-78 {
  border-right: 78px #f44 solid !important;
}
.coral-red--bl-78 {
  border-left: 78px #f44 solid !important;
}
.coral-red--bb-78 {
  border-bottom: 78px #f44 solid !important;
}
.coral-red--by-78 {
  border-top: 78px #f44 solid !important;
  border-bottom: 78px #f44 solid !important;
}
.coral-red--bx-78 {
  border-right: 78px #f44 solid !important;
  border-left: 78px #f44 solid !important;
}
.coral-red--ba-79 {
  border: 79px #f44 solid !important;
}
.coral-red--bt-79 {
  border-top: 79px #f44 solid !important;
}
.coral-red--br-79 {
  border-right: 79px #f44 solid !important;
}
.coral-red--bl-79 {
  border-left: 79px #f44 solid !important;
}
.coral-red--bb-79 {
  border-bottom: 79px #f44 solid !important;
}
.coral-red--by-79 {
  border-top: 79px #f44 solid !important;
  border-bottom: 79px #f44 solid !important;
}
.coral-red--bx-79 {
  border-right: 79px #f44 solid !important;
  border-left: 79px #f44 solid !important;
}
.coral-red--ba-80 {
  border: 80px #f44 solid !important;
}
.coral-red--bt-80 {
  border-top: 80px #f44 solid !important;
}
.coral-red--br-80 {
  border-right: 80px #f44 solid !important;
}
.coral-red--bl-80 {
  border-left: 80px #f44 solid !important;
}
.coral-red--bb-80 {
  border-bottom: 80px #f44 solid !important;
}
.coral-red--by-80 {
  border-top: 80px #f44 solid !important;
  border-bottom: 80px #f44 solid !important;
}
.coral-red--bx-80 {
  border-right: 80px #f44 solid !important;
  border-left: 80px #f44 solid !important;
}
.coral-red--ba-81 {
  border: 81px #f44 solid !important;
}
.coral-red--bt-81 {
  border-top: 81px #f44 solid !important;
}
.coral-red--br-81 {
  border-right: 81px #f44 solid !important;
}
.coral-red--bl-81 {
  border-left: 81px #f44 solid !important;
}
.coral-red--bb-81 {
  border-bottom: 81px #f44 solid !important;
}
.coral-red--by-81 {
  border-top: 81px #f44 solid !important;
  border-bottom: 81px #f44 solid !important;
}
.coral-red--bx-81 {
  border-right: 81px #f44 solid !important;
  border-left: 81px #f44 solid !important;
}
.coral-red--ba-82 {
  border: 82px #f44 solid !important;
}
.coral-red--bt-82 {
  border-top: 82px #f44 solid !important;
}
.coral-red--br-82 {
  border-right: 82px #f44 solid !important;
}
.coral-red--bl-82 {
  border-left: 82px #f44 solid !important;
}
.coral-red--bb-82 {
  border-bottom: 82px #f44 solid !important;
}
.coral-red--by-82 {
  border-top: 82px #f44 solid !important;
  border-bottom: 82px #f44 solid !important;
}
.coral-red--bx-82 {
  border-right: 82px #f44 solid !important;
  border-left: 82px #f44 solid !important;
}
.coral-red--ba-83 {
  border: 83px #f44 solid !important;
}
.coral-red--bt-83 {
  border-top: 83px #f44 solid !important;
}
.coral-red--br-83 {
  border-right: 83px #f44 solid !important;
}
.coral-red--bl-83 {
  border-left: 83px #f44 solid !important;
}
.coral-red--bb-83 {
  border-bottom: 83px #f44 solid !important;
}
.coral-red--by-83 {
  border-top: 83px #f44 solid !important;
  border-bottom: 83px #f44 solid !important;
}
.coral-red--bx-83 {
  border-right: 83px #f44 solid !important;
  border-left: 83px #f44 solid !important;
}
.coral-red--ba-84 {
  border: 84px #f44 solid !important;
}
.coral-red--bt-84 {
  border-top: 84px #f44 solid !important;
}
.coral-red--br-84 {
  border-right: 84px #f44 solid !important;
}
.coral-red--bl-84 {
  border-left: 84px #f44 solid !important;
}
.coral-red--bb-84 {
  border-bottom: 84px #f44 solid !important;
}
.coral-red--by-84 {
  border-top: 84px #f44 solid !important;
  border-bottom: 84px #f44 solid !important;
}
.coral-red--bx-84 {
  border-right: 84px #f44 solid !important;
  border-left: 84px #f44 solid !important;
}
.coral-red--ba-85 {
  border: 85px #f44 solid !important;
}
.coral-red--bt-85 {
  border-top: 85px #f44 solid !important;
}
.coral-red--br-85 {
  border-right: 85px #f44 solid !important;
}
.coral-red--bl-85 {
  border-left: 85px #f44 solid !important;
}
.coral-red--bb-85 {
  border-bottom: 85px #f44 solid !important;
}
.coral-red--by-85 {
  border-top: 85px #f44 solid !important;
  border-bottom: 85px #f44 solid !important;
}
.coral-red--bx-85 {
  border-right: 85px #f44 solid !important;
  border-left: 85px #f44 solid !important;
}
.coral-red--ba-86 {
  border: 86px #f44 solid !important;
}
.coral-red--bt-86 {
  border-top: 86px #f44 solid !important;
}
.coral-red--br-86 {
  border-right: 86px #f44 solid !important;
}
.coral-red--bl-86 {
  border-left: 86px #f44 solid !important;
}
.coral-red--bb-86 {
  border-bottom: 86px #f44 solid !important;
}
.coral-red--by-86 {
  border-top: 86px #f44 solid !important;
  border-bottom: 86px #f44 solid !important;
}
.coral-red--bx-86 {
  border-right: 86px #f44 solid !important;
  border-left: 86px #f44 solid !important;
}
.coral-red--ba-87 {
  border: 87px #f44 solid !important;
}
.coral-red--bt-87 {
  border-top: 87px #f44 solid !important;
}
.coral-red--br-87 {
  border-right: 87px #f44 solid !important;
}
.coral-red--bl-87 {
  border-left: 87px #f44 solid !important;
}
.coral-red--bb-87 {
  border-bottom: 87px #f44 solid !important;
}
.coral-red--by-87 {
  border-top: 87px #f44 solid !important;
  border-bottom: 87px #f44 solid !important;
}
.coral-red--bx-87 {
  border-right: 87px #f44 solid !important;
  border-left: 87px #f44 solid !important;
}
.coral-red--ba-88 {
  border: 88px #f44 solid !important;
}
.coral-red--bt-88 {
  border-top: 88px #f44 solid !important;
}
.coral-red--br-88 {
  border-right: 88px #f44 solid !important;
}
.coral-red--bl-88 {
  border-left: 88px #f44 solid !important;
}
.coral-red--bb-88 {
  border-bottom: 88px #f44 solid !important;
}
.coral-red--by-88 {
  border-top: 88px #f44 solid !important;
  border-bottom: 88px #f44 solid !important;
}
.coral-red--bx-88 {
  border-right: 88px #f44 solid !important;
  border-left: 88px #f44 solid !important;
}
.coral-red--ba-89 {
  border: 89px #f44 solid !important;
}
.coral-red--bt-89 {
  border-top: 89px #f44 solid !important;
}
.coral-red--br-89 {
  border-right: 89px #f44 solid !important;
}
.coral-red--bl-89 {
  border-left: 89px #f44 solid !important;
}
.coral-red--bb-89 {
  border-bottom: 89px #f44 solid !important;
}
.coral-red--by-89 {
  border-top: 89px #f44 solid !important;
  border-bottom: 89px #f44 solid !important;
}
.coral-red--bx-89 {
  border-right: 89px #f44 solid !important;
  border-left: 89px #f44 solid !important;
}
.coral-red--ba-90 {
  border: 90px #f44 solid !important;
}
.coral-red--bt-90 {
  border-top: 90px #f44 solid !important;
}
.coral-red--br-90 {
  border-right: 90px #f44 solid !important;
}
.coral-red--bl-90 {
  border-left: 90px #f44 solid !important;
}
.coral-red--bb-90 {
  border-bottom: 90px #f44 solid !important;
}
.coral-red--by-90 {
  border-top: 90px #f44 solid !important;
  border-bottom: 90px #f44 solid !important;
}
.coral-red--bx-90 {
  border-right: 90px #f44 solid !important;
  border-left: 90px #f44 solid !important;
}
.coral-red--ba-91 {
  border: 91px #f44 solid !important;
}
.coral-red--bt-91 {
  border-top: 91px #f44 solid !important;
}
.coral-red--br-91 {
  border-right: 91px #f44 solid !important;
}
.coral-red--bl-91 {
  border-left: 91px #f44 solid !important;
}
.coral-red--bb-91 {
  border-bottom: 91px #f44 solid !important;
}
.coral-red--by-91 {
  border-top: 91px #f44 solid !important;
  border-bottom: 91px #f44 solid !important;
}
.coral-red--bx-91 {
  border-right: 91px #f44 solid !important;
  border-left: 91px #f44 solid !important;
}
.coral-red--ba-92 {
  border: 92px #f44 solid !important;
}
.coral-red--bt-92 {
  border-top: 92px #f44 solid !important;
}
.coral-red--br-92 {
  border-right: 92px #f44 solid !important;
}
.coral-red--bl-92 {
  border-left: 92px #f44 solid !important;
}
.coral-red--bb-92 {
  border-bottom: 92px #f44 solid !important;
}
.coral-red--by-92 {
  border-top: 92px #f44 solid !important;
  border-bottom: 92px #f44 solid !important;
}
.coral-red--bx-92 {
  border-right: 92px #f44 solid !important;
  border-left: 92px #f44 solid !important;
}
.coral-red--ba-93 {
  border: 93px #f44 solid !important;
}
.coral-red--bt-93 {
  border-top: 93px #f44 solid !important;
}
.coral-red--br-93 {
  border-right: 93px #f44 solid !important;
}
.coral-red--bl-93 {
  border-left: 93px #f44 solid !important;
}
.coral-red--bb-93 {
  border-bottom: 93px #f44 solid !important;
}
.coral-red--by-93 {
  border-top: 93px #f44 solid !important;
  border-bottom: 93px #f44 solid !important;
}
.coral-red--bx-93 {
  border-right: 93px #f44 solid !important;
  border-left: 93px #f44 solid !important;
}
.coral-red--ba-94 {
  border: 94px #f44 solid !important;
}
.coral-red--bt-94 {
  border-top: 94px #f44 solid !important;
}
.coral-red--br-94 {
  border-right: 94px #f44 solid !important;
}
.coral-red--bl-94 {
  border-left: 94px #f44 solid !important;
}
.coral-red--bb-94 {
  border-bottom: 94px #f44 solid !important;
}
.coral-red--by-94 {
  border-top: 94px #f44 solid !important;
  border-bottom: 94px #f44 solid !important;
}
.coral-red--bx-94 {
  border-right: 94px #f44 solid !important;
  border-left: 94px #f44 solid !important;
}
.coral-red--ba-95 {
  border: 95px #f44 solid !important;
}
.coral-red--bt-95 {
  border-top: 95px #f44 solid !important;
}
.coral-red--br-95 {
  border-right: 95px #f44 solid !important;
}
.coral-red--bl-95 {
  border-left: 95px #f44 solid !important;
}
.coral-red--bb-95 {
  border-bottom: 95px #f44 solid !important;
}
.coral-red--by-95 {
  border-top: 95px #f44 solid !important;
  border-bottom: 95px #f44 solid !important;
}
.coral-red--bx-95 {
  border-right: 95px #f44 solid !important;
  border-left: 95px #f44 solid !important;
}
.coral-red--ba-96 {
  border: 96px #f44 solid !important;
}
.coral-red--bt-96 {
  border-top: 96px #f44 solid !important;
}
.coral-red--br-96 {
  border-right: 96px #f44 solid !important;
}
.coral-red--bl-96 {
  border-left: 96px #f44 solid !important;
}
.coral-red--bb-96 {
  border-bottom: 96px #f44 solid !important;
}
.coral-red--by-96 {
  border-top: 96px #f44 solid !important;
  border-bottom: 96px #f44 solid !important;
}
.coral-red--bx-96 {
  border-right: 96px #f44 solid !important;
  border-left: 96px #f44 solid !important;
}
.coral-red--ba-97 {
  border: 97px #f44 solid !important;
}
.coral-red--bt-97 {
  border-top: 97px #f44 solid !important;
}
.coral-red--br-97 {
  border-right: 97px #f44 solid !important;
}
.coral-red--bl-97 {
  border-left: 97px #f44 solid !important;
}
.coral-red--bb-97 {
  border-bottom: 97px #f44 solid !important;
}
.coral-red--by-97 {
  border-top: 97px #f44 solid !important;
  border-bottom: 97px #f44 solid !important;
}
.coral-red--bx-97 {
  border-right: 97px #f44 solid !important;
  border-left: 97px #f44 solid !important;
}
.coral-red--ba-98 {
  border: 98px #f44 solid !important;
}
.coral-red--bt-98 {
  border-top: 98px #f44 solid !important;
}
.coral-red--br-98 {
  border-right: 98px #f44 solid !important;
}
.coral-red--bl-98 {
  border-left: 98px #f44 solid !important;
}
.coral-red--bb-98 {
  border-bottom: 98px #f44 solid !important;
}
.coral-red--by-98 {
  border-top: 98px #f44 solid !important;
  border-bottom: 98px #f44 solid !important;
}
.coral-red--bx-98 {
  border-right: 98px #f44 solid !important;
  border-left: 98px #f44 solid !important;
}
.coral-red--ba-99 {
  border: 99px #f44 solid !important;
}
.coral-red--bt-99 {
  border-top: 99px #f44 solid !important;
}
.coral-red--br-99 {
  border-right: 99px #f44 solid !important;
}
.coral-red--bl-99 {
  border-left: 99px #f44 solid !important;
}
.coral-red--bb-99 {
  border-bottom: 99px #f44 solid !important;
}
.coral-red--by-99 {
  border-top: 99px #f44 solid !important;
  border-bottom: 99px #f44 solid !important;
}
.coral-red--bx-99 {
  border-right: 99px #f44 solid !important;
  border-left: 99px #f44 solid !important;
}
.coral-red--ba-100 {
  border: 100px #f44 solid !important;
}
.coral-red--bt-100 {
  border-top: 100px #f44 solid !important;
}
.coral-red--br-100 {
  border-right: 100px #f44 solid !important;
}
.coral-red--bl-100 {
  border-left: 100px #f44 solid !important;
}
.coral-red--bb-100 {
  border-bottom: 100px #f44 solid !important;
}
.coral-red--by-100 {
  border-top: 100px #f44 solid !important;
  border-bottom: 100px #f44 solid !important;
}
.coral-red--bx-100 {
  border-right: 100px #f44 solid !important;
  border-left: 100px #f44 solid !important;
}
.lucky-point--ba-1 {
  border: 1px #171d64 solid !important;
}
.lucky-point--bt-1 {
  border-top: 1px #171d64 solid !important;
}
.lucky-point--br-1 {
  border-right: 1px #171d64 solid !important;
}
.lucky-point--bl-1 {
  border-left: 1px #171d64 solid !important;
}
.lucky-point--bb-1 {
  border-bottom: 1px #171d64 solid !important;
}
.lucky-point--by-1 {
  border-top: 1px #171d64 solid !important;
  border-bottom: 1px #171d64 solid !important;
}
.lucky-point--bx-1 {
  border-right: 1px #171d64 solid !important;
  border-left: 1px #171d64 solid !important;
}
.lucky-point--ba-2 {
  border: 2px #171d64 solid !important;
}
.lucky-point--bt-2 {
  border-top: 2px #171d64 solid !important;
}
.lucky-point--br-2 {
  border-right: 2px #171d64 solid !important;
}
.lucky-point--bl-2 {
  border-left: 2px #171d64 solid !important;
}
.lucky-point--bb-2 {
  border-bottom: 2px #171d64 solid !important;
}
.lucky-point--by-2 {
  border-top: 2px #171d64 solid !important;
  border-bottom: 2px #171d64 solid !important;
}
.lucky-point--bx-2 {
  border-right: 2px #171d64 solid !important;
  border-left: 2px #171d64 solid !important;
}
.lucky-point--ba-3 {
  border: 3px #171d64 solid !important;
}
.lucky-point--bt-3 {
  border-top: 3px #171d64 solid !important;
}
.lucky-point--br-3 {
  border-right: 3px #171d64 solid !important;
}
.lucky-point--bl-3 {
  border-left: 3px #171d64 solid !important;
}
.lucky-point--bb-3 {
  border-bottom: 3px #171d64 solid !important;
}
.lucky-point--by-3 {
  border-top: 3px #171d64 solid !important;
  border-bottom: 3px #171d64 solid !important;
}
.lucky-point--bx-3 {
  border-right: 3px #171d64 solid !important;
  border-left: 3px #171d64 solid !important;
}
.lucky-point--ba-4 {
  border: 4px #171d64 solid !important;
}
.lucky-point--bt-4 {
  border-top: 4px #171d64 solid !important;
}
.lucky-point--br-4 {
  border-right: 4px #171d64 solid !important;
}
.lucky-point--bl-4 {
  border-left: 4px #171d64 solid !important;
}
.lucky-point--bb-4 {
  border-bottom: 4px #171d64 solid !important;
}
.lucky-point--by-4 {
  border-top: 4px #171d64 solid !important;
  border-bottom: 4px #171d64 solid !important;
}
.lucky-point--bx-4 {
  border-right: 4px #171d64 solid !important;
  border-left: 4px #171d64 solid !important;
}
.lucky-point--ba-5 {
  border: 5px #171d64 solid !important;
}
.lucky-point--bt-5 {
  border-top: 5px #171d64 solid !important;
}
.lucky-point--br-5 {
  border-right: 5px #171d64 solid !important;
}
.lucky-point--bl-5 {
  border-left: 5px #171d64 solid !important;
}
.lucky-point--bb-5 {
  border-bottom: 5px #171d64 solid !important;
}
.lucky-point--by-5 {
  border-top: 5px #171d64 solid !important;
  border-bottom: 5px #171d64 solid !important;
}
.lucky-point--bx-5 {
  border-right: 5px #171d64 solid !important;
  border-left: 5px #171d64 solid !important;
}
.lucky-point--ba-6 {
  border: 6px #171d64 solid !important;
}
.lucky-point--bt-6 {
  border-top: 6px #171d64 solid !important;
}
.lucky-point--br-6 {
  border-right: 6px #171d64 solid !important;
}
.lucky-point--bl-6 {
  border-left: 6px #171d64 solid !important;
}
.lucky-point--bb-6 {
  border-bottom: 6px #171d64 solid !important;
}
.lucky-point--by-6 {
  border-top: 6px #171d64 solid !important;
  border-bottom: 6px #171d64 solid !important;
}
.lucky-point--bx-6 {
  border-right: 6px #171d64 solid !important;
  border-left: 6px #171d64 solid !important;
}
.lucky-point--ba-7 {
  border: 7px #171d64 solid !important;
}
.lucky-point--bt-7 {
  border-top: 7px #171d64 solid !important;
}
.lucky-point--br-7 {
  border-right: 7px #171d64 solid !important;
}
.lucky-point--bl-7 {
  border-left: 7px #171d64 solid !important;
}
.lucky-point--bb-7 {
  border-bottom: 7px #171d64 solid !important;
}
.lucky-point--by-7 {
  border-top: 7px #171d64 solid !important;
  border-bottom: 7px #171d64 solid !important;
}
.lucky-point--bx-7 {
  border-right: 7px #171d64 solid !important;
  border-left: 7px #171d64 solid !important;
}
.lucky-point--ba-8 {
  border: 8px #171d64 solid !important;
}
.lucky-point--bt-8 {
  border-top: 8px #171d64 solid !important;
}
.lucky-point--br-8 {
  border-right: 8px #171d64 solid !important;
}
.lucky-point--bl-8 {
  border-left: 8px #171d64 solid !important;
}
.lucky-point--bb-8 {
  border-bottom: 8px #171d64 solid !important;
}
.lucky-point--by-8 {
  border-top: 8px #171d64 solid !important;
  border-bottom: 8px #171d64 solid !important;
}
.lucky-point--bx-8 {
  border-right: 8px #171d64 solid !important;
  border-left: 8px #171d64 solid !important;
}
.lucky-point--ba-9 {
  border: 9px #171d64 solid !important;
}
.lucky-point--bt-9 {
  border-top: 9px #171d64 solid !important;
}
.lucky-point--br-9 {
  border-right: 9px #171d64 solid !important;
}
.lucky-point--bl-9 {
  border-left: 9px #171d64 solid !important;
}
.lucky-point--bb-9 {
  border-bottom: 9px #171d64 solid !important;
}
.lucky-point--by-9 {
  border-top: 9px #171d64 solid !important;
  border-bottom: 9px #171d64 solid !important;
}
.lucky-point--bx-9 {
  border-right: 9px #171d64 solid !important;
  border-left: 9px #171d64 solid !important;
}
.lucky-point--ba-10 {
  border: 10px #171d64 solid !important;
}
.lucky-point--bt-10 {
  border-top: 10px #171d64 solid !important;
}
.lucky-point--br-10 {
  border-right: 10px #171d64 solid !important;
}
.lucky-point--bl-10 {
  border-left: 10px #171d64 solid !important;
}
.lucky-point--bb-10 {
  border-bottom: 10px #171d64 solid !important;
}
.lucky-point--by-10 {
  border-top: 10px #171d64 solid !important;
  border-bottom: 10px #171d64 solid !important;
}
.lucky-point--bx-10 {
  border-right: 10px #171d64 solid !important;
  border-left: 10px #171d64 solid !important;
}
.lucky-point--ba-11 {
  border: 11px #171d64 solid !important;
}
.lucky-point--bt-11 {
  border-top: 11px #171d64 solid !important;
}
.lucky-point--br-11 {
  border-right: 11px #171d64 solid !important;
}
.lucky-point--bl-11 {
  border-left: 11px #171d64 solid !important;
}
.lucky-point--bb-11 {
  border-bottom: 11px #171d64 solid !important;
}
.lucky-point--by-11 {
  border-top: 11px #171d64 solid !important;
  border-bottom: 11px #171d64 solid !important;
}
.lucky-point--bx-11 {
  border-right: 11px #171d64 solid !important;
  border-left: 11px #171d64 solid !important;
}
.lucky-point--ba-12 {
  border: 12px #171d64 solid !important;
}
.lucky-point--bt-12 {
  border-top: 12px #171d64 solid !important;
}
.lucky-point--br-12 {
  border-right: 12px #171d64 solid !important;
}
.lucky-point--bl-12 {
  border-left: 12px #171d64 solid !important;
}
.lucky-point--bb-12 {
  border-bottom: 12px #171d64 solid !important;
}
.lucky-point--by-12 {
  border-top: 12px #171d64 solid !important;
  border-bottom: 12px #171d64 solid !important;
}
.lucky-point--bx-12 {
  border-right: 12px #171d64 solid !important;
  border-left: 12px #171d64 solid !important;
}
.lucky-point--ba-13 {
  border: 13px #171d64 solid !important;
}
.lucky-point--bt-13 {
  border-top: 13px #171d64 solid !important;
}
.lucky-point--br-13 {
  border-right: 13px #171d64 solid !important;
}
.lucky-point--bl-13 {
  border-left: 13px #171d64 solid !important;
}
.lucky-point--bb-13 {
  border-bottom: 13px #171d64 solid !important;
}
.lucky-point--by-13 {
  border-top: 13px #171d64 solid !important;
  border-bottom: 13px #171d64 solid !important;
}
.lucky-point--bx-13 {
  border-right: 13px #171d64 solid !important;
  border-left: 13px #171d64 solid !important;
}
.lucky-point--ba-14 {
  border: 14px #171d64 solid !important;
}
.lucky-point--bt-14 {
  border-top: 14px #171d64 solid !important;
}
.lucky-point--br-14 {
  border-right: 14px #171d64 solid !important;
}
.lucky-point--bl-14 {
  border-left: 14px #171d64 solid !important;
}
.lucky-point--bb-14 {
  border-bottom: 14px #171d64 solid !important;
}
.lucky-point--by-14 {
  border-top: 14px #171d64 solid !important;
  border-bottom: 14px #171d64 solid !important;
}
.lucky-point--bx-14 {
  border-right: 14px #171d64 solid !important;
  border-left: 14px #171d64 solid !important;
}
.lucky-point--ba-15 {
  border: 15px #171d64 solid !important;
}
.lucky-point--bt-15 {
  border-top: 15px #171d64 solid !important;
}
.lucky-point--br-15 {
  border-right: 15px #171d64 solid !important;
}
.lucky-point--bl-15 {
  border-left: 15px #171d64 solid !important;
}
.lucky-point--bb-15 {
  border-bottom: 15px #171d64 solid !important;
}
.lucky-point--by-15 {
  border-top: 15px #171d64 solid !important;
  border-bottom: 15px #171d64 solid !important;
}
.lucky-point--bx-15 {
  border-right: 15px #171d64 solid !important;
  border-left: 15px #171d64 solid !important;
}
.lucky-point--ba-16 {
  border: 16px #171d64 solid !important;
}
.lucky-point--bt-16 {
  border-top: 16px #171d64 solid !important;
}
.lucky-point--br-16 {
  border-right: 16px #171d64 solid !important;
}
.lucky-point--bl-16 {
  border-left: 16px #171d64 solid !important;
}
.lucky-point--bb-16 {
  border-bottom: 16px #171d64 solid !important;
}
.lucky-point--by-16 {
  border-top: 16px #171d64 solid !important;
  border-bottom: 16px #171d64 solid !important;
}
.lucky-point--bx-16 {
  border-right: 16px #171d64 solid !important;
  border-left: 16px #171d64 solid !important;
}
.lucky-point--ba-17 {
  border: 17px #171d64 solid !important;
}
.lucky-point--bt-17 {
  border-top: 17px #171d64 solid !important;
}
.lucky-point--br-17 {
  border-right: 17px #171d64 solid !important;
}
.lucky-point--bl-17 {
  border-left: 17px #171d64 solid !important;
}
.lucky-point--bb-17 {
  border-bottom: 17px #171d64 solid !important;
}
.lucky-point--by-17 {
  border-top: 17px #171d64 solid !important;
  border-bottom: 17px #171d64 solid !important;
}
.lucky-point--bx-17 {
  border-right: 17px #171d64 solid !important;
  border-left: 17px #171d64 solid !important;
}
.lucky-point--ba-18 {
  border: 18px #171d64 solid !important;
}
.lucky-point--bt-18 {
  border-top: 18px #171d64 solid !important;
}
.lucky-point--br-18 {
  border-right: 18px #171d64 solid !important;
}
.lucky-point--bl-18 {
  border-left: 18px #171d64 solid !important;
}
.lucky-point--bb-18 {
  border-bottom: 18px #171d64 solid !important;
}
.lucky-point--by-18 {
  border-top: 18px #171d64 solid !important;
  border-bottom: 18px #171d64 solid !important;
}
.lucky-point--bx-18 {
  border-right: 18px #171d64 solid !important;
  border-left: 18px #171d64 solid !important;
}
.lucky-point--ba-19 {
  border: 19px #171d64 solid !important;
}
.lucky-point--bt-19 {
  border-top: 19px #171d64 solid !important;
}
.lucky-point--br-19 {
  border-right: 19px #171d64 solid !important;
}
.lucky-point--bl-19 {
  border-left: 19px #171d64 solid !important;
}
.lucky-point--bb-19 {
  border-bottom: 19px #171d64 solid !important;
}
.lucky-point--by-19 {
  border-top: 19px #171d64 solid !important;
  border-bottom: 19px #171d64 solid !important;
}
.lucky-point--bx-19 {
  border-right: 19px #171d64 solid !important;
  border-left: 19px #171d64 solid !important;
}
.lucky-point--ba-20 {
  border: 20px #171d64 solid !important;
}
.lucky-point--bt-20 {
  border-top: 20px #171d64 solid !important;
}
.lucky-point--br-20 {
  border-right: 20px #171d64 solid !important;
}
.lucky-point--bl-20 {
  border-left: 20px #171d64 solid !important;
}
.lucky-point--bb-20 {
  border-bottom: 20px #171d64 solid !important;
}
.lucky-point--by-20 {
  border-top: 20px #171d64 solid !important;
  border-bottom: 20px #171d64 solid !important;
}
.lucky-point--bx-20 {
  border-right: 20px #171d64 solid !important;
  border-left: 20px #171d64 solid !important;
}
.lucky-point--ba-21 {
  border: 21px #171d64 solid !important;
}
.lucky-point--bt-21 {
  border-top: 21px #171d64 solid !important;
}
.lucky-point--br-21 {
  border-right: 21px #171d64 solid !important;
}
.lucky-point--bl-21 {
  border-left: 21px #171d64 solid !important;
}
.lucky-point--bb-21 {
  border-bottom: 21px #171d64 solid !important;
}
.lucky-point--by-21 {
  border-top: 21px #171d64 solid !important;
  border-bottom: 21px #171d64 solid !important;
}
.lucky-point--bx-21 {
  border-right: 21px #171d64 solid !important;
  border-left: 21px #171d64 solid !important;
}
.lucky-point--ba-22 {
  border: 22px #171d64 solid !important;
}
.lucky-point--bt-22 {
  border-top: 22px #171d64 solid !important;
}
.lucky-point--br-22 {
  border-right: 22px #171d64 solid !important;
}
.lucky-point--bl-22 {
  border-left: 22px #171d64 solid !important;
}
.lucky-point--bb-22 {
  border-bottom: 22px #171d64 solid !important;
}
.lucky-point--by-22 {
  border-top: 22px #171d64 solid !important;
  border-bottom: 22px #171d64 solid !important;
}
.lucky-point--bx-22 {
  border-right: 22px #171d64 solid !important;
  border-left: 22px #171d64 solid !important;
}
.lucky-point--ba-23 {
  border: 23px #171d64 solid !important;
}
.lucky-point--bt-23 {
  border-top: 23px #171d64 solid !important;
}
.lucky-point--br-23 {
  border-right: 23px #171d64 solid !important;
}
.lucky-point--bl-23 {
  border-left: 23px #171d64 solid !important;
}
.lucky-point--bb-23 {
  border-bottom: 23px #171d64 solid !important;
}
.lucky-point--by-23 {
  border-top: 23px #171d64 solid !important;
  border-bottom: 23px #171d64 solid !important;
}
.lucky-point--bx-23 {
  border-right: 23px #171d64 solid !important;
  border-left: 23px #171d64 solid !important;
}
.lucky-point--ba-24 {
  border: 24px #171d64 solid !important;
}
.lucky-point--bt-24 {
  border-top: 24px #171d64 solid !important;
}
.lucky-point--br-24 {
  border-right: 24px #171d64 solid !important;
}
.lucky-point--bl-24 {
  border-left: 24px #171d64 solid !important;
}
.lucky-point--bb-24 {
  border-bottom: 24px #171d64 solid !important;
}
.lucky-point--by-24 {
  border-top: 24px #171d64 solid !important;
  border-bottom: 24px #171d64 solid !important;
}
.lucky-point--bx-24 {
  border-right: 24px #171d64 solid !important;
  border-left: 24px #171d64 solid !important;
}
.lucky-point--ba-25 {
  border: 25px #171d64 solid !important;
}
.lucky-point--bt-25 {
  border-top: 25px #171d64 solid !important;
}
.lucky-point--br-25 {
  border-right: 25px #171d64 solid !important;
}
.lucky-point--bl-25 {
  border-left: 25px #171d64 solid !important;
}
.lucky-point--bb-25 {
  border-bottom: 25px #171d64 solid !important;
}
.lucky-point--by-25 {
  border-top: 25px #171d64 solid !important;
  border-bottom: 25px #171d64 solid !important;
}
.lucky-point--bx-25 {
  border-right: 25px #171d64 solid !important;
  border-left: 25px #171d64 solid !important;
}
.lucky-point--ba-26 {
  border: 26px #171d64 solid !important;
}
.lucky-point--bt-26 {
  border-top: 26px #171d64 solid !important;
}
.lucky-point--br-26 {
  border-right: 26px #171d64 solid !important;
}
.lucky-point--bl-26 {
  border-left: 26px #171d64 solid !important;
}
.lucky-point--bb-26 {
  border-bottom: 26px #171d64 solid !important;
}
.lucky-point--by-26 {
  border-top: 26px #171d64 solid !important;
  border-bottom: 26px #171d64 solid !important;
}
.lucky-point--bx-26 {
  border-right: 26px #171d64 solid !important;
  border-left: 26px #171d64 solid !important;
}
.lucky-point--ba-27 {
  border: 27px #171d64 solid !important;
}
.lucky-point--bt-27 {
  border-top: 27px #171d64 solid !important;
}
.lucky-point--br-27 {
  border-right: 27px #171d64 solid !important;
}
.lucky-point--bl-27 {
  border-left: 27px #171d64 solid !important;
}
.lucky-point--bb-27 {
  border-bottom: 27px #171d64 solid !important;
}
.lucky-point--by-27 {
  border-top: 27px #171d64 solid !important;
  border-bottom: 27px #171d64 solid !important;
}
.lucky-point--bx-27 {
  border-right: 27px #171d64 solid !important;
  border-left: 27px #171d64 solid !important;
}
.lucky-point--ba-28 {
  border: 28px #171d64 solid !important;
}
.lucky-point--bt-28 {
  border-top: 28px #171d64 solid !important;
}
.lucky-point--br-28 {
  border-right: 28px #171d64 solid !important;
}
.lucky-point--bl-28 {
  border-left: 28px #171d64 solid !important;
}
.lucky-point--bb-28 {
  border-bottom: 28px #171d64 solid !important;
}
.lucky-point--by-28 {
  border-top: 28px #171d64 solid !important;
  border-bottom: 28px #171d64 solid !important;
}
.lucky-point--bx-28 {
  border-right: 28px #171d64 solid !important;
  border-left: 28px #171d64 solid !important;
}
.lucky-point--ba-29 {
  border: 29px #171d64 solid !important;
}
.lucky-point--bt-29 {
  border-top: 29px #171d64 solid !important;
}
.lucky-point--br-29 {
  border-right: 29px #171d64 solid !important;
}
.lucky-point--bl-29 {
  border-left: 29px #171d64 solid !important;
}
.lucky-point--bb-29 {
  border-bottom: 29px #171d64 solid !important;
}
.lucky-point--by-29 {
  border-top: 29px #171d64 solid !important;
  border-bottom: 29px #171d64 solid !important;
}
.lucky-point--bx-29 {
  border-right: 29px #171d64 solid !important;
  border-left: 29px #171d64 solid !important;
}
.lucky-point--ba-30 {
  border: 30px #171d64 solid !important;
}
.lucky-point--bt-30 {
  border-top: 30px #171d64 solid !important;
}
.lucky-point--br-30 {
  border-right: 30px #171d64 solid !important;
}
.lucky-point--bl-30 {
  border-left: 30px #171d64 solid !important;
}
.lucky-point--bb-30 {
  border-bottom: 30px #171d64 solid !important;
}
.lucky-point--by-30 {
  border-top: 30px #171d64 solid !important;
  border-bottom: 30px #171d64 solid !important;
}
.lucky-point--bx-30 {
  border-right: 30px #171d64 solid !important;
  border-left: 30px #171d64 solid !important;
}
.lucky-point--ba-31 {
  border: 31px #171d64 solid !important;
}
.lucky-point--bt-31 {
  border-top: 31px #171d64 solid !important;
}
.lucky-point--br-31 {
  border-right: 31px #171d64 solid !important;
}
.lucky-point--bl-31 {
  border-left: 31px #171d64 solid !important;
}
.lucky-point--bb-31 {
  border-bottom: 31px #171d64 solid !important;
}
.lucky-point--by-31 {
  border-top: 31px #171d64 solid !important;
  border-bottom: 31px #171d64 solid !important;
}
.lucky-point--bx-31 {
  border-right: 31px #171d64 solid !important;
  border-left: 31px #171d64 solid !important;
}
.lucky-point--ba-32 {
  border: 32px #171d64 solid !important;
}
.lucky-point--bt-32 {
  border-top: 32px #171d64 solid !important;
}
.lucky-point--br-32 {
  border-right: 32px #171d64 solid !important;
}
.lucky-point--bl-32 {
  border-left: 32px #171d64 solid !important;
}
.lucky-point--bb-32 {
  border-bottom: 32px #171d64 solid !important;
}
.lucky-point--by-32 {
  border-top: 32px #171d64 solid !important;
  border-bottom: 32px #171d64 solid !important;
}
.lucky-point--bx-32 {
  border-right: 32px #171d64 solid !important;
  border-left: 32px #171d64 solid !important;
}
.lucky-point--ba-33 {
  border: 33px #171d64 solid !important;
}
.lucky-point--bt-33 {
  border-top: 33px #171d64 solid !important;
}
.lucky-point--br-33 {
  border-right: 33px #171d64 solid !important;
}
.lucky-point--bl-33 {
  border-left: 33px #171d64 solid !important;
}
.lucky-point--bb-33 {
  border-bottom: 33px #171d64 solid !important;
}
.lucky-point--by-33 {
  border-top: 33px #171d64 solid !important;
  border-bottom: 33px #171d64 solid !important;
}
.lucky-point--bx-33 {
  border-right: 33px #171d64 solid !important;
  border-left: 33px #171d64 solid !important;
}
.lucky-point--ba-34 {
  border: 34px #171d64 solid !important;
}
.lucky-point--bt-34 {
  border-top: 34px #171d64 solid !important;
}
.lucky-point--br-34 {
  border-right: 34px #171d64 solid !important;
}
.lucky-point--bl-34 {
  border-left: 34px #171d64 solid !important;
}
.lucky-point--bb-34 {
  border-bottom: 34px #171d64 solid !important;
}
.lucky-point--by-34 {
  border-top: 34px #171d64 solid !important;
  border-bottom: 34px #171d64 solid !important;
}
.lucky-point--bx-34 {
  border-right: 34px #171d64 solid !important;
  border-left: 34px #171d64 solid !important;
}
.lucky-point--ba-35 {
  border: 35px #171d64 solid !important;
}
.lucky-point--bt-35 {
  border-top: 35px #171d64 solid !important;
}
.lucky-point--br-35 {
  border-right: 35px #171d64 solid !important;
}
.lucky-point--bl-35 {
  border-left: 35px #171d64 solid !important;
}
.lucky-point--bb-35 {
  border-bottom: 35px #171d64 solid !important;
}
.lucky-point--by-35 {
  border-top: 35px #171d64 solid !important;
  border-bottom: 35px #171d64 solid !important;
}
.lucky-point--bx-35 {
  border-right: 35px #171d64 solid !important;
  border-left: 35px #171d64 solid !important;
}
.lucky-point--ba-36 {
  border: 36px #171d64 solid !important;
}
.lucky-point--bt-36 {
  border-top: 36px #171d64 solid !important;
}
.lucky-point--br-36 {
  border-right: 36px #171d64 solid !important;
}
.lucky-point--bl-36 {
  border-left: 36px #171d64 solid !important;
}
.lucky-point--bb-36 {
  border-bottom: 36px #171d64 solid !important;
}
.lucky-point--by-36 {
  border-top: 36px #171d64 solid !important;
  border-bottom: 36px #171d64 solid !important;
}
.lucky-point--bx-36 {
  border-right: 36px #171d64 solid !important;
  border-left: 36px #171d64 solid !important;
}
.lucky-point--ba-37 {
  border: 37px #171d64 solid !important;
}
.lucky-point--bt-37 {
  border-top: 37px #171d64 solid !important;
}
.lucky-point--br-37 {
  border-right: 37px #171d64 solid !important;
}
.lucky-point--bl-37 {
  border-left: 37px #171d64 solid !important;
}
.lucky-point--bb-37 {
  border-bottom: 37px #171d64 solid !important;
}
.lucky-point--by-37 {
  border-top: 37px #171d64 solid !important;
  border-bottom: 37px #171d64 solid !important;
}
.lucky-point--bx-37 {
  border-right: 37px #171d64 solid !important;
  border-left: 37px #171d64 solid !important;
}
.lucky-point--ba-38 {
  border: 38px #171d64 solid !important;
}
.lucky-point--bt-38 {
  border-top: 38px #171d64 solid !important;
}
.lucky-point--br-38 {
  border-right: 38px #171d64 solid !important;
}
.lucky-point--bl-38 {
  border-left: 38px #171d64 solid !important;
}
.lucky-point--bb-38 {
  border-bottom: 38px #171d64 solid !important;
}
.lucky-point--by-38 {
  border-top: 38px #171d64 solid !important;
  border-bottom: 38px #171d64 solid !important;
}
.lucky-point--bx-38 {
  border-right: 38px #171d64 solid !important;
  border-left: 38px #171d64 solid !important;
}
.lucky-point--ba-39 {
  border: 39px #171d64 solid !important;
}
.lucky-point--bt-39 {
  border-top: 39px #171d64 solid !important;
}
.lucky-point--br-39 {
  border-right: 39px #171d64 solid !important;
}
.lucky-point--bl-39 {
  border-left: 39px #171d64 solid !important;
}
.lucky-point--bb-39 {
  border-bottom: 39px #171d64 solid !important;
}
.lucky-point--by-39 {
  border-top: 39px #171d64 solid !important;
  border-bottom: 39px #171d64 solid !important;
}
.lucky-point--bx-39 {
  border-right: 39px #171d64 solid !important;
  border-left: 39px #171d64 solid !important;
}
.lucky-point--ba-40 {
  border: 40px #171d64 solid !important;
}
.lucky-point--bt-40 {
  border-top: 40px #171d64 solid !important;
}
.lucky-point--br-40 {
  border-right: 40px #171d64 solid !important;
}
.lucky-point--bl-40 {
  border-left: 40px #171d64 solid !important;
}
.lucky-point--bb-40 {
  border-bottom: 40px #171d64 solid !important;
}
.lucky-point--by-40 {
  border-top: 40px #171d64 solid !important;
  border-bottom: 40px #171d64 solid !important;
}
.lucky-point--bx-40 {
  border-right: 40px #171d64 solid !important;
  border-left: 40px #171d64 solid !important;
}
.lucky-point--ba-41 {
  border: 41px #171d64 solid !important;
}
.lucky-point--bt-41 {
  border-top: 41px #171d64 solid !important;
}
.lucky-point--br-41 {
  border-right: 41px #171d64 solid !important;
}
.lucky-point--bl-41 {
  border-left: 41px #171d64 solid !important;
}
.lucky-point--bb-41 {
  border-bottom: 41px #171d64 solid !important;
}
.lucky-point--by-41 {
  border-top: 41px #171d64 solid !important;
  border-bottom: 41px #171d64 solid !important;
}
.lucky-point--bx-41 {
  border-right: 41px #171d64 solid !important;
  border-left: 41px #171d64 solid !important;
}
.lucky-point--ba-42 {
  border: 42px #171d64 solid !important;
}
.lucky-point--bt-42 {
  border-top: 42px #171d64 solid !important;
}
.lucky-point--br-42 {
  border-right: 42px #171d64 solid !important;
}
.lucky-point--bl-42 {
  border-left: 42px #171d64 solid !important;
}
.lucky-point--bb-42 {
  border-bottom: 42px #171d64 solid !important;
}
.lucky-point--by-42 {
  border-top: 42px #171d64 solid !important;
  border-bottom: 42px #171d64 solid !important;
}
.lucky-point--bx-42 {
  border-right: 42px #171d64 solid !important;
  border-left: 42px #171d64 solid !important;
}
.lucky-point--ba-43 {
  border: 43px #171d64 solid !important;
}
.lucky-point--bt-43 {
  border-top: 43px #171d64 solid !important;
}
.lucky-point--br-43 {
  border-right: 43px #171d64 solid !important;
}
.lucky-point--bl-43 {
  border-left: 43px #171d64 solid !important;
}
.lucky-point--bb-43 {
  border-bottom: 43px #171d64 solid !important;
}
.lucky-point--by-43 {
  border-top: 43px #171d64 solid !important;
  border-bottom: 43px #171d64 solid !important;
}
.lucky-point--bx-43 {
  border-right: 43px #171d64 solid !important;
  border-left: 43px #171d64 solid !important;
}
.lucky-point--ba-44 {
  border: 44px #171d64 solid !important;
}
.lucky-point--bt-44 {
  border-top: 44px #171d64 solid !important;
}
.lucky-point--br-44 {
  border-right: 44px #171d64 solid !important;
}
.lucky-point--bl-44 {
  border-left: 44px #171d64 solid !important;
}
.lucky-point--bb-44 {
  border-bottom: 44px #171d64 solid !important;
}
.lucky-point--by-44 {
  border-top: 44px #171d64 solid !important;
  border-bottom: 44px #171d64 solid !important;
}
.lucky-point--bx-44 {
  border-right: 44px #171d64 solid !important;
  border-left: 44px #171d64 solid !important;
}
.lucky-point--ba-45 {
  border: 45px #171d64 solid !important;
}
.lucky-point--bt-45 {
  border-top: 45px #171d64 solid !important;
}
.lucky-point--br-45 {
  border-right: 45px #171d64 solid !important;
}
.lucky-point--bl-45 {
  border-left: 45px #171d64 solid !important;
}
.lucky-point--bb-45 {
  border-bottom: 45px #171d64 solid !important;
}
.lucky-point--by-45 {
  border-top: 45px #171d64 solid !important;
  border-bottom: 45px #171d64 solid !important;
}
.lucky-point--bx-45 {
  border-right: 45px #171d64 solid !important;
  border-left: 45px #171d64 solid !important;
}
.lucky-point--ba-46 {
  border: 46px #171d64 solid !important;
}
.lucky-point--bt-46 {
  border-top: 46px #171d64 solid !important;
}
.lucky-point--br-46 {
  border-right: 46px #171d64 solid !important;
}
.lucky-point--bl-46 {
  border-left: 46px #171d64 solid !important;
}
.lucky-point--bb-46 {
  border-bottom: 46px #171d64 solid !important;
}
.lucky-point--by-46 {
  border-top: 46px #171d64 solid !important;
  border-bottom: 46px #171d64 solid !important;
}
.lucky-point--bx-46 {
  border-right: 46px #171d64 solid !important;
  border-left: 46px #171d64 solid !important;
}
.lucky-point--ba-47 {
  border: 47px #171d64 solid !important;
}
.lucky-point--bt-47 {
  border-top: 47px #171d64 solid !important;
}
.lucky-point--br-47 {
  border-right: 47px #171d64 solid !important;
}
.lucky-point--bl-47 {
  border-left: 47px #171d64 solid !important;
}
.lucky-point--bb-47 {
  border-bottom: 47px #171d64 solid !important;
}
.lucky-point--by-47 {
  border-top: 47px #171d64 solid !important;
  border-bottom: 47px #171d64 solid !important;
}
.lucky-point--bx-47 {
  border-right: 47px #171d64 solid !important;
  border-left: 47px #171d64 solid !important;
}
.lucky-point--ba-48 {
  border: 48px #171d64 solid !important;
}
.lucky-point--bt-48 {
  border-top: 48px #171d64 solid !important;
}
.lucky-point--br-48 {
  border-right: 48px #171d64 solid !important;
}
.lucky-point--bl-48 {
  border-left: 48px #171d64 solid !important;
}
.lucky-point--bb-48 {
  border-bottom: 48px #171d64 solid !important;
}
.lucky-point--by-48 {
  border-top: 48px #171d64 solid !important;
  border-bottom: 48px #171d64 solid !important;
}
.lucky-point--bx-48 {
  border-right: 48px #171d64 solid !important;
  border-left: 48px #171d64 solid !important;
}
.lucky-point--ba-49 {
  border: 49px #171d64 solid !important;
}
.lucky-point--bt-49 {
  border-top: 49px #171d64 solid !important;
}
.lucky-point--br-49 {
  border-right: 49px #171d64 solid !important;
}
.lucky-point--bl-49 {
  border-left: 49px #171d64 solid !important;
}
.lucky-point--bb-49 {
  border-bottom: 49px #171d64 solid !important;
}
.lucky-point--by-49 {
  border-top: 49px #171d64 solid !important;
  border-bottom: 49px #171d64 solid !important;
}
.lucky-point--bx-49 {
  border-right: 49px #171d64 solid !important;
  border-left: 49px #171d64 solid !important;
}
.lucky-point--ba-50 {
  border: 50px #171d64 solid !important;
}
.lucky-point--bt-50 {
  border-top: 50px #171d64 solid !important;
}
.lucky-point--br-50 {
  border-right: 50px #171d64 solid !important;
}
.lucky-point--bl-50 {
  border-left: 50px #171d64 solid !important;
}
.lucky-point--bb-50 {
  border-bottom: 50px #171d64 solid !important;
}
.lucky-point--by-50 {
  border-top: 50px #171d64 solid !important;
  border-bottom: 50px #171d64 solid !important;
}
.lucky-point--bx-50 {
  border-right: 50px #171d64 solid !important;
  border-left: 50px #171d64 solid !important;
}
.lucky-point--ba-51 {
  border: 51px #171d64 solid !important;
}
.lucky-point--bt-51 {
  border-top: 51px #171d64 solid !important;
}
.lucky-point--br-51 {
  border-right: 51px #171d64 solid !important;
}
.lucky-point--bl-51 {
  border-left: 51px #171d64 solid !important;
}
.lucky-point--bb-51 {
  border-bottom: 51px #171d64 solid !important;
}
.lucky-point--by-51 {
  border-top: 51px #171d64 solid !important;
  border-bottom: 51px #171d64 solid !important;
}
.lucky-point--bx-51 {
  border-right: 51px #171d64 solid !important;
  border-left: 51px #171d64 solid !important;
}
.lucky-point--ba-52 {
  border: 52px #171d64 solid !important;
}
.lucky-point--bt-52 {
  border-top: 52px #171d64 solid !important;
}
.lucky-point--br-52 {
  border-right: 52px #171d64 solid !important;
}
.lucky-point--bl-52 {
  border-left: 52px #171d64 solid !important;
}
.lucky-point--bb-52 {
  border-bottom: 52px #171d64 solid !important;
}
.lucky-point--by-52 {
  border-top: 52px #171d64 solid !important;
  border-bottom: 52px #171d64 solid !important;
}
.lucky-point--bx-52 {
  border-right: 52px #171d64 solid !important;
  border-left: 52px #171d64 solid !important;
}
.lucky-point--ba-53 {
  border: 53px #171d64 solid !important;
}
.lucky-point--bt-53 {
  border-top: 53px #171d64 solid !important;
}
.lucky-point--br-53 {
  border-right: 53px #171d64 solid !important;
}
.lucky-point--bl-53 {
  border-left: 53px #171d64 solid !important;
}
.lucky-point--bb-53 {
  border-bottom: 53px #171d64 solid !important;
}
.lucky-point--by-53 {
  border-top: 53px #171d64 solid !important;
  border-bottom: 53px #171d64 solid !important;
}
.lucky-point--bx-53 {
  border-right: 53px #171d64 solid !important;
  border-left: 53px #171d64 solid !important;
}
.lucky-point--ba-54 {
  border: 54px #171d64 solid !important;
}
.lucky-point--bt-54 {
  border-top: 54px #171d64 solid !important;
}
.lucky-point--br-54 {
  border-right: 54px #171d64 solid !important;
}
.lucky-point--bl-54 {
  border-left: 54px #171d64 solid !important;
}
.lucky-point--bb-54 {
  border-bottom: 54px #171d64 solid !important;
}
.lucky-point--by-54 {
  border-top: 54px #171d64 solid !important;
  border-bottom: 54px #171d64 solid !important;
}
.lucky-point--bx-54 {
  border-right: 54px #171d64 solid !important;
  border-left: 54px #171d64 solid !important;
}
.lucky-point--ba-55 {
  border: 55px #171d64 solid !important;
}
.lucky-point--bt-55 {
  border-top: 55px #171d64 solid !important;
}
.lucky-point--br-55 {
  border-right: 55px #171d64 solid !important;
}
.lucky-point--bl-55 {
  border-left: 55px #171d64 solid !important;
}
.lucky-point--bb-55 {
  border-bottom: 55px #171d64 solid !important;
}
.lucky-point--by-55 {
  border-top: 55px #171d64 solid !important;
  border-bottom: 55px #171d64 solid !important;
}
.lucky-point--bx-55 {
  border-right: 55px #171d64 solid !important;
  border-left: 55px #171d64 solid !important;
}
.lucky-point--ba-56 {
  border: 56px #171d64 solid !important;
}
.lucky-point--bt-56 {
  border-top: 56px #171d64 solid !important;
}
.lucky-point--br-56 {
  border-right: 56px #171d64 solid !important;
}
.lucky-point--bl-56 {
  border-left: 56px #171d64 solid !important;
}
.lucky-point--bb-56 {
  border-bottom: 56px #171d64 solid !important;
}
.lucky-point--by-56 {
  border-top: 56px #171d64 solid !important;
  border-bottom: 56px #171d64 solid !important;
}
.lucky-point--bx-56 {
  border-right: 56px #171d64 solid !important;
  border-left: 56px #171d64 solid !important;
}
.lucky-point--ba-57 {
  border: 57px #171d64 solid !important;
}
.lucky-point--bt-57 {
  border-top: 57px #171d64 solid !important;
}
.lucky-point--br-57 {
  border-right: 57px #171d64 solid !important;
}
.lucky-point--bl-57 {
  border-left: 57px #171d64 solid !important;
}
.lucky-point--bb-57 {
  border-bottom: 57px #171d64 solid !important;
}
.lucky-point--by-57 {
  border-top: 57px #171d64 solid !important;
  border-bottom: 57px #171d64 solid !important;
}
.lucky-point--bx-57 {
  border-right: 57px #171d64 solid !important;
  border-left: 57px #171d64 solid !important;
}
.lucky-point--ba-58 {
  border: 58px #171d64 solid !important;
}
.lucky-point--bt-58 {
  border-top: 58px #171d64 solid !important;
}
.lucky-point--br-58 {
  border-right: 58px #171d64 solid !important;
}
.lucky-point--bl-58 {
  border-left: 58px #171d64 solid !important;
}
.lucky-point--bb-58 {
  border-bottom: 58px #171d64 solid !important;
}
.lucky-point--by-58 {
  border-top: 58px #171d64 solid !important;
  border-bottom: 58px #171d64 solid !important;
}
.lucky-point--bx-58 {
  border-right: 58px #171d64 solid !important;
  border-left: 58px #171d64 solid !important;
}
.lucky-point--ba-59 {
  border: 59px #171d64 solid !important;
}
.lucky-point--bt-59 {
  border-top: 59px #171d64 solid !important;
}
.lucky-point--br-59 {
  border-right: 59px #171d64 solid !important;
}
.lucky-point--bl-59 {
  border-left: 59px #171d64 solid !important;
}
.lucky-point--bb-59 {
  border-bottom: 59px #171d64 solid !important;
}
.lucky-point--by-59 {
  border-top: 59px #171d64 solid !important;
  border-bottom: 59px #171d64 solid !important;
}
.lucky-point--bx-59 {
  border-right: 59px #171d64 solid !important;
  border-left: 59px #171d64 solid !important;
}
.lucky-point--ba-60 {
  border: 60px #171d64 solid !important;
}
.lucky-point--bt-60 {
  border-top: 60px #171d64 solid !important;
}
.lucky-point--br-60 {
  border-right: 60px #171d64 solid !important;
}
.lucky-point--bl-60 {
  border-left: 60px #171d64 solid !important;
}
.lucky-point--bb-60 {
  border-bottom: 60px #171d64 solid !important;
}
.lucky-point--by-60 {
  border-top: 60px #171d64 solid !important;
  border-bottom: 60px #171d64 solid !important;
}
.lucky-point--bx-60 {
  border-right: 60px #171d64 solid !important;
  border-left: 60px #171d64 solid !important;
}
.lucky-point--ba-61 {
  border: 61px #171d64 solid !important;
}
.lucky-point--bt-61 {
  border-top: 61px #171d64 solid !important;
}
.lucky-point--br-61 {
  border-right: 61px #171d64 solid !important;
}
.lucky-point--bl-61 {
  border-left: 61px #171d64 solid !important;
}
.lucky-point--bb-61 {
  border-bottom: 61px #171d64 solid !important;
}
.lucky-point--by-61 {
  border-top: 61px #171d64 solid !important;
  border-bottom: 61px #171d64 solid !important;
}
.lucky-point--bx-61 {
  border-right: 61px #171d64 solid !important;
  border-left: 61px #171d64 solid !important;
}
.lucky-point--ba-62 {
  border: 62px #171d64 solid !important;
}
.lucky-point--bt-62 {
  border-top: 62px #171d64 solid !important;
}
.lucky-point--br-62 {
  border-right: 62px #171d64 solid !important;
}
.lucky-point--bl-62 {
  border-left: 62px #171d64 solid !important;
}
.lucky-point--bb-62 {
  border-bottom: 62px #171d64 solid !important;
}
.lucky-point--by-62 {
  border-top: 62px #171d64 solid !important;
  border-bottom: 62px #171d64 solid !important;
}
.lucky-point--bx-62 {
  border-right: 62px #171d64 solid !important;
  border-left: 62px #171d64 solid !important;
}
.lucky-point--ba-63 {
  border: 63px #171d64 solid !important;
}
.lucky-point--bt-63 {
  border-top: 63px #171d64 solid !important;
}
.lucky-point--br-63 {
  border-right: 63px #171d64 solid !important;
}
.lucky-point--bl-63 {
  border-left: 63px #171d64 solid !important;
}
.lucky-point--bb-63 {
  border-bottom: 63px #171d64 solid !important;
}
.lucky-point--by-63 {
  border-top: 63px #171d64 solid !important;
  border-bottom: 63px #171d64 solid !important;
}
.lucky-point--bx-63 {
  border-right: 63px #171d64 solid !important;
  border-left: 63px #171d64 solid !important;
}
.lucky-point--ba-64 {
  border: 64px #171d64 solid !important;
}
.lucky-point--bt-64 {
  border-top: 64px #171d64 solid !important;
}
.lucky-point--br-64 {
  border-right: 64px #171d64 solid !important;
}
.lucky-point--bl-64 {
  border-left: 64px #171d64 solid !important;
}
.lucky-point--bb-64 {
  border-bottom: 64px #171d64 solid !important;
}
.lucky-point--by-64 {
  border-top: 64px #171d64 solid !important;
  border-bottom: 64px #171d64 solid !important;
}
.lucky-point--bx-64 {
  border-right: 64px #171d64 solid !important;
  border-left: 64px #171d64 solid !important;
}
.lucky-point--ba-65 {
  border: 65px #171d64 solid !important;
}
.lucky-point--bt-65 {
  border-top: 65px #171d64 solid !important;
}
.lucky-point--br-65 {
  border-right: 65px #171d64 solid !important;
}
.lucky-point--bl-65 {
  border-left: 65px #171d64 solid !important;
}
.lucky-point--bb-65 {
  border-bottom: 65px #171d64 solid !important;
}
.lucky-point--by-65 {
  border-top: 65px #171d64 solid !important;
  border-bottom: 65px #171d64 solid !important;
}
.lucky-point--bx-65 {
  border-right: 65px #171d64 solid !important;
  border-left: 65px #171d64 solid !important;
}
.lucky-point--ba-66 {
  border: 66px #171d64 solid !important;
}
.lucky-point--bt-66 {
  border-top: 66px #171d64 solid !important;
}
.lucky-point--br-66 {
  border-right: 66px #171d64 solid !important;
}
.lucky-point--bl-66 {
  border-left: 66px #171d64 solid !important;
}
.lucky-point--bb-66 {
  border-bottom: 66px #171d64 solid !important;
}
.lucky-point--by-66 {
  border-top: 66px #171d64 solid !important;
  border-bottom: 66px #171d64 solid !important;
}
.lucky-point--bx-66 {
  border-right: 66px #171d64 solid !important;
  border-left: 66px #171d64 solid !important;
}
.lucky-point--ba-67 {
  border: 67px #171d64 solid !important;
}
.lucky-point--bt-67 {
  border-top: 67px #171d64 solid !important;
}
.lucky-point--br-67 {
  border-right: 67px #171d64 solid !important;
}
.lucky-point--bl-67 {
  border-left: 67px #171d64 solid !important;
}
.lucky-point--bb-67 {
  border-bottom: 67px #171d64 solid !important;
}
.lucky-point--by-67 {
  border-top: 67px #171d64 solid !important;
  border-bottom: 67px #171d64 solid !important;
}
.lucky-point--bx-67 {
  border-right: 67px #171d64 solid !important;
  border-left: 67px #171d64 solid !important;
}
.lucky-point--ba-68 {
  border: 68px #171d64 solid !important;
}
.lucky-point--bt-68 {
  border-top: 68px #171d64 solid !important;
}
.lucky-point--br-68 {
  border-right: 68px #171d64 solid !important;
}
.lucky-point--bl-68 {
  border-left: 68px #171d64 solid !important;
}
.lucky-point--bb-68 {
  border-bottom: 68px #171d64 solid !important;
}
.lucky-point--by-68 {
  border-top: 68px #171d64 solid !important;
  border-bottom: 68px #171d64 solid !important;
}
.lucky-point--bx-68 {
  border-right: 68px #171d64 solid !important;
  border-left: 68px #171d64 solid !important;
}
.lucky-point--ba-69 {
  border: 69px #171d64 solid !important;
}
.lucky-point--bt-69 {
  border-top: 69px #171d64 solid !important;
}
.lucky-point--br-69 {
  border-right: 69px #171d64 solid !important;
}
.lucky-point--bl-69 {
  border-left: 69px #171d64 solid !important;
}
.lucky-point--bb-69 {
  border-bottom: 69px #171d64 solid !important;
}
.lucky-point--by-69 {
  border-top: 69px #171d64 solid !important;
  border-bottom: 69px #171d64 solid !important;
}
.lucky-point--bx-69 {
  border-right: 69px #171d64 solid !important;
  border-left: 69px #171d64 solid !important;
}
.lucky-point--ba-70 {
  border: 70px #171d64 solid !important;
}
.lucky-point--bt-70 {
  border-top: 70px #171d64 solid !important;
}
.lucky-point--br-70 {
  border-right: 70px #171d64 solid !important;
}
.lucky-point--bl-70 {
  border-left: 70px #171d64 solid !important;
}
.lucky-point--bb-70 {
  border-bottom: 70px #171d64 solid !important;
}
.lucky-point--by-70 {
  border-top: 70px #171d64 solid !important;
  border-bottom: 70px #171d64 solid !important;
}
.lucky-point--bx-70 {
  border-right: 70px #171d64 solid !important;
  border-left: 70px #171d64 solid !important;
}
.lucky-point--ba-71 {
  border: 71px #171d64 solid !important;
}
.lucky-point--bt-71 {
  border-top: 71px #171d64 solid !important;
}
.lucky-point--br-71 {
  border-right: 71px #171d64 solid !important;
}
.lucky-point--bl-71 {
  border-left: 71px #171d64 solid !important;
}
.lucky-point--bb-71 {
  border-bottom: 71px #171d64 solid !important;
}
.lucky-point--by-71 {
  border-top: 71px #171d64 solid !important;
  border-bottom: 71px #171d64 solid !important;
}
.lucky-point--bx-71 {
  border-right: 71px #171d64 solid !important;
  border-left: 71px #171d64 solid !important;
}
.lucky-point--ba-72 {
  border: 72px #171d64 solid !important;
}
.lucky-point--bt-72 {
  border-top: 72px #171d64 solid !important;
}
.lucky-point--br-72 {
  border-right: 72px #171d64 solid !important;
}
.lucky-point--bl-72 {
  border-left: 72px #171d64 solid !important;
}
.lucky-point--bb-72 {
  border-bottom: 72px #171d64 solid !important;
}
.lucky-point--by-72 {
  border-top: 72px #171d64 solid !important;
  border-bottom: 72px #171d64 solid !important;
}
.lucky-point--bx-72 {
  border-right: 72px #171d64 solid !important;
  border-left: 72px #171d64 solid !important;
}
.lucky-point--ba-73 {
  border: 73px #171d64 solid !important;
}
.lucky-point--bt-73 {
  border-top: 73px #171d64 solid !important;
}
.lucky-point--br-73 {
  border-right: 73px #171d64 solid !important;
}
.lucky-point--bl-73 {
  border-left: 73px #171d64 solid !important;
}
.lucky-point--bb-73 {
  border-bottom: 73px #171d64 solid !important;
}
.lucky-point--by-73 {
  border-top: 73px #171d64 solid !important;
  border-bottom: 73px #171d64 solid !important;
}
.lucky-point--bx-73 {
  border-right: 73px #171d64 solid !important;
  border-left: 73px #171d64 solid !important;
}
.lucky-point--ba-74 {
  border: 74px #171d64 solid !important;
}
.lucky-point--bt-74 {
  border-top: 74px #171d64 solid !important;
}
.lucky-point--br-74 {
  border-right: 74px #171d64 solid !important;
}
.lucky-point--bl-74 {
  border-left: 74px #171d64 solid !important;
}
.lucky-point--bb-74 {
  border-bottom: 74px #171d64 solid !important;
}
.lucky-point--by-74 {
  border-top: 74px #171d64 solid !important;
  border-bottom: 74px #171d64 solid !important;
}
.lucky-point--bx-74 {
  border-right: 74px #171d64 solid !important;
  border-left: 74px #171d64 solid !important;
}
.lucky-point--ba-75 {
  border: 75px #171d64 solid !important;
}
.lucky-point--bt-75 {
  border-top: 75px #171d64 solid !important;
}
.lucky-point--br-75 {
  border-right: 75px #171d64 solid !important;
}
.lucky-point--bl-75 {
  border-left: 75px #171d64 solid !important;
}
.lucky-point--bb-75 {
  border-bottom: 75px #171d64 solid !important;
}
.lucky-point--by-75 {
  border-top: 75px #171d64 solid !important;
  border-bottom: 75px #171d64 solid !important;
}
.lucky-point--bx-75 {
  border-right: 75px #171d64 solid !important;
  border-left: 75px #171d64 solid !important;
}
.lucky-point--ba-76 {
  border: 76px #171d64 solid !important;
}
.lucky-point--bt-76 {
  border-top: 76px #171d64 solid !important;
}
.lucky-point--br-76 {
  border-right: 76px #171d64 solid !important;
}
.lucky-point--bl-76 {
  border-left: 76px #171d64 solid !important;
}
.lucky-point--bb-76 {
  border-bottom: 76px #171d64 solid !important;
}
.lucky-point--by-76 {
  border-top: 76px #171d64 solid !important;
  border-bottom: 76px #171d64 solid !important;
}
.lucky-point--bx-76 {
  border-right: 76px #171d64 solid !important;
  border-left: 76px #171d64 solid !important;
}
.lucky-point--ba-77 {
  border: 77px #171d64 solid !important;
}
.lucky-point--bt-77 {
  border-top: 77px #171d64 solid !important;
}
.lucky-point--br-77 {
  border-right: 77px #171d64 solid !important;
}
.lucky-point--bl-77 {
  border-left: 77px #171d64 solid !important;
}
.lucky-point--bb-77 {
  border-bottom: 77px #171d64 solid !important;
}
.lucky-point--by-77 {
  border-top: 77px #171d64 solid !important;
  border-bottom: 77px #171d64 solid !important;
}
.lucky-point--bx-77 {
  border-right: 77px #171d64 solid !important;
  border-left: 77px #171d64 solid !important;
}
.lucky-point--ba-78 {
  border: 78px #171d64 solid !important;
}
.lucky-point--bt-78 {
  border-top: 78px #171d64 solid !important;
}
.lucky-point--br-78 {
  border-right: 78px #171d64 solid !important;
}
.lucky-point--bl-78 {
  border-left: 78px #171d64 solid !important;
}
.lucky-point--bb-78 {
  border-bottom: 78px #171d64 solid !important;
}
.lucky-point--by-78 {
  border-top: 78px #171d64 solid !important;
  border-bottom: 78px #171d64 solid !important;
}
.lucky-point--bx-78 {
  border-right: 78px #171d64 solid !important;
  border-left: 78px #171d64 solid !important;
}
.lucky-point--ba-79 {
  border: 79px #171d64 solid !important;
}
.lucky-point--bt-79 {
  border-top: 79px #171d64 solid !important;
}
.lucky-point--br-79 {
  border-right: 79px #171d64 solid !important;
}
.lucky-point--bl-79 {
  border-left: 79px #171d64 solid !important;
}
.lucky-point--bb-79 {
  border-bottom: 79px #171d64 solid !important;
}
.lucky-point--by-79 {
  border-top: 79px #171d64 solid !important;
  border-bottom: 79px #171d64 solid !important;
}
.lucky-point--bx-79 {
  border-right: 79px #171d64 solid !important;
  border-left: 79px #171d64 solid !important;
}
.lucky-point--ba-80 {
  border: 80px #171d64 solid !important;
}
.lucky-point--bt-80 {
  border-top: 80px #171d64 solid !important;
}
.lucky-point--br-80 {
  border-right: 80px #171d64 solid !important;
}
.lucky-point--bl-80 {
  border-left: 80px #171d64 solid !important;
}
.lucky-point--bb-80 {
  border-bottom: 80px #171d64 solid !important;
}
.lucky-point--by-80 {
  border-top: 80px #171d64 solid !important;
  border-bottom: 80px #171d64 solid !important;
}
.lucky-point--bx-80 {
  border-right: 80px #171d64 solid !important;
  border-left: 80px #171d64 solid !important;
}
.lucky-point--ba-81 {
  border: 81px #171d64 solid !important;
}
.lucky-point--bt-81 {
  border-top: 81px #171d64 solid !important;
}
.lucky-point--br-81 {
  border-right: 81px #171d64 solid !important;
}
.lucky-point--bl-81 {
  border-left: 81px #171d64 solid !important;
}
.lucky-point--bb-81 {
  border-bottom: 81px #171d64 solid !important;
}
.lucky-point--by-81 {
  border-top: 81px #171d64 solid !important;
  border-bottom: 81px #171d64 solid !important;
}
.lucky-point--bx-81 {
  border-right: 81px #171d64 solid !important;
  border-left: 81px #171d64 solid !important;
}
.lucky-point--ba-82 {
  border: 82px #171d64 solid !important;
}
.lucky-point--bt-82 {
  border-top: 82px #171d64 solid !important;
}
.lucky-point--br-82 {
  border-right: 82px #171d64 solid !important;
}
.lucky-point--bl-82 {
  border-left: 82px #171d64 solid !important;
}
.lucky-point--bb-82 {
  border-bottom: 82px #171d64 solid !important;
}
.lucky-point--by-82 {
  border-top: 82px #171d64 solid !important;
  border-bottom: 82px #171d64 solid !important;
}
.lucky-point--bx-82 {
  border-right: 82px #171d64 solid !important;
  border-left: 82px #171d64 solid !important;
}
.lucky-point--ba-83 {
  border: 83px #171d64 solid !important;
}
.lucky-point--bt-83 {
  border-top: 83px #171d64 solid !important;
}
.lucky-point--br-83 {
  border-right: 83px #171d64 solid !important;
}
.lucky-point--bl-83 {
  border-left: 83px #171d64 solid !important;
}
.lucky-point--bb-83 {
  border-bottom: 83px #171d64 solid !important;
}
.lucky-point--by-83 {
  border-top: 83px #171d64 solid !important;
  border-bottom: 83px #171d64 solid !important;
}
.lucky-point--bx-83 {
  border-right: 83px #171d64 solid !important;
  border-left: 83px #171d64 solid !important;
}
.lucky-point--ba-84 {
  border: 84px #171d64 solid !important;
}
.lucky-point--bt-84 {
  border-top: 84px #171d64 solid !important;
}
.lucky-point--br-84 {
  border-right: 84px #171d64 solid !important;
}
.lucky-point--bl-84 {
  border-left: 84px #171d64 solid !important;
}
.lucky-point--bb-84 {
  border-bottom: 84px #171d64 solid !important;
}
.lucky-point--by-84 {
  border-top: 84px #171d64 solid !important;
  border-bottom: 84px #171d64 solid !important;
}
.lucky-point--bx-84 {
  border-right: 84px #171d64 solid !important;
  border-left: 84px #171d64 solid !important;
}
.lucky-point--ba-85 {
  border: 85px #171d64 solid !important;
}
.lucky-point--bt-85 {
  border-top: 85px #171d64 solid !important;
}
.lucky-point--br-85 {
  border-right: 85px #171d64 solid !important;
}
.lucky-point--bl-85 {
  border-left: 85px #171d64 solid !important;
}
.lucky-point--bb-85 {
  border-bottom: 85px #171d64 solid !important;
}
.lucky-point--by-85 {
  border-top: 85px #171d64 solid !important;
  border-bottom: 85px #171d64 solid !important;
}
.lucky-point--bx-85 {
  border-right: 85px #171d64 solid !important;
  border-left: 85px #171d64 solid !important;
}
.lucky-point--ba-86 {
  border: 86px #171d64 solid !important;
}
.lucky-point--bt-86 {
  border-top: 86px #171d64 solid !important;
}
.lucky-point--br-86 {
  border-right: 86px #171d64 solid !important;
}
.lucky-point--bl-86 {
  border-left: 86px #171d64 solid !important;
}
.lucky-point--bb-86 {
  border-bottom: 86px #171d64 solid !important;
}
.lucky-point--by-86 {
  border-top: 86px #171d64 solid !important;
  border-bottom: 86px #171d64 solid !important;
}
.lucky-point--bx-86 {
  border-right: 86px #171d64 solid !important;
  border-left: 86px #171d64 solid !important;
}
.lucky-point--ba-87 {
  border: 87px #171d64 solid !important;
}
.lucky-point--bt-87 {
  border-top: 87px #171d64 solid !important;
}
.lucky-point--br-87 {
  border-right: 87px #171d64 solid !important;
}
.lucky-point--bl-87 {
  border-left: 87px #171d64 solid !important;
}
.lucky-point--bb-87 {
  border-bottom: 87px #171d64 solid !important;
}
.lucky-point--by-87 {
  border-top: 87px #171d64 solid !important;
  border-bottom: 87px #171d64 solid !important;
}
.lucky-point--bx-87 {
  border-right: 87px #171d64 solid !important;
  border-left: 87px #171d64 solid !important;
}
.lucky-point--ba-88 {
  border: 88px #171d64 solid !important;
}
.lucky-point--bt-88 {
  border-top: 88px #171d64 solid !important;
}
.lucky-point--br-88 {
  border-right: 88px #171d64 solid !important;
}
.lucky-point--bl-88 {
  border-left: 88px #171d64 solid !important;
}
.lucky-point--bb-88 {
  border-bottom: 88px #171d64 solid !important;
}
.lucky-point--by-88 {
  border-top: 88px #171d64 solid !important;
  border-bottom: 88px #171d64 solid !important;
}
.lucky-point--bx-88 {
  border-right: 88px #171d64 solid !important;
  border-left: 88px #171d64 solid !important;
}
.lucky-point--ba-89 {
  border: 89px #171d64 solid !important;
}
.lucky-point--bt-89 {
  border-top: 89px #171d64 solid !important;
}
.lucky-point--br-89 {
  border-right: 89px #171d64 solid !important;
}
.lucky-point--bl-89 {
  border-left: 89px #171d64 solid !important;
}
.lucky-point--bb-89 {
  border-bottom: 89px #171d64 solid !important;
}
.lucky-point--by-89 {
  border-top: 89px #171d64 solid !important;
  border-bottom: 89px #171d64 solid !important;
}
.lucky-point--bx-89 {
  border-right: 89px #171d64 solid !important;
  border-left: 89px #171d64 solid !important;
}
.lucky-point--ba-90 {
  border: 90px #171d64 solid !important;
}
.lucky-point--bt-90 {
  border-top: 90px #171d64 solid !important;
}
.lucky-point--br-90 {
  border-right: 90px #171d64 solid !important;
}
.lucky-point--bl-90 {
  border-left: 90px #171d64 solid !important;
}
.lucky-point--bb-90 {
  border-bottom: 90px #171d64 solid !important;
}
.lucky-point--by-90 {
  border-top: 90px #171d64 solid !important;
  border-bottom: 90px #171d64 solid !important;
}
.lucky-point--bx-90 {
  border-right: 90px #171d64 solid !important;
  border-left: 90px #171d64 solid !important;
}
.lucky-point--ba-91 {
  border: 91px #171d64 solid !important;
}
.lucky-point--bt-91 {
  border-top: 91px #171d64 solid !important;
}
.lucky-point--br-91 {
  border-right: 91px #171d64 solid !important;
}
.lucky-point--bl-91 {
  border-left: 91px #171d64 solid !important;
}
.lucky-point--bb-91 {
  border-bottom: 91px #171d64 solid !important;
}
.lucky-point--by-91 {
  border-top: 91px #171d64 solid !important;
  border-bottom: 91px #171d64 solid !important;
}
.lucky-point--bx-91 {
  border-right: 91px #171d64 solid !important;
  border-left: 91px #171d64 solid !important;
}
.lucky-point--ba-92 {
  border: 92px #171d64 solid !important;
}
.lucky-point--bt-92 {
  border-top: 92px #171d64 solid !important;
}
.lucky-point--br-92 {
  border-right: 92px #171d64 solid !important;
}
.lucky-point--bl-92 {
  border-left: 92px #171d64 solid !important;
}
.lucky-point--bb-92 {
  border-bottom: 92px #171d64 solid !important;
}
.lucky-point--by-92 {
  border-top: 92px #171d64 solid !important;
  border-bottom: 92px #171d64 solid !important;
}
.lucky-point--bx-92 {
  border-right: 92px #171d64 solid !important;
  border-left: 92px #171d64 solid !important;
}
.lucky-point--ba-93 {
  border: 93px #171d64 solid !important;
}
.lucky-point--bt-93 {
  border-top: 93px #171d64 solid !important;
}
.lucky-point--br-93 {
  border-right: 93px #171d64 solid !important;
}
.lucky-point--bl-93 {
  border-left: 93px #171d64 solid !important;
}
.lucky-point--bb-93 {
  border-bottom: 93px #171d64 solid !important;
}
.lucky-point--by-93 {
  border-top: 93px #171d64 solid !important;
  border-bottom: 93px #171d64 solid !important;
}
.lucky-point--bx-93 {
  border-right: 93px #171d64 solid !important;
  border-left: 93px #171d64 solid !important;
}
.lucky-point--ba-94 {
  border: 94px #171d64 solid !important;
}
.lucky-point--bt-94 {
  border-top: 94px #171d64 solid !important;
}
.lucky-point--br-94 {
  border-right: 94px #171d64 solid !important;
}
.lucky-point--bl-94 {
  border-left: 94px #171d64 solid !important;
}
.lucky-point--bb-94 {
  border-bottom: 94px #171d64 solid !important;
}
.lucky-point--by-94 {
  border-top: 94px #171d64 solid !important;
  border-bottom: 94px #171d64 solid !important;
}
.lucky-point--bx-94 {
  border-right: 94px #171d64 solid !important;
  border-left: 94px #171d64 solid !important;
}
.lucky-point--ba-95 {
  border: 95px #171d64 solid !important;
}
.lucky-point--bt-95 {
  border-top: 95px #171d64 solid !important;
}
.lucky-point--br-95 {
  border-right: 95px #171d64 solid !important;
}
.lucky-point--bl-95 {
  border-left: 95px #171d64 solid !important;
}
.lucky-point--bb-95 {
  border-bottom: 95px #171d64 solid !important;
}
.lucky-point--by-95 {
  border-top: 95px #171d64 solid !important;
  border-bottom: 95px #171d64 solid !important;
}
.lucky-point--bx-95 {
  border-right: 95px #171d64 solid !important;
  border-left: 95px #171d64 solid !important;
}
.lucky-point--ba-96 {
  border: 96px #171d64 solid !important;
}
.lucky-point--bt-96 {
  border-top: 96px #171d64 solid !important;
}
.lucky-point--br-96 {
  border-right: 96px #171d64 solid !important;
}
.lucky-point--bl-96 {
  border-left: 96px #171d64 solid !important;
}
.lucky-point--bb-96 {
  border-bottom: 96px #171d64 solid !important;
}
.lucky-point--by-96 {
  border-top: 96px #171d64 solid !important;
  border-bottom: 96px #171d64 solid !important;
}
.lucky-point--bx-96 {
  border-right: 96px #171d64 solid !important;
  border-left: 96px #171d64 solid !important;
}
.lucky-point--ba-97 {
  border: 97px #171d64 solid !important;
}
.lucky-point--bt-97 {
  border-top: 97px #171d64 solid !important;
}
.lucky-point--br-97 {
  border-right: 97px #171d64 solid !important;
}
.lucky-point--bl-97 {
  border-left: 97px #171d64 solid !important;
}
.lucky-point--bb-97 {
  border-bottom: 97px #171d64 solid !important;
}
.lucky-point--by-97 {
  border-top: 97px #171d64 solid !important;
  border-bottom: 97px #171d64 solid !important;
}
.lucky-point--bx-97 {
  border-right: 97px #171d64 solid !important;
  border-left: 97px #171d64 solid !important;
}
.lucky-point--ba-98 {
  border: 98px #171d64 solid !important;
}
.lucky-point--bt-98 {
  border-top: 98px #171d64 solid !important;
}
.lucky-point--br-98 {
  border-right: 98px #171d64 solid !important;
}
.lucky-point--bl-98 {
  border-left: 98px #171d64 solid !important;
}
.lucky-point--bb-98 {
  border-bottom: 98px #171d64 solid !important;
}
.lucky-point--by-98 {
  border-top: 98px #171d64 solid !important;
  border-bottom: 98px #171d64 solid !important;
}
.lucky-point--bx-98 {
  border-right: 98px #171d64 solid !important;
  border-left: 98px #171d64 solid !important;
}
.lucky-point--ba-99 {
  border: 99px #171d64 solid !important;
}
.lucky-point--bt-99 {
  border-top: 99px #171d64 solid !important;
}
.lucky-point--br-99 {
  border-right: 99px #171d64 solid !important;
}
.lucky-point--bl-99 {
  border-left: 99px #171d64 solid !important;
}
.lucky-point--bb-99 {
  border-bottom: 99px #171d64 solid !important;
}
.lucky-point--by-99 {
  border-top: 99px #171d64 solid !important;
  border-bottom: 99px #171d64 solid !important;
}
.lucky-point--bx-99 {
  border-right: 99px #171d64 solid !important;
  border-left: 99px #171d64 solid !important;
}
.lucky-point--ba-100 {
  border: 100px #171d64 solid !important;
}
.lucky-point--bt-100 {
  border-top: 100px #171d64 solid !important;
}
.lucky-point--br-100 {
  border-right: 100px #171d64 solid !important;
}
.lucky-point--bl-100 {
  border-left: 100px #171d64 solid !important;
}
.lucky-point--bb-100 {
  border-bottom: 100px #171d64 solid !important;
}
.lucky-point--by-100 {
  border-top: 100px #171d64 solid !important;
  border-bottom: 100px #171d64 solid !important;
}
.lucky-point--bx-100 {
  border-right: 100px #171d64 solid !important;
  border-left: 100px #171d64 solid !important;
}
.mine-shaft--ba-1 {
  border: 1px #2d2d2d solid !important;
}
.mine-shaft--bt-1 {
  border-top: 1px #2d2d2d solid !important;
}
.mine-shaft--br-1 {
  border-right: 1px #2d2d2d solid !important;
}
.mine-shaft--bl-1 {
  border-left: 1px #2d2d2d solid !important;
}
.mine-shaft--bb-1 {
  border-bottom: 1px #2d2d2d solid !important;
}
.mine-shaft--by-1 {
  border-top: 1px #2d2d2d solid !important;
  border-bottom: 1px #2d2d2d solid !important;
}
.mine-shaft--bx-1 {
  border-right: 1px #2d2d2d solid !important;
  border-left: 1px #2d2d2d solid !important;
}
.mine-shaft--ba-2 {
  border: 2px #2d2d2d solid !important;
}
.mine-shaft--bt-2 {
  border-top: 2px #2d2d2d solid !important;
}
.mine-shaft--br-2 {
  border-right: 2px #2d2d2d solid !important;
}
.mine-shaft--bl-2 {
  border-left: 2px #2d2d2d solid !important;
}
.mine-shaft--bb-2 {
  border-bottom: 2px #2d2d2d solid !important;
}
.mine-shaft--by-2 {
  border-top: 2px #2d2d2d solid !important;
  border-bottom: 2px #2d2d2d solid !important;
}
.mine-shaft--bx-2 {
  border-right: 2px #2d2d2d solid !important;
  border-left: 2px #2d2d2d solid !important;
}
.mine-shaft--ba-3 {
  border: 3px #2d2d2d solid !important;
}
.mine-shaft--bt-3 {
  border-top: 3px #2d2d2d solid !important;
}
.mine-shaft--br-3 {
  border-right: 3px #2d2d2d solid !important;
}
.mine-shaft--bl-3 {
  border-left: 3px #2d2d2d solid !important;
}
.mine-shaft--bb-3 {
  border-bottom: 3px #2d2d2d solid !important;
}
.mine-shaft--by-3 {
  border-top: 3px #2d2d2d solid !important;
  border-bottom: 3px #2d2d2d solid !important;
}
.mine-shaft--bx-3 {
  border-right: 3px #2d2d2d solid !important;
  border-left: 3px #2d2d2d solid !important;
}
.mine-shaft--ba-4 {
  border: 4px #2d2d2d solid !important;
}
.mine-shaft--bt-4 {
  border-top: 4px #2d2d2d solid !important;
}
.mine-shaft--br-4 {
  border-right: 4px #2d2d2d solid !important;
}
.mine-shaft--bl-4 {
  border-left: 4px #2d2d2d solid !important;
}
.mine-shaft--bb-4 {
  border-bottom: 4px #2d2d2d solid !important;
}
.mine-shaft--by-4 {
  border-top: 4px #2d2d2d solid !important;
  border-bottom: 4px #2d2d2d solid !important;
}
.mine-shaft--bx-4 {
  border-right: 4px #2d2d2d solid !important;
  border-left: 4px #2d2d2d solid !important;
}
.mine-shaft--ba-5 {
  border: 5px #2d2d2d solid !important;
}
.mine-shaft--bt-5 {
  border-top: 5px #2d2d2d solid !important;
}
.mine-shaft--br-5 {
  border-right: 5px #2d2d2d solid !important;
}
.mine-shaft--bl-5 {
  border-left: 5px #2d2d2d solid !important;
}
.mine-shaft--bb-5 {
  border-bottom: 5px #2d2d2d solid !important;
}
.mine-shaft--by-5 {
  border-top: 5px #2d2d2d solid !important;
  border-bottom: 5px #2d2d2d solid !important;
}
.mine-shaft--bx-5 {
  border-right: 5px #2d2d2d solid !important;
  border-left: 5px #2d2d2d solid !important;
}
.mine-shaft--ba-6 {
  border: 6px #2d2d2d solid !important;
}
.mine-shaft--bt-6 {
  border-top: 6px #2d2d2d solid !important;
}
.mine-shaft--br-6 {
  border-right: 6px #2d2d2d solid !important;
}
.mine-shaft--bl-6 {
  border-left: 6px #2d2d2d solid !important;
}
.mine-shaft--bb-6 {
  border-bottom: 6px #2d2d2d solid !important;
}
.mine-shaft--by-6 {
  border-top: 6px #2d2d2d solid !important;
  border-bottom: 6px #2d2d2d solid !important;
}
.mine-shaft--bx-6 {
  border-right: 6px #2d2d2d solid !important;
  border-left: 6px #2d2d2d solid !important;
}
.mine-shaft--ba-7 {
  border: 7px #2d2d2d solid !important;
}
.mine-shaft--bt-7 {
  border-top: 7px #2d2d2d solid !important;
}
.mine-shaft--br-7 {
  border-right: 7px #2d2d2d solid !important;
}
.mine-shaft--bl-7 {
  border-left: 7px #2d2d2d solid !important;
}
.mine-shaft--bb-7 {
  border-bottom: 7px #2d2d2d solid !important;
}
.mine-shaft--by-7 {
  border-top: 7px #2d2d2d solid !important;
  border-bottom: 7px #2d2d2d solid !important;
}
.mine-shaft--bx-7 {
  border-right: 7px #2d2d2d solid !important;
  border-left: 7px #2d2d2d solid !important;
}
.mine-shaft--ba-8 {
  border: 8px #2d2d2d solid !important;
}
.mine-shaft--bt-8 {
  border-top: 8px #2d2d2d solid !important;
}
.mine-shaft--br-8 {
  border-right: 8px #2d2d2d solid !important;
}
.mine-shaft--bl-8 {
  border-left: 8px #2d2d2d solid !important;
}
.mine-shaft--bb-8 {
  border-bottom: 8px #2d2d2d solid !important;
}
.mine-shaft--by-8 {
  border-top: 8px #2d2d2d solid !important;
  border-bottom: 8px #2d2d2d solid !important;
}
.mine-shaft--bx-8 {
  border-right: 8px #2d2d2d solid !important;
  border-left: 8px #2d2d2d solid !important;
}
.mine-shaft--ba-9 {
  border: 9px #2d2d2d solid !important;
}
.mine-shaft--bt-9 {
  border-top: 9px #2d2d2d solid !important;
}
.mine-shaft--br-9 {
  border-right: 9px #2d2d2d solid !important;
}
.mine-shaft--bl-9 {
  border-left: 9px #2d2d2d solid !important;
}
.mine-shaft--bb-9 {
  border-bottom: 9px #2d2d2d solid !important;
}
.mine-shaft--by-9 {
  border-top: 9px #2d2d2d solid !important;
  border-bottom: 9px #2d2d2d solid !important;
}
.mine-shaft--bx-9 {
  border-right: 9px #2d2d2d solid !important;
  border-left: 9px #2d2d2d solid !important;
}
.mine-shaft--ba-10 {
  border: 10px #2d2d2d solid !important;
}
.mine-shaft--bt-10 {
  border-top: 10px #2d2d2d solid !important;
}
.mine-shaft--br-10 {
  border-right: 10px #2d2d2d solid !important;
}
.mine-shaft--bl-10 {
  border-left: 10px #2d2d2d solid !important;
}
.mine-shaft--bb-10 {
  border-bottom: 10px #2d2d2d solid !important;
}
.mine-shaft--by-10 {
  border-top: 10px #2d2d2d solid !important;
  border-bottom: 10px #2d2d2d solid !important;
}
.mine-shaft--bx-10 {
  border-right: 10px #2d2d2d solid !important;
  border-left: 10px #2d2d2d solid !important;
}
.mine-shaft--ba-11 {
  border: 11px #2d2d2d solid !important;
}
.mine-shaft--bt-11 {
  border-top: 11px #2d2d2d solid !important;
}
.mine-shaft--br-11 {
  border-right: 11px #2d2d2d solid !important;
}
.mine-shaft--bl-11 {
  border-left: 11px #2d2d2d solid !important;
}
.mine-shaft--bb-11 {
  border-bottom: 11px #2d2d2d solid !important;
}
.mine-shaft--by-11 {
  border-top: 11px #2d2d2d solid !important;
  border-bottom: 11px #2d2d2d solid !important;
}
.mine-shaft--bx-11 {
  border-right: 11px #2d2d2d solid !important;
  border-left: 11px #2d2d2d solid !important;
}
.mine-shaft--ba-12 {
  border: 12px #2d2d2d solid !important;
}
.mine-shaft--bt-12 {
  border-top: 12px #2d2d2d solid !important;
}
.mine-shaft--br-12 {
  border-right: 12px #2d2d2d solid !important;
}
.mine-shaft--bl-12 {
  border-left: 12px #2d2d2d solid !important;
}
.mine-shaft--bb-12 {
  border-bottom: 12px #2d2d2d solid !important;
}
.mine-shaft--by-12 {
  border-top: 12px #2d2d2d solid !important;
  border-bottom: 12px #2d2d2d solid !important;
}
.mine-shaft--bx-12 {
  border-right: 12px #2d2d2d solid !important;
  border-left: 12px #2d2d2d solid !important;
}
.mine-shaft--ba-13 {
  border: 13px #2d2d2d solid !important;
}
.mine-shaft--bt-13 {
  border-top: 13px #2d2d2d solid !important;
}
.mine-shaft--br-13 {
  border-right: 13px #2d2d2d solid !important;
}
.mine-shaft--bl-13 {
  border-left: 13px #2d2d2d solid !important;
}
.mine-shaft--bb-13 {
  border-bottom: 13px #2d2d2d solid !important;
}
.mine-shaft--by-13 {
  border-top: 13px #2d2d2d solid !important;
  border-bottom: 13px #2d2d2d solid !important;
}
.mine-shaft--bx-13 {
  border-right: 13px #2d2d2d solid !important;
  border-left: 13px #2d2d2d solid !important;
}
.mine-shaft--ba-14 {
  border: 14px #2d2d2d solid !important;
}
.mine-shaft--bt-14 {
  border-top: 14px #2d2d2d solid !important;
}
.mine-shaft--br-14 {
  border-right: 14px #2d2d2d solid !important;
}
.mine-shaft--bl-14 {
  border-left: 14px #2d2d2d solid !important;
}
.mine-shaft--bb-14 {
  border-bottom: 14px #2d2d2d solid !important;
}
.mine-shaft--by-14 {
  border-top: 14px #2d2d2d solid !important;
  border-bottom: 14px #2d2d2d solid !important;
}
.mine-shaft--bx-14 {
  border-right: 14px #2d2d2d solid !important;
  border-left: 14px #2d2d2d solid !important;
}
.mine-shaft--ba-15 {
  border: 15px #2d2d2d solid !important;
}
.mine-shaft--bt-15 {
  border-top: 15px #2d2d2d solid !important;
}
.mine-shaft--br-15 {
  border-right: 15px #2d2d2d solid !important;
}
.mine-shaft--bl-15 {
  border-left: 15px #2d2d2d solid !important;
}
.mine-shaft--bb-15 {
  border-bottom: 15px #2d2d2d solid !important;
}
.mine-shaft--by-15 {
  border-top: 15px #2d2d2d solid !important;
  border-bottom: 15px #2d2d2d solid !important;
}
.mine-shaft--bx-15 {
  border-right: 15px #2d2d2d solid !important;
  border-left: 15px #2d2d2d solid !important;
}
.mine-shaft--ba-16 {
  border: 16px #2d2d2d solid !important;
}
.mine-shaft--bt-16 {
  border-top: 16px #2d2d2d solid !important;
}
.mine-shaft--br-16 {
  border-right: 16px #2d2d2d solid !important;
}
.mine-shaft--bl-16 {
  border-left: 16px #2d2d2d solid !important;
}
.mine-shaft--bb-16 {
  border-bottom: 16px #2d2d2d solid !important;
}
.mine-shaft--by-16 {
  border-top: 16px #2d2d2d solid !important;
  border-bottom: 16px #2d2d2d solid !important;
}
.mine-shaft--bx-16 {
  border-right: 16px #2d2d2d solid !important;
  border-left: 16px #2d2d2d solid !important;
}
.mine-shaft--ba-17 {
  border: 17px #2d2d2d solid !important;
}
.mine-shaft--bt-17 {
  border-top: 17px #2d2d2d solid !important;
}
.mine-shaft--br-17 {
  border-right: 17px #2d2d2d solid !important;
}
.mine-shaft--bl-17 {
  border-left: 17px #2d2d2d solid !important;
}
.mine-shaft--bb-17 {
  border-bottom: 17px #2d2d2d solid !important;
}
.mine-shaft--by-17 {
  border-top: 17px #2d2d2d solid !important;
  border-bottom: 17px #2d2d2d solid !important;
}
.mine-shaft--bx-17 {
  border-right: 17px #2d2d2d solid !important;
  border-left: 17px #2d2d2d solid !important;
}
.mine-shaft--ba-18 {
  border: 18px #2d2d2d solid !important;
}
.mine-shaft--bt-18 {
  border-top: 18px #2d2d2d solid !important;
}
.mine-shaft--br-18 {
  border-right: 18px #2d2d2d solid !important;
}
.mine-shaft--bl-18 {
  border-left: 18px #2d2d2d solid !important;
}
.mine-shaft--bb-18 {
  border-bottom: 18px #2d2d2d solid !important;
}
.mine-shaft--by-18 {
  border-top: 18px #2d2d2d solid !important;
  border-bottom: 18px #2d2d2d solid !important;
}
.mine-shaft--bx-18 {
  border-right: 18px #2d2d2d solid !important;
  border-left: 18px #2d2d2d solid !important;
}
.mine-shaft--ba-19 {
  border: 19px #2d2d2d solid !important;
}
.mine-shaft--bt-19 {
  border-top: 19px #2d2d2d solid !important;
}
.mine-shaft--br-19 {
  border-right: 19px #2d2d2d solid !important;
}
.mine-shaft--bl-19 {
  border-left: 19px #2d2d2d solid !important;
}
.mine-shaft--bb-19 {
  border-bottom: 19px #2d2d2d solid !important;
}
.mine-shaft--by-19 {
  border-top: 19px #2d2d2d solid !important;
  border-bottom: 19px #2d2d2d solid !important;
}
.mine-shaft--bx-19 {
  border-right: 19px #2d2d2d solid !important;
  border-left: 19px #2d2d2d solid !important;
}
.mine-shaft--ba-20 {
  border: 20px #2d2d2d solid !important;
}
.mine-shaft--bt-20 {
  border-top: 20px #2d2d2d solid !important;
}
.mine-shaft--br-20 {
  border-right: 20px #2d2d2d solid !important;
}
.mine-shaft--bl-20 {
  border-left: 20px #2d2d2d solid !important;
}
.mine-shaft--bb-20 {
  border-bottom: 20px #2d2d2d solid !important;
}
.mine-shaft--by-20 {
  border-top: 20px #2d2d2d solid !important;
  border-bottom: 20px #2d2d2d solid !important;
}
.mine-shaft--bx-20 {
  border-right: 20px #2d2d2d solid !important;
  border-left: 20px #2d2d2d solid !important;
}
.mine-shaft--ba-21 {
  border: 21px #2d2d2d solid !important;
}
.mine-shaft--bt-21 {
  border-top: 21px #2d2d2d solid !important;
}
.mine-shaft--br-21 {
  border-right: 21px #2d2d2d solid !important;
}
.mine-shaft--bl-21 {
  border-left: 21px #2d2d2d solid !important;
}
.mine-shaft--bb-21 {
  border-bottom: 21px #2d2d2d solid !important;
}
.mine-shaft--by-21 {
  border-top: 21px #2d2d2d solid !important;
  border-bottom: 21px #2d2d2d solid !important;
}
.mine-shaft--bx-21 {
  border-right: 21px #2d2d2d solid !important;
  border-left: 21px #2d2d2d solid !important;
}
.mine-shaft--ba-22 {
  border: 22px #2d2d2d solid !important;
}
.mine-shaft--bt-22 {
  border-top: 22px #2d2d2d solid !important;
}
.mine-shaft--br-22 {
  border-right: 22px #2d2d2d solid !important;
}
.mine-shaft--bl-22 {
  border-left: 22px #2d2d2d solid !important;
}
.mine-shaft--bb-22 {
  border-bottom: 22px #2d2d2d solid !important;
}
.mine-shaft--by-22 {
  border-top: 22px #2d2d2d solid !important;
  border-bottom: 22px #2d2d2d solid !important;
}
.mine-shaft--bx-22 {
  border-right: 22px #2d2d2d solid !important;
  border-left: 22px #2d2d2d solid !important;
}
.mine-shaft--ba-23 {
  border: 23px #2d2d2d solid !important;
}
.mine-shaft--bt-23 {
  border-top: 23px #2d2d2d solid !important;
}
.mine-shaft--br-23 {
  border-right: 23px #2d2d2d solid !important;
}
.mine-shaft--bl-23 {
  border-left: 23px #2d2d2d solid !important;
}
.mine-shaft--bb-23 {
  border-bottom: 23px #2d2d2d solid !important;
}
.mine-shaft--by-23 {
  border-top: 23px #2d2d2d solid !important;
  border-bottom: 23px #2d2d2d solid !important;
}
.mine-shaft--bx-23 {
  border-right: 23px #2d2d2d solid !important;
  border-left: 23px #2d2d2d solid !important;
}
.mine-shaft--ba-24 {
  border: 24px #2d2d2d solid !important;
}
.mine-shaft--bt-24 {
  border-top: 24px #2d2d2d solid !important;
}
.mine-shaft--br-24 {
  border-right: 24px #2d2d2d solid !important;
}
.mine-shaft--bl-24 {
  border-left: 24px #2d2d2d solid !important;
}
.mine-shaft--bb-24 {
  border-bottom: 24px #2d2d2d solid !important;
}
.mine-shaft--by-24 {
  border-top: 24px #2d2d2d solid !important;
  border-bottom: 24px #2d2d2d solid !important;
}
.mine-shaft--bx-24 {
  border-right: 24px #2d2d2d solid !important;
  border-left: 24px #2d2d2d solid !important;
}
.mine-shaft--ba-25 {
  border: 25px #2d2d2d solid !important;
}
.mine-shaft--bt-25 {
  border-top: 25px #2d2d2d solid !important;
}
.mine-shaft--br-25 {
  border-right: 25px #2d2d2d solid !important;
}
.mine-shaft--bl-25 {
  border-left: 25px #2d2d2d solid !important;
}
.mine-shaft--bb-25 {
  border-bottom: 25px #2d2d2d solid !important;
}
.mine-shaft--by-25 {
  border-top: 25px #2d2d2d solid !important;
  border-bottom: 25px #2d2d2d solid !important;
}
.mine-shaft--bx-25 {
  border-right: 25px #2d2d2d solid !important;
  border-left: 25px #2d2d2d solid !important;
}
.mine-shaft--ba-26 {
  border: 26px #2d2d2d solid !important;
}
.mine-shaft--bt-26 {
  border-top: 26px #2d2d2d solid !important;
}
.mine-shaft--br-26 {
  border-right: 26px #2d2d2d solid !important;
}
.mine-shaft--bl-26 {
  border-left: 26px #2d2d2d solid !important;
}
.mine-shaft--bb-26 {
  border-bottom: 26px #2d2d2d solid !important;
}
.mine-shaft--by-26 {
  border-top: 26px #2d2d2d solid !important;
  border-bottom: 26px #2d2d2d solid !important;
}
.mine-shaft--bx-26 {
  border-right: 26px #2d2d2d solid !important;
  border-left: 26px #2d2d2d solid !important;
}
.mine-shaft--ba-27 {
  border: 27px #2d2d2d solid !important;
}
.mine-shaft--bt-27 {
  border-top: 27px #2d2d2d solid !important;
}
.mine-shaft--br-27 {
  border-right: 27px #2d2d2d solid !important;
}
.mine-shaft--bl-27 {
  border-left: 27px #2d2d2d solid !important;
}
.mine-shaft--bb-27 {
  border-bottom: 27px #2d2d2d solid !important;
}
.mine-shaft--by-27 {
  border-top: 27px #2d2d2d solid !important;
  border-bottom: 27px #2d2d2d solid !important;
}
.mine-shaft--bx-27 {
  border-right: 27px #2d2d2d solid !important;
  border-left: 27px #2d2d2d solid !important;
}
.mine-shaft--ba-28 {
  border: 28px #2d2d2d solid !important;
}
.mine-shaft--bt-28 {
  border-top: 28px #2d2d2d solid !important;
}
.mine-shaft--br-28 {
  border-right: 28px #2d2d2d solid !important;
}
.mine-shaft--bl-28 {
  border-left: 28px #2d2d2d solid !important;
}
.mine-shaft--bb-28 {
  border-bottom: 28px #2d2d2d solid !important;
}
.mine-shaft--by-28 {
  border-top: 28px #2d2d2d solid !important;
  border-bottom: 28px #2d2d2d solid !important;
}
.mine-shaft--bx-28 {
  border-right: 28px #2d2d2d solid !important;
  border-left: 28px #2d2d2d solid !important;
}
.mine-shaft--ba-29 {
  border: 29px #2d2d2d solid !important;
}
.mine-shaft--bt-29 {
  border-top: 29px #2d2d2d solid !important;
}
.mine-shaft--br-29 {
  border-right: 29px #2d2d2d solid !important;
}
.mine-shaft--bl-29 {
  border-left: 29px #2d2d2d solid !important;
}
.mine-shaft--bb-29 {
  border-bottom: 29px #2d2d2d solid !important;
}
.mine-shaft--by-29 {
  border-top: 29px #2d2d2d solid !important;
  border-bottom: 29px #2d2d2d solid !important;
}
.mine-shaft--bx-29 {
  border-right: 29px #2d2d2d solid !important;
  border-left: 29px #2d2d2d solid !important;
}
.mine-shaft--ba-30 {
  border: 30px #2d2d2d solid !important;
}
.mine-shaft--bt-30 {
  border-top: 30px #2d2d2d solid !important;
}
.mine-shaft--br-30 {
  border-right: 30px #2d2d2d solid !important;
}
.mine-shaft--bl-30 {
  border-left: 30px #2d2d2d solid !important;
}
.mine-shaft--bb-30 {
  border-bottom: 30px #2d2d2d solid !important;
}
.mine-shaft--by-30 {
  border-top: 30px #2d2d2d solid !important;
  border-bottom: 30px #2d2d2d solid !important;
}
.mine-shaft--bx-30 {
  border-right: 30px #2d2d2d solid !important;
  border-left: 30px #2d2d2d solid !important;
}
.mine-shaft--ba-31 {
  border: 31px #2d2d2d solid !important;
}
.mine-shaft--bt-31 {
  border-top: 31px #2d2d2d solid !important;
}
.mine-shaft--br-31 {
  border-right: 31px #2d2d2d solid !important;
}
.mine-shaft--bl-31 {
  border-left: 31px #2d2d2d solid !important;
}
.mine-shaft--bb-31 {
  border-bottom: 31px #2d2d2d solid !important;
}
.mine-shaft--by-31 {
  border-top: 31px #2d2d2d solid !important;
  border-bottom: 31px #2d2d2d solid !important;
}
.mine-shaft--bx-31 {
  border-right: 31px #2d2d2d solid !important;
  border-left: 31px #2d2d2d solid !important;
}
.mine-shaft--ba-32 {
  border: 32px #2d2d2d solid !important;
}
.mine-shaft--bt-32 {
  border-top: 32px #2d2d2d solid !important;
}
.mine-shaft--br-32 {
  border-right: 32px #2d2d2d solid !important;
}
.mine-shaft--bl-32 {
  border-left: 32px #2d2d2d solid !important;
}
.mine-shaft--bb-32 {
  border-bottom: 32px #2d2d2d solid !important;
}
.mine-shaft--by-32 {
  border-top: 32px #2d2d2d solid !important;
  border-bottom: 32px #2d2d2d solid !important;
}
.mine-shaft--bx-32 {
  border-right: 32px #2d2d2d solid !important;
  border-left: 32px #2d2d2d solid !important;
}
.mine-shaft--ba-33 {
  border: 33px #2d2d2d solid !important;
}
.mine-shaft--bt-33 {
  border-top: 33px #2d2d2d solid !important;
}
.mine-shaft--br-33 {
  border-right: 33px #2d2d2d solid !important;
}
.mine-shaft--bl-33 {
  border-left: 33px #2d2d2d solid !important;
}
.mine-shaft--bb-33 {
  border-bottom: 33px #2d2d2d solid !important;
}
.mine-shaft--by-33 {
  border-top: 33px #2d2d2d solid !important;
  border-bottom: 33px #2d2d2d solid !important;
}
.mine-shaft--bx-33 {
  border-right: 33px #2d2d2d solid !important;
  border-left: 33px #2d2d2d solid !important;
}
.mine-shaft--ba-34 {
  border: 34px #2d2d2d solid !important;
}
.mine-shaft--bt-34 {
  border-top: 34px #2d2d2d solid !important;
}
.mine-shaft--br-34 {
  border-right: 34px #2d2d2d solid !important;
}
.mine-shaft--bl-34 {
  border-left: 34px #2d2d2d solid !important;
}
.mine-shaft--bb-34 {
  border-bottom: 34px #2d2d2d solid !important;
}
.mine-shaft--by-34 {
  border-top: 34px #2d2d2d solid !important;
  border-bottom: 34px #2d2d2d solid !important;
}
.mine-shaft--bx-34 {
  border-right: 34px #2d2d2d solid !important;
  border-left: 34px #2d2d2d solid !important;
}
.mine-shaft--ba-35 {
  border: 35px #2d2d2d solid !important;
}
.mine-shaft--bt-35 {
  border-top: 35px #2d2d2d solid !important;
}
.mine-shaft--br-35 {
  border-right: 35px #2d2d2d solid !important;
}
.mine-shaft--bl-35 {
  border-left: 35px #2d2d2d solid !important;
}
.mine-shaft--bb-35 {
  border-bottom: 35px #2d2d2d solid !important;
}
.mine-shaft--by-35 {
  border-top: 35px #2d2d2d solid !important;
  border-bottom: 35px #2d2d2d solid !important;
}
.mine-shaft--bx-35 {
  border-right: 35px #2d2d2d solid !important;
  border-left: 35px #2d2d2d solid !important;
}
.mine-shaft--ba-36 {
  border: 36px #2d2d2d solid !important;
}
.mine-shaft--bt-36 {
  border-top: 36px #2d2d2d solid !important;
}
.mine-shaft--br-36 {
  border-right: 36px #2d2d2d solid !important;
}
.mine-shaft--bl-36 {
  border-left: 36px #2d2d2d solid !important;
}
.mine-shaft--bb-36 {
  border-bottom: 36px #2d2d2d solid !important;
}
.mine-shaft--by-36 {
  border-top: 36px #2d2d2d solid !important;
  border-bottom: 36px #2d2d2d solid !important;
}
.mine-shaft--bx-36 {
  border-right: 36px #2d2d2d solid !important;
  border-left: 36px #2d2d2d solid !important;
}
.mine-shaft--ba-37 {
  border: 37px #2d2d2d solid !important;
}
.mine-shaft--bt-37 {
  border-top: 37px #2d2d2d solid !important;
}
.mine-shaft--br-37 {
  border-right: 37px #2d2d2d solid !important;
}
.mine-shaft--bl-37 {
  border-left: 37px #2d2d2d solid !important;
}
.mine-shaft--bb-37 {
  border-bottom: 37px #2d2d2d solid !important;
}
.mine-shaft--by-37 {
  border-top: 37px #2d2d2d solid !important;
  border-bottom: 37px #2d2d2d solid !important;
}
.mine-shaft--bx-37 {
  border-right: 37px #2d2d2d solid !important;
  border-left: 37px #2d2d2d solid !important;
}
.mine-shaft--ba-38 {
  border: 38px #2d2d2d solid !important;
}
.mine-shaft--bt-38 {
  border-top: 38px #2d2d2d solid !important;
}
.mine-shaft--br-38 {
  border-right: 38px #2d2d2d solid !important;
}
.mine-shaft--bl-38 {
  border-left: 38px #2d2d2d solid !important;
}
.mine-shaft--bb-38 {
  border-bottom: 38px #2d2d2d solid !important;
}
.mine-shaft--by-38 {
  border-top: 38px #2d2d2d solid !important;
  border-bottom: 38px #2d2d2d solid !important;
}
.mine-shaft--bx-38 {
  border-right: 38px #2d2d2d solid !important;
  border-left: 38px #2d2d2d solid !important;
}
.mine-shaft--ba-39 {
  border: 39px #2d2d2d solid !important;
}
.mine-shaft--bt-39 {
  border-top: 39px #2d2d2d solid !important;
}
.mine-shaft--br-39 {
  border-right: 39px #2d2d2d solid !important;
}
.mine-shaft--bl-39 {
  border-left: 39px #2d2d2d solid !important;
}
.mine-shaft--bb-39 {
  border-bottom: 39px #2d2d2d solid !important;
}
.mine-shaft--by-39 {
  border-top: 39px #2d2d2d solid !important;
  border-bottom: 39px #2d2d2d solid !important;
}
.mine-shaft--bx-39 {
  border-right: 39px #2d2d2d solid !important;
  border-left: 39px #2d2d2d solid !important;
}
.mine-shaft--ba-40 {
  border: 40px #2d2d2d solid !important;
}
.mine-shaft--bt-40 {
  border-top: 40px #2d2d2d solid !important;
}
.mine-shaft--br-40 {
  border-right: 40px #2d2d2d solid !important;
}
.mine-shaft--bl-40 {
  border-left: 40px #2d2d2d solid !important;
}
.mine-shaft--bb-40 {
  border-bottom: 40px #2d2d2d solid !important;
}
.mine-shaft--by-40 {
  border-top: 40px #2d2d2d solid !important;
  border-bottom: 40px #2d2d2d solid !important;
}
.mine-shaft--bx-40 {
  border-right: 40px #2d2d2d solid !important;
  border-left: 40px #2d2d2d solid !important;
}
.mine-shaft--ba-41 {
  border: 41px #2d2d2d solid !important;
}
.mine-shaft--bt-41 {
  border-top: 41px #2d2d2d solid !important;
}
.mine-shaft--br-41 {
  border-right: 41px #2d2d2d solid !important;
}
.mine-shaft--bl-41 {
  border-left: 41px #2d2d2d solid !important;
}
.mine-shaft--bb-41 {
  border-bottom: 41px #2d2d2d solid !important;
}
.mine-shaft--by-41 {
  border-top: 41px #2d2d2d solid !important;
  border-bottom: 41px #2d2d2d solid !important;
}
.mine-shaft--bx-41 {
  border-right: 41px #2d2d2d solid !important;
  border-left: 41px #2d2d2d solid !important;
}
.mine-shaft--ba-42 {
  border: 42px #2d2d2d solid !important;
}
.mine-shaft--bt-42 {
  border-top: 42px #2d2d2d solid !important;
}
.mine-shaft--br-42 {
  border-right: 42px #2d2d2d solid !important;
}
.mine-shaft--bl-42 {
  border-left: 42px #2d2d2d solid !important;
}
.mine-shaft--bb-42 {
  border-bottom: 42px #2d2d2d solid !important;
}
.mine-shaft--by-42 {
  border-top: 42px #2d2d2d solid !important;
  border-bottom: 42px #2d2d2d solid !important;
}
.mine-shaft--bx-42 {
  border-right: 42px #2d2d2d solid !important;
  border-left: 42px #2d2d2d solid !important;
}
.mine-shaft--ba-43 {
  border: 43px #2d2d2d solid !important;
}
.mine-shaft--bt-43 {
  border-top: 43px #2d2d2d solid !important;
}
.mine-shaft--br-43 {
  border-right: 43px #2d2d2d solid !important;
}
.mine-shaft--bl-43 {
  border-left: 43px #2d2d2d solid !important;
}
.mine-shaft--bb-43 {
  border-bottom: 43px #2d2d2d solid !important;
}
.mine-shaft--by-43 {
  border-top: 43px #2d2d2d solid !important;
  border-bottom: 43px #2d2d2d solid !important;
}
.mine-shaft--bx-43 {
  border-right: 43px #2d2d2d solid !important;
  border-left: 43px #2d2d2d solid !important;
}
.mine-shaft--ba-44 {
  border: 44px #2d2d2d solid !important;
}
.mine-shaft--bt-44 {
  border-top: 44px #2d2d2d solid !important;
}
.mine-shaft--br-44 {
  border-right: 44px #2d2d2d solid !important;
}
.mine-shaft--bl-44 {
  border-left: 44px #2d2d2d solid !important;
}
.mine-shaft--bb-44 {
  border-bottom: 44px #2d2d2d solid !important;
}
.mine-shaft--by-44 {
  border-top: 44px #2d2d2d solid !important;
  border-bottom: 44px #2d2d2d solid !important;
}
.mine-shaft--bx-44 {
  border-right: 44px #2d2d2d solid !important;
  border-left: 44px #2d2d2d solid !important;
}
.mine-shaft--ba-45 {
  border: 45px #2d2d2d solid !important;
}
.mine-shaft--bt-45 {
  border-top: 45px #2d2d2d solid !important;
}
.mine-shaft--br-45 {
  border-right: 45px #2d2d2d solid !important;
}
.mine-shaft--bl-45 {
  border-left: 45px #2d2d2d solid !important;
}
.mine-shaft--bb-45 {
  border-bottom: 45px #2d2d2d solid !important;
}
.mine-shaft--by-45 {
  border-top: 45px #2d2d2d solid !important;
  border-bottom: 45px #2d2d2d solid !important;
}
.mine-shaft--bx-45 {
  border-right: 45px #2d2d2d solid !important;
  border-left: 45px #2d2d2d solid !important;
}
.mine-shaft--ba-46 {
  border: 46px #2d2d2d solid !important;
}
.mine-shaft--bt-46 {
  border-top: 46px #2d2d2d solid !important;
}
.mine-shaft--br-46 {
  border-right: 46px #2d2d2d solid !important;
}
.mine-shaft--bl-46 {
  border-left: 46px #2d2d2d solid !important;
}
.mine-shaft--bb-46 {
  border-bottom: 46px #2d2d2d solid !important;
}
.mine-shaft--by-46 {
  border-top: 46px #2d2d2d solid !important;
  border-bottom: 46px #2d2d2d solid !important;
}
.mine-shaft--bx-46 {
  border-right: 46px #2d2d2d solid !important;
  border-left: 46px #2d2d2d solid !important;
}
.mine-shaft--ba-47 {
  border: 47px #2d2d2d solid !important;
}
.mine-shaft--bt-47 {
  border-top: 47px #2d2d2d solid !important;
}
.mine-shaft--br-47 {
  border-right: 47px #2d2d2d solid !important;
}
.mine-shaft--bl-47 {
  border-left: 47px #2d2d2d solid !important;
}
.mine-shaft--bb-47 {
  border-bottom: 47px #2d2d2d solid !important;
}
.mine-shaft--by-47 {
  border-top: 47px #2d2d2d solid !important;
  border-bottom: 47px #2d2d2d solid !important;
}
.mine-shaft--bx-47 {
  border-right: 47px #2d2d2d solid !important;
  border-left: 47px #2d2d2d solid !important;
}
.mine-shaft--ba-48 {
  border: 48px #2d2d2d solid !important;
}
.mine-shaft--bt-48 {
  border-top: 48px #2d2d2d solid !important;
}
.mine-shaft--br-48 {
  border-right: 48px #2d2d2d solid !important;
}
.mine-shaft--bl-48 {
  border-left: 48px #2d2d2d solid !important;
}
.mine-shaft--bb-48 {
  border-bottom: 48px #2d2d2d solid !important;
}
.mine-shaft--by-48 {
  border-top: 48px #2d2d2d solid !important;
  border-bottom: 48px #2d2d2d solid !important;
}
.mine-shaft--bx-48 {
  border-right: 48px #2d2d2d solid !important;
  border-left: 48px #2d2d2d solid !important;
}
.mine-shaft--ba-49 {
  border: 49px #2d2d2d solid !important;
}
.mine-shaft--bt-49 {
  border-top: 49px #2d2d2d solid !important;
}
.mine-shaft--br-49 {
  border-right: 49px #2d2d2d solid !important;
}
.mine-shaft--bl-49 {
  border-left: 49px #2d2d2d solid !important;
}
.mine-shaft--bb-49 {
  border-bottom: 49px #2d2d2d solid !important;
}
.mine-shaft--by-49 {
  border-top: 49px #2d2d2d solid !important;
  border-bottom: 49px #2d2d2d solid !important;
}
.mine-shaft--bx-49 {
  border-right: 49px #2d2d2d solid !important;
  border-left: 49px #2d2d2d solid !important;
}
.mine-shaft--ba-50 {
  border: 50px #2d2d2d solid !important;
}
.mine-shaft--bt-50 {
  border-top: 50px #2d2d2d solid !important;
}
.mine-shaft--br-50 {
  border-right: 50px #2d2d2d solid !important;
}
.mine-shaft--bl-50 {
  border-left: 50px #2d2d2d solid !important;
}
.mine-shaft--bb-50 {
  border-bottom: 50px #2d2d2d solid !important;
}
.mine-shaft--by-50 {
  border-top: 50px #2d2d2d solid !important;
  border-bottom: 50px #2d2d2d solid !important;
}
.mine-shaft--bx-50 {
  border-right: 50px #2d2d2d solid !important;
  border-left: 50px #2d2d2d solid !important;
}
.mine-shaft--ba-51 {
  border: 51px #2d2d2d solid !important;
}
.mine-shaft--bt-51 {
  border-top: 51px #2d2d2d solid !important;
}
.mine-shaft--br-51 {
  border-right: 51px #2d2d2d solid !important;
}
.mine-shaft--bl-51 {
  border-left: 51px #2d2d2d solid !important;
}
.mine-shaft--bb-51 {
  border-bottom: 51px #2d2d2d solid !important;
}
.mine-shaft--by-51 {
  border-top: 51px #2d2d2d solid !important;
  border-bottom: 51px #2d2d2d solid !important;
}
.mine-shaft--bx-51 {
  border-right: 51px #2d2d2d solid !important;
  border-left: 51px #2d2d2d solid !important;
}
.mine-shaft--ba-52 {
  border: 52px #2d2d2d solid !important;
}
.mine-shaft--bt-52 {
  border-top: 52px #2d2d2d solid !important;
}
.mine-shaft--br-52 {
  border-right: 52px #2d2d2d solid !important;
}
.mine-shaft--bl-52 {
  border-left: 52px #2d2d2d solid !important;
}
.mine-shaft--bb-52 {
  border-bottom: 52px #2d2d2d solid !important;
}
.mine-shaft--by-52 {
  border-top: 52px #2d2d2d solid !important;
  border-bottom: 52px #2d2d2d solid !important;
}
.mine-shaft--bx-52 {
  border-right: 52px #2d2d2d solid !important;
  border-left: 52px #2d2d2d solid !important;
}
.mine-shaft--ba-53 {
  border: 53px #2d2d2d solid !important;
}
.mine-shaft--bt-53 {
  border-top: 53px #2d2d2d solid !important;
}
.mine-shaft--br-53 {
  border-right: 53px #2d2d2d solid !important;
}
.mine-shaft--bl-53 {
  border-left: 53px #2d2d2d solid !important;
}
.mine-shaft--bb-53 {
  border-bottom: 53px #2d2d2d solid !important;
}
.mine-shaft--by-53 {
  border-top: 53px #2d2d2d solid !important;
  border-bottom: 53px #2d2d2d solid !important;
}
.mine-shaft--bx-53 {
  border-right: 53px #2d2d2d solid !important;
  border-left: 53px #2d2d2d solid !important;
}
.mine-shaft--ba-54 {
  border: 54px #2d2d2d solid !important;
}
.mine-shaft--bt-54 {
  border-top: 54px #2d2d2d solid !important;
}
.mine-shaft--br-54 {
  border-right: 54px #2d2d2d solid !important;
}
.mine-shaft--bl-54 {
  border-left: 54px #2d2d2d solid !important;
}
.mine-shaft--bb-54 {
  border-bottom: 54px #2d2d2d solid !important;
}
.mine-shaft--by-54 {
  border-top: 54px #2d2d2d solid !important;
  border-bottom: 54px #2d2d2d solid !important;
}
.mine-shaft--bx-54 {
  border-right: 54px #2d2d2d solid !important;
  border-left: 54px #2d2d2d solid !important;
}
.mine-shaft--ba-55 {
  border: 55px #2d2d2d solid !important;
}
.mine-shaft--bt-55 {
  border-top: 55px #2d2d2d solid !important;
}
.mine-shaft--br-55 {
  border-right: 55px #2d2d2d solid !important;
}
.mine-shaft--bl-55 {
  border-left: 55px #2d2d2d solid !important;
}
.mine-shaft--bb-55 {
  border-bottom: 55px #2d2d2d solid !important;
}
.mine-shaft--by-55 {
  border-top: 55px #2d2d2d solid !important;
  border-bottom: 55px #2d2d2d solid !important;
}
.mine-shaft--bx-55 {
  border-right: 55px #2d2d2d solid !important;
  border-left: 55px #2d2d2d solid !important;
}
.mine-shaft--ba-56 {
  border: 56px #2d2d2d solid !important;
}
.mine-shaft--bt-56 {
  border-top: 56px #2d2d2d solid !important;
}
.mine-shaft--br-56 {
  border-right: 56px #2d2d2d solid !important;
}
.mine-shaft--bl-56 {
  border-left: 56px #2d2d2d solid !important;
}
.mine-shaft--bb-56 {
  border-bottom: 56px #2d2d2d solid !important;
}
.mine-shaft--by-56 {
  border-top: 56px #2d2d2d solid !important;
  border-bottom: 56px #2d2d2d solid !important;
}
.mine-shaft--bx-56 {
  border-right: 56px #2d2d2d solid !important;
  border-left: 56px #2d2d2d solid !important;
}
.mine-shaft--ba-57 {
  border: 57px #2d2d2d solid !important;
}
.mine-shaft--bt-57 {
  border-top: 57px #2d2d2d solid !important;
}
.mine-shaft--br-57 {
  border-right: 57px #2d2d2d solid !important;
}
.mine-shaft--bl-57 {
  border-left: 57px #2d2d2d solid !important;
}
.mine-shaft--bb-57 {
  border-bottom: 57px #2d2d2d solid !important;
}
.mine-shaft--by-57 {
  border-top: 57px #2d2d2d solid !important;
  border-bottom: 57px #2d2d2d solid !important;
}
.mine-shaft--bx-57 {
  border-right: 57px #2d2d2d solid !important;
  border-left: 57px #2d2d2d solid !important;
}
.mine-shaft--ba-58 {
  border: 58px #2d2d2d solid !important;
}
.mine-shaft--bt-58 {
  border-top: 58px #2d2d2d solid !important;
}
.mine-shaft--br-58 {
  border-right: 58px #2d2d2d solid !important;
}
.mine-shaft--bl-58 {
  border-left: 58px #2d2d2d solid !important;
}
.mine-shaft--bb-58 {
  border-bottom: 58px #2d2d2d solid !important;
}
.mine-shaft--by-58 {
  border-top: 58px #2d2d2d solid !important;
  border-bottom: 58px #2d2d2d solid !important;
}
.mine-shaft--bx-58 {
  border-right: 58px #2d2d2d solid !important;
  border-left: 58px #2d2d2d solid !important;
}
.mine-shaft--ba-59 {
  border: 59px #2d2d2d solid !important;
}
.mine-shaft--bt-59 {
  border-top: 59px #2d2d2d solid !important;
}
.mine-shaft--br-59 {
  border-right: 59px #2d2d2d solid !important;
}
.mine-shaft--bl-59 {
  border-left: 59px #2d2d2d solid !important;
}
.mine-shaft--bb-59 {
  border-bottom: 59px #2d2d2d solid !important;
}
.mine-shaft--by-59 {
  border-top: 59px #2d2d2d solid !important;
  border-bottom: 59px #2d2d2d solid !important;
}
.mine-shaft--bx-59 {
  border-right: 59px #2d2d2d solid !important;
  border-left: 59px #2d2d2d solid !important;
}
.mine-shaft--ba-60 {
  border: 60px #2d2d2d solid !important;
}
.mine-shaft--bt-60 {
  border-top: 60px #2d2d2d solid !important;
}
.mine-shaft--br-60 {
  border-right: 60px #2d2d2d solid !important;
}
.mine-shaft--bl-60 {
  border-left: 60px #2d2d2d solid !important;
}
.mine-shaft--bb-60 {
  border-bottom: 60px #2d2d2d solid !important;
}
.mine-shaft--by-60 {
  border-top: 60px #2d2d2d solid !important;
  border-bottom: 60px #2d2d2d solid !important;
}
.mine-shaft--bx-60 {
  border-right: 60px #2d2d2d solid !important;
  border-left: 60px #2d2d2d solid !important;
}
.mine-shaft--ba-61 {
  border: 61px #2d2d2d solid !important;
}
.mine-shaft--bt-61 {
  border-top: 61px #2d2d2d solid !important;
}
.mine-shaft--br-61 {
  border-right: 61px #2d2d2d solid !important;
}
.mine-shaft--bl-61 {
  border-left: 61px #2d2d2d solid !important;
}
.mine-shaft--bb-61 {
  border-bottom: 61px #2d2d2d solid !important;
}
.mine-shaft--by-61 {
  border-top: 61px #2d2d2d solid !important;
  border-bottom: 61px #2d2d2d solid !important;
}
.mine-shaft--bx-61 {
  border-right: 61px #2d2d2d solid !important;
  border-left: 61px #2d2d2d solid !important;
}
.mine-shaft--ba-62 {
  border: 62px #2d2d2d solid !important;
}
.mine-shaft--bt-62 {
  border-top: 62px #2d2d2d solid !important;
}
.mine-shaft--br-62 {
  border-right: 62px #2d2d2d solid !important;
}
.mine-shaft--bl-62 {
  border-left: 62px #2d2d2d solid !important;
}
.mine-shaft--bb-62 {
  border-bottom: 62px #2d2d2d solid !important;
}
.mine-shaft--by-62 {
  border-top: 62px #2d2d2d solid !important;
  border-bottom: 62px #2d2d2d solid !important;
}
.mine-shaft--bx-62 {
  border-right: 62px #2d2d2d solid !important;
  border-left: 62px #2d2d2d solid !important;
}
.mine-shaft--ba-63 {
  border: 63px #2d2d2d solid !important;
}
.mine-shaft--bt-63 {
  border-top: 63px #2d2d2d solid !important;
}
.mine-shaft--br-63 {
  border-right: 63px #2d2d2d solid !important;
}
.mine-shaft--bl-63 {
  border-left: 63px #2d2d2d solid !important;
}
.mine-shaft--bb-63 {
  border-bottom: 63px #2d2d2d solid !important;
}
.mine-shaft--by-63 {
  border-top: 63px #2d2d2d solid !important;
  border-bottom: 63px #2d2d2d solid !important;
}
.mine-shaft--bx-63 {
  border-right: 63px #2d2d2d solid !important;
  border-left: 63px #2d2d2d solid !important;
}
.mine-shaft--ba-64 {
  border: 64px #2d2d2d solid !important;
}
.mine-shaft--bt-64 {
  border-top: 64px #2d2d2d solid !important;
}
.mine-shaft--br-64 {
  border-right: 64px #2d2d2d solid !important;
}
.mine-shaft--bl-64 {
  border-left: 64px #2d2d2d solid !important;
}
.mine-shaft--bb-64 {
  border-bottom: 64px #2d2d2d solid !important;
}
.mine-shaft--by-64 {
  border-top: 64px #2d2d2d solid !important;
  border-bottom: 64px #2d2d2d solid !important;
}
.mine-shaft--bx-64 {
  border-right: 64px #2d2d2d solid !important;
  border-left: 64px #2d2d2d solid !important;
}
.mine-shaft--ba-65 {
  border: 65px #2d2d2d solid !important;
}
.mine-shaft--bt-65 {
  border-top: 65px #2d2d2d solid !important;
}
.mine-shaft--br-65 {
  border-right: 65px #2d2d2d solid !important;
}
.mine-shaft--bl-65 {
  border-left: 65px #2d2d2d solid !important;
}
.mine-shaft--bb-65 {
  border-bottom: 65px #2d2d2d solid !important;
}
.mine-shaft--by-65 {
  border-top: 65px #2d2d2d solid !important;
  border-bottom: 65px #2d2d2d solid !important;
}
.mine-shaft--bx-65 {
  border-right: 65px #2d2d2d solid !important;
  border-left: 65px #2d2d2d solid !important;
}
.mine-shaft--ba-66 {
  border: 66px #2d2d2d solid !important;
}
.mine-shaft--bt-66 {
  border-top: 66px #2d2d2d solid !important;
}
.mine-shaft--br-66 {
  border-right: 66px #2d2d2d solid !important;
}
.mine-shaft--bl-66 {
  border-left: 66px #2d2d2d solid !important;
}
.mine-shaft--bb-66 {
  border-bottom: 66px #2d2d2d solid !important;
}
.mine-shaft--by-66 {
  border-top: 66px #2d2d2d solid !important;
  border-bottom: 66px #2d2d2d solid !important;
}
.mine-shaft--bx-66 {
  border-right: 66px #2d2d2d solid !important;
  border-left: 66px #2d2d2d solid !important;
}
.mine-shaft--ba-67 {
  border: 67px #2d2d2d solid !important;
}
.mine-shaft--bt-67 {
  border-top: 67px #2d2d2d solid !important;
}
.mine-shaft--br-67 {
  border-right: 67px #2d2d2d solid !important;
}
.mine-shaft--bl-67 {
  border-left: 67px #2d2d2d solid !important;
}
.mine-shaft--bb-67 {
  border-bottom: 67px #2d2d2d solid !important;
}
.mine-shaft--by-67 {
  border-top: 67px #2d2d2d solid !important;
  border-bottom: 67px #2d2d2d solid !important;
}
.mine-shaft--bx-67 {
  border-right: 67px #2d2d2d solid !important;
  border-left: 67px #2d2d2d solid !important;
}
.mine-shaft--ba-68 {
  border: 68px #2d2d2d solid !important;
}
.mine-shaft--bt-68 {
  border-top: 68px #2d2d2d solid !important;
}
.mine-shaft--br-68 {
  border-right: 68px #2d2d2d solid !important;
}
.mine-shaft--bl-68 {
  border-left: 68px #2d2d2d solid !important;
}
.mine-shaft--bb-68 {
  border-bottom: 68px #2d2d2d solid !important;
}
.mine-shaft--by-68 {
  border-top: 68px #2d2d2d solid !important;
  border-bottom: 68px #2d2d2d solid !important;
}
.mine-shaft--bx-68 {
  border-right: 68px #2d2d2d solid !important;
  border-left: 68px #2d2d2d solid !important;
}
.mine-shaft--ba-69 {
  border: 69px #2d2d2d solid !important;
}
.mine-shaft--bt-69 {
  border-top: 69px #2d2d2d solid !important;
}
.mine-shaft--br-69 {
  border-right: 69px #2d2d2d solid !important;
}
.mine-shaft--bl-69 {
  border-left: 69px #2d2d2d solid !important;
}
.mine-shaft--bb-69 {
  border-bottom: 69px #2d2d2d solid !important;
}
.mine-shaft--by-69 {
  border-top: 69px #2d2d2d solid !important;
  border-bottom: 69px #2d2d2d solid !important;
}
.mine-shaft--bx-69 {
  border-right: 69px #2d2d2d solid !important;
  border-left: 69px #2d2d2d solid !important;
}
.mine-shaft--ba-70 {
  border: 70px #2d2d2d solid !important;
}
.mine-shaft--bt-70 {
  border-top: 70px #2d2d2d solid !important;
}
.mine-shaft--br-70 {
  border-right: 70px #2d2d2d solid !important;
}
.mine-shaft--bl-70 {
  border-left: 70px #2d2d2d solid !important;
}
.mine-shaft--bb-70 {
  border-bottom: 70px #2d2d2d solid !important;
}
.mine-shaft--by-70 {
  border-top: 70px #2d2d2d solid !important;
  border-bottom: 70px #2d2d2d solid !important;
}
.mine-shaft--bx-70 {
  border-right: 70px #2d2d2d solid !important;
  border-left: 70px #2d2d2d solid !important;
}
.mine-shaft--ba-71 {
  border: 71px #2d2d2d solid !important;
}
.mine-shaft--bt-71 {
  border-top: 71px #2d2d2d solid !important;
}
.mine-shaft--br-71 {
  border-right: 71px #2d2d2d solid !important;
}
.mine-shaft--bl-71 {
  border-left: 71px #2d2d2d solid !important;
}
.mine-shaft--bb-71 {
  border-bottom: 71px #2d2d2d solid !important;
}
.mine-shaft--by-71 {
  border-top: 71px #2d2d2d solid !important;
  border-bottom: 71px #2d2d2d solid !important;
}
.mine-shaft--bx-71 {
  border-right: 71px #2d2d2d solid !important;
  border-left: 71px #2d2d2d solid !important;
}
.mine-shaft--ba-72 {
  border: 72px #2d2d2d solid !important;
}
.mine-shaft--bt-72 {
  border-top: 72px #2d2d2d solid !important;
}
.mine-shaft--br-72 {
  border-right: 72px #2d2d2d solid !important;
}
.mine-shaft--bl-72 {
  border-left: 72px #2d2d2d solid !important;
}
.mine-shaft--bb-72 {
  border-bottom: 72px #2d2d2d solid !important;
}
.mine-shaft--by-72 {
  border-top: 72px #2d2d2d solid !important;
  border-bottom: 72px #2d2d2d solid !important;
}
.mine-shaft--bx-72 {
  border-right: 72px #2d2d2d solid !important;
  border-left: 72px #2d2d2d solid !important;
}
.mine-shaft--ba-73 {
  border: 73px #2d2d2d solid !important;
}
.mine-shaft--bt-73 {
  border-top: 73px #2d2d2d solid !important;
}
.mine-shaft--br-73 {
  border-right: 73px #2d2d2d solid !important;
}
.mine-shaft--bl-73 {
  border-left: 73px #2d2d2d solid !important;
}
.mine-shaft--bb-73 {
  border-bottom: 73px #2d2d2d solid !important;
}
.mine-shaft--by-73 {
  border-top: 73px #2d2d2d solid !important;
  border-bottom: 73px #2d2d2d solid !important;
}
.mine-shaft--bx-73 {
  border-right: 73px #2d2d2d solid !important;
  border-left: 73px #2d2d2d solid !important;
}
.mine-shaft--ba-74 {
  border: 74px #2d2d2d solid !important;
}
.mine-shaft--bt-74 {
  border-top: 74px #2d2d2d solid !important;
}
.mine-shaft--br-74 {
  border-right: 74px #2d2d2d solid !important;
}
.mine-shaft--bl-74 {
  border-left: 74px #2d2d2d solid !important;
}
.mine-shaft--bb-74 {
  border-bottom: 74px #2d2d2d solid !important;
}
.mine-shaft--by-74 {
  border-top: 74px #2d2d2d solid !important;
  border-bottom: 74px #2d2d2d solid !important;
}
.mine-shaft--bx-74 {
  border-right: 74px #2d2d2d solid !important;
  border-left: 74px #2d2d2d solid !important;
}
.mine-shaft--ba-75 {
  border: 75px #2d2d2d solid !important;
}
.mine-shaft--bt-75 {
  border-top: 75px #2d2d2d solid !important;
}
.mine-shaft--br-75 {
  border-right: 75px #2d2d2d solid !important;
}
.mine-shaft--bl-75 {
  border-left: 75px #2d2d2d solid !important;
}
.mine-shaft--bb-75 {
  border-bottom: 75px #2d2d2d solid !important;
}
.mine-shaft--by-75 {
  border-top: 75px #2d2d2d solid !important;
  border-bottom: 75px #2d2d2d solid !important;
}
.mine-shaft--bx-75 {
  border-right: 75px #2d2d2d solid !important;
  border-left: 75px #2d2d2d solid !important;
}
.mine-shaft--ba-76 {
  border: 76px #2d2d2d solid !important;
}
.mine-shaft--bt-76 {
  border-top: 76px #2d2d2d solid !important;
}
.mine-shaft--br-76 {
  border-right: 76px #2d2d2d solid !important;
}
.mine-shaft--bl-76 {
  border-left: 76px #2d2d2d solid !important;
}
.mine-shaft--bb-76 {
  border-bottom: 76px #2d2d2d solid !important;
}
.mine-shaft--by-76 {
  border-top: 76px #2d2d2d solid !important;
  border-bottom: 76px #2d2d2d solid !important;
}
.mine-shaft--bx-76 {
  border-right: 76px #2d2d2d solid !important;
  border-left: 76px #2d2d2d solid !important;
}
.mine-shaft--ba-77 {
  border: 77px #2d2d2d solid !important;
}
.mine-shaft--bt-77 {
  border-top: 77px #2d2d2d solid !important;
}
.mine-shaft--br-77 {
  border-right: 77px #2d2d2d solid !important;
}
.mine-shaft--bl-77 {
  border-left: 77px #2d2d2d solid !important;
}
.mine-shaft--bb-77 {
  border-bottom: 77px #2d2d2d solid !important;
}
.mine-shaft--by-77 {
  border-top: 77px #2d2d2d solid !important;
  border-bottom: 77px #2d2d2d solid !important;
}
.mine-shaft--bx-77 {
  border-right: 77px #2d2d2d solid !important;
  border-left: 77px #2d2d2d solid !important;
}
.mine-shaft--ba-78 {
  border: 78px #2d2d2d solid !important;
}
.mine-shaft--bt-78 {
  border-top: 78px #2d2d2d solid !important;
}
.mine-shaft--br-78 {
  border-right: 78px #2d2d2d solid !important;
}
.mine-shaft--bl-78 {
  border-left: 78px #2d2d2d solid !important;
}
.mine-shaft--bb-78 {
  border-bottom: 78px #2d2d2d solid !important;
}
.mine-shaft--by-78 {
  border-top: 78px #2d2d2d solid !important;
  border-bottom: 78px #2d2d2d solid !important;
}
.mine-shaft--bx-78 {
  border-right: 78px #2d2d2d solid !important;
  border-left: 78px #2d2d2d solid !important;
}
.mine-shaft--ba-79 {
  border: 79px #2d2d2d solid !important;
}
.mine-shaft--bt-79 {
  border-top: 79px #2d2d2d solid !important;
}
.mine-shaft--br-79 {
  border-right: 79px #2d2d2d solid !important;
}
.mine-shaft--bl-79 {
  border-left: 79px #2d2d2d solid !important;
}
.mine-shaft--bb-79 {
  border-bottom: 79px #2d2d2d solid !important;
}
.mine-shaft--by-79 {
  border-top: 79px #2d2d2d solid !important;
  border-bottom: 79px #2d2d2d solid !important;
}
.mine-shaft--bx-79 {
  border-right: 79px #2d2d2d solid !important;
  border-left: 79px #2d2d2d solid !important;
}
.mine-shaft--ba-80 {
  border: 80px #2d2d2d solid !important;
}
.mine-shaft--bt-80 {
  border-top: 80px #2d2d2d solid !important;
}
.mine-shaft--br-80 {
  border-right: 80px #2d2d2d solid !important;
}
.mine-shaft--bl-80 {
  border-left: 80px #2d2d2d solid !important;
}
.mine-shaft--bb-80 {
  border-bottom: 80px #2d2d2d solid !important;
}
.mine-shaft--by-80 {
  border-top: 80px #2d2d2d solid !important;
  border-bottom: 80px #2d2d2d solid !important;
}
.mine-shaft--bx-80 {
  border-right: 80px #2d2d2d solid !important;
  border-left: 80px #2d2d2d solid !important;
}
.mine-shaft--ba-81 {
  border: 81px #2d2d2d solid !important;
}
.mine-shaft--bt-81 {
  border-top: 81px #2d2d2d solid !important;
}
.mine-shaft--br-81 {
  border-right: 81px #2d2d2d solid !important;
}
.mine-shaft--bl-81 {
  border-left: 81px #2d2d2d solid !important;
}
.mine-shaft--bb-81 {
  border-bottom: 81px #2d2d2d solid !important;
}
.mine-shaft--by-81 {
  border-top: 81px #2d2d2d solid !important;
  border-bottom: 81px #2d2d2d solid !important;
}
.mine-shaft--bx-81 {
  border-right: 81px #2d2d2d solid !important;
  border-left: 81px #2d2d2d solid !important;
}
.mine-shaft--ba-82 {
  border: 82px #2d2d2d solid !important;
}
.mine-shaft--bt-82 {
  border-top: 82px #2d2d2d solid !important;
}
.mine-shaft--br-82 {
  border-right: 82px #2d2d2d solid !important;
}
.mine-shaft--bl-82 {
  border-left: 82px #2d2d2d solid !important;
}
.mine-shaft--bb-82 {
  border-bottom: 82px #2d2d2d solid !important;
}
.mine-shaft--by-82 {
  border-top: 82px #2d2d2d solid !important;
  border-bottom: 82px #2d2d2d solid !important;
}
.mine-shaft--bx-82 {
  border-right: 82px #2d2d2d solid !important;
  border-left: 82px #2d2d2d solid !important;
}
.mine-shaft--ba-83 {
  border: 83px #2d2d2d solid !important;
}
.mine-shaft--bt-83 {
  border-top: 83px #2d2d2d solid !important;
}
.mine-shaft--br-83 {
  border-right: 83px #2d2d2d solid !important;
}
.mine-shaft--bl-83 {
  border-left: 83px #2d2d2d solid !important;
}
.mine-shaft--bb-83 {
  border-bottom: 83px #2d2d2d solid !important;
}
.mine-shaft--by-83 {
  border-top: 83px #2d2d2d solid !important;
  border-bottom: 83px #2d2d2d solid !important;
}
.mine-shaft--bx-83 {
  border-right: 83px #2d2d2d solid !important;
  border-left: 83px #2d2d2d solid !important;
}
.mine-shaft--ba-84 {
  border: 84px #2d2d2d solid !important;
}
.mine-shaft--bt-84 {
  border-top: 84px #2d2d2d solid !important;
}
.mine-shaft--br-84 {
  border-right: 84px #2d2d2d solid !important;
}
.mine-shaft--bl-84 {
  border-left: 84px #2d2d2d solid !important;
}
.mine-shaft--bb-84 {
  border-bottom: 84px #2d2d2d solid !important;
}
.mine-shaft--by-84 {
  border-top: 84px #2d2d2d solid !important;
  border-bottom: 84px #2d2d2d solid !important;
}
.mine-shaft--bx-84 {
  border-right: 84px #2d2d2d solid !important;
  border-left: 84px #2d2d2d solid !important;
}
.mine-shaft--ba-85 {
  border: 85px #2d2d2d solid !important;
}
.mine-shaft--bt-85 {
  border-top: 85px #2d2d2d solid !important;
}
.mine-shaft--br-85 {
  border-right: 85px #2d2d2d solid !important;
}
.mine-shaft--bl-85 {
  border-left: 85px #2d2d2d solid !important;
}
.mine-shaft--bb-85 {
  border-bottom: 85px #2d2d2d solid !important;
}
.mine-shaft--by-85 {
  border-top: 85px #2d2d2d solid !important;
  border-bottom: 85px #2d2d2d solid !important;
}
.mine-shaft--bx-85 {
  border-right: 85px #2d2d2d solid !important;
  border-left: 85px #2d2d2d solid !important;
}
.mine-shaft--ba-86 {
  border: 86px #2d2d2d solid !important;
}
.mine-shaft--bt-86 {
  border-top: 86px #2d2d2d solid !important;
}
.mine-shaft--br-86 {
  border-right: 86px #2d2d2d solid !important;
}
.mine-shaft--bl-86 {
  border-left: 86px #2d2d2d solid !important;
}
.mine-shaft--bb-86 {
  border-bottom: 86px #2d2d2d solid !important;
}
.mine-shaft--by-86 {
  border-top: 86px #2d2d2d solid !important;
  border-bottom: 86px #2d2d2d solid !important;
}
.mine-shaft--bx-86 {
  border-right: 86px #2d2d2d solid !important;
  border-left: 86px #2d2d2d solid !important;
}
.mine-shaft--ba-87 {
  border: 87px #2d2d2d solid !important;
}
.mine-shaft--bt-87 {
  border-top: 87px #2d2d2d solid !important;
}
.mine-shaft--br-87 {
  border-right: 87px #2d2d2d solid !important;
}
.mine-shaft--bl-87 {
  border-left: 87px #2d2d2d solid !important;
}
.mine-shaft--bb-87 {
  border-bottom: 87px #2d2d2d solid !important;
}
.mine-shaft--by-87 {
  border-top: 87px #2d2d2d solid !important;
  border-bottom: 87px #2d2d2d solid !important;
}
.mine-shaft--bx-87 {
  border-right: 87px #2d2d2d solid !important;
  border-left: 87px #2d2d2d solid !important;
}
.mine-shaft--ba-88 {
  border: 88px #2d2d2d solid !important;
}
.mine-shaft--bt-88 {
  border-top: 88px #2d2d2d solid !important;
}
.mine-shaft--br-88 {
  border-right: 88px #2d2d2d solid !important;
}
.mine-shaft--bl-88 {
  border-left: 88px #2d2d2d solid !important;
}
.mine-shaft--bb-88 {
  border-bottom: 88px #2d2d2d solid !important;
}
.mine-shaft--by-88 {
  border-top: 88px #2d2d2d solid !important;
  border-bottom: 88px #2d2d2d solid !important;
}
.mine-shaft--bx-88 {
  border-right: 88px #2d2d2d solid !important;
  border-left: 88px #2d2d2d solid !important;
}
.mine-shaft--ba-89 {
  border: 89px #2d2d2d solid !important;
}
.mine-shaft--bt-89 {
  border-top: 89px #2d2d2d solid !important;
}
.mine-shaft--br-89 {
  border-right: 89px #2d2d2d solid !important;
}
.mine-shaft--bl-89 {
  border-left: 89px #2d2d2d solid !important;
}
.mine-shaft--bb-89 {
  border-bottom: 89px #2d2d2d solid !important;
}
.mine-shaft--by-89 {
  border-top: 89px #2d2d2d solid !important;
  border-bottom: 89px #2d2d2d solid !important;
}
.mine-shaft--bx-89 {
  border-right: 89px #2d2d2d solid !important;
  border-left: 89px #2d2d2d solid !important;
}
.mine-shaft--ba-90 {
  border: 90px #2d2d2d solid !important;
}
.mine-shaft--bt-90 {
  border-top: 90px #2d2d2d solid !important;
}
.mine-shaft--br-90 {
  border-right: 90px #2d2d2d solid !important;
}
.mine-shaft--bl-90 {
  border-left: 90px #2d2d2d solid !important;
}
.mine-shaft--bb-90 {
  border-bottom: 90px #2d2d2d solid !important;
}
.mine-shaft--by-90 {
  border-top: 90px #2d2d2d solid !important;
  border-bottom: 90px #2d2d2d solid !important;
}
.mine-shaft--bx-90 {
  border-right: 90px #2d2d2d solid !important;
  border-left: 90px #2d2d2d solid !important;
}
.mine-shaft--ba-91 {
  border: 91px #2d2d2d solid !important;
}
.mine-shaft--bt-91 {
  border-top: 91px #2d2d2d solid !important;
}
.mine-shaft--br-91 {
  border-right: 91px #2d2d2d solid !important;
}
.mine-shaft--bl-91 {
  border-left: 91px #2d2d2d solid !important;
}
.mine-shaft--bb-91 {
  border-bottom: 91px #2d2d2d solid !important;
}
.mine-shaft--by-91 {
  border-top: 91px #2d2d2d solid !important;
  border-bottom: 91px #2d2d2d solid !important;
}
.mine-shaft--bx-91 {
  border-right: 91px #2d2d2d solid !important;
  border-left: 91px #2d2d2d solid !important;
}
.mine-shaft--ba-92 {
  border: 92px #2d2d2d solid !important;
}
.mine-shaft--bt-92 {
  border-top: 92px #2d2d2d solid !important;
}
.mine-shaft--br-92 {
  border-right: 92px #2d2d2d solid !important;
}
.mine-shaft--bl-92 {
  border-left: 92px #2d2d2d solid !important;
}
.mine-shaft--bb-92 {
  border-bottom: 92px #2d2d2d solid !important;
}
.mine-shaft--by-92 {
  border-top: 92px #2d2d2d solid !important;
  border-bottom: 92px #2d2d2d solid !important;
}
.mine-shaft--bx-92 {
  border-right: 92px #2d2d2d solid !important;
  border-left: 92px #2d2d2d solid !important;
}
.mine-shaft--ba-93 {
  border: 93px #2d2d2d solid !important;
}
.mine-shaft--bt-93 {
  border-top: 93px #2d2d2d solid !important;
}
.mine-shaft--br-93 {
  border-right: 93px #2d2d2d solid !important;
}
.mine-shaft--bl-93 {
  border-left: 93px #2d2d2d solid !important;
}
.mine-shaft--bb-93 {
  border-bottom: 93px #2d2d2d solid !important;
}
.mine-shaft--by-93 {
  border-top: 93px #2d2d2d solid !important;
  border-bottom: 93px #2d2d2d solid !important;
}
.mine-shaft--bx-93 {
  border-right: 93px #2d2d2d solid !important;
  border-left: 93px #2d2d2d solid !important;
}
.mine-shaft--ba-94 {
  border: 94px #2d2d2d solid !important;
}
.mine-shaft--bt-94 {
  border-top: 94px #2d2d2d solid !important;
}
.mine-shaft--br-94 {
  border-right: 94px #2d2d2d solid !important;
}
.mine-shaft--bl-94 {
  border-left: 94px #2d2d2d solid !important;
}
.mine-shaft--bb-94 {
  border-bottom: 94px #2d2d2d solid !important;
}
.mine-shaft--by-94 {
  border-top: 94px #2d2d2d solid !important;
  border-bottom: 94px #2d2d2d solid !important;
}
.mine-shaft--bx-94 {
  border-right: 94px #2d2d2d solid !important;
  border-left: 94px #2d2d2d solid !important;
}
.mine-shaft--ba-95 {
  border: 95px #2d2d2d solid !important;
}
.mine-shaft--bt-95 {
  border-top: 95px #2d2d2d solid !important;
}
.mine-shaft--br-95 {
  border-right: 95px #2d2d2d solid !important;
}
.mine-shaft--bl-95 {
  border-left: 95px #2d2d2d solid !important;
}
.mine-shaft--bb-95 {
  border-bottom: 95px #2d2d2d solid !important;
}
.mine-shaft--by-95 {
  border-top: 95px #2d2d2d solid !important;
  border-bottom: 95px #2d2d2d solid !important;
}
.mine-shaft--bx-95 {
  border-right: 95px #2d2d2d solid !important;
  border-left: 95px #2d2d2d solid !important;
}
.mine-shaft--ba-96 {
  border: 96px #2d2d2d solid !important;
}
.mine-shaft--bt-96 {
  border-top: 96px #2d2d2d solid !important;
}
.mine-shaft--br-96 {
  border-right: 96px #2d2d2d solid !important;
}
.mine-shaft--bl-96 {
  border-left: 96px #2d2d2d solid !important;
}
.mine-shaft--bb-96 {
  border-bottom: 96px #2d2d2d solid !important;
}
.mine-shaft--by-96 {
  border-top: 96px #2d2d2d solid !important;
  border-bottom: 96px #2d2d2d solid !important;
}
.mine-shaft--bx-96 {
  border-right: 96px #2d2d2d solid !important;
  border-left: 96px #2d2d2d solid !important;
}
.mine-shaft--ba-97 {
  border: 97px #2d2d2d solid !important;
}
.mine-shaft--bt-97 {
  border-top: 97px #2d2d2d solid !important;
}
.mine-shaft--br-97 {
  border-right: 97px #2d2d2d solid !important;
}
.mine-shaft--bl-97 {
  border-left: 97px #2d2d2d solid !important;
}
.mine-shaft--bb-97 {
  border-bottom: 97px #2d2d2d solid !important;
}
.mine-shaft--by-97 {
  border-top: 97px #2d2d2d solid !important;
  border-bottom: 97px #2d2d2d solid !important;
}
.mine-shaft--bx-97 {
  border-right: 97px #2d2d2d solid !important;
  border-left: 97px #2d2d2d solid !important;
}
.mine-shaft--ba-98 {
  border: 98px #2d2d2d solid !important;
}
.mine-shaft--bt-98 {
  border-top: 98px #2d2d2d solid !important;
}
.mine-shaft--br-98 {
  border-right: 98px #2d2d2d solid !important;
}
.mine-shaft--bl-98 {
  border-left: 98px #2d2d2d solid !important;
}
.mine-shaft--bb-98 {
  border-bottom: 98px #2d2d2d solid !important;
}
.mine-shaft--by-98 {
  border-top: 98px #2d2d2d solid !important;
  border-bottom: 98px #2d2d2d solid !important;
}
.mine-shaft--bx-98 {
  border-right: 98px #2d2d2d solid !important;
  border-left: 98px #2d2d2d solid !important;
}
.mine-shaft--ba-99 {
  border: 99px #2d2d2d solid !important;
}
.mine-shaft--bt-99 {
  border-top: 99px #2d2d2d solid !important;
}
.mine-shaft--br-99 {
  border-right: 99px #2d2d2d solid !important;
}
.mine-shaft--bl-99 {
  border-left: 99px #2d2d2d solid !important;
}
.mine-shaft--bb-99 {
  border-bottom: 99px #2d2d2d solid !important;
}
.mine-shaft--by-99 {
  border-top: 99px #2d2d2d solid !important;
  border-bottom: 99px #2d2d2d solid !important;
}
.mine-shaft--bx-99 {
  border-right: 99px #2d2d2d solid !important;
  border-left: 99px #2d2d2d solid !important;
}
.mine-shaft--ba-100 {
  border: 100px #2d2d2d solid !important;
}
.mine-shaft--bt-100 {
  border-top: 100px #2d2d2d solid !important;
}
.mine-shaft--br-100 {
  border-right: 100px #2d2d2d solid !important;
}
.mine-shaft--bl-100 {
  border-left: 100px #2d2d2d solid !important;
}
.mine-shaft--bb-100 {
  border-bottom: 100px #2d2d2d solid !important;
}
.mine-shaft--by-100 {
  border-top: 100px #2d2d2d solid !important;
  border-bottom: 100px #2d2d2d solid !important;
}
.mine-shaft--bx-100 {
  border-right: 100px #2d2d2d solid !important;
  border-left: 100px #2d2d2d solid !important;
}
.gull-gray--ba-1 {
  border: 1px #90a4ae solid !important;
}
.gull-gray--bt-1 {
  border-top: 1px #90a4ae solid !important;
}
.gull-gray--br-1 {
  border-right: 1px #90a4ae solid !important;
}
.gull-gray--bl-1 {
  border-left: 1px #90a4ae solid !important;
}
.gull-gray--bb-1 {
  border-bottom: 1px #90a4ae solid !important;
}
.gull-gray--by-1 {
  border-top: 1px #90a4ae solid !important;
  border-bottom: 1px #90a4ae solid !important;
}
.gull-gray--bx-1 {
  border-right: 1px #90a4ae solid !important;
  border-left: 1px #90a4ae solid !important;
}
.gull-gray--ba-2 {
  border: 2px #90a4ae solid !important;
}
.gull-gray--bt-2 {
  border-top: 2px #90a4ae solid !important;
}
.gull-gray--br-2 {
  border-right: 2px #90a4ae solid !important;
}
.gull-gray--bl-2 {
  border-left: 2px #90a4ae solid !important;
}
.gull-gray--bb-2 {
  border-bottom: 2px #90a4ae solid !important;
}
.gull-gray--by-2 {
  border-top: 2px #90a4ae solid !important;
  border-bottom: 2px #90a4ae solid !important;
}
.gull-gray--bx-2 {
  border-right: 2px #90a4ae solid !important;
  border-left: 2px #90a4ae solid !important;
}
.gull-gray--ba-3 {
  border: 3px #90a4ae solid !important;
}
.gull-gray--bt-3 {
  border-top: 3px #90a4ae solid !important;
}
.gull-gray--br-3 {
  border-right: 3px #90a4ae solid !important;
}
.gull-gray--bl-3 {
  border-left: 3px #90a4ae solid !important;
}
.gull-gray--bb-3 {
  border-bottom: 3px #90a4ae solid !important;
}
.gull-gray--by-3 {
  border-top: 3px #90a4ae solid !important;
  border-bottom: 3px #90a4ae solid !important;
}
.gull-gray--bx-3 {
  border-right: 3px #90a4ae solid !important;
  border-left: 3px #90a4ae solid !important;
}
.gull-gray--ba-4 {
  border: 4px #90a4ae solid !important;
}
.gull-gray--bt-4 {
  border-top: 4px #90a4ae solid !important;
}
.gull-gray--br-4 {
  border-right: 4px #90a4ae solid !important;
}
.gull-gray--bl-4 {
  border-left: 4px #90a4ae solid !important;
}
.gull-gray--bb-4 {
  border-bottom: 4px #90a4ae solid !important;
}
.gull-gray--by-4 {
  border-top: 4px #90a4ae solid !important;
  border-bottom: 4px #90a4ae solid !important;
}
.gull-gray--bx-4 {
  border-right: 4px #90a4ae solid !important;
  border-left: 4px #90a4ae solid !important;
}
.gull-gray--ba-5 {
  border: 5px #90a4ae solid !important;
}
.gull-gray--bt-5 {
  border-top: 5px #90a4ae solid !important;
}
.gull-gray--br-5 {
  border-right: 5px #90a4ae solid !important;
}
.gull-gray--bl-5 {
  border-left: 5px #90a4ae solid !important;
}
.gull-gray--bb-5 {
  border-bottom: 5px #90a4ae solid !important;
}
.gull-gray--by-5 {
  border-top: 5px #90a4ae solid !important;
  border-bottom: 5px #90a4ae solid !important;
}
.gull-gray--bx-5 {
  border-right: 5px #90a4ae solid !important;
  border-left: 5px #90a4ae solid !important;
}
.gull-gray--ba-6 {
  border: 6px #90a4ae solid !important;
}
.gull-gray--bt-6 {
  border-top: 6px #90a4ae solid !important;
}
.gull-gray--br-6 {
  border-right: 6px #90a4ae solid !important;
}
.gull-gray--bl-6 {
  border-left: 6px #90a4ae solid !important;
}
.gull-gray--bb-6 {
  border-bottom: 6px #90a4ae solid !important;
}
.gull-gray--by-6 {
  border-top: 6px #90a4ae solid !important;
  border-bottom: 6px #90a4ae solid !important;
}
.gull-gray--bx-6 {
  border-right: 6px #90a4ae solid !important;
  border-left: 6px #90a4ae solid !important;
}
.gull-gray--ba-7 {
  border: 7px #90a4ae solid !important;
}
.gull-gray--bt-7 {
  border-top: 7px #90a4ae solid !important;
}
.gull-gray--br-7 {
  border-right: 7px #90a4ae solid !important;
}
.gull-gray--bl-7 {
  border-left: 7px #90a4ae solid !important;
}
.gull-gray--bb-7 {
  border-bottom: 7px #90a4ae solid !important;
}
.gull-gray--by-7 {
  border-top: 7px #90a4ae solid !important;
  border-bottom: 7px #90a4ae solid !important;
}
.gull-gray--bx-7 {
  border-right: 7px #90a4ae solid !important;
  border-left: 7px #90a4ae solid !important;
}
.gull-gray--ba-8 {
  border: 8px #90a4ae solid !important;
}
.gull-gray--bt-8 {
  border-top: 8px #90a4ae solid !important;
}
.gull-gray--br-8 {
  border-right: 8px #90a4ae solid !important;
}
.gull-gray--bl-8 {
  border-left: 8px #90a4ae solid !important;
}
.gull-gray--bb-8 {
  border-bottom: 8px #90a4ae solid !important;
}
.gull-gray--by-8 {
  border-top: 8px #90a4ae solid !important;
  border-bottom: 8px #90a4ae solid !important;
}
.gull-gray--bx-8 {
  border-right: 8px #90a4ae solid !important;
  border-left: 8px #90a4ae solid !important;
}
.gull-gray--ba-9 {
  border: 9px #90a4ae solid !important;
}
.gull-gray--bt-9 {
  border-top: 9px #90a4ae solid !important;
}
.gull-gray--br-9 {
  border-right: 9px #90a4ae solid !important;
}
.gull-gray--bl-9 {
  border-left: 9px #90a4ae solid !important;
}
.gull-gray--bb-9 {
  border-bottom: 9px #90a4ae solid !important;
}
.gull-gray--by-9 {
  border-top: 9px #90a4ae solid !important;
  border-bottom: 9px #90a4ae solid !important;
}
.gull-gray--bx-9 {
  border-right: 9px #90a4ae solid !important;
  border-left: 9px #90a4ae solid !important;
}
.gull-gray--ba-10 {
  border: 10px #90a4ae solid !important;
}
.gull-gray--bt-10 {
  border-top: 10px #90a4ae solid !important;
}
.gull-gray--br-10 {
  border-right: 10px #90a4ae solid !important;
}
.gull-gray--bl-10 {
  border-left: 10px #90a4ae solid !important;
}
.gull-gray--bb-10 {
  border-bottom: 10px #90a4ae solid !important;
}
.gull-gray--by-10 {
  border-top: 10px #90a4ae solid !important;
  border-bottom: 10px #90a4ae solid !important;
}
.gull-gray--bx-10 {
  border-right: 10px #90a4ae solid !important;
  border-left: 10px #90a4ae solid !important;
}
.gull-gray--ba-11 {
  border: 11px #90a4ae solid !important;
}
.gull-gray--bt-11 {
  border-top: 11px #90a4ae solid !important;
}
.gull-gray--br-11 {
  border-right: 11px #90a4ae solid !important;
}
.gull-gray--bl-11 {
  border-left: 11px #90a4ae solid !important;
}
.gull-gray--bb-11 {
  border-bottom: 11px #90a4ae solid !important;
}
.gull-gray--by-11 {
  border-top: 11px #90a4ae solid !important;
  border-bottom: 11px #90a4ae solid !important;
}
.gull-gray--bx-11 {
  border-right: 11px #90a4ae solid !important;
  border-left: 11px #90a4ae solid !important;
}
.gull-gray--ba-12 {
  border: 12px #90a4ae solid !important;
}
.gull-gray--bt-12 {
  border-top: 12px #90a4ae solid !important;
}
.gull-gray--br-12 {
  border-right: 12px #90a4ae solid !important;
}
.gull-gray--bl-12 {
  border-left: 12px #90a4ae solid !important;
}
.gull-gray--bb-12 {
  border-bottom: 12px #90a4ae solid !important;
}
.gull-gray--by-12 {
  border-top: 12px #90a4ae solid !important;
  border-bottom: 12px #90a4ae solid !important;
}
.gull-gray--bx-12 {
  border-right: 12px #90a4ae solid !important;
  border-left: 12px #90a4ae solid !important;
}
.gull-gray--ba-13 {
  border: 13px #90a4ae solid !important;
}
.gull-gray--bt-13 {
  border-top: 13px #90a4ae solid !important;
}
.gull-gray--br-13 {
  border-right: 13px #90a4ae solid !important;
}
.gull-gray--bl-13 {
  border-left: 13px #90a4ae solid !important;
}
.gull-gray--bb-13 {
  border-bottom: 13px #90a4ae solid !important;
}
.gull-gray--by-13 {
  border-top: 13px #90a4ae solid !important;
  border-bottom: 13px #90a4ae solid !important;
}
.gull-gray--bx-13 {
  border-right: 13px #90a4ae solid !important;
  border-left: 13px #90a4ae solid !important;
}
.gull-gray--ba-14 {
  border: 14px #90a4ae solid !important;
}
.gull-gray--bt-14 {
  border-top: 14px #90a4ae solid !important;
}
.gull-gray--br-14 {
  border-right: 14px #90a4ae solid !important;
}
.gull-gray--bl-14 {
  border-left: 14px #90a4ae solid !important;
}
.gull-gray--bb-14 {
  border-bottom: 14px #90a4ae solid !important;
}
.gull-gray--by-14 {
  border-top: 14px #90a4ae solid !important;
  border-bottom: 14px #90a4ae solid !important;
}
.gull-gray--bx-14 {
  border-right: 14px #90a4ae solid !important;
  border-left: 14px #90a4ae solid !important;
}
.gull-gray--ba-15 {
  border: 15px #90a4ae solid !important;
}
.gull-gray--bt-15 {
  border-top: 15px #90a4ae solid !important;
}
.gull-gray--br-15 {
  border-right: 15px #90a4ae solid !important;
}
.gull-gray--bl-15 {
  border-left: 15px #90a4ae solid !important;
}
.gull-gray--bb-15 {
  border-bottom: 15px #90a4ae solid !important;
}
.gull-gray--by-15 {
  border-top: 15px #90a4ae solid !important;
  border-bottom: 15px #90a4ae solid !important;
}
.gull-gray--bx-15 {
  border-right: 15px #90a4ae solid !important;
  border-left: 15px #90a4ae solid !important;
}
.gull-gray--ba-16 {
  border: 16px #90a4ae solid !important;
}
.gull-gray--bt-16 {
  border-top: 16px #90a4ae solid !important;
}
.gull-gray--br-16 {
  border-right: 16px #90a4ae solid !important;
}
.gull-gray--bl-16 {
  border-left: 16px #90a4ae solid !important;
}
.gull-gray--bb-16 {
  border-bottom: 16px #90a4ae solid !important;
}
.gull-gray--by-16 {
  border-top: 16px #90a4ae solid !important;
  border-bottom: 16px #90a4ae solid !important;
}
.gull-gray--bx-16 {
  border-right: 16px #90a4ae solid !important;
  border-left: 16px #90a4ae solid !important;
}
.gull-gray--ba-17 {
  border: 17px #90a4ae solid !important;
}
.gull-gray--bt-17 {
  border-top: 17px #90a4ae solid !important;
}
.gull-gray--br-17 {
  border-right: 17px #90a4ae solid !important;
}
.gull-gray--bl-17 {
  border-left: 17px #90a4ae solid !important;
}
.gull-gray--bb-17 {
  border-bottom: 17px #90a4ae solid !important;
}
.gull-gray--by-17 {
  border-top: 17px #90a4ae solid !important;
  border-bottom: 17px #90a4ae solid !important;
}
.gull-gray--bx-17 {
  border-right: 17px #90a4ae solid !important;
  border-left: 17px #90a4ae solid !important;
}
.gull-gray--ba-18 {
  border: 18px #90a4ae solid !important;
}
.gull-gray--bt-18 {
  border-top: 18px #90a4ae solid !important;
}
.gull-gray--br-18 {
  border-right: 18px #90a4ae solid !important;
}
.gull-gray--bl-18 {
  border-left: 18px #90a4ae solid !important;
}
.gull-gray--bb-18 {
  border-bottom: 18px #90a4ae solid !important;
}
.gull-gray--by-18 {
  border-top: 18px #90a4ae solid !important;
  border-bottom: 18px #90a4ae solid !important;
}
.gull-gray--bx-18 {
  border-right: 18px #90a4ae solid !important;
  border-left: 18px #90a4ae solid !important;
}
.gull-gray--ba-19 {
  border: 19px #90a4ae solid !important;
}
.gull-gray--bt-19 {
  border-top: 19px #90a4ae solid !important;
}
.gull-gray--br-19 {
  border-right: 19px #90a4ae solid !important;
}
.gull-gray--bl-19 {
  border-left: 19px #90a4ae solid !important;
}
.gull-gray--bb-19 {
  border-bottom: 19px #90a4ae solid !important;
}
.gull-gray--by-19 {
  border-top: 19px #90a4ae solid !important;
  border-bottom: 19px #90a4ae solid !important;
}
.gull-gray--bx-19 {
  border-right: 19px #90a4ae solid !important;
  border-left: 19px #90a4ae solid !important;
}
.gull-gray--ba-20 {
  border: 20px #90a4ae solid !important;
}
.gull-gray--bt-20 {
  border-top: 20px #90a4ae solid !important;
}
.gull-gray--br-20 {
  border-right: 20px #90a4ae solid !important;
}
.gull-gray--bl-20 {
  border-left: 20px #90a4ae solid !important;
}
.gull-gray--bb-20 {
  border-bottom: 20px #90a4ae solid !important;
}
.gull-gray--by-20 {
  border-top: 20px #90a4ae solid !important;
  border-bottom: 20px #90a4ae solid !important;
}
.gull-gray--bx-20 {
  border-right: 20px #90a4ae solid !important;
  border-left: 20px #90a4ae solid !important;
}
.gull-gray--ba-21 {
  border: 21px #90a4ae solid !important;
}
.gull-gray--bt-21 {
  border-top: 21px #90a4ae solid !important;
}
.gull-gray--br-21 {
  border-right: 21px #90a4ae solid !important;
}
.gull-gray--bl-21 {
  border-left: 21px #90a4ae solid !important;
}
.gull-gray--bb-21 {
  border-bottom: 21px #90a4ae solid !important;
}
.gull-gray--by-21 {
  border-top: 21px #90a4ae solid !important;
  border-bottom: 21px #90a4ae solid !important;
}
.gull-gray--bx-21 {
  border-right: 21px #90a4ae solid !important;
  border-left: 21px #90a4ae solid !important;
}
.gull-gray--ba-22 {
  border: 22px #90a4ae solid !important;
}
.gull-gray--bt-22 {
  border-top: 22px #90a4ae solid !important;
}
.gull-gray--br-22 {
  border-right: 22px #90a4ae solid !important;
}
.gull-gray--bl-22 {
  border-left: 22px #90a4ae solid !important;
}
.gull-gray--bb-22 {
  border-bottom: 22px #90a4ae solid !important;
}
.gull-gray--by-22 {
  border-top: 22px #90a4ae solid !important;
  border-bottom: 22px #90a4ae solid !important;
}
.gull-gray--bx-22 {
  border-right: 22px #90a4ae solid !important;
  border-left: 22px #90a4ae solid !important;
}
.gull-gray--ba-23 {
  border: 23px #90a4ae solid !important;
}
.gull-gray--bt-23 {
  border-top: 23px #90a4ae solid !important;
}
.gull-gray--br-23 {
  border-right: 23px #90a4ae solid !important;
}
.gull-gray--bl-23 {
  border-left: 23px #90a4ae solid !important;
}
.gull-gray--bb-23 {
  border-bottom: 23px #90a4ae solid !important;
}
.gull-gray--by-23 {
  border-top: 23px #90a4ae solid !important;
  border-bottom: 23px #90a4ae solid !important;
}
.gull-gray--bx-23 {
  border-right: 23px #90a4ae solid !important;
  border-left: 23px #90a4ae solid !important;
}
.gull-gray--ba-24 {
  border: 24px #90a4ae solid !important;
}
.gull-gray--bt-24 {
  border-top: 24px #90a4ae solid !important;
}
.gull-gray--br-24 {
  border-right: 24px #90a4ae solid !important;
}
.gull-gray--bl-24 {
  border-left: 24px #90a4ae solid !important;
}
.gull-gray--bb-24 {
  border-bottom: 24px #90a4ae solid !important;
}
.gull-gray--by-24 {
  border-top: 24px #90a4ae solid !important;
  border-bottom: 24px #90a4ae solid !important;
}
.gull-gray--bx-24 {
  border-right: 24px #90a4ae solid !important;
  border-left: 24px #90a4ae solid !important;
}
.gull-gray--ba-25 {
  border: 25px #90a4ae solid !important;
}
.gull-gray--bt-25 {
  border-top: 25px #90a4ae solid !important;
}
.gull-gray--br-25 {
  border-right: 25px #90a4ae solid !important;
}
.gull-gray--bl-25 {
  border-left: 25px #90a4ae solid !important;
}
.gull-gray--bb-25 {
  border-bottom: 25px #90a4ae solid !important;
}
.gull-gray--by-25 {
  border-top: 25px #90a4ae solid !important;
  border-bottom: 25px #90a4ae solid !important;
}
.gull-gray--bx-25 {
  border-right: 25px #90a4ae solid !important;
  border-left: 25px #90a4ae solid !important;
}
.gull-gray--ba-26 {
  border: 26px #90a4ae solid !important;
}
.gull-gray--bt-26 {
  border-top: 26px #90a4ae solid !important;
}
.gull-gray--br-26 {
  border-right: 26px #90a4ae solid !important;
}
.gull-gray--bl-26 {
  border-left: 26px #90a4ae solid !important;
}
.gull-gray--bb-26 {
  border-bottom: 26px #90a4ae solid !important;
}
.gull-gray--by-26 {
  border-top: 26px #90a4ae solid !important;
  border-bottom: 26px #90a4ae solid !important;
}
.gull-gray--bx-26 {
  border-right: 26px #90a4ae solid !important;
  border-left: 26px #90a4ae solid !important;
}
.gull-gray--ba-27 {
  border: 27px #90a4ae solid !important;
}
.gull-gray--bt-27 {
  border-top: 27px #90a4ae solid !important;
}
.gull-gray--br-27 {
  border-right: 27px #90a4ae solid !important;
}
.gull-gray--bl-27 {
  border-left: 27px #90a4ae solid !important;
}
.gull-gray--bb-27 {
  border-bottom: 27px #90a4ae solid !important;
}
.gull-gray--by-27 {
  border-top: 27px #90a4ae solid !important;
  border-bottom: 27px #90a4ae solid !important;
}
.gull-gray--bx-27 {
  border-right: 27px #90a4ae solid !important;
  border-left: 27px #90a4ae solid !important;
}
.gull-gray--ba-28 {
  border: 28px #90a4ae solid !important;
}
.gull-gray--bt-28 {
  border-top: 28px #90a4ae solid !important;
}
.gull-gray--br-28 {
  border-right: 28px #90a4ae solid !important;
}
.gull-gray--bl-28 {
  border-left: 28px #90a4ae solid !important;
}
.gull-gray--bb-28 {
  border-bottom: 28px #90a4ae solid !important;
}
.gull-gray--by-28 {
  border-top: 28px #90a4ae solid !important;
  border-bottom: 28px #90a4ae solid !important;
}
.gull-gray--bx-28 {
  border-right: 28px #90a4ae solid !important;
  border-left: 28px #90a4ae solid !important;
}
.gull-gray--ba-29 {
  border: 29px #90a4ae solid !important;
}
.gull-gray--bt-29 {
  border-top: 29px #90a4ae solid !important;
}
.gull-gray--br-29 {
  border-right: 29px #90a4ae solid !important;
}
.gull-gray--bl-29 {
  border-left: 29px #90a4ae solid !important;
}
.gull-gray--bb-29 {
  border-bottom: 29px #90a4ae solid !important;
}
.gull-gray--by-29 {
  border-top: 29px #90a4ae solid !important;
  border-bottom: 29px #90a4ae solid !important;
}
.gull-gray--bx-29 {
  border-right: 29px #90a4ae solid !important;
  border-left: 29px #90a4ae solid !important;
}
.gull-gray--ba-30 {
  border: 30px #90a4ae solid !important;
}
.gull-gray--bt-30 {
  border-top: 30px #90a4ae solid !important;
}
.gull-gray--br-30 {
  border-right: 30px #90a4ae solid !important;
}
.gull-gray--bl-30 {
  border-left: 30px #90a4ae solid !important;
}
.gull-gray--bb-30 {
  border-bottom: 30px #90a4ae solid !important;
}
.gull-gray--by-30 {
  border-top: 30px #90a4ae solid !important;
  border-bottom: 30px #90a4ae solid !important;
}
.gull-gray--bx-30 {
  border-right: 30px #90a4ae solid !important;
  border-left: 30px #90a4ae solid !important;
}
.gull-gray--ba-31 {
  border: 31px #90a4ae solid !important;
}
.gull-gray--bt-31 {
  border-top: 31px #90a4ae solid !important;
}
.gull-gray--br-31 {
  border-right: 31px #90a4ae solid !important;
}
.gull-gray--bl-31 {
  border-left: 31px #90a4ae solid !important;
}
.gull-gray--bb-31 {
  border-bottom: 31px #90a4ae solid !important;
}
.gull-gray--by-31 {
  border-top: 31px #90a4ae solid !important;
  border-bottom: 31px #90a4ae solid !important;
}
.gull-gray--bx-31 {
  border-right: 31px #90a4ae solid !important;
  border-left: 31px #90a4ae solid !important;
}
.gull-gray--ba-32 {
  border: 32px #90a4ae solid !important;
}
.gull-gray--bt-32 {
  border-top: 32px #90a4ae solid !important;
}
.gull-gray--br-32 {
  border-right: 32px #90a4ae solid !important;
}
.gull-gray--bl-32 {
  border-left: 32px #90a4ae solid !important;
}
.gull-gray--bb-32 {
  border-bottom: 32px #90a4ae solid !important;
}
.gull-gray--by-32 {
  border-top: 32px #90a4ae solid !important;
  border-bottom: 32px #90a4ae solid !important;
}
.gull-gray--bx-32 {
  border-right: 32px #90a4ae solid !important;
  border-left: 32px #90a4ae solid !important;
}
.gull-gray--ba-33 {
  border: 33px #90a4ae solid !important;
}
.gull-gray--bt-33 {
  border-top: 33px #90a4ae solid !important;
}
.gull-gray--br-33 {
  border-right: 33px #90a4ae solid !important;
}
.gull-gray--bl-33 {
  border-left: 33px #90a4ae solid !important;
}
.gull-gray--bb-33 {
  border-bottom: 33px #90a4ae solid !important;
}
.gull-gray--by-33 {
  border-top: 33px #90a4ae solid !important;
  border-bottom: 33px #90a4ae solid !important;
}
.gull-gray--bx-33 {
  border-right: 33px #90a4ae solid !important;
  border-left: 33px #90a4ae solid !important;
}
.gull-gray--ba-34 {
  border: 34px #90a4ae solid !important;
}
.gull-gray--bt-34 {
  border-top: 34px #90a4ae solid !important;
}
.gull-gray--br-34 {
  border-right: 34px #90a4ae solid !important;
}
.gull-gray--bl-34 {
  border-left: 34px #90a4ae solid !important;
}
.gull-gray--bb-34 {
  border-bottom: 34px #90a4ae solid !important;
}
.gull-gray--by-34 {
  border-top: 34px #90a4ae solid !important;
  border-bottom: 34px #90a4ae solid !important;
}
.gull-gray--bx-34 {
  border-right: 34px #90a4ae solid !important;
  border-left: 34px #90a4ae solid !important;
}
.gull-gray--ba-35 {
  border: 35px #90a4ae solid !important;
}
.gull-gray--bt-35 {
  border-top: 35px #90a4ae solid !important;
}
.gull-gray--br-35 {
  border-right: 35px #90a4ae solid !important;
}
.gull-gray--bl-35 {
  border-left: 35px #90a4ae solid !important;
}
.gull-gray--bb-35 {
  border-bottom: 35px #90a4ae solid !important;
}
.gull-gray--by-35 {
  border-top: 35px #90a4ae solid !important;
  border-bottom: 35px #90a4ae solid !important;
}
.gull-gray--bx-35 {
  border-right: 35px #90a4ae solid !important;
  border-left: 35px #90a4ae solid !important;
}
.gull-gray--ba-36 {
  border: 36px #90a4ae solid !important;
}
.gull-gray--bt-36 {
  border-top: 36px #90a4ae solid !important;
}
.gull-gray--br-36 {
  border-right: 36px #90a4ae solid !important;
}
.gull-gray--bl-36 {
  border-left: 36px #90a4ae solid !important;
}
.gull-gray--bb-36 {
  border-bottom: 36px #90a4ae solid !important;
}
.gull-gray--by-36 {
  border-top: 36px #90a4ae solid !important;
  border-bottom: 36px #90a4ae solid !important;
}
.gull-gray--bx-36 {
  border-right: 36px #90a4ae solid !important;
  border-left: 36px #90a4ae solid !important;
}
.gull-gray--ba-37 {
  border: 37px #90a4ae solid !important;
}
.gull-gray--bt-37 {
  border-top: 37px #90a4ae solid !important;
}
.gull-gray--br-37 {
  border-right: 37px #90a4ae solid !important;
}
.gull-gray--bl-37 {
  border-left: 37px #90a4ae solid !important;
}
.gull-gray--bb-37 {
  border-bottom: 37px #90a4ae solid !important;
}
.gull-gray--by-37 {
  border-top: 37px #90a4ae solid !important;
  border-bottom: 37px #90a4ae solid !important;
}
.gull-gray--bx-37 {
  border-right: 37px #90a4ae solid !important;
  border-left: 37px #90a4ae solid !important;
}
.gull-gray--ba-38 {
  border: 38px #90a4ae solid !important;
}
.gull-gray--bt-38 {
  border-top: 38px #90a4ae solid !important;
}
.gull-gray--br-38 {
  border-right: 38px #90a4ae solid !important;
}
.gull-gray--bl-38 {
  border-left: 38px #90a4ae solid !important;
}
.gull-gray--bb-38 {
  border-bottom: 38px #90a4ae solid !important;
}
.gull-gray--by-38 {
  border-top: 38px #90a4ae solid !important;
  border-bottom: 38px #90a4ae solid !important;
}
.gull-gray--bx-38 {
  border-right: 38px #90a4ae solid !important;
  border-left: 38px #90a4ae solid !important;
}
.gull-gray--ba-39 {
  border: 39px #90a4ae solid !important;
}
.gull-gray--bt-39 {
  border-top: 39px #90a4ae solid !important;
}
.gull-gray--br-39 {
  border-right: 39px #90a4ae solid !important;
}
.gull-gray--bl-39 {
  border-left: 39px #90a4ae solid !important;
}
.gull-gray--bb-39 {
  border-bottom: 39px #90a4ae solid !important;
}
.gull-gray--by-39 {
  border-top: 39px #90a4ae solid !important;
  border-bottom: 39px #90a4ae solid !important;
}
.gull-gray--bx-39 {
  border-right: 39px #90a4ae solid !important;
  border-left: 39px #90a4ae solid !important;
}
.gull-gray--ba-40 {
  border: 40px #90a4ae solid !important;
}
.gull-gray--bt-40 {
  border-top: 40px #90a4ae solid !important;
}
.gull-gray--br-40 {
  border-right: 40px #90a4ae solid !important;
}
.gull-gray--bl-40 {
  border-left: 40px #90a4ae solid !important;
}
.gull-gray--bb-40 {
  border-bottom: 40px #90a4ae solid !important;
}
.gull-gray--by-40 {
  border-top: 40px #90a4ae solid !important;
  border-bottom: 40px #90a4ae solid !important;
}
.gull-gray--bx-40 {
  border-right: 40px #90a4ae solid !important;
  border-left: 40px #90a4ae solid !important;
}
.gull-gray--ba-41 {
  border: 41px #90a4ae solid !important;
}
.gull-gray--bt-41 {
  border-top: 41px #90a4ae solid !important;
}
.gull-gray--br-41 {
  border-right: 41px #90a4ae solid !important;
}
.gull-gray--bl-41 {
  border-left: 41px #90a4ae solid !important;
}
.gull-gray--bb-41 {
  border-bottom: 41px #90a4ae solid !important;
}
.gull-gray--by-41 {
  border-top: 41px #90a4ae solid !important;
  border-bottom: 41px #90a4ae solid !important;
}
.gull-gray--bx-41 {
  border-right: 41px #90a4ae solid !important;
  border-left: 41px #90a4ae solid !important;
}
.gull-gray--ba-42 {
  border: 42px #90a4ae solid !important;
}
.gull-gray--bt-42 {
  border-top: 42px #90a4ae solid !important;
}
.gull-gray--br-42 {
  border-right: 42px #90a4ae solid !important;
}
.gull-gray--bl-42 {
  border-left: 42px #90a4ae solid !important;
}
.gull-gray--bb-42 {
  border-bottom: 42px #90a4ae solid !important;
}
.gull-gray--by-42 {
  border-top: 42px #90a4ae solid !important;
  border-bottom: 42px #90a4ae solid !important;
}
.gull-gray--bx-42 {
  border-right: 42px #90a4ae solid !important;
  border-left: 42px #90a4ae solid !important;
}
.gull-gray--ba-43 {
  border: 43px #90a4ae solid !important;
}
.gull-gray--bt-43 {
  border-top: 43px #90a4ae solid !important;
}
.gull-gray--br-43 {
  border-right: 43px #90a4ae solid !important;
}
.gull-gray--bl-43 {
  border-left: 43px #90a4ae solid !important;
}
.gull-gray--bb-43 {
  border-bottom: 43px #90a4ae solid !important;
}
.gull-gray--by-43 {
  border-top: 43px #90a4ae solid !important;
  border-bottom: 43px #90a4ae solid !important;
}
.gull-gray--bx-43 {
  border-right: 43px #90a4ae solid !important;
  border-left: 43px #90a4ae solid !important;
}
.gull-gray--ba-44 {
  border: 44px #90a4ae solid !important;
}
.gull-gray--bt-44 {
  border-top: 44px #90a4ae solid !important;
}
.gull-gray--br-44 {
  border-right: 44px #90a4ae solid !important;
}
.gull-gray--bl-44 {
  border-left: 44px #90a4ae solid !important;
}
.gull-gray--bb-44 {
  border-bottom: 44px #90a4ae solid !important;
}
.gull-gray--by-44 {
  border-top: 44px #90a4ae solid !important;
  border-bottom: 44px #90a4ae solid !important;
}
.gull-gray--bx-44 {
  border-right: 44px #90a4ae solid !important;
  border-left: 44px #90a4ae solid !important;
}
.gull-gray--ba-45 {
  border: 45px #90a4ae solid !important;
}
.gull-gray--bt-45 {
  border-top: 45px #90a4ae solid !important;
}
.gull-gray--br-45 {
  border-right: 45px #90a4ae solid !important;
}
.gull-gray--bl-45 {
  border-left: 45px #90a4ae solid !important;
}
.gull-gray--bb-45 {
  border-bottom: 45px #90a4ae solid !important;
}
.gull-gray--by-45 {
  border-top: 45px #90a4ae solid !important;
  border-bottom: 45px #90a4ae solid !important;
}
.gull-gray--bx-45 {
  border-right: 45px #90a4ae solid !important;
  border-left: 45px #90a4ae solid !important;
}
.gull-gray--ba-46 {
  border: 46px #90a4ae solid !important;
}
.gull-gray--bt-46 {
  border-top: 46px #90a4ae solid !important;
}
.gull-gray--br-46 {
  border-right: 46px #90a4ae solid !important;
}
.gull-gray--bl-46 {
  border-left: 46px #90a4ae solid !important;
}
.gull-gray--bb-46 {
  border-bottom: 46px #90a4ae solid !important;
}
.gull-gray--by-46 {
  border-top: 46px #90a4ae solid !important;
  border-bottom: 46px #90a4ae solid !important;
}
.gull-gray--bx-46 {
  border-right: 46px #90a4ae solid !important;
  border-left: 46px #90a4ae solid !important;
}
.gull-gray--ba-47 {
  border: 47px #90a4ae solid !important;
}
.gull-gray--bt-47 {
  border-top: 47px #90a4ae solid !important;
}
.gull-gray--br-47 {
  border-right: 47px #90a4ae solid !important;
}
.gull-gray--bl-47 {
  border-left: 47px #90a4ae solid !important;
}
.gull-gray--bb-47 {
  border-bottom: 47px #90a4ae solid !important;
}
.gull-gray--by-47 {
  border-top: 47px #90a4ae solid !important;
  border-bottom: 47px #90a4ae solid !important;
}
.gull-gray--bx-47 {
  border-right: 47px #90a4ae solid !important;
  border-left: 47px #90a4ae solid !important;
}
.gull-gray--ba-48 {
  border: 48px #90a4ae solid !important;
}
.gull-gray--bt-48 {
  border-top: 48px #90a4ae solid !important;
}
.gull-gray--br-48 {
  border-right: 48px #90a4ae solid !important;
}
.gull-gray--bl-48 {
  border-left: 48px #90a4ae solid !important;
}
.gull-gray--bb-48 {
  border-bottom: 48px #90a4ae solid !important;
}
.gull-gray--by-48 {
  border-top: 48px #90a4ae solid !important;
  border-bottom: 48px #90a4ae solid !important;
}
.gull-gray--bx-48 {
  border-right: 48px #90a4ae solid !important;
  border-left: 48px #90a4ae solid !important;
}
.gull-gray--ba-49 {
  border: 49px #90a4ae solid !important;
}
.gull-gray--bt-49 {
  border-top: 49px #90a4ae solid !important;
}
.gull-gray--br-49 {
  border-right: 49px #90a4ae solid !important;
}
.gull-gray--bl-49 {
  border-left: 49px #90a4ae solid !important;
}
.gull-gray--bb-49 {
  border-bottom: 49px #90a4ae solid !important;
}
.gull-gray--by-49 {
  border-top: 49px #90a4ae solid !important;
  border-bottom: 49px #90a4ae solid !important;
}
.gull-gray--bx-49 {
  border-right: 49px #90a4ae solid !important;
  border-left: 49px #90a4ae solid !important;
}
.gull-gray--ba-50 {
  border: 50px #90a4ae solid !important;
}
.gull-gray--bt-50 {
  border-top: 50px #90a4ae solid !important;
}
.gull-gray--br-50 {
  border-right: 50px #90a4ae solid !important;
}
.gull-gray--bl-50 {
  border-left: 50px #90a4ae solid !important;
}
.gull-gray--bb-50 {
  border-bottom: 50px #90a4ae solid !important;
}
.gull-gray--by-50 {
  border-top: 50px #90a4ae solid !important;
  border-bottom: 50px #90a4ae solid !important;
}
.gull-gray--bx-50 {
  border-right: 50px #90a4ae solid !important;
  border-left: 50px #90a4ae solid !important;
}
.gull-gray--ba-51 {
  border: 51px #90a4ae solid !important;
}
.gull-gray--bt-51 {
  border-top: 51px #90a4ae solid !important;
}
.gull-gray--br-51 {
  border-right: 51px #90a4ae solid !important;
}
.gull-gray--bl-51 {
  border-left: 51px #90a4ae solid !important;
}
.gull-gray--bb-51 {
  border-bottom: 51px #90a4ae solid !important;
}
.gull-gray--by-51 {
  border-top: 51px #90a4ae solid !important;
  border-bottom: 51px #90a4ae solid !important;
}
.gull-gray--bx-51 {
  border-right: 51px #90a4ae solid !important;
  border-left: 51px #90a4ae solid !important;
}
.gull-gray--ba-52 {
  border: 52px #90a4ae solid !important;
}
.gull-gray--bt-52 {
  border-top: 52px #90a4ae solid !important;
}
.gull-gray--br-52 {
  border-right: 52px #90a4ae solid !important;
}
.gull-gray--bl-52 {
  border-left: 52px #90a4ae solid !important;
}
.gull-gray--bb-52 {
  border-bottom: 52px #90a4ae solid !important;
}
.gull-gray--by-52 {
  border-top: 52px #90a4ae solid !important;
  border-bottom: 52px #90a4ae solid !important;
}
.gull-gray--bx-52 {
  border-right: 52px #90a4ae solid !important;
  border-left: 52px #90a4ae solid !important;
}
.gull-gray--ba-53 {
  border: 53px #90a4ae solid !important;
}
.gull-gray--bt-53 {
  border-top: 53px #90a4ae solid !important;
}
.gull-gray--br-53 {
  border-right: 53px #90a4ae solid !important;
}
.gull-gray--bl-53 {
  border-left: 53px #90a4ae solid !important;
}
.gull-gray--bb-53 {
  border-bottom: 53px #90a4ae solid !important;
}
.gull-gray--by-53 {
  border-top: 53px #90a4ae solid !important;
  border-bottom: 53px #90a4ae solid !important;
}
.gull-gray--bx-53 {
  border-right: 53px #90a4ae solid !important;
  border-left: 53px #90a4ae solid !important;
}
.gull-gray--ba-54 {
  border: 54px #90a4ae solid !important;
}
.gull-gray--bt-54 {
  border-top: 54px #90a4ae solid !important;
}
.gull-gray--br-54 {
  border-right: 54px #90a4ae solid !important;
}
.gull-gray--bl-54 {
  border-left: 54px #90a4ae solid !important;
}
.gull-gray--bb-54 {
  border-bottom: 54px #90a4ae solid !important;
}
.gull-gray--by-54 {
  border-top: 54px #90a4ae solid !important;
  border-bottom: 54px #90a4ae solid !important;
}
.gull-gray--bx-54 {
  border-right: 54px #90a4ae solid !important;
  border-left: 54px #90a4ae solid !important;
}
.gull-gray--ba-55 {
  border: 55px #90a4ae solid !important;
}
.gull-gray--bt-55 {
  border-top: 55px #90a4ae solid !important;
}
.gull-gray--br-55 {
  border-right: 55px #90a4ae solid !important;
}
.gull-gray--bl-55 {
  border-left: 55px #90a4ae solid !important;
}
.gull-gray--bb-55 {
  border-bottom: 55px #90a4ae solid !important;
}
.gull-gray--by-55 {
  border-top: 55px #90a4ae solid !important;
  border-bottom: 55px #90a4ae solid !important;
}
.gull-gray--bx-55 {
  border-right: 55px #90a4ae solid !important;
  border-left: 55px #90a4ae solid !important;
}
.gull-gray--ba-56 {
  border: 56px #90a4ae solid !important;
}
.gull-gray--bt-56 {
  border-top: 56px #90a4ae solid !important;
}
.gull-gray--br-56 {
  border-right: 56px #90a4ae solid !important;
}
.gull-gray--bl-56 {
  border-left: 56px #90a4ae solid !important;
}
.gull-gray--bb-56 {
  border-bottom: 56px #90a4ae solid !important;
}
.gull-gray--by-56 {
  border-top: 56px #90a4ae solid !important;
  border-bottom: 56px #90a4ae solid !important;
}
.gull-gray--bx-56 {
  border-right: 56px #90a4ae solid !important;
  border-left: 56px #90a4ae solid !important;
}
.gull-gray--ba-57 {
  border: 57px #90a4ae solid !important;
}
.gull-gray--bt-57 {
  border-top: 57px #90a4ae solid !important;
}
.gull-gray--br-57 {
  border-right: 57px #90a4ae solid !important;
}
.gull-gray--bl-57 {
  border-left: 57px #90a4ae solid !important;
}
.gull-gray--bb-57 {
  border-bottom: 57px #90a4ae solid !important;
}
.gull-gray--by-57 {
  border-top: 57px #90a4ae solid !important;
  border-bottom: 57px #90a4ae solid !important;
}
.gull-gray--bx-57 {
  border-right: 57px #90a4ae solid !important;
  border-left: 57px #90a4ae solid !important;
}
.gull-gray--ba-58 {
  border: 58px #90a4ae solid !important;
}
.gull-gray--bt-58 {
  border-top: 58px #90a4ae solid !important;
}
.gull-gray--br-58 {
  border-right: 58px #90a4ae solid !important;
}
.gull-gray--bl-58 {
  border-left: 58px #90a4ae solid !important;
}
.gull-gray--bb-58 {
  border-bottom: 58px #90a4ae solid !important;
}
.gull-gray--by-58 {
  border-top: 58px #90a4ae solid !important;
  border-bottom: 58px #90a4ae solid !important;
}
.gull-gray--bx-58 {
  border-right: 58px #90a4ae solid !important;
  border-left: 58px #90a4ae solid !important;
}
.gull-gray--ba-59 {
  border: 59px #90a4ae solid !important;
}
.gull-gray--bt-59 {
  border-top: 59px #90a4ae solid !important;
}
.gull-gray--br-59 {
  border-right: 59px #90a4ae solid !important;
}
.gull-gray--bl-59 {
  border-left: 59px #90a4ae solid !important;
}
.gull-gray--bb-59 {
  border-bottom: 59px #90a4ae solid !important;
}
.gull-gray--by-59 {
  border-top: 59px #90a4ae solid !important;
  border-bottom: 59px #90a4ae solid !important;
}
.gull-gray--bx-59 {
  border-right: 59px #90a4ae solid !important;
  border-left: 59px #90a4ae solid !important;
}
.gull-gray--ba-60 {
  border: 60px #90a4ae solid !important;
}
.gull-gray--bt-60 {
  border-top: 60px #90a4ae solid !important;
}
.gull-gray--br-60 {
  border-right: 60px #90a4ae solid !important;
}
.gull-gray--bl-60 {
  border-left: 60px #90a4ae solid !important;
}
.gull-gray--bb-60 {
  border-bottom: 60px #90a4ae solid !important;
}
.gull-gray--by-60 {
  border-top: 60px #90a4ae solid !important;
  border-bottom: 60px #90a4ae solid !important;
}
.gull-gray--bx-60 {
  border-right: 60px #90a4ae solid !important;
  border-left: 60px #90a4ae solid !important;
}
.gull-gray--ba-61 {
  border: 61px #90a4ae solid !important;
}
.gull-gray--bt-61 {
  border-top: 61px #90a4ae solid !important;
}
.gull-gray--br-61 {
  border-right: 61px #90a4ae solid !important;
}
.gull-gray--bl-61 {
  border-left: 61px #90a4ae solid !important;
}
.gull-gray--bb-61 {
  border-bottom: 61px #90a4ae solid !important;
}
.gull-gray--by-61 {
  border-top: 61px #90a4ae solid !important;
  border-bottom: 61px #90a4ae solid !important;
}
.gull-gray--bx-61 {
  border-right: 61px #90a4ae solid !important;
  border-left: 61px #90a4ae solid !important;
}
.gull-gray--ba-62 {
  border: 62px #90a4ae solid !important;
}
.gull-gray--bt-62 {
  border-top: 62px #90a4ae solid !important;
}
.gull-gray--br-62 {
  border-right: 62px #90a4ae solid !important;
}
.gull-gray--bl-62 {
  border-left: 62px #90a4ae solid !important;
}
.gull-gray--bb-62 {
  border-bottom: 62px #90a4ae solid !important;
}
.gull-gray--by-62 {
  border-top: 62px #90a4ae solid !important;
  border-bottom: 62px #90a4ae solid !important;
}
.gull-gray--bx-62 {
  border-right: 62px #90a4ae solid !important;
  border-left: 62px #90a4ae solid !important;
}
.gull-gray--ba-63 {
  border: 63px #90a4ae solid !important;
}
.gull-gray--bt-63 {
  border-top: 63px #90a4ae solid !important;
}
.gull-gray--br-63 {
  border-right: 63px #90a4ae solid !important;
}
.gull-gray--bl-63 {
  border-left: 63px #90a4ae solid !important;
}
.gull-gray--bb-63 {
  border-bottom: 63px #90a4ae solid !important;
}
.gull-gray--by-63 {
  border-top: 63px #90a4ae solid !important;
  border-bottom: 63px #90a4ae solid !important;
}
.gull-gray--bx-63 {
  border-right: 63px #90a4ae solid !important;
  border-left: 63px #90a4ae solid !important;
}
.gull-gray--ba-64 {
  border: 64px #90a4ae solid !important;
}
.gull-gray--bt-64 {
  border-top: 64px #90a4ae solid !important;
}
.gull-gray--br-64 {
  border-right: 64px #90a4ae solid !important;
}
.gull-gray--bl-64 {
  border-left: 64px #90a4ae solid !important;
}
.gull-gray--bb-64 {
  border-bottom: 64px #90a4ae solid !important;
}
.gull-gray--by-64 {
  border-top: 64px #90a4ae solid !important;
  border-bottom: 64px #90a4ae solid !important;
}
.gull-gray--bx-64 {
  border-right: 64px #90a4ae solid !important;
  border-left: 64px #90a4ae solid !important;
}
.gull-gray--ba-65 {
  border: 65px #90a4ae solid !important;
}
.gull-gray--bt-65 {
  border-top: 65px #90a4ae solid !important;
}
.gull-gray--br-65 {
  border-right: 65px #90a4ae solid !important;
}
.gull-gray--bl-65 {
  border-left: 65px #90a4ae solid !important;
}
.gull-gray--bb-65 {
  border-bottom: 65px #90a4ae solid !important;
}
.gull-gray--by-65 {
  border-top: 65px #90a4ae solid !important;
  border-bottom: 65px #90a4ae solid !important;
}
.gull-gray--bx-65 {
  border-right: 65px #90a4ae solid !important;
  border-left: 65px #90a4ae solid !important;
}
.gull-gray--ba-66 {
  border: 66px #90a4ae solid !important;
}
.gull-gray--bt-66 {
  border-top: 66px #90a4ae solid !important;
}
.gull-gray--br-66 {
  border-right: 66px #90a4ae solid !important;
}
.gull-gray--bl-66 {
  border-left: 66px #90a4ae solid !important;
}
.gull-gray--bb-66 {
  border-bottom: 66px #90a4ae solid !important;
}
.gull-gray--by-66 {
  border-top: 66px #90a4ae solid !important;
  border-bottom: 66px #90a4ae solid !important;
}
.gull-gray--bx-66 {
  border-right: 66px #90a4ae solid !important;
  border-left: 66px #90a4ae solid !important;
}
.gull-gray--ba-67 {
  border: 67px #90a4ae solid !important;
}
.gull-gray--bt-67 {
  border-top: 67px #90a4ae solid !important;
}
.gull-gray--br-67 {
  border-right: 67px #90a4ae solid !important;
}
.gull-gray--bl-67 {
  border-left: 67px #90a4ae solid !important;
}
.gull-gray--bb-67 {
  border-bottom: 67px #90a4ae solid !important;
}
.gull-gray--by-67 {
  border-top: 67px #90a4ae solid !important;
  border-bottom: 67px #90a4ae solid !important;
}
.gull-gray--bx-67 {
  border-right: 67px #90a4ae solid !important;
  border-left: 67px #90a4ae solid !important;
}
.gull-gray--ba-68 {
  border: 68px #90a4ae solid !important;
}
.gull-gray--bt-68 {
  border-top: 68px #90a4ae solid !important;
}
.gull-gray--br-68 {
  border-right: 68px #90a4ae solid !important;
}
.gull-gray--bl-68 {
  border-left: 68px #90a4ae solid !important;
}
.gull-gray--bb-68 {
  border-bottom: 68px #90a4ae solid !important;
}
.gull-gray--by-68 {
  border-top: 68px #90a4ae solid !important;
  border-bottom: 68px #90a4ae solid !important;
}
.gull-gray--bx-68 {
  border-right: 68px #90a4ae solid !important;
  border-left: 68px #90a4ae solid !important;
}
.gull-gray--ba-69 {
  border: 69px #90a4ae solid !important;
}
.gull-gray--bt-69 {
  border-top: 69px #90a4ae solid !important;
}
.gull-gray--br-69 {
  border-right: 69px #90a4ae solid !important;
}
.gull-gray--bl-69 {
  border-left: 69px #90a4ae solid !important;
}
.gull-gray--bb-69 {
  border-bottom: 69px #90a4ae solid !important;
}
.gull-gray--by-69 {
  border-top: 69px #90a4ae solid !important;
  border-bottom: 69px #90a4ae solid !important;
}
.gull-gray--bx-69 {
  border-right: 69px #90a4ae solid !important;
  border-left: 69px #90a4ae solid !important;
}
.gull-gray--ba-70 {
  border: 70px #90a4ae solid !important;
}
.gull-gray--bt-70 {
  border-top: 70px #90a4ae solid !important;
}
.gull-gray--br-70 {
  border-right: 70px #90a4ae solid !important;
}
.gull-gray--bl-70 {
  border-left: 70px #90a4ae solid !important;
}
.gull-gray--bb-70 {
  border-bottom: 70px #90a4ae solid !important;
}
.gull-gray--by-70 {
  border-top: 70px #90a4ae solid !important;
  border-bottom: 70px #90a4ae solid !important;
}
.gull-gray--bx-70 {
  border-right: 70px #90a4ae solid !important;
  border-left: 70px #90a4ae solid !important;
}
.gull-gray--ba-71 {
  border: 71px #90a4ae solid !important;
}
.gull-gray--bt-71 {
  border-top: 71px #90a4ae solid !important;
}
.gull-gray--br-71 {
  border-right: 71px #90a4ae solid !important;
}
.gull-gray--bl-71 {
  border-left: 71px #90a4ae solid !important;
}
.gull-gray--bb-71 {
  border-bottom: 71px #90a4ae solid !important;
}
.gull-gray--by-71 {
  border-top: 71px #90a4ae solid !important;
  border-bottom: 71px #90a4ae solid !important;
}
.gull-gray--bx-71 {
  border-right: 71px #90a4ae solid !important;
  border-left: 71px #90a4ae solid !important;
}
.gull-gray--ba-72 {
  border: 72px #90a4ae solid !important;
}
.gull-gray--bt-72 {
  border-top: 72px #90a4ae solid !important;
}
.gull-gray--br-72 {
  border-right: 72px #90a4ae solid !important;
}
.gull-gray--bl-72 {
  border-left: 72px #90a4ae solid !important;
}
.gull-gray--bb-72 {
  border-bottom: 72px #90a4ae solid !important;
}
.gull-gray--by-72 {
  border-top: 72px #90a4ae solid !important;
  border-bottom: 72px #90a4ae solid !important;
}
.gull-gray--bx-72 {
  border-right: 72px #90a4ae solid !important;
  border-left: 72px #90a4ae solid !important;
}
.gull-gray--ba-73 {
  border: 73px #90a4ae solid !important;
}
.gull-gray--bt-73 {
  border-top: 73px #90a4ae solid !important;
}
.gull-gray--br-73 {
  border-right: 73px #90a4ae solid !important;
}
.gull-gray--bl-73 {
  border-left: 73px #90a4ae solid !important;
}
.gull-gray--bb-73 {
  border-bottom: 73px #90a4ae solid !important;
}
.gull-gray--by-73 {
  border-top: 73px #90a4ae solid !important;
  border-bottom: 73px #90a4ae solid !important;
}
.gull-gray--bx-73 {
  border-right: 73px #90a4ae solid !important;
  border-left: 73px #90a4ae solid !important;
}
.gull-gray--ba-74 {
  border: 74px #90a4ae solid !important;
}
.gull-gray--bt-74 {
  border-top: 74px #90a4ae solid !important;
}
.gull-gray--br-74 {
  border-right: 74px #90a4ae solid !important;
}
.gull-gray--bl-74 {
  border-left: 74px #90a4ae solid !important;
}
.gull-gray--bb-74 {
  border-bottom: 74px #90a4ae solid !important;
}
.gull-gray--by-74 {
  border-top: 74px #90a4ae solid !important;
  border-bottom: 74px #90a4ae solid !important;
}
.gull-gray--bx-74 {
  border-right: 74px #90a4ae solid !important;
  border-left: 74px #90a4ae solid !important;
}
.gull-gray--ba-75 {
  border: 75px #90a4ae solid !important;
}
.gull-gray--bt-75 {
  border-top: 75px #90a4ae solid !important;
}
.gull-gray--br-75 {
  border-right: 75px #90a4ae solid !important;
}
.gull-gray--bl-75 {
  border-left: 75px #90a4ae solid !important;
}
.gull-gray--bb-75 {
  border-bottom: 75px #90a4ae solid !important;
}
.gull-gray--by-75 {
  border-top: 75px #90a4ae solid !important;
  border-bottom: 75px #90a4ae solid !important;
}
.gull-gray--bx-75 {
  border-right: 75px #90a4ae solid !important;
  border-left: 75px #90a4ae solid !important;
}
.gull-gray--ba-76 {
  border: 76px #90a4ae solid !important;
}
.gull-gray--bt-76 {
  border-top: 76px #90a4ae solid !important;
}
.gull-gray--br-76 {
  border-right: 76px #90a4ae solid !important;
}
.gull-gray--bl-76 {
  border-left: 76px #90a4ae solid !important;
}
.gull-gray--bb-76 {
  border-bottom: 76px #90a4ae solid !important;
}
.gull-gray--by-76 {
  border-top: 76px #90a4ae solid !important;
  border-bottom: 76px #90a4ae solid !important;
}
.gull-gray--bx-76 {
  border-right: 76px #90a4ae solid !important;
  border-left: 76px #90a4ae solid !important;
}
.gull-gray--ba-77 {
  border: 77px #90a4ae solid !important;
}
.gull-gray--bt-77 {
  border-top: 77px #90a4ae solid !important;
}
.gull-gray--br-77 {
  border-right: 77px #90a4ae solid !important;
}
.gull-gray--bl-77 {
  border-left: 77px #90a4ae solid !important;
}
.gull-gray--bb-77 {
  border-bottom: 77px #90a4ae solid !important;
}
.gull-gray--by-77 {
  border-top: 77px #90a4ae solid !important;
  border-bottom: 77px #90a4ae solid !important;
}
.gull-gray--bx-77 {
  border-right: 77px #90a4ae solid !important;
  border-left: 77px #90a4ae solid !important;
}
.gull-gray--ba-78 {
  border: 78px #90a4ae solid !important;
}
.gull-gray--bt-78 {
  border-top: 78px #90a4ae solid !important;
}
.gull-gray--br-78 {
  border-right: 78px #90a4ae solid !important;
}
.gull-gray--bl-78 {
  border-left: 78px #90a4ae solid !important;
}
.gull-gray--bb-78 {
  border-bottom: 78px #90a4ae solid !important;
}
.gull-gray--by-78 {
  border-top: 78px #90a4ae solid !important;
  border-bottom: 78px #90a4ae solid !important;
}
.gull-gray--bx-78 {
  border-right: 78px #90a4ae solid !important;
  border-left: 78px #90a4ae solid !important;
}
.gull-gray--ba-79 {
  border: 79px #90a4ae solid !important;
}
.gull-gray--bt-79 {
  border-top: 79px #90a4ae solid !important;
}
.gull-gray--br-79 {
  border-right: 79px #90a4ae solid !important;
}
.gull-gray--bl-79 {
  border-left: 79px #90a4ae solid !important;
}
.gull-gray--bb-79 {
  border-bottom: 79px #90a4ae solid !important;
}
.gull-gray--by-79 {
  border-top: 79px #90a4ae solid !important;
  border-bottom: 79px #90a4ae solid !important;
}
.gull-gray--bx-79 {
  border-right: 79px #90a4ae solid !important;
  border-left: 79px #90a4ae solid !important;
}
.gull-gray--ba-80 {
  border: 80px #90a4ae solid !important;
}
.gull-gray--bt-80 {
  border-top: 80px #90a4ae solid !important;
}
.gull-gray--br-80 {
  border-right: 80px #90a4ae solid !important;
}
.gull-gray--bl-80 {
  border-left: 80px #90a4ae solid !important;
}
.gull-gray--bb-80 {
  border-bottom: 80px #90a4ae solid !important;
}
.gull-gray--by-80 {
  border-top: 80px #90a4ae solid !important;
  border-bottom: 80px #90a4ae solid !important;
}
.gull-gray--bx-80 {
  border-right: 80px #90a4ae solid !important;
  border-left: 80px #90a4ae solid !important;
}
.gull-gray--ba-81 {
  border: 81px #90a4ae solid !important;
}
.gull-gray--bt-81 {
  border-top: 81px #90a4ae solid !important;
}
.gull-gray--br-81 {
  border-right: 81px #90a4ae solid !important;
}
.gull-gray--bl-81 {
  border-left: 81px #90a4ae solid !important;
}
.gull-gray--bb-81 {
  border-bottom: 81px #90a4ae solid !important;
}
.gull-gray--by-81 {
  border-top: 81px #90a4ae solid !important;
  border-bottom: 81px #90a4ae solid !important;
}
.gull-gray--bx-81 {
  border-right: 81px #90a4ae solid !important;
  border-left: 81px #90a4ae solid !important;
}
.gull-gray--ba-82 {
  border: 82px #90a4ae solid !important;
}
.gull-gray--bt-82 {
  border-top: 82px #90a4ae solid !important;
}
.gull-gray--br-82 {
  border-right: 82px #90a4ae solid !important;
}
.gull-gray--bl-82 {
  border-left: 82px #90a4ae solid !important;
}
.gull-gray--bb-82 {
  border-bottom: 82px #90a4ae solid !important;
}
.gull-gray--by-82 {
  border-top: 82px #90a4ae solid !important;
  border-bottom: 82px #90a4ae solid !important;
}
.gull-gray--bx-82 {
  border-right: 82px #90a4ae solid !important;
  border-left: 82px #90a4ae solid !important;
}
.gull-gray--ba-83 {
  border: 83px #90a4ae solid !important;
}
.gull-gray--bt-83 {
  border-top: 83px #90a4ae solid !important;
}
.gull-gray--br-83 {
  border-right: 83px #90a4ae solid !important;
}
.gull-gray--bl-83 {
  border-left: 83px #90a4ae solid !important;
}
.gull-gray--bb-83 {
  border-bottom: 83px #90a4ae solid !important;
}
.gull-gray--by-83 {
  border-top: 83px #90a4ae solid !important;
  border-bottom: 83px #90a4ae solid !important;
}
.gull-gray--bx-83 {
  border-right: 83px #90a4ae solid !important;
  border-left: 83px #90a4ae solid !important;
}
.gull-gray--ba-84 {
  border: 84px #90a4ae solid !important;
}
.gull-gray--bt-84 {
  border-top: 84px #90a4ae solid !important;
}
.gull-gray--br-84 {
  border-right: 84px #90a4ae solid !important;
}
.gull-gray--bl-84 {
  border-left: 84px #90a4ae solid !important;
}
.gull-gray--bb-84 {
  border-bottom: 84px #90a4ae solid !important;
}
.gull-gray--by-84 {
  border-top: 84px #90a4ae solid !important;
  border-bottom: 84px #90a4ae solid !important;
}
.gull-gray--bx-84 {
  border-right: 84px #90a4ae solid !important;
  border-left: 84px #90a4ae solid !important;
}
.gull-gray--ba-85 {
  border: 85px #90a4ae solid !important;
}
.gull-gray--bt-85 {
  border-top: 85px #90a4ae solid !important;
}
.gull-gray--br-85 {
  border-right: 85px #90a4ae solid !important;
}
.gull-gray--bl-85 {
  border-left: 85px #90a4ae solid !important;
}
.gull-gray--bb-85 {
  border-bottom: 85px #90a4ae solid !important;
}
.gull-gray--by-85 {
  border-top: 85px #90a4ae solid !important;
  border-bottom: 85px #90a4ae solid !important;
}
.gull-gray--bx-85 {
  border-right: 85px #90a4ae solid !important;
  border-left: 85px #90a4ae solid !important;
}
.gull-gray--ba-86 {
  border: 86px #90a4ae solid !important;
}
.gull-gray--bt-86 {
  border-top: 86px #90a4ae solid !important;
}
.gull-gray--br-86 {
  border-right: 86px #90a4ae solid !important;
}
.gull-gray--bl-86 {
  border-left: 86px #90a4ae solid !important;
}
.gull-gray--bb-86 {
  border-bottom: 86px #90a4ae solid !important;
}
.gull-gray--by-86 {
  border-top: 86px #90a4ae solid !important;
  border-bottom: 86px #90a4ae solid !important;
}
.gull-gray--bx-86 {
  border-right: 86px #90a4ae solid !important;
  border-left: 86px #90a4ae solid !important;
}
.gull-gray--ba-87 {
  border: 87px #90a4ae solid !important;
}
.gull-gray--bt-87 {
  border-top: 87px #90a4ae solid !important;
}
.gull-gray--br-87 {
  border-right: 87px #90a4ae solid !important;
}
.gull-gray--bl-87 {
  border-left: 87px #90a4ae solid !important;
}
.gull-gray--bb-87 {
  border-bottom: 87px #90a4ae solid !important;
}
.gull-gray--by-87 {
  border-top: 87px #90a4ae solid !important;
  border-bottom: 87px #90a4ae solid !important;
}
.gull-gray--bx-87 {
  border-right: 87px #90a4ae solid !important;
  border-left: 87px #90a4ae solid !important;
}
.gull-gray--ba-88 {
  border: 88px #90a4ae solid !important;
}
.gull-gray--bt-88 {
  border-top: 88px #90a4ae solid !important;
}
.gull-gray--br-88 {
  border-right: 88px #90a4ae solid !important;
}
.gull-gray--bl-88 {
  border-left: 88px #90a4ae solid !important;
}
.gull-gray--bb-88 {
  border-bottom: 88px #90a4ae solid !important;
}
.gull-gray--by-88 {
  border-top: 88px #90a4ae solid !important;
  border-bottom: 88px #90a4ae solid !important;
}
.gull-gray--bx-88 {
  border-right: 88px #90a4ae solid !important;
  border-left: 88px #90a4ae solid !important;
}
.gull-gray--ba-89 {
  border: 89px #90a4ae solid !important;
}
.gull-gray--bt-89 {
  border-top: 89px #90a4ae solid !important;
}
.gull-gray--br-89 {
  border-right: 89px #90a4ae solid !important;
}
.gull-gray--bl-89 {
  border-left: 89px #90a4ae solid !important;
}
.gull-gray--bb-89 {
  border-bottom: 89px #90a4ae solid !important;
}
.gull-gray--by-89 {
  border-top: 89px #90a4ae solid !important;
  border-bottom: 89px #90a4ae solid !important;
}
.gull-gray--bx-89 {
  border-right: 89px #90a4ae solid !important;
  border-left: 89px #90a4ae solid !important;
}
.gull-gray--ba-90 {
  border: 90px #90a4ae solid !important;
}
.gull-gray--bt-90 {
  border-top: 90px #90a4ae solid !important;
}
.gull-gray--br-90 {
  border-right: 90px #90a4ae solid !important;
}
.gull-gray--bl-90 {
  border-left: 90px #90a4ae solid !important;
}
.gull-gray--bb-90 {
  border-bottom: 90px #90a4ae solid !important;
}
.gull-gray--by-90 {
  border-top: 90px #90a4ae solid !important;
  border-bottom: 90px #90a4ae solid !important;
}
.gull-gray--bx-90 {
  border-right: 90px #90a4ae solid !important;
  border-left: 90px #90a4ae solid !important;
}
.gull-gray--ba-91 {
  border: 91px #90a4ae solid !important;
}
.gull-gray--bt-91 {
  border-top: 91px #90a4ae solid !important;
}
.gull-gray--br-91 {
  border-right: 91px #90a4ae solid !important;
}
.gull-gray--bl-91 {
  border-left: 91px #90a4ae solid !important;
}
.gull-gray--bb-91 {
  border-bottom: 91px #90a4ae solid !important;
}
.gull-gray--by-91 {
  border-top: 91px #90a4ae solid !important;
  border-bottom: 91px #90a4ae solid !important;
}
.gull-gray--bx-91 {
  border-right: 91px #90a4ae solid !important;
  border-left: 91px #90a4ae solid !important;
}
.gull-gray--ba-92 {
  border: 92px #90a4ae solid !important;
}
.gull-gray--bt-92 {
  border-top: 92px #90a4ae solid !important;
}
.gull-gray--br-92 {
  border-right: 92px #90a4ae solid !important;
}
.gull-gray--bl-92 {
  border-left: 92px #90a4ae solid !important;
}
.gull-gray--bb-92 {
  border-bottom: 92px #90a4ae solid !important;
}
.gull-gray--by-92 {
  border-top: 92px #90a4ae solid !important;
  border-bottom: 92px #90a4ae solid !important;
}
.gull-gray--bx-92 {
  border-right: 92px #90a4ae solid !important;
  border-left: 92px #90a4ae solid !important;
}
.gull-gray--ba-93 {
  border: 93px #90a4ae solid !important;
}
.gull-gray--bt-93 {
  border-top: 93px #90a4ae solid !important;
}
.gull-gray--br-93 {
  border-right: 93px #90a4ae solid !important;
}
.gull-gray--bl-93 {
  border-left: 93px #90a4ae solid !important;
}
.gull-gray--bb-93 {
  border-bottom: 93px #90a4ae solid !important;
}
.gull-gray--by-93 {
  border-top: 93px #90a4ae solid !important;
  border-bottom: 93px #90a4ae solid !important;
}
.gull-gray--bx-93 {
  border-right: 93px #90a4ae solid !important;
  border-left: 93px #90a4ae solid !important;
}
.gull-gray--ba-94 {
  border: 94px #90a4ae solid !important;
}
.gull-gray--bt-94 {
  border-top: 94px #90a4ae solid !important;
}
.gull-gray--br-94 {
  border-right: 94px #90a4ae solid !important;
}
.gull-gray--bl-94 {
  border-left: 94px #90a4ae solid !important;
}
.gull-gray--bb-94 {
  border-bottom: 94px #90a4ae solid !important;
}
.gull-gray--by-94 {
  border-top: 94px #90a4ae solid !important;
  border-bottom: 94px #90a4ae solid !important;
}
.gull-gray--bx-94 {
  border-right: 94px #90a4ae solid !important;
  border-left: 94px #90a4ae solid !important;
}
.gull-gray--ba-95 {
  border: 95px #90a4ae solid !important;
}
.gull-gray--bt-95 {
  border-top: 95px #90a4ae solid !important;
}
.gull-gray--br-95 {
  border-right: 95px #90a4ae solid !important;
}
.gull-gray--bl-95 {
  border-left: 95px #90a4ae solid !important;
}
.gull-gray--bb-95 {
  border-bottom: 95px #90a4ae solid !important;
}
.gull-gray--by-95 {
  border-top: 95px #90a4ae solid !important;
  border-bottom: 95px #90a4ae solid !important;
}
.gull-gray--bx-95 {
  border-right: 95px #90a4ae solid !important;
  border-left: 95px #90a4ae solid !important;
}
.gull-gray--ba-96 {
  border: 96px #90a4ae solid !important;
}
.gull-gray--bt-96 {
  border-top: 96px #90a4ae solid !important;
}
.gull-gray--br-96 {
  border-right: 96px #90a4ae solid !important;
}
.gull-gray--bl-96 {
  border-left: 96px #90a4ae solid !important;
}
.gull-gray--bb-96 {
  border-bottom: 96px #90a4ae solid !important;
}
.gull-gray--by-96 {
  border-top: 96px #90a4ae solid !important;
  border-bottom: 96px #90a4ae solid !important;
}
.gull-gray--bx-96 {
  border-right: 96px #90a4ae solid !important;
  border-left: 96px #90a4ae solid !important;
}
.gull-gray--ba-97 {
  border: 97px #90a4ae solid !important;
}
.gull-gray--bt-97 {
  border-top: 97px #90a4ae solid !important;
}
.gull-gray--br-97 {
  border-right: 97px #90a4ae solid !important;
}
.gull-gray--bl-97 {
  border-left: 97px #90a4ae solid !important;
}
.gull-gray--bb-97 {
  border-bottom: 97px #90a4ae solid !important;
}
.gull-gray--by-97 {
  border-top: 97px #90a4ae solid !important;
  border-bottom: 97px #90a4ae solid !important;
}
.gull-gray--bx-97 {
  border-right: 97px #90a4ae solid !important;
  border-left: 97px #90a4ae solid !important;
}
.gull-gray--ba-98 {
  border: 98px #90a4ae solid !important;
}
.gull-gray--bt-98 {
  border-top: 98px #90a4ae solid !important;
}
.gull-gray--br-98 {
  border-right: 98px #90a4ae solid !important;
}
.gull-gray--bl-98 {
  border-left: 98px #90a4ae solid !important;
}
.gull-gray--bb-98 {
  border-bottom: 98px #90a4ae solid !important;
}
.gull-gray--by-98 {
  border-top: 98px #90a4ae solid !important;
  border-bottom: 98px #90a4ae solid !important;
}
.gull-gray--bx-98 {
  border-right: 98px #90a4ae solid !important;
  border-left: 98px #90a4ae solid !important;
}
.gull-gray--ba-99 {
  border: 99px #90a4ae solid !important;
}
.gull-gray--bt-99 {
  border-top: 99px #90a4ae solid !important;
}
.gull-gray--br-99 {
  border-right: 99px #90a4ae solid !important;
}
.gull-gray--bl-99 {
  border-left: 99px #90a4ae solid !important;
}
.gull-gray--bb-99 {
  border-bottom: 99px #90a4ae solid !important;
}
.gull-gray--by-99 {
  border-top: 99px #90a4ae solid !important;
  border-bottom: 99px #90a4ae solid !important;
}
.gull-gray--bx-99 {
  border-right: 99px #90a4ae solid !important;
  border-left: 99px #90a4ae solid !important;
}
.gull-gray--ba-100 {
  border: 100px #90a4ae solid !important;
}
.gull-gray--bt-100 {
  border-top: 100px #90a4ae solid !important;
}
.gull-gray--br-100 {
  border-right: 100px #90a4ae solid !important;
}
.gull-gray--bl-100 {
  border-left: 100px #90a4ae solid !important;
}
.gull-gray--bb-100 {
  border-bottom: 100px #90a4ae solid !important;
}
.gull-gray--by-100 {
  border-top: 100px #90a4ae solid !important;
  border-bottom: 100px #90a4ae solid !important;
}
.gull-gray--bx-100 {
  border-right: 100px #90a4ae solid !important;
  border-left: 100px #90a4ae solid !important;
}
.chalky--ba-1 {
  border: 1px #edd49c solid !important;
}
.chalky--bt-1 {
  border-top: 1px #edd49c solid !important;
}
.chalky--br-1 {
  border-right: 1px #edd49c solid !important;
}
.chalky--bl-1 {
  border-left: 1px #edd49c solid !important;
}
.chalky--bb-1 {
  border-bottom: 1px #edd49c solid !important;
}
.chalky--by-1 {
  border-top: 1px #edd49c solid !important;
  border-bottom: 1px #edd49c solid !important;
}
.chalky--bx-1 {
  border-right: 1px #edd49c solid !important;
  border-left: 1px #edd49c solid !important;
}
.chalky--ba-2 {
  border: 2px #edd49c solid !important;
}
.chalky--bt-2 {
  border-top: 2px #edd49c solid !important;
}
.chalky--br-2 {
  border-right: 2px #edd49c solid !important;
}
.chalky--bl-2 {
  border-left: 2px #edd49c solid !important;
}
.chalky--bb-2 {
  border-bottom: 2px #edd49c solid !important;
}
.chalky--by-2 {
  border-top: 2px #edd49c solid !important;
  border-bottom: 2px #edd49c solid !important;
}
.chalky--bx-2 {
  border-right: 2px #edd49c solid !important;
  border-left: 2px #edd49c solid !important;
}
.chalky--ba-3 {
  border: 3px #edd49c solid !important;
}
.chalky--bt-3 {
  border-top: 3px #edd49c solid !important;
}
.chalky--br-3 {
  border-right: 3px #edd49c solid !important;
}
.chalky--bl-3 {
  border-left: 3px #edd49c solid !important;
}
.chalky--bb-3 {
  border-bottom: 3px #edd49c solid !important;
}
.chalky--by-3 {
  border-top: 3px #edd49c solid !important;
  border-bottom: 3px #edd49c solid !important;
}
.chalky--bx-3 {
  border-right: 3px #edd49c solid !important;
  border-left: 3px #edd49c solid !important;
}
.chalky--ba-4 {
  border: 4px #edd49c solid !important;
}
.chalky--bt-4 {
  border-top: 4px #edd49c solid !important;
}
.chalky--br-4 {
  border-right: 4px #edd49c solid !important;
}
.chalky--bl-4 {
  border-left: 4px #edd49c solid !important;
}
.chalky--bb-4 {
  border-bottom: 4px #edd49c solid !important;
}
.chalky--by-4 {
  border-top: 4px #edd49c solid !important;
  border-bottom: 4px #edd49c solid !important;
}
.chalky--bx-4 {
  border-right: 4px #edd49c solid !important;
  border-left: 4px #edd49c solid !important;
}
.chalky--ba-5 {
  border: 5px #edd49c solid !important;
}
.chalky--bt-5 {
  border-top: 5px #edd49c solid !important;
}
.chalky--br-5 {
  border-right: 5px #edd49c solid !important;
}
.chalky--bl-5 {
  border-left: 5px #edd49c solid !important;
}
.chalky--bb-5 {
  border-bottom: 5px #edd49c solid !important;
}
.chalky--by-5 {
  border-top: 5px #edd49c solid !important;
  border-bottom: 5px #edd49c solid !important;
}
.chalky--bx-5 {
  border-right: 5px #edd49c solid !important;
  border-left: 5px #edd49c solid !important;
}
.chalky--ba-6 {
  border: 6px #edd49c solid !important;
}
.chalky--bt-6 {
  border-top: 6px #edd49c solid !important;
}
.chalky--br-6 {
  border-right: 6px #edd49c solid !important;
}
.chalky--bl-6 {
  border-left: 6px #edd49c solid !important;
}
.chalky--bb-6 {
  border-bottom: 6px #edd49c solid !important;
}
.chalky--by-6 {
  border-top: 6px #edd49c solid !important;
  border-bottom: 6px #edd49c solid !important;
}
.chalky--bx-6 {
  border-right: 6px #edd49c solid !important;
  border-left: 6px #edd49c solid !important;
}
.chalky--ba-7 {
  border: 7px #edd49c solid !important;
}
.chalky--bt-7 {
  border-top: 7px #edd49c solid !important;
}
.chalky--br-7 {
  border-right: 7px #edd49c solid !important;
}
.chalky--bl-7 {
  border-left: 7px #edd49c solid !important;
}
.chalky--bb-7 {
  border-bottom: 7px #edd49c solid !important;
}
.chalky--by-7 {
  border-top: 7px #edd49c solid !important;
  border-bottom: 7px #edd49c solid !important;
}
.chalky--bx-7 {
  border-right: 7px #edd49c solid !important;
  border-left: 7px #edd49c solid !important;
}
.chalky--ba-8 {
  border: 8px #edd49c solid !important;
}
.chalky--bt-8 {
  border-top: 8px #edd49c solid !important;
}
.chalky--br-8 {
  border-right: 8px #edd49c solid !important;
}
.chalky--bl-8 {
  border-left: 8px #edd49c solid !important;
}
.chalky--bb-8 {
  border-bottom: 8px #edd49c solid !important;
}
.chalky--by-8 {
  border-top: 8px #edd49c solid !important;
  border-bottom: 8px #edd49c solid !important;
}
.chalky--bx-8 {
  border-right: 8px #edd49c solid !important;
  border-left: 8px #edd49c solid !important;
}
.chalky--ba-9 {
  border: 9px #edd49c solid !important;
}
.chalky--bt-9 {
  border-top: 9px #edd49c solid !important;
}
.chalky--br-9 {
  border-right: 9px #edd49c solid !important;
}
.chalky--bl-9 {
  border-left: 9px #edd49c solid !important;
}
.chalky--bb-9 {
  border-bottom: 9px #edd49c solid !important;
}
.chalky--by-9 {
  border-top: 9px #edd49c solid !important;
  border-bottom: 9px #edd49c solid !important;
}
.chalky--bx-9 {
  border-right: 9px #edd49c solid !important;
  border-left: 9px #edd49c solid !important;
}
.chalky--ba-10 {
  border: 10px #edd49c solid !important;
}
.chalky--bt-10 {
  border-top: 10px #edd49c solid !important;
}
.chalky--br-10 {
  border-right: 10px #edd49c solid !important;
}
.chalky--bl-10 {
  border-left: 10px #edd49c solid !important;
}
.chalky--bb-10 {
  border-bottom: 10px #edd49c solid !important;
}
.chalky--by-10 {
  border-top: 10px #edd49c solid !important;
  border-bottom: 10px #edd49c solid !important;
}
.chalky--bx-10 {
  border-right: 10px #edd49c solid !important;
  border-left: 10px #edd49c solid !important;
}
.chalky--ba-11 {
  border: 11px #edd49c solid !important;
}
.chalky--bt-11 {
  border-top: 11px #edd49c solid !important;
}
.chalky--br-11 {
  border-right: 11px #edd49c solid !important;
}
.chalky--bl-11 {
  border-left: 11px #edd49c solid !important;
}
.chalky--bb-11 {
  border-bottom: 11px #edd49c solid !important;
}
.chalky--by-11 {
  border-top: 11px #edd49c solid !important;
  border-bottom: 11px #edd49c solid !important;
}
.chalky--bx-11 {
  border-right: 11px #edd49c solid !important;
  border-left: 11px #edd49c solid !important;
}
.chalky--ba-12 {
  border: 12px #edd49c solid !important;
}
.chalky--bt-12 {
  border-top: 12px #edd49c solid !important;
}
.chalky--br-12 {
  border-right: 12px #edd49c solid !important;
}
.chalky--bl-12 {
  border-left: 12px #edd49c solid !important;
}
.chalky--bb-12 {
  border-bottom: 12px #edd49c solid !important;
}
.chalky--by-12 {
  border-top: 12px #edd49c solid !important;
  border-bottom: 12px #edd49c solid !important;
}
.chalky--bx-12 {
  border-right: 12px #edd49c solid !important;
  border-left: 12px #edd49c solid !important;
}
.chalky--ba-13 {
  border: 13px #edd49c solid !important;
}
.chalky--bt-13 {
  border-top: 13px #edd49c solid !important;
}
.chalky--br-13 {
  border-right: 13px #edd49c solid !important;
}
.chalky--bl-13 {
  border-left: 13px #edd49c solid !important;
}
.chalky--bb-13 {
  border-bottom: 13px #edd49c solid !important;
}
.chalky--by-13 {
  border-top: 13px #edd49c solid !important;
  border-bottom: 13px #edd49c solid !important;
}
.chalky--bx-13 {
  border-right: 13px #edd49c solid !important;
  border-left: 13px #edd49c solid !important;
}
.chalky--ba-14 {
  border: 14px #edd49c solid !important;
}
.chalky--bt-14 {
  border-top: 14px #edd49c solid !important;
}
.chalky--br-14 {
  border-right: 14px #edd49c solid !important;
}
.chalky--bl-14 {
  border-left: 14px #edd49c solid !important;
}
.chalky--bb-14 {
  border-bottom: 14px #edd49c solid !important;
}
.chalky--by-14 {
  border-top: 14px #edd49c solid !important;
  border-bottom: 14px #edd49c solid !important;
}
.chalky--bx-14 {
  border-right: 14px #edd49c solid !important;
  border-left: 14px #edd49c solid !important;
}
.chalky--ba-15 {
  border: 15px #edd49c solid !important;
}
.chalky--bt-15 {
  border-top: 15px #edd49c solid !important;
}
.chalky--br-15 {
  border-right: 15px #edd49c solid !important;
}
.chalky--bl-15 {
  border-left: 15px #edd49c solid !important;
}
.chalky--bb-15 {
  border-bottom: 15px #edd49c solid !important;
}
.chalky--by-15 {
  border-top: 15px #edd49c solid !important;
  border-bottom: 15px #edd49c solid !important;
}
.chalky--bx-15 {
  border-right: 15px #edd49c solid !important;
  border-left: 15px #edd49c solid !important;
}
.chalky--ba-16 {
  border: 16px #edd49c solid !important;
}
.chalky--bt-16 {
  border-top: 16px #edd49c solid !important;
}
.chalky--br-16 {
  border-right: 16px #edd49c solid !important;
}
.chalky--bl-16 {
  border-left: 16px #edd49c solid !important;
}
.chalky--bb-16 {
  border-bottom: 16px #edd49c solid !important;
}
.chalky--by-16 {
  border-top: 16px #edd49c solid !important;
  border-bottom: 16px #edd49c solid !important;
}
.chalky--bx-16 {
  border-right: 16px #edd49c solid !important;
  border-left: 16px #edd49c solid !important;
}
.chalky--ba-17 {
  border: 17px #edd49c solid !important;
}
.chalky--bt-17 {
  border-top: 17px #edd49c solid !important;
}
.chalky--br-17 {
  border-right: 17px #edd49c solid !important;
}
.chalky--bl-17 {
  border-left: 17px #edd49c solid !important;
}
.chalky--bb-17 {
  border-bottom: 17px #edd49c solid !important;
}
.chalky--by-17 {
  border-top: 17px #edd49c solid !important;
  border-bottom: 17px #edd49c solid !important;
}
.chalky--bx-17 {
  border-right: 17px #edd49c solid !important;
  border-left: 17px #edd49c solid !important;
}
.chalky--ba-18 {
  border: 18px #edd49c solid !important;
}
.chalky--bt-18 {
  border-top: 18px #edd49c solid !important;
}
.chalky--br-18 {
  border-right: 18px #edd49c solid !important;
}
.chalky--bl-18 {
  border-left: 18px #edd49c solid !important;
}
.chalky--bb-18 {
  border-bottom: 18px #edd49c solid !important;
}
.chalky--by-18 {
  border-top: 18px #edd49c solid !important;
  border-bottom: 18px #edd49c solid !important;
}
.chalky--bx-18 {
  border-right: 18px #edd49c solid !important;
  border-left: 18px #edd49c solid !important;
}
.chalky--ba-19 {
  border: 19px #edd49c solid !important;
}
.chalky--bt-19 {
  border-top: 19px #edd49c solid !important;
}
.chalky--br-19 {
  border-right: 19px #edd49c solid !important;
}
.chalky--bl-19 {
  border-left: 19px #edd49c solid !important;
}
.chalky--bb-19 {
  border-bottom: 19px #edd49c solid !important;
}
.chalky--by-19 {
  border-top: 19px #edd49c solid !important;
  border-bottom: 19px #edd49c solid !important;
}
.chalky--bx-19 {
  border-right: 19px #edd49c solid !important;
  border-left: 19px #edd49c solid !important;
}
.chalky--ba-20 {
  border: 20px #edd49c solid !important;
}
.chalky--bt-20 {
  border-top: 20px #edd49c solid !important;
}
.chalky--br-20 {
  border-right: 20px #edd49c solid !important;
}
.chalky--bl-20 {
  border-left: 20px #edd49c solid !important;
}
.chalky--bb-20 {
  border-bottom: 20px #edd49c solid !important;
}
.chalky--by-20 {
  border-top: 20px #edd49c solid !important;
  border-bottom: 20px #edd49c solid !important;
}
.chalky--bx-20 {
  border-right: 20px #edd49c solid !important;
  border-left: 20px #edd49c solid !important;
}
.chalky--ba-21 {
  border: 21px #edd49c solid !important;
}
.chalky--bt-21 {
  border-top: 21px #edd49c solid !important;
}
.chalky--br-21 {
  border-right: 21px #edd49c solid !important;
}
.chalky--bl-21 {
  border-left: 21px #edd49c solid !important;
}
.chalky--bb-21 {
  border-bottom: 21px #edd49c solid !important;
}
.chalky--by-21 {
  border-top: 21px #edd49c solid !important;
  border-bottom: 21px #edd49c solid !important;
}
.chalky--bx-21 {
  border-right: 21px #edd49c solid !important;
  border-left: 21px #edd49c solid !important;
}
.chalky--ba-22 {
  border: 22px #edd49c solid !important;
}
.chalky--bt-22 {
  border-top: 22px #edd49c solid !important;
}
.chalky--br-22 {
  border-right: 22px #edd49c solid !important;
}
.chalky--bl-22 {
  border-left: 22px #edd49c solid !important;
}
.chalky--bb-22 {
  border-bottom: 22px #edd49c solid !important;
}
.chalky--by-22 {
  border-top: 22px #edd49c solid !important;
  border-bottom: 22px #edd49c solid !important;
}
.chalky--bx-22 {
  border-right: 22px #edd49c solid !important;
  border-left: 22px #edd49c solid !important;
}
.chalky--ba-23 {
  border: 23px #edd49c solid !important;
}
.chalky--bt-23 {
  border-top: 23px #edd49c solid !important;
}
.chalky--br-23 {
  border-right: 23px #edd49c solid !important;
}
.chalky--bl-23 {
  border-left: 23px #edd49c solid !important;
}
.chalky--bb-23 {
  border-bottom: 23px #edd49c solid !important;
}
.chalky--by-23 {
  border-top: 23px #edd49c solid !important;
  border-bottom: 23px #edd49c solid !important;
}
.chalky--bx-23 {
  border-right: 23px #edd49c solid !important;
  border-left: 23px #edd49c solid !important;
}
.chalky--ba-24 {
  border: 24px #edd49c solid !important;
}
.chalky--bt-24 {
  border-top: 24px #edd49c solid !important;
}
.chalky--br-24 {
  border-right: 24px #edd49c solid !important;
}
.chalky--bl-24 {
  border-left: 24px #edd49c solid !important;
}
.chalky--bb-24 {
  border-bottom: 24px #edd49c solid !important;
}
.chalky--by-24 {
  border-top: 24px #edd49c solid !important;
  border-bottom: 24px #edd49c solid !important;
}
.chalky--bx-24 {
  border-right: 24px #edd49c solid !important;
  border-left: 24px #edd49c solid !important;
}
.chalky--ba-25 {
  border: 25px #edd49c solid !important;
}
.chalky--bt-25 {
  border-top: 25px #edd49c solid !important;
}
.chalky--br-25 {
  border-right: 25px #edd49c solid !important;
}
.chalky--bl-25 {
  border-left: 25px #edd49c solid !important;
}
.chalky--bb-25 {
  border-bottom: 25px #edd49c solid !important;
}
.chalky--by-25 {
  border-top: 25px #edd49c solid !important;
  border-bottom: 25px #edd49c solid !important;
}
.chalky--bx-25 {
  border-right: 25px #edd49c solid !important;
  border-left: 25px #edd49c solid !important;
}
.chalky--ba-26 {
  border: 26px #edd49c solid !important;
}
.chalky--bt-26 {
  border-top: 26px #edd49c solid !important;
}
.chalky--br-26 {
  border-right: 26px #edd49c solid !important;
}
.chalky--bl-26 {
  border-left: 26px #edd49c solid !important;
}
.chalky--bb-26 {
  border-bottom: 26px #edd49c solid !important;
}
.chalky--by-26 {
  border-top: 26px #edd49c solid !important;
  border-bottom: 26px #edd49c solid !important;
}
.chalky--bx-26 {
  border-right: 26px #edd49c solid !important;
  border-left: 26px #edd49c solid !important;
}
.chalky--ba-27 {
  border: 27px #edd49c solid !important;
}
.chalky--bt-27 {
  border-top: 27px #edd49c solid !important;
}
.chalky--br-27 {
  border-right: 27px #edd49c solid !important;
}
.chalky--bl-27 {
  border-left: 27px #edd49c solid !important;
}
.chalky--bb-27 {
  border-bottom: 27px #edd49c solid !important;
}
.chalky--by-27 {
  border-top: 27px #edd49c solid !important;
  border-bottom: 27px #edd49c solid !important;
}
.chalky--bx-27 {
  border-right: 27px #edd49c solid !important;
  border-left: 27px #edd49c solid !important;
}
.chalky--ba-28 {
  border: 28px #edd49c solid !important;
}
.chalky--bt-28 {
  border-top: 28px #edd49c solid !important;
}
.chalky--br-28 {
  border-right: 28px #edd49c solid !important;
}
.chalky--bl-28 {
  border-left: 28px #edd49c solid !important;
}
.chalky--bb-28 {
  border-bottom: 28px #edd49c solid !important;
}
.chalky--by-28 {
  border-top: 28px #edd49c solid !important;
  border-bottom: 28px #edd49c solid !important;
}
.chalky--bx-28 {
  border-right: 28px #edd49c solid !important;
  border-left: 28px #edd49c solid !important;
}
.chalky--ba-29 {
  border: 29px #edd49c solid !important;
}
.chalky--bt-29 {
  border-top: 29px #edd49c solid !important;
}
.chalky--br-29 {
  border-right: 29px #edd49c solid !important;
}
.chalky--bl-29 {
  border-left: 29px #edd49c solid !important;
}
.chalky--bb-29 {
  border-bottom: 29px #edd49c solid !important;
}
.chalky--by-29 {
  border-top: 29px #edd49c solid !important;
  border-bottom: 29px #edd49c solid !important;
}
.chalky--bx-29 {
  border-right: 29px #edd49c solid !important;
  border-left: 29px #edd49c solid !important;
}
.chalky--ba-30 {
  border: 30px #edd49c solid !important;
}
.chalky--bt-30 {
  border-top: 30px #edd49c solid !important;
}
.chalky--br-30 {
  border-right: 30px #edd49c solid !important;
}
.chalky--bl-30 {
  border-left: 30px #edd49c solid !important;
}
.chalky--bb-30 {
  border-bottom: 30px #edd49c solid !important;
}
.chalky--by-30 {
  border-top: 30px #edd49c solid !important;
  border-bottom: 30px #edd49c solid !important;
}
.chalky--bx-30 {
  border-right: 30px #edd49c solid !important;
  border-left: 30px #edd49c solid !important;
}
.chalky--ba-31 {
  border: 31px #edd49c solid !important;
}
.chalky--bt-31 {
  border-top: 31px #edd49c solid !important;
}
.chalky--br-31 {
  border-right: 31px #edd49c solid !important;
}
.chalky--bl-31 {
  border-left: 31px #edd49c solid !important;
}
.chalky--bb-31 {
  border-bottom: 31px #edd49c solid !important;
}
.chalky--by-31 {
  border-top: 31px #edd49c solid !important;
  border-bottom: 31px #edd49c solid !important;
}
.chalky--bx-31 {
  border-right: 31px #edd49c solid !important;
  border-left: 31px #edd49c solid !important;
}
.chalky--ba-32 {
  border: 32px #edd49c solid !important;
}
.chalky--bt-32 {
  border-top: 32px #edd49c solid !important;
}
.chalky--br-32 {
  border-right: 32px #edd49c solid !important;
}
.chalky--bl-32 {
  border-left: 32px #edd49c solid !important;
}
.chalky--bb-32 {
  border-bottom: 32px #edd49c solid !important;
}
.chalky--by-32 {
  border-top: 32px #edd49c solid !important;
  border-bottom: 32px #edd49c solid !important;
}
.chalky--bx-32 {
  border-right: 32px #edd49c solid !important;
  border-left: 32px #edd49c solid !important;
}
.chalky--ba-33 {
  border: 33px #edd49c solid !important;
}
.chalky--bt-33 {
  border-top: 33px #edd49c solid !important;
}
.chalky--br-33 {
  border-right: 33px #edd49c solid !important;
}
.chalky--bl-33 {
  border-left: 33px #edd49c solid !important;
}
.chalky--bb-33 {
  border-bottom: 33px #edd49c solid !important;
}
.chalky--by-33 {
  border-top: 33px #edd49c solid !important;
  border-bottom: 33px #edd49c solid !important;
}
.chalky--bx-33 {
  border-right: 33px #edd49c solid !important;
  border-left: 33px #edd49c solid !important;
}
.chalky--ba-34 {
  border: 34px #edd49c solid !important;
}
.chalky--bt-34 {
  border-top: 34px #edd49c solid !important;
}
.chalky--br-34 {
  border-right: 34px #edd49c solid !important;
}
.chalky--bl-34 {
  border-left: 34px #edd49c solid !important;
}
.chalky--bb-34 {
  border-bottom: 34px #edd49c solid !important;
}
.chalky--by-34 {
  border-top: 34px #edd49c solid !important;
  border-bottom: 34px #edd49c solid !important;
}
.chalky--bx-34 {
  border-right: 34px #edd49c solid !important;
  border-left: 34px #edd49c solid !important;
}
.chalky--ba-35 {
  border: 35px #edd49c solid !important;
}
.chalky--bt-35 {
  border-top: 35px #edd49c solid !important;
}
.chalky--br-35 {
  border-right: 35px #edd49c solid !important;
}
.chalky--bl-35 {
  border-left: 35px #edd49c solid !important;
}
.chalky--bb-35 {
  border-bottom: 35px #edd49c solid !important;
}
.chalky--by-35 {
  border-top: 35px #edd49c solid !important;
  border-bottom: 35px #edd49c solid !important;
}
.chalky--bx-35 {
  border-right: 35px #edd49c solid !important;
  border-left: 35px #edd49c solid !important;
}
.chalky--ba-36 {
  border: 36px #edd49c solid !important;
}
.chalky--bt-36 {
  border-top: 36px #edd49c solid !important;
}
.chalky--br-36 {
  border-right: 36px #edd49c solid !important;
}
.chalky--bl-36 {
  border-left: 36px #edd49c solid !important;
}
.chalky--bb-36 {
  border-bottom: 36px #edd49c solid !important;
}
.chalky--by-36 {
  border-top: 36px #edd49c solid !important;
  border-bottom: 36px #edd49c solid !important;
}
.chalky--bx-36 {
  border-right: 36px #edd49c solid !important;
  border-left: 36px #edd49c solid !important;
}
.chalky--ba-37 {
  border: 37px #edd49c solid !important;
}
.chalky--bt-37 {
  border-top: 37px #edd49c solid !important;
}
.chalky--br-37 {
  border-right: 37px #edd49c solid !important;
}
.chalky--bl-37 {
  border-left: 37px #edd49c solid !important;
}
.chalky--bb-37 {
  border-bottom: 37px #edd49c solid !important;
}
.chalky--by-37 {
  border-top: 37px #edd49c solid !important;
  border-bottom: 37px #edd49c solid !important;
}
.chalky--bx-37 {
  border-right: 37px #edd49c solid !important;
  border-left: 37px #edd49c solid !important;
}
.chalky--ba-38 {
  border: 38px #edd49c solid !important;
}
.chalky--bt-38 {
  border-top: 38px #edd49c solid !important;
}
.chalky--br-38 {
  border-right: 38px #edd49c solid !important;
}
.chalky--bl-38 {
  border-left: 38px #edd49c solid !important;
}
.chalky--bb-38 {
  border-bottom: 38px #edd49c solid !important;
}
.chalky--by-38 {
  border-top: 38px #edd49c solid !important;
  border-bottom: 38px #edd49c solid !important;
}
.chalky--bx-38 {
  border-right: 38px #edd49c solid !important;
  border-left: 38px #edd49c solid !important;
}
.chalky--ba-39 {
  border: 39px #edd49c solid !important;
}
.chalky--bt-39 {
  border-top: 39px #edd49c solid !important;
}
.chalky--br-39 {
  border-right: 39px #edd49c solid !important;
}
.chalky--bl-39 {
  border-left: 39px #edd49c solid !important;
}
.chalky--bb-39 {
  border-bottom: 39px #edd49c solid !important;
}
.chalky--by-39 {
  border-top: 39px #edd49c solid !important;
  border-bottom: 39px #edd49c solid !important;
}
.chalky--bx-39 {
  border-right: 39px #edd49c solid !important;
  border-left: 39px #edd49c solid !important;
}
.chalky--ba-40 {
  border: 40px #edd49c solid !important;
}
.chalky--bt-40 {
  border-top: 40px #edd49c solid !important;
}
.chalky--br-40 {
  border-right: 40px #edd49c solid !important;
}
.chalky--bl-40 {
  border-left: 40px #edd49c solid !important;
}
.chalky--bb-40 {
  border-bottom: 40px #edd49c solid !important;
}
.chalky--by-40 {
  border-top: 40px #edd49c solid !important;
  border-bottom: 40px #edd49c solid !important;
}
.chalky--bx-40 {
  border-right: 40px #edd49c solid !important;
  border-left: 40px #edd49c solid !important;
}
.chalky--ba-41 {
  border: 41px #edd49c solid !important;
}
.chalky--bt-41 {
  border-top: 41px #edd49c solid !important;
}
.chalky--br-41 {
  border-right: 41px #edd49c solid !important;
}
.chalky--bl-41 {
  border-left: 41px #edd49c solid !important;
}
.chalky--bb-41 {
  border-bottom: 41px #edd49c solid !important;
}
.chalky--by-41 {
  border-top: 41px #edd49c solid !important;
  border-bottom: 41px #edd49c solid !important;
}
.chalky--bx-41 {
  border-right: 41px #edd49c solid !important;
  border-left: 41px #edd49c solid !important;
}
.chalky--ba-42 {
  border: 42px #edd49c solid !important;
}
.chalky--bt-42 {
  border-top: 42px #edd49c solid !important;
}
.chalky--br-42 {
  border-right: 42px #edd49c solid !important;
}
.chalky--bl-42 {
  border-left: 42px #edd49c solid !important;
}
.chalky--bb-42 {
  border-bottom: 42px #edd49c solid !important;
}
.chalky--by-42 {
  border-top: 42px #edd49c solid !important;
  border-bottom: 42px #edd49c solid !important;
}
.chalky--bx-42 {
  border-right: 42px #edd49c solid !important;
  border-left: 42px #edd49c solid !important;
}
.chalky--ba-43 {
  border: 43px #edd49c solid !important;
}
.chalky--bt-43 {
  border-top: 43px #edd49c solid !important;
}
.chalky--br-43 {
  border-right: 43px #edd49c solid !important;
}
.chalky--bl-43 {
  border-left: 43px #edd49c solid !important;
}
.chalky--bb-43 {
  border-bottom: 43px #edd49c solid !important;
}
.chalky--by-43 {
  border-top: 43px #edd49c solid !important;
  border-bottom: 43px #edd49c solid !important;
}
.chalky--bx-43 {
  border-right: 43px #edd49c solid !important;
  border-left: 43px #edd49c solid !important;
}
.chalky--ba-44 {
  border: 44px #edd49c solid !important;
}
.chalky--bt-44 {
  border-top: 44px #edd49c solid !important;
}
.chalky--br-44 {
  border-right: 44px #edd49c solid !important;
}
.chalky--bl-44 {
  border-left: 44px #edd49c solid !important;
}
.chalky--bb-44 {
  border-bottom: 44px #edd49c solid !important;
}
.chalky--by-44 {
  border-top: 44px #edd49c solid !important;
  border-bottom: 44px #edd49c solid !important;
}
.chalky--bx-44 {
  border-right: 44px #edd49c solid !important;
  border-left: 44px #edd49c solid !important;
}
.chalky--ba-45 {
  border: 45px #edd49c solid !important;
}
.chalky--bt-45 {
  border-top: 45px #edd49c solid !important;
}
.chalky--br-45 {
  border-right: 45px #edd49c solid !important;
}
.chalky--bl-45 {
  border-left: 45px #edd49c solid !important;
}
.chalky--bb-45 {
  border-bottom: 45px #edd49c solid !important;
}
.chalky--by-45 {
  border-top: 45px #edd49c solid !important;
  border-bottom: 45px #edd49c solid !important;
}
.chalky--bx-45 {
  border-right: 45px #edd49c solid !important;
  border-left: 45px #edd49c solid !important;
}
.chalky--ba-46 {
  border: 46px #edd49c solid !important;
}
.chalky--bt-46 {
  border-top: 46px #edd49c solid !important;
}
.chalky--br-46 {
  border-right: 46px #edd49c solid !important;
}
.chalky--bl-46 {
  border-left: 46px #edd49c solid !important;
}
.chalky--bb-46 {
  border-bottom: 46px #edd49c solid !important;
}
.chalky--by-46 {
  border-top: 46px #edd49c solid !important;
  border-bottom: 46px #edd49c solid !important;
}
.chalky--bx-46 {
  border-right: 46px #edd49c solid !important;
  border-left: 46px #edd49c solid !important;
}
.chalky--ba-47 {
  border: 47px #edd49c solid !important;
}
.chalky--bt-47 {
  border-top: 47px #edd49c solid !important;
}
.chalky--br-47 {
  border-right: 47px #edd49c solid !important;
}
.chalky--bl-47 {
  border-left: 47px #edd49c solid !important;
}
.chalky--bb-47 {
  border-bottom: 47px #edd49c solid !important;
}
.chalky--by-47 {
  border-top: 47px #edd49c solid !important;
  border-bottom: 47px #edd49c solid !important;
}
.chalky--bx-47 {
  border-right: 47px #edd49c solid !important;
  border-left: 47px #edd49c solid !important;
}
.chalky--ba-48 {
  border: 48px #edd49c solid !important;
}
.chalky--bt-48 {
  border-top: 48px #edd49c solid !important;
}
.chalky--br-48 {
  border-right: 48px #edd49c solid !important;
}
.chalky--bl-48 {
  border-left: 48px #edd49c solid !important;
}
.chalky--bb-48 {
  border-bottom: 48px #edd49c solid !important;
}
.chalky--by-48 {
  border-top: 48px #edd49c solid !important;
  border-bottom: 48px #edd49c solid !important;
}
.chalky--bx-48 {
  border-right: 48px #edd49c solid !important;
  border-left: 48px #edd49c solid !important;
}
.chalky--ba-49 {
  border: 49px #edd49c solid !important;
}
.chalky--bt-49 {
  border-top: 49px #edd49c solid !important;
}
.chalky--br-49 {
  border-right: 49px #edd49c solid !important;
}
.chalky--bl-49 {
  border-left: 49px #edd49c solid !important;
}
.chalky--bb-49 {
  border-bottom: 49px #edd49c solid !important;
}
.chalky--by-49 {
  border-top: 49px #edd49c solid !important;
  border-bottom: 49px #edd49c solid !important;
}
.chalky--bx-49 {
  border-right: 49px #edd49c solid !important;
  border-left: 49px #edd49c solid !important;
}
.chalky--ba-50 {
  border: 50px #edd49c solid !important;
}
.chalky--bt-50 {
  border-top: 50px #edd49c solid !important;
}
.chalky--br-50 {
  border-right: 50px #edd49c solid !important;
}
.chalky--bl-50 {
  border-left: 50px #edd49c solid !important;
}
.chalky--bb-50 {
  border-bottom: 50px #edd49c solid !important;
}
.chalky--by-50 {
  border-top: 50px #edd49c solid !important;
  border-bottom: 50px #edd49c solid !important;
}
.chalky--bx-50 {
  border-right: 50px #edd49c solid !important;
  border-left: 50px #edd49c solid !important;
}
.chalky--ba-51 {
  border: 51px #edd49c solid !important;
}
.chalky--bt-51 {
  border-top: 51px #edd49c solid !important;
}
.chalky--br-51 {
  border-right: 51px #edd49c solid !important;
}
.chalky--bl-51 {
  border-left: 51px #edd49c solid !important;
}
.chalky--bb-51 {
  border-bottom: 51px #edd49c solid !important;
}
.chalky--by-51 {
  border-top: 51px #edd49c solid !important;
  border-bottom: 51px #edd49c solid !important;
}
.chalky--bx-51 {
  border-right: 51px #edd49c solid !important;
  border-left: 51px #edd49c solid !important;
}
.chalky--ba-52 {
  border: 52px #edd49c solid !important;
}
.chalky--bt-52 {
  border-top: 52px #edd49c solid !important;
}
.chalky--br-52 {
  border-right: 52px #edd49c solid !important;
}
.chalky--bl-52 {
  border-left: 52px #edd49c solid !important;
}
.chalky--bb-52 {
  border-bottom: 52px #edd49c solid !important;
}
.chalky--by-52 {
  border-top: 52px #edd49c solid !important;
  border-bottom: 52px #edd49c solid !important;
}
.chalky--bx-52 {
  border-right: 52px #edd49c solid !important;
  border-left: 52px #edd49c solid !important;
}
.chalky--ba-53 {
  border: 53px #edd49c solid !important;
}
.chalky--bt-53 {
  border-top: 53px #edd49c solid !important;
}
.chalky--br-53 {
  border-right: 53px #edd49c solid !important;
}
.chalky--bl-53 {
  border-left: 53px #edd49c solid !important;
}
.chalky--bb-53 {
  border-bottom: 53px #edd49c solid !important;
}
.chalky--by-53 {
  border-top: 53px #edd49c solid !important;
  border-bottom: 53px #edd49c solid !important;
}
.chalky--bx-53 {
  border-right: 53px #edd49c solid !important;
  border-left: 53px #edd49c solid !important;
}
.chalky--ba-54 {
  border: 54px #edd49c solid !important;
}
.chalky--bt-54 {
  border-top: 54px #edd49c solid !important;
}
.chalky--br-54 {
  border-right: 54px #edd49c solid !important;
}
.chalky--bl-54 {
  border-left: 54px #edd49c solid !important;
}
.chalky--bb-54 {
  border-bottom: 54px #edd49c solid !important;
}
.chalky--by-54 {
  border-top: 54px #edd49c solid !important;
  border-bottom: 54px #edd49c solid !important;
}
.chalky--bx-54 {
  border-right: 54px #edd49c solid !important;
  border-left: 54px #edd49c solid !important;
}
.chalky--ba-55 {
  border: 55px #edd49c solid !important;
}
.chalky--bt-55 {
  border-top: 55px #edd49c solid !important;
}
.chalky--br-55 {
  border-right: 55px #edd49c solid !important;
}
.chalky--bl-55 {
  border-left: 55px #edd49c solid !important;
}
.chalky--bb-55 {
  border-bottom: 55px #edd49c solid !important;
}
.chalky--by-55 {
  border-top: 55px #edd49c solid !important;
  border-bottom: 55px #edd49c solid !important;
}
.chalky--bx-55 {
  border-right: 55px #edd49c solid !important;
  border-left: 55px #edd49c solid !important;
}
.chalky--ba-56 {
  border: 56px #edd49c solid !important;
}
.chalky--bt-56 {
  border-top: 56px #edd49c solid !important;
}
.chalky--br-56 {
  border-right: 56px #edd49c solid !important;
}
.chalky--bl-56 {
  border-left: 56px #edd49c solid !important;
}
.chalky--bb-56 {
  border-bottom: 56px #edd49c solid !important;
}
.chalky--by-56 {
  border-top: 56px #edd49c solid !important;
  border-bottom: 56px #edd49c solid !important;
}
.chalky--bx-56 {
  border-right: 56px #edd49c solid !important;
  border-left: 56px #edd49c solid !important;
}
.chalky--ba-57 {
  border: 57px #edd49c solid !important;
}
.chalky--bt-57 {
  border-top: 57px #edd49c solid !important;
}
.chalky--br-57 {
  border-right: 57px #edd49c solid !important;
}
.chalky--bl-57 {
  border-left: 57px #edd49c solid !important;
}
.chalky--bb-57 {
  border-bottom: 57px #edd49c solid !important;
}
.chalky--by-57 {
  border-top: 57px #edd49c solid !important;
  border-bottom: 57px #edd49c solid !important;
}
.chalky--bx-57 {
  border-right: 57px #edd49c solid !important;
  border-left: 57px #edd49c solid !important;
}
.chalky--ba-58 {
  border: 58px #edd49c solid !important;
}
.chalky--bt-58 {
  border-top: 58px #edd49c solid !important;
}
.chalky--br-58 {
  border-right: 58px #edd49c solid !important;
}
.chalky--bl-58 {
  border-left: 58px #edd49c solid !important;
}
.chalky--bb-58 {
  border-bottom: 58px #edd49c solid !important;
}
.chalky--by-58 {
  border-top: 58px #edd49c solid !important;
  border-bottom: 58px #edd49c solid !important;
}
.chalky--bx-58 {
  border-right: 58px #edd49c solid !important;
  border-left: 58px #edd49c solid !important;
}
.chalky--ba-59 {
  border: 59px #edd49c solid !important;
}
.chalky--bt-59 {
  border-top: 59px #edd49c solid !important;
}
.chalky--br-59 {
  border-right: 59px #edd49c solid !important;
}
.chalky--bl-59 {
  border-left: 59px #edd49c solid !important;
}
.chalky--bb-59 {
  border-bottom: 59px #edd49c solid !important;
}
.chalky--by-59 {
  border-top: 59px #edd49c solid !important;
  border-bottom: 59px #edd49c solid !important;
}
.chalky--bx-59 {
  border-right: 59px #edd49c solid !important;
  border-left: 59px #edd49c solid !important;
}
.chalky--ba-60 {
  border: 60px #edd49c solid !important;
}
.chalky--bt-60 {
  border-top: 60px #edd49c solid !important;
}
.chalky--br-60 {
  border-right: 60px #edd49c solid !important;
}
.chalky--bl-60 {
  border-left: 60px #edd49c solid !important;
}
.chalky--bb-60 {
  border-bottom: 60px #edd49c solid !important;
}
.chalky--by-60 {
  border-top: 60px #edd49c solid !important;
  border-bottom: 60px #edd49c solid !important;
}
.chalky--bx-60 {
  border-right: 60px #edd49c solid !important;
  border-left: 60px #edd49c solid !important;
}
.chalky--ba-61 {
  border: 61px #edd49c solid !important;
}
.chalky--bt-61 {
  border-top: 61px #edd49c solid !important;
}
.chalky--br-61 {
  border-right: 61px #edd49c solid !important;
}
.chalky--bl-61 {
  border-left: 61px #edd49c solid !important;
}
.chalky--bb-61 {
  border-bottom: 61px #edd49c solid !important;
}
.chalky--by-61 {
  border-top: 61px #edd49c solid !important;
  border-bottom: 61px #edd49c solid !important;
}
.chalky--bx-61 {
  border-right: 61px #edd49c solid !important;
  border-left: 61px #edd49c solid !important;
}
.chalky--ba-62 {
  border: 62px #edd49c solid !important;
}
.chalky--bt-62 {
  border-top: 62px #edd49c solid !important;
}
.chalky--br-62 {
  border-right: 62px #edd49c solid !important;
}
.chalky--bl-62 {
  border-left: 62px #edd49c solid !important;
}
.chalky--bb-62 {
  border-bottom: 62px #edd49c solid !important;
}
.chalky--by-62 {
  border-top: 62px #edd49c solid !important;
  border-bottom: 62px #edd49c solid !important;
}
.chalky--bx-62 {
  border-right: 62px #edd49c solid !important;
  border-left: 62px #edd49c solid !important;
}
.chalky--ba-63 {
  border: 63px #edd49c solid !important;
}
.chalky--bt-63 {
  border-top: 63px #edd49c solid !important;
}
.chalky--br-63 {
  border-right: 63px #edd49c solid !important;
}
.chalky--bl-63 {
  border-left: 63px #edd49c solid !important;
}
.chalky--bb-63 {
  border-bottom: 63px #edd49c solid !important;
}
.chalky--by-63 {
  border-top: 63px #edd49c solid !important;
  border-bottom: 63px #edd49c solid !important;
}
.chalky--bx-63 {
  border-right: 63px #edd49c solid !important;
  border-left: 63px #edd49c solid !important;
}
.chalky--ba-64 {
  border: 64px #edd49c solid !important;
}
.chalky--bt-64 {
  border-top: 64px #edd49c solid !important;
}
.chalky--br-64 {
  border-right: 64px #edd49c solid !important;
}
.chalky--bl-64 {
  border-left: 64px #edd49c solid !important;
}
.chalky--bb-64 {
  border-bottom: 64px #edd49c solid !important;
}
.chalky--by-64 {
  border-top: 64px #edd49c solid !important;
  border-bottom: 64px #edd49c solid !important;
}
.chalky--bx-64 {
  border-right: 64px #edd49c solid !important;
  border-left: 64px #edd49c solid !important;
}
.chalky--ba-65 {
  border: 65px #edd49c solid !important;
}
.chalky--bt-65 {
  border-top: 65px #edd49c solid !important;
}
.chalky--br-65 {
  border-right: 65px #edd49c solid !important;
}
.chalky--bl-65 {
  border-left: 65px #edd49c solid !important;
}
.chalky--bb-65 {
  border-bottom: 65px #edd49c solid !important;
}
.chalky--by-65 {
  border-top: 65px #edd49c solid !important;
  border-bottom: 65px #edd49c solid !important;
}
.chalky--bx-65 {
  border-right: 65px #edd49c solid !important;
  border-left: 65px #edd49c solid !important;
}
.chalky--ba-66 {
  border: 66px #edd49c solid !important;
}
.chalky--bt-66 {
  border-top: 66px #edd49c solid !important;
}
.chalky--br-66 {
  border-right: 66px #edd49c solid !important;
}
.chalky--bl-66 {
  border-left: 66px #edd49c solid !important;
}
.chalky--bb-66 {
  border-bottom: 66px #edd49c solid !important;
}
.chalky--by-66 {
  border-top: 66px #edd49c solid !important;
  border-bottom: 66px #edd49c solid !important;
}
.chalky--bx-66 {
  border-right: 66px #edd49c solid !important;
  border-left: 66px #edd49c solid !important;
}
.chalky--ba-67 {
  border: 67px #edd49c solid !important;
}
.chalky--bt-67 {
  border-top: 67px #edd49c solid !important;
}
.chalky--br-67 {
  border-right: 67px #edd49c solid !important;
}
.chalky--bl-67 {
  border-left: 67px #edd49c solid !important;
}
.chalky--bb-67 {
  border-bottom: 67px #edd49c solid !important;
}
.chalky--by-67 {
  border-top: 67px #edd49c solid !important;
  border-bottom: 67px #edd49c solid !important;
}
.chalky--bx-67 {
  border-right: 67px #edd49c solid !important;
  border-left: 67px #edd49c solid !important;
}
.chalky--ba-68 {
  border: 68px #edd49c solid !important;
}
.chalky--bt-68 {
  border-top: 68px #edd49c solid !important;
}
.chalky--br-68 {
  border-right: 68px #edd49c solid !important;
}
.chalky--bl-68 {
  border-left: 68px #edd49c solid !important;
}
.chalky--bb-68 {
  border-bottom: 68px #edd49c solid !important;
}
.chalky--by-68 {
  border-top: 68px #edd49c solid !important;
  border-bottom: 68px #edd49c solid !important;
}
.chalky--bx-68 {
  border-right: 68px #edd49c solid !important;
  border-left: 68px #edd49c solid !important;
}
.chalky--ba-69 {
  border: 69px #edd49c solid !important;
}
.chalky--bt-69 {
  border-top: 69px #edd49c solid !important;
}
.chalky--br-69 {
  border-right: 69px #edd49c solid !important;
}
.chalky--bl-69 {
  border-left: 69px #edd49c solid !important;
}
.chalky--bb-69 {
  border-bottom: 69px #edd49c solid !important;
}
.chalky--by-69 {
  border-top: 69px #edd49c solid !important;
  border-bottom: 69px #edd49c solid !important;
}
.chalky--bx-69 {
  border-right: 69px #edd49c solid !important;
  border-left: 69px #edd49c solid !important;
}
.chalky--ba-70 {
  border: 70px #edd49c solid !important;
}
.chalky--bt-70 {
  border-top: 70px #edd49c solid !important;
}
.chalky--br-70 {
  border-right: 70px #edd49c solid !important;
}
.chalky--bl-70 {
  border-left: 70px #edd49c solid !important;
}
.chalky--bb-70 {
  border-bottom: 70px #edd49c solid !important;
}
.chalky--by-70 {
  border-top: 70px #edd49c solid !important;
  border-bottom: 70px #edd49c solid !important;
}
.chalky--bx-70 {
  border-right: 70px #edd49c solid !important;
  border-left: 70px #edd49c solid !important;
}
.chalky--ba-71 {
  border: 71px #edd49c solid !important;
}
.chalky--bt-71 {
  border-top: 71px #edd49c solid !important;
}
.chalky--br-71 {
  border-right: 71px #edd49c solid !important;
}
.chalky--bl-71 {
  border-left: 71px #edd49c solid !important;
}
.chalky--bb-71 {
  border-bottom: 71px #edd49c solid !important;
}
.chalky--by-71 {
  border-top: 71px #edd49c solid !important;
  border-bottom: 71px #edd49c solid !important;
}
.chalky--bx-71 {
  border-right: 71px #edd49c solid !important;
  border-left: 71px #edd49c solid !important;
}
.chalky--ba-72 {
  border: 72px #edd49c solid !important;
}
.chalky--bt-72 {
  border-top: 72px #edd49c solid !important;
}
.chalky--br-72 {
  border-right: 72px #edd49c solid !important;
}
.chalky--bl-72 {
  border-left: 72px #edd49c solid !important;
}
.chalky--bb-72 {
  border-bottom: 72px #edd49c solid !important;
}
.chalky--by-72 {
  border-top: 72px #edd49c solid !important;
  border-bottom: 72px #edd49c solid !important;
}
.chalky--bx-72 {
  border-right: 72px #edd49c solid !important;
  border-left: 72px #edd49c solid !important;
}
.chalky--ba-73 {
  border: 73px #edd49c solid !important;
}
.chalky--bt-73 {
  border-top: 73px #edd49c solid !important;
}
.chalky--br-73 {
  border-right: 73px #edd49c solid !important;
}
.chalky--bl-73 {
  border-left: 73px #edd49c solid !important;
}
.chalky--bb-73 {
  border-bottom: 73px #edd49c solid !important;
}
.chalky--by-73 {
  border-top: 73px #edd49c solid !important;
  border-bottom: 73px #edd49c solid !important;
}
.chalky--bx-73 {
  border-right: 73px #edd49c solid !important;
  border-left: 73px #edd49c solid !important;
}
.chalky--ba-74 {
  border: 74px #edd49c solid !important;
}
.chalky--bt-74 {
  border-top: 74px #edd49c solid !important;
}
.chalky--br-74 {
  border-right: 74px #edd49c solid !important;
}
.chalky--bl-74 {
  border-left: 74px #edd49c solid !important;
}
.chalky--bb-74 {
  border-bottom: 74px #edd49c solid !important;
}
.chalky--by-74 {
  border-top: 74px #edd49c solid !important;
  border-bottom: 74px #edd49c solid !important;
}
.chalky--bx-74 {
  border-right: 74px #edd49c solid !important;
  border-left: 74px #edd49c solid !important;
}
.chalky--ba-75 {
  border: 75px #edd49c solid !important;
}
.chalky--bt-75 {
  border-top: 75px #edd49c solid !important;
}
.chalky--br-75 {
  border-right: 75px #edd49c solid !important;
}
.chalky--bl-75 {
  border-left: 75px #edd49c solid !important;
}
.chalky--bb-75 {
  border-bottom: 75px #edd49c solid !important;
}
.chalky--by-75 {
  border-top: 75px #edd49c solid !important;
  border-bottom: 75px #edd49c solid !important;
}
.chalky--bx-75 {
  border-right: 75px #edd49c solid !important;
  border-left: 75px #edd49c solid !important;
}
.chalky--ba-76 {
  border: 76px #edd49c solid !important;
}
.chalky--bt-76 {
  border-top: 76px #edd49c solid !important;
}
.chalky--br-76 {
  border-right: 76px #edd49c solid !important;
}
.chalky--bl-76 {
  border-left: 76px #edd49c solid !important;
}
.chalky--bb-76 {
  border-bottom: 76px #edd49c solid !important;
}
.chalky--by-76 {
  border-top: 76px #edd49c solid !important;
  border-bottom: 76px #edd49c solid !important;
}
.chalky--bx-76 {
  border-right: 76px #edd49c solid !important;
  border-left: 76px #edd49c solid !important;
}
.chalky--ba-77 {
  border: 77px #edd49c solid !important;
}
.chalky--bt-77 {
  border-top: 77px #edd49c solid !important;
}
.chalky--br-77 {
  border-right: 77px #edd49c solid !important;
}
.chalky--bl-77 {
  border-left: 77px #edd49c solid !important;
}
.chalky--bb-77 {
  border-bottom: 77px #edd49c solid !important;
}
.chalky--by-77 {
  border-top: 77px #edd49c solid !important;
  border-bottom: 77px #edd49c solid !important;
}
.chalky--bx-77 {
  border-right: 77px #edd49c solid !important;
  border-left: 77px #edd49c solid !important;
}
.chalky--ba-78 {
  border: 78px #edd49c solid !important;
}
.chalky--bt-78 {
  border-top: 78px #edd49c solid !important;
}
.chalky--br-78 {
  border-right: 78px #edd49c solid !important;
}
.chalky--bl-78 {
  border-left: 78px #edd49c solid !important;
}
.chalky--bb-78 {
  border-bottom: 78px #edd49c solid !important;
}
.chalky--by-78 {
  border-top: 78px #edd49c solid !important;
  border-bottom: 78px #edd49c solid !important;
}
.chalky--bx-78 {
  border-right: 78px #edd49c solid !important;
  border-left: 78px #edd49c solid !important;
}
.chalky--ba-79 {
  border: 79px #edd49c solid !important;
}
.chalky--bt-79 {
  border-top: 79px #edd49c solid !important;
}
.chalky--br-79 {
  border-right: 79px #edd49c solid !important;
}
.chalky--bl-79 {
  border-left: 79px #edd49c solid !important;
}
.chalky--bb-79 {
  border-bottom: 79px #edd49c solid !important;
}
.chalky--by-79 {
  border-top: 79px #edd49c solid !important;
  border-bottom: 79px #edd49c solid !important;
}
.chalky--bx-79 {
  border-right: 79px #edd49c solid !important;
  border-left: 79px #edd49c solid !important;
}
.chalky--ba-80 {
  border: 80px #edd49c solid !important;
}
.chalky--bt-80 {
  border-top: 80px #edd49c solid !important;
}
.chalky--br-80 {
  border-right: 80px #edd49c solid !important;
}
.chalky--bl-80 {
  border-left: 80px #edd49c solid !important;
}
.chalky--bb-80 {
  border-bottom: 80px #edd49c solid !important;
}
.chalky--by-80 {
  border-top: 80px #edd49c solid !important;
  border-bottom: 80px #edd49c solid !important;
}
.chalky--bx-80 {
  border-right: 80px #edd49c solid !important;
  border-left: 80px #edd49c solid !important;
}
.chalky--ba-81 {
  border: 81px #edd49c solid !important;
}
.chalky--bt-81 {
  border-top: 81px #edd49c solid !important;
}
.chalky--br-81 {
  border-right: 81px #edd49c solid !important;
}
.chalky--bl-81 {
  border-left: 81px #edd49c solid !important;
}
.chalky--bb-81 {
  border-bottom: 81px #edd49c solid !important;
}
.chalky--by-81 {
  border-top: 81px #edd49c solid !important;
  border-bottom: 81px #edd49c solid !important;
}
.chalky--bx-81 {
  border-right: 81px #edd49c solid !important;
  border-left: 81px #edd49c solid !important;
}
.chalky--ba-82 {
  border: 82px #edd49c solid !important;
}
.chalky--bt-82 {
  border-top: 82px #edd49c solid !important;
}
.chalky--br-82 {
  border-right: 82px #edd49c solid !important;
}
.chalky--bl-82 {
  border-left: 82px #edd49c solid !important;
}
.chalky--bb-82 {
  border-bottom: 82px #edd49c solid !important;
}
.chalky--by-82 {
  border-top: 82px #edd49c solid !important;
  border-bottom: 82px #edd49c solid !important;
}
.chalky--bx-82 {
  border-right: 82px #edd49c solid !important;
  border-left: 82px #edd49c solid !important;
}
.chalky--ba-83 {
  border: 83px #edd49c solid !important;
}
.chalky--bt-83 {
  border-top: 83px #edd49c solid !important;
}
.chalky--br-83 {
  border-right: 83px #edd49c solid !important;
}
.chalky--bl-83 {
  border-left: 83px #edd49c solid !important;
}
.chalky--bb-83 {
  border-bottom: 83px #edd49c solid !important;
}
.chalky--by-83 {
  border-top: 83px #edd49c solid !important;
  border-bottom: 83px #edd49c solid !important;
}
.chalky--bx-83 {
  border-right: 83px #edd49c solid !important;
  border-left: 83px #edd49c solid !important;
}
.chalky--ba-84 {
  border: 84px #edd49c solid !important;
}
.chalky--bt-84 {
  border-top: 84px #edd49c solid !important;
}
.chalky--br-84 {
  border-right: 84px #edd49c solid !important;
}
.chalky--bl-84 {
  border-left: 84px #edd49c solid !important;
}
.chalky--bb-84 {
  border-bottom: 84px #edd49c solid !important;
}
.chalky--by-84 {
  border-top: 84px #edd49c solid !important;
  border-bottom: 84px #edd49c solid !important;
}
.chalky--bx-84 {
  border-right: 84px #edd49c solid !important;
  border-left: 84px #edd49c solid !important;
}
.chalky--ba-85 {
  border: 85px #edd49c solid !important;
}
.chalky--bt-85 {
  border-top: 85px #edd49c solid !important;
}
.chalky--br-85 {
  border-right: 85px #edd49c solid !important;
}
.chalky--bl-85 {
  border-left: 85px #edd49c solid !important;
}
.chalky--bb-85 {
  border-bottom: 85px #edd49c solid !important;
}
.chalky--by-85 {
  border-top: 85px #edd49c solid !important;
  border-bottom: 85px #edd49c solid !important;
}
.chalky--bx-85 {
  border-right: 85px #edd49c solid !important;
  border-left: 85px #edd49c solid !important;
}
.chalky--ba-86 {
  border: 86px #edd49c solid !important;
}
.chalky--bt-86 {
  border-top: 86px #edd49c solid !important;
}
.chalky--br-86 {
  border-right: 86px #edd49c solid !important;
}
.chalky--bl-86 {
  border-left: 86px #edd49c solid !important;
}
.chalky--bb-86 {
  border-bottom: 86px #edd49c solid !important;
}
.chalky--by-86 {
  border-top: 86px #edd49c solid !important;
  border-bottom: 86px #edd49c solid !important;
}
.chalky--bx-86 {
  border-right: 86px #edd49c solid !important;
  border-left: 86px #edd49c solid !important;
}
.chalky--ba-87 {
  border: 87px #edd49c solid !important;
}
.chalky--bt-87 {
  border-top: 87px #edd49c solid !important;
}
.chalky--br-87 {
  border-right: 87px #edd49c solid !important;
}
.chalky--bl-87 {
  border-left: 87px #edd49c solid !important;
}
.chalky--bb-87 {
  border-bottom: 87px #edd49c solid !important;
}
.chalky--by-87 {
  border-top: 87px #edd49c solid !important;
  border-bottom: 87px #edd49c solid !important;
}
.chalky--bx-87 {
  border-right: 87px #edd49c solid !important;
  border-left: 87px #edd49c solid !important;
}
.chalky--ba-88 {
  border: 88px #edd49c solid !important;
}
.chalky--bt-88 {
  border-top: 88px #edd49c solid !important;
}
.chalky--br-88 {
  border-right: 88px #edd49c solid !important;
}
.chalky--bl-88 {
  border-left: 88px #edd49c solid !important;
}
.chalky--bb-88 {
  border-bottom: 88px #edd49c solid !important;
}
.chalky--by-88 {
  border-top: 88px #edd49c solid !important;
  border-bottom: 88px #edd49c solid !important;
}
.chalky--bx-88 {
  border-right: 88px #edd49c solid !important;
  border-left: 88px #edd49c solid !important;
}
.chalky--ba-89 {
  border: 89px #edd49c solid !important;
}
.chalky--bt-89 {
  border-top: 89px #edd49c solid !important;
}
.chalky--br-89 {
  border-right: 89px #edd49c solid !important;
}
.chalky--bl-89 {
  border-left: 89px #edd49c solid !important;
}
.chalky--bb-89 {
  border-bottom: 89px #edd49c solid !important;
}
.chalky--by-89 {
  border-top: 89px #edd49c solid !important;
  border-bottom: 89px #edd49c solid !important;
}
.chalky--bx-89 {
  border-right: 89px #edd49c solid !important;
  border-left: 89px #edd49c solid !important;
}
.chalky--ba-90 {
  border: 90px #edd49c solid !important;
}
.chalky--bt-90 {
  border-top: 90px #edd49c solid !important;
}
.chalky--br-90 {
  border-right: 90px #edd49c solid !important;
}
.chalky--bl-90 {
  border-left: 90px #edd49c solid !important;
}
.chalky--bb-90 {
  border-bottom: 90px #edd49c solid !important;
}
.chalky--by-90 {
  border-top: 90px #edd49c solid !important;
  border-bottom: 90px #edd49c solid !important;
}
.chalky--bx-90 {
  border-right: 90px #edd49c solid !important;
  border-left: 90px #edd49c solid !important;
}
.chalky--ba-91 {
  border: 91px #edd49c solid !important;
}
.chalky--bt-91 {
  border-top: 91px #edd49c solid !important;
}
.chalky--br-91 {
  border-right: 91px #edd49c solid !important;
}
.chalky--bl-91 {
  border-left: 91px #edd49c solid !important;
}
.chalky--bb-91 {
  border-bottom: 91px #edd49c solid !important;
}
.chalky--by-91 {
  border-top: 91px #edd49c solid !important;
  border-bottom: 91px #edd49c solid !important;
}
.chalky--bx-91 {
  border-right: 91px #edd49c solid !important;
  border-left: 91px #edd49c solid !important;
}
.chalky--ba-92 {
  border: 92px #edd49c solid !important;
}
.chalky--bt-92 {
  border-top: 92px #edd49c solid !important;
}
.chalky--br-92 {
  border-right: 92px #edd49c solid !important;
}
.chalky--bl-92 {
  border-left: 92px #edd49c solid !important;
}
.chalky--bb-92 {
  border-bottom: 92px #edd49c solid !important;
}
.chalky--by-92 {
  border-top: 92px #edd49c solid !important;
  border-bottom: 92px #edd49c solid !important;
}
.chalky--bx-92 {
  border-right: 92px #edd49c solid !important;
  border-left: 92px #edd49c solid !important;
}
.chalky--ba-93 {
  border: 93px #edd49c solid !important;
}
.chalky--bt-93 {
  border-top: 93px #edd49c solid !important;
}
.chalky--br-93 {
  border-right: 93px #edd49c solid !important;
}
.chalky--bl-93 {
  border-left: 93px #edd49c solid !important;
}
.chalky--bb-93 {
  border-bottom: 93px #edd49c solid !important;
}
.chalky--by-93 {
  border-top: 93px #edd49c solid !important;
  border-bottom: 93px #edd49c solid !important;
}
.chalky--bx-93 {
  border-right: 93px #edd49c solid !important;
  border-left: 93px #edd49c solid !important;
}
.chalky--ba-94 {
  border: 94px #edd49c solid !important;
}
.chalky--bt-94 {
  border-top: 94px #edd49c solid !important;
}
.chalky--br-94 {
  border-right: 94px #edd49c solid !important;
}
.chalky--bl-94 {
  border-left: 94px #edd49c solid !important;
}
.chalky--bb-94 {
  border-bottom: 94px #edd49c solid !important;
}
.chalky--by-94 {
  border-top: 94px #edd49c solid !important;
  border-bottom: 94px #edd49c solid !important;
}
.chalky--bx-94 {
  border-right: 94px #edd49c solid !important;
  border-left: 94px #edd49c solid !important;
}
.chalky--ba-95 {
  border: 95px #edd49c solid !important;
}
.chalky--bt-95 {
  border-top: 95px #edd49c solid !important;
}
.chalky--br-95 {
  border-right: 95px #edd49c solid !important;
}
.chalky--bl-95 {
  border-left: 95px #edd49c solid !important;
}
.chalky--bb-95 {
  border-bottom: 95px #edd49c solid !important;
}
.chalky--by-95 {
  border-top: 95px #edd49c solid !important;
  border-bottom: 95px #edd49c solid !important;
}
.chalky--bx-95 {
  border-right: 95px #edd49c solid !important;
  border-left: 95px #edd49c solid !important;
}
.chalky--ba-96 {
  border: 96px #edd49c solid !important;
}
.chalky--bt-96 {
  border-top: 96px #edd49c solid !important;
}
.chalky--br-96 {
  border-right: 96px #edd49c solid !important;
}
.chalky--bl-96 {
  border-left: 96px #edd49c solid !important;
}
.chalky--bb-96 {
  border-bottom: 96px #edd49c solid !important;
}
.chalky--by-96 {
  border-top: 96px #edd49c solid !important;
  border-bottom: 96px #edd49c solid !important;
}
.chalky--bx-96 {
  border-right: 96px #edd49c solid !important;
  border-left: 96px #edd49c solid !important;
}
.chalky--ba-97 {
  border: 97px #edd49c solid !important;
}
.chalky--bt-97 {
  border-top: 97px #edd49c solid !important;
}
.chalky--br-97 {
  border-right: 97px #edd49c solid !important;
}
.chalky--bl-97 {
  border-left: 97px #edd49c solid !important;
}
.chalky--bb-97 {
  border-bottom: 97px #edd49c solid !important;
}
.chalky--by-97 {
  border-top: 97px #edd49c solid !important;
  border-bottom: 97px #edd49c solid !important;
}
.chalky--bx-97 {
  border-right: 97px #edd49c solid !important;
  border-left: 97px #edd49c solid !important;
}
.chalky--ba-98 {
  border: 98px #edd49c solid !important;
}
.chalky--bt-98 {
  border-top: 98px #edd49c solid !important;
}
.chalky--br-98 {
  border-right: 98px #edd49c solid !important;
}
.chalky--bl-98 {
  border-left: 98px #edd49c solid !important;
}
.chalky--bb-98 {
  border-bottom: 98px #edd49c solid !important;
}
.chalky--by-98 {
  border-top: 98px #edd49c solid !important;
  border-bottom: 98px #edd49c solid !important;
}
.chalky--bx-98 {
  border-right: 98px #edd49c solid !important;
  border-left: 98px #edd49c solid !important;
}
.chalky--ba-99 {
  border: 99px #edd49c solid !important;
}
.chalky--bt-99 {
  border-top: 99px #edd49c solid !important;
}
.chalky--br-99 {
  border-right: 99px #edd49c solid !important;
}
.chalky--bl-99 {
  border-left: 99px #edd49c solid !important;
}
.chalky--bb-99 {
  border-bottom: 99px #edd49c solid !important;
}
.chalky--by-99 {
  border-top: 99px #edd49c solid !important;
  border-bottom: 99px #edd49c solid !important;
}
.chalky--bx-99 {
  border-right: 99px #edd49c solid !important;
  border-left: 99px #edd49c solid !important;
}
.chalky--ba-100 {
  border: 100px #edd49c solid !important;
}
.chalky--bt-100 {
  border-top: 100px #edd49c solid !important;
}
.chalky--br-100 {
  border-right: 100px #edd49c solid !important;
}
.chalky--bl-100 {
  border-left: 100px #edd49c solid !important;
}
.chalky--bb-100 {
  border-bottom: 100px #edd49c solid !important;
}
.chalky--by-100 {
  border-top: 100px #edd49c solid !important;
  border-bottom: 100px #edd49c solid !important;
}
.chalky--bx-100 {
  border-right: 100px #edd49c solid !important;
  border-left: 100px #edd49c solid !important;
}
.red-orange--ba-1 {
  border: 1px #fd2626 solid !important;
}
.red-orange--bt-1 {
  border-top: 1px #fd2626 solid !important;
}
.red-orange--br-1 {
  border-right: 1px #fd2626 solid !important;
}
.red-orange--bl-1 {
  border-left: 1px #fd2626 solid !important;
}
.red-orange--bb-1 {
  border-bottom: 1px #fd2626 solid !important;
}
.red-orange--by-1 {
  border-top: 1px #fd2626 solid !important;
  border-bottom: 1px #fd2626 solid !important;
}
.red-orange--bx-1 {
  border-right: 1px #fd2626 solid !important;
  border-left: 1px #fd2626 solid !important;
}
.red-orange--ba-2 {
  border: 2px #fd2626 solid !important;
}
.red-orange--bt-2 {
  border-top: 2px #fd2626 solid !important;
}
.red-orange--br-2 {
  border-right: 2px #fd2626 solid !important;
}
.red-orange--bl-2 {
  border-left: 2px #fd2626 solid !important;
}
.red-orange--bb-2 {
  border-bottom: 2px #fd2626 solid !important;
}
.red-orange--by-2 {
  border-top: 2px #fd2626 solid !important;
  border-bottom: 2px #fd2626 solid !important;
}
.red-orange--bx-2 {
  border-right: 2px #fd2626 solid !important;
  border-left: 2px #fd2626 solid !important;
}
.red-orange--ba-3 {
  border: 3px #fd2626 solid !important;
}
.red-orange--bt-3 {
  border-top: 3px #fd2626 solid !important;
}
.red-orange--br-3 {
  border-right: 3px #fd2626 solid !important;
}
.red-orange--bl-3 {
  border-left: 3px #fd2626 solid !important;
}
.red-orange--bb-3 {
  border-bottom: 3px #fd2626 solid !important;
}
.red-orange--by-3 {
  border-top: 3px #fd2626 solid !important;
  border-bottom: 3px #fd2626 solid !important;
}
.red-orange--bx-3 {
  border-right: 3px #fd2626 solid !important;
  border-left: 3px #fd2626 solid !important;
}
.red-orange--ba-4 {
  border: 4px #fd2626 solid !important;
}
.red-orange--bt-4 {
  border-top: 4px #fd2626 solid !important;
}
.red-orange--br-4 {
  border-right: 4px #fd2626 solid !important;
}
.red-orange--bl-4 {
  border-left: 4px #fd2626 solid !important;
}
.red-orange--bb-4 {
  border-bottom: 4px #fd2626 solid !important;
}
.red-orange--by-4 {
  border-top: 4px #fd2626 solid !important;
  border-bottom: 4px #fd2626 solid !important;
}
.red-orange--bx-4 {
  border-right: 4px #fd2626 solid !important;
  border-left: 4px #fd2626 solid !important;
}
.red-orange--ba-5 {
  border: 5px #fd2626 solid !important;
}
.red-orange--bt-5 {
  border-top: 5px #fd2626 solid !important;
}
.red-orange--br-5 {
  border-right: 5px #fd2626 solid !important;
}
.red-orange--bl-5 {
  border-left: 5px #fd2626 solid !important;
}
.red-orange--bb-5 {
  border-bottom: 5px #fd2626 solid !important;
}
.red-orange--by-5 {
  border-top: 5px #fd2626 solid !important;
  border-bottom: 5px #fd2626 solid !important;
}
.red-orange--bx-5 {
  border-right: 5px #fd2626 solid !important;
  border-left: 5px #fd2626 solid !important;
}
.red-orange--ba-6 {
  border: 6px #fd2626 solid !important;
}
.red-orange--bt-6 {
  border-top: 6px #fd2626 solid !important;
}
.red-orange--br-6 {
  border-right: 6px #fd2626 solid !important;
}
.red-orange--bl-6 {
  border-left: 6px #fd2626 solid !important;
}
.red-orange--bb-6 {
  border-bottom: 6px #fd2626 solid !important;
}
.red-orange--by-6 {
  border-top: 6px #fd2626 solid !important;
  border-bottom: 6px #fd2626 solid !important;
}
.red-orange--bx-6 {
  border-right: 6px #fd2626 solid !important;
  border-left: 6px #fd2626 solid !important;
}
.red-orange--ba-7 {
  border: 7px #fd2626 solid !important;
}
.red-orange--bt-7 {
  border-top: 7px #fd2626 solid !important;
}
.red-orange--br-7 {
  border-right: 7px #fd2626 solid !important;
}
.red-orange--bl-7 {
  border-left: 7px #fd2626 solid !important;
}
.red-orange--bb-7 {
  border-bottom: 7px #fd2626 solid !important;
}
.red-orange--by-7 {
  border-top: 7px #fd2626 solid !important;
  border-bottom: 7px #fd2626 solid !important;
}
.red-orange--bx-7 {
  border-right: 7px #fd2626 solid !important;
  border-left: 7px #fd2626 solid !important;
}
.red-orange--ba-8 {
  border: 8px #fd2626 solid !important;
}
.red-orange--bt-8 {
  border-top: 8px #fd2626 solid !important;
}
.red-orange--br-8 {
  border-right: 8px #fd2626 solid !important;
}
.red-orange--bl-8 {
  border-left: 8px #fd2626 solid !important;
}
.red-orange--bb-8 {
  border-bottom: 8px #fd2626 solid !important;
}
.red-orange--by-8 {
  border-top: 8px #fd2626 solid !important;
  border-bottom: 8px #fd2626 solid !important;
}
.red-orange--bx-8 {
  border-right: 8px #fd2626 solid !important;
  border-left: 8px #fd2626 solid !important;
}
.red-orange--ba-9 {
  border: 9px #fd2626 solid !important;
}
.red-orange--bt-9 {
  border-top: 9px #fd2626 solid !important;
}
.red-orange--br-9 {
  border-right: 9px #fd2626 solid !important;
}
.red-orange--bl-9 {
  border-left: 9px #fd2626 solid !important;
}
.red-orange--bb-9 {
  border-bottom: 9px #fd2626 solid !important;
}
.red-orange--by-9 {
  border-top: 9px #fd2626 solid !important;
  border-bottom: 9px #fd2626 solid !important;
}
.red-orange--bx-9 {
  border-right: 9px #fd2626 solid !important;
  border-left: 9px #fd2626 solid !important;
}
.red-orange--ba-10 {
  border: 10px #fd2626 solid !important;
}
.red-orange--bt-10 {
  border-top: 10px #fd2626 solid !important;
}
.red-orange--br-10 {
  border-right: 10px #fd2626 solid !important;
}
.red-orange--bl-10 {
  border-left: 10px #fd2626 solid !important;
}
.red-orange--bb-10 {
  border-bottom: 10px #fd2626 solid !important;
}
.red-orange--by-10 {
  border-top: 10px #fd2626 solid !important;
  border-bottom: 10px #fd2626 solid !important;
}
.red-orange--bx-10 {
  border-right: 10px #fd2626 solid !important;
  border-left: 10px #fd2626 solid !important;
}
.red-orange--ba-11 {
  border: 11px #fd2626 solid !important;
}
.red-orange--bt-11 {
  border-top: 11px #fd2626 solid !important;
}
.red-orange--br-11 {
  border-right: 11px #fd2626 solid !important;
}
.red-orange--bl-11 {
  border-left: 11px #fd2626 solid !important;
}
.red-orange--bb-11 {
  border-bottom: 11px #fd2626 solid !important;
}
.red-orange--by-11 {
  border-top: 11px #fd2626 solid !important;
  border-bottom: 11px #fd2626 solid !important;
}
.red-orange--bx-11 {
  border-right: 11px #fd2626 solid !important;
  border-left: 11px #fd2626 solid !important;
}
.red-orange--ba-12 {
  border: 12px #fd2626 solid !important;
}
.red-orange--bt-12 {
  border-top: 12px #fd2626 solid !important;
}
.red-orange--br-12 {
  border-right: 12px #fd2626 solid !important;
}
.red-orange--bl-12 {
  border-left: 12px #fd2626 solid !important;
}
.red-orange--bb-12 {
  border-bottom: 12px #fd2626 solid !important;
}
.red-orange--by-12 {
  border-top: 12px #fd2626 solid !important;
  border-bottom: 12px #fd2626 solid !important;
}
.red-orange--bx-12 {
  border-right: 12px #fd2626 solid !important;
  border-left: 12px #fd2626 solid !important;
}
.red-orange--ba-13 {
  border: 13px #fd2626 solid !important;
}
.red-orange--bt-13 {
  border-top: 13px #fd2626 solid !important;
}
.red-orange--br-13 {
  border-right: 13px #fd2626 solid !important;
}
.red-orange--bl-13 {
  border-left: 13px #fd2626 solid !important;
}
.red-orange--bb-13 {
  border-bottom: 13px #fd2626 solid !important;
}
.red-orange--by-13 {
  border-top: 13px #fd2626 solid !important;
  border-bottom: 13px #fd2626 solid !important;
}
.red-orange--bx-13 {
  border-right: 13px #fd2626 solid !important;
  border-left: 13px #fd2626 solid !important;
}
.red-orange--ba-14 {
  border: 14px #fd2626 solid !important;
}
.red-orange--bt-14 {
  border-top: 14px #fd2626 solid !important;
}
.red-orange--br-14 {
  border-right: 14px #fd2626 solid !important;
}
.red-orange--bl-14 {
  border-left: 14px #fd2626 solid !important;
}
.red-orange--bb-14 {
  border-bottom: 14px #fd2626 solid !important;
}
.red-orange--by-14 {
  border-top: 14px #fd2626 solid !important;
  border-bottom: 14px #fd2626 solid !important;
}
.red-orange--bx-14 {
  border-right: 14px #fd2626 solid !important;
  border-left: 14px #fd2626 solid !important;
}
.red-orange--ba-15 {
  border: 15px #fd2626 solid !important;
}
.red-orange--bt-15 {
  border-top: 15px #fd2626 solid !important;
}
.red-orange--br-15 {
  border-right: 15px #fd2626 solid !important;
}
.red-orange--bl-15 {
  border-left: 15px #fd2626 solid !important;
}
.red-orange--bb-15 {
  border-bottom: 15px #fd2626 solid !important;
}
.red-orange--by-15 {
  border-top: 15px #fd2626 solid !important;
  border-bottom: 15px #fd2626 solid !important;
}
.red-orange--bx-15 {
  border-right: 15px #fd2626 solid !important;
  border-left: 15px #fd2626 solid !important;
}
.red-orange--ba-16 {
  border: 16px #fd2626 solid !important;
}
.red-orange--bt-16 {
  border-top: 16px #fd2626 solid !important;
}
.red-orange--br-16 {
  border-right: 16px #fd2626 solid !important;
}
.red-orange--bl-16 {
  border-left: 16px #fd2626 solid !important;
}
.red-orange--bb-16 {
  border-bottom: 16px #fd2626 solid !important;
}
.red-orange--by-16 {
  border-top: 16px #fd2626 solid !important;
  border-bottom: 16px #fd2626 solid !important;
}
.red-orange--bx-16 {
  border-right: 16px #fd2626 solid !important;
  border-left: 16px #fd2626 solid !important;
}
.red-orange--ba-17 {
  border: 17px #fd2626 solid !important;
}
.red-orange--bt-17 {
  border-top: 17px #fd2626 solid !important;
}
.red-orange--br-17 {
  border-right: 17px #fd2626 solid !important;
}
.red-orange--bl-17 {
  border-left: 17px #fd2626 solid !important;
}
.red-orange--bb-17 {
  border-bottom: 17px #fd2626 solid !important;
}
.red-orange--by-17 {
  border-top: 17px #fd2626 solid !important;
  border-bottom: 17px #fd2626 solid !important;
}
.red-orange--bx-17 {
  border-right: 17px #fd2626 solid !important;
  border-left: 17px #fd2626 solid !important;
}
.red-orange--ba-18 {
  border: 18px #fd2626 solid !important;
}
.red-orange--bt-18 {
  border-top: 18px #fd2626 solid !important;
}
.red-orange--br-18 {
  border-right: 18px #fd2626 solid !important;
}
.red-orange--bl-18 {
  border-left: 18px #fd2626 solid !important;
}
.red-orange--bb-18 {
  border-bottom: 18px #fd2626 solid !important;
}
.red-orange--by-18 {
  border-top: 18px #fd2626 solid !important;
  border-bottom: 18px #fd2626 solid !important;
}
.red-orange--bx-18 {
  border-right: 18px #fd2626 solid !important;
  border-left: 18px #fd2626 solid !important;
}
.red-orange--ba-19 {
  border: 19px #fd2626 solid !important;
}
.red-orange--bt-19 {
  border-top: 19px #fd2626 solid !important;
}
.red-orange--br-19 {
  border-right: 19px #fd2626 solid !important;
}
.red-orange--bl-19 {
  border-left: 19px #fd2626 solid !important;
}
.red-orange--bb-19 {
  border-bottom: 19px #fd2626 solid !important;
}
.red-orange--by-19 {
  border-top: 19px #fd2626 solid !important;
  border-bottom: 19px #fd2626 solid !important;
}
.red-orange--bx-19 {
  border-right: 19px #fd2626 solid !important;
  border-left: 19px #fd2626 solid !important;
}
.red-orange--ba-20 {
  border: 20px #fd2626 solid !important;
}
.red-orange--bt-20 {
  border-top: 20px #fd2626 solid !important;
}
.red-orange--br-20 {
  border-right: 20px #fd2626 solid !important;
}
.red-orange--bl-20 {
  border-left: 20px #fd2626 solid !important;
}
.red-orange--bb-20 {
  border-bottom: 20px #fd2626 solid !important;
}
.red-orange--by-20 {
  border-top: 20px #fd2626 solid !important;
  border-bottom: 20px #fd2626 solid !important;
}
.red-orange--bx-20 {
  border-right: 20px #fd2626 solid !important;
  border-left: 20px #fd2626 solid !important;
}
.red-orange--ba-21 {
  border: 21px #fd2626 solid !important;
}
.red-orange--bt-21 {
  border-top: 21px #fd2626 solid !important;
}
.red-orange--br-21 {
  border-right: 21px #fd2626 solid !important;
}
.red-orange--bl-21 {
  border-left: 21px #fd2626 solid !important;
}
.red-orange--bb-21 {
  border-bottom: 21px #fd2626 solid !important;
}
.red-orange--by-21 {
  border-top: 21px #fd2626 solid !important;
  border-bottom: 21px #fd2626 solid !important;
}
.red-orange--bx-21 {
  border-right: 21px #fd2626 solid !important;
  border-left: 21px #fd2626 solid !important;
}
.red-orange--ba-22 {
  border: 22px #fd2626 solid !important;
}
.red-orange--bt-22 {
  border-top: 22px #fd2626 solid !important;
}
.red-orange--br-22 {
  border-right: 22px #fd2626 solid !important;
}
.red-orange--bl-22 {
  border-left: 22px #fd2626 solid !important;
}
.red-orange--bb-22 {
  border-bottom: 22px #fd2626 solid !important;
}
.red-orange--by-22 {
  border-top: 22px #fd2626 solid !important;
  border-bottom: 22px #fd2626 solid !important;
}
.red-orange--bx-22 {
  border-right: 22px #fd2626 solid !important;
  border-left: 22px #fd2626 solid !important;
}
.red-orange--ba-23 {
  border: 23px #fd2626 solid !important;
}
.red-orange--bt-23 {
  border-top: 23px #fd2626 solid !important;
}
.red-orange--br-23 {
  border-right: 23px #fd2626 solid !important;
}
.red-orange--bl-23 {
  border-left: 23px #fd2626 solid !important;
}
.red-orange--bb-23 {
  border-bottom: 23px #fd2626 solid !important;
}
.red-orange--by-23 {
  border-top: 23px #fd2626 solid !important;
  border-bottom: 23px #fd2626 solid !important;
}
.red-orange--bx-23 {
  border-right: 23px #fd2626 solid !important;
  border-left: 23px #fd2626 solid !important;
}
.red-orange--ba-24 {
  border: 24px #fd2626 solid !important;
}
.red-orange--bt-24 {
  border-top: 24px #fd2626 solid !important;
}
.red-orange--br-24 {
  border-right: 24px #fd2626 solid !important;
}
.red-orange--bl-24 {
  border-left: 24px #fd2626 solid !important;
}
.red-orange--bb-24 {
  border-bottom: 24px #fd2626 solid !important;
}
.red-orange--by-24 {
  border-top: 24px #fd2626 solid !important;
  border-bottom: 24px #fd2626 solid !important;
}
.red-orange--bx-24 {
  border-right: 24px #fd2626 solid !important;
  border-left: 24px #fd2626 solid !important;
}
.red-orange--ba-25 {
  border: 25px #fd2626 solid !important;
}
.red-orange--bt-25 {
  border-top: 25px #fd2626 solid !important;
}
.red-orange--br-25 {
  border-right: 25px #fd2626 solid !important;
}
.red-orange--bl-25 {
  border-left: 25px #fd2626 solid !important;
}
.red-orange--bb-25 {
  border-bottom: 25px #fd2626 solid !important;
}
.red-orange--by-25 {
  border-top: 25px #fd2626 solid !important;
  border-bottom: 25px #fd2626 solid !important;
}
.red-orange--bx-25 {
  border-right: 25px #fd2626 solid !important;
  border-left: 25px #fd2626 solid !important;
}
.red-orange--ba-26 {
  border: 26px #fd2626 solid !important;
}
.red-orange--bt-26 {
  border-top: 26px #fd2626 solid !important;
}
.red-orange--br-26 {
  border-right: 26px #fd2626 solid !important;
}
.red-orange--bl-26 {
  border-left: 26px #fd2626 solid !important;
}
.red-orange--bb-26 {
  border-bottom: 26px #fd2626 solid !important;
}
.red-orange--by-26 {
  border-top: 26px #fd2626 solid !important;
  border-bottom: 26px #fd2626 solid !important;
}
.red-orange--bx-26 {
  border-right: 26px #fd2626 solid !important;
  border-left: 26px #fd2626 solid !important;
}
.red-orange--ba-27 {
  border: 27px #fd2626 solid !important;
}
.red-orange--bt-27 {
  border-top: 27px #fd2626 solid !important;
}
.red-orange--br-27 {
  border-right: 27px #fd2626 solid !important;
}
.red-orange--bl-27 {
  border-left: 27px #fd2626 solid !important;
}
.red-orange--bb-27 {
  border-bottom: 27px #fd2626 solid !important;
}
.red-orange--by-27 {
  border-top: 27px #fd2626 solid !important;
  border-bottom: 27px #fd2626 solid !important;
}
.red-orange--bx-27 {
  border-right: 27px #fd2626 solid !important;
  border-left: 27px #fd2626 solid !important;
}
.red-orange--ba-28 {
  border: 28px #fd2626 solid !important;
}
.red-orange--bt-28 {
  border-top: 28px #fd2626 solid !important;
}
.red-orange--br-28 {
  border-right: 28px #fd2626 solid !important;
}
.red-orange--bl-28 {
  border-left: 28px #fd2626 solid !important;
}
.red-orange--bb-28 {
  border-bottom: 28px #fd2626 solid !important;
}
.red-orange--by-28 {
  border-top: 28px #fd2626 solid !important;
  border-bottom: 28px #fd2626 solid !important;
}
.red-orange--bx-28 {
  border-right: 28px #fd2626 solid !important;
  border-left: 28px #fd2626 solid !important;
}
.red-orange--ba-29 {
  border: 29px #fd2626 solid !important;
}
.red-orange--bt-29 {
  border-top: 29px #fd2626 solid !important;
}
.red-orange--br-29 {
  border-right: 29px #fd2626 solid !important;
}
.red-orange--bl-29 {
  border-left: 29px #fd2626 solid !important;
}
.red-orange--bb-29 {
  border-bottom: 29px #fd2626 solid !important;
}
.red-orange--by-29 {
  border-top: 29px #fd2626 solid !important;
  border-bottom: 29px #fd2626 solid !important;
}
.red-orange--bx-29 {
  border-right: 29px #fd2626 solid !important;
  border-left: 29px #fd2626 solid !important;
}
.red-orange--ba-30 {
  border: 30px #fd2626 solid !important;
}
.red-orange--bt-30 {
  border-top: 30px #fd2626 solid !important;
}
.red-orange--br-30 {
  border-right: 30px #fd2626 solid !important;
}
.red-orange--bl-30 {
  border-left: 30px #fd2626 solid !important;
}
.red-orange--bb-30 {
  border-bottom: 30px #fd2626 solid !important;
}
.red-orange--by-30 {
  border-top: 30px #fd2626 solid !important;
  border-bottom: 30px #fd2626 solid !important;
}
.red-orange--bx-30 {
  border-right: 30px #fd2626 solid !important;
  border-left: 30px #fd2626 solid !important;
}
.red-orange--ba-31 {
  border: 31px #fd2626 solid !important;
}
.red-orange--bt-31 {
  border-top: 31px #fd2626 solid !important;
}
.red-orange--br-31 {
  border-right: 31px #fd2626 solid !important;
}
.red-orange--bl-31 {
  border-left: 31px #fd2626 solid !important;
}
.red-orange--bb-31 {
  border-bottom: 31px #fd2626 solid !important;
}
.red-orange--by-31 {
  border-top: 31px #fd2626 solid !important;
  border-bottom: 31px #fd2626 solid !important;
}
.red-orange--bx-31 {
  border-right: 31px #fd2626 solid !important;
  border-left: 31px #fd2626 solid !important;
}
.red-orange--ba-32 {
  border: 32px #fd2626 solid !important;
}
.red-orange--bt-32 {
  border-top: 32px #fd2626 solid !important;
}
.red-orange--br-32 {
  border-right: 32px #fd2626 solid !important;
}
.red-orange--bl-32 {
  border-left: 32px #fd2626 solid !important;
}
.red-orange--bb-32 {
  border-bottom: 32px #fd2626 solid !important;
}
.red-orange--by-32 {
  border-top: 32px #fd2626 solid !important;
  border-bottom: 32px #fd2626 solid !important;
}
.red-orange--bx-32 {
  border-right: 32px #fd2626 solid !important;
  border-left: 32px #fd2626 solid !important;
}
.red-orange--ba-33 {
  border: 33px #fd2626 solid !important;
}
.red-orange--bt-33 {
  border-top: 33px #fd2626 solid !important;
}
.red-orange--br-33 {
  border-right: 33px #fd2626 solid !important;
}
.red-orange--bl-33 {
  border-left: 33px #fd2626 solid !important;
}
.red-orange--bb-33 {
  border-bottom: 33px #fd2626 solid !important;
}
.red-orange--by-33 {
  border-top: 33px #fd2626 solid !important;
  border-bottom: 33px #fd2626 solid !important;
}
.red-orange--bx-33 {
  border-right: 33px #fd2626 solid !important;
  border-left: 33px #fd2626 solid !important;
}
.red-orange--ba-34 {
  border: 34px #fd2626 solid !important;
}
.red-orange--bt-34 {
  border-top: 34px #fd2626 solid !important;
}
.red-orange--br-34 {
  border-right: 34px #fd2626 solid !important;
}
.red-orange--bl-34 {
  border-left: 34px #fd2626 solid !important;
}
.red-orange--bb-34 {
  border-bottom: 34px #fd2626 solid !important;
}
.red-orange--by-34 {
  border-top: 34px #fd2626 solid !important;
  border-bottom: 34px #fd2626 solid !important;
}
.red-orange--bx-34 {
  border-right: 34px #fd2626 solid !important;
  border-left: 34px #fd2626 solid !important;
}
.red-orange--ba-35 {
  border: 35px #fd2626 solid !important;
}
.red-orange--bt-35 {
  border-top: 35px #fd2626 solid !important;
}
.red-orange--br-35 {
  border-right: 35px #fd2626 solid !important;
}
.red-orange--bl-35 {
  border-left: 35px #fd2626 solid !important;
}
.red-orange--bb-35 {
  border-bottom: 35px #fd2626 solid !important;
}
.red-orange--by-35 {
  border-top: 35px #fd2626 solid !important;
  border-bottom: 35px #fd2626 solid !important;
}
.red-orange--bx-35 {
  border-right: 35px #fd2626 solid !important;
  border-left: 35px #fd2626 solid !important;
}
.red-orange--ba-36 {
  border: 36px #fd2626 solid !important;
}
.red-orange--bt-36 {
  border-top: 36px #fd2626 solid !important;
}
.red-orange--br-36 {
  border-right: 36px #fd2626 solid !important;
}
.red-orange--bl-36 {
  border-left: 36px #fd2626 solid !important;
}
.red-orange--bb-36 {
  border-bottom: 36px #fd2626 solid !important;
}
.red-orange--by-36 {
  border-top: 36px #fd2626 solid !important;
  border-bottom: 36px #fd2626 solid !important;
}
.red-orange--bx-36 {
  border-right: 36px #fd2626 solid !important;
  border-left: 36px #fd2626 solid !important;
}
.red-orange--ba-37 {
  border: 37px #fd2626 solid !important;
}
.red-orange--bt-37 {
  border-top: 37px #fd2626 solid !important;
}
.red-orange--br-37 {
  border-right: 37px #fd2626 solid !important;
}
.red-orange--bl-37 {
  border-left: 37px #fd2626 solid !important;
}
.red-orange--bb-37 {
  border-bottom: 37px #fd2626 solid !important;
}
.red-orange--by-37 {
  border-top: 37px #fd2626 solid !important;
  border-bottom: 37px #fd2626 solid !important;
}
.red-orange--bx-37 {
  border-right: 37px #fd2626 solid !important;
  border-left: 37px #fd2626 solid !important;
}
.red-orange--ba-38 {
  border: 38px #fd2626 solid !important;
}
.red-orange--bt-38 {
  border-top: 38px #fd2626 solid !important;
}
.red-orange--br-38 {
  border-right: 38px #fd2626 solid !important;
}
.red-orange--bl-38 {
  border-left: 38px #fd2626 solid !important;
}
.red-orange--bb-38 {
  border-bottom: 38px #fd2626 solid !important;
}
.red-orange--by-38 {
  border-top: 38px #fd2626 solid !important;
  border-bottom: 38px #fd2626 solid !important;
}
.red-orange--bx-38 {
  border-right: 38px #fd2626 solid !important;
  border-left: 38px #fd2626 solid !important;
}
.red-orange--ba-39 {
  border: 39px #fd2626 solid !important;
}
.red-orange--bt-39 {
  border-top: 39px #fd2626 solid !important;
}
.red-orange--br-39 {
  border-right: 39px #fd2626 solid !important;
}
.red-orange--bl-39 {
  border-left: 39px #fd2626 solid !important;
}
.red-orange--bb-39 {
  border-bottom: 39px #fd2626 solid !important;
}
.red-orange--by-39 {
  border-top: 39px #fd2626 solid !important;
  border-bottom: 39px #fd2626 solid !important;
}
.red-orange--bx-39 {
  border-right: 39px #fd2626 solid !important;
  border-left: 39px #fd2626 solid !important;
}
.red-orange--ba-40 {
  border: 40px #fd2626 solid !important;
}
.red-orange--bt-40 {
  border-top: 40px #fd2626 solid !important;
}
.red-orange--br-40 {
  border-right: 40px #fd2626 solid !important;
}
.red-orange--bl-40 {
  border-left: 40px #fd2626 solid !important;
}
.red-orange--bb-40 {
  border-bottom: 40px #fd2626 solid !important;
}
.red-orange--by-40 {
  border-top: 40px #fd2626 solid !important;
  border-bottom: 40px #fd2626 solid !important;
}
.red-orange--bx-40 {
  border-right: 40px #fd2626 solid !important;
  border-left: 40px #fd2626 solid !important;
}
.red-orange--ba-41 {
  border: 41px #fd2626 solid !important;
}
.red-orange--bt-41 {
  border-top: 41px #fd2626 solid !important;
}
.red-orange--br-41 {
  border-right: 41px #fd2626 solid !important;
}
.red-orange--bl-41 {
  border-left: 41px #fd2626 solid !important;
}
.red-orange--bb-41 {
  border-bottom: 41px #fd2626 solid !important;
}
.red-orange--by-41 {
  border-top: 41px #fd2626 solid !important;
  border-bottom: 41px #fd2626 solid !important;
}
.red-orange--bx-41 {
  border-right: 41px #fd2626 solid !important;
  border-left: 41px #fd2626 solid !important;
}
.red-orange--ba-42 {
  border: 42px #fd2626 solid !important;
}
.red-orange--bt-42 {
  border-top: 42px #fd2626 solid !important;
}
.red-orange--br-42 {
  border-right: 42px #fd2626 solid !important;
}
.red-orange--bl-42 {
  border-left: 42px #fd2626 solid !important;
}
.red-orange--bb-42 {
  border-bottom: 42px #fd2626 solid !important;
}
.red-orange--by-42 {
  border-top: 42px #fd2626 solid !important;
  border-bottom: 42px #fd2626 solid !important;
}
.red-orange--bx-42 {
  border-right: 42px #fd2626 solid !important;
  border-left: 42px #fd2626 solid !important;
}
.red-orange--ba-43 {
  border: 43px #fd2626 solid !important;
}
.red-orange--bt-43 {
  border-top: 43px #fd2626 solid !important;
}
.red-orange--br-43 {
  border-right: 43px #fd2626 solid !important;
}
.red-orange--bl-43 {
  border-left: 43px #fd2626 solid !important;
}
.red-orange--bb-43 {
  border-bottom: 43px #fd2626 solid !important;
}
.red-orange--by-43 {
  border-top: 43px #fd2626 solid !important;
  border-bottom: 43px #fd2626 solid !important;
}
.red-orange--bx-43 {
  border-right: 43px #fd2626 solid !important;
  border-left: 43px #fd2626 solid !important;
}
.red-orange--ba-44 {
  border: 44px #fd2626 solid !important;
}
.red-orange--bt-44 {
  border-top: 44px #fd2626 solid !important;
}
.red-orange--br-44 {
  border-right: 44px #fd2626 solid !important;
}
.red-orange--bl-44 {
  border-left: 44px #fd2626 solid !important;
}
.red-orange--bb-44 {
  border-bottom: 44px #fd2626 solid !important;
}
.red-orange--by-44 {
  border-top: 44px #fd2626 solid !important;
  border-bottom: 44px #fd2626 solid !important;
}
.red-orange--bx-44 {
  border-right: 44px #fd2626 solid !important;
  border-left: 44px #fd2626 solid !important;
}
.red-orange--ba-45 {
  border: 45px #fd2626 solid !important;
}
.red-orange--bt-45 {
  border-top: 45px #fd2626 solid !important;
}
.red-orange--br-45 {
  border-right: 45px #fd2626 solid !important;
}
.red-orange--bl-45 {
  border-left: 45px #fd2626 solid !important;
}
.red-orange--bb-45 {
  border-bottom: 45px #fd2626 solid !important;
}
.red-orange--by-45 {
  border-top: 45px #fd2626 solid !important;
  border-bottom: 45px #fd2626 solid !important;
}
.red-orange--bx-45 {
  border-right: 45px #fd2626 solid !important;
  border-left: 45px #fd2626 solid !important;
}
.red-orange--ba-46 {
  border: 46px #fd2626 solid !important;
}
.red-orange--bt-46 {
  border-top: 46px #fd2626 solid !important;
}
.red-orange--br-46 {
  border-right: 46px #fd2626 solid !important;
}
.red-orange--bl-46 {
  border-left: 46px #fd2626 solid !important;
}
.red-orange--bb-46 {
  border-bottom: 46px #fd2626 solid !important;
}
.red-orange--by-46 {
  border-top: 46px #fd2626 solid !important;
  border-bottom: 46px #fd2626 solid !important;
}
.red-orange--bx-46 {
  border-right: 46px #fd2626 solid !important;
  border-left: 46px #fd2626 solid !important;
}
.red-orange--ba-47 {
  border: 47px #fd2626 solid !important;
}
.red-orange--bt-47 {
  border-top: 47px #fd2626 solid !important;
}
.red-orange--br-47 {
  border-right: 47px #fd2626 solid !important;
}
.red-orange--bl-47 {
  border-left: 47px #fd2626 solid !important;
}
.red-orange--bb-47 {
  border-bottom: 47px #fd2626 solid !important;
}
.red-orange--by-47 {
  border-top: 47px #fd2626 solid !important;
  border-bottom: 47px #fd2626 solid !important;
}
.red-orange--bx-47 {
  border-right: 47px #fd2626 solid !important;
  border-left: 47px #fd2626 solid !important;
}
.red-orange--ba-48 {
  border: 48px #fd2626 solid !important;
}
.red-orange--bt-48 {
  border-top: 48px #fd2626 solid !important;
}
.red-orange--br-48 {
  border-right: 48px #fd2626 solid !important;
}
.red-orange--bl-48 {
  border-left: 48px #fd2626 solid !important;
}
.red-orange--bb-48 {
  border-bottom: 48px #fd2626 solid !important;
}
.red-orange--by-48 {
  border-top: 48px #fd2626 solid !important;
  border-bottom: 48px #fd2626 solid !important;
}
.red-orange--bx-48 {
  border-right: 48px #fd2626 solid !important;
  border-left: 48px #fd2626 solid !important;
}
.red-orange--ba-49 {
  border: 49px #fd2626 solid !important;
}
.red-orange--bt-49 {
  border-top: 49px #fd2626 solid !important;
}
.red-orange--br-49 {
  border-right: 49px #fd2626 solid !important;
}
.red-orange--bl-49 {
  border-left: 49px #fd2626 solid !important;
}
.red-orange--bb-49 {
  border-bottom: 49px #fd2626 solid !important;
}
.red-orange--by-49 {
  border-top: 49px #fd2626 solid !important;
  border-bottom: 49px #fd2626 solid !important;
}
.red-orange--bx-49 {
  border-right: 49px #fd2626 solid !important;
  border-left: 49px #fd2626 solid !important;
}
.red-orange--ba-50 {
  border: 50px #fd2626 solid !important;
}
.red-orange--bt-50 {
  border-top: 50px #fd2626 solid !important;
}
.red-orange--br-50 {
  border-right: 50px #fd2626 solid !important;
}
.red-orange--bl-50 {
  border-left: 50px #fd2626 solid !important;
}
.red-orange--bb-50 {
  border-bottom: 50px #fd2626 solid !important;
}
.red-orange--by-50 {
  border-top: 50px #fd2626 solid !important;
  border-bottom: 50px #fd2626 solid !important;
}
.red-orange--bx-50 {
  border-right: 50px #fd2626 solid !important;
  border-left: 50px #fd2626 solid !important;
}
.red-orange--ba-51 {
  border: 51px #fd2626 solid !important;
}
.red-orange--bt-51 {
  border-top: 51px #fd2626 solid !important;
}
.red-orange--br-51 {
  border-right: 51px #fd2626 solid !important;
}
.red-orange--bl-51 {
  border-left: 51px #fd2626 solid !important;
}
.red-orange--bb-51 {
  border-bottom: 51px #fd2626 solid !important;
}
.red-orange--by-51 {
  border-top: 51px #fd2626 solid !important;
  border-bottom: 51px #fd2626 solid !important;
}
.red-orange--bx-51 {
  border-right: 51px #fd2626 solid !important;
  border-left: 51px #fd2626 solid !important;
}
.red-orange--ba-52 {
  border: 52px #fd2626 solid !important;
}
.red-orange--bt-52 {
  border-top: 52px #fd2626 solid !important;
}
.red-orange--br-52 {
  border-right: 52px #fd2626 solid !important;
}
.red-orange--bl-52 {
  border-left: 52px #fd2626 solid !important;
}
.red-orange--bb-52 {
  border-bottom: 52px #fd2626 solid !important;
}
.red-orange--by-52 {
  border-top: 52px #fd2626 solid !important;
  border-bottom: 52px #fd2626 solid !important;
}
.red-orange--bx-52 {
  border-right: 52px #fd2626 solid !important;
  border-left: 52px #fd2626 solid !important;
}
.red-orange--ba-53 {
  border: 53px #fd2626 solid !important;
}
.red-orange--bt-53 {
  border-top: 53px #fd2626 solid !important;
}
.red-orange--br-53 {
  border-right: 53px #fd2626 solid !important;
}
.red-orange--bl-53 {
  border-left: 53px #fd2626 solid !important;
}
.red-orange--bb-53 {
  border-bottom: 53px #fd2626 solid !important;
}
.red-orange--by-53 {
  border-top: 53px #fd2626 solid !important;
  border-bottom: 53px #fd2626 solid !important;
}
.red-orange--bx-53 {
  border-right: 53px #fd2626 solid !important;
  border-left: 53px #fd2626 solid !important;
}
.red-orange--ba-54 {
  border: 54px #fd2626 solid !important;
}
.red-orange--bt-54 {
  border-top: 54px #fd2626 solid !important;
}
.red-orange--br-54 {
  border-right: 54px #fd2626 solid !important;
}
.red-orange--bl-54 {
  border-left: 54px #fd2626 solid !important;
}
.red-orange--bb-54 {
  border-bottom: 54px #fd2626 solid !important;
}
.red-orange--by-54 {
  border-top: 54px #fd2626 solid !important;
  border-bottom: 54px #fd2626 solid !important;
}
.red-orange--bx-54 {
  border-right: 54px #fd2626 solid !important;
  border-left: 54px #fd2626 solid !important;
}
.red-orange--ba-55 {
  border: 55px #fd2626 solid !important;
}
.red-orange--bt-55 {
  border-top: 55px #fd2626 solid !important;
}
.red-orange--br-55 {
  border-right: 55px #fd2626 solid !important;
}
.red-orange--bl-55 {
  border-left: 55px #fd2626 solid !important;
}
.red-orange--bb-55 {
  border-bottom: 55px #fd2626 solid !important;
}
.red-orange--by-55 {
  border-top: 55px #fd2626 solid !important;
  border-bottom: 55px #fd2626 solid !important;
}
.red-orange--bx-55 {
  border-right: 55px #fd2626 solid !important;
  border-left: 55px #fd2626 solid !important;
}
.red-orange--ba-56 {
  border: 56px #fd2626 solid !important;
}
.red-orange--bt-56 {
  border-top: 56px #fd2626 solid !important;
}
.red-orange--br-56 {
  border-right: 56px #fd2626 solid !important;
}
.red-orange--bl-56 {
  border-left: 56px #fd2626 solid !important;
}
.red-orange--bb-56 {
  border-bottom: 56px #fd2626 solid !important;
}
.red-orange--by-56 {
  border-top: 56px #fd2626 solid !important;
  border-bottom: 56px #fd2626 solid !important;
}
.red-orange--bx-56 {
  border-right: 56px #fd2626 solid !important;
  border-left: 56px #fd2626 solid !important;
}
.red-orange--ba-57 {
  border: 57px #fd2626 solid !important;
}
.red-orange--bt-57 {
  border-top: 57px #fd2626 solid !important;
}
.red-orange--br-57 {
  border-right: 57px #fd2626 solid !important;
}
.red-orange--bl-57 {
  border-left: 57px #fd2626 solid !important;
}
.red-orange--bb-57 {
  border-bottom: 57px #fd2626 solid !important;
}
.red-orange--by-57 {
  border-top: 57px #fd2626 solid !important;
  border-bottom: 57px #fd2626 solid !important;
}
.red-orange--bx-57 {
  border-right: 57px #fd2626 solid !important;
  border-left: 57px #fd2626 solid !important;
}
.red-orange--ba-58 {
  border: 58px #fd2626 solid !important;
}
.red-orange--bt-58 {
  border-top: 58px #fd2626 solid !important;
}
.red-orange--br-58 {
  border-right: 58px #fd2626 solid !important;
}
.red-orange--bl-58 {
  border-left: 58px #fd2626 solid !important;
}
.red-orange--bb-58 {
  border-bottom: 58px #fd2626 solid !important;
}
.red-orange--by-58 {
  border-top: 58px #fd2626 solid !important;
  border-bottom: 58px #fd2626 solid !important;
}
.red-orange--bx-58 {
  border-right: 58px #fd2626 solid !important;
  border-left: 58px #fd2626 solid !important;
}
.red-orange--ba-59 {
  border: 59px #fd2626 solid !important;
}
.red-orange--bt-59 {
  border-top: 59px #fd2626 solid !important;
}
.red-orange--br-59 {
  border-right: 59px #fd2626 solid !important;
}
.red-orange--bl-59 {
  border-left: 59px #fd2626 solid !important;
}
.red-orange--bb-59 {
  border-bottom: 59px #fd2626 solid !important;
}
.red-orange--by-59 {
  border-top: 59px #fd2626 solid !important;
  border-bottom: 59px #fd2626 solid !important;
}
.red-orange--bx-59 {
  border-right: 59px #fd2626 solid !important;
  border-left: 59px #fd2626 solid !important;
}
.red-orange--ba-60 {
  border: 60px #fd2626 solid !important;
}
.red-orange--bt-60 {
  border-top: 60px #fd2626 solid !important;
}
.red-orange--br-60 {
  border-right: 60px #fd2626 solid !important;
}
.red-orange--bl-60 {
  border-left: 60px #fd2626 solid !important;
}
.red-orange--bb-60 {
  border-bottom: 60px #fd2626 solid !important;
}
.red-orange--by-60 {
  border-top: 60px #fd2626 solid !important;
  border-bottom: 60px #fd2626 solid !important;
}
.red-orange--bx-60 {
  border-right: 60px #fd2626 solid !important;
  border-left: 60px #fd2626 solid !important;
}
.red-orange--ba-61 {
  border: 61px #fd2626 solid !important;
}
.red-orange--bt-61 {
  border-top: 61px #fd2626 solid !important;
}
.red-orange--br-61 {
  border-right: 61px #fd2626 solid !important;
}
.red-orange--bl-61 {
  border-left: 61px #fd2626 solid !important;
}
.red-orange--bb-61 {
  border-bottom: 61px #fd2626 solid !important;
}
.red-orange--by-61 {
  border-top: 61px #fd2626 solid !important;
  border-bottom: 61px #fd2626 solid !important;
}
.red-orange--bx-61 {
  border-right: 61px #fd2626 solid !important;
  border-left: 61px #fd2626 solid !important;
}
.red-orange--ba-62 {
  border: 62px #fd2626 solid !important;
}
.red-orange--bt-62 {
  border-top: 62px #fd2626 solid !important;
}
.red-orange--br-62 {
  border-right: 62px #fd2626 solid !important;
}
.red-orange--bl-62 {
  border-left: 62px #fd2626 solid !important;
}
.red-orange--bb-62 {
  border-bottom: 62px #fd2626 solid !important;
}
.red-orange--by-62 {
  border-top: 62px #fd2626 solid !important;
  border-bottom: 62px #fd2626 solid !important;
}
.red-orange--bx-62 {
  border-right: 62px #fd2626 solid !important;
  border-left: 62px #fd2626 solid !important;
}
.red-orange--ba-63 {
  border: 63px #fd2626 solid !important;
}
.red-orange--bt-63 {
  border-top: 63px #fd2626 solid !important;
}
.red-orange--br-63 {
  border-right: 63px #fd2626 solid !important;
}
.red-orange--bl-63 {
  border-left: 63px #fd2626 solid !important;
}
.red-orange--bb-63 {
  border-bottom: 63px #fd2626 solid !important;
}
.red-orange--by-63 {
  border-top: 63px #fd2626 solid !important;
  border-bottom: 63px #fd2626 solid !important;
}
.red-orange--bx-63 {
  border-right: 63px #fd2626 solid !important;
  border-left: 63px #fd2626 solid !important;
}
.red-orange--ba-64 {
  border: 64px #fd2626 solid !important;
}
.red-orange--bt-64 {
  border-top: 64px #fd2626 solid !important;
}
.red-orange--br-64 {
  border-right: 64px #fd2626 solid !important;
}
.red-orange--bl-64 {
  border-left: 64px #fd2626 solid !important;
}
.red-orange--bb-64 {
  border-bottom: 64px #fd2626 solid !important;
}
.red-orange--by-64 {
  border-top: 64px #fd2626 solid !important;
  border-bottom: 64px #fd2626 solid !important;
}
.red-orange--bx-64 {
  border-right: 64px #fd2626 solid !important;
  border-left: 64px #fd2626 solid !important;
}
.red-orange--ba-65 {
  border: 65px #fd2626 solid !important;
}
.red-orange--bt-65 {
  border-top: 65px #fd2626 solid !important;
}
.red-orange--br-65 {
  border-right: 65px #fd2626 solid !important;
}
.red-orange--bl-65 {
  border-left: 65px #fd2626 solid !important;
}
.red-orange--bb-65 {
  border-bottom: 65px #fd2626 solid !important;
}
.red-orange--by-65 {
  border-top: 65px #fd2626 solid !important;
  border-bottom: 65px #fd2626 solid !important;
}
.red-orange--bx-65 {
  border-right: 65px #fd2626 solid !important;
  border-left: 65px #fd2626 solid !important;
}
.red-orange--ba-66 {
  border: 66px #fd2626 solid !important;
}
.red-orange--bt-66 {
  border-top: 66px #fd2626 solid !important;
}
.red-orange--br-66 {
  border-right: 66px #fd2626 solid !important;
}
.red-orange--bl-66 {
  border-left: 66px #fd2626 solid !important;
}
.red-orange--bb-66 {
  border-bottom: 66px #fd2626 solid !important;
}
.red-orange--by-66 {
  border-top: 66px #fd2626 solid !important;
  border-bottom: 66px #fd2626 solid !important;
}
.red-orange--bx-66 {
  border-right: 66px #fd2626 solid !important;
  border-left: 66px #fd2626 solid !important;
}
.red-orange--ba-67 {
  border: 67px #fd2626 solid !important;
}
.red-orange--bt-67 {
  border-top: 67px #fd2626 solid !important;
}
.red-orange--br-67 {
  border-right: 67px #fd2626 solid !important;
}
.red-orange--bl-67 {
  border-left: 67px #fd2626 solid !important;
}
.red-orange--bb-67 {
  border-bottom: 67px #fd2626 solid !important;
}
.red-orange--by-67 {
  border-top: 67px #fd2626 solid !important;
  border-bottom: 67px #fd2626 solid !important;
}
.red-orange--bx-67 {
  border-right: 67px #fd2626 solid !important;
  border-left: 67px #fd2626 solid !important;
}
.red-orange--ba-68 {
  border: 68px #fd2626 solid !important;
}
.red-orange--bt-68 {
  border-top: 68px #fd2626 solid !important;
}
.red-orange--br-68 {
  border-right: 68px #fd2626 solid !important;
}
.red-orange--bl-68 {
  border-left: 68px #fd2626 solid !important;
}
.red-orange--bb-68 {
  border-bottom: 68px #fd2626 solid !important;
}
.red-orange--by-68 {
  border-top: 68px #fd2626 solid !important;
  border-bottom: 68px #fd2626 solid !important;
}
.red-orange--bx-68 {
  border-right: 68px #fd2626 solid !important;
  border-left: 68px #fd2626 solid !important;
}
.red-orange--ba-69 {
  border: 69px #fd2626 solid !important;
}
.red-orange--bt-69 {
  border-top: 69px #fd2626 solid !important;
}
.red-orange--br-69 {
  border-right: 69px #fd2626 solid !important;
}
.red-orange--bl-69 {
  border-left: 69px #fd2626 solid !important;
}
.red-orange--bb-69 {
  border-bottom: 69px #fd2626 solid !important;
}
.red-orange--by-69 {
  border-top: 69px #fd2626 solid !important;
  border-bottom: 69px #fd2626 solid !important;
}
.red-orange--bx-69 {
  border-right: 69px #fd2626 solid !important;
  border-left: 69px #fd2626 solid !important;
}
.red-orange--ba-70 {
  border: 70px #fd2626 solid !important;
}
.red-orange--bt-70 {
  border-top: 70px #fd2626 solid !important;
}
.red-orange--br-70 {
  border-right: 70px #fd2626 solid !important;
}
.red-orange--bl-70 {
  border-left: 70px #fd2626 solid !important;
}
.red-orange--bb-70 {
  border-bottom: 70px #fd2626 solid !important;
}
.red-orange--by-70 {
  border-top: 70px #fd2626 solid !important;
  border-bottom: 70px #fd2626 solid !important;
}
.red-orange--bx-70 {
  border-right: 70px #fd2626 solid !important;
  border-left: 70px #fd2626 solid !important;
}
.red-orange--ba-71 {
  border: 71px #fd2626 solid !important;
}
.red-orange--bt-71 {
  border-top: 71px #fd2626 solid !important;
}
.red-orange--br-71 {
  border-right: 71px #fd2626 solid !important;
}
.red-orange--bl-71 {
  border-left: 71px #fd2626 solid !important;
}
.red-orange--bb-71 {
  border-bottom: 71px #fd2626 solid !important;
}
.red-orange--by-71 {
  border-top: 71px #fd2626 solid !important;
  border-bottom: 71px #fd2626 solid !important;
}
.red-orange--bx-71 {
  border-right: 71px #fd2626 solid !important;
  border-left: 71px #fd2626 solid !important;
}
.red-orange--ba-72 {
  border: 72px #fd2626 solid !important;
}
.red-orange--bt-72 {
  border-top: 72px #fd2626 solid !important;
}
.red-orange--br-72 {
  border-right: 72px #fd2626 solid !important;
}
.red-orange--bl-72 {
  border-left: 72px #fd2626 solid !important;
}
.red-orange--bb-72 {
  border-bottom: 72px #fd2626 solid !important;
}
.red-orange--by-72 {
  border-top: 72px #fd2626 solid !important;
  border-bottom: 72px #fd2626 solid !important;
}
.red-orange--bx-72 {
  border-right: 72px #fd2626 solid !important;
  border-left: 72px #fd2626 solid !important;
}
.red-orange--ba-73 {
  border: 73px #fd2626 solid !important;
}
.red-orange--bt-73 {
  border-top: 73px #fd2626 solid !important;
}
.red-orange--br-73 {
  border-right: 73px #fd2626 solid !important;
}
.red-orange--bl-73 {
  border-left: 73px #fd2626 solid !important;
}
.red-orange--bb-73 {
  border-bottom: 73px #fd2626 solid !important;
}
.red-orange--by-73 {
  border-top: 73px #fd2626 solid !important;
  border-bottom: 73px #fd2626 solid !important;
}
.red-orange--bx-73 {
  border-right: 73px #fd2626 solid !important;
  border-left: 73px #fd2626 solid !important;
}
.red-orange--ba-74 {
  border: 74px #fd2626 solid !important;
}
.red-orange--bt-74 {
  border-top: 74px #fd2626 solid !important;
}
.red-orange--br-74 {
  border-right: 74px #fd2626 solid !important;
}
.red-orange--bl-74 {
  border-left: 74px #fd2626 solid !important;
}
.red-orange--bb-74 {
  border-bottom: 74px #fd2626 solid !important;
}
.red-orange--by-74 {
  border-top: 74px #fd2626 solid !important;
  border-bottom: 74px #fd2626 solid !important;
}
.red-orange--bx-74 {
  border-right: 74px #fd2626 solid !important;
  border-left: 74px #fd2626 solid !important;
}
.red-orange--ba-75 {
  border: 75px #fd2626 solid !important;
}
.red-orange--bt-75 {
  border-top: 75px #fd2626 solid !important;
}
.red-orange--br-75 {
  border-right: 75px #fd2626 solid !important;
}
.red-orange--bl-75 {
  border-left: 75px #fd2626 solid !important;
}
.red-orange--bb-75 {
  border-bottom: 75px #fd2626 solid !important;
}
.red-orange--by-75 {
  border-top: 75px #fd2626 solid !important;
  border-bottom: 75px #fd2626 solid !important;
}
.red-orange--bx-75 {
  border-right: 75px #fd2626 solid !important;
  border-left: 75px #fd2626 solid !important;
}
.red-orange--ba-76 {
  border: 76px #fd2626 solid !important;
}
.red-orange--bt-76 {
  border-top: 76px #fd2626 solid !important;
}
.red-orange--br-76 {
  border-right: 76px #fd2626 solid !important;
}
.red-orange--bl-76 {
  border-left: 76px #fd2626 solid !important;
}
.red-orange--bb-76 {
  border-bottom: 76px #fd2626 solid !important;
}
.red-orange--by-76 {
  border-top: 76px #fd2626 solid !important;
  border-bottom: 76px #fd2626 solid !important;
}
.red-orange--bx-76 {
  border-right: 76px #fd2626 solid !important;
  border-left: 76px #fd2626 solid !important;
}
.red-orange--ba-77 {
  border: 77px #fd2626 solid !important;
}
.red-orange--bt-77 {
  border-top: 77px #fd2626 solid !important;
}
.red-orange--br-77 {
  border-right: 77px #fd2626 solid !important;
}
.red-orange--bl-77 {
  border-left: 77px #fd2626 solid !important;
}
.red-orange--bb-77 {
  border-bottom: 77px #fd2626 solid !important;
}
.red-orange--by-77 {
  border-top: 77px #fd2626 solid !important;
  border-bottom: 77px #fd2626 solid !important;
}
.red-orange--bx-77 {
  border-right: 77px #fd2626 solid !important;
  border-left: 77px #fd2626 solid !important;
}
.red-orange--ba-78 {
  border: 78px #fd2626 solid !important;
}
.red-orange--bt-78 {
  border-top: 78px #fd2626 solid !important;
}
.red-orange--br-78 {
  border-right: 78px #fd2626 solid !important;
}
.red-orange--bl-78 {
  border-left: 78px #fd2626 solid !important;
}
.red-orange--bb-78 {
  border-bottom: 78px #fd2626 solid !important;
}
.red-orange--by-78 {
  border-top: 78px #fd2626 solid !important;
  border-bottom: 78px #fd2626 solid !important;
}
.red-orange--bx-78 {
  border-right: 78px #fd2626 solid !important;
  border-left: 78px #fd2626 solid !important;
}
.red-orange--ba-79 {
  border: 79px #fd2626 solid !important;
}
.red-orange--bt-79 {
  border-top: 79px #fd2626 solid !important;
}
.red-orange--br-79 {
  border-right: 79px #fd2626 solid !important;
}
.red-orange--bl-79 {
  border-left: 79px #fd2626 solid !important;
}
.red-orange--bb-79 {
  border-bottom: 79px #fd2626 solid !important;
}
.red-orange--by-79 {
  border-top: 79px #fd2626 solid !important;
  border-bottom: 79px #fd2626 solid !important;
}
.red-orange--bx-79 {
  border-right: 79px #fd2626 solid !important;
  border-left: 79px #fd2626 solid !important;
}
.red-orange--ba-80 {
  border: 80px #fd2626 solid !important;
}
.red-orange--bt-80 {
  border-top: 80px #fd2626 solid !important;
}
.red-orange--br-80 {
  border-right: 80px #fd2626 solid !important;
}
.red-orange--bl-80 {
  border-left: 80px #fd2626 solid !important;
}
.red-orange--bb-80 {
  border-bottom: 80px #fd2626 solid !important;
}
.red-orange--by-80 {
  border-top: 80px #fd2626 solid !important;
  border-bottom: 80px #fd2626 solid !important;
}
.red-orange--bx-80 {
  border-right: 80px #fd2626 solid !important;
  border-left: 80px #fd2626 solid !important;
}
.red-orange--ba-81 {
  border: 81px #fd2626 solid !important;
}
.red-orange--bt-81 {
  border-top: 81px #fd2626 solid !important;
}
.red-orange--br-81 {
  border-right: 81px #fd2626 solid !important;
}
.red-orange--bl-81 {
  border-left: 81px #fd2626 solid !important;
}
.red-orange--bb-81 {
  border-bottom: 81px #fd2626 solid !important;
}
.red-orange--by-81 {
  border-top: 81px #fd2626 solid !important;
  border-bottom: 81px #fd2626 solid !important;
}
.red-orange--bx-81 {
  border-right: 81px #fd2626 solid !important;
  border-left: 81px #fd2626 solid !important;
}
.red-orange--ba-82 {
  border: 82px #fd2626 solid !important;
}
.red-orange--bt-82 {
  border-top: 82px #fd2626 solid !important;
}
.red-orange--br-82 {
  border-right: 82px #fd2626 solid !important;
}
.red-orange--bl-82 {
  border-left: 82px #fd2626 solid !important;
}
.red-orange--bb-82 {
  border-bottom: 82px #fd2626 solid !important;
}
.red-orange--by-82 {
  border-top: 82px #fd2626 solid !important;
  border-bottom: 82px #fd2626 solid !important;
}
.red-orange--bx-82 {
  border-right: 82px #fd2626 solid !important;
  border-left: 82px #fd2626 solid !important;
}
.red-orange--ba-83 {
  border: 83px #fd2626 solid !important;
}
.red-orange--bt-83 {
  border-top: 83px #fd2626 solid !important;
}
.red-orange--br-83 {
  border-right: 83px #fd2626 solid !important;
}
.red-orange--bl-83 {
  border-left: 83px #fd2626 solid !important;
}
.red-orange--bb-83 {
  border-bottom: 83px #fd2626 solid !important;
}
.red-orange--by-83 {
  border-top: 83px #fd2626 solid !important;
  border-bottom: 83px #fd2626 solid !important;
}
.red-orange--bx-83 {
  border-right: 83px #fd2626 solid !important;
  border-left: 83px #fd2626 solid !important;
}
.red-orange--ba-84 {
  border: 84px #fd2626 solid !important;
}
.red-orange--bt-84 {
  border-top: 84px #fd2626 solid !important;
}
.red-orange--br-84 {
  border-right: 84px #fd2626 solid !important;
}
.red-orange--bl-84 {
  border-left: 84px #fd2626 solid !important;
}
.red-orange--bb-84 {
  border-bottom: 84px #fd2626 solid !important;
}
.red-orange--by-84 {
  border-top: 84px #fd2626 solid !important;
  border-bottom: 84px #fd2626 solid !important;
}
.red-orange--bx-84 {
  border-right: 84px #fd2626 solid !important;
  border-left: 84px #fd2626 solid !important;
}
.red-orange--ba-85 {
  border: 85px #fd2626 solid !important;
}
.red-orange--bt-85 {
  border-top: 85px #fd2626 solid !important;
}
.red-orange--br-85 {
  border-right: 85px #fd2626 solid !important;
}
.red-orange--bl-85 {
  border-left: 85px #fd2626 solid !important;
}
.red-orange--bb-85 {
  border-bottom: 85px #fd2626 solid !important;
}
.red-orange--by-85 {
  border-top: 85px #fd2626 solid !important;
  border-bottom: 85px #fd2626 solid !important;
}
.red-orange--bx-85 {
  border-right: 85px #fd2626 solid !important;
  border-left: 85px #fd2626 solid !important;
}
.red-orange--ba-86 {
  border: 86px #fd2626 solid !important;
}
.red-orange--bt-86 {
  border-top: 86px #fd2626 solid !important;
}
.red-orange--br-86 {
  border-right: 86px #fd2626 solid !important;
}
.red-orange--bl-86 {
  border-left: 86px #fd2626 solid !important;
}
.red-orange--bb-86 {
  border-bottom: 86px #fd2626 solid !important;
}
.red-orange--by-86 {
  border-top: 86px #fd2626 solid !important;
  border-bottom: 86px #fd2626 solid !important;
}
.red-orange--bx-86 {
  border-right: 86px #fd2626 solid !important;
  border-left: 86px #fd2626 solid !important;
}
.red-orange--ba-87 {
  border: 87px #fd2626 solid !important;
}
.red-orange--bt-87 {
  border-top: 87px #fd2626 solid !important;
}
.red-orange--br-87 {
  border-right: 87px #fd2626 solid !important;
}
.red-orange--bl-87 {
  border-left: 87px #fd2626 solid !important;
}
.red-orange--bb-87 {
  border-bottom: 87px #fd2626 solid !important;
}
.red-orange--by-87 {
  border-top: 87px #fd2626 solid !important;
  border-bottom: 87px #fd2626 solid !important;
}
.red-orange--bx-87 {
  border-right: 87px #fd2626 solid !important;
  border-left: 87px #fd2626 solid !important;
}
.red-orange--ba-88 {
  border: 88px #fd2626 solid !important;
}
.red-orange--bt-88 {
  border-top: 88px #fd2626 solid !important;
}
.red-orange--br-88 {
  border-right: 88px #fd2626 solid !important;
}
.red-orange--bl-88 {
  border-left: 88px #fd2626 solid !important;
}
.red-orange--bb-88 {
  border-bottom: 88px #fd2626 solid !important;
}
.red-orange--by-88 {
  border-top: 88px #fd2626 solid !important;
  border-bottom: 88px #fd2626 solid !important;
}
.red-orange--bx-88 {
  border-right: 88px #fd2626 solid !important;
  border-left: 88px #fd2626 solid !important;
}
.red-orange--ba-89 {
  border: 89px #fd2626 solid !important;
}
.red-orange--bt-89 {
  border-top: 89px #fd2626 solid !important;
}
.red-orange--br-89 {
  border-right: 89px #fd2626 solid !important;
}
.red-orange--bl-89 {
  border-left: 89px #fd2626 solid !important;
}
.red-orange--bb-89 {
  border-bottom: 89px #fd2626 solid !important;
}
.red-orange--by-89 {
  border-top: 89px #fd2626 solid !important;
  border-bottom: 89px #fd2626 solid !important;
}
.red-orange--bx-89 {
  border-right: 89px #fd2626 solid !important;
  border-left: 89px #fd2626 solid !important;
}
.red-orange--ba-90 {
  border: 90px #fd2626 solid !important;
}
.red-orange--bt-90 {
  border-top: 90px #fd2626 solid !important;
}
.red-orange--br-90 {
  border-right: 90px #fd2626 solid !important;
}
.red-orange--bl-90 {
  border-left: 90px #fd2626 solid !important;
}
.red-orange--bb-90 {
  border-bottom: 90px #fd2626 solid !important;
}
.red-orange--by-90 {
  border-top: 90px #fd2626 solid !important;
  border-bottom: 90px #fd2626 solid !important;
}
.red-orange--bx-90 {
  border-right: 90px #fd2626 solid !important;
  border-left: 90px #fd2626 solid !important;
}
.red-orange--ba-91 {
  border: 91px #fd2626 solid !important;
}
.red-orange--bt-91 {
  border-top: 91px #fd2626 solid !important;
}
.red-orange--br-91 {
  border-right: 91px #fd2626 solid !important;
}
.red-orange--bl-91 {
  border-left: 91px #fd2626 solid !important;
}
.red-orange--bb-91 {
  border-bottom: 91px #fd2626 solid !important;
}
.red-orange--by-91 {
  border-top: 91px #fd2626 solid !important;
  border-bottom: 91px #fd2626 solid !important;
}
.red-orange--bx-91 {
  border-right: 91px #fd2626 solid !important;
  border-left: 91px #fd2626 solid !important;
}
.red-orange--ba-92 {
  border: 92px #fd2626 solid !important;
}
.red-orange--bt-92 {
  border-top: 92px #fd2626 solid !important;
}
.red-orange--br-92 {
  border-right: 92px #fd2626 solid !important;
}
.red-orange--bl-92 {
  border-left: 92px #fd2626 solid !important;
}
.red-orange--bb-92 {
  border-bottom: 92px #fd2626 solid !important;
}
.red-orange--by-92 {
  border-top: 92px #fd2626 solid !important;
  border-bottom: 92px #fd2626 solid !important;
}
.red-orange--bx-92 {
  border-right: 92px #fd2626 solid !important;
  border-left: 92px #fd2626 solid !important;
}
.red-orange--ba-93 {
  border: 93px #fd2626 solid !important;
}
.red-orange--bt-93 {
  border-top: 93px #fd2626 solid !important;
}
.red-orange--br-93 {
  border-right: 93px #fd2626 solid !important;
}
.red-orange--bl-93 {
  border-left: 93px #fd2626 solid !important;
}
.red-orange--bb-93 {
  border-bottom: 93px #fd2626 solid !important;
}
.red-orange--by-93 {
  border-top: 93px #fd2626 solid !important;
  border-bottom: 93px #fd2626 solid !important;
}
.red-orange--bx-93 {
  border-right: 93px #fd2626 solid !important;
  border-left: 93px #fd2626 solid !important;
}
.red-orange--ba-94 {
  border: 94px #fd2626 solid !important;
}
.red-orange--bt-94 {
  border-top: 94px #fd2626 solid !important;
}
.red-orange--br-94 {
  border-right: 94px #fd2626 solid !important;
}
.red-orange--bl-94 {
  border-left: 94px #fd2626 solid !important;
}
.red-orange--bb-94 {
  border-bottom: 94px #fd2626 solid !important;
}
.red-orange--by-94 {
  border-top: 94px #fd2626 solid !important;
  border-bottom: 94px #fd2626 solid !important;
}
.red-orange--bx-94 {
  border-right: 94px #fd2626 solid !important;
  border-left: 94px #fd2626 solid !important;
}
.red-orange--ba-95 {
  border: 95px #fd2626 solid !important;
}
.red-orange--bt-95 {
  border-top: 95px #fd2626 solid !important;
}
.red-orange--br-95 {
  border-right: 95px #fd2626 solid !important;
}
.red-orange--bl-95 {
  border-left: 95px #fd2626 solid !important;
}
.red-orange--bb-95 {
  border-bottom: 95px #fd2626 solid !important;
}
.red-orange--by-95 {
  border-top: 95px #fd2626 solid !important;
  border-bottom: 95px #fd2626 solid !important;
}
.red-orange--bx-95 {
  border-right: 95px #fd2626 solid !important;
  border-left: 95px #fd2626 solid !important;
}
.red-orange--ba-96 {
  border: 96px #fd2626 solid !important;
}
.red-orange--bt-96 {
  border-top: 96px #fd2626 solid !important;
}
.red-orange--br-96 {
  border-right: 96px #fd2626 solid !important;
}
.red-orange--bl-96 {
  border-left: 96px #fd2626 solid !important;
}
.red-orange--bb-96 {
  border-bottom: 96px #fd2626 solid !important;
}
.red-orange--by-96 {
  border-top: 96px #fd2626 solid !important;
  border-bottom: 96px #fd2626 solid !important;
}
.red-orange--bx-96 {
  border-right: 96px #fd2626 solid !important;
  border-left: 96px #fd2626 solid !important;
}
.red-orange--ba-97 {
  border: 97px #fd2626 solid !important;
}
.red-orange--bt-97 {
  border-top: 97px #fd2626 solid !important;
}
.red-orange--br-97 {
  border-right: 97px #fd2626 solid !important;
}
.red-orange--bl-97 {
  border-left: 97px #fd2626 solid !important;
}
.red-orange--bb-97 {
  border-bottom: 97px #fd2626 solid !important;
}
.red-orange--by-97 {
  border-top: 97px #fd2626 solid !important;
  border-bottom: 97px #fd2626 solid !important;
}
.red-orange--bx-97 {
  border-right: 97px #fd2626 solid !important;
  border-left: 97px #fd2626 solid !important;
}
.red-orange--ba-98 {
  border: 98px #fd2626 solid !important;
}
.red-orange--bt-98 {
  border-top: 98px #fd2626 solid !important;
}
.red-orange--br-98 {
  border-right: 98px #fd2626 solid !important;
}
.red-orange--bl-98 {
  border-left: 98px #fd2626 solid !important;
}
.red-orange--bb-98 {
  border-bottom: 98px #fd2626 solid !important;
}
.red-orange--by-98 {
  border-top: 98px #fd2626 solid !important;
  border-bottom: 98px #fd2626 solid !important;
}
.red-orange--bx-98 {
  border-right: 98px #fd2626 solid !important;
  border-left: 98px #fd2626 solid !important;
}
.red-orange--ba-99 {
  border: 99px #fd2626 solid !important;
}
.red-orange--bt-99 {
  border-top: 99px #fd2626 solid !important;
}
.red-orange--br-99 {
  border-right: 99px #fd2626 solid !important;
}
.red-orange--bl-99 {
  border-left: 99px #fd2626 solid !important;
}
.red-orange--bb-99 {
  border-bottom: 99px #fd2626 solid !important;
}
.red-orange--by-99 {
  border-top: 99px #fd2626 solid !important;
  border-bottom: 99px #fd2626 solid !important;
}
.red-orange--bx-99 {
  border-right: 99px #fd2626 solid !important;
  border-left: 99px #fd2626 solid !important;
}
.red-orange--ba-100 {
  border: 100px #fd2626 solid !important;
}
.red-orange--bt-100 {
  border-top: 100px #fd2626 solid !important;
}
.red-orange--br-100 {
  border-right: 100px #fd2626 solid !important;
}
.red-orange--bl-100 {
  border-left: 100px #fd2626 solid !important;
}
.red-orange--bb-100 {
  border-bottom: 100px #fd2626 solid !important;
}
.red-orange--by-100 {
  border-top: 100px #fd2626 solid !important;
  border-bottom: 100px #fd2626 solid !important;
}
.red-orange--bx-100 {
  border-right: 100px #fd2626 solid !important;
  border-left: 100px #fd2626 solid !important;
}
.rose-white--ba-1 {
  border: 1px #fff8f8 solid !important;
}
.rose-white--bt-1 {
  border-top: 1px #fff8f8 solid !important;
}
.rose-white--br-1 {
  border-right: 1px #fff8f8 solid !important;
}
.rose-white--bl-1 {
  border-left: 1px #fff8f8 solid !important;
}
.rose-white--bb-1 {
  border-bottom: 1px #fff8f8 solid !important;
}
.rose-white--by-1 {
  border-top: 1px #fff8f8 solid !important;
  border-bottom: 1px #fff8f8 solid !important;
}
.rose-white--bx-1 {
  border-right: 1px #fff8f8 solid !important;
  border-left: 1px #fff8f8 solid !important;
}
.rose-white--ba-2 {
  border: 2px #fff8f8 solid !important;
}
.rose-white--bt-2 {
  border-top: 2px #fff8f8 solid !important;
}
.rose-white--br-2 {
  border-right: 2px #fff8f8 solid !important;
}
.rose-white--bl-2 {
  border-left: 2px #fff8f8 solid !important;
}
.rose-white--bb-2 {
  border-bottom: 2px #fff8f8 solid !important;
}
.rose-white--by-2 {
  border-top: 2px #fff8f8 solid !important;
  border-bottom: 2px #fff8f8 solid !important;
}
.rose-white--bx-2 {
  border-right: 2px #fff8f8 solid !important;
  border-left: 2px #fff8f8 solid !important;
}
.rose-white--ba-3 {
  border: 3px #fff8f8 solid !important;
}
.rose-white--bt-3 {
  border-top: 3px #fff8f8 solid !important;
}
.rose-white--br-3 {
  border-right: 3px #fff8f8 solid !important;
}
.rose-white--bl-3 {
  border-left: 3px #fff8f8 solid !important;
}
.rose-white--bb-3 {
  border-bottom: 3px #fff8f8 solid !important;
}
.rose-white--by-3 {
  border-top: 3px #fff8f8 solid !important;
  border-bottom: 3px #fff8f8 solid !important;
}
.rose-white--bx-3 {
  border-right: 3px #fff8f8 solid !important;
  border-left: 3px #fff8f8 solid !important;
}
.rose-white--ba-4 {
  border: 4px #fff8f8 solid !important;
}
.rose-white--bt-4 {
  border-top: 4px #fff8f8 solid !important;
}
.rose-white--br-4 {
  border-right: 4px #fff8f8 solid !important;
}
.rose-white--bl-4 {
  border-left: 4px #fff8f8 solid !important;
}
.rose-white--bb-4 {
  border-bottom: 4px #fff8f8 solid !important;
}
.rose-white--by-4 {
  border-top: 4px #fff8f8 solid !important;
  border-bottom: 4px #fff8f8 solid !important;
}
.rose-white--bx-4 {
  border-right: 4px #fff8f8 solid !important;
  border-left: 4px #fff8f8 solid !important;
}
.rose-white--ba-5 {
  border: 5px #fff8f8 solid !important;
}
.rose-white--bt-5 {
  border-top: 5px #fff8f8 solid !important;
}
.rose-white--br-5 {
  border-right: 5px #fff8f8 solid !important;
}
.rose-white--bl-5 {
  border-left: 5px #fff8f8 solid !important;
}
.rose-white--bb-5 {
  border-bottom: 5px #fff8f8 solid !important;
}
.rose-white--by-5 {
  border-top: 5px #fff8f8 solid !important;
  border-bottom: 5px #fff8f8 solid !important;
}
.rose-white--bx-5 {
  border-right: 5px #fff8f8 solid !important;
  border-left: 5px #fff8f8 solid !important;
}
.rose-white--ba-6 {
  border: 6px #fff8f8 solid !important;
}
.rose-white--bt-6 {
  border-top: 6px #fff8f8 solid !important;
}
.rose-white--br-6 {
  border-right: 6px #fff8f8 solid !important;
}
.rose-white--bl-6 {
  border-left: 6px #fff8f8 solid !important;
}
.rose-white--bb-6 {
  border-bottom: 6px #fff8f8 solid !important;
}
.rose-white--by-6 {
  border-top: 6px #fff8f8 solid !important;
  border-bottom: 6px #fff8f8 solid !important;
}
.rose-white--bx-6 {
  border-right: 6px #fff8f8 solid !important;
  border-left: 6px #fff8f8 solid !important;
}
.rose-white--ba-7 {
  border: 7px #fff8f8 solid !important;
}
.rose-white--bt-7 {
  border-top: 7px #fff8f8 solid !important;
}
.rose-white--br-7 {
  border-right: 7px #fff8f8 solid !important;
}
.rose-white--bl-7 {
  border-left: 7px #fff8f8 solid !important;
}
.rose-white--bb-7 {
  border-bottom: 7px #fff8f8 solid !important;
}
.rose-white--by-7 {
  border-top: 7px #fff8f8 solid !important;
  border-bottom: 7px #fff8f8 solid !important;
}
.rose-white--bx-7 {
  border-right: 7px #fff8f8 solid !important;
  border-left: 7px #fff8f8 solid !important;
}
.rose-white--ba-8 {
  border: 8px #fff8f8 solid !important;
}
.rose-white--bt-8 {
  border-top: 8px #fff8f8 solid !important;
}
.rose-white--br-8 {
  border-right: 8px #fff8f8 solid !important;
}
.rose-white--bl-8 {
  border-left: 8px #fff8f8 solid !important;
}
.rose-white--bb-8 {
  border-bottom: 8px #fff8f8 solid !important;
}
.rose-white--by-8 {
  border-top: 8px #fff8f8 solid !important;
  border-bottom: 8px #fff8f8 solid !important;
}
.rose-white--bx-8 {
  border-right: 8px #fff8f8 solid !important;
  border-left: 8px #fff8f8 solid !important;
}
.rose-white--ba-9 {
  border: 9px #fff8f8 solid !important;
}
.rose-white--bt-9 {
  border-top: 9px #fff8f8 solid !important;
}
.rose-white--br-9 {
  border-right: 9px #fff8f8 solid !important;
}
.rose-white--bl-9 {
  border-left: 9px #fff8f8 solid !important;
}
.rose-white--bb-9 {
  border-bottom: 9px #fff8f8 solid !important;
}
.rose-white--by-9 {
  border-top: 9px #fff8f8 solid !important;
  border-bottom: 9px #fff8f8 solid !important;
}
.rose-white--bx-9 {
  border-right: 9px #fff8f8 solid !important;
  border-left: 9px #fff8f8 solid !important;
}
.rose-white--ba-10 {
  border: 10px #fff8f8 solid !important;
}
.rose-white--bt-10 {
  border-top: 10px #fff8f8 solid !important;
}
.rose-white--br-10 {
  border-right: 10px #fff8f8 solid !important;
}
.rose-white--bl-10 {
  border-left: 10px #fff8f8 solid !important;
}
.rose-white--bb-10 {
  border-bottom: 10px #fff8f8 solid !important;
}
.rose-white--by-10 {
  border-top: 10px #fff8f8 solid !important;
  border-bottom: 10px #fff8f8 solid !important;
}
.rose-white--bx-10 {
  border-right: 10px #fff8f8 solid !important;
  border-left: 10px #fff8f8 solid !important;
}
.rose-white--ba-11 {
  border: 11px #fff8f8 solid !important;
}
.rose-white--bt-11 {
  border-top: 11px #fff8f8 solid !important;
}
.rose-white--br-11 {
  border-right: 11px #fff8f8 solid !important;
}
.rose-white--bl-11 {
  border-left: 11px #fff8f8 solid !important;
}
.rose-white--bb-11 {
  border-bottom: 11px #fff8f8 solid !important;
}
.rose-white--by-11 {
  border-top: 11px #fff8f8 solid !important;
  border-bottom: 11px #fff8f8 solid !important;
}
.rose-white--bx-11 {
  border-right: 11px #fff8f8 solid !important;
  border-left: 11px #fff8f8 solid !important;
}
.rose-white--ba-12 {
  border: 12px #fff8f8 solid !important;
}
.rose-white--bt-12 {
  border-top: 12px #fff8f8 solid !important;
}
.rose-white--br-12 {
  border-right: 12px #fff8f8 solid !important;
}
.rose-white--bl-12 {
  border-left: 12px #fff8f8 solid !important;
}
.rose-white--bb-12 {
  border-bottom: 12px #fff8f8 solid !important;
}
.rose-white--by-12 {
  border-top: 12px #fff8f8 solid !important;
  border-bottom: 12px #fff8f8 solid !important;
}
.rose-white--bx-12 {
  border-right: 12px #fff8f8 solid !important;
  border-left: 12px #fff8f8 solid !important;
}
.rose-white--ba-13 {
  border: 13px #fff8f8 solid !important;
}
.rose-white--bt-13 {
  border-top: 13px #fff8f8 solid !important;
}
.rose-white--br-13 {
  border-right: 13px #fff8f8 solid !important;
}
.rose-white--bl-13 {
  border-left: 13px #fff8f8 solid !important;
}
.rose-white--bb-13 {
  border-bottom: 13px #fff8f8 solid !important;
}
.rose-white--by-13 {
  border-top: 13px #fff8f8 solid !important;
  border-bottom: 13px #fff8f8 solid !important;
}
.rose-white--bx-13 {
  border-right: 13px #fff8f8 solid !important;
  border-left: 13px #fff8f8 solid !important;
}
.rose-white--ba-14 {
  border: 14px #fff8f8 solid !important;
}
.rose-white--bt-14 {
  border-top: 14px #fff8f8 solid !important;
}
.rose-white--br-14 {
  border-right: 14px #fff8f8 solid !important;
}
.rose-white--bl-14 {
  border-left: 14px #fff8f8 solid !important;
}
.rose-white--bb-14 {
  border-bottom: 14px #fff8f8 solid !important;
}
.rose-white--by-14 {
  border-top: 14px #fff8f8 solid !important;
  border-bottom: 14px #fff8f8 solid !important;
}
.rose-white--bx-14 {
  border-right: 14px #fff8f8 solid !important;
  border-left: 14px #fff8f8 solid !important;
}
.rose-white--ba-15 {
  border: 15px #fff8f8 solid !important;
}
.rose-white--bt-15 {
  border-top: 15px #fff8f8 solid !important;
}
.rose-white--br-15 {
  border-right: 15px #fff8f8 solid !important;
}
.rose-white--bl-15 {
  border-left: 15px #fff8f8 solid !important;
}
.rose-white--bb-15 {
  border-bottom: 15px #fff8f8 solid !important;
}
.rose-white--by-15 {
  border-top: 15px #fff8f8 solid !important;
  border-bottom: 15px #fff8f8 solid !important;
}
.rose-white--bx-15 {
  border-right: 15px #fff8f8 solid !important;
  border-left: 15px #fff8f8 solid !important;
}
.rose-white--ba-16 {
  border: 16px #fff8f8 solid !important;
}
.rose-white--bt-16 {
  border-top: 16px #fff8f8 solid !important;
}
.rose-white--br-16 {
  border-right: 16px #fff8f8 solid !important;
}
.rose-white--bl-16 {
  border-left: 16px #fff8f8 solid !important;
}
.rose-white--bb-16 {
  border-bottom: 16px #fff8f8 solid !important;
}
.rose-white--by-16 {
  border-top: 16px #fff8f8 solid !important;
  border-bottom: 16px #fff8f8 solid !important;
}
.rose-white--bx-16 {
  border-right: 16px #fff8f8 solid !important;
  border-left: 16px #fff8f8 solid !important;
}
.rose-white--ba-17 {
  border: 17px #fff8f8 solid !important;
}
.rose-white--bt-17 {
  border-top: 17px #fff8f8 solid !important;
}
.rose-white--br-17 {
  border-right: 17px #fff8f8 solid !important;
}
.rose-white--bl-17 {
  border-left: 17px #fff8f8 solid !important;
}
.rose-white--bb-17 {
  border-bottom: 17px #fff8f8 solid !important;
}
.rose-white--by-17 {
  border-top: 17px #fff8f8 solid !important;
  border-bottom: 17px #fff8f8 solid !important;
}
.rose-white--bx-17 {
  border-right: 17px #fff8f8 solid !important;
  border-left: 17px #fff8f8 solid !important;
}
.rose-white--ba-18 {
  border: 18px #fff8f8 solid !important;
}
.rose-white--bt-18 {
  border-top: 18px #fff8f8 solid !important;
}
.rose-white--br-18 {
  border-right: 18px #fff8f8 solid !important;
}
.rose-white--bl-18 {
  border-left: 18px #fff8f8 solid !important;
}
.rose-white--bb-18 {
  border-bottom: 18px #fff8f8 solid !important;
}
.rose-white--by-18 {
  border-top: 18px #fff8f8 solid !important;
  border-bottom: 18px #fff8f8 solid !important;
}
.rose-white--bx-18 {
  border-right: 18px #fff8f8 solid !important;
  border-left: 18px #fff8f8 solid !important;
}
.rose-white--ba-19 {
  border: 19px #fff8f8 solid !important;
}
.rose-white--bt-19 {
  border-top: 19px #fff8f8 solid !important;
}
.rose-white--br-19 {
  border-right: 19px #fff8f8 solid !important;
}
.rose-white--bl-19 {
  border-left: 19px #fff8f8 solid !important;
}
.rose-white--bb-19 {
  border-bottom: 19px #fff8f8 solid !important;
}
.rose-white--by-19 {
  border-top: 19px #fff8f8 solid !important;
  border-bottom: 19px #fff8f8 solid !important;
}
.rose-white--bx-19 {
  border-right: 19px #fff8f8 solid !important;
  border-left: 19px #fff8f8 solid !important;
}
.rose-white--ba-20 {
  border: 20px #fff8f8 solid !important;
}
.rose-white--bt-20 {
  border-top: 20px #fff8f8 solid !important;
}
.rose-white--br-20 {
  border-right: 20px #fff8f8 solid !important;
}
.rose-white--bl-20 {
  border-left: 20px #fff8f8 solid !important;
}
.rose-white--bb-20 {
  border-bottom: 20px #fff8f8 solid !important;
}
.rose-white--by-20 {
  border-top: 20px #fff8f8 solid !important;
  border-bottom: 20px #fff8f8 solid !important;
}
.rose-white--bx-20 {
  border-right: 20px #fff8f8 solid !important;
  border-left: 20px #fff8f8 solid !important;
}
.rose-white--ba-21 {
  border: 21px #fff8f8 solid !important;
}
.rose-white--bt-21 {
  border-top: 21px #fff8f8 solid !important;
}
.rose-white--br-21 {
  border-right: 21px #fff8f8 solid !important;
}
.rose-white--bl-21 {
  border-left: 21px #fff8f8 solid !important;
}
.rose-white--bb-21 {
  border-bottom: 21px #fff8f8 solid !important;
}
.rose-white--by-21 {
  border-top: 21px #fff8f8 solid !important;
  border-bottom: 21px #fff8f8 solid !important;
}
.rose-white--bx-21 {
  border-right: 21px #fff8f8 solid !important;
  border-left: 21px #fff8f8 solid !important;
}
.rose-white--ba-22 {
  border: 22px #fff8f8 solid !important;
}
.rose-white--bt-22 {
  border-top: 22px #fff8f8 solid !important;
}
.rose-white--br-22 {
  border-right: 22px #fff8f8 solid !important;
}
.rose-white--bl-22 {
  border-left: 22px #fff8f8 solid !important;
}
.rose-white--bb-22 {
  border-bottom: 22px #fff8f8 solid !important;
}
.rose-white--by-22 {
  border-top: 22px #fff8f8 solid !important;
  border-bottom: 22px #fff8f8 solid !important;
}
.rose-white--bx-22 {
  border-right: 22px #fff8f8 solid !important;
  border-left: 22px #fff8f8 solid !important;
}
.rose-white--ba-23 {
  border: 23px #fff8f8 solid !important;
}
.rose-white--bt-23 {
  border-top: 23px #fff8f8 solid !important;
}
.rose-white--br-23 {
  border-right: 23px #fff8f8 solid !important;
}
.rose-white--bl-23 {
  border-left: 23px #fff8f8 solid !important;
}
.rose-white--bb-23 {
  border-bottom: 23px #fff8f8 solid !important;
}
.rose-white--by-23 {
  border-top: 23px #fff8f8 solid !important;
  border-bottom: 23px #fff8f8 solid !important;
}
.rose-white--bx-23 {
  border-right: 23px #fff8f8 solid !important;
  border-left: 23px #fff8f8 solid !important;
}
.rose-white--ba-24 {
  border: 24px #fff8f8 solid !important;
}
.rose-white--bt-24 {
  border-top: 24px #fff8f8 solid !important;
}
.rose-white--br-24 {
  border-right: 24px #fff8f8 solid !important;
}
.rose-white--bl-24 {
  border-left: 24px #fff8f8 solid !important;
}
.rose-white--bb-24 {
  border-bottom: 24px #fff8f8 solid !important;
}
.rose-white--by-24 {
  border-top: 24px #fff8f8 solid !important;
  border-bottom: 24px #fff8f8 solid !important;
}
.rose-white--bx-24 {
  border-right: 24px #fff8f8 solid !important;
  border-left: 24px #fff8f8 solid !important;
}
.rose-white--ba-25 {
  border: 25px #fff8f8 solid !important;
}
.rose-white--bt-25 {
  border-top: 25px #fff8f8 solid !important;
}
.rose-white--br-25 {
  border-right: 25px #fff8f8 solid !important;
}
.rose-white--bl-25 {
  border-left: 25px #fff8f8 solid !important;
}
.rose-white--bb-25 {
  border-bottom: 25px #fff8f8 solid !important;
}
.rose-white--by-25 {
  border-top: 25px #fff8f8 solid !important;
  border-bottom: 25px #fff8f8 solid !important;
}
.rose-white--bx-25 {
  border-right: 25px #fff8f8 solid !important;
  border-left: 25px #fff8f8 solid !important;
}
.rose-white--ba-26 {
  border: 26px #fff8f8 solid !important;
}
.rose-white--bt-26 {
  border-top: 26px #fff8f8 solid !important;
}
.rose-white--br-26 {
  border-right: 26px #fff8f8 solid !important;
}
.rose-white--bl-26 {
  border-left: 26px #fff8f8 solid !important;
}
.rose-white--bb-26 {
  border-bottom: 26px #fff8f8 solid !important;
}
.rose-white--by-26 {
  border-top: 26px #fff8f8 solid !important;
  border-bottom: 26px #fff8f8 solid !important;
}
.rose-white--bx-26 {
  border-right: 26px #fff8f8 solid !important;
  border-left: 26px #fff8f8 solid !important;
}
.rose-white--ba-27 {
  border: 27px #fff8f8 solid !important;
}
.rose-white--bt-27 {
  border-top: 27px #fff8f8 solid !important;
}
.rose-white--br-27 {
  border-right: 27px #fff8f8 solid !important;
}
.rose-white--bl-27 {
  border-left: 27px #fff8f8 solid !important;
}
.rose-white--bb-27 {
  border-bottom: 27px #fff8f8 solid !important;
}
.rose-white--by-27 {
  border-top: 27px #fff8f8 solid !important;
  border-bottom: 27px #fff8f8 solid !important;
}
.rose-white--bx-27 {
  border-right: 27px #fff8f8 solid !important;
  border-left: 27px #fff8f8 solid !important;
}
.rose-white--ba-28 {
  border: 28px #fff8f8 solid !important;
}
.rose-white--bt-28 {
  border-top: 28px #fff8f8 solid !important;
}
.rose-white--br-28 {
  border-right: 28px #fff8f8 solid !important;
}
.rose-white--bl-28 {
  border-left: 28px #fff8f8 solid !important;
}
.rose-white--bb-28 {
  border-bottom: 28px #fff8f8 solid !important;
}
.rose-white--by-28 {
  border-top: 28px #fff8f8 solid !important;
  border-bottom: 28px #fff8f8 solid !important;
}
.rose-white--bx-28 {
  border-right: 28px #fff8f8 solid !important;
  border-left: 28px #fff8f8 solid !important;
}
.rose-white--ba-29 {
  border: 29px #fff8f8 solid !important;
}
.rose-white--bt-29 {
  border-top: 29px #fff8f8 solid !important;
}
.rose-white--br-29 {
  border-right: 29px #fff8f8 solid !important;
}
.rose-white--bl-29 {
  border-left: 29px #fff8f8 solid !important;
}
.rose-white--bb-29 {
  border-bottom: 29px #fff8f8 solid !important;
}
.rose-white--by-29 {
  border-top: 29px #fff8f8 solid !important;
  border-bottom: 29px #fff8f8 solid !important;
}
.rose-white--bx-29 {
  border-right: 29px #fff8f8 solid !important;
  border-left: 29px #fff8f8 solid !important;
}
.rose-white--ba-30 {
  border: 30px #fff8f8 solid !important;
}
.rose-white--bt-30 {
  border-top: 30px #fff8f8 solid !important;
}
.rose-white--br-30 {
  border-right: 30px #fff8f8 solid !important;
}
.rose-white--bl-30 {
  border-left: 30px #fff8f8 solid !important;
}
.rose-white--bb-30 {
  border-bottom: 30px #fff8f8 solid !important;
}
.rose-white--by-30 {
  border-top: 30px #fff8f8 solid !important;
  border-bottom: 30px #fff8f8 solid !important;
}
.rose-white--bx-30 {
  border-right: 30px #fff8f8 solid !important;
  border-left: 30px #fff8f8 solid !important;
}
.rose-white--ba-31 {
  border: 31px #fff8f8 solid !important;
}
.rose-white--bt-31 {
  border-top: 31px #fff8f8 solid !important;
}
.rose-white--br-31 {
  border-right: 31px #fff8f8 solid !important;
}
.rose-white--bl-31 {
  border-left: 31px #fff8f8 solid !important;
}
.rose-white--bb-31 {
  border-bottom: 31px #fff8f8 solid !important;
}
.rose-white--by-31 {
  border-top: 31px #fff8f8 solid !important;
  border-bottom: 31px #fff8f8 solid !important;
}
.rose-white--bx-31 {
  border-right: 31px #fff8f8 solid !important;
  border-left: 31px #fff8f8 solid !important;
}
.rose-white--ba-32 {
  border: 32px #fff8f8 solid !important;
}
.rose-white--bt-32 {
  border-top: 32px #fff8f8 solid !important;
}
.rose-white--br-32 {
  border-right: 32px #fff8f8 solid !important;
}
.rose-white--bl-32 {
  border-left: 32px #fff8f8 solid !important;
}
.rose-white--bb-32 {
  border-bottom: 32px #fff8f8 solid !important;
}
.rose-white--by-32 {
  border-top: 32px #fff8f8 solid !important;
  border-bottom: 32px #fff8f8 solid !important;
}
.rose-white--bx-32 {
  border-right: 32px #fff8f8 solid !important;
  border-left: 32px #fff8f8 solid !important;
}
.rose-white--ba-33 {
  border: 33px #fff8f8 solid !important;
}
.rose-white--bt-33 {
  border-top: 33px #fff8f8 solid !important;
}
.rose-white--br-33 {
  border-right: 33px #fff8f8 solid !important;
}
.rose-white--bl-33 {
  border-left: 33px #fff8f8 solid !important;
}
.rose-white--bb-33 {
  border-bottom: 33px #fff8f8 solid !important;
}
.rose-white--by-33 {
  border-top: 33px #fff8f8 solid !important;
  border-bottom: 33px #fff8f8 solid !important;
}
.rose-white--bx-33 {
  border-right: 33px #fff8f8 solid !important;
  border-left: 33px #fff8f8 solid !important;
}
.rose-white--ba-34 {
  border: 34px #fff8f8 solid !important;
}
.rose-white--bt-34 {
  border-top: 34px #fff8f8 solid !important;
}
.rose-white--br-34 {
  border-right: 34px #fff8f8 solid !important;
}
.rose-white--bl-34 {
  border-left: 34px #fff8f8 solid !important;
}
.rose-white--bb-34 {
  border-bottom: 34px #fff8f8 solid !important;
}
.rose-white--by-34 {
  border-top: 34px #fff8f8 solid !important;
  border-bottom: 34px #fff8f8 solid !important;
}
.rose-white--bx-34 {
  border-right: 34px #fff8f8 solid !important;
  border-left: 34px #fff8f8 solid !important;
}
.rose-white--ba-35 {
  border: 35px #fff8f8 solid !important;
}
.rose-white--bt-35 {
  border-top: 35px #fff8f8 solid !important;
}
.rose-white--br-35 {
  border-right: 35px #fff8f8 solid !important;
}
.rose-white--bl-35 {
  border-left: 35px #fff8f8 solid !important;
}
.rose-white--bb-35 {
  border-bottom: 35px #fff8f8 solid !important;
}
.rose-white--by-35 {
  border-top: 35px #fff8f8 solid !important;
  border-bottom: 35px #fff8f8 solid !important;
}
.rose-white--bx-35 {
  border-right: 35px #fff8f8 solid !important;
  border-left: 35px #fff8f8 solid !important;
}
.rose-white--ba-36 {
  border: 36px #fff8f8 solid !important;
}
.rose-white--bt-36 {
  border-top: 36px #fff8f8 solid !important;
}
.rose-white--br-36 {
  border-right: 36px #fff8f8 solid !important;
}
.rose-white--bl-36 {
  border-left: 36px #fff8f8 solid !important;
}
.rose-white--bb-36 {
  border-bottom: 36px #fff8f8 solid !important;
}
.rose-white--by-36 {
  border-top: 36px #fff8f8 solid !important;
  border-bottom: 36px #fff8f8 solid !important;
}
.rose-white--bx-36 {
  border-right: 36px #fff8f8 solid !important;
  border-left: 36px #fff8f8 solid !important;
}
.rose-white--ba-37 {
  border: 37px #fff8f8 solid !important;
}
.rose-white--bt-37 {
  border-top: 37px #fff8f8 solid !important;
}
.rose-white--br-37 {
  border-right: 37px #fff8f8 solid !important;
}
.rose-white--bl-37 {
  border-left: 37px #fff8f8 solid !important;
}
.rose-white--bb-37 {
  border-bottom: 37px #fff8f8 solid !important;
}
.rose-white--by-37 {
  border-top: 37px #fff8f8 solid !important;
  border-bottom: 37px #fff8f8 solid !important;
}
.rose-white--bx-37 {
  border-right: 37px #fff8f8 solid !important;
  border-left: 37px #fff8f8 solid !important;
}
.rose-white--ba-38 {
  border: 38px #fff8f8 solid !important;
}
.rose-white--bt-38 {
  border-top: 38px #fff8f8 solid !important;
}
.rose-white--br-38 {
  border-right: 38px #fff8f8 solid !important;
}
.rose-white--bl-38 {
  border-left: 38px #fff8f8 solid !important;
}
.rose-white--bb-38 {
  border-bottom: 38px #fff8f8 solid !important;
}
.rose-white--by-38 {
  border-top: 38px #fff8f8 solid !important;
  border-bottom: 38px #fff8f8 solid !important;
}
.rose-white--bx-38 {
  border-right: 38px #fff8f8 solid !important;
  border-left: 38px #fff8f8 solid !important;
}
.rose-white--ba-39 {
  border: 39px #fff8f8 solid !important;
}
.rose-white--bt-39 {
  border-top: 39px #fff8f8 solid !important;
}
.rose-white--br-39 {
  border-right: 39px #fff8f8 solid !important;
}
.rose-white--bl-39 {
  border-left: 39px #fff8f8 solid !important;
}
.rose-white--bb-39 {
  border-bottom: 39px #fff8f8 solid !important;
}
.rose-white--by-39 {
  border-top: 39px #fff8f8 solid !important;
  border-bottom: 39px #fff8f8 solid !important;
}
.rose-white--bx-39 {
  border-right: 39px #fff8f8 solid !important;
  border-left: 39px #fff8f8 solid !important;
}
.rose-white--ba-40 {
  border: 40px #fff8f8 solid !important;
}
.rose-white--bt-40 {
  border-top: 40px #fff8f8 solid !important;
}
.rose-white--br-40 {
  border-right: 40px #fff8f8 solid !important;
}
.rose-white--bl-40 {
  border-left: 40px #fff8f8 solid !important;
}
.rose-white--bb-40 {
  border-bottom: 40px #fff8f8 solid !important;
}
.rose-white--by-40 {
  border-top: 40px #fff8f8 solid !important;
  border-bottom: 40px #fff8f8 solid !important;
}
.rose-white--bx-40 {
  border-right: 40px #fff8f8 solid !important;
  border-left: 40px #fff8f8 solid !important;
}
.rose-white--ba-41 {
  border: 41px #fff8f8 solid !important;
}
.rose-white--bt-41 {
  border-top: 41px #fff8f8 solid !important;
}
.rose-white--br-41 {
  border-right: 41px #fff8f8 solid !important;
}
.rose-white--bl-41 {
  border-left: 41px #fff8f8 solid !important;
}
.rose-white--bb-41 {
  border-bottom: 41px #fff8f8 solid !important;
}
.rose-white--by-41 {
  border-top: 41px #fff8f8 solid !important;
  border-bottom: 41px #fff8f8 solid !important;
}
.rose-white--bx-41 {
  border-right: 41px #fff8f8 solid !important;
  border-left: 41px #fff8f8 solid !important;
}
.rose-white--ba-42 {
  border: 42px #fff8f8 solid !important;
}
.rose-white--bt-42 {
  border-top: 42px #fff8f8 solid !important;
}
.rose-white--br-42 {
  border-right: 42px #fff8f8 solid !important;
}
.rose-white--bl-42 {
  border-left: 42px #fff8f8 solid !important;
}
.rose-white--bb-42 {
  border-bottom: 42px #fff8f8 solid !important;
}
.rose-white--by-42 {
  border-top: 42px #fff8f8 solid !important;
  border-bottom: 42px #fff8f8 solid !important;
}
.rose-white--bx-42 {
  border-right: 42px #fff8f8 solid !important;
  border-left: 42px #fff8f8 solid !important;
}
.rose-white--ba-43 {
  border: 43px #fff8f8 solid !important;
}
.rose-white--bt-43 {
  border-top: 43px #fff8f8 solid !important;
}
.rose-white--br-43 {
  border-right: 43px #fff8f8 solid !important;
}
.rose-white--bl-43 {
  border-left: 43px #fff8f8 solid !important;
}
.rose-white--bb-43 {
  border-bottom: 43px #fff8f8 solid !important;
}
.rose-white--by-43 {
  border-top: 43px #fff8f8 solid !important;
  border-bottom: 43px #fff8f8 solid !important;
}
.rose-white--bx-43 {
  border-right: 43px #fff8f8 solid !important;
  border-left: 43px #fff8f8 solid !important;
}
.rose-white--ba-44 {
  border: 44px #fff8f8 solid !important;
}
.rose-white--bt-44 {
  border-top: 44px #fff8f8 solid !important;
}
.rose-white--br-44 {
  border-right: 44px #fff8f8 solid !important;
}
.rose-white--bl-44 {
  border-left: 44px #fff8f8 solid !important;
}
.rose-white--bb-44 {
  border-bottom: 44px #fff8f8 solid !important;
}
.rose-white--by-44 {
  border-top: 44px #fff8f8 solid !important;
  border-bottom: 44px #fff8f8 solid !important;
}
.rose-white--bx-44 {
  border-right: 44px #fff8f8 solid !important;
  border-left: 44px #fff8f8 solid !important;
}
.rose-white--ba-45 {
  border: 45px #fff8f8 solid !important;
}
.rose-white--bt-45 {
  border-top: 45px #fff8f8 solid !important;
}
.rose-white--br-45 {
  border-right: 45px #fff8f8 solid !important;
}
.rose-white--bl-45 {
  border-left: 45px #fff8f8 solid !important;
}
.rose-white--bb-45 {
  border-bottom: 45px #fff8f8 solid !important;
}
.rose-white--by-45 {
  border-top: 45px #fff8f8 solid !important;
  border-bottom: 45px #fff8f8 solid !important;
}
.rose-white--bx-45 {
  border-right: 45px #fff8f8 solid !important;
  border-left: 45px #fff8f8 solid !important;
}
.rose-white--ba-46 {
  border: 46px #fff8f8 solid !important;
}
.rose-white--bt-46 {
  border-top: 46px #fff8f8 solid !important;
}
.rose-white--br-46 {
  border-right: 46px #fff8f8 solid !important;
}
.rose-white--bl-46 {
  border-left: 46px #fff8f8 solid !important;
}
.rose-white--bb-46 {
  border-bottom: 46px #fff8f8 solid !important;
}
.rose-white--by-46 {
  border-top: 46px #fff8f8 solid !important;
  border-bottom: 46px #fff8f8 solid !important;
}
.rose-white--bx-46 {
  border-right: 46px #fff8f8 solid !important;
  border-left: 46px #fff8f8 solid !important;
}
.rose-white--ba-47 {
  border: 47px #fff8f8 solid !important;
}
.rose-white--bt-47 {
  border-top: 47px #fff8f8 solid !important;
}
.rose-white--br-47 {
  border-right: 47px #fff8f8 solid !important;
}
.rose-white--bl-47 {
  border-left: 47px #fff8f8 solid !important;
}
.rose-white--bb-47 {
  border-bottom: 47px #fff8f8 solid !important;
}
.rose-white--by-47 {
  border-top: 47px #fff8f8 solid !important;
  border-bottom: 47px #fff8f8 solid !important;
}
.rose-white--bx-47 {
  border-right: 47px #fff8f8 solid !important;
  border-left: 47px #fff8f8 solid !important;
}
.rose-white--ba-48 {
  border: 48px #fff8f8 solid !important;
}
.rose-white--bt-48 {
  border-top: 48px #fff8f8 solid !important;
}
.rose-white--br-48 {
  border-right: 48px #fff8f8 solid !important;
}
.rose-white--bl-48 {
  border-left: 48px #fff8f8 solid !important;
}
.rose-white--bb-48 {
  border-bottom: 48px #fff8f8 solid !important;
}
.rose-white--by-48 {
  border-top: 48px #fff8f8 solid !important;
  border-bottom: 48px #fff8f8 solid !important;
}
.rose-white--bx-48 {
  border-right: 48px #fff8f8 solid !important;
  border-left: 48px #fff8f8 solid !important;
}
.rose-white--ba-49 {
  border: 49px #fff8f8 solid !important;
}
.rose-white--bt-49 {
  border-top: 49px #fff8f8 solid !important;
}
.rose-white--br-49 {
  border-right: 49px #fff8f8 solid !important;
}
.rose-white--bl-49 {
  border-left: 49px #fff8f8 solid !important;
}
.rose-white--bb-49 {
  border-bottom: 49px #fff8f8 solid !important;
}
.rose-white--by-49 {
  border-top: 49px #fff8f8 solid !important;
  border-bottom: 49px #fff8f8 solid !important;
}
.rose-white--bx-49 {
  border-right: 49px #fff8f8 solid !important;
  border-left: 49px #fff8f8 solid !important;
}
.rose-white--ba-50 {
  border: 50px #fff8f8 solid !important;
}
.rose-white--bt-50 {
  border-top: 50px #fff8f8 solid !important;
}
.rose-white--br-50 {
  border-right: 50px #fff8f8 solid !important;
}
.rose-white--bl-50 {
  border-left: 50px #fff8f8 solid !important;
}
.rose-white--bb-50 {
  border-bottom: 50px #fff8f8 solid !important;
}
.rose-white--by-50 {
  border-top: 50px #fff8f8 solid !important;
  border-bottom: 50px #fff8f8 solid !important;
}
.rose-white--bx-50 {
  border-right: 50px #fff8f8 solid !important;
  border-left: 50px #fff8f8 solid !important;
}
.rose-white--ba-51 {
  border: 51px #fff8f8 solid !important;
}
.rose-white--bt-51 {
  border-top: 51px #fff8f8 solid !important;
}
.rose-white--br-51 {
  border-right: 51px #fff8f8 solid !important;
}
.rose-white--bl-51 {
  border-left: 51px #fff8f8 solid !important;
}
.rose-white--bb-51 {
  border-bottom: 51px #fff8f8 solid !important;
}
.rose-white--by-51 {
  border-top: 51px #fff8f8 solid !important;
  border-bottom: 51px #fff8f8 solid !important;
}
.rose-white--bx-51 {
  border-right: 51px #fff8f8 solid !important;
  border-left: 51px #fff8f8 solid !important;
}
.rose-white--ba-52 {
  border: 52px #fff8f8 solid !important;
}
.rose-white--bt-52 {
  border-top: 52px #fff8f8 solid !important;
}
.rose-white--br-52 {
  border-right: 52px #fff8f8 solid !important;
}
.rose-white--bl-52 {
  border-left: 52px #fff8f8 solid !important;
}
.rose-white--bb-52 {
  border-bottom: 52px #fff8f8 solid !important;
}
.rose-white--by-52 {
  border-top: 52px #fff8f8 solid !important;
  border-bottom: 52px #fff8f8 solid !important;
}
.rose-white--bx-52 {
  border-right: 52px #fff8f8 solid !important;
  border-left: 52px #fff8f8 solid !important;
}
.rose-white--ba-53 {
  border: 53px #fff8f8 solid !important;
}
.rose-white--bt-53 {
  border-top: 53px #fff8f8 solid !important;
}
.rose-white--br-53 {
  border-right: 53px #fff8f8 solid !important;
}
.rose-white--bl-53 {
  border-left: 53px #fff8f8 solid !important;
}
.rose-white--bb-53 {
  border-bottom: 53px #fff8f8 solid !important;
}
.rose-white--by-53 {
  border-top: 53px #fff8f8 solid !important;
  border-bottom: 53px #fff8f8 solid !important;
}
.rose-white--bx-53 {
  border-right: 53px #fff8f8 solid !important;
  border-left: 53px #fff8f8 solid !important;
}
.rose-white--ba-54 {
  border: 54px #fff8f8 solid !important;
}
.rose-white--bt-54 {
  border-top: 54px #fff8f8 solid !important;
}
.rose-white--br-54 {
  border-right: 54px #fff8f8 solid !important;
}
.rose-white--bl-54 {
  border-left: 54px #fff8f8 solid !important;
}
.rose-white--bb-54 {
  border-bottom: 54px #fff8f8 solid !important;
}
.rose-white--by-54 {
  border-top: 54px #fff8f8 solid !important;
  border-bottom: 54px #fff8f8 solid !important;
}
.rose-white--bx-54 {
  border-right: 54px #fff8f8 solid !important;
  border-left: 54px #fff8f8 solid !important;
}
.rose-white--ba-55 {
  border: 55px #fff8f8 solid !important;
}
.rose-white--bt-55 {
  border-top: 55px #fff8f8 solid !important;
}
.rose-white--br-55 {
  border-right: 55px #fff8f8 solid !important;
}
.rose-white--bl-55 {
  border-left: 55px #fff8f8 solid !important;
}
.rose-white--bb-55 {
  border-bottom: 55px #fff8f8 solid !important;
}
.rose-white--by-55 {
  border-top: 55px #fff8f8 solid !important;
  border-bottom: 55px #fff8f8 solid !important;
}
.rose-white--bx-55 {
  border-right: 55px #fff8f8 solid !important;
  border-left: 55px #fff8f8 solid !important;
}
.rose-white--ba-56 {
  border: 56px #fff8f8 solid !important;
}
.rose-white--bt-56 {
  border-top: 56px #fff8f8 solid !important;
}
.rose-white--br-56 {
  border-right: 56px #fff8f8 solid !important;
}
.rose-white--bl-56 {
  border-left: 56px #fff8f8 solid !important;
}
.rose-white--bb-56 {
  border-bottom: 56px #fff8f8 solid !important;
}
.rose-white--by-56 {
  border-top: 56px #fff8f8 solid !important;
  border-bottom: 56px #fff8f8 solid !important;
}
.rose-white--bx-56 {
  border-right: 56px #fff8f8 solid !important;
  border-left: 56px #fff8f8 solid !important;
}
.rose-white--ba-57 {
  border: 57px #fff8f8 solid !important;
}
.rose-white--bt-57 {
  border-top: 57px #fff8f8 solid !important;
}
.rose-white--br-57 {
  border-right: 57px #fff8f8 solid !important;
}
.rose-white--bl-57 {
  border-left: 57px #fff8f8 solid !important;
}
.rose-white--bb-57 {
  border-bottom: 57px #fff8f8 solid !important;
}
.rose-white--by-57 {
  border-top: 57px #fff8f8 solid !important;
  border-bottom: 57px #fff8f8 solid !important;
}
.rose-white--bx-57 {
  border-right: 57px #fff8f8 solid !important;
  border-left: 57px #fff8f8 solid !important;
}
.rose-white--ba-58 {
  border: 58px #fff8f8 solid !important;
}
.rose-white--bt-58 {
  border-top: 58px #fff8f8 solid !important;
}
.rose-white--br-58 {
  border-right: 58px #fff8f8 solid !important;
}
.rose-white--bl-58 {
  border-left: 58px #fff8f8 solid !important;
}
.rose-white--bb-58 {
  border-bottom: 58px #fff8f8 solid !important;
}
.rose-white--by-58 {
  border-top: 58px #fff8f8 solid !important;
  border-bottom: 58px #fff8f8 solid !important;
}
.rose-white--bx-58 {
  border-right: 58px #fff8f8 solid !important;
  border-left: 58px #fff8f8 solid !important;
}
.rose-white--ba-59 {
  border: 59px #fff8f8 solid !important;
}
.rose-white--bt-59 {
  border-top: 59px #fff8f8 solid !important;
}
.rose-white--br-59 {
  border-right: 59px #fff8f8 solid !important;
}
.rose-white--bl-59 {
  border-left: 59px #fff8f8 solid !important;
}
.rose-white--bb-59 {
  border-bottom: 59px #fff8f8 solid !important;
}
.rose-white--by-59 {
  border-top: 59px #fff8f8 solid !important;
  border-bottom: 59px #fff8f8 solid !important;
}
.rose-white--bx-59 {
  border-right: 59px #fff8f8 solid !important;
  border-left: 59px #fff8f8 solid !important;
}
.rose-white--ba-60 {
  border: 60px #fff8f8 solid !important;
}
.rose-white--bt-60 {
  border-top: 60px #fff8f8 solid !important;
}
.rose-white--br-60 {
  border-right: 60px #fff8f8 solid !important;
}
.rose-white--bl-60 {
  border-left: 60px #fff8f8 solid !important;
}
.rose-white--bb-60 {
  border-bottom: 60px #fff8f8 solid !important;
}
.rose-white--by-60 {
  border-top: 60px #fff8f8 solid !important;
  border-bottom: 60px #fff8f8 solid !important;
}
.rose-white--bx-60 {
  border-right: 60px #fff8f8 solid !important;
  border-left: 60px #fff8f8 solid !important;
}
.rose-white--ba-61 {
  border: 61px #fff8f8 solid !important;
}
.rose-white--bt-61 {
  border-top: 61px #fff8f8 solid !important;
}
.rose-white--br-61 {
  border-right: 61px #fff8f8 solid !important;
}
.rose-white--bl-61 {
  border-left: 61px #fff8f8 solid !important;
}
.rose-white--bb-61 {
  border-bottom: 61px #fff8f8 solid !important;
}
.rose-white--by-61 {
  border-top: 61px #fff8f8 solid !important;
  border-bottom: 61px #fff8f8 solid !important;
}
.rose-white--bx-61 {
  border-right: 61px #fff8f8 solid !important;
  border-left: 61px #fff8f8 solid !important;
}
.rose-white--ba-62 {
  border: 62px #fff8f8 solid !important;
}
.rose-white--bt-62 {
  border-top: 62px #fff8f8 solid !important;
}
.rose-white--br-62 {
  border-right: 62px #fff8f8 solid !important;
}
.rose-white--bl-62 {
  border-left: 62px #fff8f8 solid !important;
}
.rose-white--bb-62 {
  border-bottom: 62px #fff8f8 solid !important;
}
.rose-white--by-62 {
  border-top: 62px #fff8f8 solid !important;
  border-bottom: 62px #fff8f8 solid !important;
}
.rose-white--bx-62 {
  border-right: 62px #fff8f8 solid !important;
  border-left: 62px #fff8f8 solid !important;
}
.rose-white--ba-63 {
  border: 63px #fff8f8 solid !important;
}
.rose-white--bt-63 {
  border-top: 63px #fff8f8 solid !important;
}
.rose-white--br-63 {
  border-right: 63px #fff8f8 solid !important;
}
.rose-white--bl-63 {
  border-left: 63px #fff8f8 solid !important;
}
.rose-white--bb-63 {
  border-bottom: 63px #fff8f8 solid !important;
}
.rose-white--by-63 {
  border-top: 63px #fff8f8 solid !important;
  border-bottom: 63px #fff8f8 solid !important;
}
.rose-white--bx-63 {
  border-right: 63px #fff8f8 solid !important;
  border-left: 63px #fff8f8 solid !important;
}
.rose-white--ba-64 {
  border: 64px #fff8f8 solid !important;
}
.rose-white--bt-64 {
  border-top: 64px #fff8f8 solid !important;
}
.rose-white--br-64 {
  border-right: 64px #fff8f8 solid !important;
}
.rose-white--bl-64 {
  border-left: 64px #fff8f8 solid !important;
}
.rose-white--bb-64 {
  border-bottom: 64px #fff8f8 solid !important;
}
.rose-white--by-64 {
  border-top: 64px #fff8f8 solid !important;
  border-bottom: 64px #fff8f8 solid !important;
}
.rose-white--bx-64 {
  border-right: 64px #fff8f8 solid !important;
  border-left: 64px #fff8f8 solid !important;
}
.rose-white--ba-65 {
  border: 65px #fff8f8 solid !important;
}
.rose-white--bt-65 {
  border-top: 65px #fff8f8 solid !important;
}
.rose-white--br-65 {
  border-right: 65px #fff8f8 solid !important;
}
.rose-white--bl-65 {
  border-left: 65px #fff8f8 solid !important;
}
.rose-white--bb-65 {
  border-bottom: 65px #fff8f8 solid !important;
}
.rose-white--by-65 {
  border-top: 65px #fff8f8 solid !important;
  border-bottom: 65px #fff8f8 solid !important;
}
.rose-white--bx-65 {
  border-right: 65px #fff8f8 solid !important;
  border-left: 65px #fff8f8 solid !important;
}
.rose-white--ba-66 {
  border: 66px #fff8f8 solid !important;
}
.rose-white--bt-66 {
  border-top: 66px #fff8f8 solid !important;
}
.rose-white--br-66 {
  border-right: 66px #fff8f8 solid !important;
}
.rose-white--bl-66 {
  border-left: 66px #fff8f8 solid !important;
}
.rose-white--bb-66 {
  border-bottom: 66px #fff8f8 solid !important;
}
.rose-white--by-66 {
  border-top: 66px #fff8f8 solid !important;
  border-bottom: 66px #fff8f8 solid !important;
}
.rose-white--bx-66 {
  border-right: 66px #fff8f8 solid !important;
  border-left: 66px #fff8f8 solid !important;
}
.rose-white--ba-67 {
  border: 67px #fff8f8 solid !important;
}
.rose-white--bt-67 {
  border-top: 67px #fff8f8 solid !important;
}
.rose-white--br-67 {
  border-right: 67px #fff8f8 solid !important;
}
.rose-white--bl-67 {
  border-left: 67px #fff8f8 solid !important;
}
.rose-white--bb-67 {
  border-bottom: 67px #fff8f8 solid !important;
}
.rose-white--by-67 {
  border-top: 67px #fff8f8 solid !important;
  border-bottom: 67px #fff8f8 solid !important;
}
.rose-white--bx-67 {
  border-right: 67px #fff8f8 solid !important;
  border-left: 67px #fff8f8 solid !important;
}
.rose-white--ba-68 {
  border: 68px #fff8f8 solid !important;
}
.rose-white--bt-68 {
  border-top: 68px #fff8f8 solid !important;
}
.rose-white--br-68 {
  border-right: 68px #fff8f8 solid !important;
}
.rose-white--bl-68 {
  border-left: 68px #fff8f8 solid !important;
}
.rose-white--bb-68 {
  border-bottom: 68px #fff8f8 solid !important;
}
.rose-white--by-68 {
  border-top: 68px #fff8f8 solid !important;
  border-bottom: 68px #fff8f8 solid !important;
}
.rose-white--bx-68 {
  border-right: 68px #fff8f8 solid !important;
  border-left: 68px #fff8f8 solid !important;
}
.rose-white--ba-69 {
  border: 69px #fff8f8 solid !important;
}
.rose-white--bt-69 {
  border-top: 69px #fff8f8 solid !important;
}
.rose-white--br-69 {
  border-right: 69px #fff8f8 solid !important;
}
.rose-white--bl-69 {
  border-left: 69px #fff8f8 solid !important;
}
.rose-white--bb-69 {
  border-bottom: 69px #fff8f8 solid !important;
}
.rose-white--by-69 {
  border-top: 69px #fff8f8 solid !important;
  border-bottom: 69px #fff8f8 solid !important;
}
.rose-white--bx-69 {
  border-right: 69px #fff8f8 solid !important;
  border-left: 69px #fff8f8 solid !important;
}
.rose-white--ba-70 {
  border: 70px #fff8f8 solid !important;
}
.rose-white--bt-70 {
  border-top: 70px #fff8f8 solid !important;
}
.rose-white--br-70 {
  border-right: 70px #fff8f8 solid !important;
}
.rose-white--bl-70 {
  border-left: 70px #fff8f8 solid !important;
}
.rose-white--bb-70 {
  border-bottom: 70px #fff8f8 solid !important;
}
.rose-white--by-70 {
  border-top: 70px #fff8f8 solid !important;
  border-bottom: 70px #fff8f8 solid !important;
}
.rose-white--bx-70 {
  border-right: 70px #fff8f8 solid !important;
  border-left: 70px #fff8f8 solid !important;
}
.rose-white--ba-71 {
  border: 71px #fff8f8 solid !important;
}
.rose-white--bt-71 {
  border-top: 71px #fff8f8 solid !important;
}
.rose-white--br-71 {
  border-right: 71px #fff8f8 solid !important;
}
.rose-white--bl-71 {
  border-left: 71px #fff8f8 solid !important;
}
.rose-white--bb-71 {
  border-bottom: 71px #fff8f8 solid !important;
}
.rose-white--by-71 {
  border-top: 71px #fff8f8 solid !important;
  border-bottom: 71px #fff8f8 solid !important;
}
.rose-white--bx-71 {
  border-right: 71px #fff8f8 solid !important;
  border-left: 71px #fff8f8 solid !important;
}
.rose-white--ba-72 {
  border: 72px #fff8f8 solid !important;
}
.rose-white--bt-72 {
  border-top: 72px #fff8f8 solid !important;
}
.rose-white--br-72 {
  border-right: 72px #fff8f8 solid !important;
}
.rose-white--bl-72 {
  border-left: 72px #fff8f8 solid !important;
}
.rose-white--bb-72 {
  border-bottom: 72px #fff8f8 solid !important;
}
.rose-white--by-72 {
  border-top: 72px #fff8f8 solid !important;
  border-bottom: 72px #fff8f8 solid !important;
}
.rose-white--bx-72 {
  border-right: 72px #fff8f8 solid !important;
  border-left: 72px #fff8f8 solid !important;
}
.rose-white--ba-73 {
  border: 73px #fff8f8 solid !important;
}
.rose-white--bt-73 {
  border-top: 73px #fff8f8 solid !important;
}
.rose-white--br-73 {
  border-right: 73px #fff8f8 solid !important;
}
.rose-white--bl-73 {
  border-left: 73px #fff8f8 solid !important;
}
.rose-white--bb-73 {
  border-bottom: 73px #fff8f8 solid !important;
}
.rose-white--by-73 {
  border-top: 73px #fff8f8 solid !important;
  border-bottom: 73px #fff8f8 solid !important;
}
.rose-white--bx-73 {
  border-right: 73px #fff8f8 solid !important;
  border-left: 73px #fff8f8 solid !important;
}
.rose-white--ba-74 {
  border: 74px #fff8f8 solid !important;
}
.rose-white--bt-74 {
  border-top: 74px #fff8f8 solid !important;
}
.rose-white--br-74 {
  border-right: 74px #fff8f8 solid !important;
}
.rose-white--bl-74 {
  border-left: 74px #fff8f8 solid !important;
}
.rose-white--bb-74 {
  border-bottom: 74px #fff8f8 solid !important;
}
.rose-white--by-74 {
  border-top: 74px #fff8f8 solid !important;
  border-bottom: 74px #fff8f8 solid !important;
}
.rose-white--bx-74 {
  border-right: 74px #fff8f8 solid !important;
  border-left: 74px #fff8f8 solid !important;
}
.rose-white--ba-75 {
  border: 75px #fff8f8 solid !important;
}
.rose-white--bt-75 {
  border-top: 75px #fff8f8 solid !important;
}
.rose-white--br-75 {
  border-right: 75px #fff8f8 solid !important;
}
.rose-white--bl-75 {
  border-left: 75px #fff8f8 solid !important;
}
.rose-white--bb-75 {
  border-bottom: 75px #fff8f8 solid !important;
}
.rose-white--by-75 {
  border-top: 75px #fff8f8 solid !important;
  border-bottom: 75px #fff8f8 solid !important;
}
.rose-white--bx-75 {
  border-right: 75px #fff8f8 solid !important;
  border-left: 75px #fff8f8 solid !important;
}
.rose-white--ba-76 {
  border: 76px #fff8f8 solid !important;
}
.rose-white--bt-76 {
  border-top: 76px #fff8f8 solid !important;
}
.rose-white--br-76 {
  border-right: 76px #fff8f8 solid !important;
}
.rose-white--bl-76 {
  border-left: 76px #fff8f8 solid !important;
}
.rose-white--bb-76 {
  border-bottom: 76px #fff8f8 solid !important;
}
.rose-white--by-76 {
  border-top: 76px #fff8f8 solid !important;
  border-bottom: 76px #fff8f8 solid !important;
}
.rose-white--bx-76 {
  border-right: 76px #fff8f8 solid !important;
  border-left: 76px #fff8f8 solid !important;
}
.rose-white--ba-77 {
  border: 77px #fff8f8 solid !important;
}
.rose-white--bt-77 {
  border-top: 77px #fff8f8 solid !important;
}
.rose-white--br-77 {
  border-right: 77px #fff8f8 solid !important;
}
.rose-white--bl-77 {
  border-left: 77px #fff8f8 solid !important;
}
.rose-white--bb-77 {
  border-bottom: 77px #fff8f8 solid !important;
}
.rose-white--by-77 {
  border-top: 77px #fff8f8 solid !important;
  border-bottom: 77px #fff8f8 solid !important;
}
.rose-white--bx-77 {
  border-right: 77px #fff8f8 solid !important;
  border-left: 77px #fff8f8 solid !important;
}
.rose-white--ba-78 {
  border: 78px #fff8f8 solid !important;
}
.rose-white--bt-78 {
  border-top: 78px #fff8f8 solid !important;
}
.rose-white--br-78 {
  border-right: 78px #fff8f8 solid !important;
}
.rose-white--bl-78 {
  border-left: 78px #fff8f8 solid !important;
}
.rose-white--bb-78 {
  border-bottom: 78px #fff8f8 solid !important;
}
.rose-white--by-78 {
  border-top: 78px #fff8f8 solid !important;
  border-bottom: 78px #fff8f8 solid !important;
}
.rose-white--bx-78 {
  border-right: 78px #fff8f8 solid !important;
  border-left: 78px #fff8f8 solid !important;
}
.rose-white--ba-79 {
  border: 79px #fff8f8 solid !important;
}
.rose-white--bt-79 {
  border-top: 79px #fff8f8 solid !important;
}
.rose-white--br-79 {
  border-right: 79px #fff8f8 solid !important;
}
.rose-white--bl-79 {
  border-left: 79px #fff8f8 solid !important;
}
.rose-white--bb-79 {
  border-bottom: 79px #fff8f8 solid !important;
}
.rose-white--by-79 {
  border-top: 79px #fff8f8 solid !important;
  border-bottom: 79px #fff8f8 solid !important;
}
.rose-white--bx-79 {
  border-right: 79px #fff8f8 solid !important;
  border-left: 79px #fff8f8 solid !important;
}
.rose-white--ba-80 {
  border: 80px #fff8f8 solid !important;
}
.rose-white--bt-80 {
  border-top: 80px #fff8f8 solid !important;
}
.rose-white--br-80 {
  border-right: 80px #fff8f8 solid !important;
}
.rose-white--bl-80 {
  border-left: 80px #fff8f8 solid !important;
}
.rose-white--bb-80 {
  border-bottom: 80px #fff8f8 solid !important;
}
.rose-white--by-80 {
  border-top: 80px #fff8f8 solid !important;
  border-bottom: 80px #fff8f8 solid !important;
}
.rose-white--bx-80 {
  border-right: 80px #fff8f8 solid !important;
  border-left: 80px #fff8f8 solid !important;
}
.rose-white--ba-81 {
  border: 81px #fff8f8 solid !important;
}
.rose-white--bt-81 {
  border-top: 81px #fff8f8 solid !important;
}
.rose-white--br-81 {
  border-right: 81px #fff8f8 solid !important;
}
.rose-white--bl-81 {
  border-left: 81px #fff8f8 solid !important;
}
.rose-white--bb-81 {
  border-bottom: 81px #fff8f8 solid !important;
}
.rose-white--by-81 {
  border-top: 81px #fff8f8 solid !important;
  border-bottom: 81px #fff8f8 solid !important;
}
.rose-white--bx-81 {
  border-right: 81px #fff8f8 solid !important;
  border-left: 81px #fff8f8 solid !important;
}
.rose-white--ba-82 {
  border: 82px #fff8f8 solid !important;
}
.rose-white--bt-82 {
  border-top: 82px #fff8f8 solid !important;
}
.rose-white--br-82 {
  border-right: 82px #fff8f8 solid !important;
}
.rose-white--bl-82 {
  border-left: 82px #fff8f8 solid !important;
}
.rose-white--bb-82 {
  border-bottom: 82px #fff8f8 solid !important;
}
.rose-white--by-82 {
  border-top: 82px #fff8f8 solid !important;
  border-bottom: 82px #fff8f8 solid !important;
}
.rose-white--bx-82 {
  border-right: 82px #fff8f8 solid !important;
  border-left: 82px #fff8f8 solid !important;
}
.rose-white--ba-83 {
  border: 83px #fff8f8 solid !important;
}
.rose-white--bt-83 {
  border-top: 83px #fff8f8 solid !important;
}
.rose-white--br-83 {
  border-right: 83px #fff8f8 solid !important;
}
.rose-white--bl-83 {
  border-left: 83px #fff8f8 solid !important;
}
.rose-white--bb-83 {
  border-bottom: 83px #fff8f8 solid !important;
}
.rose-white--by-83 {
  border-top: 83px #fff8f8 solid !important;
  border-bottom: 83px #fff8f8 solid !important;
}
.rose-white--bx-83 {
  border-right: 83px #fff8f8 solid !important;
  border-left: 83px #fff8f8 solid !important;
}
.rose-white--ba-84 {
  border: 84px #fff8f8 solid !important;
}
.rose-white--bt-84 {
  border-top: 84px #fff8f8 solid !important;
}
.rose-white--br-84 {
  border-right: 84px #fff8f8 solid !important;
}
.rose-white--bl-84 {
  border-left: 84px #fff8f8 solid !important;
}
.rose-white--bb-84 {
  border-bottom: 84px #fff8f8 solid !important;
}
.rose-white--by-84 {
  border-top: 84px #fff8f8 solid !important;
  border-bottom: 84px #fff8f8 solid !important;
}
.rose-white--bx-84 {
  border-right: 84px #fff8f8 solid !important;
  border-left: 84px #fff8f8 solid !important;
}
.rose-white--ba-85 {
  border: 85px #fff8f8 solid !important;
}
.rose-white--bt-85 {
  border-top: 85px #fff8f8 solid !important;
}
.rose-white--br-85 {
  border-right: 85px #fff8f8 solid !important;
}
.rose-white--bl-85 {
  border-left: 85px #fff8f8 solid !important;
}
.rose-white--bb-85 {
  border-bottom: 85px #fff8f8 solid !important;
}
.rose-white--by-85 {
  border-top: 85px #fff8f8 solid !important;
  border-bottom: 85px #fff8f8 solid !important;
}
.rose-white--bx-85 {
  border-right: 85px #fff8f8 solid !important;
  border-left: 85px #fff8f8 solid !important;
}
.rose-white--ba-86 {
  border: 86px #fff8f8 solid !important;
}
.rose-white--bt-86 {
  border-top: 86px #fff8f8 solid !important;
}
.rose-white--br-86 {
  border-right: 86px #fff8f8 solid !important;
}
.rose-white--bl-86 {
  border-left: 86px #fff8f8 solid !important;
}
.rose-white--bb-86 {
  border-bottom: 86px #fff8f8 solid !important;
}
.rose-white--by-86 {
  border-top: 86px #fff8f8 solid !important;
  border-bottom: 86px #fff8f8 solid !important;
}
.rose-white--bx-86 {
  border-right: 86px #fff8f8 solid !important;
  border-left: 86px #fff8f8 solid !important;
}
.rose-white--ba-87 {
  border: 87px #fff8f8 solid !important;
}
.rose-white--bt-87 {
  border-top: 87px #fff8f8 solid !important;
}
.rose-white--br-87 {
  border-right: 87px #fff8f8 solid !important;
}
.rose-white--bl-87 {
  border-left: 87px #fff8f8 solid !important;
}
.rose-white--bb-87 {
  border-bottom: 87px #fff8f8 solid !important;
}
.rose-white--by-87 {
  border-top: 87px #fff8f8 solid !important;
  border-bottom: 87px #fff8f8 solid !important;
}
.rose-white--bx-87 {
  border-right: 87px #fff8f8 solid !important;
  border-left: 87px #fff8f8 solid !important;
}
.rose-white--ba-88 {
  border: 88px #fff8f8 solid !important;
}
.rose-white--bt-88 {
  border-top: 88px #fff8f8 solid !important;
}
.rose-white--br-88 {
  border-right: 88px #fff8f8 solid !important;
}
.rose-white--bl-88 {
  border-left: 88px #fff8f8 solid !important;
}
.rose-white--bb-88 {
  border-bottom: 88px #fff8f8 solid !important;
}
.rose-white--by-88 {
  border-top: 88px #fff8f8 solid !important;
  border-bottom: 88px #fff8f8 solid !important;
}
.rose-white--bx-88 {
  border-right: 88px #fff8f8 solid !important;
  border-left: 88px #fff8f8 solid !important;
}
.rose-white--ba-89 {
  border: 89px #fff8f8 solid !important;
}
.rose-white--bt-89 {
  border-top: 89px #fff8f8 solid !important;
}
.rose-white--br-89 {
  border-right: 89px #fff8f8 solid !important;
}
.rose-white--bl-89 {
  border-left: 89px #fff8f8 solid !important;
}
.rose-white--bb-89 {
  border-bottom: 89px #fff8f8 solid !important;
}
.rose-white--by-89 {
  border-top: 89px #fff8f8 solid !important;
  border-bottom: 89px #fff8f8 solid !important;
}
.rose-white--bx-89 {
  border-right: 89px #fff8f8 solid !important;
  border-left: 89px #fff8f8 solid !important;
}
.rose-white--ba-90 {
  border: 90px #fff8f8 solid !important;
}
.rose-white--bt-90 {
  border-top: 90px #fff8f8 solid !important;
}
.rose-white--br-90 {
  border-right: 90px #fff8f8 solid !important;
}
.rose-white--bl-90 {
  border-left: 90px #fff8f8 solid !important;
}
.rose-white--bb-90 {
  border-bottom: 90px #fff8f8 solid !important;
}
.rose-white--by-90 {
  border-top: 90px #fff8f8 solid !important;
  border-bottom: 90px #fff8f8 solid !important;
}
.rose-white--bx-90 {
  border-right: 90px #fff8f8 solid !important;
  border-left: 90px #fff8f8 solid !important;
}
.rose-white--ba-91 {
  border: 91px #fff8f8 solid !important;
}
.rose-white--bt-91 {
  border-top: 91px #fff8f8 solid !important;
}
.rose-white--br-91 {
  border-right: 91px #fff8f8 solid !important;
}
.rose-white--bl-91 {
  border-left: 91px #fff8f8 solid !important;
}
.rose-white--bb-91 {
  border-bottom: 91px #fff8f8 solid !important;
}
.rose-white--by-91 {
  border-top: 91px #fff8f8 solid !important;
  border-bottom: 91px #fff8f8 solid !important;
}
.rose-white--bx-91 {
  border-right: 91px #fff8f8 solid !important;
  border-left: 91px #fff8f8 solid !important;
}
.rose-white--ba-92 {
  border: 92px #fff8f8 solid !important;
}
.rose-white--bt-92 {
  border-top: 92px #fff8f8 solid !important;
}
.rose-white--br-92 {
  border-right: 92px #fff8f8 solid !important;
}
.rose-white--bl-92 {
  border-left: 92px #fff8f8 solid !important;
}
.rose-white--bb-92 {
  border-bottom: 92px #fff8f8 solid !important;
}
.rose-white--by-92 {
  border-top: 92px #fff8f8 solid !important;
  border-bottom: 92px #fff8f8 solid !important;
}
.rose-white--bx-92 {
  border-right: 92px #fff8f8 solid !important;
  border-left: 92px #fff8f8 solid !important;
}
.rose-white--ba-93 {
  border: 93px #fff8f8 solid !important;
}
.rose-white--bt-93 {
  border-top: 93px #fff8f8 solid !important;
}
.rose-white--br-93 {
  border-right: 93px #fff8f8 solid !important;
}
.rose-white--bl-93 {
  border-left: 93px #fff8f8 solid !important;
}
.rose-white--bb-93 {
  border-bottom: 93px #fff8f8 solid !important;
}
.rose-white--by-93 {
  border-top: 93px #fff8f8 solid !important;
  border-bottom: 93px #fff8f8 solid !important;
}
.rose-white--bx-93 {
  border-right: 93px #fff8f8 solid !important;
  border-left: 93px #fff8f8 solid !important;
}
.rose-white--ba-94 {
  border: 94px #fff8f8 solid !important;
}
.rose-white--bt-94 {
  border-top: 94px #fff8f8 solid !important;
}
.rose-white--br-94 {
  border-right: 94px #fff8f8 solid !important;
}
.rose-white--bl-94 {
  border-left: 94px #fff8f8 solid !important;
}
.rose-white--bb-94 {
  border-bottom: 94px #fff8f8 solid !important;
}
.rose-white--by-94 {
  border-top: 94px #fff8f8 solid !important;
  border-bottom: 94px #fff8f8 solid !important;
}
.rose-white--bx-94 {
  border-right: 94px #fff8f8 solid !important;
  border-left: 94px #fff8f8 solid !important;
}
.rose-white--ba-95 {
  border: 95px #fff8f8 solid !important;
}
.rose-white--bt-95 {
  border-top: 95px #fff8f8 solid !important;
}
.rose-white--br-95 {
  border-right: 95px #fff8f8 solid !important;
}
.rose-white--bl-95 {
  border-left: 95px #fff8f8 solid !important;
}
.rose-white--bb-95 {
  border-bottom: 95px #fff8f8 solid !important;
}
.rose-white--by-95 {
  border-top: 95px #fff8f8 solid !important;
  border-bottom: 95px #fff8f8 solid !important;
}
.rose-white--bx-95 {
  border-right: 95px #fff8f8 solid !important;
  border-left: 95px #fff8f8 solid !important;
}
.rose-white--ba-96 {
  border: 96px #fff8f8 solid !important;
}
.rose-white--bt-96 {
  border-top: 96px #fff8f8 solid !important;
}
.rose-white--br-96 {
  border-right: 96px #fff8f8 solid !important;
}
.rose-white--bl-96 {
  border-left: 96px #fff8f8 solid !important;
}
.rose-white--bb-96 {
  border-bottom: 96px #fff8f8 solid !important;
}
.rose-white--by-96 {
  border-top: 96px #fff8f8 solid !important;
  border-bottom: 96px #fff8f8 solid !important;
}
.rose-white--bx-96 {
  border-right: 96px #fff8f8 solid !important;
  border-left: 96px #fff8f8 solid !important;
}
.rose-white--ba-97 {
  border: 97px #fff8f8 solid !important;
}
.rose-white--bt-97 {
  border-top: 97px #fff8f8 solid !important;
}
.rose-white--br-97 {
  border-right: 97px #fff8f8 solid !important;
}
.rose-white--bl-97 {
  border-left: 97px #fff8f8 solid !important;
}
.rose-white--bb-97 {
  border-bottom: 97px #fff8f8 solid !important;
}
.rose-white--by-97 {
  border-top: 97px #fff8f8 solid !important;
  border-bottom: 97px #fff8f8 solid !important;
}
.rose-white--bx-97 {
  border-right: 97px #fff8f8 solid !important;
  border-left: 97px #fff8f8 solid !important;
}
.rose-white--ba-98 {
  border: 98px #fff8f8 solid !important;
}
.rose-white--bt-98 {
  border-top: 98px #fff8f8 solid !important;
}
.rose-white--br-98 {
  border-right: 98px #fff8f8 solid !important;
}
.rose-white--bl-98 {
  border-left: 98px #fff8f8 solid !important;
}
.rose-white--bb-98 {
  border-bottom: 98px #fff8f8 solid !important;
}
.rose-white--by-98 {
  border-top: 98px #fff8f8 solid !important;
  border-bottom: 98px #fff8f8 solid !important;
}
.rose-white--bx-98 {
  border-right: 98px #fff8f8 solid !important;
  border-left: 98px #fff8f8 solid !important;
}
.rose-white--ba-99 {
  border: 99px #fff8f8 solid !important;
}
.rose-white--bt-99 {
  border-top: 99px #fff8f8 solid !important;
}
.rose-white--br-99 {
  border-right: 99px #fff8f8 solid !important;
}
.rose-white--bl-99 {
  border-left: 99px #fff8f8 solid !important;
}
.rose-white--bb-99 {
  border-bottom: 99px #fff8f8 solid !important;
}
.rose-white--by-99 {
  border-top: 99px #fff8f8 solid !important;
  border-bottom: 99px #fff8f8 solid !important;
}
.rose-white--bx-99 {
  border-right: 99px #fff8f8 solid !important;
  border-left: 99px #fff8f8 solid !important;
}
.rose-white--ba-100 {
  border: 100px #fff8f8 solid !important;
}
.rose-white--bt-100 {
  border-top: 100px #fff8f8 solid !important;
}
.rose-white--br-100 {
  border-right: 100px #fff8f8 solid !important;
}
.rose-white--bl-100 {
  border-left: 100px #fff8f8 solid !important;
}
.rose-white--bb-100 {
  border-bottom: 100px #fff8f8 solid !important;
}
.rose-white--by-100 {
  border-top: 100px #fff8f8 solid !important;
  border-bottom: 100px #fff8f8 solid !important;
}
.rose-white--bx-100 {
  border-right: 100px #fff8f8 solid !important;
  border-left: 100px #fff8f8 solid !important;
}
.sun--ba-1 {
  border: 1px #fbd415 solid !important;
}
.sun--bt-1 {
  border-top: 1px #fbd415 solid !important;
}
.sun--br-1 {
  border-right: 1px #fbd415 solid !important;
}
.sun--bl-1 {
  border-left: 1px #fbd415 solid !important;
}
.sun--bb-1 {
  border-bottom: 1px #fbd415 solid !important;
}
.sun--by-1 {
  border-top: 1px #fbd415 solid !important;
  border-bottom: 1px #fbd415 solid !important;
}
.sun--bx-1 {
  border-right: 1px #fbd415 solid !important;
  border-left: 1px #fbd415 solid !important;
}
.sun--ba-2 {
  border: 2px #fbd415 solid !important;
}
.sun--bt-2 {
  border-top: 2px #fbd415 solid !important;
}
.sun--br-2 {
  border-right: 2px #fbd415 solid !important;
}
.sun--bl-2 {
  border-left: 2px #fbd415 solid !important;
}
.sun--bb-2 {
  border-bottom: 2px #fbd415 solid !important;
}
.sun--by-2 {
  border-top: 2px #fbd415 solid !important;
  border-bottom: 2px #fbd415 solid !important;
}
.sun--bx-2 {
  border-right: 2px #fbd415 solid !important;
  border-left: 2px #fbd415 solid !important;
}
.sun--ba-3 {
  border: 3px #fbd415 solid !important;
}
.sun--bt-3 {
  border-top: 3px #fbd415 solid !important;
}
.sun--br-3 {
  border-right: 3px #fbd415 solid !important;
}
.sun--bl-3 {
  border-left: 3px #fbd415 solid !important;
}
.sun--bb-3 {
  border-bottom: 3px #fbd415 solid !important;
}
.sun--by-3 {
  border-top: 3px #fbd415 solid !important;
  border-bottom: 3px #fbd415 solid !important;
}
.sun--bx-3 {
  border-right: 3px #fbd415 solid !important;
  border-left: 3px #fbd415 solid !important;
}
.sun--ba-4 {
  border: 4px #fbd415 solid !important;
}
.sun--bt-4 {
  border-top: 4px #fbd415 solid !important;
}
.sun--br-4 {
  border-right: 4px #fbd415 solid !important;
}
.sun--bl-4 {
  border-left: 4px #fbd415 solid !important;
}
.sun--bb-4 {
  border-bottom: 4px #fbd415 solid !important;
}
.sun--by-4 {
  border-top: 4px #fbd415 solid !important;
  border-bottom: 4px #fbd415 solid !important;
}
.sun--bx-4 {
  border-right: 4px #fbd415 solid !important;
  border-left: 4px #fbd415 solid !important;
}
.sun--ba-5 {
  border: 5px #fbd415 solid !important;
}
.sun--bt-5 {
  border-top: 5px #fbd415 solid !important;
}
.sun--br-5 {
  border-right: 5px #fbd415 solid !important;
}
.sun--bl-5 {
  border-left: 5px #fbd415 solid !important;
}
.sun--bb-5 {
  border-bottom: 5px #fbd415 solid !important;
}
.sun--by-5 {
  border-top: 5px #fbd415 solid !important;
  border-bottom: 5px #fbd415 solid !important;
}
.sun--bx-5 {
  border-right: 5px #fbd415 solid !important;
  border-left: 5px #fbd415 solid !important;
}
.sun--ba-6 {
  border: 6px #fbd415 solid !important;
}
.sun--bt-6 {
  border-top: 6px #fbd415 solid !important;
}
.sun--br-6 {
  border-right: 6px #fbd415 solid !important;
}
.sun--bl-6 {
  border-left: 6px #fbd415 solid !important;
}
.sun--bb-6 {
  border-bottom: 6px #fbd415 solid !important;
}
.sun--by-6 {
  border-top: 6px #fbd415 solid !important;
  border-bottom: 6px #fbd415 solid !important;
}
.sun--bx-6 {
  border-right: 6px #fbd415 solid !important;
  border-left: 6px #fbd415 solid !important;
}
.sun--ba-7 {
  border: 7px #fbd415 solid !important;
}
.sun--bt-7 {
  border-top: 7px #fbd415 solid !important;
}
.sun--br-7 {
  border-right: 7px #fbd415 solid !important;
}
.sun--bl-7 {
  border-left: 7px #fbd415 solid !important;
}
.sun--bb-7 {
  border-bottom: 7px #fbd415 solid !important;
}
.sun--by-7 {
  border-top: 7px #fbd415 solid !important;
  border-bottom: 7px #fbd415 solid !important;
}
.sun--bx-7 {
  border-right: 7px #fbd415 solid !important;
  border-left: 7px #fbd415 solid !important;
}
.sun--ba-8 {
  border: 8px #fbd415 solid !important;
}
.sun--bt-8 {
  border-top: 8px #fbd415 solid !important;
}
.sun--br-8 {
  border-right: 8px #fbd415 solid !important;
}
.sun--bl-8 {
  border-left: 8px #fbd415 solid !important;
}
.sun--bb-8 {
  border-bottom: 8px #fbd415 solid !important;
}
.sun--by-8 {
  border-top: 8px #fbd415 solid !important;
  border-bottom: 8px #fbd415 solid !important;
}
.sun--bx-8 {
  border-right: 8px #fbd415 solid !important;
  border-left: 8px #fbd415 solid !important;
}
.sun--ba-9 {
  border: 9px #fbd415 solid !important;
}
.sun--bt-9 {
  border-top: 9px #fbd415 solid !important;
}
.sun--br-9 {
  border-right: 9px #fbd415 solid !important;
}
.sun--bl-9 {
  border-left: 9px #fbd415 solid !important;
}
.sun--bb-9 {
  border-bottom: 9px #fbd415 solid !important;
}
.sun--by-9 {
  border-top: 9px #fbd415 solid !important;
  border-bottom: 9px #fbd415 solid !important;
}
.sun--bx-9 {
  border-right: 9px #fbd415 solid !important;
  border-left: 9px #fbd415 solid !important;
}
.sun--ba-10 {
  border: 10px #fbd415 solid !important;
}
.sun--bt-10 {
  border-top: 10px #fbd415 solid !important;
}
.sun--br-10 {
  border-right: 10px #fbd415 solid !important;
}
.sun--bl-10 {
  border-left: 10px #fbd415 solid !important;
}
.sun--bb-10 {
  border-bottom: 10px #fbd415 solid !important;
}
.sun--by-10 {
  border-top: 10px #fbd415 solid !important;
  border-bottom: 10px #fbd415 solid !important;
}
.sun--bx-10 {
  border-right: 10px #fbd415 solid !important;
  border-left: 10px #fbd415 solid !important;
}
.sun--ba-11 {
  border: 11px #fbd415 solid !important;
}
.sun--bt-11 {
  border-top: 11px #fbd415 solid !important;
}
.sun--br-11 {
  border-right: 11px #fbd415 solid !important;
}
.sun--bl-11 {
  border-left: 11px #fbd415 solid !important;
}
.sun--bb-11 {
  border-bottom: 11px #fbd415 solid !important;
}
.sun--by-11 {
  border-top: 11px #fbd415 solid !important;
  border-bottom: 11px #fbd415 solid !important;
}
.sun--bx-11 {
  border-right: 11px #fbd415 solid !important;
  border-left: 11px #fbd415 solid !important;
}
.sun--ba-12 {
  border: 12px #fbd415 solid !important;
}
.sun--bt-12 {
  border-top: 12px #fbd415 solid !important;
}
.sun--br-12 {
  border-right: 12px #fbd415 solid !important;
}
.sun--bl-12 {
  border-left: 12px #fbd415 solid !important;
}
.sun--bb-12 {
  border-bottom: 12px #fbd415 solid !important;
}
.sun--by-12 {
  border-top: 12px #fbd415 solid !important;
  border-bottom: 12px #fbd415 solid !important;
}
.sun--bx-12 {
  border-right: 12px #fbd415 solid !important;
  border-left: 12px #fbd415 solid !important;
}
.sun--ba-13 {
  border: 13px #fbd415 solid !important;
}
.sun--bt-13 {
  border-top: 13px #fbd415 solid !important;
}
.sun--br-13 {
  border-right: 13px #fbd415 solid !important;
}
.sun--bl-13 {
  border-left: 13px #fbd415 solid !important;
}
.sun--bb-13 {
  border-bottom: 13px #fbd415 solid !important;
}
.sun--by-13 {
  border-top: 13px #fbd415 solid !important;
  border-bottom: 13px #fbd415 solid !important;
}
.sun--bx-13 {
  border-right: 13px #fbd415 solid !important;
  border-left: 13px #fbd415 solid !important;
}
.sun--ba-14 {
  border: 14px #fbd415 solid !important;
}
.sun--bt-14 {
  border-top: 14px #fbd415 solid !important;
}
.sun--br-14 {
  border-right: 14px #fbd415 solid !important;
}
.sun--bl-14 {
  border-left: 14px #fbd415 solid !important;
}
.sun--bb-14 {
  border-bottom: 14px #fbd415 solid !important;
}
.sun--by-14 {
  border-top: 14px #fbd415 solid !important;
  border-bottom: 14px #fbd415 solid !important;
}
.sun--bx-14 {
  border-right: 14px #fbd415 solid !important;
  border-left: 14px #fbd415 solid !important;
}
.sun--ba-15 {
  border: 15px #fbd415 solid !important;
}
.sun--bt-15 {
  border-top: 15px #fbd415 solid !important;
}
.sun--br-15 {
  border-right: 15px #fbd415 solid !important;
}
.sun--bl-15 {
  border-left: 15px #fbd415 solid !important;
}
.sun--bb-15 {
  border-bottom: 15px #fbd415 solid !important;
}
.sun--by-15 {
  border-top: 15px #fbd415 solid !important;
  border-bottom: 15px #fbd415 solid !important;
}
.sun--bx-15 {
  border-right: 15px #fbd415 solid !important;
  border-left: 15px #fbd415 solid !important;
}
.sun--ba-16 {
  border: 16px #fbd415 solid !important;
}
.sun--bt-16 {
  border-top: 16px #fbd415 solid !important;
}
.sun--br-16 {
  border-right: 16px #fbd415 solid !important;
}
.sun--bl-16 {
  border-left: 16px #fbd415 solid !important;
}
.sun--bb-16 {
  border-bottom: 16px #fbd415 solid !important;
}
.sun--by-16 {
  border-top: 16px #fbd415 solid !important;
  border-bottom: 16px #fbd415 solid !important;
}
.sun--bx-16 {
  border-right: 16px #fbd415 solid !important;
  border-left: 16px #fbd415 solid !important;
}
.sun--ba-17 {
  border: 17px #fbd415 solid !important;
}
.sun--bt-17 {
  border-top: 17px #fbd415 solid !important;
}
.sun--br-17 {
  border-right: 17px #fbd415 solid !important;
}
.sun--bl-17 {
  border-left: 17px #fbd415 solid !important;
}
.sun--bb-17 {
  border-bottom: 17px #fbd415 solid !important;
}
.sun--by-17 {
  border-top: 17px #fbd415 solid !important;
  border-bottom: 17px #fbd415 solid !important;
}
.sun--bx-17 {
  border-right: 17px #fbd415 solid !important;
  border-left: 17px #fbd415 solid !important;
}
.sun--ba-18 {
  border: 18px #fbd415 solid !important;
}
.sun--bt-18 {
  border-top: 18px #fbd415 solid !important;
}
.sun--br-18 {
  border-right: 18px #fbd415 solid !important;
}
.sun--bl-18 {
  border-left: 18px #fbd415 solid !important;
}
.sun--bb-18 {
  border-bottom: 18px #fbd415 solid !important;
}
.sun--by-18 {
  border-top: 18px #fbd415 solid !important;
  border-bottom: 18px #fbd415 solid !important;
}
.sun--bx-18 {
  border-right: 18px #fbd415 solid !important;
  border-left: 18px #fbd415 solid !important;
}
.sun--ba-19 {
  border: 19px #fbd415 solid !important;
}
.sun--bt-19 {
  border-top: 19px #fbd415 solid !important;
}
.sun--br-19 {
  border-right: 19px #fbd415 solid !important;
}
.sun--bl-19 {
  border-left: 19px #fbd415 solid !important;
}
.sun--bb-19 {
  border-bottom: 19px #fbd415 solid !important;
}
.sun--by-19 {
  border-top: 19px #fbd415 solid !important;
  border-bottom: 19px #fbd415 solid !important;
}
.sun--bx-19 {
  border-right: 19px #fbd415 solid !important;
  border-left: 19px #fbd415 solid !important;
}
.sun--ba-20 {
  border: 20px #fbd415 solid !important;
}
.sun--bt-20 {
  border-top: 20px #fbd415 solid !important;
}
.sun--br-20 {
  border-right: 20px #fbd415 solid !important;
}
.sun--bl-20 {
  border-left: 20px #fbd415 solid !important;
}
.sun--bb-20 {
  border-bottom: 20px #fbd415 solid !important;
}
.sun--by-20 {
  border-top: 20px #fbd415 solid !important;
  border-bottom: 20px #fbd415 solid !important;
}
.sun--bx-20 {
  border-right: 20px #fbd415 solid !important;
  border-left: 20px #fbd415 solid !important;
}
.sun--ba-21 {
  border: 21px #fbd415 solid !important;
}
.sun--bt-21 {
  border-top: 21px #fbd415 solid !important;
}
.sun--br-21 {
  border-right: 21px #fbd415 solid !important;
}
.sun--bl-21 {
  border-left: 21px #fbd415 solid !important;
}
.sun--bb-21 {
  border-bottom: 21px #fbd415 solid !important;
}
.sun--by-21 {
  border-top: 21px #fbd415 solid !important;
  border-bottom: 21px #fbd415 solid !important;
}
.sun--bx-21 {
  border-right: 21px #fbd415 solid !important;
  border-left: 21px #fbd415 solid !important;
}
.sun--ba-22 {
  border: 22px #fbd415 solid !important;
}
.sun--bt-22 {
  border-top: 22px #fbd415 solid !important;
}
.sun--br-22 {
  border-right: 22px #fbd415 solid !important;
}
.sun--bl-22 {
  border-left: 22px #fbd415 solid !important;
}
.sun--bb-22 {
  border-bottom: 22px #fbd415 solid !important;
}
.sun--by-22 {
  border-top: 22px #fbd415 solid !important;
  border-bottom: 22px #fbd415 solid !important;
}
.sun--bx-22 {
  border-right: 22px #fbd415 solid !important;
  border-left: 22px #fbd415 solid !important;
}
.sun--ba-23 {
  border: 23px #fbd415 solid !important;
}
.sun--bt-23 {
  border-top: 23px #fbd415 solid !important;
}
.sun--br-23 {
  border-right: 23px #fbd415 solid !important;
}
.sun--bl-23 {
  border-left: 23px #fbd415 solid !important;
}
.sun--bb-23 {
  border-bottom: 23px #fbd415 solid !important;
}
.sun--by-23 {
  border-top: 23px #fbd415 solid !important;
  border-bottom: 23px #fbd415 solid !important;
}
.sun--bx-23 {
  border-right: 23px #fbd415 solid !important;
  border-left: 23px #fbd415 solid !important;
}
.sun--ba-24 {
  border: 24px #fbd415 solid !important;
}
.sun--bt-24 {
  border-top: 24px #fbd415 solid !important;
}
.sun--br-24 {
  border-right: 24px #fbd415 solid !important;
}
.sun--bl-24 {
  border-left: 24px #fbd415 solid !important;
}
.sun--bb-24 {
  border-bottom: 24px #fbd415 solid !important;
}
.sun--by-24 {
  border-top: 24px #fbd415 solid !important;
  border-bottom: 24px #fbd415 solid !important;
}
.sun--bx-24 {
  border-right: 24px #fbd415 solid !important;
  border-left: 24px #fbd415 solid !important;
}
.sun--ba-25 {
  border: 25px #fbd415 solid !important;
}
.sun--bt-25 {
  border-top: 25px #fbd415 solid !important;
}
.sun--br-25 {
  border-right: 25px #fbd415 solid !important;
}
.sun--bl-25 {
  border-left: 25px #fbd415 solid !important;
}
.sun--bb-25 {
  border-bottom: 25px #fbd415 solid !important;
}
.sun--by-25 {
  border-top: 25px #fbd415 solid !important;
  border-bottom: 25px #fbd415 solid !important;
}
.sun--bx-25 {
  border-right: 25px #fbd415 solid !important;
  border-left: 25px #fbd415 solid !important;
}
.sun--ba-26 {
  border: 26px #fbd415 solid !important;
}
.sun--bt-26 {
  border-top: 26px #fbd415 solid !important;
}
.sun--br-26 {
  border-right: 26px #fbd415 solid !important;
}
.sun--bl-26 {
  border-left: 26px #fbd415 solid !important;
}
.sun--bb-26 {
  border-bottom: 26px #fbd415 solid !important;
}
.sun--by-26 {
  border-top: 26px #fbd415 solid !important;
  border-bottom: 26px #fbd415 solid !important;
}
.sun--bx-26 {
  border-right: 26px #fbd415 solid !important;
  border-left: 26px #fbd415 solid !important;
}
.sun--ba-27 {
  border: 27px #fbd415 solid !important;
}
.sun--bt-27 {
  border-top: 27px #fbd415 solid !important;
}
.sun--br-27 {
  border-right: 27px #fbd415 solid !important;
}
.sun--bl-27 {
  border-left: 27px #fbd415 solid !important;
}
.sun--bb-27 {
  border-bottom: 27px #fbd415 solid !important;
}
.sun--by-27 {
  border-top: 27px #fbd415 solid !important;
  border-bottom: 27px #fbd415 solid !important;
}
.sun--bx-27 {
  border-right: 27px #fbd415 solid !important;
  border-left: 27px #fbd415 solid !important;
}
.sun--ba-28 {
  border: 28px #fbd415 solid !important;
}
.sun--bt-28 {
  border-top: 28px #fbd415 solid !important;
}
.sun--br-28 {
  border-right: 28px #fbd415 solid !important;
}
.sun--bl-28 {
  border-left: 28px #fbd415 solid !important;
}
.sun--bb-28 {
  border-bottom: 28px #fbd415 solid !important;
}
.sun--by-28 {
  border-top: 28px #fbd415 solid !important;
  border-bottom: 28px #fbd415 solid !important;
}
.sun--bx-28 {
  border-right: 28px #fbd415 solid !important;
  border-left: 28px #fbd415 solid !important;
}
.sun--ba-29 {
  border: 29px #fbd415 solid !important;
}
.sun--bt-29 {
  border-top: 29px #fbd415 solid !important;
}
.sun--br-29 {
  border-right: 29px #fbd415 solid !important;
}
.sun--bl-29 {
  border-left: 29px #fbd415 solid !important;
}
.sun--bb-29 {
  border-bottom: 29px #fbd415 solid !important;
}
.sun--by-29 {
  border-top: 29px #fbd415 solid !important;
  border-bottom: 29px #fbd415 solid !important;
}
.sun--bx-29 {
  border-right: 29px #fbd415 solid !important;
  border-left: 29px #fbd415 solid !important;
}
.sun--ba-30 {
  border: 30px #fbd415 solid !important;
}
.sun--bt-30 {
  border-top: 30px #fbd415 solid !important;
}
.sun--br-30 {
  border-right: 30px #fbd415 solid !important;
}
.sun--bl-30 {
  border-left: 30px #fbd415 solid !important;
}
.sun--bb-30 {
  border-bottom: 30px #fbd415 solid !important;
}
.sun--by-30 {
  border-top: 30px #fbd415 solid !important;
  border-bottom: 30px #fbd415 solid !important;
}
.sun--bx-30 {
  border-right: 30px #fbd415 solid !important;
  border-left: 30px #fbd415 solid !important;
}
.sun--ba-31 {
  border: 31px #fbd415 solid !important;
}
.sun--bt-31 {
  border-top: 31px #fbd415 solid !important;
}
.sun--br-31 {
  border-right: 31px #fbd415 solid !important;
}
.sun--bl-31 {
  border-left: 31px #fbd415 solid !important;
}
.sun--bb-31 {
  border-bottom: 31px #fbd415 solid !important;
}
.sun--by-31 {
  border-top: 31px #fbd415 solid !important;
  border-bottom: 31px #fbd415 solid !important;
}
.sun--bx-31 {
  border-right: 31px #fbd415 solid !important;
  border-left: 31px #fbd415 solid !important;
}
.sun--ba-32 {
  border: 32px #fbd415 solid !important;
}
.sun--bt-32 {
  border-top: 32px #fbd415 solid !important;
}
.sun--br-32 {
  border-right: 32px #fbd415 solid !important;
}
.sun--bl-32 {
  border-left: 32px #fbd415 solid !important;
}
.sun--bb-32 {
  border-bottom: 32px #fbd415 solid !important;
}
.sun--by-32 {
  border-top: 32px #fbd415 solid !important;
  border-bottom: 32px #fbd415 solid !important;
}
.sun--bx-32 {
  border-right: 32px #fbd415 solid !important;
  border-left: 32px #fbd415 solid !important;
}
.sun--ba-33 {
  border: 33px #fbd415 solid !important;
}
.sun--bt-33 {
  border-top: 33px #fbd415 solid !important;
}
.sun--br-33 {
  border-right: 33px #fbd415 solid !important;
}
.sun--bl-33 {
  border-left: 33px #fbd415 solid !important;
}
.sun--bb-33 {
  border-bottom: 33px #fbd415 solid !important;
}
.sun--by-33 {
  border-top: 33px #fbd415 solid !important;
  border-bottom: 33px #fbd415 solid !important;
}
.sun--bx-33 {
  border-right: 33px #fbd415 solid !important;
  border-left: 33px #fbd415 solid !important;
}
.sun--ba-34 {
  border: 34px #fbd415 solid !important;
}
.sun--bt-34 {
  border-top: 34px #fbd415 solid !important;
}
.sun--br-34 {
  border-right: 34px #fbd415 solid !important;
}
.sun--bl-34 {
  border-left: 34px #fbd415 solid !important;
}
.sun--bb-34 {
  border-bottom: 34px #fbd415 solid !important;
}
.sun--by-34 {
  border-top: 34px #fbd415 solid !important;
  border-bottom: 34px #fbd415 solid !important;
}
.sun--bx-34 {
  border-right: 34px #fbd415 solid !important;
  border-left: 34px #fbd415 solid !important;
}
.sun--ba-35 {
  border: 35px #fbd415 solid !important;
}
.sun--bt-35 {
  border-top: 35px #fbd415 solid !important;
}
.sun--br-35 {
  border-right: 35px #fbd415 solid !important;
}
.sun--bl-35 {
  border-left: 35px #fbd415 solid !important;
}
.sun--bb-35 {
  border-bottom: 35px #fbd415 solid !important;
}
.sun--by-35 {
  border-top: 35px #fbd415 solid !important;
  border-bottom: 35px #fbd415 solid !important;
}
.sun--bx-35 {
  border-right: 35px #fbd415 solid !important;
  border-left: 35px #fbd415 solid !important;
}
.sun--ba-36 {
  border: 36px #fbd415 solid !important;
}
.sun--bt-36 {
  border-top: 36px #fbd415 solid !important;
}
.sun--br-36 {
  border-right: 36px #fbd415 solid !important;
}
.sun--bl-36 {
  border-left: 36px #fbd415 solid !important;
}
.sun--bb-36 {
  border-bottom: 36px #fbd415 solid !important;
}
.sun--by-36 {
  border-top: 36px #fbd415 solid !important;
  border-bottom: 36px #fbd415 solid !important;
}
.sun--bx-36 {
  border-right: 36px #fbd415 solid !important;
  border-left: 36px #fbd415 solid !important;
}
.sun--ba-37 {
  border: 37px #fbd415 solid !important;
}
.sun--bt-37 {
  border-top: 37px #fbd415 solid !important;
}
.sun--br-37 {
  border-right: 37px #fbd415 solid !important;
}
.sun--bl-37 {
  border-left: 37px #fbd415 solid !important;
}
.sun--bb-37 {
  border-bottom: 37px #fbd415 solid !important;
}
.sun--by-37 {
  border-top: 37px #fbd415 solid !important;
  border-bottom: 37px #fbd415 solid !important;
}
.sun--bx-37 {
  border-right: 37px #fbd415 solid !important;
  border-left: 37px #fbd415 solid !important;
}
.sun--ba-38 {
  border: 38px #fbd415 solid !important;
}
.sun--bt-38 {
  border-top: 38px #fbd415 solid !important;
}
.sun--br-38 {
  border-right: 38px #fbd415 solid !important;
}
.sun--bl-38 {
  border-left: 38px #fbd415 solid !important;
}
.sun--bb-38 {
  border-bottom: 38px #fbd415 solid !important;
}
.sun--by-38 {
  border-top: 38px #fbd415 solid !important;
  border-bottom: 38px #fbd415 solid !important;
}
.sun--bx-38 {
  border-right: 38px #fbd415 solid !important;
  border-left: 38px #fbd415 solid !important;
}
.sun--ba-39 {
  border: 39px #fbd415 solid !important;
}
.sun--bt-39 {
  border-top: 39px #fbd415 solid !important;
}
.sun--br-39 {
  border-right: 39px #fbd415 solid !important;
}
.sun--bl-39 {
  border-left: 39px #fbd415 solid !important;
}
.sun--bb-39 {
  border-bottom: 39px #fbd415 solid !important;
}
.sun--by-39 {
  border-top: 39px #fbd415 solid !important;
  border-bottom: 39px #fbd415 solid !important;
}
.sun--bx-39 {
  border-right: 39px #fbd415 solid !important;
  border-left: 39px #fbd415 solid !important;
}
.sun--ba-40 {
  border: 40px #fbd415 solid !important;
}
.sun--bt-40 {
  border-top: 40px #fbd415 solid !important;
}
.sun--br-40 {
  border-right: 40px #fbd415 solid !important;
}
.sun--bl-40 {
  border-left: 40px #fbd415 solid !important;
}
.sun--bb-40 {
  border-bottom: 40px #fbd415 solid !important;
}
.sun--by-40 {
  border-top: 40px #fbd415 solid !important;
  border-bottom: 40px #fbd415 solid !important;
}
.sun--bx-40 {
  border-right: 40px #fbd415 solid !important;
  border-left: 40px #fbd415 solid !important;
}
.sun--ba-41 {
  border: 41px #fbd415 solid !important;
}
.sun--bt-41 {
  border-top: 41px #fbd415 solid !important;
}
.sun--br-41 {
  border-right: 41px #fbd415 solid !important;
}
.sun--bl-41 {
  border-left: 41px #fbd415 solid !important;
}
.sun--bb-41 {
  border-bottom: 41px #fbd415 solid !important;
}
.sun--by-41 {
  border-top: 41px #fbd415 solid !important;
  border-bottom: 41px #fbd415 solid !important;
}
.sun--bx-41 {
  border-right: 41px #fbd415 solid !important;
  border-left: 41px #fbd415 solid !important;
}
.sun--ba-42 {
  border: 42px #fbd415 solid !important;
}
.sun--bt-42 {
  border-top: 42px #fbd415 solid !important;
}
.sun--br-42 {
  border-right: 42px #fbd415 solid !important;
}
.sun--bl-42 {
  border-left: 42px #fbd415 solid !important;
}
.sun--bb-42 {
  border-bottom: 42px #fbd415 solid !important;
}
.sun--by-42 {
  border-top: 42px #fbd415 solid !important;
  border-bottom: 42px #fbd415 solid !important;
}
.sun--bx-42 {
  border-right: 42px #fbd415 solid !important;
  border-left: 42px #fbd415 solid !important;
}
.sun--ba-43 {
  border: 43px #fbd415 solid !important;
}
.sun--bt-43 {
  border-top: 43px #fbd415 solid !important;
}
.sun--br-43 {
  border-right: 43px #fbd415 solid !important;
}
.sun--bl-43 {
  border-left: 43px #fbd415 solid !important;
}
.sun--bb-43 {
  border-bottom: 43px #fbd415 solid !important;
}
.sun--by-43 {
  border-top: 43px #fbd415 solid !important;
  border-bottom: 43px #fbd415 solid !important;
}
.sun--bx-43 {
  border-right: 43px #fbd415 solid !important;
  border-left: 43px #fbd415 solid !important;
}
.sun--ba-44 {
  border: 44px #fbd415 solid !important;
}
.sun--bt-44 {
  border-top: 44px #fbd415 solid !important;
}
.sun--br-44 {
  border-right: 44px #fbd415 solid !important;
}
.sun--bl-44 {
  border-left: 44px #fbd415 solid !important;
}
.sun--bb-44 {
  border-bottom: 44px #fbd415 solid !important;
}
.sun--by-44 {
  border-top: 44px #fbd415 solid !important;
  border-bottom: 44px #fbd415 solid !important;
}
.sun--bx-44 {
  border-right: 44px #fbd415 solid !important;
  border-left: 44px #fbd415 solid !important;
}
.sun--ba-45 {
  border: 45px #fbd415 solid !important;
}
.sun--bt-45 {
  border-top: 45px #fbd415 solid !important;
}
.sun--br-45 {
  border-right: 45px #fbd415 solid !important;
}
.sun--bl-45 {
  border-left: 45px #fbd415 solid !important;
}
.sun--bb-45 {
  border-bottom: 45px #fbd415 solid !important;
}
.sun--by-45 {
  border-top: 45px #fbd415 solid !important;
  border-bottom: 45px #fbd415 solid !important;
}
.sun--bx-45 {
  border-right: 45px #fbd415 solid !important;
  border-left: 45px #fbd415 solid !important;
}
.sun--ba-46 {
  border: 46px #fbd415 solid !important;
}
.sun--bt-46 {
  border-top: 46px #fbd415 solid !important;
}
.sun--br-46 {
  border-right: 46px #fbd415 solid !important;
}
.sun--bl-46 {
  border-left: 46px #fbd415 solid !important;
}
.sun--bb-46 {
  border-bottom: 46px #fbd415 solid !important;
}
.sun--by-46 {
  border-top: 46px #fbd415 solid !important;
  border-bottom: 46px #fbd415 solid !important;
}
.sun--bx-46 {
  border-right: 46px #fbd415 solid !important;
  border-left: 46px #fbd415 solid !important;
}
.sun--ba-47 {
  border: 47px #fbd415 solid !important;
}
.sun--bt-47 {
  border-top: 47px #fbd415 solid !important;
}
.sun--br-47 {
  border-right: 47px #fbd415 solid !important;
}
.sun--bl-47 {
  border-left: 47px #fbd415 solid !important;
}
.sun--bb-47 {
  border-bottom: 47px #fbd415 solid !important;
}
.sun--by-47 {
  border-top: 47px #fbd415 solid !important;
  border-bottom: 47px #fbd415 solid !important;
}
.sun--bx-47 {
  border-right: 47px #fbd415 solid !important;
  border-left: 47px #fbd415 solid !important;
}
.sun--ba-48 {
  border: 48px #fbd415 solid !important;
}
.sun--bt-48 {
  border-top: 48px #fbd415 solid !important;
}
.sun--br-48 {
  border-right: 48px #fbd415 solid !important;
}
.sun--bl-48 {
  border-left: 48px #fbd415 solid !important;
}
.sun--bb-48 {
  border-bottom: 48px #fbd415 solid !important;
}
.sun--by-48 {
  border-top: 48px #fbd415 solid !important;
  border-bottom: 48px #fbd415 solid !important;
}
.sun--bx-48 {
  border-right: 48px #fbd415 solid !important;
  border-left: 48px #fbd415 solid !important;
}
.sun--ba-49 {
  border: 49px #fbd415 solid !important;
}
.sun--bt-49 {
  border-top: 49px #fbd415 solid !important;
}
.sun--br-49 {
  border-right: 49px #fbd415 solid !important;
}
.sun--bl-49 {
  border-left: 49px #fbd415 solid !important;
}
.sun--bb-49 {
  border-bottom: 49px #fbd415 solid !important;
}
.sun--by-49 {
  border-top: 49px #fbd415 solid !important;
  border-bottom: 49px #fbd415 solid !important;
}
.sun--bx-49 {
  border-right: 49px #fbd415 solid !important;
  border-left: 49px #fbd415 solid !important;
}
.sun--ba-50 {
  border: 50px #fbd415 solid !important;
}
.sun--bt-50 {
  border-top: 50px #fbd415 solid !important;
}
.sun--br-50 {
  border-right: 50px #fbd415 solid !important;
}
.sun--bl-50 {
  border-left: 50px #fbd415 solid !important;
}
.sun--bb-50 {
  border-bottom: 50px #fbd415 solid !important;
}
.sun--by-50 {
  border-top: 50px #fbd415 solid !important;
  border-bottom: 50px #fbd415 solid !important;
}
.sun--bx-50 {
  border-right: 50px #fbd415 solid !important;
  border-left: 50px #fbd415 solid !important;
}
.sun--ba-51 {
  border: 51px #fbd415 solid !important;
}
.sun--bt-51 {
  border-top: 51px #fbd415 solid !important;
}
.sun--br-51 {
  border-right: 51px #fbd415 solid !important;
}
.sun--bl-51 {
  border-left: 51px #fbd415 solid !important;
}
.sun--bb-51 {
  border-bottom: 51px #fbd415 solid !important;
}
.sun--by-51 {
  border-top: 51px #fbd415 solid !important;
  border-bottom: 51px #fbd415 solid !important;
}
.sun--bx-51 {
  border-right: 51px #fbd415 solid !important;
  border-left: 51px #fbd415 solid !important;
}
.sun--ba-52 {
  border: 52px #fbd415 solid !important;
}
.sun--bt-52 {
  border-top: 52px #fbd415 solid !important;
}
.sun--br-52 {
  border-right: 52px #fbd415 solid !important;
}
.sun--bl-52 {
  border-left: 52px #fbd415 solid !important;
}
.sun--bb-52 {
  border-bottom: 52px #fbd415 solid !important;
}
.sun--by-52 {
  border-top: 52px #fbd415 solid !important;
  border-bottom: 52px #fbd415 solid !important;
}
.sun--bx-52 {
  border-right: 52px #fbd415 solid !important;
  border-left: 52px #fbd415 solid !important;
}
.sun--ba-53 {
  border: 53px #fbd415 solid !important;
}
.sun--bt-53 {
  border-top: 53px #fbd415 solid !important;
}
.sun--br-53 {
  border-right: 53px #fbd415 solid !important;
}
.sun--bl-53 {
  border-left: 53px #fbd415 solid !important;
}
.sun--bb-53 {
  border-bottom: 53px #fbd415 solid !important;
}
.sun--by-53 {
  border-top: 53px #fbd415 solid !important;
  border-bottom: 53px #fbd415 solid !important;
}
.sun--bx-53 {
  border-right: 53px #fbd415 solid !important;
  border-left: 53px #fbd415 solid !important;
}
.sun--ba-54 {
  border: 54px #fbd415 solid !important;
}
.sun--bt-54 {
  border-top: 54px #fbd415 solid !important;
}
.sun--br-54 {
  border-right: 54px #fbd415 solid !important;
}
.sun--bl-54 {
  border-left: 54px #fbd415 solid !important;
}
.sun--bb-54 {
  border-bottom: 54px #fbd415 solid !important;
}
.sun--by-54 {
  border-top: 54px #fbd415 solid !important;
  border-bottom: 54px #fbd415 solid !important;
}
.sun--bx-54 {
  border-right: 54px #fbd415 solid !important;
  border-left: 54px #fbd415 solid !important;
}
.sun--ba-55 {
  border: 55px #fbd415 solid !important;
}
.sun--bt-55 {
  border-top: 55px #fbd415 solid !important;
}
.sun--br-55 {
  border-right: 55px #fbd415 solid !important;
}
.sun--bl-55 {
  border-left: 55px #fbd415 solid !important;
}
.sun--bb-55 {
  border-bottom: 55px #fbd415 solid !important;
}
.sun--by-55 {
  border-top: 55px #fbd415 solid !important;
  border-bottom: 55px #fbd415 solid !important;
}
.sun--bx-55 {
  border-right: 55px #fbd415 solid !important;
  border-left: 55px #fbd415 solid !important;
}
.sun--ba-56 {
  border: 56px #fbd415 solid !important;
}
.sun--bt-56 {
  border-top: 56px #fbd415 solid !important;
}
.sun--br-56 {
  border-right: 56px #fbd415 solid !important;
}
.sun--bl-56 {
  border-left: 56px #fbd415 solid !important;
}
.sun--bb-56 {
  border-bottom: 56px #fbd415 solid !important;
}
.sun--by-56 {
  border-top: 56px #fbd415 solid !important;
  border-bottom: 56px #fbd415 solid !important;
}
.sun--bx-56 {
  border-right: 56px #fbd415 solid !important;
  border-left: 56px #fbd415 solid !important;
}
.sun--ba-57 {
  border: 57px #fbd415 solid !important;
}
.sun--bt-57 {
  border-top: 57px #fbd415 solid !important;
}
.sun--br-57 {
  border-right: 57px #fbd415 solid !important;
}
.sun--bl-57 {
  border-left: 57px #fbd415 solid !important;
}
.sun--bb-57 {
  border-bottom: 57px #fbd415 solid !important;
}
.sun--by-57 {
  border-top: 57px #fbd415 solid !important;
  border-bottom: 57px #fbd415 solid !important;
}
.sun--bx-57 {
  border-right: 57px #fbd415 solid !important;
  border-left: 57px #fbd415 solid !important;
}
.sun--ba-58 {
  border: 58px #fbd415 solid !important;
}
.sun--bt-58 {
  border-top: 58px #fbd415 solid !important;
}
.sun--br-58 {
  border-right: 58px #fbd415 solid !important;
}
.sun--bl-58 {
  border-left: 58px #fbd415 solid !important;
}
.sun--bb-58 {
  border-bottom: 58px #fbd415 solid !important;
}
.sun--by-58 {
  border-top: 58px #fbd415 solid !important;
  border-bottom: 58px #fbd415 solid !important;
}
.sun--bx-58 {
  border-right: 58px #fbd415 solid !important;
  border-left: 58px #fbd415 solid !important;
}
.sun--ba-59 {
  border: 59px #fbd415 solid !important;
}
.sun--bt-59 {
  border-top: 59px #fbd415 solid !important;
}
.sun--br-59 {
  border-right: 59px #fbd415 solid !important;
}
.sun--bl-59 {
  border-left: 59px #fbd415 solid !important;
}
.sun--bb-59 {
  border-bottom: 59px #fbd415 solid !important;
}
.sun--by-59 {
  border-top: 59px #fbd415 solid !important;
  border-bottom: 59px #fbd415 solid !important;
}
.sun--bx-59 {
  border-right: 59px #fbd415 solid !important;
  border-left: 59px #fbd415 solid !important;
}
.sun--ba-60 {
  border: 60px #fbd415 solid !important;
}
.sun--bt-60 {
  border-top: 60px #fbd415 solid !important;
}
.sun--br-60 {
  border-right: 60px #fbd415 solid !important;
}
.sun--bl-60 {
  border-left: 60px #fbd415 solid !important;
}
.sun--bb-60 {
  border-bottom: 60px #fbd415 solid !important;
}
.sun--by-60 {
  border-top: 60px #fbd415 solid !important;
  border-bottom: 60px #fbd415 solid !important;
}
.sun--bx-60 {
  border-right: 60px #fbd415 solid !important;
  border-left: 60px #fbd415 solid !important;
}
.sun--ba-61 {
  border: 61px #fbd415 solid !important;
}
.sun--bt-61 {
  border-top: 61px #fbd415 solid !important;
}
.sun--br-61 {
  border-right: 61px #fbd415 solid !important;
}
.sun--bl-61 {
  border-left: 61px #fbd415 solid !important;
}
.sun--bb-61 {
  border-bottom: 61px #fbd415 solid !important;
}
.sun--by-61 {
  border-top: 61px #fbd415 solid !important;
  border-bottom: 61px #fbd415 solid !important;
}
.sun--bx-61 {
  border-right: 61px #fbd415 solid !important;
  border-left: 61px #fbd415 solid !important;
}
.sun--ba-62 {
  border: 62px #fbd415 solid !important;
}
.sun--bt-62 {
  border-top: 62px #fbd415 solid !important;
}
.sun--br-62 {
  border-right: 62px #fbd415 solid !important;
}
.sun--bl-62 {
  border-left: 62px #fbd415 solid !important;
}
.sun--bb-62 {
  border-bottom: 62px #fbd415 solid !important;
}
.sun--by-62 {
  border-top: 62px #fbd415 solid !important;
  border-bottom: 62px #fbd415 solid !important;
}
.sun--bx-62 {
  border-right: 62px #fbd415 solid !important;
  border-left: 62px #fbd415 solid !important;
}
.sun--ba-63 {
  border: 63px #fbd415 solid !important;
}
.sun--bt-63 {
  border-top: 63px #fbd415 solid !important;
}
.sun--br-63 {
  border-right: 63px #fbd415 solid !important;
}
.sun--bl-63 {
  border-left: 63px #fbd415 solid !important;
}
.sun--bb-63 {
  border-bottom: 63px #fbd415 solid !important;
}
.sun--by-63 {
  border-top: 63px #fbd415 solid !important;
  border-bottom: 63px #fbd415 solid !important;
}
.sun--bx-63 {
  border-right: 63px #fbd415 solid !important;
  border-left: 63px #fbd415 solid !important;
}
.sun--ba-64 {
  border: 64px #fbd415 solid !important;
}
.sun--bt-64 {
  border-top: 64px #fbd415 solid !important;
}
.sun--br-64 {
  border-right: 64px #fbd415 solid !important;
}
.sun--bl-64 {
  border-left: 64px #fbd415 solid !important;
}
.sun--bb-64 {
  border-bottom: 64px #fbd415 solid !important;
}
.sun--by-64 {
  border-top: 64px #fbd415 solid !important;
  border-bottom: 64px #fbd415 solid !important;
}
.sun--bx-64 {
  border-right: 64px #fbd415 solid !important;
  border-left: 64px #fbd415 solid !important;
}
.sun--ba-65 {
  border: 65px #fbd415 solid !important;
}
.sun--bt-65 {
  border-top: 65px #fbd415 solid !important;
}
.sun--br-65 {
  border-right: 65px #fbd415 solid !important;
}
.sun--bl-65 {
  border-left: 65px #fbd415 solid !important;
}
.sun--bb-65 {
  border-bottom: 65px #fbd415 solid !important;
}
.sun--by-65 {
  border-top: 65px #fbd415 solid !important;
  border-bottom: 65px #fbd415 solid !important;
}
.sun--bx-65 {
  border-right: 65px #fbd415 solid !important;
  border-left: 65px #fbd415 solid !important;
}
.sun--ba-66 {
  border: 66px #fbd415 solid !important;
}
.sun--bt-66 {
  border-top: 66px #fbd415 solid !important;
}
.sun--br-66 {
  border-right: 66px #fbd415 solid !important;
}
.sun--bl-66 {
  border-left: 66px #fbd415 solid !important;
}
.sun--bb-66 {
  border-bottom: 66px #fbd415 solid !important;
}
.sun--by-66 {
  border-top: 66px #fbd415 solid !important;
  border-bottom: 66px #fbd415 solid !important;
}
.sun--bx-66 {
  border-right: 66px #fbd415 solid !important;
  border-left: 66px #fbd415 solid !important;
}
.sun--ba-67 {
  border: 67px #fbd415 solid !important;
}
.sun--bt-67 {
  border-top: 67px #fbd415 solid !important;
}
.sun--br-67 {
  border-right: 67px #fbd415 solid !important;
}
.sun--bl-67 {
  border-left: 67px #fbd415 solid !important;
}
.sun--bb-67 {
  border-bottom: 67px #fbd415 solid !important;
}
.sun--by-67 {
  border-top: 67px #fbd415 solid !important;
  border-bottom: 67px #fbd415 solid !important;
}
.sun--bx-67 {
  border-right: 67px #fbd415 solid !important;
  border-left: 67px #fbd415 solid !important;
}
.sun--ba-68 {
  border: 68px #fbd415 solid !important;
}
.sun--bt-68 {
  border-top: 68px #fbd415 solid !important;
}
.sun--br-68 {
  border-right: 68px #fbd415 solid !important;
}
.sun--bl-68 {
  border-left: 68px #fbd415 solid !important;
}
.sun--bb-68 {
  border-bottom: 68px #fbd415 solid !important;
}
.sun--by-68 {
  border-top: 68px #fbd415 solid !important;
  border-bottom: 68px #fbd415 solid !important;
}
.sun--bx-68 {
  border-right: 68px #fbd415 solid !important;
  border-left: 68px #fbd415 solid !important;
}
.sun--ba-69 {
  border: 69px #fbd415 solid !important;
}
.sun--bt-69 {
  border-top: 69px #fbd415 solid !important;
}
.sun--br-69 {
  border-right: 69px #fbd415 solid !important;
}
.sun--bl-69 {
  border-left: 69px #fbd415 solid !important;
}
.sun--bb-69 {
  border-bottom: 69px #fbd415 solid !important;
}
.sun--by-69 {
  border-top: 69px #fbd415 solid !important;
  border-bottom: 69px #fbd415 solid !important;
}
.sun--bx-69 {
  border-right: 69px #fbd415 solid !important;
  border-left: 69px #fbd415 solid !important;
}
.sun--ba-70 {
  border: 70px #fbd415 solid !important;
}
.sun--bt-70 {
  border-top: 70px #fbd415 solid !important;
}
.sun--br-70 {
  border-right: 70px #fbd415 solid !important;
}
.sun--bl-70 {
  border-left: 70px #fbd415 solid !important;
}
.sun--bb-70 {
  border-bottom: 70px #fbd415 solid !important;
}
.sun--by-70 {
  border-top: 70px #fbd415 solid !important;
  border-bottom: 70px #fbd415 solid !important;
}
.sun--bx-70 {
  border-right: 70px #fbd415 solid !important;
  border-left: 70px #fbd415 solid !important;
}
.sun--ba-71 {
  border: 71px #fbd415 solid !important;
}
.sun--bt-71 {
  border-top: 71px #fbd415 solid !important;
}
.sun--br-71 {
  border-right: 71px #fbd415 solid !important;
}
.sun--bl-71 {
  border-left: 71px #fbd415 solid !important;
}
.sun--bb-71 {
  border-bottom: 71px #fbd415 solid !important;
}
.sun--by-71 {
  border-top: 71px #fbd415 solid !important;
  border-bottom: 71px #fbd415 solid !important;
}
.sun--bx-71 {
  border-right: 71px #fbd415 solid !important;
  border-left: 71px #fbd415 solid !important;
}
.sun--ba-72 {
  border: 72px #fbd415 solid !important;
}
.sun--bt-72 {
  border-top: 72px #fbd415 solid !important;
}
.sun--br-72 {
  border-right: 72px #fbd415 solid !important;
}
.sun--bl-72 {
  border-left: 72px #fbd415 solid !important;
}
.sun--bb-72 {
  border-bottom: 72px #fbd415 solid !important;
}
.sun--by-72 {
  border-top: 72px #fbd415 solid !important;
  border-bottom: 72px #fbd415 solid !important;
}
.sun--bx-72 {
  border-right: 72px #fbd415 solid !important;
  border-left: 72px #fbd415 solid !important;
}
.sun--ba-73 {
  border: 73px #fbd415 solid !important;
}
.sun--bt-73 {
  border-top: 73px #fbd415 solid !important;
}
.sun--br-73 {
  border-right: 73px #fbd415 solid !important;
}
.sun--bl-73 {
  border-left: 73px #fbd415 solid !important;
}
.sun--bb-73 {
  border-bottom: 73px #fbd415 solid !important;
}
.sun--by-73 {
  border-top: 73px #fbd415 solid !important;
  border-bottom: 73px #fbd415 solid !important;
}
.sun--bx-73 {
  border-right: 73px #fbd415 solid !important;
  border-left: 73px #fbd415 solid !important;
}
.sun--ba-74 {
  border: 74px #fbd415 solid !important;
}
.sun--bt-74 {
  border-top: 74px #fbd415 solid !important;
}
.sun--br-74 {
  border-right: 74px #fbd415 solid !important;
}
.sun--bl-74 {
  border-left: 74px #fbd415 solid !important;
}
.sun--bb-74 {
  border-bottom: 74px #fbd415 solid !important;
}
.sun--by-74 {
  border-top: 74px #fbd415 solid !important;
  border-bottom: 74px #fbd415 solid !important;
}
.sun--bx-74 {
  border-right: 74px #fbd415 solid !important;
  border-left: 74px #fbd415 solid !important;
}
.sun--ba-75 {
  border: 75px #fbd415 solid !important;
}
.sun--bt-75 {
  border-top: 75px #fbd415 solid !important;
}
.sun--br-75 {
  border-right: 75px #fbd415 solid !important;
}
.sun--bl-75 {
  border-left: 75px #fbd415 solid !important;
}
.sun--bb-75 {
  border-bottom: 75px #fbd415 solid !important;
}
.sun--by-75 {
  border-top: 75px #fbd415 solid !important;
  border-bottom: 75px #fbd415 solid !important;
}
.sun--bx-75 {
  border-right: 75px #fbd415 solid !important;
  border-left: 75px #fbd415 solid !important;
}
.sun--ba-76 {
  border: 76px #fbd415 solid !important;
}
.sun--bt-76 {
  border-top: 76px #fbd415 solid !important;
}
.sun--br-76 {
  border-right: 76px #fbd415 solid !important;
}
.sun--bl-76 {
  border-left: 76px #fbd415 solid !important;
}
.sun--bb-76 {
  border-bottom: 76px #fbd415 solid !important;
}
.sun--by-76 {
  border-top: 76px #fbd415 solid !important;
  border-bottom: 76px #fbd415 solid !important;
}
.sun--bx-76 {
  border-right: 76px #fbd415 solid !important;
  border-left: 76px #fbd415 solid !important;
}
.sun--ba-77 {
  border: 77px #fbd415 solid !important;
}
.sun--bt-77 {
  border-top: 77px #fbd415 solid !important;
}
.sun--br-77 {
  border-right: 77px #fbd415 solid !important;
}
.sun--bl-77 {
  border-left: 77px #fbd415 solid !important;
}
.sun--bb-77 {
  border-bottom: 77px #fbd415 solid !important;
}
.sun--by-77 {
  border-top: 77px #fbd415 solid !important;
  border-bottom: 77px #fbd415 solid !important;
}
.sun--bx-77 {
  border-right: 77px #fbd415 solid !important;
  border-left: 77px #fbd415 solid !important;
}
.sun--ba-78 {
  border: 78px #fbd415 solid !important;
}
.sun--bt-78 {
  border-top: 78px #fbd415 solid !important;
}
.sun--br-78 {
  border-right: 78px #fbd415 solid !important;
}
.sun--bl-78 {
  border-left: 78px #fbd415 solid !important;
}
.sun--bb-78 {
  border-bottom: 78px #fbd415 solid !important;
}
.sun--by-78 {
  border-top: 78px #fbd415 solid !important;
  border-bottom: 78px #fbd415 solid !important;
}
.sun--bx-78 {
  border-right: 78px #fbd415 solid !important;
  border-left: 78px #fbd415 solid !important;
}
.sun--ba-79 {
  border: 79px #fbd415 solid !important;
}
.sun--bt-79 {
  border-top: 79px #fbd415 solid !important;
}
.sun--br-79 {
  border-right: 79px #fbd415 solid !important;
}
.sun--bl-79 {
  border-left: 79px #fbd415 solid !important;
}
.sun--bb-79 {
  border-bottom: 79px #fbd415 solid !important;
}
.sun--by-79 {
  border-top: 79px #fbd415 solid !important;
  border-bottom: 79px #fbd415 solid !important;
}
.sun--bx-79 {
  border-right: 79px #fbd415 solid !important;
  border-left: 79px #fbd415 solid !important;
}
.sun--ba-80 {
  border: 80px #fbd415 solid !important;
}
.sun--bt-80 {
  border-top: 80px #fbd415 solid !important;
}
.sun--br-80 {
  border-right: 80px #fbd415 solid !important;
}
.sun--bl-80 {
  border-left: 80px #fbd415 solid !important;
}
.sun--bb-80 {
  border-bottom: 80px #fbd415 solid !important;
}
.sun--by-80 {
  border-top: 80px #fbd415 solid !important;
  border-bottom: 80px #fbd415 solid !important;
}
.sun--bx-80 {
  border-right: 80px #fbd415 solid !important;
  border-left: 80px #fbd415 solid !important;
}
.sun--ba-81 {
  border: 81px #fbd415 solid !important;
}
.sun--bt-81 {
  border-top: 81px #fbd415 solid !important;
}
.sun--br-81 {
  border-right: 81px #fbd415 solid !important;
}
.sun--bl-81 {
  border-left: 81px #fbd415 solid !important;
}
.sun--bb-81 {
  border-bottom: 81px #fbd415 solid !important;
}
.sun--by-81 {
  border-top: 81px #fbd415 solid !important;
  border-bottom: 81px #fbd415 solid !important;
}
.sun--bx-81 {
  border-right: 81px #fbd415 solid !important;
  border-left: 81px #fbd415 solid !important;
}
.sun--ba-82 {
  border: 82px #fbd415 solid !important;
}
.sun--bt-82 {
  border-top: 82px #fbd415 solid !important;
}
.sun--br-82 {
  border-right: 82px #fbd415 solid !important;
}
.sun--bl-82 {
  border-left: 82px #fbd415 solid !important;
}
.sun--bb-82 {
  border-bottom: 82px #fbd415 solid !important;
}
.sun--by-82 {
  border-top: 82px #fbd415 solid !important;
  border-bottom: 82px #fbd415 solid !important;
}
.sun--bx-82 {
  border-right: 82px #fbd415 solid !important;
  border-left: 82px #fbd415 solid !important;
}
.sun--ba-83 {
  border: 83px #fbd415 solid !important;
}
.sun--bt-83 {
  border-top: 83px #fbd415 solid !important;
}
.sun--br-83 {
  border-right: 83px #fbd415 solid !important;
}
.sun--bl-83 {
  border-left: 83px #fbd415 solid !important;
}
.sun--bb-83 {
  border-bottom: 83px #fbd415 solid !important;
}
.sun--by-83 {
  border-top: 83px #fbd415 solid !important;
  border-bottom: 83px #fbd415 solid !important;
}
.sun--bx-83 {
  border-right: 83px #fbd415 solid !important;
  border-left: 83px #fbd415 solid !important;
}
.sun--ba-84 {
  border: 84px #fbd415 solid !important;
}
.sun--bt-84 {
  border-top: 84px #fbd415 solid !important;
}
.sun--br-84 {
  border-right: 84px #fbd415 solid !important;
}
.sun--bl-84 {
  border-left: 84px #fbd415 solid !important;
}
.sun--bb-84 {
  border-bottom: 84px #fbd415 solid !important;
}
.sun--by-84 {
  border-top: 84px #fbd415 solid !important;
  border-bottom: 84px #fbd415 solid !important;
}
.sun--bx-84 {
  border-right: 84px #fbd415 solid !important;
  border-left: 84px #fbd415 solid !important;
}
.sun--ba-85 {
  border: 85px #fbd415 solid !important;
}
.sun--bt-85 {
  border-top: 85px #fbd415 solid !important;
}
.sun--br-85 {
  border-right: 85px #fbd415 solid !important;
}
.sun--bl-85 {
  border-left: 85px #fbd415 solid !important;
}
.sun--bb-85 {
  border-bottom: 85px #fbd415 solid !important;
}
.sun--by-85 {
  border-top: 85px #fbd415 solid !important;
  border-bottom: 85px #fbd415 solid !important;
}
.sun--bx-85 {
  border-right: 85px #fbd415 solid !important;
  border-left: 85px #fbd415 solid !important;
}
.sun--ba-86 {
  border: 86px #fbd415 solid !important;
}
.sun--bt-86 {
  border-top: 86px #fbd415 solid !important;
}
.sun--br-86 {
  border-right: 86px #fbd415 solid !important;
}
.sun--bl-86 {
  border-left: 86px #fbd415 solid !important;
}
.sun--bb-86 {
  border-bottom: 86px #fbd415 solid !important;
}
.sun--by-86 {
  border-top: 86px #fbd415 solid !important;
  border-bottom: 86px #fbd415 solid !important;
}
.sun--bx-86 {
  border-right: 86px #fbd415 solid !important;
  border-left: 86px #fbd415 solid !important;
}
.sun--ba-87 {
  border: 87px #fbd415 solid !important;
}
.sun--bt-87 {
  border-top: 87px #fbd415 solid !important;
}
.sun--br-87 {
  border-right: 87px #fbd415 solid !important;
}
.sun--bl-87 {
  border-left: 87px #fbd415 solid !important;
}
.sun--bb-87 {
  border-bottom: 87px #fbd415 solid !important;
}
.sun--by-87 {
  border-top: 87px #fbd415 solid !important;
  border-bottom: 87px #fbd415 solid !important;
}
.sun--bx-87 {
  border-right: 87px #fbd415 solid !important;
  border-left: 87px #fbd415 solid !important;
}
.sun--ba-88 {
  border: 88px #fbd415 solid !important;
}
.sun--bt-88 {
  border-top: 88px #fbd415 solid !important;
}
.sun--br-88 {
  border-right: 88px #fbd415 solid !important;
}
.sun--bl-88 {
  border-left: 88px #fbd415 solid !important;
}
.sun--bb-88 {
  border-bottom: 88px #fbd415 solid !important;
}
.sun--by-88 {
  border-top: 88px #fbd415 solid !important;
  border-bottom: 88px #fbd415 solid !important;
}
.sun--bx-88 {
  border-right: 88px #fbd415 solid !important;
  border-left: 88px #fbd415 solid !important;
}
.sun--ba-89 {
  border: 89px #fbd415 solid !important;
}
.sun--bt-89 {
  border-top: 89px #fbd415 solid !important;
}
.sun--br-89 {
  border-right: 89px #fbd415 solid !important;
}
.sun--bl-89 {
  border-left: 89px #fbd415 solid !important;
}
.sun--bb-89 {
  border-bottom: 89px #fbd415 solid !important;
}
.sun--by-89 {
  border-top: 89px #fbd415 solid !important;
  border-bottom: 89px #fbd415 solid !important;
}
.sun--bx-89 {
  border-right: 89px #fbd415 solid !important;
  border-left: 89px #fbd415 solid !important;
}
.sun--ba-90 {
  border: 90px #fbd415 solid !important;
}
.sun--bt-90 {
  border-top: 90px #fbd415 solid !important;
}
.sun--br-90 {
  border-right: 90px #fbd415 solid !important;
}
.sun--bl-90 {
  border-left: 90px #fbd415 solid !important;
}
.sun--bb-90 {
  border-bottom: 90px #fbd415 solid !important;
}
.sun--by-90 {
  border-top: 90px #fbd415 solid !important;
  border-bottom: 90px #fbd415 solid !important;
}
.sun--bx-90 {
  border-right: 90px #fbd415 solid !important;
  border-left: 90px #fbd415 solid !important;
}
.sun--ba-91 {
  border: 91px #fbd415 solid !important;
}
.sun--bt-91 {
  border-top: 91px #fbd415 solid !important;
}
.sun--br-91 {
  border-right: 91px #fbd415 solid !important;
}
.sun--bl-91 {
  border-left: 91px #fbd415 solid !important;
}
.sun--bb-91 {
  border-bottom: 91px #fbd415 solid !important;
}
.sun--by-91 {
  border-top: 91px #fbd415 solid !important;
  border-bottom: 91px #fbd415 solid !important;
}
.sun--bx-91 {
  border-right: 91px #fbd415 solid !important;
  border-left: 91px #fbd415 solid !important;
}
.sun--ba-92 {
  border: 92px #fbd415 solid !important;
}
.sun--bt-92 {
  border-top: 92px #fbd415 solid !important;
}
.sun--br-92 {
  border-right: 92px #fbd415 solid !important;
}
.sun--bl-92 {
  border-left: 92px #fbd415 solid !important;
}
.sun--bb-92 {
  border-bottom: 92px #fbd415 solid !important;
}
.sun--by-92 {
  border-top: 92px #fbd415 solid !important;
  border-bottom: 92px #fbd415 solid !important;
}
.sun--bx-92 {
  border-right: 92px #fbd415 solid !important;
  border-left: 92px #fbd415 solid !important;
}
.sun--ba-93 {
  border: 93px #fbd415 solid !important;
}
.sun--bt-93 {
  border-top: 93px #fbd415 solid !important;
}
.sun--br-93 {
  border-right: 93px #fbd415 solid !important;
}
.sun--bl-93 {
  border-left: 93px #fbd415 solid !important;
}
.sun--bb-93 {
  border-bottom: 93px #fbd415 solid !important;
}
.sun--by-93 {
  border-top: 93px #fbd415 solid !important;
  border-bottom: 93px #fbd415 solid !important;
}
.sun--bx-93 {
  border-right: 93px #fbd415 solid !important;
  border-left: 93px #fbd415 solid !important;
}
.sun--ba-94 {
  border: 94px #fbd415 solid !important;
}
.sun--bt-94 {
  border-top: 94px #fbd415 solid !important;
}
.sun--br-94 {
  border-right: 94px #fbd415 solid !important;
}
.sun--bl-94 {
  border-left: 94px #fbd415 solid !important;
}
.sun--bb-94 {
  border-bottom: 94px #fbd415 solid !important;
}
.sun--by-94 {
  border-top: 94px #fbd415 solid !important;
  border-bottom: 94px #fbd415 solid !important;
}
.sun--bx-94 {
  border-right: 94px #fbd415 solid !important;
  border-left: 94px #fbd415 solid !important;
}
.sun--ba-95 {
  border: 95px #fbd415 solid !important;
}
.sun--bt-95 {
  border-top: 95px #fbd415 solid !important;
}
.sun--br-95 {
  border-right: 95px #fbd415 solid !important;
}
.sun--bl-95 {
  border-left: 95px #fbd415 solid !important;
}
.sun--bb-95 {
  border-bottom: 95px #fbd415 solid !important;
}
.sun--by-95 {
  border-top: 95px #fbd415 solid !important;
  border-bottom: 95px #fbd415 solid !important;
}
.sun--bx-95 {
  border-right: 95px #fbd415 solid !important;
  border-left: 95px #fbd415 solid !important;
}
.sun--ba-96 {
  border: 96px #fbd415 solid !important;
}
.sun--bt-96 {
  border-top: 96px #fbd415 solid !important;
}
.sun--br-96 {
  border-right: 96px #fbd415 solid !important;
}
.sun--bl-96 {
  border-left: 96px #fbd415 solid !important;
}
.sun--bb-96 {
  border-bottom: 96px #fbd415 solid !important;
}
.sun--by-96 {
  border-top: 96px #fbd415 solid !important;
  border-bottom: 96px #fbd415 solid !important;
}
.sun--bx-96 {
  border-right: 96px #fbd415 solid !important;
  border-left: 96px #fbd415 solid !important;
}
.sun--ba-97 {
  border: 97px #fbd415 solid !important;
}
.sun--bt-97 {
  border-top: 97px #fbd415 solid !important;
}
.sun--br-97 {
  border-right: 97px #fbd415 solid !important;
}
.sun--bl-97 {
  border-left: 97px #fbd415 solid !important;
}
.sun--bb-97 {
  border-bottom: 97px #fbd415 solid !important;
}
.sun--by-97 {
  border-top: 97px #fbd415 solid !important;
  border-bottom: 97px #fbd415 solid !important;
}
.sun--bx-97 {
  border-right: 97px #fbd415 solid !important;
  border-left: 97px #fbd415 solid !important;
}
.sun--ba-98 {
  border: 98px #fbd415 solid !important;
}
.sun--bt-98 {
  border-top: 98px #fbd415 solid !important;
}
.sun--br-98 {
  border-right: 98px #fbd415 solid !important;
}
.sun--bl-98 {
  border-left: 98px #fbd415 solid !important;
}
.sun--bb-98 {
  border-bottom: 98px #fbd415 solid !important;
}
.sun--by-98 {
  border-top: 98px #fbd415 solid !important;
  border-bottom: 98px #fbd415 solid !important;
}
.sun--bx-98 {
  border-right: 98px #fbd415 solid !important;
  border-left: 98px #fbd415 solid !important;
}
.sun--ba-99 {
  border: 99px #fbd415 solid !important;
}
.sun--bt-99 {
  border-top: 99px #fbd415 solid !important;
}
.sun--br-99 {
  border-right: 99px #fbd415 solid !important;
}
.sun--bl-99 {
  border-left: 99px #fbd415 solid !important;
}
.sun--bb-99 {
  border-bottom: 99px #fbd415 solid !important;
}
.sun--by-99 {
  border-top: 99px #fbd415 solid !important;
  border-bottom: 99px #fbd415 solid !important;
}
.sun--bx-99 {
  border-right: 99px #fbd415 solid !important;
  border-left: 99px #fbd415 solid !important;
}
.sun--ba-100 {
  border: 100px #fbd415 solid !important;
}
.sun--bt-100 {
  border-top: 100px #fbd415 solid !important;
}
.sun--br-100 {
  border-right: 100px #fbd415 solid !important;
}
.sun--bl-100 {
  border-left: 100px #fbd415 solid !important;
}
.sun--bb-100 {
  border-bottom: 100px #fbd415 solid !important;
}
.sun--by-100 {
  border-top: 100px #fbd415 solid !important;
  border-bottom: 100px #fbd415 solid !important;
}
.sun--bx-100 {
  border-right: 100px #fbd415 solid !important;
  border-left: 100px #fbd415 solid !important;
}
.island-spice--ba-1 {
  border: 1px #fff9ed solid !important;
}
.island-spice--bt-1 {
  border-top: 1px #fff9ed solid !important;
}
.island-spice--br-1 {
  border-right: 1px #fff9ed solid !important;
}
.island-spice--bl-1 {
  border-left: 1px #fff9ed solid !important;
}
.island-spice--bb-1 {
  border-bottom: 1px #fff9ed solid !important;
}
.island-spice--by-1 {
  border-top: 1px #fff9ed solid !important;
  border-bottom: 1px #fff9ed solid !important;
}
.island-spice--bx-1 {
  border-right: 1px #fff9ed solid !important;
  border-left: 1px #fff9ed solid !important;
}
.island-spice--ba-2 {
  border: 2px #fff9ed solid !important;
}
.island-spice--bt-2 {
  border-top: 2px #fff9ed solid !important;
}
.island-spice--br-2 {
  border-right: 2px #fff9ed solid !important;
}
.island-spice--bl-2 {
  border-left: 2px #fff9ed solid !important;
}
.island-spice--bb-2 {
  border-bottom: 2px #fff9ed solid !important;
}
.island-spice--by-2 {
  border-top: 2px #fff9ed solid !important;
  border-bottom: 2px #fff9ed solid !important;
}
.island-spice--bx-2 {
  border-right: 2px #fff9ed solid !important;
  border-left: 2px #fff9ed solid !important;
}
.island-spice--ba-3 {
  border: 3px #fff9ed solid !important;
}
.island-spice--bt-3 {
  border-top: 3px #fff9ed solid !important;
}
.island-spice--br-3 {
  border-right: 3px #fff9ed solid !important;
}
.island-spice--bl-3 {
  border-left: 3px #fff9ed solid !important;
}
.island-spice--bb-3 {
  border-bottom: 3px #fff9ed solid !important;
}
.island-spice--by-3 {
  border-top: 3px #fff9ed solid !important;
  border-bottom: 3px #fff9ed solid !important;
}
.island-spice--bx-3 {
  border-right: 3px #fff9ed solid !important;
  border-left: 3px #fff9ed solid !important;
}
.island-spice--ba-4 {
  border: 4px #fff9ed solid !important;
}
.island-spice--bt-4 {
  border-top: 4px #fff9ed solid !important;
}
.island-spice--br-4 {
  border-right: 4px #fff9ed solid !important;
}
.island-spice--bl-4 {
  border-left: 4px #fff9ed solid !important;
}
.island-spice--bb-4 {
  border-bottom: 4px #fff9ed solid !important;
}
.island-spice--by-4 {
  border-top: 4px #fff9ed solid !important;
  border-bottom: 4px #fff9ed solid !important;
}
.island-spice--bx-4 {
  border-right: 4px #fff9ed solid !important;
  border-left: 4px #fff9ed solid !important;
}
.island-spice--ba-5 {
  border: 5px #fff9ed solid !important;
}
.island-spice--bt-5 {
  border-top: 5px #fff9ed solid !important;
}
.island-spice--br-5 {
  border-right: 5px #fff9ed solid !important;
}
.island-spice--bl-5 {
  border-left: 5px #fff9ed solid !important;
}
.island-spice--bb-5 {
  border-bottom: 5px #fff9ed solid !important;
}
.island-spice--by-5 {
  border-top: 5px #fff9ed solid !important;
  border-bottom: 5px #fff9ed solid !important;
}
.island-spice--bx-5 {
  border-right: 5px #fff9ed solid !important;
  border-left: 5px #fff9ed solid !important;
}
.island-spice--ba-6 {
  border: 6px #fff9ed solid !important;
}
.island-spice--bt-6 {
  border-top: 6px #fff9ed solid !important;
}
.island-spice--br-6 {
  border-right: 6px #fff9ed solid !important;
}
.island-spice--bl-6 {
  border-left: 6px #fff9ed solid !important;
}
.island-spice--bb-6 {
  border-bottom: 6px #fff9ed solid !important;
}
.island-spice--by-6 {
  border-top: 6px #fff9ed solid !important;
  border-bottom: 6px #fff9ed solid !important;
}
.island-spice--bx-6 {
  border-right: 6px #fff9ed solid !important;
  border-left: 6px #fff9ed solid !important;
}
.island-spice--ba-7 {
  border: 7px #fff9ed solid !important;
}
.island-spice--bt-7 {
  border-top: 7px #fff9ed solid !important;
}
.island-spice--br-7 {
  border-right: 7px #fff9ed solid !important;
}
.island-spice--bl-7 {
  border-left: 7px #fff9ed solid !important;
}
.island-spice--bb-7 {
  border-bottom: 7px #fff9ed solid !important;
}
.island-spice--by-7 {
  border-top: 7px #fff9ed solid !important;
  border-bottom: 7px #fff9ed solid !important;
}
.island-spice--bx-7 {
  border-right: 7px #fff9ed solid !important;
  border-left: 7px #fff9ed solid !important;
}
.island-spice--ba-8 {
  border: 8px #fff9ed solid !important;
}
.island-spice--bt-8 {
  border-top: 8px #fff9ed solid !important;
}
.island-spice--br-8 {
  border-right: 8px #fff9ed solid !important;
}
.island-spice--bl-8 {
  border-left: 8px #fff9ed solid !important;
}
.island-spice--bb-8 {
  border-bottom: 8px #fff9ed solid !important;
}
.island-spice--by-8 {
  border-top: 8px #fff9ed solid !important;
  border-bottom: 8px #fff9ed solid !important;
}
.island-spice--bx-8 {
  border-right: 8px #fff9ed solid !important;
  border-left: 8px #fff9ed solid !important;
}
.island-spice--ba-9 {
  border: 9px #fff9ed solid !important;
}
.island-spice--bt-9 {
  border-top: 9px #fff9ed solid !important;
}
.island-spice--br-9 {
  border-right: 9px #fff9ed solid !important;
}
.island-spice--bl-9 {
  border-left: 9px #fff9ed solid !important;
}
.island-spice--bb-9 {
  border-bottom: 9px #fff9ed solid !important;
}
.island-spice--by-9 {
  border-top: 9px #fff9ed solid !important;
  border-bottom: 9px #fff9ed solid !important;
}
.island-spice--bx-9 {
  border-right: 9px #fff9ed solid !important;
  border-left: 9px #fff9ed solid !important;
}
.island-spice--ba-10 {
  border: 10px #fff9ed solid !important;
}
.island-spice--bt-10 {
  border-top: 10px #fff9ed solid !important;
}
.island-spice--br-10 {
  border-right: 10px #fff9ed solid !important;
}
.island-spice--bl-10 {
  border-left: 10px #fff9ed solid !important;
}
.island-spice--bb-10 {
  border-bottom: 10px #fff9ed solid !important;
}
.island-spice--by-10 {
  border-top: 10px #fff9ed solid !important;
  border-bottom: 10px #fff9ed solid !important;
}
.island-spice--bx-10 {
  border-right: 10px #fff9ed solid !important;
  border-left: 10px #fff9ed solid !important;
}
.island-spice--ba-11 {
  border: 11px #fff9ed solid !important;
}
.island-spice--bt-11 {
  border-top: 11px #fff9ed solid !important;
}
.island-spice--br-11 {
  border-right: 11px #fff9ed solid !important;
}
.island-spice--bl-11 {
  border-left: 11px #fff9ed solid !important;
}
.island-spice--bb-11 {
  border-bottom: 11px #fff9ed solid !important;
}
.island-spice--by-11 {
  border-top: 11px #fff9ed solid !important;
  border-bottom: 11px #fff9ed solid !important;
}
.island-spice--bx-11 {
  border-right: 11px #fff9ed solid !important;
  border-left: 11px #fff9ed solid !important;
}
.island-spice--ba-12 {
  border: 12px #fff9ed solid !important;
}
.island-spice--bt-12 {
  border-top: 12px #fff9ed solid !important;
}
.island-spice--br-12 {
  border-right: 12px #fff9ed solid !important;
}
.island-spice--bl-12 {
  border-left: 12px #fff9ed solid !important;
}
.island-spice--bb-12 {
  border-bottom: 12px #fff9ed solid !important;
}
.island-spice--by-12 {
  border-top: 12px #fff9ed solid !important;
  border-bottom: 12px #fff9ed solid !important;
}
.island-spice--bx-12 {
  border-right: 12px #fff9ed solid !important;
  border-left: 12px #fff9ed solid !important;
}
.island-spice--ba-13 {
  border: 13px #fff9ed solid !important;
}
.island-spice--bt-13 {
  border-top: 13px #fff9ed solid !important;
}
.island-spice--br-13 {
  border-right: 13px #fff9ed solid !important;
}
.island-spice--bl-13 {
  border-left: 13px #fff9ed solid !important;
}
.island-spice--bb-13 {
  border-bottom: 13px #fff9ed solid !important;
}
.island-spice--by-13 {
  border-top: 13px #fff9ed solid !important;
  border-bottom: 13px #fff9ed solid !important;
}
.island-spice--bx-13 {
  border-right: 13px #fff9ed solid !important;
  border-left: 13px #fff9ed solid !important;
}
.island-spice--ba-14 {
  border: 14px #fff9ed solid !important;
}
.island-spice--bt-14 {
  border-top: 14px #fff9ed solid !important;
}
.island-spice--br-14 {
  border-right: 14px #fff9ed solid !important;
}
.island-spice--bl-14 {
  border-left: 14px #fff9ed solid !important;
}
.island-spice--bb-14 {
  border-bottom: 14px #fff9ed solid !important;
}
.island-spice--by-14 {
  border-top: 14px #fff9ed solid !important;
  border-bottom: 14px #fff9ed solid !important;
}
.island-spice--bx-14 {
  border-right: 14px #fff9ed solid !important;
  border-left: 14px #fff9ed solid !important;
}
.island-spice--ba-15 {
  border: 15px #fff9ed solid !important;
}
.island-spice--bt-15 {
  border-top: 15px #fff9ed solid !important;
}
.island-spice--br-15 {
  border-right: 15px #fff9ed solid !important;
}
.island-spice--bl-15 {
  border-left: 15px #fff9ed solid !important;
}
.island-spice--bb-15 {
  border-bottom: 15px #fff9ed solid !important;
}
.island-spice--by-15 {
  border-top: 15px #fff9ed solid !important;
  border-bottom: 15px #fff9ed solid !important;
}
.island-spice--bx-15 {
  border-right: 15px #fff9ed solid !important;
  border-left: 15px #fff9ed solid !important;
}
.island-spice--ba-16 {
  border: 16px #fff9ed solid !important;
}
.island-spice--bt-16 {
  border-top: 16px #fff9ed solid !important;
}
.island-spice--br-16 {
  border-right: 16px #fff9ed solid !important;
}
.island-spice--bl-16 {
  border-left: 16px #fff9ed solid !important;
}
.island-spice--bb-16 {
  border-bottom: 16px #fff9ed solid !important;
}
.island-spice--by-16 {
  border-top: 16px #fff9ed solid !important;
  border-bottom: 16px #fff9ed solid !important;
}
.island-spice--bx-16 {
  border-right: 16px #fff9ed solid !important;
  border-left: 16px #fff9ed solid !important;
}
.island-spice--ba-17 {
  border: 17px #fff9ed solid !important;
}
.island-spice--bt-17 {
  border-top: 17px #fff9ed solid !important;
}
.island-spice--br-17 {
  border-right: 17px #fff9ed solid !important;
}
.island-spice--bl-17 {
  border-left: 17px #fff9ed solid !important;
}
.island-spice--bb-17 {
  border-bottom: 17px #fff9ed solid !important;
}
.island-spice--by-17 {
  border-top: 17px #fff9ed solid !important;
  border-bottom: 17px #fff9ed solid !important;
}
.island-spice--bx-17 {
  border-right: 17px #fff9ed solid !important;
  border-left: 17px #fff9ed solid !important;
}
.island-spice--ba-18 {
  border: 18px #fff9ed solid !important;
}
.island-spice--bt-18 {
  border-top: 18px #fff9ed solid !important;
}
.island-spice--br-18 {
  border-right: 18px #fff9ed solid !important;
}
.island-spice--bl-18 {
  border-left: 18px #fff9ed solid !important;
}
.island-spice--bb-18 {
  border-bottom: 18px #fff9ed solid !important;
}
.island-spice--by-18 {
  border-top: 18px #fff9ed solid !important;
  border-bottom: 18px #fff9ed solid !important;
}
.island-spice--bx-18 {
  border-right: 18px #fff9ed solid !important;
  border-left: 18px #fff9ed solid !important;
}
.island-spice--ba-19 {
  border: 19px #fff9ed solid !important;
}
.island-spice--bt-19 {
  border-top: 19px #fff9ed solid !important;
}
.island-spice--br-19 {
  border-right: 19px #fff9ed solid !important;
}
.island-spice--bl-19 {
  border-left: 19px #fff9ed solid !important;
}
.island-spice--bb-19 {
  border-bottom: 19px #fff9ed solid !important;
}
.island-spice--by-19 {
  border-top: 19px #fff9ed solid !important;
  border-bottom: 19px #fff9ed solid !important;
}
.island-spice--bx-19 {
  border-right: 19px #fff9ed solid !important;
  border-left: 19px #fff9ed solid !important;
}
.island-spice--ba-20 {
  border: 20px #fff9ed solid !important;
}
.island-spice--bt-20 {
  border-top: 20px #fff9ed solid !important;
}
.island-spice--br-20 {
  border-right: 20px #fff9ed solid !important;
}
.island-spice--bl-20 {
  border-left: 20px #fff9ed solid !important;
}
.island-spice--bb-20 {
  border-bottom: 20px #fff9ed solid !important;
}
.island-spice--by-20 {
  border-top: 20px #fff9ed solid !important;
  border-bottom: 20px #fff9ed solid !important;
}
.island-spice--bx-20 {
  border-right: 20px #fff9ed solid !important;
  border-left: 20px #fff9ed solid !important;
}
.island-spice--ba-21 {
  border: 21px #fff9ed solid !important;
}
.island-spice--bt-21 {
  border-top: 21px #fff9ed solid !important;
}
.island-spice--br-21 {
  border-right: 21px #fff9ed solid !important;
}
.island-spice--bl-21 {
  border-left: 21px #fff9ed solid !important;
}
.island-spice--bb-21 {
  border-bottom: 21px #fff9ed solid !important;
}
.island-spice--by-21 {
  border-top: 21px #fff9ed solid !important;
  border-bottom: 21px #fff9ed solid !important;
}
.island-spice--bx-21 {
  border-right: 21px #fff9ed solid !important;
  border-left: 21px #fff9ed solid !important;
}
.island-spice--ba-22 {
  border: 22px #fff9ed solid !important;
}
.island-spice--bt-22 {
  border-top: 22px #fff9ed solid !important;
}
.island-spice--br-22 {
  border-right: 22px #fff9ed solid !important;
}
.island-spice--bl-22 {
  border-left: 22px #fff9ed solid !important;
}
.island-spice--bb-22 {
  border-bottom: 22px #fff9ed solid !important;
}
.island-spice--by-22 {
  border-top: 22px #fff9ed solid !important;
  border-bottom: 22px #fff9ed solid !important;
}
.island-spice--bx-22 {
  border-right: 22px #fff9ed solid !important;
  border-left: 22px #fff9ed solid !important;
}
.island-spice--ba-23 {
  border: 23px #fff9ed solid !important;
}
.island-spice--bt-23 {
  border-top: 23px #fff9ed solid !important;
}
.island-spice--br-23 {
  border-right: 23px #fff9ed solid !important;
}
.island-spice--bl-23 {
  border-left: 23px #fff9ed solid !important;
}
.island-spice--bb-23 {
  border-bottom: 23px #fff9ed solid !important;
}
.island-spice--by-23 {
  border-top: 23px #fff9ed solid !important;
  border-bottom: 23px #fff9ed solid !important;
}
.island-spice--bx-23 {
  border-right: 23px #fff9ed solid !important;
  border-left: 23px #fff9ed solid !important;
}
.island-spice--ba-24 {
  border: 24px #fff9ed solid !important;
}
.island-spice--bt-24 {
  border-top: 24px #fff9ed solid !important;
}
.island-spice--br-24 {
  border-right: 24px #fff9ed solid !important;
}
.island-spice--bl-24 {
  border-left: 24px #fff9ed solid !important;
}
.island-spice--bb-24 {
  border-bottom: 24px #fff9ed solid !important;
}
.island-spice--by-24 {
  border-top: 24px #fff9ed solid !important;
  border-bottom: 24px #fff9ed solid !important;
}
.island-spice--bx-24 {
  border-right: 24px #fff9ed solid !important;
  border-left: 24px #fff9ed solid !important;
}
.island-spice--ba-25 {
  border: 25px #fff9ed solid !important;
}
.island-spice--bt-25 {
  border-top: 25px #fff9ed solid !important;
}
.island-spice--br-25 {
  border-right: 25px #fff9ed solid !important;
}
.island-spice--bl-25 {
  border-left: 25px #fff9ed solid !important;
}
.island-spice--bb-25 {
  border-bottom: 25px #fff9ed solid !important;
}
.island-spice--by-25 {
  border-top: 25px #fff9ed solid !important;
  border-bottom: 25px #fff9ed solid !important;
}
.island-spice--bx-25 {
  border-right: 25px #fff9ed solid !important;
  border-left: 25px #fff9ed solid !important;
}
.island-spice--ba-26 {
  border: 26px #fff9ed solid !important;
}
.island-spice--bt-26 {
  border-top: 26px #fff9ed solid !important;
}
.island-spice--br-26 {
  border-right: 26px #fff9ed solid !important;
}
.island-spice--bl-26 {
  border-left: 26px #fff9ed solid !important;
}
.island-spice--bb-26 {
  border-bottom: 26px #fff9ed solid !important;
}
.island-spice--by-26 {
  border-top: 26px #fff9ed solid !important;
  border-bottom: 26px #fff9ed solid !important;
}
.island-spice--bx-26 {
  border-right: 26px #fff9ed solid !important;
  border-left: 26px #fff9ed solid !important;
}
.island-spice--ba-27 {
  border: 27px #fff9ed solid !important;
}
.island-spice--bt-27 {
  border-top: 27px #fff9ed solid !important;
}
.island-spice--br-27 {
  border-right: 27px #fff9ed solid !important;
}
.island-spice--bl-27 {
  border-left: 27px #fff9ed solid !important;
}
.island-spice--bb-27 {
  border-bottom: 27px #fff9ed solid !important;
}
.island-spice--by-27 {
  border-top: 27px #fff9ed solid !important;
  border-bottom: 27px #fff9ed solid !important;
}
.island-spice--bx-27 {
  border-right: 27px #fff9ed solid !important;
  border-left: 27px #fff9ed solid !important;
}
.island-spice--ba-28 {
  border: 28px #fff9ed solid !important;
}
.island-spice--bt-28 {
  border-top: 28px #fff9ed solid !important;
}
.island-spice--br-28 {
  border-right: 28px #fff9ed solid !important;
}
.island-spice--bl-28 {
  border-left: 28px #fff9ed solid !important;
}
.island-spice--bb-28 {
  border-bottom: 28px #fff9ed solid !important;
}
.island-spice--by-28 {
  border-top: 28px #fff9ed solid !important;
  border-bottom: 28px #fff9ed solid !important;
}
.island-spice--bx-28 {
  border-right: 28px #fff9ed solid !important;
  border-left: 28px #fff9ed solid !important;
}
.island-spice--ba-29 {
  border: 29px #fff9ed solid !important;
}
.island-spice--bt-29 {
  border-top: 29px #fff9ed solid !important;
}
.island-spice--br-29 {
  border-right: 29px #fff9ed solid !important;
}
.island-spice--bl-29 {
  border-left: 29px #fff9ed solid !important;
}
.island-spice--bb-29 {
  border-bottom: 29px #fff9ed solid !important;
}
.island-spice--by-29 {
  border-top: 29px #fff9ed solid !important;
  border-bottom: 29px #fff9ed solid !important;
}
.island-spice--bx-29 {
  border-right: 29px #fff9ed solid !important;
  border-left: 29px #fff9ed solid !important;
}
.island-spice--ba-30 {
  border: 30px #fff9ed solid !important;
}
.island-spice--bt-30 {
  border-top: 30px #fff9ed solid !important;
}
.island-spice--br-30 {
  border-right: 30px #fff9ed solid !important;
}
.island-spice--bl-30 {
  border-left: 30px #fff9ed solid !important;
}
.island-spice--bb-30 {
  border-bottom: 30px #fff9ed solid !important;
}
.island-spice--by-30 {
  border-top: 30px #fff9ed solid !important;
  border-bottom: 30px #fff9ed solid !important;
}
.island-spice--bx-30 {
  border-right: 30px #fff9ed solid !important;
  border-left: 30px #fff9ed solid !important;
}
.island-spice--ba-31 {
  border: 31px #fff9ed solid !important;
}
.island-spice--bt-31 {
  border-top: 31px #fff9ed solid !important;
}
.island-spice--br-31 {
  border-right: 31px #fff9ed solid !important;
}
.island-spice--bl-31 {
  border-left: 31px #fff9ed solid !important;
}
.island-spice--bb-31 {
  border-bottom: 31px #fff9ed solid !important;
}
.island-spice--by-31 {
  border-top: 31px #fff9ed solid !important;
  border-bottom: 31px #fff9ed solid !important;
}
.island-spice--bx-31 {
  border-right: 31px #fff9ed solid !important;
  border-left: 31px #fff9ed solid !important;
}
.island-spice--ba-32 {
  border: 32px #fff9ed solid !important;
}
.island-spice--bt-32 {
  border-top: 32px #fff9ed solid !important;
}
.island-spice--br-32 {
  border-right: 32px #fff9ed solid !important;
}
.island-spice--bl-32 {
  border-left: 32px #fff9ed solid !important;
}
.island-spice--bb-32 {
  border-bottom: 32px #fff9ed solid !important;
}
.island-spice--by-32 {
  border-top: 32px #fff9ed solid !important;
  border-bottom: 32px #fff9ed solid !important;
}
.island-spice--bx-32 {
  border-right: 32px #fff9ed solid !important;
  border-left: 32px #fff9ed solid !important;
}
.island-spice--ba-33 {
  border: 33px #fff9ed solid !important;
}
.island-spice--bt-33 {
  border-top: 33px #fff9ed solid !important;
}
.island-spice--br-33 {
  border-right: 33px #fff9ed solid !important;
}
.island-spice--bl-33 {
  border-left: 33px #fff9ed solid !important;
}
.island-spice--bb-33 {
  border-bottom: 33px #fff9ed solid !important;
}
.island-spice--by-33 {
  border-top: 33px #fff9ed solid !important;
  border-bottom: 33px #fff9ed solid !important;
}
.island-spice--bx-33 {
  border-right: 33px #fff9ed solid !important;
  border-left: 33px #fff9ed solid !important;
}
.island-spice--ba-34 {
  border: 34px #fff9ed solid !important;
}
.island-spice--bt-34 {
  border-top: 34px #fff9ed solid !important;
}
.island-spice--br-34 {
  border-right: 34px #fff9ed solid !important;
}
.island-spice--bl-34 {
  border-left: 34px #fff9ed solid !important;
}
.island-spice--bb-34 {
  border-bottom: 34px #fff9ed solid !important;
}
.island-spice--by-34 {
  border-top: 34px #fff9ed solid !important;
  border-bottom: 34px #fff9ed solid !important;
}
.island-spice--bx-34 {
  border-right: 34px #fff9ed solid !important;
  border-left: 34px #fff9ed solid !important;
}
.island-spice--ba-35 {
  border: 35px #fff9ed solid !important;
}
.island-spice--bt-35 {
  border-top: 35px #fff9ed solid !important;
}
.island-spice--br-35 {
  border-right: 35px #fff9ed solid !important;
}
.island-spice--bl-35 {
  border-left: 35px #fff9ed solid !important;
}
.island-spice--bb-35 {
  border-bottom: 35px #fff9ed solid !important;
}
.island-spice--by-35 {
  border-top: 35px #fff9ed solid !important;
  border-bottom: 35px #fff9ed solid !important;
}
.island-spice--bx-35 {
  border-right: 35px #fff9ed solid !important;
  border-left: 35px #fff9ed solid !important;
}
.island-spice--ba-36 {
  border: 36px #fff9ed solid !important;
}
.island-spice--bt-36 {
  border-top: 36px #fff9ed solid !important;
}
.island-spice--br-36 {
  border-right: 36px #fff9ed solid !important;
}
.island-spice--bl-36 {
  border-left: 36px #fff9ed solid !important;
}
.island-spice--bb-36 {
  border-bottom: 36px #fff9ed solid !important;
}
.island-spice--by-36 {
  border-top: 36px #fff9ed solid !important;
  border-bottom: 36px #fff9ed solid !important;
}
.island-spice--bx-36 {
  border-right: 36px #fff9ed solid !important;
  border-left: 36px #fff9ed solid !important;
}
.island-spice--ba-37 {
  border: 37px #fff9ed solid !important;
}
.island-spice--bt-37 {
  border-top: 37px #fff9ed solid !important;
}
.island-spice--br-37 {
  border-right: 37px #fff9ed solid !important;
}
.island-spice--bl-37 {
  border-left: 37px #fff9ed solid !important;
}
.island-spice--bb-37 {
  border-bottom: 37px #fff9ed solid !important;
}
.island-spice--by-37 {
  border-top: 37px #fff9ed solid !important;
  border-bottom: 37px #fff9ed solid !important;
}
.island-spice--bx-37 {
  border-right: 37px #fff9ed solid !important;
  border-left: 37px #fff9ed solid !important;
}
.island-spice--ba-38 {
  border: 38px #fff9ed solid !important;
}
.island-spice--bt-38 {
  border-top: 38px #fff9ed solid !important;
}
.island-spice--br-38 {
  border-right: 38px #fff9ed solid !important;
}
.island-spice--bl-38 {
  border-left: 38px #fff9ed solid !important;
}
.island-spice--bb-38 {
  border-bottom: 38px #fff9ed solid !important;
}
.island-spice--by-38 {
  border-top: 38px #fff9ed solid !important;
  border-bottom: 38px #fff9ed solid !important;
}
.island-spice--bx-38 {
  border-right: 38px #fff9ed solid !important;
  border-left: 38px #fff9ed solid !important;
}
.island-spice--ba-39 {
  border: 39px #fff9ed solid !important;
}
.island-spice--bt-39 {
  border-top: 39px #fff9ed solid !important;
}
.island-spice--br-39 {
  border-right: 39px #fff9ed solid !important;
}
.island-spice--bl-39 {
  border-left: 39px #fff9ed solid !important;
}
.island-spice--bb-39 {
  border-bottom: 39px #fff9ed solid !important;
}
.island-spice--by-39 {
  border-top: 39px #fff9ed solid !important;
  border-bottom: 39px #fff9ed solid !important;
}
.island-spice--bx-39 {
  border-right: 39px #fff9ed solid !important;
  border-left: 39px #fff9ed solid !important;
}
.island-spice--ba-40 {
  border: 40px #fff9ed solid !important;
}
.island-spice--bt-40 {
  border-top: 40px #fff9ed solid !important;
}
.island-spice--br-40 {
  border-right: 40px #fff9ed solid !important;
}
.island-spice--bl-40 {
  border-left: 40px #fff9ed solid !important;
}
.island-spice--bb-40 {
  border-bottom: 40px #fff9ed solid !important;
}
.island-spice--by-40 {
  border-top: 40px #fff9ed solid !important;
  border-bottom: 40px #fff9ed solid !important;
}
.island-spice--bx-40 {
  border-right: 40px #fff9ed solid !important;
  border-left: 40px #fff9ed solid !important;
}
.island-spice--ba-41 {
  border: 41px #fff9ed solid !important;
}
.island-spice--bt-41 {
  border-top: 41px #fff9ed solid !important;
}
.island-spice--br-41 {
  border-right: 41px #fff9ed solid !important;
}
.island-spice--bl-41 {
  border-left: 41px #fff9ed solid !important;
}
.island-spice--bb-41 {
  border-bottom: 41px #fff9ed solid !important;
}
.island-spice--by-41 {
  border-top: 41px #fff9ed solid !important;
  border-bottom: 41px #fff9ed solid !important;
}
.island-spice--bx-41 {
  border-right: 41px #fff9ed solid !important;
  border-left: 41px #fff9ed solid !important;
}
.island-spice--ba-42 {
  border: 42px #fff9ed solid !important;
}
.island-spice--bt-42 {
  border-top: 42px #fff9ed solid !important;
}
.island-spice--br-42 {
  border-right: 42px #fff9ed solid !important;
}
.island-spice--bl-42 {
  border-left: 42px #fff9ed solid !important;
}
.island-spice--bb-42 {
  border-bottom: 42px #fff9ed solid !important;
}
.island-spice--by-42 {
  border-top: 42px #fff9ed solid !important;
  border-bottom: 42px #fff9ed solid !important;
}
.island-spice--bx-42 {
  border-right: 42px #fff9ed solid !important;
  border-left: 42px #fff9ed solid !important;
}
.island-spice--ba-43 {
  border: 43px #fff9ed solid !important;
}
.island-spice--bt-43 {
  border-top: 43px #fff9ed solid !important;
}
.island-spice--br-43 {
  border-right: 43px #fff9ed solid !important;
}
.island-spice--bl-43 {
  border-left: 43px #fff9ed solid !important;
}
.island-spice--bb-43 {
  border-bottom: 43px #fff9ed solid !important;
}
.island-spice--by-43 {
  border-top: 43px #fff9ed solid !important;
  border-bottom: 43px #fff9ed solid !important;
}
.island-spice--bx-43 {
  border-right: 43px #fff9ed solid !important;
  border-left: 43px #fff9ed solid !important;
}
.island-spice--ba-44 {
  border: 44px #fff9ed solid !important;
}
.island-spice--bt-44 {
  border-top: 44px #fff9ed solid !important;
}
.island-spice--br-44 {
  border-right: 44px #fff9ed solid !important;
}
.island-spice--bl-44 {
  border-left: 44px #fff9ed solid !important;
}
.island-spice--bb-44 {
  border-bottom: 44px #fff9ed solid !important;
}
.island-spice--by-44 {
  border-top: 44px #fff9ed solid !important;
  border-bottom: 44px #fff9ed solid !important;
}
.island-spice--bx-44 {
  border-right: 44px #fff9ed solid !important;
  border-left: 44px #fff9ed solid !important;
}
.island-spice--ba-45 {
  border: 45px #fff9ed solid !important;
}
.island-spice--bt-45 {
  border-top: 45px #fff9ed solid !important;
}
.island-spice--br-45 {
  border-right: 45px #fff9ed solid !important;
}
.island-spice--bl-45 {
  border-left: 45px #fff9ed solid !important;
}
.island-spice--bb-45 {
  border-bottom: 45px #fff9ed solid !important;
}
.island-spice--by-45 {
  border-top: 45px #fff9ed solid !important;
  border-bottom: 45px #fff9ed solid !important;
}
.island-spice--bx-45 {
  border-right: 45px #fff9ed solid !important;
  border-left: 45px #fff9ed solid !important;
}
.island-spice--ba-46 {
  border: 46px #fff9ed solid !important;
}
.island-spice--bt-46 {
  border-top: 46px #fff9ed solid !important;
}
.island-spice--br-46 {
  border-right: 46px #fff9ed solid !important;
}
.island-spice--bl-46 {
  border-left: 46px #fff9ed solid !important;
}
.island-spice--bb-46 {
  border-bottom: 46px #fff9ed solid !important;
}
.island-spice--by-46 {
  border-top: 46px #fff9ed solid !important;
  border-bottom: 46px #fff9ed solid !important;
}
.island-spice--bx-46 {
  border-right: 46px #fff9ed solid !important;
  border-left: 46px #fff9ed solid !important;
}
.island-spice--ba-47 {
  border: 47px #fff9ed solid !important;
}
.island-spice--bt-47 {
  border-top: 47px #fff9ed solid !important;
}
.island-spice--br-47 {
  border-right: 47px #fff9ed solid !important;
}
.island-spice--bl-47 {
  border-left: 47px #fff9ed solid !important;
}
.island-spice--bb-47 {
  border-bottom: 47px #fff9ed solid !important;
}
.island-spice--by-47 {
  border-top: 47px #fff9ed solid !important;
  border-bottom: 47px #fff9ed solid !important;
}
.island-spice--bx-47 {
  border-right: 47px #fff9ed solid !important;
  border-left: 47px #fff9ed solid !important;
}
.island-spice--ba-48 {
  border: 48px #fff9ed solid !important;
}
.island-spice--bt-48 {
  border-top: 48px #fff9ed solid !important;
}
.island-spice--br-48 {
  border-right: 48px #fff9ed solid !important;
}
.island-spice--bl-48 {
  border-left: 48px #fff9ed solid !important;
}
.island-spice--bb-48 {
  border-bottom: 48px #fff9ed solid !important;
}
.island-spice--by-48 {
  border-top: 48px #fff9ed solid !important;
  border-bottom: 48px #fff9ed solid !important;
}
.island-spice--bx-48 {
  border-right: 48px #fff9ed solid !important;
  border-left: 48px #fff9ed solid !important;
}
.island-spice--ba-49 {
  border: 49px #fff9ed solid !important;
}
.island-spice--bt-49 {
  border-top: 49px #fff9ed solid !important;
}
.island-spice--br-49 {
  border-right: 49px #fff9ed solid !important;
}
.island-spice--bl-49 {
  border-left: 49px #fff9ed solid !important;
}
.island-spice--bb-49 {
  border-bottom: 49px #fff9ed solid !important;
}
.island-spice--by-49 {
  border-top: 49px #fff9ed solid !important;
  border-bottom: 49px #fff9ed solid !important;
}
.island-spice--bx-49 {
  border-right: 49px #fff9ed solid !important;
  border-left: 49px #fff9ed solid !important;
}
.island-spice--ba-50 {
  border: 50px #fff9ed solid !important;
}
.island-spice--bt-50 {
  border-top: 50px #fff9ed solid !important;
}
.island-spice--br-50 {
  border-right: 50px #fff9ed solid !important;
}
.island-spice--bl-50 {
  border-left: 50px #fff9ed solid !important;
}
.island-spice--bb-50 {
  border-bottom: 50px #fff9ed solid !important;
}
.island-spice--by-50 {
  border-top: 50px #fff9ed solid !important;
  border-bottom: 50px #fff9ed solid !important;
}
.island-spice--bx-50 {
  border-right: 50px #fff9ed solid !important;
  border-left: 50px #fff9ed solid !important;
}
.island-spice--ba-51 {
  border: 51px #fff9ed solid !important;
}
.island-spice--bt-51 {
  border-top: 51px #fff9ed solid !important;
}
.island-spice--br-51 {
  border-right: 51px #fff9ed solid !important;
}
.island-spice--bl-51 {
  border-left: 51px #fff9ed solid !important;
}
.island-spice--bb-51 {
  border-bottom: 51px #fff9ed solid !important;
}
.island-spice--by-51 {
  border-top: 51px #fff9ed solid !important;
  border-bottom: 51px #fff9ed solid !important;
}
.island-spice--bx-51 {
  border-right: 51px #fff9ed solid !important;
  border-left: 51px #fff9ed solid !important;
}
.island-spice--ba-52 {
  border: 52px #fff9ed solid !important;
}
.island-spice--bt-52 {
  border-top: 52px #fff9ed solid !important;
}
.island-spice--br-52 {
  border-right: 52px #fff9ed solid !important;
}
.island-spice--bl-52 {
  border-left: 52px #fff9ed solid !important;
}
.island-spice--bb-52 {
  border-bottom: 52px #fff9ed solid !important;
}
.island-spice--by-52 {
  border-top: 52px #fff9ed solid !important;
  border-bottom: 52px #fff9ed solid !important;
}
.island-spice--bx-52 {
  border-right: 52px #fff9ed solid !important;
  border-left: 52px #fff9ed solid !important;
}
.island-spice--ba-53 {
  border: 53px #fff9ed solid !important;
}
.island-spice--bt-53 {
  border-top: 53px #fff9ed solid !important;
}
.island-spice--br-53 {
  border-right: 53px #fff9ed solid !important;
}
.island-spice--bl-53 {
  border-left: 53px #fff9ed solid !important;
}
.island-spice--bb-53 {
  border-bottom: 53px #fff9ed solid !important;
}
.island-spice--by-53 {
  border-top: 53px #fff9ed solid !important;
  border-bottom: 53px #fff9ed solid !important;
}
.island-spice--bx-53 {
  border-right: 53px #fff9ed solid !important;
  border-left: 53px #fff9ed solid !important;
}
.island-spice--ba-54 {
  border: 54px #fff9ed solid !important;
}
.island-spice--bt-54 {
  border-top: 54px #fff9ed solid !important;
}
.island-spice--br-54 {
  border-right: 54px #fff9ed solid !important;
}
.island-spice--bl-54 {
  border-left: 54px #fff9ed solid !important;
}
.island-spice--bb-54 {
  border-bottom: 54px #fff9ed solid !important;
}
.island-spice--by-54 {
  border-top: 54px #fff9ed solid !important;
  border-bottom: 54px #fff9ed solid !important;
}
.island-spice--bx-54 {
  border-right: 54px #fff9ed solid !important;
  border-left: 54px #fff9ed solid !important;
}
.island-spice--ba-55 {
  border: 55px #fff9ed solid !important;
}
.island-spice--bt-55 {
  border-top: 55px #fff9ed solid !important;
}
.island-spice--br-55 {
  border-right: 55px #fff9ed solid !important;
}
.island-spice--bl-55 {
  border-left: 55px #fff9ed solid !important;
}
.island-spice--bb-55 {
  border-bottom: 55px #fff9ed solid !important;
}
.island-spice--by-55 {
  border-top: 55px #fff9ed solid !important;
  border-bottom: 55px #fff9ed solid !important;
}
.island-spice--bx-55 {
  border-right: 55px #fff9ed solid !important;
  border-left: 55px #fff9ed solid !important;
}
.island-spice--ba-56 {
  border: 56px #fff9ed solid !important;
}
.island-spice--bt-56 {
  border-top: 56px #fff9ed solid !important;
}
.island-spice--br-56 {
  border-right: 56px #fff9ed solid !important;
}
.island-spice--bl-56 {
  border-left: 56px #fff9ed solid !important;
}
.island-spice--bb-56 {
  border-bottom: 56px #fff9ed solid !important;
}
.island-spice--by-56 {
  border-top: 56px #fff9ed solid !important;
  border-bottom: 56px #fff9ed solid !important;
}
.island-spice--bx-56 {
  border-right: 56px #fff9ed solid !important;
  border-left: 56px #fff9ed solid !important;
}
.island-spice--ba-57 {
  border: 57px #fff9ed solid !important;
}
.island-spice--bt-57 {
  border-top: 57px #fff9ed solid !important;
}
.island-spice--br-57 {
  border-right: 57px #fff9ed solid !important;
}
.island-spice--bl-57 {
  border-left: 57px #fff9ed solid !important;
}
.island-spice--bb-57 {
  border-bottom: 57px #fff9ed solid !important;
}
.island-spice--by-57 {
  border-top: 57px #fff9ed solid !important;
  border-bottom: 57px #fff9ed solid !important;
}
.island-spice--bx-57 {
  border-right: 57px #fff9ed solid !important;
  border-left: 57px #fff9ed solid !important;
}
.island-spice--ba-58 {
  border: 58px #fff9ed solid !important;
}
.island-spice--bt-58 {
  border-top: 58px #fff9ed solid !important;
}
.island-spice--br-58 {
  border-right: 58px #fff9ed solid !important;
}
.island-spice--bl-58 {
  border-left: 58px #fff9ed solid !important;
}
.island-spice--bb-58 {
  border-bottom: 58px #fff9ed solid !important;
}
.island-spice--by-58 {
  border-top: 58px #fff9ed solid !important;
  border-bottom: 58px #fff9ed solid !important;
}
.island-spice--bx-58 {
  border-right: 58px #fff9ed solid !important;
  border-left: 58px #fff9ed solid !important;
}
.island-spice--ba-59 {
  border: 59px #fff9ed solid !important;
}
.island-spice--bt-59 {
  border-top: 59px #fff9ed solid !important;
}
.island-spice--br-59 {
  border-right: 59px #fff9ed solid !important;
}
.island-spice--bl-59 {
  border-left: 59px #fff9ed solid !important;
}
.island-spice--bb-59 {
  border-bottom: 59px #fff9ed solid !important;
}
.island-spice--by-59 {
  border-top: 59px #fff9ed solid !important;
  border-bottom: 59px #fff9ed solid !important;
}
.island-spice--bx-59 {
  border-right: 59px #fff9ed solid !important;
  border-left: 59px #fff9ed solid !important;
}
.island-spice--ba-60 {
  border: 60px #fff9ed solid !important;
}
.island-spice--bt-60 {
  border-top: 60px #fff9ed solid !important;
}
.island-spice--br-60 {
  border-right: 60px #fff9ed solid !important;
}
.island-spice--bl-60 {
  border-left: 60px #fff9ed solid !important;
}
.island-spice--bb-60 {
  border-bottom: 60px #fff9ed solid !important;
}
.island-spice--by-60 {
  border-top: 60px #fff9ed solid !important;
  border-bottom: 60px #fff9ed solid !important;
}
.island-spice--bx-60 {
  border-right: 60px #fff9ed solid !important;
  border-left: 60px #fff9ed solid !important;
}
.island-spice--ba-61 {
  border: 61px #fff9ed solid !important;
}
.island-spice--bt-61 {
  border-top: 61px #fff9ed solid !important;
}
.island-spice--br-61 {
  border-right: 61px #fff9ed solid !important;
}
.island-spice--bl-61 {
  border-left: 61px #fff9ed solid !important;
}
.island-spice--bb-61 {
  border-bottom: 61px #fff9ed solid !important;
}
.island-spice--by-61 {
  border-top: 61px #fff9ed solid !important;
  border-bottom: 61px #fff9ed solid !important;
}
.island-spice--bx-61 {
  border-right: 61px #fff9ed solid !important;
  border-left: 61px #fff9ed solid !important;
}
.island-spice--ba-62 {
  border: 62px #fff9ed solid !important;
}
.island-spice--bt-62 {
  border-top: 62px #fff9ed solid !important;
}
.island-spice--br-62 {
  border-right: 62px #fff9ed solid !important;
}
.island-spice--bl-62 {
  border-left: 62px #fff9ed solid !important;
}
.island-spice--bb-62 {
  border-bottom: 62px #fff9ed solid !important;
}
.island-spice--by-62 {
  border-top: 62px #fff9ed solid !important;
  border-bottom: 62px #fff9ed solid !important;
}
.island-spice--bx-62 {
  border-right: 62px #fff9ed solid !important;
  border-left: 62px #fff9ed solid !important;
}
.island-spice--ba-63 {
  border: 63px #fff9ed solid !important;
}
.island-spice--bt-63 {
  border-top: 63px #fff9ed solid !important;
}
.island-spice--br-63 {
  border-right: 63px #fff9ed solid !important;
}
.island-spice--bl-63 {
  border-left: 63px #fff9ed solid !important;
}
.island-spice--bb-63 {
  border-bottom: 63px #fff9ed solid !important;
}
.island-spice--by-63 {
  border-top: 63px #fff9ed solid !important;
  border-bottom: 63px #fff9ed solid !important;
}
.island-spice--bx-63 {
  border-right: 63px #fff9ed solid !important;
  border-left: 63px #fff9ed solid !important;
}
.island-spice--ba-64 {
  border: 64px #fff9ed solid !important;
}
.island-spice--bt-64 {
  border-top: 64px #fff9ed solid !important;
}
.island-spice--br-64 {
  border-right: 64px #fff9ed solid !important;
}
.island-spice--bl-64 {
  border-left: 64px #fff9ed solid !important;
}
.island-spice--bb-64 {
  border-bottom: 64px #fff9ed solid !important;
}
.island-spice--by-64 {
  border-top: 64px #fff9ed solid !important;
  border-bottom: 64px #fff9ed solid !important;
}
.island-spice--bx-64 {
  border-right: 64px #fff9ed solid !important;
  border-left: 64px #fff9ed solid !important;
}
.island-spice--ba-65 {
  border: 65px #fff9ed solid !important;
}
.island-spice--bt-65 {
  border-top: 65px #fff9ed solid !important;
}
.island-spice--br-65 {
  border-right: 65px #fff9ed solid !important;
}
.island-spice--bl-65 {
  border-left: 65px #fff9ed solid !important;
}
.island-spice--bb-65 {
  border-bottom: 65px #fff9ed solid !important;
}
.island-spice--by-65 {
  border-top: 65px #fff9ed solid !important;
  border-bottom: 65px #fff9ed solid !important;
}
.island-spice--bx-65 {
  border-right: 65px #fff9ed solid !important;
  border-left: 65px #fff9ed solid !important;
}
.island-spice--ba-66 {
  border: 66px #fff9ed solid !important;
}
.island-spice--bt-66 {
  border-top: 66px #fff9ed solid !important;
}
.island-spice--br-66 {
  border-right: 66px #fff9ed solid !important;
}
.island-spice--bl-66 {
  border-left: 66px #fff9ed solid !important;
}
.island-spice--bb-66 {
  border-bottom: 66px #fff9ed solid !important;
}
.island-spice--by-66 {
  border-top: 66px #fff9ed solid !important;
  border-bottom: 66px #fff9ed solid !important;
}
.island-spice--bx-66 {
  border-right: 66px #fff9ed solid !important;
  border-left: 66px #fff9ed solid !important;
}
.island-spice--ba-67 {
  border: 67px #fff9ed solid !important;
}
.island-spice--bt-67 {
  border-top: 67px #fff9ed solid !important;
}
.island-spice--br-67 {
  border-right: 67px #fff9ed solid !important;
}
.island-spice--bl-67 {
  border-left: 67px #fff9ed solid !important;
}
.island-spice--bb-67 {
  border-bottom: 67px #fff9ed solid !important;
}
.island-spice--by-67 {
  border-top: 67px #fff9ed solid !important;
  border-bottom: 67px #fff9ed solid !important;
}
.island-spice--bx-67 {
  border-right: 67px #fff9ed solid !important;
  border-left: 67px #fff9ed solid !important;
}
.island-spice--ba-68 {
  border: 68px #fff9ed solid !important;
}
.island-spice--bt-68 {
  border-top: 68px #fff9ed solid !important;
}
.island-spice--br-68 {
  border-right: 68px #fff9ed solid !important;
}
.island-spice--bl-68 {
  border-left: 68px #fff9ed solid !important;
}
.island-spice--bb-68 {
  border-bottom: 68px #fff9ed solid !important;
}
.island-spice--by-68 {
  border-top: 68px #fff9ed solid !important;
  border-bottom: 68px #fff9ed solid !important;
}
.island-spice--bx-68 {
  border-right: 68px #fff9ed solid !important;
  border-left: 68px #fff9ed solid !important;
}
.island-spice--ba-69 {
  border: 69px #fff9ed solid !important;
}
.island-spice--bt-69 {
  border-top: 69px #fff9ed solid !important;
}
.island-spice--br-69 {
  border-right: 69px #fff9ed solid !important;
}
.island-spice--bl-69 {
  border-left: 69px #fff9ed solid !important;
}
.island-spice--bb-69 {
  border-bottom: 69px #fff9ed solid !important;
}
.island-spice--by-69 {
  border-top: 69px #fff9ed solid !important;
  border-bottom: 69px #fff9ed solid !important;
}
.island-spice--bx-69 {
  border-right: 69px #fff9ed solid !important;
  border-left: 69px #fff9ed solid !important;
}
.island-spice--ba-70 {
  border: 70px #fff9ed solid !important;
}
.island-spice--bt-70 {
  border-top: 70px #fff9ed solid !important;
}
.island-spice--br-70 {
  border-right: 70px #fff9ed solid !important;
}
.island-spice--bl-70 {
  border-left: 70px #fff9ed solid !important;
}
.island-spice--bb-70 {
  border-bottom: 70px #fff9ed solid !important;
}
.island-spice--by-70 {
  border-top: 70px #fff9ed solid !important;
  border-bottom: 70px #fff9ed solid !important;
}
.island-spice--bx-70 {
  border-right: 70px #fff9ed solid !important;
  border-left: 70px #fff9ed solid !important;
}
.island-spice--ba-71 {
  border: 71px #fff9ed solid !important;
}
.island-spice--bt-71 {
  border-top: 71px #fff9ed solid !important;
}
.island-spice--br-71 {
  border-right: 71px #fff9ed solid !important;
}
.island-spice--bl-71 {
  border-left: 71px #fff9ed solid !important;
}
.island-spice--bb-71 {
  border-bottom: 71px #fff9ed solid !important;
}
.island-spice--by-71 {
  border-top: 71px #fff9ed solid !important;
  border-bottom: 71px #fff9ed solid !important;
}
.island-spice--bx-71 {
  border-right: 71px #fff9ed solid !important;
  border-left: 71px #fff9ed solid !important;
}
.island-spice--ba-72 {
  border: 72px #fff9ed solid !important;
}
.island-spice--bt-72 {
  border-top: 72px #fff9ed solid !important;
}
.island-spice--br-72 {
  border-right: 72px #fff9ed solid !important;
}
.island-spice--bl-72 {
  border-left: 72px #fff9ed solid !important;
}
.island-spice--bb-72 {
  border-bottom: 72px #fff9ed solid !important;
}
.island-spice--by-72 {
  border-top: 72px #fff9ed solid !important;
  border-bottom: 72px #fff9ed solid !important;
}
.island-spice--bx-72 {
  border-right: 72px #fff9ed solid !important;
  border-left: 72px #fff9ed solid !important;
}
.island-spice--ba-73 {
  border: 73px #fff9ed solid !important;
}
.island-spice--bt-73 {
  border-top: 73px #fff9ed solid !important;
}
.island-spice--br-73 {
  border-right: 73px #fff9ed solid !important;
}
.island-spice--bl-73 {
  border-left: 73px #fff9ed solid !important;
}
.island-spice--bb-73 {
  border-bottom: 73px #fff9ed solid !important;
}
.island-spice--by-73 {
  border-top: 73px #fff9ed solid !important;
  border-bottom: 73px #fff9ed solid !important;
}
.island-spice--bx-73 {
  border-right: 73px #fff9ed solid !important;
  border-left: 73px #fff9ed solid !important;
}
.island-spice--ba-74 {
  border: 74px #fff9ed solid !important;
}
.island-spice--bt-74 {
  border-top: 74px #fff9ed solid !important;
}
.island-spice--br-74 {
  border-right: 74px #fff9ed solid !important;
}
.island-spice--bl-74 {
  border-left: 74px #fff9ed solid !important;
}
.island-spice--bb-74 {
  border-bottom: 74px #fff9ed solid !important;
}
.island-spice--by-74 {
  border-top: 74px #fff9ed solid !important;
  border-bottom: 74px #fff9ed solid !important;
}
.island-spice--bx-74 {
  border-right: 74px #fff9ed solid !important;
  border-left: 74px #fff9ed solid !important;
}
.island-spice--ba-75 {
  border: 75px #fff9ed solid !important;
}
.island-spice--bt-75 {
  border-top: 75px #fff9ed solid !important;
}
.island-spice--br-75 {
  border-right: 75px #fff9ed solid !important;
}
.island-spice--bl-75 {
  border-left: 75px #fff9ed solid !important;
}
.island-spice--bb-75 {
  border-bottom: 75px #fff9ed solid !important;
}
.island-spice--by-75 {
  border-top: 75px #fff9ed solid !important;
  border-bottom: 75px #fff9ed solid !important;
}
.island-spice--bx-75 {
  border-right: 75px #fff9ed solid !important;
  border-left: 75px #fff9ed solid !important;
}
.island-spice--ba-76 {
  border: 76px #fff9ed solid !important;
}
.island-spice--bt-76 {
  border-top: 76px #fff9ed solid !important;
}
.island-spice--br-76 {
  border-right: 76px #fff9ed solid !important;
}
.island-spice--bl-76 {
  border-left: 76px #fff9ed solid !important;
}
.island-spice--bb-76 {
  border-bottom: 76px #fff9ed solid !important;
}
.island-spice--by-76 {
  border-top: 76px #fff9ed solid !important;
  border-bottom: 76px #fff9ed solid !important;
}
.island-spice--bx-76 {
  border-right: 76px #fff9ed solid !important;
  border-left: 76px #fff9ed solid !important;
}
.island-spice--ba-77 {
  border: 77px #fff9ed solid !important;
}
.island-spice--bt-77 {
  border-top: 77px #fff9ed solid !important;
}
.island-spice--br-77 {
  border-right: 77px #fff9ed solid !important;
}
.island-spice--bl-77 {
  border-left: 77px #fff9ed solid !important;
}
.island-spice--bb-77 {
  border-bottom: 77px #fff9ed solid !important;
}
.island-spice--by-77 {
  border-top: 77px #fff9ed solid !important;
  border-bottom: 77px #fff9ed solid !important;
}
.island-spice--bx-77 {
  border-right: 77px #fff9ed solid !important;
  border-left: 77px #fff9ed solid !important;
}
.island-spice--ba-78 {
  border: 78px #fff9ed solid !important;
}
.island-spice--bt-78 {
  border-top: 78px #fff9ed solid !important;
}
.island-spice--br-78 {
  border-right: 78px #fff9ed solid !important;
}
.island-spice--bl-78 {
  border-left: 78px #fff9ed solid !important;
}
.island-spice--bb-78 {
  border-bottom: 78px #fff9ed solid !important;
}
.island-spice--by-78 {
  border-top: 78px #fff9ed solid !important;
  border-bottom: 78px #fff9ed solid !important;
}
.island-spice--bx-78 {
  border-right: 78px #fff9ed solid !important;
  border-left: 78px #fff9ed solid !important;
}
.island-spice--ba-79 {
  border: 79px #fff9ed solid !important;
}
.island-spice--bt-79 {
  border-top: 79px #fff9ed solid !important;
}
.island-spice--br-79 {
  border-right: 79px #fff9ed solid !important;
}
.island-spice--bl-79 {
  border-left: 79px #fff9ed solid !important;
}
.island-spice--bb-79 {
  border-bottom: 79px #fff9ed solid !important;
}
.island-spice--by-79 {
  border-top: 79px #fff9ed solid !important;
  border-bottom: 79px #fff9ed solid !important;
}
.island-spice--bx-79 {
  border-right: 79px #fff9ed solid !important;
  border-left: 79px #fff9ed solid !important;
}
.island-spice--ba-80 {
  border: 80px #fff9ed solid !important;
}
.island-spice--bt-80 {
  border-top: 80px #fff9ed solid !important;
}
.island-spice--br-80 {
  border-right: 80px #fff9ed solid !important;
}
.island-spice--bl-80 {
  border-left: 80px #fff9ed solid !important;
}
.island-spice--bb-80 {
  border-bottom: 80px #fff9ed solid !important;
}
.island-spice--by-80 {
  border-top: 80px #fff9ed solid !important;
  border-bottom: 80px #fff9ed solid !important;
}
.island-spice--bx-80 {
  border-right: 80px #fff9ed solid !important;
  border-left: 80px #fff9ed solid !important;
}
.island-spice--ba-81 {
  border: 81px #fff9ed solid !important;
}
.island-spice--bt-81 {
  border-top: 81px #fff9ed solid !important;
}
.island-spice--br-81 {
  border-right: 81px #fff9ed solid !important;
}
.island-spice--bl-81 {
  border-left: 81px #fff9ed solid !important;
}
.island-spice--bb-81 {
  border-bottom: 81px #fff9ed solid !important;
}
.island-spice--by-81 {
  border-top: 81px #fff9ed solid !important;
  border-bottom: 81px #fff9ed solid !important;
}
.island-spice--bx-81 {
  border-right: 81px #fff9ed solid !important;
  border-left: 81px #fff9ed solid !important;
}
.island-spice--ba-82 {
  border: 82px #fff9ed solid !important;
}
.island-spice--bt-82 {
  border-top: 82px #fff9ed solid !important;
}
.island-spice--br-82 {
  border-right: 82px #fff9ed solid !important;
}
.island-spice--bl-82 {
  border-left: 82px #fff9ed solid !important;
}
.island-spice--bb-82 {
  border-bottom: 82px #fff9ed solid !important;
}
.island-spice--by-82 {
  border-top: 82px #fff9ed solid !important;
  border-bottom: 82px #fff9ed solid !important;
}
.island-spice--bx-82 {
  border-right: 82px #fff9ed solid !important;
  border-left: 82px #fff9ed solid !important;
}
.island-spice--ba-83 {
  border: 83px #fff9ed solid !important;
}
.island-spice--bt-83 {
  border-top: 83px #fff9ed solid !important;
}
.island-spice--br-83 {
  border-right: 83px #fff9ed solid !important;
}
.island-spice--bl-83 {
  border-left: 83px #fff9ed solid !important;
}
.island-spice--bb-83 {
  border-bottom: 83px #fff9ed solid !important;
}
.island-spice--by-83 {
  border-top: 83px #fff9ed solid !important;
  border-bottom: 83px #fff9ed solid !important;
}
.island-spice--bx-83 {
  border-right: 83px #fff9ed solid !important;
  border-left: 83px #fff9ed solid !important;
}
.island-spice--ba-84 {
  border: 84px #fff9ed solid !important;
}
.island-spice--bt-84 {
  border-top: 84px #fff9ed solid !important;
}
.island-spice--br-84 {
  border-right: 84px #fff9ed solid !important;
}
.island-spice--bl-84 {
  border-left: 84px #fff9ed solid !important;
}
.island-spice--bb-84 {
  border-bottom: 84px #fff9ed solid !important;
}
.island-spice--by-84 {
  border-top: 84px #fff9ed solid !important;
  border-bottom: 84px #fff9ed solid !important;
}
.island-spice--bx-84 {
  border-right: 84px #fff9ed solid !important;
  border-left: 84px #fff9ed solid !important;
}
.island-spice--ba-85 {
  border: 85px #fff9ed solid !important;
}
.island-spice--bt-85 {
  border-top: 85px #fff9ed solid !important;
}
.island-spice--br-85 {
  border-right: 85px #fff9ed solid !important;
}
.island-spice--bl-85 {
  border-left: 85px #fff9ed solid !important;
}
.island-spice--bb-85 {
  border-bottom: 85px #fff9ed solid !important;
}
.island-spice--by-85 {
  border-top: 85px #fff9ed solid !important;
  border-bottom: 85px #fff9ed solid !important;
}
.island-spice--bx-85 {
  border-right: 85px #fff9ed solid !important;
  border-left: 85px #fff9ed solid !important;
}
.island-spice--ba-86 {
  border: 86px #fff9ed solid !important;
}
.island-spice--bt-86 {
  border-top: 86px #fff9ed solid !important;
}
.island-spice--br-86 {
  border-right: 86px #fff9ed solid !important;
}
.island-spice--bl-86 {
  border-left: 86px #fff9ed solid !important;
}
.island-spice--bb-86 {
  border-bottom: 86px #fff9ed solid !important;
}
.island-spice--by-86 {
  border-top: 86px #fff9ed solid !important;
  border-bottom: 86px #fff9ed solid !important;
}
.island-spice--bx-86 {
  border-right: 86px #fff9ed solid !important;
  border-left: 86px #fff9ed solid !important;
}
.island-spice--ba-87 {
  border: 87px #fff9ed solid !important;
}
.island-spice--bt-87 {
  border-top: 87px #fff9ed solid !important;
}
.island-spice--br-87 {
  border-right: 87px #fff9ed solid !important;
}
.island-spice--bl-87 {
  border-left: 87px #fff9ed solid !important;
}
.island-spice--bb-87 {
  border-bottom: 87px #fff9ed solid !important;
}
.island-spice--by-87 {
  border-top: 87px #fff9ed solid !important;
  border-bottom: 87px #fff9ed solid !important;
}
.island-spice--bx-87 {
  border-right: 87px #fff9ed solid !important;
  border-left: 87px #fff9ed solid !important;
}
.island-spice--ba-88 {
  border: 88px #fff9ed solid !important;
}
.island-spice--bt-88 {
  border-top: 88px #fff9ed solid !important;
}
.island-spice--br-88 {
  border-right: 88px #fff9ed solid !important;
}
.island-spice--bl-88 {
  border-left: 88px #fff9ed solid !important;
}
.island-spice--bb-88 {
  border-bottom: 88px #fff9ed solid !important;
}
.island-spice--by-88 {
  border-top: 88px #fff9ed solid !important;
  border-bottom: 88px #fff9ed solid !important;
}
.island-spice--bx-88 {
  border-right: 88px #fff9ed solid !important;
  border-left: 88px #fff9ed solid !important;
}
.island-spice--ba-89 {
  border: 89px #fff9ed solid !important;
}
.island-spice--bt-89 {
  border-top: 89px #fff9ed solid !important;
}
.island-spice--br-89 {
  border-right: 89px #fff9ed solid !important;
}
.island-spice--bl-89 {
  border-left: 89px #fff9ed solid !important;
}
.island-spice--bb-89 {
  border-bottom: 89px #fff9ed solid !important;
}
.island-spice--by-89 {
  border-top: 89px #fff9ed solid !important;
  border-bottom: 89px #fff9ed solid !important;
}
.island-spice--bx-89 {
  border-right: 89px #fff9ed solid !important;
  border-left: 89px #fff9ed solid !important;
}
.island-spice--ba-90 {
  border: 90px #fff9ed solid !important;
}
.island-spice--bt-90 {
  border-top: 90px #fff9ed solid !important;
}
.island-spice--br-90 {
  border-right: 90px #fff9ed solid !important;
}
.island-spice--bl-90 {
  border-left: 90px #fff9ed solid !important;
}
.island-spice--bb-90 {
  border-bottom: 90px #fff9ed solid !important;
}
.island-spice--by-90 {
  border-top: 90px #fff9ed solid !important;
  border-bottom: 90px #fff9ed solid !important;
}
.island-spice--bx-90 {
  border-right: 90px #fff9ed solid !important;
  border-left: 90px #fff9ed solid !important;
}
.island-spice--ba-91 {
  border: 91px #fff9ed solid !important;
}
.island-spice--bt-91 {
  border-top: 91px #fff9ed solid !important;
}
.island-spice--br-91 {
  border-right: 91px #fff9ed solid !important;
}
.island-spice--bl-91 {
  border-left: 91px #fff9ed solid !important;
}
.island-spice--bb-91 {
  border-bottom: 91px #fff9ed solid !important;
}
.island-spice--by-91 {
  border-top: 91px #fff9ed solid !important;
  border-bottom: 91px #fff9ed solid !important;
}
.island-spice--bx-91 {
  border-right: 91px #fff9ed solid !important;
  border-left: 91px #fff9ed solid !important;
}
.island-spice--ba-92 {
  border: 92px #fff9ed solid !important;
}
.island-spice--bt-92 {
  border-top: 92px #fff9ed solid !important;
}
.island-spice--br-92 {
  border-right: 92px #fff9ed solid !important;
}
.island-spice--bl-92 {
  border-left: 92px #fff9ed solid !important;
}
.island-spice--bb-92 {
  border-bottom: 92px #fff9ed solid !important;
}
.island-spice--by-92 {
  border-top: 92px #fff9ed solid !important;
  border-bottom: 92px #fff9ed solid !important;
}
.island-spice--bx-92 {
  border-right: 92px #fff9ed solid !important;
  border-left: 92px #fff9ed solid !important;
}
.island-spice--ba-93 {
  border: 93px #fff9ed solid !important;
}
.island-spice--bt-93 {
  border-top: 93px #fff9ed solid !important;
}
.island-spice--br-93 {
  border-right: 93px #fff9ed solid !important;
}
.island-spice--bl-93 {
  border-left: 93px #fff9ed solid !important;
}
.island-spice--bb-93 {
  border-bottom: 93px #fff9ed solid !important;
}
.island-spice--by-93 {
  border-top: 93px #fff9ed solid !important;
  border-bottom: 93px #fff9ed solid !important;
}
.island-spice--bx-93 {
  border-right: 93px #fff9ed solid !important;
  border-left: 93px #fff9ed solid !important;
}
.island-spice--ba-94 {
  border: 94px #fff9ed solid !important;
}
.island-spice--bt-94 {
  border-top: 94px #fff9ed solid !important;
}
.island-spice--br-94 {
  border-right: 94px #fff9ed solid !important;
}
.island-spice--bl-94 {
  border-left: 94px #fff9ed solid !important;
}
.island-spice--bb-94 {
  border-bottom: 94px #fff9ed solid !important;
}
.island-spice--by-94 {
  border-top: 94px #fff9ed solid !important;
  border-bottom: 94px #fff9ed solid !important;
}
.island-spice--bx-94 {
  border-right: 94px #fff9ed solid !important;
  border-left: 94px #fff9ed solid !important;
}
.island-spice--ba-95 {
  border: 95px #fff9ed solid !important;
}
.island-spice--bt-95 {
  border-top: 95px #fff9ed solid !important;
}
.island-spice--br-95 {
  border-right: 95px #fff9ed solid !important;
}
.island-spice--bl-95 {
  border-left: 95px #fff9ed solid !important;
}
.island-spice--bb-95 {
  border-bottom: 95px #fff9ed solid !important;
}
.island-spice--by-95 {
  border-top: 95px #fff9ed solid !important;
  border-bottom: 95px #fff9ed solid !important;
}
.island-spice--bx-95 {
  border-right: 95px #fff9ed solid !important;
  border-left: 95px #fff9ed solid !important;
}
.island-spice--ba-96 {
  border: 96px #fff9ed solid !important;
}
.island-spice--bt-96 {
  border-top: 96px #fff9ed solid !important;
}
.island-spice--br-96 {
  border-right: 96px #fff9ed solid !important;
}
.island-spice--bl-96 {
  border-left: 96px #fff9ed solid !important;
}
.island-spice--bb-96 {
  border-bottom: 96px #fff9ed solid !important;
}
.island-spice--by-96 {
  border-top: 96px #fff9ed solid !important;
  border-bottom: 96px #fff9ed solid !important;
}
.island-spice--bx-96 {
  border-right: 96px #fff9ed solid !important;
  border-left: 96px #fff9ed solid !important;
}
.island-spice--ba-97 {
  border: 97px #fff9ed solid !important;
}
.island-spice--bt-97 {
  border-top: 97px #fff9ed solid !important;
}
.island-spice--br-97 {
  border-right: 97px #fff9ed solid !important;
}
.island-spice--bl-97 {
  border-left: 97px #fff9ed solid !important;
}
.island-spice--bb-97 {
  border-bottom: 97px #fff9ed solid !important;
}
.island-spice--by-97 {
  border-top: 97px #fff9ed solid !important;
  border-bottom: 97px #fff9ed solid !important;
}
.island-spice--bx-97 {
  border-right: 97px #fff9ed solid !important;
  border-left: 97px #fff9ed solid !important;
}
.island-spice--ba-98 {
  border: 98px #fff9ed solid !important;
}
.island-spice--bt-98 {
  border-top: 98px #fff9ed solid !important;
}
.island-spice--br-98 {
  border-right: 98px #fff9ed solid !important;
}
.island-spice--bl-98 {
  border-left: 98px #fff9ed solid !important;
}
.island-spice--bb-98 {
  border-bottom: 98px #fff9ed solid !important;
}
.island-spice--by-98 {
  border-top: 98px #fff9ed solid !important;
  border-bottom: 98px #fff9ed solid !important;
}
.island-spice--bx-98 {
  border-right: 98px #fff9ed solid !important;
  border-left: 98px #fff9ed solid !important;
}
.island-spice--ba-99 {
  border: 99px #fff9ed solid !important;
}
.island-spice--bt-99 {
  border-top: 99px #fff9ed solid !important;
}
.island-spice--br-99 {
  border-right: 99px #fff9ed solid !important;
}
.island-spice--bl-99 {
  border-left: 99px #fff9ed solid !important;
}
.island-spice--bb-99 {
  border-bottom: 99px #fff9ed solid !important;
}
.island-spice--by-99 {
  border-top: 99px #fff9ed solid !important;
  border-bottom: 99px #fff9ed solid !important;
}
.island-spice--bx-99 {
  border-right: 99px #fff9ed solid !important;
  border-left: 99px #fff9ed solid !important;
}
.island-spice--ba-100 {
  border: 100px #fff9ed solid !important;
}
.island-spice--bt-100 {
  border-top: 100px #fff9ed solid !important;
}
.island-spice--br-100 {
  border-right: 100px #fff9ed solid !important;
}
.island-spice--bl-100 {
  border-left: 100px #fff9ed solid !important;
}
.island-spice--bb-100 {
  border-bottom: 100px #fff9ed solid !important;
}
.island-spice--by-100 {
  border-top: 100px #fff9ed solid !important;
  border-bottom: 100px #fff9ed solid !important;
}
.island-spice--bx-100 {
  border-right: 100px #fff9ed solid !important;
  border-left: 100px #fff9ed solid !important;
}
.panache--ba-1 {
  border: 1px #f4f4f4 solid !important;
}
.panache--bt-1 {
  border-top: 1px #f4f4f4 solid !important;
}
.panache--br-1 {
  border-right: 1px #f4f4f4 solid !important;
}
.panache--bl-1 {
  border-left: 1px #f4f4f4 solid !important;
}
.panache--bb-1 {
  border-bottom: 1px #f4f4f4 solid !important;
}
.panache--by-1 {
  border-top: 1px #f4f4f4 solid !important;
  border-bottom: 1px #f4f4f4 solid !important;
}
.panache--bx-1 {
  border-right: 1px #f4f4f4 solid !important;
  border-left: 1px #f4f4f4 solid !important;
}
.panache--ba-2 {
  border: 2px #f4f4f4 solid !important;
}
.panache--bt-2 {
  border-top: 2px #f4f4f4 solid !important;
}
.panache--br-2 {
  border-right: 2px #f4f4f4 solid !important;
}
.panache--bl-2 {
  border-left: 2px #f4f4f4 solid !important;
}
.panache--bb-2 {
  border-bottom: 2px #f4f4f4 solid !important;
}
.panache--by-2 {
  border-top: 2px #f4f4f4 solid !important;
  border-bottom: 2px #f4f4f4 solid !important;
}
.panache--bx-2 {
  border-right: 2px #f4f4f4 solid !important;
  border-left: 2px #f4f4f4 solid !important;
}
.panache--ba-3 {
  border: 3px #f4f4f4 solid !important;
}
.panache--bt-3 {
  border-top: 3px #f4f4f4 solid !important;
}
.panache--br-3 {
  border-right: 3px #f4f4f4 solid !important;
}
.panache--bl-3 {
  border-left: 3px #f4f4f4 solid !important;
}
.panache--bb-3 {
  border-bottom: 3px #f4f4f4 solid !important;
}
.panache--by-3 {
  border-top: 3px #f4f4f4 solid !important;
  border-bottom: 3px #f4f4f4 solid !important;
}
.panache--bx-3 {
  border-right: 3px #f4f4f4 solid !important;
  border-left: 3px #f4f4f4 solid !important;
}
.panache--ba-4 {
  border: 4px #f4f4f4 solid !important;
}
.panache--bt-4 {
  border-top: 4px #f4f4f4 solid !important;
}
.panache--br-4 {
  border-right: 4px #f4f4f4 solid !important;
}
.panache--bl-4 {
  border-left: 4px #f4f4f4 solid !important;
}
.panache--bb-4 {
  border-bottom: 4px #f4f4f4 solid !important;
}
.panache--by-4 {
  border-top: 4px #f4f4f4 solid !important;
  border-bottom: 4px #f4f4f4 solid !important;
}
.panache--bx-4 {
  border-right: 4px #f4f4f4 solid !important;
  border-left: 4px #f4f4f4 solid !important;
}
.panache--ba-5 {
  border: 5px #f4f4f4 solid !important;
}
.panache--bt-5 {
  border-top: 5px #f4f4f4 solid !important;
}
.panache--br-5 {
  border-right: 5px #f4f4f4 solid !important;
}
.panache--bl-5 {
  border-left: 5px #f4f4f4 solid !important;
}
.panache--bb-5 {
  border-bottom: 5px #f4f4f4 solid !important;
}
.panache--by-5 {
  border-top: 5px #f4f4f4 solid !important;
  border-bottom: 5px #f4f4f4 solid !important;
}
.panache--bx-5 {
  border-right: 5px #f4f4f4 solid !important;
  border-left: 5px #f4f4f4 solid !important;
}
.panache--ba-6 {
  border: 6px #f4f4f4 solid !important;
}
.panache--bt-6 {
  border-top: 6px #f4f4f4 solid !important;
}
.panache--br-6 {
  border-right: 6px #f4f4f4 solid !important;
}
.panache--bl-6 {
  border-left: 6px #f4f4f4 solid !important;
}
.panache--bb-6 {
  border-bottom: 6px #f4f4f4 solid !important;
}
.panache--by-6 {
  border-top: 6px #f4f4f4 solid !important;
  border-bottom: 6px #f4f4f4 solid !important;
}
.panache--bx-6 {
  border-right: 6px #f4f4f4 solid !important;
  border-left: 6px #f4f4f4 solid !important;
}
.panache--ba-7 {
  border: 7px #f4f4f4 solid !important;
}
.panache--bt-7 {
  border-top: 7px #f4f4f4 solid !important;
}
.panache--br-7 {
  border-right: 7px #f4f4f4 solid !important;
}
.panache--bl-7 {
  border-left: 7px #f4f4f4 solid !important;
}
.panache--bb-7 {
  border-bottom: 7px #f4f4f4 solid !important;
}
.panache--by-7 {
  border-top: 7px #f4f4f4 solid !important;
  border-bottom: 7px #f4f4f4 solid !important;
}
.panache--bx-7 {
  border-right: 7px #f4f4f4 solid !important;
  border-left: 7px #f4f4f4 solid !important;
}
.panache--ba-8 {
  border: 8px #f4f4f4 solid !important;
}
.panache--bt-8 {
  border-top: 8px #f4f4f4 solid !important;
}
.panache--br-8 {
  border-right: 8px #f4f4f4 solid !important;
}
.panache--bl-8 {
  border-left: 8px #f4f4f4 solid !important;
}
.panache--bb-8 {
  border-bottom: 8px #f4f4f4 solid !important;
}
.panache--by-8 {
  border-top: 8px #f4f4f4 solid !important;
  border-bottom: 8px #f4f4f4 solid !important;
}
.panache--bx-8 {
  border-right: 8px #f4f4f4 solid !important;
  border-left: 8px #f4f4f4 solid !important;
}
.panache--ba-9 {
  border: 9px #f4f4f4 solid !important;
}
.panache--bt-9 {
  border-top: 9px #f4f4f4 solid !important;
}
.panache--br-9 {
  border-right: 9px #f4f4f4 solid !important;
}
.panache--bl-9 {
  border-left: 9px #f4f4f4 solid !important;
}
.panache--bb-9 {
  border-bottom: 9px #f4f4f4 solid !important;
}
.panache--by-9 {
  border-top: 9px #f4f4f4 solid !important;
  border-bottom: 9px #f4f4f4 solid !important;
}
.panache--bx-9 {
  border-right: 9px #f4f4f4 solid !important;
  border-left: 9px #f4f4f4 solid !important;
}
.panache--ba-10 {
  border: 10px #f4f4f4 solid !important;
}
.panache--bt-10 {
  border-top: 10px #f4f4f4 solid !important;
}
.panache--br-10 {
  border-right: 10px #f4f4f4 solid !important;
}
.panache--bl-10 {
  border-left: 10px #f4f4f4 solid !important;
}
.panache--bb-10 {
  border-bottom: 10px #f4f4f4 solid !important;
}
.panache--by-10 {
  border-top: 10px #f4f4f4 solid !important;
  border-bottom: 10px #f4f4f4 solid !important;
}
.panache--bx-10 {
  border-right: 10px #f4f4f4 solid !important;
  border-left: 10px #f4f4f4 solid !important;
}
.panache--ba-11 {
  border: 11px #f4f4f4 solid !important;
}
.panache--bt-11 {
  border-top: 11px #f4f4f4 solid !important;
}
.panache--br-11 {
  border-right: 11px #f4f4f4 solid !important;
}
.panache--bl-11 {
  border-left: 11px #f4f4f4 solid !important;
}
.panache--bb-11 {
  border-bottom: 11px #f4f4f4 solid !important;
}
.panache--by-11 {
  border-top: 11px #f4f4f4 solid !important;
  border-bottom: 11px #f4f4f4 solid !important;
}
.panache--bx-11 {
  border-right: 11px #f4f4f4 solid !important;
  border-left: 11px #f4f4f4 solid !important;
}
.panache--ba-12 {
  border: 12px #f4f4f4 solid !important;
}
.panache--bt-12 {
  border-top: 12px #f4f4f4 solid !important;
}
.panache--br-12 {
  border-right: 12px #f4f4f4 solid !important;
}
.panache--bl-12 {
  border-left: 12px #f4f4f4 solid !important;
}
.panache--bb-12 {
  border-bottom: 12px #f4f4f4 solid !important;
}
.panache--by-12 {
  border-top: 12px #f4f4f4 solid !important;
  border-bottom: 12px #f4f4f4 solid !important;
}
.panache--bx-12 {
  border-right: 12px #f4f4f4 solid !important;
  border-left: 12px #f4f4f4 solid !important;
}
.panache--ba-13 {
  border: 13px #f4f4f4 solid !important;
}
.panache--bt-13 {
  border-top: 13px #f4f4f4 solid !important;
}
.panache--br-13 {
  border-right: 13px #f4f4f4 solid !important;
}
.panache--bl-13 {
  border-left: 13px #f4f4f4 solid !important;
}
.panache--bb-13 {
  border-bottom: 13px #f4f4f4 solid !important;
}
.panache--by-13 {
  border-top: 13px #f4f4f4 solid !important;
  border-bottom: 13px #f4f4f4 solid !important;
}
.panache--bx-13 {
  border-right: 13px #f4f4f4 solid !important;
  border-left: 13px #f4f4f4 solid !important;
}
.panache--ba-14 {
  border: 14px #f4f4f4 solid !important;
}
.panache--bt-14 {
  border-top: 14px #f4f4f4 solid !important;
}
.panache--br-14 {
  border-right: 14px #f4f4f4 solid !important;
}
.panache--bl-14 {
  border-left: 14px #f4f4f4 solid !important;
}
.panache--bb-14 {
  border-bottom: 14px #f4f4f4 solid !important;
}
.panache--by-14 {
  border-top: 14px #f4f4f4 solid !important;
  border-bottom: 14px #f4f4f4 solid !important;
}
.panache--bx-14 {
  border-right: 14px #f4f4f4 solid !important;
  border-left: 14px #f4f4f4 solid !important;
}
.panache--ba-15 {
  border: 15px #f4f4f4 solid !important;
}
.panache--bt-15 {
  border-top: 15px #f4f4f4 solid !important;
}
.panache--br-15 {
  border-right: 15px #f4f4f4 solid !important;
}
.panache--bl-15 {
  border-left: 15px #f4f4f4 solid !important;
}
.panache--bb-15 {
  border-bottom: 15px #f4f4f4 solid !important;
}
.panache--by-15 {
  border-top: 15px #f4f4f4 solid !important;
  border-bottom: 15px #f4f4f4 solid !important;
}
.panache--bx-15 {
  border-right: 15px #f4f4f4 solid !important;
  border-left: 15px #f4f4f4 solid !important;
}
.panache--ba-16 {
  border: 16px #f4f4f4 solid !important;
}
.panache--bt-16 {
  border-top: 16px #f4f4f4 solid !important;
}
.panache--br-16 {
  border-right: 16px #f4f4f4 solid !important;
}
.panache--bl-16 {
  border-left: 16px #f4f4f4 solid !important;
}
.panache--bb-16 {
  border-bottom: 16px #f4f4f4 solid !important;
}
.panache--by-16 {
  border-top: 16px #f4f4f4 solid !important;
  border-bottom: 16px #f4f4f4 solid !important;
}
.panache--bx-16 {
  border-right: 16px #f4f4f4 solid !important;
  border-left: 16px #f4f4f4 solid !important;
}
.panache--ba-17 {
  border: 17px #f4f4f4 solid !important;
}
.panache--bt-17 {
  border-top: 17px #f4f4f4 solid !important;
}
.panache--br-17 {
  border-right: 17px #f4f4f4 solid !important;
}
.panache--bl-17 {
  border-left: 17px #f4f4f4 solid !important;
}
.panache--bb-17 {
  border-bottom: 17px #f4f4f4 solid !important;
}
.panache--by-17 {
  border-top: 17px #f4f4f4 solid !important;
  border-bottom: 17px #f4f4f4 solid !important;
}
.panache--bx-17 {
  border-right: 17px #f4f4f4 solid !important;
  border-left: 17px #f4f4f4 solid !important;
}
.panache--ba-18 {
  border: 18px #f4f4f4 solid !important;
}
.panache--bt-18 {
  border-top: 18px #f4f4f4 solid !important;
}
.panache--br-18 {
  border-right: 18px #f4f4f4 solid !important;
}
.panache--bl-18 {
  border-left: 18px #f4f4f4 solid !important;
}
.panache--bb-18 {
  border-bottom: 18px #f4f4f4 solid !important;
}
.panache--by-18 {
  border-top: 18px #f4f4f4 solid !important;
  border-bottom: 18px #f4f4f4 solid !important;
}
.panache--bx-18 {
  border-right: 18px #f4f4f4 solid !important;
  border-left: 18px #f4f4f4 solid !important;
}
.panache--ba-19 {
  border: 19px #f4f4f4 solid !important;
}
.panache--bt-19 {
  border-top: 19px #f4f4f4 solid !important;
}
.panache--br-19 {
  border-right: 19px #f4f4f4 solid !important;
}
.panache--bl-19 {
  border-left: 19px #f4f4f4 solid !important;
}
.panache--bb-19 {
  border-bottom: 19px #f4f4f4 solid !important;
}
.panache--by-19 {
  border-top: 19px #f4f4f4 solid !important;
  border-bottom: 19px #f4f4f4 solid !important;
}
.panache--bx-19 {
  border-right: 19px #f4f4f4 solid !important;
  border-left: 19px #f4f4f4 solid !important;
}
.panache--ba-20 {
  border: 20px #f4f4f4 solid !important;
}
.panache--bt-20 {
  border-top: 20px #f4f4f4 solid !important;
}
.panache--br-20 {
  border-right: 20px #f4f4f4 solid !important;
}
.panache--bl-20 {
  border-left: 20px #f4f4f4 solid !important;
}
.panache--bb-20 {
  border-bottom: 20px #f4f4f4 solid !important;
}
.panache--by-20 {
  border-top: 20px #f4f4f4 solid !important;
  border-bottom: 20px #f4f4f4 solid !important;
}
.panache--bx-20 {
  border-right: 20px #f4f4f4 solid !important;
  border-left: 20px #f4f4f4 solid !important;
}
.panache--ba-21 {
  border: 21px #f4f4f4 solid !important;
}
.panache--bt-21 {
  border-top: 21px #f4f4f4 solid !important;
}
.panache--br-21 {
  border-right: 21px #f4f4f4 solid !important;
}
.panache--bl-21 {
  border-left: 21px #f4f4f4 solid !important;
}
.panache--bb-21 {
  border-bottom: 21px #f4f4f4 solid !important;
}
.panache--by-21 {
  border-top: 21px #f4f4f4 solid !important;
  border-bottom: 21px #f4f4f4 solid !important;
}
.panache--bx-21 {
  border-right: 21px #f4f4f4 solid !important;
  border-left: 21px #f4f4f4 solid !important;
}
.panache--ba-22 {
  border: 22px #f4f4f4 solid !important;
}
.panache--bt-22 {
  border-top: 22px #f4f4f4 solid !important;
}
.panache--br-22 {
  border-right: 22px #f4f4f4 solid !important;
}
.panache--bl-22 {
  border-left: 22px #f4f4f4 solid !important;
}
.panache--bb-22 {
  border-bottom: 22px #f4f4f4 solid !important;
}
.panache--by-22 {
  border-top: 22px #f4f4f4 solid !important;
  border-bottom: 22px #f4f4f4 solid !important;
}
.panache--bx-22 {
  border-right: 22px #f4f4f4 solid !important;
  border-left: 22px #f4f4f4 solid !important;
}
.panache--ba-23 {
  border: 23px #f4f4f4 solid !important;
}
.panache--bt-23 {
  border-top: 23px #f4f4f4 solid !important;
}
.panache--br-23 {
  border-right: 23px #f4f4f4 solid !important;
}
.panache--bl-23 {
  border-left: 23px #f4f4f4 solid !important;
}
.panache--bb-23 {
  border-bottom: 23px #f4f4f4 solid !important;
}
.panache--by-23 {
  border-top: 23px #f4f4f4 solid !important;
  border-bottom: 23px #f4f4f4 solid !important;
}
.panache--bx-23 {
  border-right: 23px #f4f4f4 solid !important;
  border-left: 23px #f4f4f4 solid !important;
}
.panache--ba-24 {
  border: 24px #f4f4f4 solid !important;
}
.panache--bt-24 {
  border-top: 24px #f4f4f4 solid !important;
}
.panache--br-24 {
  border-right: 24px #f4f4f4 solid !important;
}
.panache--bl-24 {
  border-left: 24px #f4f4f4 solid !important;
}
.panache--bb-24 {
  border-bottom: 24px #f4f4f4 solid !important;
}
.panache--by-24 {
  border-top: 24px #f4f4f4 solid !important;
  border-bottom: 24px #f4f4f4 solid !important;
}
.panache--bx-24 {
  border-right: 24px #f4f4f4 solid !important;
  border-left: 24px #f4f4f4 solid !important;
}
.panache--ba-25 {
  border: 25px #f4f4f4 solid !important;
}
.panache--bt-25 {
  border-top: 25px #f4f4f4 solid !important;
}
.panache--br-25 {
  border-right: 25px #f4f4f4 solid !important;
}
.panache--bl-25 {
  border-left: 25px #f4f4f4 solid !important;
}
.panache--bb-25 {
  border-bottom: 25px #f4f4f4 solid !important;
}
.panache--by-25 {
  border-top: 25px #f4f4f4 solid !important;
  border-bottom: 25px #f4f4f4 solid !important;
}
.panache--bx-25 {
  border-right: 25px #f4f4f4 solid !important;
  border-left: 25px #f4f4f4 solid !important;
}
.panache--ba-26 {
  border: 26px #f4f4f4 solid !important;
}
.panache--bt-26 {
  border-top: 26px #f4f4f4 solid !important;
}
.panache--br-26 {
  border-right: 26px #f4f4f4 solid !important;
}
.panache--bl-26 {
  border-left: 26px #f4f4f4 solid !important;
}
.panache--bb-26 {
  border-bottom: 26px #f4f4f4 solid !important;
}
.panache--by-26 {
  border-top: 26px #f4f4f4 solid !important;
  border-bottom: 26px #f4f4f4 solid !important;
}
.panache--bx-26 {
  border-right: 26px #f4f4f4 solid !important;
  border-left: 26px #f4f4f4 solid !important;
}
.panache--ba-27 {
  border: 27px #f4f4f4 solid !important;
}
.panache--bt-27 {
  border-top: 27px #f4f4f4 solid !important;
}
.panache--br-27 {
  border-right: 27px #f4f4f4 solid !important;
}
.panache--bl-27 {
  border-left: 27px #f4f4f4 solid !important;
}
.panache--bb-27 {
  border-bottom: 27px #f4f4f4 solid !important;
}
.panache--by-27 {
  border-top: 27px #f4f4f4 solid !important;
  border-bottom: 27px #f4f4f4 solid !important;
}
.panache--bx-27 {
  border-right: 27px #f4f4f4 solid !important;
  border-left: 27px #f4f4f4 solid !important;
}
.panache--ba-28 {
  border: 28px #f4f4f4 solid !important;
}
.panache--bt-28 {
  border-top: 28px #f4f4f4 solid !important;
}
.panache--br-28 {
  border-right: 28px #f4f4f4 solid !important;
}
.panache--bl-28 {
  border-left: 28px #f4f4f4 solid !important;
}
.panache--bb-28 {
  border-bottom: 28px #f4f4f4 solid !important;
}
.panache--by-28 {
  border-top: 28px #f4f4f4 solid !important;
  border-bottom: 28px #f4f4f4 solid !important;
}
.panache--bx-28 {
  border-right: 28px #f4f4f4 solid !important;
  border-left: 28px #f4f4f4 solid !important;
}
.panache--ba-29 {
  border: 29px #f4f4f4 solid !important;
}
.panache--bt-29 {
  border-top: 29px #f4f4f4 solid !important;
}
.panache--br-29 {
  border-right: 29px #f4f4f4 solid !important;
}
.panache--bl-29 {
  border-left: 29px #f4f4f4 solid !important;
}
.panache--bb-29 {
  border-bottom: 29px #f4f4f4 solid !important;
}
.panache--by-29 {
  border-top: 29px #f4f4f4 solid !important;
  border-bottom: 29px #f4f4f4 solid !important;
}
.panache--bx-29 {
  border-right: 29px #f4f4f4 solid !important;
  border-left: 29px #f4f4f4 solid !important;
}
.panache--ba-30 {
  border: 30px #f4f4f4 solid !important;
}
.panache--bt-30 {
  border-top: 30px #f4f4f4 solid !important;
}
.panache--br-30 {
  border-right: 30px #f4f4f4 solid !important;
}
.panache--bl-30 {
  border-left: 30px #f4f4f4 solid !important;
}
.panache--bb-30 {
  border-bottom: 30px #f4f4f4 solid !important;
}
.panache--by-30 {
  border-top: 30px #f4f4f4 solid !important;
  border-bottom: 30px #f4f4f4 solid !important;
}
.panache--bx-30 {
  border-right: 30px #f4f4f4 solid !important;
  border-left: 30px #f4f4f4 solid !important;
}
.panache--ba-31 {
  border: 31px #f4f4f4 solid !important;
}
.panache--bt-31 {
  border-top: 31px #f4f4f4 solid !important;
}
.panache--br-31 {
  border-right: 31px #f4f4f4 solid !important;
}
.panache--bl-31 {
  border-left: 31px #f4f4f4 solid !important;
}
.panache--bb-31 {
  border-bottom: 31px #f4f4f4 solid !important;
}
.panache--by-31 {
  border-top: 31px #f4f4f4 solid !important;
  border-bottom: 31px #f4f4f4 solid !important;
}
.panache--bx-31 {
  border-right: 31px #f4f4f4 solid !important;
  border-left: 31px #f4f4f4 solid !important;
}
.panache--ba-32 {
  border: 32px #f4f4f4 solid !important;
}
.panache--bt-32 {
  border-top: 32px #f4f4f4 solid !important;
}
.panache--br-32 {
  border-right: 32px #f4f4f4 solid !important;
}
.panache--bl-32 {
  border-left: 32px #f4f4f4 solid !important;
}
.panache--bb-32 {
  border-bottom: 32px #f4f4f4 solid !important;
}
.panache--by-32 {
  border-top: 32px #f4f4f4 solid !important;
  border-bottom: 32px #f4f4f4 solid !important;
}
.panache--bx-32 {
  border-right: 32px #f4f4f4 solid !important;
  border-left: 32px #f4f4f4 solid !important;
}
.panache--ba-33 {
  border: 33px #f4f4f4 solid !important;
}
.panache--bt-33 {
  border-top: 33px #f4f4f4 solid !important;
}
.panache--br-33 {
  border-right: 33px #f4f4f4 solid !important;
}
.panache--bl-33 {
  border-left: 33px #f4f4f4 solid !important;
}
.panache--bb-33 {
  border-bottom: 33px #f4f4f4 solid !important;
}
.panache--by-33 {
  border-top: 33px #f4f4f4 solid !important;
  border-bottom: 33px #f4f4f4 solid !important;
}
.panache--bx-33 {
  border-right: 33px #f4f4f4 solid !important;
  border-left: 33px #f4f4f4 solid !important;
}
.panache--ba-34 {
  border: 34px #f4f4f4 solid !important;
}
.panache--bt-34 {
  border-top: 34px #f4f4f4 solid !important;
}
.panache--br-34 {
  border-right: 34px #f4f4f4 solid !important;
}
.panache--bl-34 {
  border-left: 34px #f4f4f4 solid !important;
}
.panache--bb-34 {
  border-bottom: 34px #f4f4f4 solid !important;
}
.panache--by-34 {
  border-top: 34px #f4f4f4 solid !important;
  border-bottom: 34px #f4f4f4 solid !important;
}
.panache--bx-34 {
  border-right: 34px #f4f4f4 solid !important;
  border-left: 34px #f4f4f4 solid !important;
}
.panache--ba-35 {
  border: 35px #f4f4f4 solid !important;
}
.panache--bt-35 {
  border-top: 35px #f4f4f4 solid !important;
}
.panache--br-35 {
  border-right: 35px #f4f4f4 solid !important;
}
.panache--bl-35 {
  border-left: 35px #f4f4f4 solid !important;
}
.panache--bb-35 {
  border-bottom: 35px #f4f4f4 solid !important;
}
.panache--by-35 {
  border-top: 35px #f4f4f4 solid !important;
  border-bottom: 35px #f4f4f4 solid !important;
}
.panache--bx-35 {
  border-right: 35px #f4f4f4 solid !important;
  border-left: 35px #f4f4f4 solid !important;
}
.panache--ba-36 {
  border: 36px #f4f4f4 solid !important;
}
.panache--bt-36 {
  border-top: 36px #f4f4f4 solid !important;
}
.panache--br-36 {
  border-right: 36px #f4f4f4 solid !important;
}
.panache--bl-36 {
  border-left: 36px #f4f4f4 solid !important;
}
.panache--bb-36 {
  border-bottom: 36px #f4f4f4 solid !important;
}
.panache--by-36 {
  border-top: 36px #f4f4f4 solid !important;
  border-bottom: 36px #f4f4f4 solid !important;
}
.panache--bx-36 {
  border-right: 36px #f4f4f4 solid !important;
  border-left: 36px #f4f4f4 solid !important;
}
.panache--ba-37 {
  border: 37px #f4f4f4 solid !important;
}
.panache--bt-37 {
  border-top: 37px #f4f4f4 solid !important;
}
.panache--br-37 {
  border-right: 37px #f4f4f4 solid !important;
}
.panache--bl-37 {
  border-left: 37px #f4f4f4 solid !important;
}
.panache--bb-37 {
  border-bottom: 37px #f4f4f4 solid !important;
}
.panache--by-37 {
  border-top: 37px #f4f4f4 solid !important;
  border-bottom: 37px #f4f4f4 solid !important;
}
.panache--bx-37 {
  border-right: 37px #f4f4f4 solid !important;
  border-left: 37px #f4f4f4 solid !important;
}
.panache--ba-38 {
  border: 38px #f4f4f4 solid !important;
}
.panache--bt-38 {
  border-top: 38px #f4f4f4 solid !important;
}
.panache--br-38 {
  border-right: 38px #f4f4f4 solid !important;
}
.panache--bl-38 {
  border-left: 38px #f4f4f4 solid !important;
}
.panache--bb-38 {
  border-bottom: 38px #f4f4f4 solid !important;
}
.panache--by-38 {
  border-top: 38px #f4f4f4 solid !important;
  border-bottom: 38px #f4f4f4 solid !important;
}
.panache--bx-38 {
  border-right: 38px #f4f4f4 solid !important;
  border-left: 38px #f4f4f4 solid !important;
}
.panache--ba-39 {
  border: 39px #f4f4f4 solid !important;
}
.panache--bt-39 {
  border-top: 39px #f4f4f4 solid !important;
}
.panache--br-39 {
  border-right: 39px #f4f4f4 solid !important;
}
.panache--bl-39 {
  border-left: 39px #f4f4f4 solid !important;
}
.panache--bb-39 {
  border-bottom: 39px #f4f4f4 solid !important;
}
.panache--by-39 {
  border-top: 39px #f4f4f4 solid !important;
  border-bottom: 39px #f4f4f4 solid !important;
}
.panache--bx-39 {
  border-right: 39px #f4f4f4 solid !important;
  border-left: 39px #f4f4f4 solid !important;
}
.panache--ba-40 {
  border: 40px #f4f4f4 solid !important;
}
.panache--bt-40 {
  border-top: 40px #f4f4f4 solid !important;
}
.panache--br-40 {
  border-right: 40px #f4f4f4 solid !important;
}
.panache--bl-40 {
  border-left: 40px #f4f4f4 solid !important;
}
.panache--bb-40 {
  border-bottom: 40px #f4f4f4 solid !important;
}
.panache--by-40 {
  border-top: 40px #f4f4f4 solid !important;
  border-bottom: 40px #f4f4f4 solid !important;
}
.panache--bx-40 {
  border-right: 40px #f4f4f4 solid !important;
  border-left: 40px #f4f4f4 solid !important;
}
.panache--ba-41 {
  border: 41px #f4f4f4 solid !important;
}
.panache--bt-41 {
  border-top: 41px #f4f4f4 solid !important;
}
.panache--br-41 {
  border-right: 41px #f4f4f4 solid !important;
}
.panache--bl-41 {
  border-left: 41px #f4f4f4 solid !important;
}
.panache--bb-41 {
  border-bottom: 41px #f4f4f4 solid !important;
}
.panache--by-41 {
  border-top: 41px #f4f4f4 solid !important;
  border-bottom: 41px #f4f4f4 solid !important;
}
.panache--bx-41 {
  border-right: 41px #f4f4f4 solid !important;
  border-left: 41px #f4f4f4 solid !important;
}
.panache--ba-42 {
  border: 42px #f4f4f4 solid !important;
}
.panache--bt-42 {
  border-top: 42px #f4f4f4 solid !important;
}
.panache--br-42 {
  border-right: 42px #f4f4f4 solid !important;
}
.panache--bl-42 {
  border-left: 42px #f4f4f4 solid !important;
}
.panache--bb-42 {
  border-bottom: 42px #f4f4f4 solid !important;
}
.panache--by-42 {
  border-top: 42px #f4f4f4 solid !important;
  border-bottom: 42px #f4f4f4 solid !important;
}
.panache--bx-42 {
  border-right: 42px #f4f4f4 solid !important;
  border-left: 42px #f4f4f4 solid !important;
}
.panache--ba-43 {
  border: 43px #f4f4f4 solid !important;
}
.panache--bt-43 {
  border-top: 43px #f4f4f4 solid !important;
}
.panache--br-43 {
  border-right: 43px #f4f4f4 solid !important;
}
.panache--bl-43 {
  border-left: 43px #f4f4f4 solid !important;
}
.panache--bb-43 {
  border-bottom: 43px #f4f4f4 solid !important;
}
.panache--by-43 {
  border-top: 43px #f4f4f4 solid !important;
  border-bottom: 43px #f4f4f4 solid !important;
}
.panache--bx-43 {
  border-right: 43px #f4f4f4 solid !important;
  border-left: 43px #f4f4f4 solid !important;
}
.panache--ba-44 {
  border: 44px #f4f4f4 solid !important;
}
.panache--bt-44 {
  border-top: 44px #f4f4f4 solid !important;
}
.panache--br-44 {
  border-right: 44px #f4f4f4 solid !important;
}
.panache--bl-44 {
  border-left: 44px #f4f4f4 solid !important;
}
.panache--bb-44 {
  border-bottom: 44px #f4f4f4 solid !important;
}
.panache--by-44 {
  border-top: 44px #f4f4f4 solid !important;
  border-bottom: 44px #f4f4f4 solid !important;
}
.panache--bx-44 {
  border-right: 44px #f4f4f4 solid !important;
  border-left: 44px #f4f4f4 solid !important;
}
.panache--ba-45 {
  border: 45px #f4f4f4 solid !important;
}
.panache--bt-45 {
  border-top: 45px #f4f4f4 solid !important;
}
.panache--br-45 {
  border-right: 45px #f4f4f4 solid !important;
}
.panache--bl-45 {
  border-left: 45px #f4f4f4 solid !important;
}
.panache--bb-45 {
  border-bottom: 45px #f4f4f4 solid !important;
}
.panache--by-45 {
  border-top: 45px #f4f4f4 solid !important;
  border-bottom: 45px #f4f4f4 solid !important;
}
.panache--bx-45 {
  border-right: 45px #f4f4f4 solid !important;
  border-left: 45px #f4f4f4 solid !important;
}
.panache--ba-46 {
  border: 46px #f4f4f4 solid !important;
}
.panache--bt-46 {
  border-top: 46px #f4f4f4 solid !important;
}
.panache--br-46 {
  border-right: 46px #f4f4f4 solid !important;
}
.panache--bl-46 {
  border-left: 46px #f4f4f4 solid !important;
}
.panache--bb-46 {
  border-bottom: 46px #f4f4f4 solid !important;
}
.panache--by-46 {
  border-top: 46px #f4f4f4 solid !important;
  border-bottom: 46px #f4f4f4 solid !important;
}
.panache--bx-46 {
  border-right: 46px #f4f4f4 solid !important;
  border-left: 46px #f4f4f4 solid !important;
}
.panache--ba-47 {
  border: 47px #f4f4f4 solid !important;
}
.panache--bt-47 {
  border-top: 47px #f4f4f4 solid !important;
}
.panache--br-47 {
  border-right: 47px #f4f4f4 solid !important;
}
.panache--bl-47 {
  border-left: 47px #f4f4f4 solid !important;
}
.panache--bb-47 {
  border-bottom: 47px #f4f4f4 solid !important;
}
.panache--by-47 {
  border-top: 47px #f4f4f4 solid !important;
  border-bottom: 47px #f4f4f4 solid !important;
}
.panache--bx-47 {
  border-right: 47px #f4f4f4 solid !important;
  border-left: 47px #f4f4f4 solid !important;
}
.panache--ba-48 {
  border: 48px #f4f4f4 solid !important;
}
.panache--bt-48 {
  border-top: 48px #f4f4f4 solid !important;
}
.panache--br-48 {
  border-right: 48px #f4f4f4 solid !important;
}
.panache--bl-48 {
  border-left: 48px #f4f4f4 solid !important;
}
.panache--bb-48 {
  border-bottom: 48px #f4f4f4 solid !important;
}
.panache--by-48 {
  border-top: 48px #f4f4f4 solid !important;
  border-bottom: 48px #f4f4f4 solid !important;
}
.panache--bx-48 {
  border-right: 48px #f4f4f4 solid !important;
  border-left: 48px #f4f4f4 solid !important;
}
.panache--ba-49 {
  border: 49px #f4f4f4 solid !important;
}
.panache--bt-49 {
  border-top: 49px #f4f4f4 solid !important;
}
.panache--br-49 {
  border-right: 49px #f4f4f4 solid !important;
}
.panache--bl-49 {
  border-left: 49px #f4f4f4 solid !important;
}
.panache--bb-49 {
  border-bottom: 49px #f4f4f4 solid !important;
}
.panache--by-49 {
  border-top: 49px #f4f4f4 solid !important;
  border-bottom: 49px #f4f4f4 solid !important;
}
.panache--bx-49 {
  border-right: 49px #f4f4f4 solid !important;
  border-left: 49px #f4f4f4 solid !important;
}
.panache--ba-50 {
  border: 50px #f4f4f4 solid !important;
}
.panache--bt-50 {
  border-top: 50px #f4f4f4 solid !important;
}
.panache--br-50 {
  border-right: 50px #f4f4f4 solid !important;
}
.panache--bl-50 {
  border-left: 50px #f4f4f4 solid !important;
}
.panache--bb-50 {
  border-bottom: 50px #f4f4f4 solid !important;
}
.panache--by-50 {
  border-top: 50px #f4f4f4 solid !important;
  border-bottom: 50px #f4f4f4 solid !important;
}
.panache--bx-50 {
  border-right: 50px #f4f4f4 solid !important;
  border-left: 50px #f4f4f4 solid !important;
}
.panache--ba-51 {
  border: 51px #f4f4f4 solid !important;
}
.panache--bt-51 {
  border-top: 51px #f4f4f4 solid !important;
}
.panache--br-51 {
  border-right: 51px #f4f4f4 solid !important;
}
.panache--bl-51 {
  border-left: 51px #f4f4f4 solid !important;
}
.panache--bb-51 {
  border-bottom: 51px #f4f4f4 solid !important;
}
.panache--by-51 {
  border-top: 51px #f4f4f4 solid !important;
  border-bottom: 51px #f4f4f4 solid !important;
}
.panache--bx-51 {
  border-right: 51px #f4f4f4 solid !important;
  border-left: 51px #f4f4f4 solid !important;
}
.panache--ba-52 {
  border: 52px #f4f4f4 solid !important;
}
.panache--bt-52 {
  border-top: 52px #f4f4f4 solid !important;
}
.panache--br-52 {
  border-right: 52px #f4f4f4 solid !important;
}
.panache--bl-52 {
  border-left: 52px #f4f4f4 solid !important;
}
.panache--bb-52 {
  border-bottom: 52px #f4f4f4 solid !important;
}
.panache--by-52 {
  border-top: 52px #f4f4f4 solid !important;
  border-bottom: 52px #f4f4f4 solid !important;
}
.panache--bx-52 {
  border-right: 52px #f4f4f4 solid !important;
  border-left: 52px #f4f4f4 solid !important;
}
.panache--ba-53 {
  border: 53px #f4f4f4 solid !important;
}
.panache--bt-53 {
  border-top: 53px #f4f4f4 solid !important;
}
.panache--br-53 {
  border-right: 53px #f4f4f4 solid !important;
}
.panache--bl-53 {
  border-left: 53px #f4f4f4 solid !important;
}
.panache--bb-53 {
  border-bottom: 53px #f4f4f4 solid !important;
}
.panache--by-53 {
  border-top: 53px #f4f4f4 solid !important;
  border-bottom: 53px #f4f4f4 solid !important;
}
.panache--bx-53 {
  border-right: 53px #f4f4f4 solid !important;
  border-left: 53px #f4f4f4 solid !important;
}
.panache--ba-54 {
  border: 54px #f4f4f4 solid !important;
}
.panache--bt-54 {
  border-top: 54px #f4f4f4 solid !important;
}
.panache--br-54 {
  border-right: 54px #f4f4f4 solid !important;
}
.panache--bl-54 {
  border-left: 54px #f4f4f4 solid !important;
}
.panache--bb-54 {
  border-bottom: 54px #f4f4f4 solid !important;
}
.panache--by-54 {
  border-top: 54px #f4f4f4 solid !important;
  border-bottom: 54px #f4f4f4 solid !important;
}
.panache--bx-54 {
  border-right: 54px #f4f4f4 solid !important;
  border-left: 54px #f4f4f4 solid !important;
}
.panache--ba-55 {
  border: 55px #f4f4f4 solid !important;
}
.panache--bt-55 {
  border-top: 55px #f4f4f4 solid !important;
}
.panache--br-55 {
  border-right: 55px #f4f4f4 solid !important;
}
.panache--bl-55 {
  border-left: 55px #f4f4f4 solid !important;
}
.panache--bb-55 {
  border-bottom: 55px #f4f4f4 solid !important;
}
.panache--by-55 {
  border-top: 55px #f4f4f4 solid !important;
  border-bottom: 55px #f4f4f4 solid !important;
}
.panache--bx-55 {
  border-right: 55px #f4f4f4 solid !important;
  border-left: 55px #f4f4f4 solid !important;
}
.panache--ba-56 {
  border: 56px #f4f4f4 solid !important;
}
.panache--bt-56 {
  border-top: 56px #f4f4f4 solid !important;
}
.panache--br-56 {
  border-right: 56px #f4f4f4 solid !important;
}
.panache--bl-56 {
  border-left: 56px #f4f4f4 solid !important;
}
.panache--bb-56 {
  border-bottom: 56px #f4f4f4 solid !important;
}
.panache--by-56 {
  border-top: 56px #f4f4f4 solid !important;
  border-bottom: 56px #f4f4f4 solid !important;
}
.panache--bx-56 {
  border-right: 56px #f4f4f4 solid !important;
  border-left: 56px #f4f4f4 solid !important;
}
.panache--ba-57 {
  border: 57px #f4f4f4 solid !important;
}
.panache--bt-57 {
  border-top: 57px #f4f4f4 solid !important;
}
.panache--br-57 {
  border-right: 57px #f4f4f4 solid !important;
}
.panache--bl-57 {
  border-left: 57px #f4f4f4 solid !important;
}
.panache--bb-57 {
  border-bottom: 57px #f4f4f4 solid !important;
}
.panache--by-57 {
  border-top: 57px #f4f4f4 solid !important;
  border-bottom: 57px #f4f4f4 solid !important;
}
.panache--bx-57 {
  border-right: 57px #f4f4f4 solid !important;
  border-left: 57px #f4f4f4 solid !important;
}
.panache--ba-58 {
  border: 58px #f4f4f4 solid !important;
}
.panache--bt-58 {
  border-top: 58px #f4f4f4 solid !important;
}
.panache--br-58 {
  border-right: 58px #f4f4f4 solid !important;
}
.panache--bl-58 {
  border-left: 58px #f4f4f4 solid !important;
}
.panache--bb-58 {
  border-bottom: 58px #f4f4f4 solid !important;
}
.panache--by-58 {
  border-top: 58px #f4f4f4 solid !important;
  border-bottom: 58px #f4f4f4 solid !important;
}
.panache--bx-58 {
  border-right: 58px #f4f4f4 solid !important;
  border-left: 58px #f4f4f4 solid !important;
}
.panache--ba-59 {
  border: 59px #f4f4f4 solid !important;
}
.panache--bt-59 {
  border-top: 59px #f4f4f4 solid !important;
}
.panache--br-59 {
  border-right: 59px #f4f4f4 solid !important;
}
.panache--bl-59 {
  border-left: 59px #f4f4f4 solid !important;
}
.panache--bb-59 {
  border-bottom: 59px #f4f4f4 solid !important;
}
.panache--by-59 {
  border-top: 59px #f4f4f4 solid !important;
  border-bottom: 59px #f4f4f4 solid !important;
}
.panache--bx-59 {
  border-right: 59px #f4f4f4 solid !important;
  border-left: 59px #f4f4f4 solid !important;
}
.panache--ba-60 {
  border: 60px #f4f4f4 solid !important;
}
.panache--bt-60 {
  border-top: 60px #f4f4f4 solid !important;
}
.panache--br-60 {
  border-right: 60px #f4f4f4 solid !important;
}
.panache--bl-60 {
  border-left: 60px #f4f4f4 solid !important;
}
.panache--bb-60 {
  border-bottom: 60px #f4f4f4 solid !important;
}
.panache--by-60 {
  border-top: 60px #f4f4f4 solid !important;
  border-bottom: 60px #f4f4f4 solid !important;
}
.panache--bx-60 {
  border-right: 60px #f4f4f4 solid !important;
  border-left: 60px #f4f4f4 solid !important;
}
.panache--ba-61 {
  border: 61px #f4f4f4 solid !important;
}
.panache--bt-61 {
  border-top: 61px #f4f4f4 solid !important;
}
.panache--br-61 {
  border-right: 61px #f4f4f4 solid !important;
}
.panache--bl-61 {
  border-left: 61px #f4f4f4 solid !important;
}
.panache--bb-61 {
  border-bottom: 61px #f4f4f4 solid !important;
}
.panache--by-61 {
  border-top: 61px #f4f4f4 solid !important;
  border-bottom: 61px #f4f4f4 solid !important;
}
.panache--bx-61 {
  border-right: 61px #f4f4f4 solid !important;
  border-left: 61px #f4f4f4 solid !important;
}
.panache--ba-62 {
  border: 62px #f4f4f4 solid !important;
}
.panache--bt-62 {
  border-top: 62px #f4f4f4 solid !important;
}
.panache--br-62 {
  border-right: 62px #f4f4f4 solid !important;
}
.panache--bl-62 {
  border-left: 62px #f4f4f4 solid !important;
}
.panache--bb-62 {
  border-bottom: 62px #f4f4f4 solid !important;
}
.panache--by-62 {
  border-top: 62px #f4f4f4 solid !important;
  border-bottom: 62px #f4f4f4 solid !important;
}
.panache--bx-62 {
  border-right: 62px #f4f4f4 solid !important;
  border-left: 62px #f4f4f4 solid !important;
}
.panache--ba-63 {
  border: 63px #f4f4f4 solid !important;
}
.panache--bt-63 {
  border-top: 63px #f4f4f4 solid !important;
}
.panache--br-63 {
  border-right: 63px #f4f4f4 solid !important;
}
.panache--bl-63 {
  border-left: 63px #f4f4f4 solid !important;
}
.panache--bb-63 {
  border-bottom: 63px #f4f4f4 solid !important;
}
.panache--by-63 {
  border-top: 63px #f4f4f4 solid !important;
  border-bottom: 63px #f4f4f4 solid !important;
}
.panache--bx-63 {
  border-right: 63px #f4f4f4 solid !important;
  border-left: 63px #f4f4f4 solid !important;
}
.panache--ba-64 {
  border: 64px #f4f4f4 solid !important;
}
.panache--bt-64 {
  border-top: 64px #f4f4f4 solid !important;
}
.panache--br-64 {
  border-right: 64px #f4f4f4 solid !important;
}
.panache--bl-64 {
  border-left: 64px #f4f4f4 solid !important;
}
.panache--bb-64 {
  border-bottom: 64px #f4f4f4 solid !important;
}
.panache--by-64 {
  border-top: 64px #f4f4f4 solid !important;
  border-bottom: 64px #f4f4f4 solid !important;
}
.panache--bx-64 {
  border-right: 64px #f4f4f4 solid !important;
  border-left: 64px #f4f4f4 solid !important;
}
.panache--ba-65 {
  border: 65px #f4f4f4 solid !important;
}
.panache--bt-65 {
  border-top: 65px #f4f4f4 solid !important;
}
.panache--br-65 {
  border-right: 65px #f4f4f4 solid !important;
}
.panache--bl-65 {
  border-left: 65px #f4f4f4 solid !important;
}
.panache--bb-65 {
  border-bottom: 65px #f4f4f4 solid !important;
}
.panache--by-65 {
  border-top: 65px #f4f4f4 solid !important;
  border-bottom: 65px #f4f4f4 solid !important;
}
.panache--bx-65 {
  border-right: 65px #f4f4f4 solid !important;
  border-left: 65px #f4f4f4 solid !important;
}
.panache--ba-66 {
  border: 66px #f4f4f4 solid !important;
}
.panache--bt-66 {
  border-top: 66px #f4f4f4 solid !important;
}
.panache--br-66 {
  border-right: 66px #f4f4f4 solid !important;
}
.panache--bl-66 {
  border-left: 66px #f4f4f4 solid !important;
}
.panache--bb-66 {
  border-bottom: 66px #f4f4f4 solid !important;
}
.panache--by-66 {
  border-top: 66px #f4f4f4 solid !important;
  border-bottom: 66px #f4f4f4 solid !important;
}
.panache--bx-66 {
  border-right: 66px #f4f4f4 solid !important;
  border-left: 66px #f4f4f4 solid !important;
}
.panache--ba-67 {
  border: 67px #f4f4f4 solid !important;
}
.panache--bt-67 {
  border-top: 67px #f4f4f4 solid !important;
}
.panache--br-67 {
  border-right: 67px #f4f4f4 solid !important;
}
.panache--bl-67 {
  border-left: 67px #f4f4f4 solid !important;
}
.panache--bb-67 {
  border-bottom: 67px #f4f4f4 solid !important;
}
.panache--by-67 {
  border-top: 67px #f4f4f4 solid !important;
  border-bottom: 67px #f4f4f4 solid !important;
}
.panache--bx-67 {
  border-right: 67px #f4f4f4 solid !important;
  border-left: 67px #f4f4f4 solid !important;
}
.panache--ba-68 {
  border: 68px #f4f4f4 solid !important;
}
.panache--bt-68 {
  border-top: 68px #f4f4f4 solid !important;
}
.panache--br-68 {
  border-right: 68px #f4f4f4 solid !important;
}
.panache--bl-68 {
  border-left: 68px #f4f4f4 solid !important;
}
.panache--bb-68 {
  border-bottom: 68px #f4f4f4 solid !important;
}
.panache--by-68 {
  border-top: 68px #f4f4f4 solid !important;
  border-bottom: 68px #f4f4f4 solid !important;
}
.panache--bx-68 {
  border-right: 68px #f4f4f4 solid !important;
  border-left: 68px #f4f4f4 solid !important;
}
.panache--ba-69 {
  border: 69px #f4f4f4 solid !important;
}
.panache--bt-69 {
  border-top: 69px #f4f4f4 solid !important;
}
.panache--br-69 {
  border-right: 69px #f4f4f4 solid !important;
}
.panache--bl-69 {
  border-left: 69px #f4f4f4 solid !important;
}
.panache--bb-69 {
  border-bottom: 69px #f4f4f4 solid !important;
}
.panache--by-69 {
  border-top: 69px #f4f4f4 solid !important;
  border-bottom: 69px #f4f4f4 solid !important;
}
.panache--bx-69 {
  border-right: 69px #f4f4f4 solid !important;
  border-left: 69px #f4f4f4 solid !important;
}
.panache--ba-70 {
  border: 70px #f4f4f4 solid !important;
}
.panache--bt-70 {
  border-top: 70px #f4f4f4 solid !important;
}
.panache--br-70 {
  border-right: 70px #f4f4f4 solid !important;
}
.panache--bl-70 {
  border-left: 70px #f4f4f4 solid !important;
}
.panache--bb-70 {
  border-bottom: 70px #f4f4f4 solid !important;
}
.panache--by-70 {
  border-top: 70px #f4f4f4 solid !important;
  border-bottom: 70px #f4f4f4 solid !important;
}
.panache--bx-70 {
  border-right: 70px #f4f4f4 solid !important;
  border-left: 70px #f4f4f4 solid !important;
}
.panache--ba-71 {
  border: 71px #f4f4f4 solid !important;
}
.panache--bt-71 {
  border-top: 71px #f4f4f4 solid !important;
}
.panache--br-71 {
  border-right: 71px #f4f4f4 solid !important;
}
.panache--bl-71 {
  border-left: 71px #f4f4f4 solid !important;
}
.panache--bb-71 {
  border-bottom: 71px #f4f4f4 solid !important;
}
.panache--by-71 {
  border-top: 71px #f4f4f4 solid !important;
  border-bottom: 71px #f4f4f4 solid !important;
}
.panache--bx-71 {
  border-right: 71px #f4f4f4 solid !important;
  border-left: 71px #f4f4f4 solid !important;
}
.panache--ba-72 {
  border: 72px #f4f4f4 solid !important;
}
.panache--bt-72 {
  border-top: 72px #f4f4f4 solid !important;
}
.panache--br-72 {
  border-right: 72px #f4f4f4 solid !important;
}
.panache--bl-72 {
  border-left: 72px #f4f4f4 solid !important;
}
.panache--bb-72 {
  border-bottom: 72px #f4f4f4 solid !important;
}
.panache--by-72 {
  border-top: 72px #f4f4f4 solid !important;
  border-bottom: 72px #f4f4f4 solid !important;
}
.panache--bx-72 {
  border-right: 72px #f4f4f4 solid !important;
  border-left: 72px #f4f4f4 solid !important;
}
.panache--ba-73 {
  border: 73px #f4f4f4 solid !important;
}
.panache--bt-73 {
  border-top: 73px #f4f4f4 solid !important;
}
.panache--br-73 {
  border-right: 73px #f4f4f4 solid !important;
}
.panache--bl-73 {
  border-left: 73px #f4f4f4 solid !important;
}
.panache--bb-73 {
  border-bottom: 73px #f4f4f4 solid !important;
}
.panache--by-73 {
  border-top: 73px #f4f4f4 solid !important;
  border-bottom: 73px #f4f4f4 solid !important;
}
.panache--bx-73 {
  border-right: 73px #f4f4f4 solid !important;
  border-left: 73px #f4f4f4 solid !important;
}
.panache--ba-74 {
  border: 74px #f4f4f4 solid !important;
}
.panache--bt-74 {
  border-top: 74px #f4f4f4 solid !important;
}
.panache--br-74 {
  border-right: 74px #f4f4f4 solid !important;
}
.panache--bl-74 {
  border-left: 74px #f4f4f4 solid !important;
}
.panache--bb-74 {
  border-bottom: 74px #f4f4f4 solid !important;
}
.panache--by-74 {
  border-top: 74px #f4f4f4 solid !important;
  border-bottom: 74px #f4f4f4 solid !important;
}
.panache--bx-74 {
  border-right: 74px #f4f4f4 solid !important;
  border-left: 74px #f4f4f4 solid !important;
}
.panache--ba-75 {
  border: 75px #f4f4f4 solid !important;
}
.panache--bt-75 {
  border-top: 75px #f4f4f4 solid !important;
}
.panache--br-75 {
  border-right: 75px #f4f4f4 solid !important;
}
.panache--bl-75 {
  border-left: 75px #f4f4f4 solid !important;
}
.panache--bb-75 {
  border-bottom: 75px #f4f4f4 solid !important;
}
.panache--by-75 {
  border-top: 75px #f4f4f4 solid !important;
  border-bottom: 75px #f4f4f4 solid !important;
}
.panache--bx-75 {
  border-right: 75px #f4f4f4 solid !important;
  border-left: 75px #f4f4f4 solid !important;
}
.panache--ba-76 {
  border: 76px #f4f4f4 solid !important;
}
.panache--bt-76 {
  border-top: 76px #f4f4f4 solid !important;
}
.panache--br-76 {
  border-right: 76px #f4f4f4 solid !important;
}
.panache--bl-76 {
  border-left: 76px #f4f4f4 solid !important;
}
.panache--bb-76 {
  border-bottom: 76px #f4f4f4 solid !important;
}
.panache--by-76 {
  border-top: 76px #f4f4f4 solid !important;
  border-bottom: 76px #f4f4f4 solid !important;
}
.panache--bx-76 {
  border-right: 76px #f4f4f4 solid !important;
  border-left: 76px #f4f4f4 solid !important;
}
.panache--ba-77 {
  border: 77px #f4f4f4 solid !important;
}
.panache--bt-77 {
  border-top: 77px #f4f4f4 solid !important;
}
.panache--br-77 {
  border-right: 77px #f4f4f4 solid !important;
}
.panache--bl-77 {
  border-left: 77px #f4f4f4 solid !important;
}
.panache--bb-77 {
  border-bottom: 77px #f4f4f4 solid !important;
}
.panache--by-77 {
  border-top: 77px #f4f4f4 solid !important;
  border-bottom: 77px #f4f4f4 solid !important;
}
.panache--bx-77 {
  border-right: 77px #f4f4f4 solid !important;
  border-left: 77px #f4f4f4 solid !important;
}
.panache--ba-78 {
  border: 78px #f4f4f4 solid !important;
}
.panache--bt-78 {
  border-top: 78px #f4f4f4 solid !important;
}
.panache--br-78 {
  border-right: 78px #f4f4f4 solid !important;
}
.panache--bl-78 {
  border-left: 78px #f4f4f4 solid !important;
}
.panache--bb-78 {
  border-bottom: 78px #f4f4f4 solid !important;
}
.panache--by-78 {
  border-top: 78px #f4f4f4 solid !important;
  border-bottom: 78px #f4f4f4 solid !important;
}
.panache--bx-78 {
  border-right: 78px #f4f4f4 solid !important;
  border-left: 78px #f4f4f4 solid !important;
}
.panache--ba-79 {
  border: 79px #f4f4f4 solid !important;
}
.panache--bt-79 {
  border-top: 79px #f4f4f4 solid !important;
}
.panache--br-79 {
  border-right: 79px #f4f4f4 solid !important;
}
.panache--bl-79 {
  border-left: 79px #f4f4f4 solid !important;
}
.panache--bb-79 {
  border-bottom: 79px #f4f4f4 solid !important;
}
.panache--by-79 {
  border-top: 79px #f4f4f4 solid !important;
  border-bottom: 79px #f4f4f4 solid !important;
}
.panache--bx-79 {
  border-right: 79px #f4f4f4 solid !important;
  border-left: 79px #f4f4f4 solid !important;
}
.panache--ba-80 {
  border: 80px #f4f4f4 solid !important;
}
.panache--bt-80 {
  border-top: 80px #f4f4f4 solid !important;
}
.panache--br-80 {
  border-right: 80px #f4f4f4 solid !important;
}
.panache--bl-80 {
  border-left: 80px #f4f4f4 solid !important;
}
.panache--bb-80 {
  border-bottom: 80px #f4f4f4 solid !important;
}
.panache--by-80 {
  border-top: 80px #f4f4f4 solid !important;
  border-bottom: 80px #f4f4f4 solid !important;
}
.panache--bx-80 {
  border-right: 80px #f4f4f4 solid !important;
  border-left: 80px #f4f4f4 solid !important;
}
.panache--ba-81 {
  border: 81px #f4f4f4 solid !important;
}
.panache--bt-81 {
  border-top: 81px #f4f4f4 solid !important;
}
.panache--br-81 {
  border-right: 81px #f4f4f4 solid !important;
}
.panache--bl-81 {
  border-left: 81px #f4f4f4 solid !important;
}
.panache--bb-81 {
  border-bottom: 81px #f4f4f4 solid !important;
}
.panache--by-81 {
  border-top: 81px #f4f4f4 solid !important;
  border-bottom: 81px #f4f4f4 solid !important;
}
.panache--bx-81 {
  border-right: 81px #f4f4f4 solid !important;
  border-left: 81px #f4f4f4 solid !important;
}
.panache--ba-82 {
  border: 82px #f4f4f4 solid !important;
}
.panache--bt-82 {
  border-top: 82px #f4f4f4 solid !important;
}
.panache--br-82 {
  border-right: 82px #f4f4f4 solid !important;
}
.panache--bl-82 {
  border-left: 82px #f4f4f4 solid !important;
}
.panache--bb-82 {
  border-bottom: 82px #f4f4f4 solid !important;
}
.panache--by-82 {
  border-top: 82px #f4f4f4 solid !important;
  border-bottom: 82px #f4f4f4 solid !important;
}
.panache--bx-82 {
  border-right: 82px #f4f4f4 solid !important;
  border-left: 82px #f4f4f4 solid !important;
}
.panache--ba-83 {
  border: 83px #f4f4f4 solid !important;
}
.panache--bt-83 {
  border-top: 83px #f4f4f4 solid !important;
}
.panache--br-83 {
  border-right: 83px #f4f4f4 solid !important;
}
.panache--bl-83 {
  border-left: 83px #f4f4f4 solid !important;
}
.panache--bb-83 {
  border-bottom: 83px #f4f4f4 solid !important;
}
.panache--by-83 {
  border-top: 83px #f4f4f4 solid !important;
  border-bottom: 83px #f4f4f4 solid !important;
}
.panache--bx-83 {
  border-right: 83px #f4f4f4 solid !important;
  border-left: 83px #f4f4f4 solid !important;
}
.panache--ba-84 {
  border: 84px #f4f4f4 solid !important;
}
.panache--bt-84 {
  border-top: 84px #f4f4f4 solid !important;
}
.panache--br-84 {
  border-right: 84px #f4f4f4 solid !important;
}
.panache--bl-84 {
  border-left: 84px #f4f4f4 solid !important;
}
.panache--bb-84 {
  border-bottom: 84px #f4f4f4 solid !important;
}
.panache--by-84 {
  border-top: 84px #f4f4f4 solid !important;
  border-bottom: 84px #f4f4f4 solid !important;
}
.panache--bx-84 {
  border-right: 84px #f4f4f4 solid !important;
  border-left: 84px #f4f4f4 solid !important;
}
.panache--ba-85 {
  border: 85px #f4f4f4 solid !important;
}
.panache--bt-85 {
  border-top: 85px #f4f4f4 solid !important;
}
.panache--br-85 {
  border-right: 85px #f4f4f4 solid !important;
}
.panache--bl-85 {
  border-left: 85px #f4f4f4 solid !important;
}
.panache--bb-85 {
  border-bottom: 85px #f4f4f4 solid !important;
}
.panache--by-85 {
  border-top: 85px #f4f4f4 solid !important;
  border-bottom: 85px #f4f4f4 solid !important;
}
.panache--bx-85 {
  border-right: 85px #f4f4f4 solid !important;
  border-left: 85px #f4f4f4 solid !important;
}
.panache--ba-86 {
  border: 86px #f4f4f4 solid !important;
}
.panache--bt-86 {
  border-top: 86px #f4f4f4 solid !important;
}
.panache--br-86 {
  border-right: 86px #f4f4f4 solid !important;
}
.panache--bl-86 {
  border-left: 86px #f4f4f4 solid !important;
}
.panache--bb-86 {
  border-bottom: 86px #f4f4f4 solid !important;
}
.panache--by-86 {
  border-top: 86px #f4f4f4 solid !important;
  border-bottom: 86px #f4f4f4 solid !important;
}
.panache--bx-86 {
  border-right: 86px #f4f4f4 solid !important;
  border-left: 86px #f4f4f4 solid !important;
}
.panache--ba-87 {
  border: 87px #f4f4f4 solid !important;
}
.panache--bt-87 {
  border-top: 87px #f4f4f4 solid !important;
}
.panache--br-87 {
  border-right: 87px #f4f4f4 solid !important;
}
.panache--bl-87 {
  border-left: 87px #f4f4f4 solid !important;
}
.panache--bb-87 {
  border-bottom: 87px #f4f4f4 solid !important;
}
.panache--by-87 {
  border-top: 87px #f4f4f4 solid !important;
  border-bottom: 87px #f4f4f4 solid !important;
}
.panache--bx-87 {
  border-right: 87px #f4f4f4 solid !important;
  border-left: 87px #f4f4f4 solid !important;
}
.panache--ba-88 {
  border: 88px #f4f4f4 solid !important;
}
.panache--bt-88 {
  border-top: 88px #f4f4f4 solid !important;
}
.panache--br-88 {
  border-right: 88px #f4f4f4 solid !important;
}
.panache--bl-88 {
  border-left: 88px #f4f4f4 solid !important;
}
.panache--bb-88 {
  border-bottom: 88px #f4f4f4 solid !important;
}
.panache--by-88 {
  border-top: 88px #f4f4f4 solid !important;
  border-bottom: 88px #f4f4f4 solid !important;
}
.panache--bx-88 {
  border-right: 88px #f4f4f4 solid !important;
  border-left: 88px #f4f4f4 solid !important;
}
.panache--ba-89 {
  border: 89px #f4f4f4 solid !important;
}
.panache--bt-89 {
  border-top: 89px #f4f4f4 solid !important;
}
.panache--br-89 {
  border-right: 89px #f4f4f4 solid !important;
}
.panache--bl-89 {
  border-left: 89px #f4f4f4 solid !important;
}
.panache--bb-89 {
  border-bottom: 89px #f4f4f4 solid !important;
}
.panache--by-89 {
  border-top: 89px #f4f4f4 solid !important;
  border-bottom: 89px #f4f4f4 solid !important;
}
.panache--bx-89 {
  border-right: 89px #f4f4f4 solid !important;
  border-left: 89px #f4f4f4 solid !important;
}
.panache--ba-90 {
  border: 90px #f4f4f4 solid !important;
}
.panache--bt-90 {
  border-top: 90px #f4f4f4 solid !important;
}
.panache--br-90 {
  border-right: 90px #f4f4f4 solid !important;
}
.panache--bl-90 {
  border-left: 90px #f4f4f4 solid !important;
}
.panache--bb-90 {
  border-bottom: 90px #f4f4f4 solid !important;
}
.panache--by-90 {
  border-top: 90px #f4f4f4 solid !important;
  border-bottom: 90px #f4f4f4 solid !important;
}
.panache--bx-90 {
  border-right: 90px #f4f4f4 solid !important;
  border-left: 90px #f4f4f4 solid !important;
}
.panache--ba-91 {
  border: 91px #f4f4f4 solid !important;
}
.panache--bt-91 {
  border-top: 91px #f4f4f4 solid !important;
}
.panache--br-91 {
  border-right: 91px #f4f4f4 solid !important;
}
.panache--bl-91 {
  border-left: 91px #f4f4f4 solid !important;
}
.panache--bb-91 {
  border-bottom: 91px #f4f4f4 solid !important;
}
.panache--by-91 {
  border-top: 91px #f4f4f4 solid !important;
  border-bottom: 91px #f4f4f4 solid !important;
}
.panache--bx-91 {
  border-right: 91px #f4f4f4 solid !important;
  border-left: 91px #f4f4f4 solid !important;
}
.panache--ba-92 {
  border: 92px #f4f4f4 solid !important;
}
.panache--bt-92 {
  border-top: 92px #f4f4f4 solid !important;
}
.panache--br-92 {
  border-right: 92px #f4f4f4 solid !important;
}
.panache--bl-92 {
  border-left: 92px #f4f4f4 solid !important;
}
.panache--bb-92 {
  border-bottom: 92px #f4f4f4 solid !important;
}
.panache--by-92 {
  border-top: 92px #f4f4f4 solid !important;
  border-bottom: 92px #f4f4f4 solid !important;
}
.panache--bx-92 {
  border-right: 92px #f4f4f4 solid !important;
  border-left: 92px #f4f4f4 solid !important;
}
.panache--ba-93 {
  border: 93px #f4f4f4 solid !important;
}
.panache--bt-93 {
  border-top: 93px #f4f4f4 solid !important;
}
.panache--br-93 {
  border-right: 93px #f4f4f4 solid !important;
}
.panache--bl-93 {
  border-left: 93px #f4f4f4 solid !important;
}
.panache--bb-93 {
  border-bottom: 93px #f4f4f4 solid !important;
}
.panache--by-93 {
  border-top: 93px #f4f4f4 solid !important;
  border-bottom: 93px #f4f4f4 solid !important;
}
.panache--bx-93 {
  border-right: 93px #f4f4f4 solid !important;
  border-left: 93px #f4f4f4 solid !important;
}
.panache--ba-94 {
  border: 94px #f4f4f4 solid !important;
}
.panache--bt-94 {
  border-top: 94px #f4f4f4 solid !important;
}
.panache--br-94 {
  border-right: 94px #f4f4f4 solid !important;
}
.panache--bl-94 {
  border-left: 94px #f4f4f4 solid !important;
}
.panache--bb-94 {
  border-bottom: 94px #f4f4f4 solid !important;
}
.panache--by-94 {
  border-top: 94px #f4f4f4 solid !important;
  border-bottom: 94px #f4f4f4 solid !important;
}
.panache--bx-94 {
  border-right: 94px #f4f4f4 solid !important;
  border-left: 94px #f4f4f4 solid !important;
}
.panache--ba-95 {
  border: 95px #f4f4f4 solid !important;
}
.panache--bt-95 {
  border-top: 95px #f4f4f4 solid !important;
}
.panache--br-95 {
  border-right: 95px #f4f4f4 solid !important;
}
.panache--bl-95 {
  border-left: 95px #f4f4f4 solid !important;
}
.panache--bb-95 {
  border-bottom: 95px #f4f4f4 solid !important;
}
.panache--by-95 {
  border-top: 95px #f4f4f4 solid !important;
  border-bottom: 95px #f4f4f4 solid !important;
}
.panache--bx-95 {
  border-right: 95px #f4f4f4 solid !important;
  border-left: 95px #f4f4f4 solid !important;
}
.panache--ba-96 {
  border: 96px #f4f4f4 solid !important;
}
.panache--bt-96 {
  border-top: 96px #f4f4f4 solid !important;
}
.panache--br-96 {
  border-right: 96px #f4f4f4 solid !important;
}
.panache--bl-96 {
  border-left: 96px #f4f4f4 solid !important;
}
.panache--bb-96 {
  border-bottom: 96px #f4f4f4 solid !important;
}
.panache--by-96 {
  border-top: 96px #f4f4f4 solid !important;
  border-bottom: 96px #f4f4f4 solid !important;
}
.panache--bx-96 {
  border-right: 96px #f4f4f4 solid !important;
  border-left: 96px #f4f4f4 solid !important;
}
.panache--ba-97 {
  border: 97px #f4f4f4 solid !important;
}
.panache--bt-97 {
  border-top: 97px #f4f4f4 solid !important;
}
.panache--br-97 {
  border-right: 97px #f4f4f4 solid !important;
}
.panache--bl-97 {
  border-left: 97px #f4f4f4 solid !important;
}
.panache--bb-97 {
  border-bottom: 97px #f4f4f4 solid !important;
}
.panache--by-97 {
  border-top: 97px #f4f4f4 solid !important;
  border-bottom: 97px #f4f4f4 solid !important;
}
.panache--bx-97 {
  border-right: 97px #f4f4f4 solid !important;
  border-left: 97px #f4f4f4 solid !important;
}
.panache--ba-98 {
  border: 98px #f4f4f4 solid !important;
}
.panache--bt-98 {
  border-top: 98px #f4f4f4 solid !important;
}
.panache--br-98 {
  border-right: 98px #f4f4f4 solid !important;
}
.panache--bl-98 {
  border-left: 98px #f4f4f4 solid !important;
}
.panache--bb-98 {
  border-bottom: 98px #f4f4f4 solid !important;
}
.panache--by-98 {
  border-top: 98px #f4f4f4 solid !important;
  border-bottom: 98px #f4f4f4 solid !important;
}
.panache--bx-98 {
  border-right: 98px #f4f4f4 solid !important;
  border-left: 98px #f4f4f4 solid !important;
}
.panache--ba-99 {
  border: 99px #f4f4f4 solid !important;
}
.panache--bt-99 {
  border-top: 99px #f4f4f4 solid !important;
}
.panache--br-99 {
  border-right: 99px #f4f4f4 solid !important;
}
.panache--bl-99 {
  border-left: 99px #f4f4f4 solid !important;
}
.panache--bb-99 {
  border-bottom: 99px #f4f4f4 solid !important;
}
.panache--by-99 {
  border-top: 99px #f4f4f4 solid !important;
  border-bottom: 99px #f4f4f4 solid !important;
}
.panache--bx-99 {
  border-right: 99px #f4f4f4 solid !important;
  border-left: 99px #f4f4f4 solid !important;
}
.panache--ba-100 {
  border: 100px #f4f4f4 solid !important;
}
.panache--bt-100 {
  border-top: 100px #f4f4f4 solid !important;
}
.panache--br-100 {
  border-right: 100px #f4f4f4 solid !important;
}
.panache--bl-100 {
  border-left: 100px #f4f4f4 solid !important;
}
.panache--bb-100 {
  border-bottom: 100px #f4f4f4 solid !important;
}
.panache--by-100 {
  border-top: 100px #f4f4f4 solid !important;
  border-bottom: 100px #f4f4f4 solid !important;
}
.panache--bx-100 {
  border-right: 100px #f4f4f4 solid !important;
  border-left: 100px #f4f4f4 solid !important;
}
.zircon--ba-1 {
  border: 1px #f8f9ff solid !important;
}
.zircon--bt-1 {
  border-top: 1px #f8f9ff solid !important;
}
.zircon--br-1 {
  border-right: 1px #f8f9ff solid !important;
}
.zircon--bl-1 {
  border-left: 1px #f8f9ff solid !important;
}
.zircon--bb-1 {
  border-bottom: 1px #f8f9ff solid !important;
}
.zircon--by-1 {
  border-top: 1px #f8f9ff solid !important;
  border-bottom: 1px #f8f9ff solid !important;
}
.zircon--bx-1 {
  border-right: 1px #f8f9ff solid !important;
  border-left: 1px #f8f9ff solid !important;
}
.zircon--ba-2 {
  border: 2px #f8f9ff solid !important;
}
.zircon--bt-2 {
  border-top: 2px #f8f9ff solid !important;
}
.zircon--br-2 {
  border-right: 2px #f8f9ff solid !important;
}
.zircon--bl-2 {
  border-left: 2px #f8f9ff solid !important;
}
.zircon--bb-2 {
  border-bottom: 2px #f8f9ff solid !important;
}
.zircon--by-2 {
  border-top: 2px #f8f9ff solid !important;
  border-bottom: 2px #f8f9ff solid !important;
}
.zircon--bx-2 {
  border-right: 2px #f8f9ff solid !important;
  border-left: 2px #f8f9ff solid !important;
}
.zircon--ba-3 {
  border: 3px #f8f9ff solid !important;
}
.zircon--bt-3 {
  border-top: 3px #f8f9ff solid !important;
}
.zircon--br-3 {
  border-right: 3px #f8f9ff solid !important;
}
.zircon--bl-3 {
  border-left: 3px #f8f9ff solid !important;
}
.zircon--bb-3 {
  border-bottom: 3px #f8f9ff solid !important;
}
.zircon--by-3 {
  border-top: 3px #f8f9ff solid !important;
  border-bottom: 3px #f8f9ff solid !important;
}
.zircon--bx-3 {
  border-right: 3px #f8f9ff solid !important;
  border-left: 3px #f8f9ff solid !important;
}
.zircon--ba-4 {
  border: 4px #f8f9ff solid !important;
}
.zircon--bt-4 {
  border-top: 4px #f8f9ff solid !important;
}
.zircon--br-4 {
  border-right: 4px #f8f9ff solid !important;
}
.zircon--bl-4 {
  border-left: 4px #f8f9ff solid !important;
}
.zircon--bb-4 {
  border-bottom: 4px #f8f9ff solid !important;
}
.zircon--by-4 {
  border-top: 4px #f8f9ff solid !important;
  border-bottom: 4px #f8f9ff solid !important;
}
.zircon--bx-4 {
  border-right: 4px #f8f9ff solid !important;
  border-left: 4px #f8f9ff solid !important;
}
.zircon--ba-5 {
  border: 5px #f8f9ff solid !important;
}
.zircon--bt-5 {
  border-top: 5px #f8f9ff solid !important;
}
.zircon--br-5 {
  border-right: 5px #f8f9ff solid !important;
}
.zircon--bl-5 {
  border-left: 5px #f8f9ff solid !important;
}
.zircon--bb-5 {
  border-bottom: 5px #f8f9ff solid !important;
}
.zircon--by-5 {
  border-top: 5px #f8f9ff solid !important;
  border-bottom: 5px #f8f9ff solid !important;
}
.zircon--bx-5 {
  border-right: 5px #f8f9ff solid !important;
  border-left: 5px #f8f9ff solid !important;
}
.zircon--ba-6 {
  border: 6px #f8f9ff solid !important;
}
.zircon--bt-6 {
  border-top: 6px #f8f9ff solid !important;
}
.zircon--br-6 {
  border-right: 6px #f8f9ff solid !important;
}
.zircon--bl-6 {
  border-left: 6px #f8f9ff solid !important;
}
.zircon--bb-6 {
  border-bottom: 6px #f8f9ff solid !important;
}
.zircon--by-6 {
  border-top: 6px #f8f9ff solid !important;
  border-bottom: 6px #f8f9ff solid !important;
}
.zircon--bx-6 {
  border-right: 6px #f8f9ff solid !important;
  border-left: 6px #f8f9ff solid !important;
}
.zircon--ba-7 {
  border: 7px #f8f9ff solid !important;
}
.zircon--bt-7 {
  border-top: 7px #f8f9ff solid !important;
}
.zircon--br-7 {
  border-right: 7px #f8f9ff solid !important;
}
.zircon--bl-7 {
  border-left: 7px #f8f9ff solid !important;
}
.zircon--bb-7 {
  border-bottom: 7px #f8f9ff solid !important;
}
.zircon--by-7 {
  border-top: 7px #f8f9ff solid !important;
  border-bottom: 7px #f8f9ff solid !important;
}
.zircon--bx-7 {
  border-right: 7px #f8f9ff solid !important;
  border-left: 7px #f8f9ff solid !important;
}
.zircon--ba-8 {
  border: 8px #f8f9ff solid !important;
}
.zircon--bt-8 {
  border-top: 8px #f8f9ff solid !important;
}
.zircon--br-8 {
  border-right: 8px #f8f9ff solid !important;
}
.zircon--bl-8 {
  border-left: 8px #f8f9ff solid !important;
}
.zircon--bb-8 {
  border-bottom: 8px #f8f9ff solid !important;
}
.zircon--by-8 {
  border-top: 8px #f8f9ff solid !important;
  border-bottom: 8px #f8f9ff solid !important;
}
.zircon--bx-8 {
  border-right: 8px #f8f9ff solid !important;
  border-left: 8px #f8f9ff solid !important;
}
.zircon--ba-9 {
  border: 9px #f8f9ff solid !important;
}
.zircon--bt-9 {
  border-top: 9px #f8f9ff solid !important;
}
.zircon--br-9 {
  border-right: 9px #f8f9ff solid !important;
}
.zircon--bl-9 {
  border-left: 9px #f8f9ff solid !important;
}
.zircon--bb-9 {
  border-bottom: 9px #f8f9ff solid !important;
}
.zircon--by-9 {
  border-top: 9px #f8f9ff solid !important;
  border-bottom: 9px #f8f9ff solid !important;
}
.zircon--bx-9 {
  border-right: 9px #f8f9ff solid !important;
  border-left: 9px #f8f9ff solid !important;
}
.zircon--ba-10 {
  border: 10px #f8f9ff solid !important;
}
.zircon--bt-10 {
  border-top: 10px #f8f9ff solid !important;
}
.zircon--br-10 {
  border-right: 10px #f8f9ff solid !important;
}
.zircon--bl-10 {
  border-left: 10px #f8f9ff solid !important;
}
.zircon--bb-10 {
  border-bottom: 10px #f8f9ff solid !important;
}
.zircon--by-10 {
  border-top: 10px #f8f9ff solid !important;
  border-bottom: 10px #f8f9ff solid !important;
}
.zircon--bx-10 {
  border-right: 10px #f8f9ff solid !important;
  border-left: 10px #f8f9ff solid !important;
}
.zircon--ba-11 {
  border: 11px #f8f9ff solid !important;
}
.zircon--bt-11 {
  border-top: 11px #f8f9ff solid !important;
}
.zircon--br-11 {
  border-right: 11px #f8f9ff solid !important;
}
.zircon--bl-11 {
  border-left: 11px #f8f9ff solid !important;
}
.zircon--bb-11 {
  border-bottom: 11px #f8f9ff solid !important;
}
.zircon--by-11 {
  border-top: 11px #f8f9ff solid !important;
  border-bottom: 11px #f8f9ff solid !important;
}
.zircon--bx-11 {
  border-right: 11px #f8f9ff solid !important;
  border-left: 11px #f8f9ff solid !important;
}
.zircon--ba-12 {
  border: 12px #f8f9ff solid !important;
}
.zircon--bt-12 {
  border-top: 12px #f8f9ff solid !important;
}
.zircon--br-12 {
  border-right: 12px #f8f9ff solid !important;
}
.zircon--bl-12 {
  border-left: 12px #f8f9ff solid !important;
}
.zircon--bb-12 {
  border-bottom: 12px #f8f9ff solid !important;
}
.zircon--by-12 {
  border-top: 12px #f8f9ff solid !important;
  border-bottom: 12px #f8f9ff solid !important;
}
.zircon--bx-12 {
  border-right: 12px #f8f9ff solid !important;
  border-left: 12px #f8f9ff solid !important;
}
.zircon--ba-13 {
  border: 13px #f8f9ff solid !important;
}
.zircon--bt-13 {
  border-top: 13px #f8f9ff solid !important;
}
.zircon--br-13 {
  border-right: 13px #f8f9ff solid !important;
}
.zircon--bl-13 {
  border-left: 13px #f8f9ff solid !important;
}
.zircon--bb-13 {
  border-bottom: 13px #f8f9ff solid !important;
}
.zircon--by-13 {
  border-top: 13px #f8f9ff solid !important;
  border-bottom: 13px #f8f9ff solid !important;
}
.zircon--bx-13 {
  border-right: 13px #f8f9ff solid !important;
  border-left: 13px #f8f9ff solid !important;
}
.zircon--ba-14 {
  border: 14px #f8f9ff solid !important;
}
.zircon--bt-14 {
  border-top: 14px #f8f9ff solid !important;
}
.zircon--br-14 {
  border-right: 14px #f8f9ff solid !important;
}
.zircon--bl-14 {
  border-left: 14px #f8f9ff solid !important;
}
.zircon--bb-14 {
  border-bottom: 14px #f8f9ff solid !important;
}
.zircon--by-14 {
  border-top: 14px #f8f9ff solid !important;
  border-bottom: 14px #f8f9ff solid !important;
}
.zircon--bx-14 {
  border-right: 14px #f8f9ff solid !important;
  border-left: 14px #f8f9ff solid !important;
}
.zircon--ba-15 {
  border: 15px #f8f9ff solid !important;
}
.zircon--bt-15 {
  border-top: 15px #f8f9ff solid !important;
}
.zircon--br-15 {
  border-right: 15px #f8f9ff solid !important;
}
.zircon--bl-15 {
  border-left: 15px #f8f9ff solid !important;
}
.zircon--bb-15 {
  border-bottom: 15px #f8f9ff solid !important;
}
.zircon--by-15 {
  border-top: 15px #f8f9ff solid !important;
  border-bottom: 15px #f8f9ff solid !important;
}
.zircon--bx-15 {
  border-right: 15px #f8f9ff solid !important;
  border-left: 15px #f8f9ff solid !important;
}
.zircon--ba-16 {
  border: 16px #f8f9ff solid !important;
}
.zircon--bt-16 {
  border-top: 16px #f8f9ff solid !important;
}
.zircon--br-16 {
  border-right: 16px #f8f9ff solid !important;
}
.zircon--bl-16 {
  border-left: 16px #f8f9ff solid !important;
}
.zircon--bb-16 {
  border-bottom: 16px #f8f9ff solid !important;
}
.zircon--by-16 {
  border-top: 16px #f8f9ff solid !important;
  border-bottom: 16px #f8f9ff solid !important;
}
.zircon--bx-16 {
  border-right: 16px #f8f9ff solid !important;
  border-left: 16px #f8f9ff solid !important;
}
.zircon--ba-17 {
  border: 17px #f8f9ff solid !important;
}
.zircon--bt-17 {
  border-top: 17px #f8f9ff solid !important;
}
.zircon--br-17 {
  border-right: 17px #f8f9ff solid !important;
}
.zircon--bl-17 {
  border-left: 17px #f8f9ff solid !important;
}
.zircon--bb-17 {
  border-bottom: 17px #f8f9ff solid !important;
}
.zircon--by-17 {
  border-top: 17px #f8f9ff solid !important;
  border-bottom: 17px #f8f9ff solid !important;
}
.zircon--bx-17 {
  border-right: 17px #f8f9ff solid !important;
  border-left: 17px #f8f9ff solid !important;
}
.zircon--ba-18 {
  border: 18px #f8f9ff solid !important;
}
.zircon--bt-18 {
  border-top: 18px #f8f9ff solid !important;
}
.zircon--br-18 {
  border-right: 18px #f8f9ff solid !important;
}
.zircon--bl-18 {
  border-left: 18px #f8f9ff solid !important;
}
.zircon--bb-18 {
  border-bottom: 18px #f8f9ff solid !important;
}
.zircon--by-18 {
  border-top: 18px #f8f9ff solid !important;
  border-bottom: 18px #f8f9ff solid !important;
}
.zircon--bx-18 {
  border-right: 18px #f8f9ff solid !important;
  border-left: 18px #f8f9ff solid !important;
}
.zircon--ba-19 {
  border: 19px #f8f9ff solid !important;
}
.zircon--bt-19 {
  border-top: 19px #f8f9ff solid !important;
}
.zircon--br-19 {
  border-right: 19px #f8f9ff solid !important;
}
.zircon--bl-19 {
  border-left: 19px #f8f9ff solid !important;
}
.zircon--bb-19 {
  border-bottom: 19px #f8f9ff solid !important;
}
.zircon--by-19 {
  border-top: 19px #f8f9ff solid !important;
  border-bottom: 19px #f8f9ff solid !important;
}
.zircon--bx-19 {
  border-right: 19px #f8f9ff solid !important;
  border-left: 19px #f8f9ff solid !important;
}
.zircon--ba-20 {
  border: 20px #f8f9ff solid !important;
}
.zircon--bt-20 {
  border-top: 20px #f8f9ff solid !important;
}
.zircon--br-20 {
  border-right: 20px #f8f9ff solid !important;
}
.zircon--bl-20 {
  border-left: 20px #f8f9ff solid !important;
}
.zircon--bb-20 {
  border-bottom: 20px #f8f9ff solid !important;
}
.zircon--by-20 {
  border-top: 20px #f8f9ff solid !important;
  border-bottom: 20px #f8f9ff solid !important;
}
.zircon--bx-20 {
  border-right: 20px #f8f9ff solid !important;
  border-left: 20px #f8f9ff solid !important;
}
.zircon--ba-21 {
  border: 21px #f8f9ff solid !important;
}
.zircon--bt-21 {
  border-top: 21px #f8f9ff solid !important;
}
.zircon--br-21 {
  border-right: 21px #f8f9ff solid !important;
}
.zircon--bl-21 {
  border-left: 21px #f8f9ff solid !important;
}
.zircon--bb-21 {
  border-bottom: 21px #f8f9ff solid !important;
}
.zircon--by-21 {
  border-top: 21px #f8f9ff solid !important;
  border-bottom: 21px #f8f9ff solid !important;
}
.zircon--bx-21 {
  border-right: 21px #f8f9ff solid !important;
  border-left: 21px #f8f9ff solid !important;
}
.zircon--ba-22 {
  border: 22px #f8f9ff solid !important;
}
.zircon--bt-22 {
  border-top: 22px #f8f9ff solid !important;
}
.zircon--br-22 {
  border-right: 22px #f8f9ff solid !important;
}
.zircon--bl-22 {
  border-left: 22px #f8f9ff solid !important;
}
.zircon--bb-22 {
  border-bottom: 22px #f8f9ff solid !important;
}
.zircon--by-22 {
  border-top: 22px #f8f9ff solid !important;
  border-bottom: 22px #f8f9ff solid !important;
}
.zircon--bx-22 {
  border-right: 22px #f8f9ff solid !important;
  border-left: 22px #f8f9ff solid !important;
}
.zircon--ba-23 {
  border: 23px #f8f9ff solid !important;
}
.zircon--bt-23 {
  border-top: 23px #f8f9ff solid !important;
}
.zircon--br-23 {
  border-right: 23px #f8f9ff solid !important;
}
.zircon--bl-23 {
  border-left: 23px #f8f9ff solid !important;
}
.zircon--bb-23 {
  border-bottom: 23px #f8f9ff solid !important;
}
.zircon--by-23 {
  border-top: 23px #f8f9ff solid !important;
  border-bottom: 23px #f8f9ff solid !important;
}
.zircon--bx-23 {
  border-right: 23px #f8f9ff solid !important;
  border-left: 23px #f8f9ff solid !important;
}
.zircon--ba-24 {
  border: 24px #f8f9ff solid !important;
}
.zircon--bt-24 {
  border-top: 24px #f8f9ff solid !important;
}
.zircon--br-24 {
  border-right: 24px #f8f9ff solid !important;
}
.zircon--bl-24 {
  border-left: 24px #f8f9ff solid !important;
}
.zircon--bb-24 {
  border-bottom: 24px #f8f9ff solid !important;
}
.zircon--by-24 {
  border-top: 24px #f8f9ff solid !important;
  border-bottom: 24px #f8f9ff solid !important;
}
.zircon--bx-24 {
  border-right: 24px #f8f9ff solid !important;
  border-left: 24px #f8f9ff solid !important;
}
.zircon--ba-25 {
  border: 25px #f8f9ff solid !important;
}
.zircon--bt-25 {
  border-top: 25px #f8f9ff solid !important;
}
.zircon--br-25 {
  border-right: 25px #f8f9ff solid !important;
}
.zircon--bl-25 {
  border-left: 25px #f8f9ff solid !important;
}
.zircon--bb-25 {
  border-bottom: 25px #f8f9ff solid !important;
}
.zircon--by-25 {
  border-top: 25px #f8f9ff solid !important;
  border-bottom: 25px #f8f9ff solid !important;
}
.zircon--bx-25 {
  border-right: 25px #f8f9ff solid !important;
  border-left: 25px #f8f9ff solid !important;
}
.zircon--ba-26 {
  border: 26px #f8f9ff solid !important;
}
.zircon--bt-26 {
  border-top: 26px #f8f9ff solid !important;
}
.zircon--br-26 {
  border-right: 26px #f8f9ff solid !important;
}
.zircon--bl-26 {
  border-left: 26px #f8f9ff solid !important;
}
.zircon--bb-26 {
  border-bottom: 26px #f8f9ff solid !important;
}
.zircon--by-26 {
  border-top: 26px #f8f9ff solid !important;
  border-bottom: 26px #f8f9ff solid !important;
}
.zircon--bx-26 {
  border-right: 26px #f8f9ff solid !important;
  border-left: 26px #f8f9ff solid !important;
}
.zircon--ba-27 {
  border: 27px #f8f9ff solid !important;
}
.zircon--bt-27 {
  border-top: 27px #f8f9ff solid !important;
}
.zircon--br-27 {
  border-right: 27px #f8f9ff solid !important;
}
.zircon--bl-27 {
  border-left: 27px #f8f9ff solid !important;
}
.zircon--bb-27 {
  border-bottom: 27px #f8f9ff solid !important;
}
.zircon--by-27 {
  border-top: 27px #f8f9ff solid !important;
  border-bottom: 27px #f8f9ff solid !important;
}
.zircon--bx-27 {
  border-right: 27px #f8f9ff solid !important;
  border-left: 27px #f8f9ff solid !important;
}
.zircon--ba-28 {
  border: 28px #f8f9ff solid !important;
}
.zircon--bt-28 {
  border-top: 28px #f8f9ff solid !important;
}
.zircon--br-28 {
  border-right: 28px #f8f9ff solid !important;
}
.zircon--bl-28 {
  border-left: 28px #f8f9ff solid !important;
}
.zircon--bb-28 {
  border-bottom: 28px #f8f9ff solid !important;
}
.zircon--by-28 {
  border-top: 28px #f8f9ff solid !important;
  border-bottom: 28px #f8f9ff solid !important;
}
.zircon--bx-28 {
  border-right: 28px #f8f9ff solid !important;
  border-left: 28px #f8f9ff solid !important;
}
.zircon--ba-29 {
  border: 29px #f8f9ff solid !important;
}
.zircon--bt-29 {
  border-top: 29px #f8f9ff solid !important;
}
.zircon--br-29 {
  border-right: 29px #f8f9ff solid !important;
}
.zircon--bl-29 {
  border-left: 29px #f8f9ff solid !important;
}
.zircon--bb-29 {
  border-bottom: 29px #f8f9ff solid !important;
}
.zircon--by-29 {
  border-top: 29px #f8f9ff solid !important;
  border-bottom: 29px #f8f9ff solid !important;
}
.zircon--bx-29 {
  border-right: 29px #f8f9ff solid !important;
  border-left: 29px #f8f9ff solid !important;
}
.zircon--ba-30 {
  border: 30px #f8f9ff solid !important;
}
.zircon--bt-30 {
  border-top: 30px #f8f9ff solid !important;
}
.zircon--br-30 {
  border-right: 30px #f8f9ff solid !important;
}
.zircon--bl-30 {
  border-left: 30px #f8f9ff solid !important;
}
.zircon--bb-30 {
  border-bottom: 30px #f8f9ff solid !important;
}
.zircon--by-30 {
  border-top: 30px #f8f9ff solid !important;
  border-bottom: 30px #f8f9ff solid !important;
}
.zircon--bx-30 {
  border-right: 30px #f8f9ff solid !important;
  border-left: 30px #f8f9ff solid !important;
}
.zircon--ba-31 {
  border: 31px #f8f9ff solid !important;
}
.zircon--bt-31 {
  border-top: 31px #f8f9ff solid !important;
}
.zircon--br-31 {
  border-right: 31px #f8f9ff solid !important;
}
.zircon--bl-31 {
  border-left: 31px #f8f9ff solid !important;
}
.zircon--bb-31 {
  border-bottom: 31px #f8f9ff solid !important;
}
.zircon--by-31 {
  border-top: 31px #f8f9ff solid !important;
  border-bottom: 31px #f8f9ff solid !important;
}
.zircon--bx-31 {
  border-right: 31px #f8f9ff solid !important;
  border-left: 31px #f8f9ff solid !important;
}
.zircon--ba-32 {
  border: 32px #f8f9ff solid !important;
}
.zircon--bt-32 {
  border-top: 32px #f8f9ff solid !important;
}
.zircon--br-32 {
  border-right: 32px #f8f9ff solid !important;
}
.zircon--bl-32 {
  border-left: 32px #f8f9ff solid !important;
}
.zircon--bb-32 {
  border-bottom: 32px #f8f9ff solid !important;
}
.zircon--by-32 {
  border-top: 32px #f8f9ff solid !important;
  border-bottom: 32px #f8f9ff solid !important;
}
.zircon--bx-32 {
  border-right: 32px #f8f9ff solid !important;
  border-left: 32px #f8f9ff solid !important;
}
.zircon--ba-33 {
  border: 33px #f8f9ff solid !important;
}
.zircon--bt-33 {
  border-top: 33px #f8f9ff solid !important;
}
.zircon--br-33 {
  border-right: 33px #f8f9ff solid !important;
}
.zircon--bl-33 {
  border-left: 33px #f8f9ff solid !important;
}
.zircon--bb-33 {
  border-bottom: 33px #f8f9ff solid !important;
}
.zircon--by-33 {
  border-top: 33px #f8f9ff solid !important;
  border-bottom: 33px #f8f9ff solid !important;
}
.zircon--bx-33 {
  border-right: 33px #f8f9ff solid !important;
  border-left: 33px #f8f9ff solid !important;
}
.zircon--ba-34 {
  border: 34px #f8f9ff solid !important;
}
.zircon--bt-34 {
  border-top: 34px #f8f9ff solid !important;
}
.zircon--br-34 {
  border-right: 34px #f8f9ff solid !important;
}
.zircon--bl-34 {
  border-left: 34px #f8f9ff solid !important;
}
.zircon--bb-34 {
  border-bottom: 34px #f8f9ff solid !important;
}
.zircon--by-34 {
  border-top: 34px #f8f9ff solid !important;
  border-bottom: 34px #f8f9ff solid !important;
}
.zircon--bx-34 {
  border-right: 34px #f8f9ff solid !important;
  border-left: 34px #f8f9ff solid !important;
}
.zircon--ba-35 {
  border: 35px #f8f9ff solid !important;
}
.zircon--bt-35 {
  border-top: 35px #f8f9ff solid !important;
}
.zircon--br-35 {
  border-right: 35px #f8f9ff solid !important;
}
.zircon--bl-35 {
  border-left: 35px #f8f9ff solid !important;
}
.zircon--bb-35 {
  border-bottom: 35px #f8f9ff solid !important;
}
.zircon--by-35 {
  border-top: 35px #f8f9ff solid !important;
  border-bottom: 35px #f8f9ff solid !important;
}
.zircon--bx-35 {
  border-right: 35px #f8f9ff solid !important;
  border-left: 35px #f8f9ff solid !important;
}
.zircon--ba-36 {
  border: 36px #f8f9ff solid !important;
}
.zircon--bt-36 {
  border-top: 36px #f8f9ff solid !important;
}
.zircon--br-36 {
  border-right: 36px #f8f9ff solid !important;
}
.zircon--bl-36 {
  border-left: 36px #f8f9ff solid !important;
}
.zircon--bb-36 {
  border-bottom: 36px #f8f9ff solid !important;
}
.zircon--by-36 {
  border-top: 36px #f8f9ff solid !important;
  border-bottom: 36px #f8f9ff solid !important;
}
.zircon--bx-36 {
  border-right: 36px #f8f9ff solid !important;
  border-left: 36px #f8f9ff solid !important;
}
.zircon--ba-37 {
  border: 37px #f8f9ff solid !important;
}
.zircon--bt-37 {
  border-top: 37px #f8f9ff solid !important;
}
.zircon--br-37 {
  border-right: 37px #f8f9ff solid !important;
}
.zircon--bl-37 {
  border-left: 37px #f8f9ff solid !important;
}
.zircon--bb-37 {
  border-bottom: 37px #f8f9ff solid !important;
}
.zircon--by-37 {
  border-top: 37px #f8f9ff solid !important;
  border-bottom: 37px #f8f9ff solid !important;
}
.zircon--bx-37 {
  border-right: 37px #f8f9ff solid !important;
  border-left: 37px #f8f9ff solid !important;
}
.zircon--ba-38 {
  border: 38px #f8f9ff solid !important;
}
.zircon--bt-38 {
  border-top: 38px #f8f9ff solid !important;
}
.zircon--br-38 {
  border-right: 38px #f8f9ff solid !important;
}
.zircon--bl-38 {
  border-left: 38px #f8f9ff solid !important;
}
.zircon--bb-38 {
  border-bottom: 38px #f8f9ff solid !important;
}
.zircon--by-38 {
  border-top: 38px #f8f9ff solid !important;
  border-bottom: 38px #f8f9ff solid !important;
}
.zircon--bx-38 {
  border-right: 38px #f8f9ff solid !important;
  border-left: 38px #f8f9ff solid !important;
}
.zircon--ba-39 {
  border: 39px #f8f9ff solid !important;
}
.zircon--bt-39 {
  border-top: 39px #f8f9ff solid !important;
}
.zircon--br-39 {
  border-right: 39px #f8f9ff solid !important;
}
.zircon--bl-39 {
  border-left: 39px #f8f9ff solid !important;
}
.zircon--bb-39 {
  border-bottom: 39px #f8f9ff solid !important;
}
.zircon--by-39 {
  border-top: 39px #f8f9ff solid !important;
  border-bottom: 39px #f8f9ff solid !important;
}
.zircon--bx-39 {
  border-right: 39px #f8f9ff solid !important;
  border-left: 39px #f8f9ff solid !important;
}
.zircon--ba-40 {
  border: 40px #f8f9ff solid !important;
}
.zircon--bt-40 {
  border-top: 40px #f8f9ff solid !important;
}
.zircon--br-40 {
  border-right: 40px #f8f9ff solid !important;
}
.zircon--bl-40 {
  border-left: 40px #f8f9ff solid !important;
}
.zircon--bb-40 {
  border-bottom: 40px #f8f9ff solid !important;
}
.zircon--by-40 {
  border-top: 40px #f8f9ff solid !important;
  border-bottom: 40px #f8f9ff solid !important;
}
.zircon--bx-40 {
  border-right: 40px #f8f9ff solid !important;
  border-left: 40px #f8f9ff solid !important;
}
.zircon--ba-41 {
  border: 41px #f8f9ff solid !important;
}
.zircon--bt-41 {
  border-top: 41px #f8f9ff solid !important;
}
.zircon--br-41 {
  border-right: 41px #f8f9ff solid !important;
}
.zircon--bl-41 {
  border-left: 41px #f8f9ff solid !important;
}
.zircon--bb-41 {
  border-bottom: 41px #f8f9ff solid !important;
}
.zircon--by-41 {
  border-top: 41px #f8f9ff solid !important;
  border-bottom: 41px #f8f9ff solid !important;
}
.zircon--bx-41 {
  border-right: 41px #f8f9ff solid !important;
  border-left: 41px #f8f9ff solid !important;
}
.zircon--ba-42 {
  border: 42px #f8f9ff solid !important;
}
.zircon--bt-42 {
  border-top: 42px #f8f9ff solid !important;
}
.zircon--br-42 {
  border-right: 42px #f8f9ff solid !important;
}
.zircon--bl-42 {
  border-left: 42px #f8f9ff solid !important;
}
.zircon--bb-42 {
  border-bottom: 42px #f8f9ff solid !important;
}
.zircon--by-42 {
  border-top: 42px #f8f9ff solid !important;
  border-bottom: 42px #f8f9ff solid !important;
}
.zircon--bx-42 {
  border-right: 42px #f8f9ff solid !important;
  border-left: 42px #f8f9ff solid !important;
}
.zircon--ba-43 {
  border: 43px #f8f9ff solid !important;
}
.zircon--bt-43 {
  border-top: 43px #f8f9ff solid !important;
}
.zircon--br-43 {
  border-right: 43px #f8f9ff solid !important;
}
.zircon--bl-43 {
  border-left: 43px #f8f9ff solid !important;
}
.zircon--bb-43 {
  border-bottom: 43px #f8f9ff solid !important;
}
.zircon--by-43 {
  border-top: 43px #f8f9ff solid !important;
  border-bottom: 43px #f8f9ff solid !important;
}
.zircon--bx-43 {
  border-right: 43px #f8f9ff solid !important;
  border-left: 43px #f8f9ff solid !important;
}
.zircon--ba-44 {
  border: 44px #f8f9ff solid !important;
}
.zircon--bt-44 {
  border-top: 44px #f8f9ff solid !important;
}
.zircon--br-44 {
  border-right: 44px #f8f9ff solid !important;
}
.zircon--bl-44 {
  border-left: 44px #f8f9ff solid !important;
}
.zircon--bb-44 {
  border-bottom: 44px #f8f9ff solid !important;
}
.zircon--by-44 {
  border-top: 44px #f8f9ff solid !important;
  border-bottom: 44px #f8f9ff solid !important;
}
.zircon--bx-44 {
  border-right: 44px #f8f9ff solid !important;
  border-left: 44px #f8f9ff solid !important;
}
.zircon--ba-45 {
  border: 45px #f8f9ff solid !important;
}
.zircon--bt-45 {
  border-top: 45px #f8f9ff solid !important;
}
.zircon--br-45 {
  border-right: 45px #f8f9ff solid !important;
}
.zircon--bl-45 {
  border-left: 45px #f8f9ff solid !important;
}
.zircon--bb-45 {
  border-bottom: 45px #f8f9ff solid !important;
}
.zircon--by-45 {
  border-top: 45px #f8f9ff solid !important;
  border-bottom: 45px #f8f9ff solid !important;
}
.zircon--bx-45 {
  border-right: 45px #f8f9ff solid !important;
  border-left: 45px #f8f9ff solid !important;
}
.zircon--ba-46 {
  border: 46px #f8f9ff solid !important;
}
.zircon--bt-46 {
  border-top: 46px #f8f9ff solid !important;
}
.zircon--br-46 {
  border-right: 46px #f8f9ff solid !important;
}
.zircon--bl-46 {
  border-left: 46px #f8f9ff solid !important;
}
.zircon--bb-46 {
  border-bottom: 46px #f8f9ff solid !important;
}
.zircon--by-46 {
  border-top: 46px #f8f9ff solid !important;
  border-bottom: 46px #f8f9ff solid !important;
}
.zircon--bx-46 {
  border-right: 46px #f8f9ff solid !important;
  border-left: 46px #f8f9ff solid !important;
}
.zircon--ba-47 {
  border: 47px #f8f9ff solid !important;
}
.zircon--bt-47 {
  border-top: 47px #f8f9ff solid !important;
}
.zircon--br-47 {
  border-right: 47px #f8f9ff solid !important;
}
.zircon--bl-47 {
  border-left: 47px #f8f9ff solid !important;
}
.zircon--bb-47 {
  border-bottom: 47px #f8f9ff solid !important;
}
.zircon--by-47 {
  border-top: 47px #f8f9ff solid !important;
  border-bottom: 47px #f8f9ff solid !important;
}
.zircon--bx-47 {
  border-right: 47px #f8f9ff solid !important;
  border-left: 47px #f8f9ff solid !important;
}
.zircon--ba-48 {
  border: 48px #f8f9ff solid !important;
}
.zircon--bt-48 {
  border-top: 48px #f8f9ff solid !important;
}
.zircon--br-48 {
  border-right: 48px #f8f9ff solid !important;
}
.zircon--bl-48 {
  border-left: 48px #f8f9ff solid !important;
}
.zircon--bb-48 {
  border-bottom: 48px #f8f9ff solid !important;
}
.zircon--by-48 {
  border-top: 48px #f8f9ff solid !important;
  border-bottom: 48px #f8f9ff solid !important;
}
.zircon--bx-48 {
  border-right: 48px #f8f9ff solid !important;
  border-left: 48px #f8f9ff solid !important;
}
.zircon--ba-49 {
  border: 49px #f8f9ff solid !important;
}
.zircon--bt-49 {
  border-top: 49px #f8f9ff solid !important;
}
.zircon--br-49 {
  border-right: 49px #f8f9ff solid !important;
}
.zircon--bl-49 {
  border-left: 49px #f8f9ff solid !important;
}
.zircon--bb-49 {
  border-bottom: 49px #f8f9ff solid !important;
}
.zircon--by-49 {
  border-top: 49px #f8f9ff solid !important;
  border-bottom: 49px #f8f9ff solid !important;
}
.zircon--bx-49 {
  border-right: 49px #f8f9ff solid !important;
  border-left: 49px #f8f9ff solid !important;
}
.zircon--ba-50 {
  border: 50px #f8f9ff solid !important;
}
.zircon--bt-50 {
  border-top: 50px #f8f9ff solid !important;
}
.zircon--br-50 {
  border-right: 50px #f8f9ff solid !important;
}
.zircon--bl-50 {
  border-left: 50px #f8f9ff solid !important;
}
.zircon--bb-50 {
  border-bottom: 50px #f8f9ff solid !important;
}
.zircon--by-50 {
  border-top: 50px #f8f9ff solid !important;
  border-bottom: 50px #f8f9ff solid !important;
}
.zircon--bx-50 {
  border-right: 50px #f8f9ff solid !important;
  border-left: 50px #f8f9ff solid !important;
}
.zircon--ba-51 {
  border: 51px #f8f9ff solid !important;
}
.zircon--bt-51 {
  border-top: 51px #f8f9ff solid !important;
}
.zircon--br-51 {
  border-right: 51px #f8f9ff solid !important;
}
.zircon--bl-51 {
  border-left: 51px #f8f9ff solid !important;
}
.zircon--bb-51 {
  border-bottom: 51px #f8f9ff solid !important;
}
.zircon--by-51 {
  border-top: 51px #f8f9ff solid !important;
  border-bottom: 51px #f8f9ff solid !important;
}
.zircon--bx-51 {
  border-right: 51px #f8f9ff solid !important;
  border-left: 51px #f8f9ff solid !important;
}
.zircon--ba-52 {
  border: 52px #f8f9ff solid !important;
}
.zircon--bt-52 {
  border-top: 52px #f8f9ff solid !important;
}
.zircon--br-52 {
  border-right: 52px #f8f9ff solid !important;
}
.zircon--bl-52 {
  border-left: 52px #f8f9ff solid !important;
}
.zircon--bb-52 {
  border-bottom: 52px #f8f9ff solid !important;
}
.zircon--by-52 {
  border-top: 52px #f8f9ff solid !important;
  border-bottom: 52px #f8f9ff solid !important;
}
.zircon--bx-52 {
  border-right: 52px #f8f9ff solid !important;
  border-left: 52px #f8f9ff solid !important;
}
.zircon--ba-53 {
  border: 53px #f8f9ff solid !important;
}
.zircon--bt-53 {
  border-top: 53px #f8f9ff solid !important;
}
.zircon--br-53 {
  border-right: 53px #f8f9ff solid !important;
}
.zircon--bl-53 {
  border-left: 53px #f8f9ff solid !important;
}
.zircon--bb-53 {
  border-bottom: 53px #f8f9ff solid !important;
}
.zircon--by-53 {
  border-top: 53px #f8f9ff solid !important;
  border-bottom: 53px #f8f9ff solid !important;
}
.zircon--bx-53 {
  border-right: 53px #f8f9ff solid !important;
  border-left: 53px #f8f9ff solid !important;
}
.zircon--ba-54 {
  border: 54px #f8f9ff solid !important;
}
.zircon--bt-54 {
  border-top: 54px #f8f9ff solid !important;
}
.zircon--br-54 {
  border-right: 54px #f8f9ff solid !important;
}
.zircon--bl-54 {
  border-left: 54px #f8f9ff solid !important;
}
.zircon--bb-54 {
  border-bottom: 54px #f8f9ff solid !important;
}
.zircon--by-54 {
  border-top: 54px #f8f9ff solid !important;
  border-bottom: 54px #f8f9ff solid !important;
}
.zircon--bx-54 {
  border-right: 54px #f8f9ff solid !important;
  border-left: 54px #f8f9ff solid !important;
}
.zircon--ba-55 {
  border: 55px #f8f9ff solid !important;
}
.zircon--bt-55 {
  border-top: 55px #f8f9ff solid !important;
}
.zircon--br-55 {
  border-right: 55px #f8f9ff solid !important;
}
.zircon--bl-55 {
  border-left: 55px #f8f9ff solid !important;
}
.zircon--bb-55 {
  border-bottom: 55px #f8f9ff solid !important;
}
.zircon--by-55 {
  border-top: 55px #f8f9ff solid !important;
  border-bottom: 55px #f8f9ff solid !important;
}
.zircon--bx-55 {
  border-right: 55px #f8f9ff solid !important;
  border-left: 55px #f8f9ff solid !important;
}
.zircon--ba-56 {
  border: 56px #f8f9ff solid !important;
}
.zircon--bt-56 {
  border-top: 56px #f8f9ff solid !important;
}
.zircon--br-56 {
  border-right: 56px #f8f9ff solid !important;
}
.zircon--bl-56 {
  border-left: 56px #f8f9ff solid !important;
}
.zircon--bb-56 {
  border-bottom: 56px #f8f9ff solid !important;
}
.zircon--by-56 {
  border-top: 56px #f8f9ff solid !important;
  border-bottom: 56px #f8f9ff solid !important;
}
.zircon--bx-56 {
  border-right: 56px #f8f9ff solid !important;
  border-left: 56px #f8f9ff solid !important;
}
.zircon--ba-57 {
  border: 57px #f8f9ff solid !important;
}
.zircon--bt-57 {
  border-top: 57px #f8f9ff solid !important;
}
.zircon--br-57 {
  border-right: 57px #f8f9ff solid !important;
}
.zircon--bl-57 {
  border-left: 57px #f8f9ff solid !important;
}
.zircon--bb-57 {
  border-bottom: 57px #f8f9ff solid !important;
}
.zircon--by-57 {
  border-top: 57px #f8f9ff solid !important;
  border-bottom: 57px #f8f9ff solid !important;
}
.zircon--bx-57 {
  border-right: 57px #f8f9ff solid !important;
  border-left: 57px #f8f9ff solid !important;
}
.zircon--ba-58 {
  border: 58px #f8f9ff solid !important;
}
.zircon--bt-58 {
  border-top: 58px #f8f9ff solid !important;
}
.zircon--br-58 {
  border-right: 58px #f8f9ff solid !important;
}
.zircon--bl-58 {
  border-left: 58px #f8f9ff solid !important;
}
.zircon--bb-58 {
  border-bottom: 58px #f8f9ff solid !important;
}
.zircon--by-58 {
  border-top: 58px #f8f9ff solid !important;
  border-bottom: 58px #f8f9ff solid !important;
}
.zircon--bx-58 {
  border-right: 58px #f8f9ff solid !important;
  border-left: 58px #f8f9ff solid !important;
}
.zircon--ba-59 {
  border: 59px #f8f9ff solid !important;
}
.zircon--bt-59 {
  border-top: 59px #f8f9ff solid !important;
}
.zircon--br-59 {
  border-right: 59px #f8f9ff solid !important;
}
.zircon--bl-59 {
  border-left: 59px #f8f9ff solid !important;
}
.zircon--bb-59 {
  border-bottom: 59px #f8f9ff solid !important;
}
.zircon--by-59 {
  border-top: 59px #f8f9ff solid !important;
  border-bottom: 59px #f8f9ff solid !important;
}
.zircon--bx-59 {
  border-right: 59px #f8f9ff solid !important;
  border-left: 59px #f8f9ff solid !important;
}
.zircon--ba-60 {
  border: 60px #f8f9ff solid !important;
}
.zircon--bt-60 {
  border-top: 60px #f8f9ff solid !important;
}
.zircon--br-60 {
  border-right: 60px #f8f9ff solid !important;
}
.zircon--bl-60 {
  border-left: 60px #f8f9ff solid !important;
}
.zircon--bb-60 {
  border-bottom: 60px #f8f9ff solid !important;
}
.zircon--by-60 {
  border-top: 60px #f8f9ff solid !important;
  border-bottom: 60px #f8f9ff solid !important;
}
.zircon--bx-60 {
  border-right: 60px #f8f9ff solid !important;
  border-left: 60px #f8f9ff solid !important;
}
.zircon--ba-61 {
  border: 61px #f8f9ff solid !important;
}
.zircon--bt-61 {
  border-top: 61px #f8f9ff solid !important;
}
.zircon--br-61 {
  border-right: 61px #f8f9ff solid !important;
}
.zircon--bl-61 {
  border-left: 61px #f8f9ff solid !important;
}
.zircon--bb-61 {
  border-bottom: 61px #f8f9ff solid !important;
}
.zircon--by-61 {
  border-top: 61px #f8f9ff solid !important;
  border-bottom: 61px #f8f9ff solid !important;
}
.zircon--bx-61 {
  border-right: 61px #f8f9ff solid !important;
  border-left: 61px #f8f9ff solid !important;
}
.zircon--ba-62 {
  border: 62px #f8f9ff solid !important;
}
.zircon--bt-62 {
  border-top: 62px #f8f9ff solid !important;
}
.zircon--br-62 {
  border-right: 62px #f8f9ff solid !important;
}
.zircon--bl-62 {
  border-left: 62px #f8f9ff solid !important;
}
.zircon--bb-62 {
  border-bottom: 62px #f8f9ff solid !important;
}
.zircon--by-62 {
  border-top: 62px #f8f9ff solid !important;
  border-bottom: 62px #f8f9ff solid !important;
}
.zircon--bx-62 {
  border-right: 62px #f8f9ff solid !important;
  border-left: 62px #f8f9ff solid !important;
}
.zircon--ba-63 {
  border: 63px #f8f9ff solid !important;
}
.zircon--bt-63 {
  border-top: 63px #f8f9ff solid !important;
}
.zircon--br-63 {
  border-right: 63px #f8f9ff solid !important;
}
.zircon--bl-63 {
  border-left: 63px #f8f9ff solid !important;
}
.zircon--bb-63 {
  border-bottom: 63px #f8f9ff solid !important;
}
.zircon--by-63 {
  border-top: 63px #f8f9ff solid !important;
  border-bottom: 63px #f8f9ff solid !important;
}
.zircon--bx-63 {
  border-right: 63px #f8f9ff solid !important;
  border-left: 63px #f8f9ff solid !important;
}
.zircon--ba-64 {
  border: 64px #f8f9ff solid !important;
}
.zircon--bt-64 {
  border-top: 64px #f8f9ff solid !important;
}
.zircon--br-64 {
  border-right: 64px #f8f9ff solid !important;
}
.zircon--bl-64 {
  border-left: 64px #f8f9ff solid !important;
}
.zircon--bb-64 {
  border-bottom: 64px #f8f9ff solid !important;
}
.zircon--by-64 {
  border-top: 64px #f8f9ff solid !important;
  border-bottom: 64px #f8f9ff solid !important;
}
.zircon--bx-64 {
  border-right: 64px #f8f9ff solid !important;
  border-left: 64px #f8f9ff solid !important;
}
.zircon--ba-65 {
  border: 65px #f8f9ff solid !important;
}
.zircon--bt-65 {
  border-top: 65px #f8f9ff solid !important;
}
.zircon--br-65 {
  border-right: 65px #f8f9ff solid !important;
}
.zircon--bl-65 {
  border-left: 65px #f8f9ff solid !important;
}
.zircon--bb-65 {
  border-bottom: 65px #f8f9ff solid !important;
}
.zircon--by-65 {
  border-top: 65px #f8f9ff solid !important;
  border-bottom: 65px #f8f9ff solid !important;
}
.zircon--bx-65 {
  border-right: 65px #f8f9ff solid !important;
  border-left: 65px #f8f9ff solid !important;
}
.zircon--ba-66 {
  border: 66px #f8f9ff solid !important;
}
.zircon--bt-66 {
  border-top: 66px #f8f9ff solid !important;
}
.zircon--br-66 {
  border-right: 66px #f8f9ff solid !important;
}
.zircon--bl-66 {
  border-left: 66px #f8f9ff solid !important;
}
.zircon--bb-66 {
  border-bottom: 66px #f8f9ff solid !important;
}
.zircon--by-66 {
  border-top: 66px #f8f9ff solid !important;
  border-bottom: 66px #f8f9ff solid !important;
}
.zircon--bx-66 {
  border-right: 66px #f8f9ff solid !important;
  border-left: 66px #f8f9ff solid !important;
}
.zircon--ba-67 {
  border: 67px #f8f9ff solid !important;
}
.zircon--bt-67 {
  border-top: 67px #f8f9ff solid !important;
}
.zircon--br-67 {
  border-right: 67px #f8f9ff solid !important;
}
.zircon--bl-67 {
  border-left: 67px #f8f9ff solid !important;
}
.zircon--bb-67 {
  border-bottom: 67px #f8f9ff solid !important;
}
.zircon--by-67 {
  border-top: 67px #f8f9ff solid !important;
  border-bottom: 67px #f8f9ff solid !important;
}
.zircon--bx-67 {
  border-right: 67px #f8f9ff solid !important;
  border-left: 67px #f8f9ff solid !important;
}
.zircon--ba-68 {
  border: 68px #f8f9ff solid !important;
}
.zircon--bt-68 {
  border-top: 68px #f8f9ff solid !important;
}
.zircon--br-68 {
  border-right: 68px #f8f9ff solid !important;
}
.zircon--bl-68 {
  border-left: 68px #f8f9ff solid !important;
}
.zircon--bb-68 {
  border-bottom: 68px #f8f9ff solid !important;
}
.zircon--by-68 {
  border-top: 68px #f8f9ff solid !important;
  border-bottom: 68px #f8f9ff solid !important;
}
.zircon--bx-68 {
  border-right: 68px #f8f9ff solid !important;
  border-left: 68px #f8f9ff solid !important;
}
.zircon--ba-69 {
  border: 69px #f8f9ff solid !important;
}
.zircon--bt-69 {
  border-top: 69px #f8f9ff solid !important;
}
.zircon--br-69 {
  border-right: 69px #f8f9ff solid !important;
}
.zircon--bl-69 {
  border-left: 69px #f8f9ff solid !important;
}
.zircon--bb-69 {
  border-bottom: 69px #f8f9ff solid !important;
}
.zircon--by-69 {
  border-top: 69px #f8f9ff solid !important;
  border-bottom: 69px #f8f9ff solid !important;
}
.zircon--bx-69 {
  border-right: 69px #f8f9ff solid !important;
  border-left: 69px #f8f9ff solid !important;
}
.zircon--ba-70 {
  border: 70px #f8f9ff solid !important;
}
.zircon--bt-70 {
  border-top: 70px #f8f9ff solid !important;
}
.zircon--br-70 {
  border-right: 70px #f8f9ff solid !important;
}
.zircon--bl-70 {
  border-left: 70px #f8f9ff solid !important;
}
.zircon--bb-70 {
  border-bottom: 70px #f8f9ff solid !important;
}
.zircon--by-70 {
  border-top: 70px #f8f9ff solid !important;
  border-bottom: 70px #f8f9ff solid !important;
}
.zircon--bx-70 {
  border-right: 70px #f8f9ff solid !important;
  border-left: 70px #f8f9ff solid !important;
}
.zircon--ba-71 {
  border: 71px #f8f9ff solid !important;
}
.zircon--bt-71 {
  border-top: 71px #f8f9ff solid !important;
}
.zircon--br-71 {
  border-right: 71px #f8f9ff solid !important;
}
.zircon--bl-71 {
  border-left: 71px #f8f9ff solid !important;
}
.zircon--bb-71 {
  border-bottom: 71px #f8f9ff solid !important;
}
.zircon--by-71 {
  border-top: 71px #f8f9ff solid !important;
  border-bottom: 71px #f8f9ff solid !important;
}
.zircon--bx-71 {
  border-right: 71px #f8f9ff solid !important;
  border-left: 71px #f8f9ff solid !important;
}
.zircon--ba-72 {
  border: 72px #f8f9ff solid !important;
}
.zircon--bt-72 {
  border-top: 72px #f8f9ff solid !important;
}
.zircon--br-72 {
  border-right: 72px #f8f9ff solid !important;
}
.zircon--bl-72 {
  border-left: 72px #f8f9ff solid !important;
}
.zircon--bb-72 {
  border-bottom: 72px #f8f9ff solid !important;
}
.zircon--by-72 {
  border-top: 72px #f8f9ff solid !important;
  border-bottom: 72px #f8f9ff solid !important;
}
.zircon--bx-72 {
  border-right: 72px #f8f9ff solid !important;
  border-left: 72px #f8f9ff solid !important;
}
.zircon--ba-73 {
  border: 73px #f8f9ff solid !important;
}
.zircon--bt-73 {
  border-top: 73px #f8f9ff solid !important;
}
.zircon--br-73 {
  border-right: 73px #f8f9ff solid !important;
}
.zircon--bl-73 {
  border-left: 73px #f8f9ff solid !important;
}
.zircon--bb-73 {
  border-bottom: 73px #f8f9ff solid !important;
}
.zircon--by-73 {
  border-top: 73px #f8f9ff solid !important;
  border-bottom: 73px #f8f9ff solid !important;
}
.zircon--bx-73 {
  border-right: 73px #f8f9ff solid !important;
  border-left: 73px #f8f9ff solid !important;
}
.zircon--ba-74 {
  border: 74px #f8f9ff solid !important;
}
.zircon--bt-74 {
  border-top: 74px #f8f9ff solid !important;
}
.zircon--br-74 {
  border-right: 74px #f8f9ff solid !important;
}
.zircon--bl-74 {
  border-left: 74px #f8f9ff solid !important;
}
.zircon--bb-74 {
  border-bottom: 74px #f8f9ff solid !important;
}
.zircon--by-74 {
  border-top: 74px #f8f9ff solid !important;
  border-bottom: 74px #f8f9ff solid !important;
}
.zircon--bx-74 {
  border-right: 74px #f8f9ff solid !important;
  border-left: 74px #f8f9ff solid !important;
}
.zircon--ba-75 {
  border: 75px #f8f9ff solid !important;
}
.zircon--bt-75 {
  border-top: 75px #f8f9ff solid !important;
}
.zircon--br-75 {
  border-right: 75px #f8f9ff solid !important;
}
.zircon--bl-75 {
  border-left: 75px #f8f9ff solid !important;
}
.zircon--bb-75 {
  border-bottom: 75px #f8f9ff solid !important;
}
.zircon--by-75 {
  border-top: 75px #f8f9ff solid !important;
  border-bottom: 75px #f8f9ff solid !important;
}
.zircon--bx-75 {
  border-right: 75px #f8f9ff solid !important;
  border-left: 75px #f8f9ff solid !important;
}
.zircon--ba-76 {
  border: 76px #f8f9ff solid !important;
}
.zircon--bt-76 {
  border-top: 76px #f8f9ff solid !important;
}
.zircon--br-76 {
  border-right: 76px #f8f9ff solid !important;
}
.zircon--bl-76 {
  border-left: 76px #f8f9ff solid !important;
}
.zircon--bb-76 {
  border-bottom: 76px #f8f9ff solid !important;
}
.zircon--by-76 {
  border-top: 76px #f8f9ff solid !important;
  border-bottom: 76px #f8f9ff solid !important;
}
.zircon--bx-76 {
  border-right: 76px #f8f9ff solid !important;
  border-left: 76px #f8f9ff solid !important;
}
.zircon--ba-77 {
  border: 77px #f8f9ff solid !important;
}
.zircon--bt-77 {
  border-top: 77px #f8f9ff solid !important;
}
.zircon--br-77 {
  border-right: 77px #f8f9ff solid !important;
}
.zircon--bl-77 {
  border-left: 77px #f8f9ff solid !important;
}
.zircon--bb-77 {
  border-bottom: 77px #f8f9ff solid !important;
}
.zircon--by-77 {
  border-top: 77px #f8f9ff solid !important;
  border-bottom: 77px #f8f9ff solid !important;
}
.zircon--bx-77 {
  border-right: 77px #f8f9ff solid !important;
  border-left: 77px #f8f9ff solid !important;
}
.zircon--ba-78 {
  border: 78px #f8f9ff solid !important;
}
.zircon--bt-78 {
  border-top: 78px #f8f9ff solid !important;
}
.zircon--br-78 {
  border-right: 78px #f8f9ff solid !important;
}
.zircon--bl-78 {
  border-left: 78px #f8f9ff solid !important;
}
.zircon--bb-78 {
  border-bottom: 78px #f8f9ff solid !important;
}
.zircon--by-78 {
  border-top: 78px #f8f9ff solid !important;
  border-bottom: 78px #f8f9ff solid !important;
}
.zircon--bx-78 {
  border-right: 78px #f8f9ff solid !important;
  border-left: 78px #f8f9ff solid !important;
}
.zircon--ba-79 {
  border: 79px #f8f9ff solid !important;
}
.zircon--bt-79 {
  border-top: 79px #f8f9ff solid !important;
}
.zircon--br-79 {
  border-right: 79px #f8f9ff solid !important;
}
.zircon--bl-79 {
  border-left: 79px #f8f9ff solid !important;
}
.zircon--bb-79 {
  border-bottom: 79px #f8f9ff solid !important;
}
.zircon--by-79 {
  border-top: 79px #f8f9ff solid !important;
  border-bottom: 79px #f8f9ff solid !important;
}
.zircon--bx-79 {
  border-right: 79px #f8f9ff solid !important;
  border-left: 79px #f8f9ff solid !important;
}
.zircon--ba-80 {
  border: 80px #f8f9ff solid !important;
}
.zircon--bt-80 {
  border-top: 80px #f8f9ff solid !important;
}
.zircon--br-80 {
  border-right: 80px #f8f9ff solid !important;
}
.zircon--bl-80 {
  border-left: 80px #f8f9ff solid !important;
}
.zircon--bb-80 {
  border-bottom: 80px #f8f9ff solid !important;
}
.zircon--by-80 {
  border-top: 80px #f8f9ff solid !important;
  border-bottom: 80px #f8f9ff solid !important;
}
.zircon--bx-80 {
  border-right: 80px #f8f9ff solid !important;
  border-left: 80px #f8f9ff solid !important;
}
.zircon--ba-81 {
  border: 81px #f8f9ff solid !important;
}
.zircon--bt-81 {
  border-top: 81px #f8f9ff solid !important;
}
.zircon--br-81 {
  border-right: 81px #f8f9ff solid !important;
}
.zircon--bl-81 {
  border-left: 81px #f8f9ff solid !important;
}
.zircon--bb-81 {
  border-bottom: 81px #f8f9ff solid !important;
}
.zircon--by-81 {
  border-top: 81px #f8f9ff solid !important;
  border-bottom: 81px #f8f9ff solid !important;
}
.zircon--bx-81 {
  border-right: 81px #f8f9ff solid !important;
  border-left: 81px #f8f9ff solid !important;
}
.zircon--ba-82 {
  border: 82px #f8f9ff solid !important;
}
.zircon--bt-82 {
  border-top: 82px #f8f9ff solid !important;
}
.zircon--br-82 {
  border-right: 82px #f8f9ff solid !important;
}
.zircon--bl-82 {
  border-left: 82px #f8f9ff solid !important;
}
.zircon--bb-82 {
  border-bottom: 82px #f8f9ff solid !important;
}
.zircon--by-82 {
  border-top: 82px #f8f9ff solid !important;
  border-bottom: 82px #f8f9ff solid !important;
}
.zircon--bx-82 {
  border-right: 82px #f8f9ff solid !important;
  border-left: 82px #f8f9ff solid !important;
}
.zircon--ba-83 {
  border: 83px #f8f9ff solid !important;
}
.zircon--bt-83 {
  border-top: 83px #f8f9ff solid !important;
}
.zircon--br-83 {
  border-right: 83px #f8f9ff solid !important;
}
.zircon--bl-83 {
  border-left: 83px #f8f9ff solid !important;
}
.zircon--bb-83 {
  border-bottom: 83px #f8f9ff solid !important;
}
.zircon--by-83 {
  border-top: 83px #f8f9ff solid !important;
  border-bottom: 83px #f8f9ff solid !important;
}
.zircon--bx-83 {
  border-right: 83px #f8f9ff solid !important;
  border-left: 83px #f8f9ff solid !important;
}
.zircon--ba-84 {
  border: 84px #f8f9ff solid !important;
}
.zircon--bt-84 {
  border-top: 84px #f8f9ff solid !important;
}
.zircon--br-84 {
  border-right: 84px #f8f9ff solid !important;
}
.zircon--bl-84 {
  border-left: 84px #f8f9ff solid !important;
}
.zircon--bb-84 {
  border-bottom: 84px #f8f9ff solid !important;
}
.zircon--by-84 {
  border-top: 84px #f8f9ff solid !important;
  border-bottom: 84px #f8f9ff solid !important;
}
.zircon--bx-84 {
  border-right: 84px #f8f9ff solid !important;
  border-left: 84px #f8f9ff solid !important;
}
.zircon--ba-85 {
  border: 85px #f8f9ff solid !important;
}
.zircon--bt-85 {
  border-top: 85px #f8f9ff solid !important;
}
.zircon--br-85 {
  border-right: 85px #f8f9ff solid !important;
}
.zircon--bl-85 {
  border-left: 85px #f8f9ff solid !important;
}
.zircon--bb-85 {
  border-bottom: 85px #f8f9ff solid !important;
}
.zircon--by-85 {
  border-top: 85px #f8f9ff solid !important;
  border-bottom: 85px #f8f9ff solid !important;
}
.zircon--bx-85 {
  border-right: 85px #f8f9ff solid !important;
  border-left: 85px #f8f9ff solid !important;
}
.zircon--ba-86 {
  border: 86px #f8f9ff solid !important;
}
.zircon--bt-86 {
  border-top: 86px #f8f9ff solid !important;
}
.zircon--br-86 {
  border-right: 86px #f8f9ff solid !important;
}
.zircon--bl-86 {
  border-left: 86px #f8f9ff solid !important;
}
.zircon--bb-86 {
  border-bottom: 86px #f8f9ff solid !important;
}
.zircon--by-86 {
  border-top: 86px #f8f9ff solid !important;
  border-bottom: 86px #f8f9ff solid !important;
}
.zircon--bx-86 {
  border-right: 86px #f8f9ff solid !important;
  border-left: 86px #f8f9ff solid !important;
}
.zircon--ba-87 {
  border: 87px #f8f9ff solid !important;
}
.zircon--bt-87 {
  border-top: 87px #f8f9ff solid !important;
}
.zircon--br-87 {
  border-right: 87px #f8f9ff solid !important;
}
.zircon--bl-87 {
  border-left: 87px #f8f9ff solid !important;
}
.zircon--bb-87 {
  border-bottom: 87px #f8f9ff solid !important;
}
.zircon--by-87 {
  border-top: 87px #f8f9ff solid !important;
  border-bottom: 87px #f8f9ff solid !important;
}
.zircon--bx-87 {
  border-right: 87px #f8f9ff solid !important;
  border-left: 87px #f8f9ff solid !important;
}
.zircon--ba-88 {
  border: 88px #f8f9ff solid !important;
}
.zircon--bt-88 {
  border-top: 88px #f8f9ff solid !important;
}
.zircon--br-88 {
  border-right: 88px #f8f9ff solid !important;
}
.zircon--bl-88 {
  border-left: 88px #f8f9ff solid !important;
}
.zircon--bb-88 {
  border-bottom: 88px #f8f9ff solid !important;
}
.zircon--by-88 {
  border-top: 88px #f8f9ff solid !important;
  border-bottom: 88px #f8f9ff solid !important;
}
.zircon--bx-88 {
  border-right: 88px #f8f9ff solid !important;
  border-left: 88px #f8f9ff solid !important;
}
.zircon--ba-89 {
  border: 89px #f8f9ff solid !important;
}
.zircon--bt-89 {
  border-top: 89px #f8f9ff solid !important;
}
.zircon--br-89 {
  border-right: 89px #f8f9ff solid !important;
}
.zircon--bl-89 {
  border-left: 89px #f8f9ff solid !important;
}
.zircon--bb-89 {
  border-bottom: 89px #f8f9ff solid !important;
}
.zircon--by-89 {
  border-top: 89px #f8f9ff solid !important;
  border-bottom: 89px #f8f9ff solid !important;
}
.zircon--bx-89 {
  border-right: 89px #f8f9ff solid !important;
  border-left: 89px #f8f9ff solid !important;
}
.zircon--ba-90 {
  border: 90px #f8f9ff solid !important;
}
.zircon--bt-90 {
  border-top: 90px #f8f9ff solid !important;
}
.zircon--br-90 {
  border-right: 90px #f8f9ff solid !important;
}
.zircon--bl-90 {
  border-left: 90px #f8f9ff solid !important;
}
.zircon--bb-90 {
  border-bottom: 90px #f8f9ff solid !important;
}
.zircon--by-90 {
  border-top: 90px #f8f9ff solid !important;
  border-bottom: 90px #f8f9ff solid !important;
}
.zircon--bx-90 {
  border-right: 90px #f8f9ff solid !important;
  border-left: 90px #f8f9ff solid !important;
}
.zircon--ba-91 {
  border: 91px #f8f9ff solid !important;
}
.zircon--bt-91 {
  border-top: 91px #f8f9ff solid !important;
}
.zircon--br-91 {
  border-right: 91px #f8f9ff solid !important;
}
.zircon--bl-91 {
  border-left: 91px #f8f9ff solid !important;
}
.zircon--bb-91 {
  border-bottom: 91px #f8f9ff solid !important;
}
.zircon--by-91 {
  border-top: 91px #f8f9ff solid !important;
  border-bottom: 91px #f8f9ff solid !important;
}
.zircon--bx-91 {
  border-right: 91px #f8f9ff solid !important;
  border-left: 91px #f8f9ff solid !important;
}
.zircon--ba-92 {
  border: 92px #f8f9ff solid !important;
}
.zircon--bt-92 {
  border-top: 92px #f8f9ff solid !important;
}
.zircon--br-92 {
  border-right: 92px #f8f9ff solid !important;
}
.zircon--bl-92 {
  border-left: 92px #f8f9ff solid !important;
}
.zircon--bb-92 {
  border-bottom: 92px #f8f9ff solid !important;
}
.zircon--by-92 {
  border-top: 92px #f8f9ff solid !important;
  border-bottom: 92px #f8f9ff solid !important;
}
.zircon--bx-92 {
  border-right: 92px #f8f9ff solid !important;
  border-left: 92px #f8f9ff solid !important;
}
.zircon--ba-93 {
  border: 93px #f8f9ff solid !important;
}
.zircon--bt-93 {
  border-top: 93px #f8f9ff solid !important;
}
.zircon--br-93 {
  border-right: 93px #f8f9ff solid !important;
}
.zircon--bl-93 {
  border-left: 93px #f8f9ff solid !important;
}
.zircon--bb-93 {
  border-bottom: 93px #f8f9ff solid !important;
}
.zircon--by-93 {
  border-top: 93px #f8f9ff solid !important;
  border-bottom: 93px #f8f9ff solid !important;
}
.zircon--bx-93 {
  border-right: 93px #f8f9ff solid !important;
  border-left: 93px #f8f9ff solid !important;
}
.zircon--ba-94 {
  border: 94px #f8f9ff solid !important;
}
.zircon--bt-94 {
  border-top: 94px #f8f9ff solid !important;
}
.zircon--br-94 {
  border-right: 94px #f8f9ff solid !important;
}
.zircon--bl-94 {
  border-left: 94px #f8f9ff solid !important;
}
.zircon--bb-94 {
  border-bottom: 94px #f8f9ff solid !important;
}
.zircon--by-94 {
  border-top: 94px #f8f9ff solid !important;
  border-bottom: 94px #f8f9ff solid !important;
}
.zircon--bx-94 {
  border-right: 94px #f8f9ff solid !important;
  border-left: 94px #f8f9ff solid !important;
}
.zircon--ba-95 {
  border: 95px #f8f9ff solid !important;
}
.zircon--bt-95 {
  border-top: 95px #f8f9ff solid !important;
}
.zircon--br-95 {
  border-right: 95px #f8f9ff solid !important;
}
.zircon--bl-95 {
  border-left: 95px #f8f9ff solid !important;
}
.zircon--bb-95 {
  border-bottom: 95px #f8f9ff solid !important;
}
.zircon--by-95 {
  border-top: 95px #f8f9ff solid !important;
  border-bottom: 95px #f8f9ff solid !important;
}
.zircon--bx-95 {
  border-right: 95px #f8f9ff solid !important;
  border-left: 95px #f8f9ff solid !important;
}
.zircon--ba-96 {
  border: 96px #f8f9ff solid !important;
}
.zircon--bt-96 {
  border-top: 96px #f8f9ff solid !important;
}
.zircon--br-96 {
  border-right: 96px #f8f9ff solid !important;
}
.zircon--bl-96 {
  border-left: 96px #f8f9ff solid !important;
}
.zircon--bb-96 {
  border-bottom: 96px #f8f9ff solid !important;
}
.zircon--by-96 {
  border-top: 96px #f8f9ff solid !important;
  border-bottom: 96px #f8f9ff solid !important;
}
.zircon--bx-96 {
  border-right: 96px #f8f9ff solid !important;
  border-left: 96px #f8f9ff solid !important;
}
.zircon--ba-97 {
  border: 97px #f8f9ff solid !important;
}
.zircon--bt-97 {
  border-top: 97px #f8f9ff solid !important;
}
.zircon--br-97 {
  border-right: 97px #f8f9ff solid !important;
}
.zircon--bl-97 {
  border-left: 97px #f8f9ff solid !important;
}
.zircon--bb-97 {
  border-bottom: 97px #f8f9ff solid !important;
}
.zircon--by-97 {
  border-top: 97px #f8f9ff solid !important;
  border-bottom: 97px #f8f9ff solid !important;
}
.zircon--bx-97 {
  border-right: 97px #f8f9ff solid !important;
  border-left: 97px #f8f9ff solid !important;
}
.zircon--ba-98 {
  border: 98px #f8f9ff solid !important;
}
.zircon--bt-98 {
  border-top: 98px #f8f9ff solid !important;
}
.zircon--br-98 {
  border-right: 98px #f8f9ff solid !important;
}
.zircon--bl-98 {
  border-left: 98px #f8f9ff solid !important;
}
.zircon--bb-98 {
  border-bottom: 98px #f8f9ff solid !important;
}
.zircon--by-98 {
  border-top: 98px #f8f9ff solid !important;
  border-bottom: 98px #f8f9ff solid !important;
}
.zircon--bx-98 {
  border-right: 98px #f8f9ff solid !important;
  border-left: 98px #f8f9ff solid !important;
}
.zircon--ba-99 {
  border: 99px #f8f9ff solid !important;
}
.zircon--bt-99 {
  border-top: 99px #f8f9ff solid !important;
}
.zircon--br-99 {
  border-right: 99px #f8f9ff solid !important;
}
.zircon--bl-99 {
  border-left: 99px #f8f9ff solid !important;
}
.zircon--bb-99 {
  border-bottom: 99px #f8f9ff solid !important;
}
.zircon--by-99 {
  border-top: 99px #f8f9ff solid !important;
  border-bottom: 99px #f8f9ff solid !important;
}
.zircon--bx-99 {
  border-right: 99px #f8f9ff solid !important;
  border-left: 99px #f8f9ff solid !important;
}
.zircon--ba-100 {
  border: 100px #f8f9ff solid !important;
}
.zircon--bt-100 {
  border-top: 100px #f8f9ff solid !important;
}
.zircon--br-100 {
  border-right: 100px #f8f9ff solid !important;
}
.zircon--bl-100 {
  border-left: 100px #f8f9ff solid !important;
}
.zircon--bb-100 {
  border-bottom: 100px #f8f9ff solid !important;
}
.zircon--by-100 {
  border-top: 100px #f8f9ff solid !important;
  border-bottom: 100px #f8f9ff solid !important;
}
.zircon--bx-100 {
  border-right: 100px #f8f9ff solid !important;
  border-left: 100px #f8f9ff solid !important;
}
.sugar-cane--ba-1 {
  border: 1px #f8fff8 solid !important;
}
.sugar-cane--bt-1 {
  border-top: 1px #f8fff8 solid !important;
}
.sugar-cane--br-1 {
  border-right: 1px #f8fff8 solid !important;
}
.sugar-cane--bl-1 {
  border-left: 1px #f8fff8 solid !important;
}
.sugar-cane--bb-1 {
  border-bottom: 1px #f8fff8 solid !important;
}
.sugar-cane--by-1 {
  border-top: 1px #f8fff8 solid !important;
  border-bottom: 1px #f8fff8 solid !important;
}
.sugar-cane--bx-1 {
  border-right: 1px #f8fff8 solid !important;
  border-left: 1px #f8fff8 solid !important;
}
.sugar-cane--ba-2 {
  border: 2px #f8fff8 solid !important;
}
.sugar-cane--bt-2 {
  border-top: 2px #f8fff8 solid !important;
}
.sugar-cane--br-2 {
  border-right: 2px #f8fff8 solid !important;
}
.sugar-cane--bl-2 {
  border-left: 2px #f8fff8 solid !important;
}
.sugar-cane--bb-2 {
  border-bottom: 2px #f8fff8 solid !important;
}
.sugar-cane--by-2 {
  border-top: 2px #f8fff8 solid !important;
  border-bottom: 2px #f8fff8 solid !important;
}
.sugar-cane--bx-2 {
  border-right: 2px #f8fff8 solid !important;
  border-left: 2px #f8fff8 solid !important;
}
.sugar-cane--ba-3 {
  border: 3px #f8fff8 solid !important;
}
.sugar-cane--bt-3 {
  border-top: 3px #f8fff8 solid !important;
}
.sugar-cane--br-3 {
  border-right: 3px #f8fff8 solid !important;
}
.sugar-cane--bl-3 {
  border-left: 3px #f8fff8 solid !important;
}
.sugar-cane--bb-3 {
  border-bottom: 3px #f8fff8 solid !important;
}
.sugar-cane--by-3 {
  border-top: 3px #f8fff8 solid !important;
  border-bottom: 3px #f8fff8 solid !important;
}
.sugar-cane--bx-3 {
  border-right: 3px #f8fff8 solid !important;
  border-left: 3px #f8fff8 solid !important;
}
.sugar-cane--ba-4 {
  border: 4px #f8fff8 solid !important;
}
.sugar-cane--bt-4 {
  border-top: 4px #f8fff8 solid !important;
}
.sugar-cane--br-4 {
  border-right: 4px #f8fff8 solid !important;
}
.sugar-cane--bl-4 {
  border-left: 4px #f8fff8 solid !important;
}
.sugar-cane--bb-4 {
  border-bottom: 4px #f8fff8 solid !important;
}
.sugar-cane--by-4 {
  border-top: 4px #f8fff8 solid !important;
  border-bottom: 4px #f8fff8 solid !important;
}
.sugar-cane--bx-4 {
  border-right: 4px #f8fff8 solid !important;
  border-left: 4px #f8fff8 solid !important;
}
.sugar-cane--ba-5 {
  border: 5px #f8fff8 solid !important;
}
.sugar-cane--bt-5 {
  border-top: 5px #f8fff8 solid !important;
}
.sugar-cane--br-5 {
  border-right: 5px #f8fff8 solid !important;
}
.sugar-cane--bl-5 {
  border-left: 5px #f8fff8 solid !important;
}
.sugar-cane--bb-5 {
  border-bottom: 5px #f8fff8 solid !important;
}
.sugar-cane--by-5 {
  border-top: 5px #f8fff8 solid !important;
  border-bottom: 5px #f8fff8 solid !important;
}
.sugar-cane--bx-5 {
  border-right: 5px #f8fff8 solid !important;
  border-left: 5px #f8fff8 solid !important;
}
.sugar-cane--ba-6 {
  border: 6px #f8fff8 solid !important;
}
.sugar-cane--bt-6 {
  border-top: 6px #f8fff8 solid !important;
}
.sugar-cane--br-6 {
  border-right: 6px #f8fff8 solid !important;
}
.sugar-cane--bl-6 {
  border-left: 6px #f8fff8 solid !important;
}
.sugar-cane--bb-6 {
  border-bottom: 6px #f8fff8 solid !important;
}
.sugar-cane--by-6 {
  border-top: 6px #f8fff8 solid !important;
  border-bottom: 6px #f8fff8 solid !important;
}
.sugar-cane--bx-6 {
  border-right: 6px #f8fff8 solid !important;
  border-left: 6px #f8fff8 solid !important;
}
.sugar-cane--ba-7 {
  border: 7px #f8fff8 solid !important;
}
.sugar-cane--bt-7 {
  border-top: 7px #f8fff8 solid !important;
}
.sugar-cane--br-7 {
  border-right: 7px #f8fff8 solid !important;
}
.sugar-cane--bl-7 {
  border-left: 7px #f8fff8 solid !important;
}
.sugar-cane--bb-7 {
  border-bottom: 7px #f8fff8 solid !important;
}
.sugar-cane--by-7 {
  border-top: 7px #f8fff8 solid !important;
  border-bottom: 7px #f8fff8 solid !important;
}
.sugar-cane--bx-7 {
  border-right: 7px #f8fff8 solid !important;
  border-left: 7px #f8fff8 solid !important;
}
.sugar-cane--ba-8 {
  border: 8px #f8fff8 solid !important;
}
.sugar-cane--bt-8 {
  border-top: 8px #f8fff8 solid !important;
}
.sugar-cane--br-8 {
  border-right: 8px #f8fff8 solid !important;
}
.sugar-cane--bl-8 {
  border-left: 8px #f8fff8 solid !important;
}
.sugar-cane--bb-8 {
  border-bottom: 8px #f8fff8 solid !important;
}
.sugar-cane--by-8 {
  border-top: 8px #f8fff8 solid !important;
  border-bottom: 8px #f8fff8 solid !important;
}
.sugar-cane--bx-8 {
  border-right: 8px #f8fff8 solid !important;
  border-left: 8px #f8fff8 solid !important;
}
.sugar-cane--ba-9 {
  border: 9px #f8fff8 solid !important;
}
.sugar-cane--bt-9 {
  border-top: 9px #f8fff8 solid !important;
}
.sugar-cane--br-9 {
  border-right: 9px #f8fff8 solid !important;
}
.sugar-cane--bl-9 {
  border-left: 9px #f8fff8 solid !important;
}
.sugar-cane--bb-9 {
  border-bottom: 9px #f8fff8 solid !important;
}
.sugar-cane--by-9 {
  border-top: 9px #f8fff8 solid !important;
  border-bottom: 9px #f8fff8 solid !important;
}
.sugar-cane--bx-9 {
  border-right: 9px #f8fff8 solid !important;
  border-left: 9px #f8fff8 solid !important;
}
.sugar-cane--ba-10 {
  border: 10px #f8fff8 solid !important;
}
.sugar-cane--bt-10 {
  border-top: 10px #f8fff8 solid !important;
}
.sugar-cane--br-10 {
  border-right: 10px #f8fff8 solid !important;
}
.sugar-cane--bl-10 {
  border-left: 10px #f8fff8 solid !important;
}
.sugar-cane--bb-10 {
  border-bottom: 10px #f8fff8 solid !important;
}
.sugar-cane--by-10 {
  border-top: 10px #f8fff8 solid !important;
  border-bottom: 10px #f8fff8 solid !important;
}
.sugar-cane--bx-10 {
  border-right: 10px #f8fff8 solid !important;
  border-left: 10px #f8fff8 solid !important;
}
.sugar-cane--ba-11 {
  border: 11px #f8fff8 solid !important;
}
.sugar-cane--bt-11 {
  border-top: 11px #f8fff8 solid !important;
}
.sugar-cane--br-11 {
  border-right: 11px #f8fff8 solid !important;
}
.sugar-cane--bl-11 {
  border-left: 11px #f8fff8 solid !important;
}
.sugar-cane--bb-11 {
  border-bottom: 11px #f8fff8 solid !important;
}
.sugar-cane--by-11 {
  border-top: 11px #f8fff8 solid !important;
  border-bottom: 11px #f8fff8 solid !important;
}
.sugar-cane--bx-11 {
  border-right: 11px #f8fff8 solid !important;
  border-left: 11px #f8fff8 solid !important;
}
.sugar-cane--ba-12 {
  border: 12px #f8fff8 solid !important;
}
.sugar-cane--bt-12 {
  border-top: 12px #f8fff8 solid !important;
}
.sugar-cane--br-12 {
  border-right: 12px #f8fff8 solid !important;
}
.sugar-cane--bl-12 {
  border-left: 12px #f8fff8 solid !important;
}
.sugar-cane--bb-12 {
  border-bottom: 12px #f8fff8 solid !important;
}
.sugar-cane--by-12 {
  border-top: 12px #f8fff8 solid !important;
  border-bottom: 12px #f8fff8 solid !important;
}
.sugar-cane--bx-12 {
  border-right: 12px #f8fff8 solid !important;
  border-left: 12px #f8fff8 solid !important;
}
.sugar-cane--ba-13 {
  border: 13px #f8fff8 solid !important;
}
.sugar-cane--bt-13 {
  border-top: 13px #f8fff8 solid !important;
}
.sugar-cane--br-13 {
  border-right: 13px #f8fff8 solid !important;
}
.sugar-cane--bl-13 {
  border-left: 13px #f8fff8 solid !important;
}
.sugar-cane--bb-13 {
  border-bottom: 13px #f8fff8 solid !important;
}
.sugar-cane--by-13 {
  border-top: 13px #f8fff8 solid !important;
  border-bottom: 13px #f8fff8 solid !important;
}
.sugar-cane--bx-13 {
  border-right: 13px #f8fff8 solid !important;
  border-left: 13px #f8fff8 solid !important;
}
.sugar-cane--ba-14 {
  border: 14px #f8fff8 solid !important;
}
.sugar-cane--bt-14 {
  border-top: 14px #f8fff8 solid !important;
}
.sugar-cane--br-14 {
  border-right: 14px #f8fff8 solid !important;
}
.sugar-cane--bl-14 {
  border-left: 14px #f8fff8 solid !important;
}
.sugar-cane--bb-14 {
  border-bottom: 14px #f8fff8 solid !important;
}
.sugar-cane--by-14 {
  border-top: 14px #f8fff8 solid !important;
  border-bottom: 14px #f8fff8 solid !important;
}
.sugar-cane--bx-14 {
  border-right: 14px #f8fff8 solid !important;
  border-left: 14px #f8fff8 solid !important;
}
.sugar-cane--ba-15 {
  border: 15px #f8fff8 solid !important;
}
.sugar-cane--bt-15 {
  border-top: 15px #f8fff8 solid !important;
}
.sugar-cane--br-15 {
  border-right: 15px #f8fff8 solid !important;
}
.sugar-cane--bl-15 {
  border-left: 15px #f8fff8 solid !important;
}
.sugar-cane--bb-15 {
  border-bottom: 15px #f8fff8 solid !important;
}
.sugar-cane--by-15 {
  border-top: 15px #f8fff8 solid !important;
  border-bottom: 15px #f8fff8 solid !important;
}
.sugar-cane--bx-15 {
  border-right: 15px #f8fff8 solid !important;
  border-left: 15px #f8fff8 solid !important;
}
.sugar-cane--ba-16 {
  border: 16px #f8fff8 solid !important;
}
.sugar-cane--bt-16 {
  border-top: 16px #f8fff8 solid !important;
}
.sugar-cane--br-16 {
  border-right: 16px #f8fff8 solid !important;
}
.sugar-cane--bl-16 {
  border-left: 16px #f8fff8 solid !important;
}
.sugar-cane--bb-16 {
  border-bottom: 16px #f8fff8 solid !important;
}
.sugar-cane--by-16 {
  border-top: 16px #f8fff8 solid !important;
  border-bottom: 16px #f8fff8 solid !important;
}
.sugar-cane--bx-16 {
  border-right: 16px #f8fff8 solid !important;
  border-left: 16px #f8fff8 solid !important;
}
.sugar-cane--ba-17 {
  border: 17px #f8fff8 solid !important;
}
.sugar-cane--bt-17 {
  border-top: 17px #f8fff8 solid !important;
}
.sugar-cane--br-17 {
  border-right: 17px #f8fff8 solid !important;
}
.sugar-cane--bl-17 {
  border-left: 17px #f8fff8 solid !important;
}
.sugar-cane--bb-17 {
  border-bottom: 17px #f8fff8 solid !important;
}
.sugar-cane--by-17 {
  border-top: 17px #f8fff8 solid !important;
  border-bottom: 17px #f8fff8 solid !important;
}
.sugar-cane--bx-17 {
  border-right: 17px #f8fff8 solid !important;
  border-left: 17px #f8fff8 solid !important;
}
.sugar-cane--ba-18 {
  border: 18px #f8fff8 solid !important;
}
.sugar-cane--bt-18 {
  border-top: 18px #f8fff8 solid !important;
}
.sugar-cane--br-18 {
  border-right: 18px #f8fff8 solid !important;
}
.sugar-cane--bl-18 {
  border-left: 18px #f8fff8 solid !important;
}
.sugar-cane--bb-18 {
  border-bottom: 18px #f8fff8 solid !important;
}
.sugar-cane--by-18 {
  border-top: 18px #f8fff8 solid !important;
  border-bottom: 18px #f8fff8 solid !important;
}
.sugar-cane--bx-18 {
  border-right: 18px #f8fff8 solid !important;
  border-left: 18px #f8fff8 solid !important;
}
.sugar-cane--ba-19 {
  border: 19px #f8fff8 solid !important;
}
.sugar-cane--bt-19 {
  border-top: 19px #f8fff8 solid !important;
}
.sugar-cane--br-19 {
  border-right: 19px #f8fff8 solid !important;
}
.sugar-cane--bl-19 {
  border-left: 19px #f8fff8 solid !important;
}
.sugar-cane--bb-19 {
  border-bottom: 19px #f8fff8 solid !important;
}
.sugar-cane--by-19 {
  border-top: 19px #f8fff8 solid !important;
  border-bottom: 19px #f8fff8 solid !important;
}
.sugar-cane--bx-19 {
  border-right: 19px #f8fff8 solid !important;
  border-left: 19px #f8fff8 solid !important;
}
.sugar-cane--ba-20 {
  border: 20px #f8fff8 solid !important;
}
.sugar-cane--bt-20 {
  border-top: 20px #f8fff8 solid !important;
}
.sugar-cane--br-20 {
  border-right: 20px #f8fff8 solid !important;
}
.sugar-cane--bl-20 {
  border-left: 20px #f8fff8 solid !important;
}
.sugar-cane--bb-20 {
  border-bottom: 20px #f8fff8 solid !important;
}
.sugar-cane--by-20 {
  border-top: 20px #f8fff8 solid !important;
  border-bottom: 20px #f8fff8 solid !important;
}
.sugar-cane--bx-20 {
  border-right: 20px #f8fff8 solid !important;
  border-left: 20px #f8fff8 solid !important;
}
.sugar-cane--ba-21 {
  border: 21px #f8fff8 solid !important;
}
.sugar-cane--bt-21 {
  border-top: 21px #f8fff8 solid !important;
}
.sugar-cane--br-21 {
  border-right: 21px #f8fff8 solid !important;
}
.sugar-cane--bl-21 {
  border-left: 21px #f8fff8 solid !important;
}
.sugar-cane--bb-21 {
  border-bottom: 21px #f8fff8 solid !important;
}
.sugar-cane--by-21 {
  border-top: 21px #f8fff8 solid !important;
  border-bottom: 21px #f8fff8 solid !important;
}
.sugar-cane--bx-21 {
  border-right: 21px #f8fff8 solid !important;
  border-left: 21px #f8fff8 solid !important;
}
.sugar-cane--ba-22 {
  border: 22px #f8fff8 solid !important;
}
.sugar-cane--bt-22 {
  border-top: 22px #f8fff8 solid !important;
}
.sugar-cane--br-22 {
  border-right: 22px #f8fff8 solid !important;
}
.sugar-cane--bl-22 {
  border-left: 22px #f8fff8 solid !important;
}
.sugar-cane--bb-22 {
  border-bottom: 22px #f8fff8 solid !important;
}
.sugar-cane--by-22 {
  border-top: 22px #f8fff8 solid !important;
  border-bottom: 22px #f8fff8 solid !important;
}
.sugar-cane--bx-22 {
  border-right: 22px #f8fff8 solid !important;
  border-left: 22px #f8fff8 solid !important;
}
.sugar-cane--ba-23 {
  border: 23px #f8fff8 solid !important;
}
.sugar-cane--bt-23 {
  border-top: 23px #f8fff8 solid !important;
}
.sugar-cane--br-23 {
  border-right: 23px #f8fff8 solid !important;
}
.sugar-cane--bl-23 {
  border-left: 23px #f8fff8 solid !important;
}
.sugar-cane--bb-23 {
  border-bottom: 23px #f8fff8 solid !important;
}
.sugar-cane--by-23 {
  border-top: 23px #f8fff8 solid !important;
  border-bottom: 23px #f8fff8 solid !important;
}
.sugar-cane--bx-23 {
  border-right: 23px #f8fff8 solid !important;
  border-left: 23px #f8fff8 solid !important;
}
.sugar-cane--ba-24 {
  border: 24px #f8fff8 solid !important;
}
.sugar-cane--bt-24 {
  border-top: 24px #f8fff8 solid !important;
}
.sugar-cane--br-24 {
  border-right: 24px #f8fff8 solid !important;
}
.sugar-cane--bl-24 {
  border-left: 24px #f8fff8 solid !important;
}
.sugar-cane--bb-24 {
  border-bottom: 24px #f8fff8 solid !important;
}
.sugar-cane--by-24 {
  border-top: 24px #f8fff8 solid !important;
  border-bottom: 24px #f8fff8 solid !important;
}
.sugar-cane--bx-24 {
  border-right: 24px #f8fff8 solid !important;
  border-left: 24px #f8fff8 solid !important;
}
.sugar-cane--ba-25 {
  border: 25px #f8fff8 solid !important;
}
.sugar-cane--bt-25 {
  border-top: 25px #f8fff8 solid !important;
}
.sugar-cane--br-25 {
  border-right: 25px #f8fff8 solid !important;
}
.sugar-cane--bl-25 {
  border-left: 25px #f8fff8 solid !important;
}
.sugar-cane--bb-25 {
  border-bottom: 25px #f8fff8 solid !important;
}
.sugar-cane--by-25 {
  border-top: 25px #f8fff8 solid !important;
  border-bottom: 25px #f8fff8 solid !important;
}
.sugar-cane--bx-25 {
  border-right: 25px #f8fff8 solid !important;
  border-left: 25px #f8fff8 solid !important;
}
.sugar-cane--ba-26 {
  border: 26px #f8fff8 solid !important;
}
.sugar-cane--bt-26 {
  border-top: 26px #f8fff8 solid !important;
}
.sugar-cane--br-26 {
  border-right: 26px #f8fff8 solid !important;
}
.sugar-cane--bl-26 {
  border-left: 26px #f8fff8 solid !important;
}
.sugar-cane--bb-26 {
  border-bottom: 26px #f8fff8 solid !important;
}
.sugar-cane--by-26 {
  border-top: 26px #f8fff8 solid !important;
  border-bottom: 26px #f8fff8 solid !important;
}
.sugar-cane--bx-26 {
  border-right: 26px #f8fff8 solid !important;
  border-left: 26px #f8fff8 solid !important;
}
.sugar-cane--ba-27 {
  border: 27px #f8fff8 solid !important;
}
.sugar-cane--bt-27 {
  border-top: 27px #f8fff8 solid !important;
}
.sugar-cane--br-27 {
  border-right: 27px #f8fff8 solid !important;
}
.sugar-cane--bl-27 {
  border-left: 27px #f8fff8 solid !important;
}
.sugar-cane--bb-27 {
  border-bottom: 27px #f8fff8 solid !important;
}
.sugar-cane--by-27 {
  border-top: 27px #f8fff8 solid !important;
  border-bottom: 27px #f8fff8 solid !important;
}
.sugar-cane--bx-27 {
  border-right: 27px #f8fff8 solid !important;
  border-left: 27px #f8fff8 solid !important;
}
.sugar-cane--ba-28 {
  border: 28px #f8fff8 solid !important;
}
.sugar-cane--bt-28 {
  border-top: 28px #f8fff8 solid !important;
}
.sugar-cane--br-28 {
  border-right: 28px #f8fff8 solid !important;
}
.sugar-cane--bl-28 {
  border-left: 28px #f8fff8 solid !important;
}
.sugar-cane--bb-28 {
  border-bottom: 28px #f8fff8 solid !important;
}
.sugar-cane--by-28 {
  border-top: 28px #f8fff8 solid !important;
  border-bottom: 28px #f8fff8 solid !important;
}
.sugar-cane--bx-28 {
  border-right: 28px #f8fff8 solid !important;
  border-left: 28px #f8fff8 solid !important;
}
.sugar-cane--ba-29 {
  border: 29px #f8fff8 solid !important;
}
.sugar-cane--bt-29 {
  border-top: 29px #f8fff8 solid !important;
}
.sugar-cane--br-29 {
  border-right: 29px #f8fff8 solid !important;
}
.sugar-cane--bl-29 {
  border-left: 29px #f8fff8 solid !important;
}
.sugar-cane--bb-29 {
  border-bottom: 29px #f8fff8 solid !important;
}
.sugar-cane--by-29 {
  border-top: 29px #f8fff8 solid !important;
  border-bottom: 29px #f8fff8 solid !important;
}
.sugar-cane--bx-29 {
  border-right: 29px #f8fff8 solid !important;
  border-left: 29px #f8fff8 solid !important;
}
.sugar-cane--ba-30 {
  border: 30px #f8fff8 solid !important;
}
.sugar-cane--bt-30 {
  border-top: 30px #f8fff8 solid !important;
}
.sugar-cane--br-30 {
  border-right: 30px #f8fff8 solid !important;
}
.sugar-cane--bl-30 {
  border-left: 30px #f8fff8 solid !important;
}
.sugar-cane--bb-30 {
  border-bottom: 30px #f8fff8 solid !important;
}
.sugar-cane--by-30 {
  border-top: 30px #f8fff8 solid !important;
  border-bottom: 30px #f8fff8 solid !important;
}
.sugar-cane--bx-30 {
  border-right: 30px #f8fff8 solid !important;
  border-left: 30px #f8fff8 solid !important;
}
.sugar-cane--ba-31 {
  border: 31px #f8fff8 solid !important;
}
.sugar-cane--bt-31 {
  border-top: 31px #f8fff8 solid !important;
}
.sugar-cane--br-31 {
  border-right: 31px #f8fff8 solid !important;
}
.sugar-cane--bl-31 {
  border-left: 31px #f8fff8 solid !important;
}
.sugar-cane--bb-31 {
  border-bottom: 31px #f8fff8 solid !important;
}
.sugar-cane--by-31 {
  border-top: 31px #f8fff8 solid !important;
  border-bottom: 31px #f8fff8 solid !important;
}
.sugar-cane--bx-31 {
  border-right: 31px #f8fff8 solid !important;
  border-left: 31px #f8fff8 solid !important;
}
.sugar-cane--ba-32 {
  border: 32px #f8fff8 solid !important;
}
.sugar-cane--bt-32 {
  border-top: 32px #f8fff8 solid !important;
}
.sugar-cane--br-32 {
  border-right: 32px #f8fff8 solid !important;
}
.sugar-cane--bl-32 {
  border-left: 32px #f8fff8 solid !important;
}
.sugar-cane--bb-32 {
  border-bottom: 32px #f8fff8 solid !important;
}
.sugar-cane--by-32 {
  border-top: 32px #f8fff8 solid !important;
  border-bottom: 32px #f8fff8 solid !important;
}
.sugar-cane--bx-32 {
  border-right: 32px #f8fff8 solid !important;
  border-left: 32px #f8fff8 solid !important;
}
.sugar-cane--ba-33 {
  border: 33px #f8fff8 solid !important;
}
.sugar-cane--bt-33 {
  border-top: 33px #f8fff8 solid !important;
}
.sugar-cane--br-33 {
  border-right: 33px #f8fff8 solid !important;
}
.sugar-cane--bl-33 {
  border-left: 33px #f8fff8 solid !important;
}
.sugar-cane--bb-33 {
  border-bottom: 33px #f8fff8 solid !important;
}
.sugar-cane--by-33 {
  border-top: 33px #f8fff8 solid !important;
  border-bottom: 33px #f8fff8 solid !important;
}
.sugar-cane--bx-33 {
  border-right: 33px #f8fff8 solid !important;
  border-left: 33px #f8fff8 solid !important;
}
.sugar-cane--ba-34 {
  border: 34px #f8fff8 solid !important;
}
.sugar-cane--bt-34 {
  border-top: 34px #f8fff8 solid !important;
}
.sugar-cane--br-34 {
  border-right: 34px #f8fff8 solid !important;
}
.sugar-cane--bl-34 {
  border-left: 34px #f8fff8 solid !important;
}
.sugar-cane--bb-34 {
  border-bottom: 34px #f8fff8 solid !important;
}
.sugar-cane--by-34 {
  border-top: 34px #f8fff8 solid !important;
  border-bottom: 34px #f8fff8 solid !important;
}
.sugar-cane--bx-34 {
  border-right: 34px #f8fff8 solid !important;
  border-left: 34px #f8fff8 solid !important;
}
.sugar-cane--ba-35 {
  border: 35px #f8fff8 solid !important;
}
.sugar-cane--bt-35 {
  border-top: 35px #f8fff8 solid !important;
}
.sugar-cane--br-35 {
  border-right: 35px #f8fff8 solid !important;
}
.sugar-cane--bl-35 {
  border-left: 35px #f8fff8 solid !important;
}
.sugar-cane--bb-35 {
  border-bottom: 35px #f8fff8 solid !important;
}
.sugar-cane--by-35 {
  border-top: 35px #f8fff8 solid !important;
  border-bottom: 35px #f8fff8 solid !important;
}
.sugar-cane--bx-35 {
  border-right: 35px #f8fff8 solid !important;
  border-left: 35px #f8fff8 solid !important;
}
.sugar-cane--ba-36 {
  border: 36px #f8fff8 solid !important;
}
.sugar-cane--bt-36 {
  border-top: 36px #f8fff8 solid !important;
}
.sugar-cane--br-36 {
  border-right: 36px #f8fff8 solid !important;
}
.sugar-cane--bl-36 {
  border-left: 36px #f8fff8 solid !important;
}
.sugar-cane--bb-36 {
  border-bottom: 36px #f8fff8 solid !important;
}
.sugar-cane--by-36 {
  border-top: 36px #f8fff8 solid !important;
  border-bottom: 36px #f8fff8 solid !important;
}
.sugar-cane--bx-36 {
  border-right: 36px #f8fff8 solid !important;
  border-left: 36px #f8fff8 solid !important;
}
.sugar-cane--ba-37 {
  border: 37px #f8fff8 solid !important;
}
.sugar-cane--bt-37 {
  border-top: 37px #f8fff8 solid !important;
}
.sugar-cane--br-37 {
  border-right: 37px #f8fff8 solid !important;
}
.sugar-cane--bl-37 {
  border-left: 37px #f8fff8 solid !important;
}
.sugar-cane--bb-37 {
  border-bottom: 37px #f8fff8 solid !important;
}
.sugar-cane--by-37 {
  border-top: 37px #f8fff8 solid !important;
  border-bottom: 37px #f8fff8 solid !important;
}
.sugar-cane--bx-37 {
  border-right: 37px #f8fff8 solid !important;
  border-left: 37px #f8fff8 solid !important;
}
.sugar-cane--ba-38 {
  border: 38px #f8fff8 solid !important;
}
.sugar-cane--bt-38 {
  border-top: 38px #f8fff8 solid !important;
}
.sugar-cane--br-38 {
  border-right: 38px #f8fff8 solid !important;
}
.sugar-cane--bl-38 {
  border-left: 38px #f8fff8 solid !important;
}
.sugar-cane--bb-38 {
  border-bottom: 38px #f8fff8 solid !important;
}
.sugar-cane--by-38 {
  border-top: 38px #f8fff8 solid !important;
  border-bottom: 38px #f8fff8 solid !important;
}
.sugar-cane--bx-38 {
  border-right: 38px #f8fff8 solid !important;
  border-left: 38px #f8fff8 solid !important;
}
.sugar-cane--ba-39 {
  border: 39px #f8fff8 solid !important;
}
.sugar-cane--bt-39 {
  border-top: 39px #f8fff8 solid !important;
}
.sugar-cane--br-39 {
  border-right: 39px #f8fff8 solid !important;
}
.sugar-cane--bl-39 {
  border-left: 39px #f8fff8 solid !important;
}
.sugar-cane--bb-39 {
  border-bottom: 39px #f8fff8 solid !important;
}
.sugar-cane--by-39 {
  border-top: 39px #f8fff8 solid !important;
  border-bottom: 39px #f8fff8 solid !important;
}
.sugar-cane--bx-39 {
  border-right: 39px #f8fff8 solid !important;
  border-left: 39px #f8fff8 solid !important;
}
.sugar-cane--ba-40 {
  border: 40px #f8fff8 solid !important;
}
.sugar-cane--bt-40 {
  border-top: 40px #f8fff8 solid !important;
}
.sugar-cane--br-40 {
  border-right: 40px #f8fff8 solid !important;
}
.sugar-cane--bl-40 {
  border-left: 40px #f8fff8 solid !important;
}
.sugar-cane--bb-40 {
  border-bottom: 40px #f8fff8 solid !important;
}
.sugar-cane--by-40 {
  border-top: 40px #f8fff8 solid !important;
  border-bottom: 40px #f8fff8 solid !important;
}
.sugar-cane--bx-40 {
  border-right: 40px #f8fff8 solid !important;
  border-left: 40px #f8fff8 solid !important;
}
.sugar-cane--ba-41 {
  border: 41px #f8fff8 solid !important;
}
.sugar-cane--bt-41 {
  border-top: 41px #f8fff8 solid !important;
}
.sugar-cane--br-41 {
  border-right: 41px #f8fff8 solid !important;
}
.sugar-cane--bl-41 {
  border-left: 41px #f8fff8 solid !important;
}
.sugar-cane--bb-41 {
  border-bottom: 41px #f8fff8 solid !important;
}
.sugar-cane--by-41 {
  border-top: 41px #f8fff8 solid !important;
  border-bottom: 41px #f8fff8 solid !important;
}
.sugar-cane--bx-41 {
  border-right: 41px #f8fff8 solid !important;
  border-left: 41px #f8fff8 solid !important;
}
.sugar-cane--ba-42 {
  border: 42px #f8fff8 solid !important;
}
.sugar-cane--bt-42 {
  border-top: 42px #f8fff8 solid !important;
}
.sugar-cane--br-42 {
  border-right: 42px #f8fff8 solid !important;
}
.sugar-cane--bl-42 {
  border-left: 42px #f8fff8 solid !important;
}
.sugar-cane--bb-42 {
  border-bottom: 42px #f8fff8 solid !important;
}
.sugar-cane--by-42 {
  border-top: 42px #f8fff8 solid !important;
  border-bottom: 42px #f8fff8 solid !important;
}
.sugar-cane--bx-42 {
  border-right: 42px #f8fff8 solid !important;
  border-left: 42px #f8fff8 solid !important;
}
.sugar-cane--ba-43 {
  border: 43px #f8fff8 solid !important;
}
.sugar-cane--bt-43 {
  border-top: 43px #f8fff8 solid !important;
}
.sugar-cane--br-43 {
  border-right: 43px #f8fff8 solid !important;
}
.sugar-cane--bl-43 {
  border-left: 43px #f8fff8 solid !important;
}
.sugar-cane--bb-43 {
  border-bottom: 43px #f8fff8 solid !important;
}
.sugar-cane--by-43 {
  border-top: 43px #f8fff8 solid !important;
  border-bottom: 43px #f8fff8 solid !important;
}
.sugar-cane--bx-43 {
  border-right: 43px #f8fff8 solid !important;
  border-left: 43px #f8fff8 solid !important;
}
.sugar-cane--ba-44 {
  border: 44px #f8fff8 solid !important;
}
.sugar-cane--bt-44 {
  border-top: 44px #f8fff8 solid !important;
}
.sugar-cane--br-44 {
  border-right: 44px #f8fff8 solid !important;
}
.sugar-cane--bl-44 {
  border-left: 44px #f8fff8 solid !important;
}
.sugar-cane--bb-44 {
  border-bottom: 44px #f8fff8 solid !important;
}
.sugar-cane--by-44 {
  border-top: 44px #f8fff8 solid !important;
  border-bottom: 44px #f8fff8 solid !important;
}
.sugar-cane--bx-44 {
  border-right: 44px #f8fff8 solid !important;
  border-left: 44px #f8fff8 solid !important;
}
.sugar-cane--ba-45 {
  border: 45px #f8fff8 solid !important;
}
.sugar-cane--bt-45 {
  border-top: 45px #f8fff8 solid !important;
}
.sugar-cane--br-45 {
  border-right: 45px #f8fff8 solid !important;
}
.sugar-cane--bl-45 {
  border-left: 45px #f8fff8 solid !important;
}
.sugar-cane--bb-45 {
  border-bottom: 45px #f8fff8 solid !important;
}
.sugar-cane--by-45 {
  border-top: 45px #f8fff8 solid !important;
  border-bottom: 45px #f8fff8 solid !important;
}
.sugar-cane--bx-45 {
  border-right: 45px #f8fff8 solid !important;
  border-left: 45px #f8fff8 solid !important;
}
.sugar-cane--ba-46 {
  border: 46px #f8fff8 solid !important;
}
.sugar-cane--bt-46 {
  border-top: 46px #f8fff8 solid !important;
}
.sugar-cane--br-46 {
  border-right: 46px #f8fff8 solid !important;
}
.sugar-cane--bl-46 {
  border-left: 46px #f8fff8 solid !important;
}
.sugar-cane--bb-46 {
  border-bottom: 46px #f8fff8 solid !important;
}
.sugar-cane--by-46 {
  border-top: 46px #f8fff8 solid !important;
  border-bottom: 46px #f8fff8 solid !important;
}
.sugar-cane--bx-46 {
  border-right: 46px #f8fff8 solid !important;
  border-left: 46px #f8fff8 solid !important;
}
.sugar-cane--ba-47 {
  border: 47px #f8fff8 solid !important;
}
.sugar-cane--bt-47 {
  border-top: 47px #f8fff8 solid !important;
}
.sugar-cane--br-47 {
  border-right: 47px #f8fff8 solid !important;
}
.sugar-cane--bl-47 {
  border-left: 47px #f8fff8 solid !important;
}
.sugar-cane--bb-47 {
  border-bottom: 47px #f8fff8 solid !important;
}
.sugar-cane--by-47 {
  border-top: 47px #f8fff8 solid !important;
  border-bottom: 47px #f8fff8 solid !important;
}
.sugar-cane--bx-47 {
  border-right: 47px #f8fff8 solid !important;
  border-left: 47px #f8fff8 solid !important;
}
.sugar-cane--ba-48 {
  border: 48px #f8fff8 solid !important;
}
.sugar-cane--bt-48 {
  border-top: 48px #f8fff8 solid !important;
}
.sugar-cane--br-48 {
  border-right: 48px #f8fff8 solid !important;
}
.sugar-cane--bl-48 {
  border-left: 48px #f8fff8 solid !important;
}
.sugar-cane--bb-48 {
  border-bottom: 48px #f8fff8 solid !important;
}
.sugar-cane--by-48 {
  border-top: 48px #f8fff8 solid !important;
  border-bottom: 48px #f8fff8 solid !important;
}
.sugar-cane--bx-48 {
  border-right: 48px #f8fff8 solid !important;
  border-left: 48px #f8fff8 solid !important;
}
.sugar-cane--ba-49 {
  border: 49px #f8fff8 solid !important;
}
.sugar-cane--bt-49 {
  border-top: 49px #f8fff8 solid !important;
}
.sugar-cane--br-49 {
  border-right: 49px #f8fff8 solid !important;
}
.sugar-cane--bl-49 {
  border-left: 49px #f8fff8 solid !important;
}
.sugar-cane--bb-49 {
  border-bottom: 49px #f8fff8 solid !important;
}
.sugar-cane--by-49 {
  border-top: 49px #f8fff8 solid !important;
  border-bottom: 49px #f8fff8 solid !important;
}
.sugar-cane--bx-49 {
  border-right: 49px #f8fff8 solid !important;
  border-left: 49px #f8fff8 solid !important;
}
.sugar-cane--ba-50 {
  border: 50px #f8fff8 solid !important;
}
.sugar-cane--bt-50 {
  border-top: 50px #f8fff8 solid !important;
}
.sugar-cane--br-50 {
  border-right: 50px #f8fff8 solid !important;
}
.sugar-cane--bl-50 {
  border-left: 50px #f8fff8 solid !important;
}
.sugar-cane--bb-50 {
  border-bottom: 50px #f8fff8 solid !important;
}
.sugar-cane--by-50 {
  border-top: 50px #f8fff8 solid !important;
  border-bottom: 50px #f8fff8 solid !important;
}
.sugar-cane--bx-50 {
  border-right: 50px #f8fff8 solid !important;
  border-left: 50px #f8fff8 solid !important;
}
.sugar-cane--ba-51 {
  border: 51px #f8fff8 solid !important;
}
.sugar-cane--bt-51 {
  border-top: 51px #f8fff8 solid !important;
}
.sugar-cane--br-51 {
  border-right: 51px #f8fff8 solid !important;
}
.sugar-cane--bl-51 {
  border-left: 51px #f8fff8 solid !important;
}
.sugar-cane--bb-51 {
  border-bottom: 51px #f8fff8 solid !important;
}
.sugar-cane--by-51 {
  border-top: 51px #f8fff8 solid !important;
  border-bottom: 51px #f8fff8 solid !important;
}
.sugar-cane--bx-51 {
  border-right: 51px #f8fff8 solid !important;
  border-left: 51px #f8fff8 solid !important;
}
.sugar-cane--ba-52 {
  border: 52px #f8fff8 solid !important;
}
.sugar-cane--bt-52 {
  border-top: 52px #f8fff8 solid !important;
}
.sugar-cane--br-52 {
  border-right: 52px #f8fff8 solid !important;
}
.sugar-cane--bl-52 {
  border-left: 52px #f8fff8 solid !important;
}
.sugar-cane--bb-52 {
  border-bottom: 52px #f8fff8 solid !important;
}
.sugar-cane--by-52 {
  border-top: 52px #f8fff8 solid !important;
  border-bottom: 52px #f8fff8 solid !important;
}
.sugar-cane--bx-52 {
  border-right: 52px #f8fff8 solid !important;
  border-left: 52px #f8fff8 solid !important;
}
.sugar-cane--ba-53 {
  border: 53px #f8fff8 solid !important;
}
.sugar-cane--bt-53 {
  border-top: 53px #f8fff8 solid !important;
}
.sugar-cane--br-53 {
  border-right: 53px #f8fff8 solid !important;
}
.sugar-cane--bl-53 {
  border-left: 53px #f8fff8 solid !important;
}
.sugar-cane--bb-53 {
  border-bottom: 53px #f8fff8 solid !important;
}
.sugar-cane--by-53 {
  border-top: 53px #f8fff8 solid !important;
  border-bottom: 53px #f8fff8 solid !important;
}
.sugar-cane--bx-53 {
  border-right: 53px #f8fff8 solid !important;
  border-left: 53px #f8fff8 solid !important;
}
.sugar-cane--ba-54 {
  border: 54px #f8fff8 solid !important;
}
.sugar-cane--bt-54 {
  border-top: 54px #f8fff8 solid !important;
}
.sugar-cane--br-54 {
  border-right: 54px #f8fff8 solid !important;
}
.sugar-cane--bl-54 {
  border-left: 54px #f8fff8 solid !important;
}
.sugar-cane--bb-54 {
  border-bottom: 54px #f8fff8 solid !important;
}
.sugar-cane--by-54 {
  border-top: 54px #f8fff8 solid !important;
  border-bottom: 54px #f8fff8 solid !important;
}
.sugar-cane--bx-54 {
  border-right: 54px #f8fff8 solid !important;
  border-left: 54px #f8fff8 solid !important;
}
.sugar-cane--ba-55 {
  border: 55px #f8fff8 solid !important;
}
.sugar-cane--bt-55 {
  border-top: 55px #f8fff8 solid !important;
}
.sugar-cane--br-55 {
  border-right: 55px #f8fff8 solid !important;
}
.sugar-cane--bl-55 {
  border-left: 55px #f8fff8 solid !important;
}
.sugar-cane--bb-55 {
  border-bottom: 55px #f8fff8 solid !important;
}
.sugar-cane--by-55 {
  border-top: 55px #f8fff8 solid !important;
  border-bottom: 55px #f8fff8 solid !important;
}
.sugar-cane--bx-55 {
  border-right: 55px #f8fff8 solid !important;
  border-left: 55px #f8fff8 solid !important;
}
.sugar-cane--ba-56 {
  border: 56px #f8fff8 solid !important;
}
.sugar-cane--bt-56 {
  border-top: 56px #f8fff8 solid !important;
}
.sugar-cane--br-56 {
  border-right: 56px #f8fff8 solid !important;
}
.sugar-cane--bl-56 {
  border-left: 56px #f8fff8 solid !important;
}
.sugar-cane--bb-56 {
  border-bottom: 56px #f8fff8 solid !important;
}
.sugar-cane--by-56 {
  border-top: 56px #f8fff8 solid !important;
  border-bottom: 56px #f8fff8 solid !important;
}
.sugar-cane--bx-56 {
  border-right: 56px #f8fff8 solid !important;
  border-left: 56px #f8fff8 solid !important;
}
.sugar-cane--ba-57 {
  border: 57px #f8fff8 solid !important;
}
.sugar-cane--bt-57 {
  border-top: 57px #f8fff8 solid !important;
}
.sugar-cane--br-57 {
  border-right: 57px #f8fff8 solid !important;
}
.sugar-cane--bl-57 {
  border-left: 57px #f8fff8 solid !important;
}
.sugar-cane--bb-57 {
  border-bottom: 57px #f8fff8 solid !important;
}
.sugar-cane--by-57 {
  border-top: 57px #f8fff8 solid !important;
  border-bottom: 57px #f8fff8 solid !important;
}
.sugar-cane--bx-57 {
  border-right: 57px #f8fff8 solid !important;
  border-left: 57px #f8fff8 solid !important;
}
.sugar-cane--ba-58 {
  border: 58px #f8fff8 solid !important;
}
.sugar-cane--bt-58 {
  border-top: 58px #f8fff8 solid !important;
}
.sugar-cane--br-58 {
  border-right: 58px #f8fff8 solid !important;
}
.sugar-cane--bl-58 {
  border-left: 58px #f8fff8 solid !important;
}
.sugar-cane--bb-58 {
  border-bottom: 58px #f8fff8 solid !important;
}
.sugar-cane--by-58 {
  border-top: 58px #f8fff8 solid !important;
  border-bottom: 58px #f8fff8 solid !important;
}
.sugar-cane--bx-58 {
  border-right: 58px #f8fff8 solid !important;
  border-left: 58px #f8fff8 solid !important;
}
.sugar-cane--ba-59 {
  border: 59px #f8fff8 solid !important;
}
.sugar-cane--bt-59 {
  border-top: 59px #f8fff8 solid !important;
}
.sugar-cane--br-59 {
  border-right: 59px #f8fff8 solid !important;
}
.sugar-cane--bl-59 {
  border-left: 59px #f8fff8 solid !important;
}
.sugar-cane--bb-59 {
  border-bottom: 59px #f8fff8 solid !important;
}
.sugar-cane--by-59 {
  border-top: 59px #f8fff8 solid !important;
  border-bottom: 59px #f8fff8 solid !important;
}
.sugar-cane--bx-59 {
  border-right: 59px #f8fff8 solid !important;
  border-left: 59px #f8fff8 solid !important;
}
.sugar-cane--ba-60 {
  border: 60px #f8fff8 solid !important;
}
.sugar-cane--bt-60 {
  border-top: 60px #f8fff8 solid !important;
}
.sugar-cane--br-60 {
  border-right: 60px #f8fff8 solid !important;
}
.sugar-cane--bl-60 {
  border-left: 60px #f8fff8 solid !important;
}
.sugar-cane--bb-60 {
  border-bottom: 60px #f8fff8 solid !important;
}
.sugar-cane--by-60 {
  border-top: 60px #f8fff8 solid !important;
  border-bottom: 60px #f8fff8 solid !important;
}
.sugar-cane--bx-60 {
  border-right: 60px #f8fff8 solid !important;
  border-left: 60px #f8fff8 solid !important;
}
.sugar-cane--ba-61 {
  border: 61px #f8fff8 solid !important;
}
.sugar-cane--bt-61 {
  border-top: 61px #f8fff8 solid !important;
}
.sugar-cane--br-61 {
  border-right: 61px #f8fff8 solid !important;
}
.sugar-cane--bl-61 {
  border-left: 61px #f8fff8 solid !important;
}
.sugar-cane--bb-61 {
  border-bottom: 61px #f8fff8 solid !important;
}
.sugar-cane--by-61 {
  border-top: 61px #f8fff8 solid !important;
  border-bottom: 61px #f8fff8 solid !important;
}
.sugar-cane--bx-61 {
  border-right: 61px #f8fff8 solid !important;
  border-left: 61px #f8fff8 solid !important;
}
.sugar-cane--ba-62 {
  border: 62px #f8fff8 solid !important;
}
.sugar-cane--bt-62 {
  border-top: 62px #f8fff8 solid !important;
}
.sugar-cane--br-62 {
  border-right: 62px #f8fff8 solid !important;
}
.sugar-cane--bl-62 {
  border-left: 62px #f8fff8 solid !important;
}
.sugar-cane--bb-62 {
  border-bottom: 62px #f8fff8 solid !important;
}
.sugar-cane--by-62 {
  border-top: 62px #f8fff8 solid !important;
  border-bottom: 62px #f8fff8 solid !important;
}
.sugar-cane--bx-62 {
  border-right: 62px #f8fff8 solid !important;
  border-left: 62px #f8fff8 solid !important;
}
.sugar-cane--ba-63 {
  border: 63px #f8fff8 solid !important;
}
.sugar-cane--bt-63 {
  border-top: 63px #f8fff8 solid !important;
}
.sugar-cane--br-63 {
  border-right: 63px #f8fff8 solid !important;
}
.sugar-cane--bl-63 {
  border-left: 63px #f8fff8 solid !important;
}
.sugar-cane--bb-63 {
  border-bottom: 63px #f8fff8 solid !important;
}
.sugar-cane--by-63 {
  border-top: 63px #f8fff8 solid !important;
  border-bottom: 63px #f8fff8 solid !important;
}
.sugar-cane--bx-63 {
  border-right: 63px #f8fff8 solid !important;
  border-left: 63px #f8fff8 solid !important;
}
.sugar-cane--ba-64 {
  border: 64px #f8fff8 solid !important;
}
.sugar-cane--bt-64 {
  border-top: 64px #f8fff8 solid !important;
}
.sugar-cane--br-64 {
  border-right: 64px #f8fff8 solid !important;
}
.sugar-cane--bl-64 {
  border-left: 64px #f8fff8 solid !important;
}
.sugar-cane--bb-64 {
  border-bottom: 64px #f8fff8 solid !important;
}
.sugar-cane--by-64 {
  border-top: 64px #f8fff8 solid !important;
  border-bottom: 64px #f8fff8 solid !important;
}
.sugar-cane--bx-64 {
  border-right: 64px #f8fff8 solid !important;
  border-left: 64px #f8fff8 solid !important;
}
.sugar-cane--ba-65 {
  border: 65px #f8fff8 solid !important;
}
.sugar-cane--bt-65 {
  border-top: 65px #f8fff8 solid !important;
}
.sugar-cane--br-65 {
  border-right: 65px #f8fff8 solid !important;
}
.sugar-cane--bl-65 {
  border-left: 65px #f8fff8 solid !important;
}
.sugar-cane--bb-65 {
  border-bottom: 65px #f8fff8 solid !important;
}
.sugar-cane--by-65 {
  border-top: 65px #f8fff8 solid !important;
  border-bottom: 65px #f8fff8 solid !important;
}
.sugar-cane--bx-65 {
  border-right: 65px #f8fff8 solid !important;
  border-left: 65px #f8fff8 solid !important;
}
.sugar-cane--ba-66 {
  border: 66px #f8fff8 solid !important;
}
.sugar-cane--bt-66 {
  border-top: 66px #f8fff8 solid !important;
}
.sugar-cane--br-66 {
  border-right: 66px #f8fff8 solid !important;
}
.sugar-cane--bl-66 {
  border-left: 66px #f8fff8 solid !important;
}
.sugar-cane--bb-66 {
  border-bottom: 66px #f8fff8 solid !important;
}
.sugar-cane--by-66 {
  border-top: 66px #f8fff8 solid !important;
  border-bottom: 66px #f8fff8 solid !important;
}
.sugar-cane--bx-66 {
  border-right: 66px #f8fff8 solid !important;
  border-left: 66px #f8fff8 solid !important;
}
.sugar-cane--ba-67 {
  border: 67px #f8fff8 solid !important;
}
.sugar-cane--bt-67 {
  border-top: 67px #f8fff8 solid !important;
}
.sugar-cane--br-67 {
  border-right: 67px #f8fff8 solid !important;
}
.sugar-cane--bl-67 {
  border-left: 67px #f8fff8 solid !important;
}
.sugar-cane--bb-67 {
  border-bottom: 67px #f8fff8 solid !important;
}
.sugar-cane--by-67 {
  border-top: 67px #f8fff8 solid !important;
  border-bottom: 67px #f8fff8 solid !important;
}
.sugar-cane--bx-67 {
  border-right: 67px #f8fff8 solid !important;
  border-left: 67px #f8fff8 solid !important;
}
.sugar-cane--ba-68 {
  border: 68px #f8fff8 solid !important;
}
.sugar-cane--bt-68 {
  border-top: 68px #f8fff8 solid !important;
}
.sugar-cane--br-68 {
  border-right: 68px #f8fff8 solid !important;
}
.sugar-cane--bl-68 {
  border-left: 68px #f8fff8 solid !important;
}
.sugar-cane--bb-68 {
  border-bottom: 68px #f8fff8 solid !important;
}
.sugar-cane--by-68 {
  border-top: 68px #f8fff8 solid !important;
  border-bottom: 68px #f8fff8 solid !important;
}
.sugar-cane--bx-68 {
  border-right: 68px #f8fff8 solid !important;
  border-left: 68px #f8fff8 solid !important;
}
.sugar-cane--ba-69 {
  border: 69px #f8fff8 solid !important;
}
.sugar-cane--bt-69 {
  border-top: 69px #f8fff8 solid !important;
}
.sugar-cane--br-69 {
  border-right: 69px #f8fff8 solid !important;
}
.sugar-cane--bl-69 {
  border-left: 69px #f8fff8 solid !important;
}
.sugar-cane--bb-69 {
  border-bottom: 69px #f8fff8 solid !important;
}
.sugar-cane--by-69 {
  border-top: 69px #f8fff8 solid !important;
  border-bottom: 69px #f8fff8 solid !important;
}
.sugar-cane--bx-69 {
  border-right: 69px #f8fff8 solid !important;
  border-left: 69px #f8fff8 solid !important;
}
.sugar-cane--ba-70 {
  border: 70px #f8fff8 solid !important;
}
.sugar-cane--bt-70 {
  border-top: 70px #f8fff8 solid !important;
}
.sugar-cane--br-70 {
  border-right: 70px #f8fff8 solid !important;
}
.sugar-cane--bl-70 {
  border-left: 70px #f8fff8 solid !important;
}
.sugar-cane--bb-70 {
  border-bottom: 70px #f8fff8 solid !important;
}
.sugar-cane--by-70 {
  border-top: 70px #f8fff8 solid !important;
  border-bottom: 70px #f8fff8 solid !important;
}
.sugar-cane--bx-70 {
  border-right: 70px #f8fff8 solid !important;
  border-left: 70px #f8fff8 solid !important;
}
.sugar-cane--ba-71 {
  border: 71px #f8fff8 solid !important;
}
.sugar-cane--bt-71 {
  border-top: 71px #f8fff8 solid !important;
}
.sugar-cane--br-71 {
  border-right: 71px #f8fff8 solid !important;
}
.sugar-cane--bl-71 {
  border-left: 71px #f8fff8 solid !important;
}
.sugar-cane--bb-71 {
  border-bottom: 71px #f8fff8 solid !important;
}
.sugar-cane--by-71 {
  border-top: 71px #f8fff8 solid !important;
  border-bottom: 71px #f8fff8 solid !important;
}
.sugar-cane--bx-71 {
  border-right: 71px #f8fff8 solid !important;
  border-left: 71px #f8fff8 solid !important;
}
.sugar-cane--ba-72 {
  border: 72px #f8fff8 solid !important;
}
.sugar-cane--bt-72 {
  border-top: 72px #f8fff8 solid !important;
}
.sugar-cane--br-72 {
  border-right: 72px #f8fff8 solid !important;
}
.sugar-cane--bl-72 {
  border-left: 72px #f8fff8 solid !important;
}
.sugar-cane--bb-72 {
  border-bottom: 72px #f8fff8 solid !important;
}
.sugar-cane--by-72 {
  border-top: 72px #f8fff8 solid !important;
  border-bottom: 72px #f8fff8 solid !important;
}
.sugar-cane--bx-72 {
  border-right: 72px #f8fff8 solid !important;
  border-left: 72px #f8fff8 solid !important;
}
.sugar-cane--ba-73 {
  border: 73px #f8fff8 solid !important;
}
.sugar-cane--bt-73 {
  border-top: 73px #f8fff8 solid !important;
}
.sugar-cane--br-73 {
  border-right: 73px #f8fff8 solid !important;
}
.sugar-cane--bl-73 {
  border-left: 73px #f8fff8 solid !important;
}
.sugar-cane--bb-73 {
  border-bottom: 73px #f8fff8 solid !important;
}
.sugar-cane--by-73 {
  border-top: 73px #f8fff8 solid !important;
  border-bottom: 73px #f8fff8 solid !important;
}
.sugar-cane--bx-73 {
  border-right: 73px #f8fff8 solid !important;
  border-left: 73px #f8fff8 solid !important;
}
.sugar-cane--ba-74 {
  border: 74px #f8fff8 solid !important;
}
.sugar-cane--bt-74 {
  border-top: 74px #f8fff8 solid !important;
}
.sugar-cane--br-74 {
  border-right: 74px #f8fff8 solid !important;
}
.sugar-cane--bl-74 {
  border-left: 74px #f8fff8 solid !important;
}
.sugar-cane--bb-74 {
  border-bottom: 74px #f8fff8 solid !important;
}
.sugar-cane--by-74 {
  border-top: 74px #f8fff8 solid !important;
  border-bottom: 74px #f8fff8 solid !important;
}
.sugar-cane--bx-74 {
  border-right: 74px #f8fff8 solid !important;
  border-left: 74px #f8fff8 solid !important;
}
.sugar-cane--ba-75 {
  border: 75px #f8fff8 solid !important;
}
.sugar-cane--bt-75 {
  border-top: 75px #f8fff8 solid !important;
}
.sugar-cane--br-75 {
  border-right: 75px #f8fff8 solid !important;
}
.sugar-cane--bl-75 {
  border-left: 75px #f8fff8 solid !important;
}
.sugar-cane--bb-75 {
  border-bottom: 75px #f8fff8 solid !important;
}
.sugar-cane--by-75 {
  border-top: 75px #f8fff8 solid !important;
  border-bottom: 75px #f8fff8 solid !important;
}
.sugar-cane--bx-75 {
  border-right: 75px #f8fff8 solid !important;
  border-left: 75px #f8fff8 solid !important;
}
.sugar-cane--ba-76 {
  border: 76px #f8fff8 solid !important;
}
.sugar-cane--bt-76 {
  border-top: 76px #f8fff8 solid !important;
}
.sugar-cane--br-76 {
  border-right: 76px #f8fff8 solid !important;
}
.sugar-cane--bl-76 {
  border-left: 76px #f8fff8 solid !important;
}
.sugar-cane--bb-76 {
  border-bottom: 76px #f8fff8 solid !important;
}
.sugar-cane--by-76 {
  border-top: 76px #f8fff8 solid !important;
  border-bottom: 76px #f8fff8 solid !important;
}
.sugar-cane--bx-76 {
  border-right: 76px #f8fff8 solid !important;
  border-left: 76px #f8fff8 solid !important;
}
.sugar-cane--ba-77 {
  border: 77px #f8fff8 solid !important;
}
.sugar-cane--bt-77 {
  border-top: 77px #f8fff8 solid !important;
}
.sugar-cane--br-77 {
  border-right: 77px #f8fff8 solid !important;
}
.sugar-cane--bl-77 {
  border-left: 77px #f8fff8 solid !important;
}
.sugar-cane--bb-77 {
  border-bottom: 77px #f8fff8 solid !important;
}
.sugar-cane--by-77 {
  border-top: 77px #f8fff8 solid !important;
  border-bottom: 77px #f8fff8 solid !important;
}
.sugar-cane--bx-77 {
  border-right: 77px #f8fff8 solid !important;
  border-left: 77px #f8fff8 solid !important;
}
.sugar-cane--ba-78 {
  border: 78px #f8fff8 solid !important;
}
.sugar-cane--bt-78 {
  border-top: 78px #f8fff8 solid !important;
}
.sugar-cane--br-78 {
  border-right: 78px #f8fff8 solid !important;
}
.sugar-cane--bl-78 {
  border-left: 78px #f8fff8 solid !important;
}
.sugar-cane--bb-78 {
  border-bottom: 78px #f8fff8 solid !important;
}
.sugar-cane--by-78 {
  border-top: 78px #f8fff8 solid !important;
  border-bottom: 78px #f8fff8 solid !important;
}
.sugar-cane--bx-78 {
  border-right: 78px #f8fff8 solid !important;
  border-left: 78px #f8fff8 solid !important;
}
.sugar-cane--ba-79 {
  border: 79px #f8fff8 solid !important;
}
.sugar-cane--bt-79 {
  border-top: 79px #f8fff8 solid !important;
}
.sugar-cane--br-79 {
  border-right: 79px #f8fff8 solid !important;
}
.sugar-cane--bl-79 {
  border-left: 79px #f8fff8 solid !important;
}
.sugar-cane--bb-79 {
  border-bottom: 79px #f8fff8 solid !important;
}
.sugar-cane--by-79 {
  border-top: 79px #f8fff8 solid !important;
  border-bottom: 79px #f8fff8 solid !important;
}
.sugar-cane--bx-79 {
  border-right: 79px #f8fff8 solid !important;
  border-left: 79px #f8fff8 solid !important;
}
.sugar-cane--ba-80 {
  border: 80px #f8fff8 solid !important;
}
.sugar-cane--bt-80 {
  border-top: 80px #f8fff8 solid !important;
}
.sugar-cane--br-80 {
  border-right: 80px #f8fff8 solid !important;
}
.sugar-cane--bl-80 {
  border-left: 80px #f8fff8 solid !important;
}
.sugar-cane--bb-80 {
  border-bottom: 80px #f8fff8 solid !important;
}
.sugar-cane--by-80 {
  border-top: 80px #f8fff8 solid !important;
  border-bottom: 80px #f8fff8 solid !important;
}
.sugar-cane--bx-80 {
  border-right: 80px #f8fff8 solid !important;
  border-left: 80px #f8fff8 solid !important;
}
.sugar-cane--ba-81 {
  border: 81px #f8fff8 solid !important;
}
.sugar-cane--bt-81 {
  border-top: 81px #f8fff8 solid !important;
}
.sugar-cane--br-81 {
  border-right: 81px #f8fff8 solid !important;
}
.sugar-cane--bl-81 {
  border-left: 81px #f8fff8 solid !important;
}
.sugar-cane--bb-81 {
  border-bottom: 81px #f8fff8 solid !important;
}
.sugar-cane--by-81 {
  border-top: 81px #f8fff8 solid !important;
  border-bottom: 81px #f8fff8 solid !important;
}
.sugar-cane--bx-81 {
  border-right: 81px #f8fff8 solid !important;
  border-left: 81px #f8fff8 solid !important;
}
.sugar-cane--ba-82 {
  border: 82px #f8fff8 solid !important;
}
.sugar-cane--bt-82 {
  border-top: 82px #f8fff8 solid !important;
}
.sugar-cane--br-82 {
  border-right: 82px #f8fff8 solid !important;
}
.sugar-cane--bl-82 {
  border-left: 82px #f8fff8 solid !important;
}
.sugar-cane--bb-82 {
  border-bottom: 82px #f8fff8 solid !important;
}
.sugar-cane--by-82 {
  border-top: 82px #f8fff8 solid !important;
  border-bottom: 82px #f8fff8 solid !important;
}
.sugar-cane--bx-82 {
  border-right: 82px #f8fff8 solid !important;
  border-left: 82px #f8fff8 solid !important;
}
.sugar-cane--ba-83 {
  border: 83px #f8fff8 solid !important;
}
.sugar-cane--bt-83 {
  border-top: 83px #f8fff8 solid !important;
}
.sugar-cane--br-83 {
  border-right: 83px #f8fff8 solid !important;
}
.sugar-cane--bl-83 {
  border-left: 83px #f8fff8 solid !important;
}
.sugar-cane--bb-83 {
  border-bottom: 83px #f8fff8 solid !important;
}
.sugar-cane--by-83 {
  border-top: 83px #f8fff8 solid !important;
  border-bottom: 83px #f8fff8 solid !important;
}
.sugar-cane--bx-83 {
  border-right: 83px #f8fff8 solid !important;
  border-left: 83px #f8fff8 solid !important;
}
.sugar-cane--ba-84 {
  border: 84px #f8fff8 solid !important;
}
.sugar-cane--bt-84 {
  border-top: 84px #f8fff8 solid !important;
}
.sugar-cane--br-84 {
  border-right: 84px #f8fff8 solid !important;
}
.sugar-cane--bl-84 {
  border-left: 84px #f8fff8 solid !important;
}
.sugar-cane--bb-84 {
  border-bottom: 84px #f8fff8 solid !important;
}
.sugar-cane--by-84 {
  border-top: 84px #f8fff8 solid !important;
  border-bottom: 84px #f8fff8 solid !important;
}
.sugar-cane--bx-84 {
  border-right: 84px #f8fff8 solid !important;
  border-left: 84px #f8fff8 solid !important;
}
.sugar-cane--ba-85 {
  border: 85px #f8fff8 solid !important;
}
.sugar-cane--bt-85 {
  border-top: 85px #f8fff8 solid !important;
}
.sugar-cane--br-85 {
  border-right: 85px #f8fff8 solid !important;
}
.sugar-cane--bl-85 {
  border-left: 85px #f8fff8 solid !important;
}
.sugar-cane--bb-85 {
  border-bottom: 85px #f8fff8 solid !important;
}
.sugar-cane--by-85 {
  border-top: 85px #f8fff8 solid !important;
  border-bottom: 85px #f8fff8 solid !important;
}
.sugar-cane--bx-85 {
  border-right: 85px #f8fff8 solid !important;
  border-left: 85px #f8fff8 solid !important;
}
.sugar-cane--ba-86 {
  border: 86px #f8fff8 solid !important;
}
.sugar-cane--bt-86 {
  border-top: 86px #f8fff8 solid !important;
}
.sugar-cane--br-86 {
  border-right: 86px #f8fff8 solid !important;
}
.sugar-cane--bl-86 {
  border-left: 86px #f8fff8 solid !important;
}
.sugar-cane--bb-86 {
  border-bottom: 86px #f8fff8 solid !important;
}
.sugar-cane--by-86 {
  border-top: 86px #f8fff8 solid !important;
  border-bottom: 86px #f8fff8 solid !important;
}
.sugar-cane--bx-86 {
  border-right: 86px #f8fff8 solid !important;
  border-left: 86px #f8fff8 solid !important;
}
.sugar-cane--ba-87 {
  border: 87px #f8fff8 solid !important;
}
.sugar-cane--bt-87 {
  border-top: 87px #f8fff8 solid !important;
}
.sugar-cane--br-87 {
  border-right: 87px #f8fff8 solid !important;
}
.sugar-cane--bl-87 {
  border-left: 87px #f8fff8 solid !important;
}
.sugar-cane--bb-87 {
  border-bottom: 87px #f8fff8 solid !important;
}
.sugar-cane--by-87 {
  border-top: 87px #f8fff8 solid !important;
  border-bottom: 87px #f8fff8 solid !important;
}
.sugar-cane--bx-87 {
  border-right: 87px #f8fff8 solid !important;
  border-left: 87px #f8fff8 solid !important;
}
.sugar-cane--ba-88 {
  border: 88px #f8fff8 solid !important;
}
.sugar-cane--bt-88 {
  border-top: 88px #f8fff8 solid !important;
}
.sugar-cane--br-88 {
  border-right: 88px #f8fff8 solid !important;
}
.sugar-cane--bl-88 {
  border-left: 88px #f8fff8 solid !important;
}
.sugar-cane--bb-88 {
  border-bottom: 88px #f8fff8 solid !important;
}
.sugar-cane--by-88 {
  border-top: 88px #f8fff8 solid !important;
  border-bottom: 88px #f8fff8 solid !important;
}
.sugar-cane--bx-88 {
  border-right: 88px #f8fff8 solid !important;
  border-left: 88px #f8fff8 solid !important;
}
.sugar-cane--ba-89 {
  border: 89px #f8fff8 solid !important;
}
.sugar-cane--bt-89 {
  border-top: 89px #f8fff8 solid !important;
}
.sugar-cane--br-89 {
  border-right: 89px #f8fff8 solid !important;
}
.sugar-cane--bl-89 {
  border-left: 89px #f8fff8 solid !important;
}
.sugar-cane--bb-89 {
  border-bottom: 89px #f8fff8 solid !important;
}
.sugar-cane--by-89 {
  border-top: 89px #f8fff8 solid !important;
  border-bottom: 89px #f8fff8 solid !important;
}
.sugar-cane--bx-89 {
  border-right: 89px #f8fff8 solid !important;
  border-left: 89px #f8fff8 solid !important;
}
.sugar-cane--ba-90 {
  border: 90px #f8fff8 solid !important;
}
.sugar-cane--bt-90 {
  border-top: 90px #f8fff8 solid !important;
}
.sugar-cane--br-90 {
  border-right: 90px #f8fff8 solid !important;
}
.sugar-cane--bl-90 {
  border-left: 90px #f8fff8 solid !important;
}
.sugar-cane--bb-90 {
  border-bottom: 90px #f8fff8 solid !important;
}
.sugar-cane--by-90 {
  border-top: 90px #f8fff8 solid !important;
  border-bottom: 90px #f8fff8 solid !important;
}
.sugar-cane--bx-90 {
  border-right: 90px #f8fff8 solid !important;
  border-left: 90px #f8fff8 solid !important;
}
.sugar-cane--ba-91 {
  border: 91px #f8fff8 solid !important;
}
.sugar-cane--bt-91 {
  border-top: 91px #f8fff8 solid !important;
}
.sugar-cane--br-91 {
  border-right: 91px #f8fff8 solid !important;
}
.sugar-cane--bl-91 {
  border-left: 91px #f8fff8 solid !important;
}
.sugar-cane--bb-91 {
  border-bottom: 91px #f8fff8 solid !important;
}
.sugar-cane--by-91 {
  border-top: 91px #f8fff8 solid !important;
  border-bottom: 91px #f8fff8 solid !important;
}
.sugar-cane--bx-91 {
  border-right: 91px #f8fff8 solid !important;
  border-left: 91px #f8fff8 solid !important;
}
.sugar-cane--ba-92 {
  border: 92px #f8fff8 solid !important;
}
.sugar-cane--bt-92 {
  border-top: 92px #f8fff8 solid !important;
}
.sugar-cane--br-92 {
  border-right: 92px #f8fff8 solid !important;
}
.sugar-cane--bl-92 {
  border-left: 92px #f8fff8 solid !important;
}
.sugar-cane--bb-92 {
  border-bottom: 92px #f8fff8 solid !important;
}
.sugar-cane--by-92 {
  border-top: 92px #f8fff8 solid !important;
  border-bottom: 92px #f8fff8 solid !important;
}
.sugar-cane--bx-92 {
  border-right: 92px #f8fff8 solid !important;
  border-left: 92px #f8fff8 solid !important;
}
.sugar-cane--ba-93 {
  border: 93px #f8fff8 solid !important;
}
.sugar-cane--bt-93 {
  border-top: 93px #f8fff8 solid !important;
}
.sugar-cane--br-93 {
  border-right: 93px #f8fff8 solid !important;
}
.sugar-cane--bl-93 {
  border-left: 93px #f8fff8 solid !important;
}
.sugar-cane--bb-93 {
  border-bottom: 93px #f8fff8 solid !important;
}
.sugar-cane--by-93 {
  border-top: 93px #f8fff8 solid !important;
  border-bottom: 93px #f8fff8 solid !important;
}
.sugar-cane--bx-93 {
  border-right: 93px #f8fff8 solid !important;
  border-left: 93px #f8fff8 solid !important;
}
.sugar-cane--ba-94 {
  border: 94px #f8fff8 solid !important;
}
.sugar-cane--bt-94 {
  border-top: 94px #f8fff8 solid !important;
}
.sugar-cane--br-94 {
  border-right: 94px #f8fff8 solid !important;
}
.sugar-cane--bl-94 {
  border-left: 94px #f8fff8 solid !important;
}
.sugar-cane--bb-94 {
  border-bottom: 94px #f8fff8 solid !important;
}
.sugar-cane--by-94 {
  border-top: 94px #f8fff8 solid !important;
  border-bottom: 94px #f8fff8 solid !important;
}
.sugar-cane--bx-94 {
  border-right: 94px #f8fff8 solid !important;
  border-left: 94px #f8fff8 solid !important;
}
.sugar-cane--ba-95 {
  border: 95px #f8fff8 solid !important;
}
.sugar-cane--bt-95 {
  border-top: 95px #f8fff8 solid !important;
}
.sugar-cane--br-95 {
  border-right: 95px #f8fff8 solid !important;
}
.sugar-cane--bl-95 {
  border-left: 95px #f8fff8 solid !important;
}
.sugar-cane--bb-95 {
  border-bottom: 95px #f8fff8 solid !important;
}
.sugar-cane--by-95 {
  border-top: 95px #f8fff8 solid !important;
  border-bottom: 95px #f8fff8 solid !important;
}
.sugar-cane--bx-95 {
  border-right: 95px #f8fff8 solid !important;
  border-left: 95px #f8fff8 solid !important;
}
.sugar-cane--ba-96 {
  border: 96px #f8fff8 solid !important;
}
.sugar-cane--bt-96 {
  border-top: 96px #f8fff8 solid !important;
}
.sugar-cane--br-96 {
  border-right: 96px #f8fff8 solid !important;
}
.sugar-cane--bl-96 {
  border-left: 96px #f8fff8 solid !important;
}
.sugar-cane--bb-96 {
  border-bottom: 96px #f8fff8 solid !important;
}
.sugar-cane--by-96 {
  border-top: 96px #f8fff8 solid !important;
  border-bottom: 96px #f8fff8 solid !important;
}
.sugar-cane--bx-96 {
  border-right: 96px #f8fff8 solid !important;
  border-left: 96px #f8fff8 solid !important;
}
.sugar-cane--ba-97 {
  border: 97px #f8fff8 solid !important;
}
.sugar-cane--bt-97 {
  border-top: 97px #f8fff8 solid !important;
}
.sugar-cane--br-97 {
  border-right: 97px #f8fff8 solid !important;
}
.sugar-cane--bl-97 {
  border-left: 97px #f8fff8 solid !important;
}
.sugar-cane--bb-97 {
  border-bottom: 97px #f8fff8 solid !important;
}
.sugar-cane--by-97 {
  border-top: 97px #f8fff8 solid !important;
  border-bottom: 97px #f8fff8 solid !important;
}
.sugar-cane--bx-97 {
  border-right: 97px #f8fff8 solid !important;
  border-left: 97px #f8fff8 solid !important;
}
.sugar-cane--ba-98 {
  border: 98px #f8fff8 solid !important;
}
.sugar-cane--bt-98 {
  border-top: 98px #f8fff8 solid !important;
}
.sugar-cane--br-98 {
  border-right: 98px #f8fff8 solid !important;
}
.sugar-cane--bl-98 {
  border-left: 98px #f8fff8 solid !important;
}
.sugar-cane--bb-98 {
  border-bottom: 98px #f8fff8 solid !important;
}
.sugar-cane--by-98 {
  border-top: 98px #f8fff8 solid !important;
  border-bottom: 98px #f8fff8 solid !important;
}
.sugar-cane--bx-98 {
  border-right: 98px #f8fff8 solid !important;
  border-left: 98px #f8fff8 solid !important;
}
.sugar-cane--ba-99 {
  border: 99px #f8fff8 solid !important;
}
.sugar-cane--bt-99 {
  border-top: 99px #f8fff8 solid !important;
}
.sugar-cane--br-99 {
  border-right: 99px #f8fff8 solid !important;
}
.sugar-cane--bl-99 {
  border-left: 99px #f8fff8 solid !important;
}
.sugar-cane--bb-99 {
  border-bottom: 99px #f8fff8 solid !important;
}
.sugar-cane--by-99 {
  border-top: 99px #f8fff8 solid !important;
  border-bottom: 99px #f8fff8 solid !important;
}
.sugar-cane--bx-99 {
  border-right: 99px #f8fff8 solid !important;
  border-left: 99px #f8fff8 solid !important;
}
.sugar-cane--ba-100 {
  border: 100px #f8fff8 solid !important;
}
.sugar-cane--bt-100 {
  border-top: 100px #f8fff8 solid !important;
}
.sugar-cane--br-100 {
  border-right: 100px #f8fff8 solid !important;
}
.sugar-cane--bl-100 {
  border-left: 100px #f8fff8 solid !important;
}
.sugar-cane--bb-100 {
  border-bottom: 100px #f8fff8 solid !important;
}
.sugar-cane--by-100 {
  border-top: 100px #f8fff8 solid !important;
  border-bottom: 100px #f8fff8 solid !important;
}
.sugar-cane--bx-100 {
  border-right: 100px #f8fff8 solid !important;
  border-left: 100px #f8fff8 solid !important;
}
.twilight-blue--ba-1 {
  border: 1px #f0feff solid !important;
}
.twilight-blue--bt-1 {
  border-top: 1px #f0feff solid !important;
}
.twilight-blue--br-1 {
  border-right: 1px #f0feff solid !important;
}
.twilight-blue--bl-1 {
  border-left: 1px #f0feff solid !important;
}
.twilight-blue--bb-1 {
  border-bottom: 1px #f0feff solid !important;
}
.twilight-blue--by-1 {
  border-top: 1px #f0feff solid !important;
  border-bottom: 1px #f0feff solid !important;
}
.twilight-blue--bx-1 {
  border-right: 1px #f0feff solid !important;
  border-left: 1px #f0feff solid !important;
}
.twilight-blue--ba-2 {
  border: 2px #f0feff solid !important;
}
.twilight-blue--bt-2 {
  border-top: 2px #f0feff solid !important;
}
.twilight-blue--br-2 {
  border-right: 2px #f0feff solid !important;
}
.twilight-blue--bl-2 {
  border-left: 2px #f0feff solid !important;
}
.twilight-blue--bb-2 {
  border-bottom: 2px #f0feff solid !important;
}
.twilight-blue--by-2 {
  border-top: 2px #f0feff solid !important;
  border-bottom: 2px #f0feff solid !important;
}
.twilight-blue--bx-2 {
  border-right: 2px #f0feff solid !important;
  border-left: 2px #f0feff solid !important;
}
.twilight-blue--ba-3 {
  border: 3px #f0feff solid !important;
}
.twilight-blue--bt-3 {
  border-top: 3px #f0feff solid !important;
}
.twilight-blue--br-3 {
  border-right: 3px #f0feff solid !important;
}
.twilight-blue--bl-3 {
  border-left: 3px #f0feff solid !important;
}
.twilight-blue--bb-3 {
  border-bottom: 3px #f0feff solid !important;
}
.twilight-blue--by-3 {
  border-top: 3px #f0feff solid !important;
  border-bottom: 3px #f0feff solid !important;
}
.twilight-blue--bx-3 {
  border-right: 3px #f0feff solid !important;
  border-left: 3px #f0feff solid !important;
}
.twilight-blue--ba-4 {
  border: 4px #f0feff solid !important;
}
.twilight-blue--bt-4 {
  border-top: 4px #f0feff solid !important;
}
.twilight-blue--br-4 {
  border-right: 4px #f0feff solid !important;
}
.twilight-blue--bl-4 {
  border-left: 4px #f0feff solid !important;
}
.twilight-blue--bb-4 {
  border-bottom: 4px #f0feff solid !important;
}
.twilight-blue--by-4 {
  border-top: 4px #f0feff solid !important;
  border-bottom: 4px #f0feff solid !important;
}
.twilight-blue--bx-4 {
  border-right: 4px #f0feff solid !important;
  border-left: 4px #f0feff solid !important;
}
.twilight-blue--ba-5 {
  border: 5px #f0feff solid !important;
}
.twilight-blue--bt-5 {
  border-top: 5px #f0feff solid !important;
}
.twilight-blue--br-5 {
  border-right: 5px #f0feff solid !important;
}
.twilight-blue--bl-5 {
  border-left: 5px #f0feff solid !important;
}
.twilight-blue--bb-5 {
  border-bottom: 5px #f0feff solid !important;
}
.twilight-blue--by-5 {
  border-top: 5px #f0feff solid !important;
  border-bottom: 5px #f0feff solid !important;
}
.twilight-blue--bx-5 {
  border-right: 5px #f0feff solid !important;
  border-left: 5px #f0feff solid !important;
}
.twilight-blue--ba-6 {
  border: 6px #f0feff solid !important;
}
.twilight-blue--bt-6 {
  border-top: 6px #f0feff solid !important;
}
.twilight-blue--br-6 {
  border-right: 6px #f0feff solid !important;
}
.twilight-blue--bl-6 {
  border-left: 6px #f0feff solid !important;
}
.twilight-blue--bb-6 {
  border-bottom: 6px #f0feff solid !important;
}
.twilight-blue--by-6 {
  border-top: 6px #f0feff solid !important;
  border-bottom: 6px #f0feff solid !important;
}
.twilight-blue--bx-6 {
  border-right: 6px #f0feff solid !important;
  border-left: 6px #f0feff solid !important;
}
.twilight-blue--ba-7 {
  border: 7px #f0feff solid !important;
}
.twilight-blue--bt-7 {
  border-top: 7px #f0feff solid !important;
}
.twilight-blue--br-7 {
  border-right: 7px #f0feff solid !important;
}
.twilight-blue--bl-7 {
  border-left: 7px #f0feff solid !important;
}
.twilight-blue--bb-7 {
  border-bottom: 7px #f0feff solid !important;
}
.twilight-blue--by-7 {
  border-top: 7px #f0feff solid !important;
  border-bottom: 7px #f0feff solid !important;
}
.twilight-blue--bx-7 {
  border-right: 7px #f0feff solid !important;
  border-left: 7px #f0feff solid !important;
}
.twilight-blue--ba-8 {
  border: 8px #f0feff solid !important;
}
.twilight-blue--bt-8 {
  border-top: 8px #f0feff solid !important;
}
.twilight-blue--br-8 {
  border-right: 8px #f0feff solid !important;
}
.twilight-blue--bl-8 {
  border-left: 8px #f0feff solid !important;
}
.twilight-blue--bb-8 {
  border-bottom: 8px #f0feff solid !important;
}
.twilight-blue--by-8 {
  border-top: 8px #f0feff solid !important;
  border-bottom: 8px #f0feff solid !important;
}
.twilight-blue--bx-8 {
  border-right: 8px #f0feff solid !important;
  border-left: 8px #f0feff solid !important;
}
.twilight-blue--ba-9 {
  border: 9px #f0feff solid !important;
}
.twilight-blue--bt-9 {
  border-top: 9px #f0feff solid !important;
}
.twilight-blue--br-9 {
  border-right: 9px #f0feff solid !important;
}
.twilight-blue--bl-9 {
  border-left: 9px #f0feff solid !important;
}
.twilight-blue--bb-9 {
  border-bottom: 9px #f0feff solid !important;
}
.twilight-blue--by-9 {
  border-top: 9px #f0feff solid !important;
  border-bottom: 9px #f0feff solid !important;
}
.twilight-blue--bx-9 {
  border-right: 9px #f0feff solid !important;
  border-left: 9px #f0feff solid !important;
}
.twilight-blue--ba-10 {
  border: 10px #f0feff solid !important;
}
.twilight-blue--bt-10 {
  border-top: 10px #f0feff solid !important;
}
.twilight-blue--br-10 {
  border-right: 10px #f0feff solid !important;
}
.twilight-blue--bl-10 {
  border-left: 10px #f0feff solid !important;
}
.twilight-blue--bb-10 {
  border-bottom: 10px #f0feff solid !important;
}
.twilight-blue--by-10 {
  border-top: 10px #f0feff solid !important;
  border-bottom: 10px #f0feff solid !important;
}
.twilight-blue--bx-10 {
  border-right: 10px #f0feff solid !important;
  border-left: 10px #f0feff solid !important;
}
.twilight-blue--ba-11 {
  border: 11px #f0feff solid !important;
}
.twilight-blue--bt-11 {
  border-top: 11px #f0feff solid !important;
}
.twilight-blue--br-11 {
  border-right: 11px #f0feff solid !important;
}
.twilight-blue--bl-11 {
  border-left: 11px #f0feff solid !important;
}
.twilight-blue--bb-11 {
  border-bottom: 11px #f0feff solid !important;
}
.twilight-blue--by-11 {
  border-top: 11px #f0feff solid !important;
  border-bottom: 11px #f0feff solid !important;
}
.twilight-blue--bx-11 {
  border-right: 11px #f0feff solid !important;
  border-left: 11px #f0feff solid !important;
}
.twilight-blue--ba-12 {
  border: 12px #f0feff solid !important;
}
.twilight-blue--bt-12 {
  border-top: 12px #f0feff solid !important;
}
.twilight-blue--br-12 {
  border-right: 12px #f0feff solid !important;
}
.twilight-blue--bl-12 {
  border-left: 12px #f0feff solid !important;
}
.twilight-blue--bb-12 {
  border-bottom: 12px #f0feff solid !important;
}
.twilight-blue--by-12 {
  border-top: 12px #f0feff solid !important;
  border-bottom: 12px #f0feff solid !important;
}
.twilight-blue--bx-12 {
  border-right: 12px #f0feff solid !important;
  border-left: 12px #f0feff solid !important;
}
.twilight-blue--ba-13 {
  border: 13px #f0feff solid !important;
}
.twilight-blue--bt-13 {
  border-top: 13px #f0feff solid !important;
}
.twilight-blue--br-13 {
  border-right: 13px #f0feff solid !important;
}
.twilight-blue--bl-13 {
  border-left: 13px #f0feff solid !important;
}
.twilight-blue--bb-13 {
  border-bottom: 13px #f0feff solid !important;
}
.twilight-blue--by-13 {
  border-top: 13px #f0feff solid !important;
  border-bottom: 13px #f0feff solid !important;
}
.twilight-blue--bx-13 {
  border-right: 13px #f0feff solid !important;
  border-left: 13px #f0feff solid !important;
}
.twilight-blue--ba-14 {
  border: 14px #f0feff solid !important;
}
.twilight-blue--bt-14 {
  border-top: 14px #f0feff solid !important;
}
.twilight-blue--br-14 {
  border-right: 14px #f0feff solid !important;
}
.twilight-blue--bl-14 {
  border-left: 14px #f0feff solid !important;
}
.twilight-blue--bb-14 {
  border-bottom: 14px #f0feff solid !important;
}
.twilight-blue--by-14 {
  border-top: 14px #f0feff solid !important;
  border-bottom: 14px #f0feff solid !important;
}
.twilight-blue--bx-14 {
  border-right: 14px #f0feff solid !important;
  border-left: 14px #f0feff solid !important;
}
.twilight-blue--ba-15 {
  border: 15px #f0feff solid !important;
}
.twilight-blue--bt-15 {
  border-top: 15px #f0feff solid !important;
}
.twilight-blue--br-15 {
  border-right: 15px #f0feff solid !important;
}
.twilight-blue--bl-15 {
  border-left: 15px #f0feff solid !important;
}
.twilight-blue--bb-15 {
  border-bottom: 15px #f0feff solid !important;
}
.twilight-blue--by-15 {
  border-top: 15px #f0feff solid !important;
  border-bottom: 15px #f0feff solid !important;
}
.twilight-blue--bx-15 {
  border-right: 15px #f0feff solid !important;
  border-left: 15px #f0feff solid !important;
}
.twilight-blue--ba-16 {
  border: 16px #f0feff solid !important;
}
.twilight-blue--bt-16 {
  border-top: 16px #f0feff solid !important;
}
.twilight-blue--br-16 {
  border-right: 16px #f0feff solid !important;
}
.twilight-blue--bl-16 {
  border-left: 16px #f0feff solid !important;
}
.twilight-blue--bb-16 {
  border-bottom: 16px #f0feff solid !important;
}
.twilight-blue--by-16 {
  border-top: 16px #f0feff solid !important;
  border-bottom: 16px #f0feff solid !important;
}
.twilight-blue--bx-16 {
  border-right: 16px #f0feff solid !important;
  border-left: 16px #f0feff solid !important;
}
.twilight-blue--ba-17 {
  border: 17px #f0feff solid !important;
}
.twilight-blue--bt-17 {
  border-top: 17px #f0feff solid !important;
}
.twilight-blue--br-17 {
  border-right: 17px #f0feff solid !important;
}
.twilight-blue--bl-17 {
  border-left: 17px #f0feff solid !important;
}
.twilight-blue--bb-17 {
  border-bottom: 17px #f0feff solid !important;
}
.twilight-blue--by-17 {
  border-top: 17px #f0feff solid !important;
  border-bottom: 17px #f0feff solid !important;
}
.twilight-blue--bx-17 {
  border-right: 17px #f0feff solid !important;
  border-left: 17px #f0feff solid !important;
}
.twilight-blue--ba-18 {
  border: 18px #f0feff solid !important;
}
.twilight-blue--bt-18 {
  border-top: 18px #f0feff solid !important;
}
.twilight-blue--br-18 {
  border-right: 18px #f0feff solid !important;
}
.twilight-blue--bl-18 {
  border-left: 18px #f0feff solid !important;
}
.twilight-blue--bb-18 {
  border-bottom: 18px #f0feff solid !important;
}
.twilight-blue--by-18 {
  border-top: 18px #f0feff solid !important;
  border-bottom: 18px #f0feff solid !important;
}
.twilight-blue--bx-18 {
  border-right: 18px #f0feff solid !important;
  border-left: 18px #f0feff solid !important;
}
.twilight-blue--ba-19 {
  border: 19px #f0feff solid !important;
}
.twilight-blue--bt-19 {
  border-top: 19px #f0feff solid !important;
}
.twilight-blue--br-19 {
  border-right: 19px #f0feff solid !important;
}
.twilight-blue--bl-19 {
  border-left: 19px #f0feff solid !important;
}
.twilight-blue--bb-19 {
  border-bottom: 19px #f0feff solid !important;
}
.twilight-blue--by-19 {
  border-top: 19px #f0feff solid !important;
  border-bottom: 19px #f0feff solid !important;
}
.twilight-blue--bx-19 {
  border-right: 19px #f0feff solid !important;
  border-left: 19px #f0feff solid !important;
}
.twilight-blue--ba-20 {
  border: 20px #f0feff solid !important;
}
.twilight-blue--bt-20 {
  border-top: 20px #f0feff solid !important;
}
.twilight-blue--br-20 {
  border-right: 20px #f0feff solid !important;
}
.twilight-blue--bl-20 {
  border-left: 20px #f0feff solid !important;
}
.twilight-blue--bb-20 {
  border-bottom: 20px #f0feff solid !important;
}
.twilight-blue--by-20 {
  border-top: 20px #f0feff solid !important;
  border-bottom: 20px #f0feff solid !important;
}
.twilight-blue--bx-20 {
  border-right: 20px #f0feff solid !important;
  border-left: 20px #f0feff solid !important;
}
.twilight-blue--ba-21 {
  border: 21px #f0feff solid !important;
}
.twilight-blue--bt-21 {
  border-top: 21px #f0feff solid !important;
}
.twilight-blue--br-21 {
  border-right: 21px #f0feff solid !important;
}
.twilight-blue--bl-21 {
  border-left: 21px #f0feff solid !important;
}
.twilight-blue--bb-21 {
  border-bottom: 21px #f0feff solid !important;
}
.twilight-blue--by-21 {
  border-top: 21px #f0feff solid !important;
  border-bottom: 21px #f0feff solid !important;
}
.twilight-blue--bx-21 {
  border-right: 21px #f0feff solid !important;
  border-left: 21px #f0feff solid !important;
}
.twilight-blue--ba-22 {
  border: 22px #f0feff solid !important;
}
.twilight-blue--bt-22 {
  border-top: 22px #f0feff solid !important;
}
.twilight-blue--br-22 {
  border-right: 22px #f0feff solid !important;
}
.twilight-blue--bl-22 {
  border-left: 22px #f0feff solid !important;
}
.twilight-blue--bb-22 {
  border-bottom: 22px #f0feff solid !important;
}
.twilight-blue--by-22 {
  border-top: 22px #f0feff solid !important;
  border-bottom: 22px #f0feff solid !important;
}
.twilight-blue--bx-22 {
  border-right: 22px #f0feff solid !important;
  border-left: 22px #f0feff solid !important;
}
.twilight-blue--ba-23 {
  border: 23px #f0feff solid !important;
}
.twilight-blue--bt-23 {
  border-top: 23px #f0feff solid !important;
}
.twilight-blue--br-23 {
  border-right: 23px #f0feff solid !important;
}
.twilight-blue--bl-23 {
  border-left: 23px #f0feff solid !important;
}
.twilight-blue--bb-23 {
  border-bottom: 23px #f0feff solid !important;
}
.twilight-blue--by-23 {
  border-top: 23px #f0feff solid !important;
  border-bottom: 23px #f0feff solid !important;
}
.twilight-blue--bx-23 {
  border-right: 23px #f0feff solid !important;
  border-left: 23px #f0feff solid !important;
}
.twilight-blue--ba-24 {
  border: 24px #f0feff solid !important;
}
.twilight-blue--bt-24 {
  border-top: 24px #f0feff solid !important;
}
.twilight-blue--br-24 {
  border-right: 24px #f0feff solid !important;
}
.twilight-blue--bl-24 {
  border-left: 24px #f0feff solid !important;
}
.twilight-blue--bb-24 {
  border-bottom: 24px #f0feff solid !important;
}
.twilight-blue--by-24 {
  border-top: 24px #f0feff solid !important;
  border-bottom: 24px #f0feff solid !important;
}
.twilight-blue--bx-24 {
  border-right: 24px #f0feff solid !important;
  border-left: 24px #f0feff solid !important;
}
.twilight-blue--ba-25 {
  border: 25px #f0feff solid !important;
}
.twilight-blue--bt-25 {
  border-top: 25px #f0feff solid !important;
}
.twilight-blue--br-25 {
  border-right: 25px #f0feff solid !important;
}
.twilight-blue--bl-25 {
  border-left: 25px #f0feff solid !important;
}
.twilight-blue--bb-25 {
  border-bottom: 25px #f0feff solid !important;
}
.twilight-blue--by-25 {
  border-top: 25px #f0feff solid !important;
  border-bottom: 25px #f0feff solid !important;
}
.twilight-blue--bx-25 {
  border-right: 25px #f0feff solid !important;
  border-left: 25px #f0feff solid !important;
}
.twilight-blue--ba-26 {
  border: 26px #f0feff solid !important;
}
.twilight-blue--bt-26 {
  border-top: 26px #f0feff solid !important;
}
.twilight-blue--br-26 {
  border-right: 26px #f0feff solid !important;
}
.twilight-blue--bl-26 {
  border-left: 26px #f0feff solid !important;
}
.twilight-blue--bb-26 {
  border-bottom: 26px #f0feff solid !important;
}
.twilight-blue--by-26 {
  border-top: 26px #f0feff solid !important;
  border-bottom: 26px #f0feff solid !important;
}
.twilight-blue--bx-26 {
  border-right: 26px #f0feff solid !important;
  border-left: 26px #f0feff solid !important;
}
.twilight-blue--ba-27 {
  border: 27px #f0feff solid !important;
}
.twilight-blue--bt-27 {
  border-top: 27px #f0feff solid !important;
}
.twilight-blue--br-27 {
  border-right: 27px #f0feff solid !important;
}
.twilight-blue--bl-27 {
  border-left: 27px #f0feff solid !important;
}
.twilight-blue--bb-27 {
  border-bottom: 27px #f0feff solid !important;
}
.twilight-blue--by-27 {
  border-top: 27px #f0feff solid !important;
  border-bottom: 27px #f0feff solid !important;
}
.twilight-blue--bx-27 {
  border-right: 27px #f0feff solid !important;
  border-left: 27px #f0feff solid !important;
}
.twilight-blue--ba-28 {
  border: 28px #f0feff solid !important;
}
.twilight-blue--bt-28 {
  border-top: 28px #f0feff solid !important;
}
.twilight-blue--br-28 {
  border-right: 28px #f0feff solid !important;
}
.twilight-blue--bl-28 {
  border-left: 28px #f0feff solid !important;
}
.twilight-blue--bb-28 {
  border-bottom: 28px #f0feff solid !important;
}
.twilight-blue--by-28 {
  border-top: 28px #f0feff solid !important;
  border-bottom: 28px #f0feff solid !important;
}
.twilight-blue--bx-28 {
  border-right: 28px #f0feff solid !important;
  border-left: 28px #f0feff solid !important;
}
.twilight-blue--ba-29 {
  border: 29px #f0feff solid !important;
}
.twilight-blue--bt-29 {
  border-top: 29px #f0feff solid !important;
}
.twilight-blue--br-29 {
  border-right: 29px #f0feff solid !important;
}
.twilight-blue--bl-29 {
  border-left: 29px #f0feff solid !important;
}
.twilight-blue--bb-29 {
  border-bottom: 29px #f0feff solid !important;
}
.twilight-blue--by-29 {
  border-top: 29px #f0feff solid !important;
  border-bottom: 29px #f0feff solid !important;
}
.twilight-blue--bx-29 {
  border-right: 29px #f0feff solid !important;
  border-left: 29px #f0feff solid !important;
}
.twilight-blue--ba-30 {
  border: 30px #f0feff solid !important;
}
.twilight-blue--bt-30 {
  border-top: 30px #f0feff solid !important;
}
.twilight-blue--br-30 {
  border-right: 30px #f0feff solid !important;
}
.twilight-blue--bl-30 {
  border-left: 30px #f0feff solid !important;
}
.twilight-blue--bb-30 {
  border-bottom: 30px #f0feff solid !important;
}
.twilight-blue--by-30 {
  border-top: 30px #f0feff solid !important;
  border-bottom: 30px #f0feff solid !important;
}
.twilight-blue--bx-30 {
  border-right: 30px #f0feff solid !important;
  border-left: 30px #f0feff solid !important;
}
.twilight-blue--ba-31 {
  border: 31px #f0feff solid !important;
}
.twilight-blue--bt-31 {
  border-top: 31px #f0feff solid !important;
}
.twilight-blue--br-31 {
  border-right: 31px #f0feff solid !important;
}
.twilight-blue--bl-31 {
  border-left: 31px #f0feff solid !important;
}
.twilight-blue--bb-31 {
  border-bottom: 31px #f0feff solid !important;
}
.twilight-blue--by-31 {
  border-top: 31px #f0feff solid !important;
  border-bottom: 31px #f0feff solid !important;
}
.twilight-blue--bx-31 {
  border-right: 31px #f0feff solid !important;
  border-left: 31px #f0feff solid !important;
}
.twilight-blue--ba-32 {
  border: 32px #f0feff solid !important;
}
.twilight-blue--bt-32 {
  border-top: 32px #f0feff solid !important;
}
.twilight-blue--br-32 {
  border-right: 32px #f0feff solid !important;
}
.twilight-blue--bl-32 {
  border-left: 32px #f0feff solid !important;
}
.twilight-blue--bb-32 {
  border-bottom: 32px #f0feff solid !important;
}
.twilight-blue--by-32 {
  border-top: 32px #f0feff solid !important;
  border-bottom: 32px #f0feff solid !important;
}
.twilight-blue--bx-32 {
  border-right: 32px #f0feff solid !important;
  border-left: 32px #f0feff solid !important;
}
.twilight-blue--ba-33 {
  border: 33px #f0feff solid !important;
}
.twilight-blue--bt-33 {
  border-top: 33px #f0feff solid !important;
}
.twilight-blue--br-33 {
  border-right: 33px #f0feff solid !important;
}
.twilight-blue--bl-33 {
  border-left: 33px #f0feff solid !important;
}
.twilight-blue--bb-33 {
  border-bottom: 33px #f0feff solid !important;
}
.twilight-blue--by-33 {
  border-top: 33px #f0feff solid !important;
  border-bottom: 33px #f0feff solid !important;
}
.twilight-blue--bx-33 {
  border-right: 33px #f0feff solid !important;
  border-left: 33px #f0feff solid !important;
}
.twilight-blue--ba-34 {
  border: 34px #f0feff solid !important;
}
.twilight-blue--bt-34 {
  border-top: 34px #f0feff solid !important;
}
.twilight-blue--br-34 {
  border-right: 34px #f0feff solid !important;
}
.twilight-blue--bl-34 {
  border-left: 34px #f0feff solid !important;
}
.twilight-blue--bb-34 {
  border-bottom: 34px #f0feff solid !important;
}
.twilight-blue--by-34 {
  border-top: 34px #f0feff solid !important;
  border-bottom: 34px #f0feff solid !important;
}
.twilight-blue--bx-34 {
  border-right: 34px #f0feff solid !important;
  border-left: 34px #f0feff solid !important;
}
.twilight-blue--ba-35 {
  border: 35px #f0feff solid !important;
}
.twilight-blue--bt-35 {
  border-top: 35px #f0feff solid !important;
}
.twilight-blue--br-35 {
  border-right: 35px #f0feff solid !important;
}
.twilight-blue--bl-35 {
  border-left: 35px #f0feff solid !important;
}
.twilight-blue--bb-35 {
  border-bottom: 35px #f0feff solid !important;
}
.twilight-blue--by-35 {
  border-top: 35px #f0feff solid !important;
  border-bottom: 35px #f0feff solid !important;
}
.twilight-blue--bx-35 {
  border-right: 35px #f0feff solid !important;
  border-left: 35px #f0feff solid !important;
}
.twilight-blue--ba-36 {
  border: 36px #f0feff solid !important;
}
.twilight-blue--bt-36 {
  border-top: 36px #f0feff solid !important;
}
.twilight-blue--br-36 {
  border-right: 36px #f0feff solid !important;
}
.twilight-blue--bl-36 {
  border-left: 36px #f0feff solid !important;
}
.twilight-blue--bb-36 {
  border-bottom: 36px #f0feff solid !important;
}
.twilight-blue--by-36 {
  border-top: 36px #f0feff solid !important;
  border-bottom: 36px #f0feff solid !important;
}
.twilight-blue--bx-36 {
  border-right: 36px #f0feff solid !important;
  border-left: 36px #f0feff solid !important;
}
.twilight-blue--ba-37 {
  border: 37px #f0feff solid !important;
}
.twilight-blue--bt-37 {
  border-top: 37px #f0feff solid !important;
}
.twilight-blue--br-37 {
  border-right: 37px #f0feff solid !important;
}
.twilight-blue--bl-37 {
  border-left: 37px #f0feff solid !important;
}
.twilight-blue--bb-37 {
  border-bottom: 37px #f0feff solid !important;
}
.twilight-blue--by-37 {
  border-top: 37px #f0feff solid !important;
  border-bottom: 37px #f0feff solid !important;
}
.twilight-blue--bx-37 {
  border-right: 37px #f0feff solid !important;
  border-left: 37px #f0feff solid !important;
}
.twilight-blue--ba-38 {
  border: 38px #f0feff solid !important;
}
.twilight-blue--bt-38 {
  border-top: 38px #f0feff solid !important;
}
.twilight-blue--br-38 {
  border-right: 38px #f0feff solid !important;
}
.twilight-blue--bl-38 {
  border-left: 38px #f0feff solid !important;
}
.twilight-blue--bb-38 {
  border-bottom: 38px #f0feff solid !important;
}
.twilight-blue--by-38 {
  border-top: 38px #f0feff solid !important;
  border-bottom: 38px #f0feff solid !important;
}
.twilight-blue--bx-38 {
  border-right: 38px #f0feff solid !important;
  border-left: 38px #f0feff solid !important;
}
.twilight-blue--ba-39 {
  border: 39px #f0feff solid !important;
}
.twilight-blue--bt-39 {
  border-top: 39px #f0feff solid !important;
}
.twilight-blue--br-39 {
  border-right: 39px #f0feff solid !important;
}
.twilight-blue--bl-39 {
  border-left: 39px #f0feff solid !important;
}
.twilight-blue--bb-39 {
  border-bottom: 39px #f0feff solid !important;
}
.twilight-blue--by-39 {
  border-top: 39px #f0feff solid !important;
  border-bottom: 39px #f0feff solid !important;
}
.twilight-blue--bx-39 {
  border-right: 39px #f0feff solid !important;
  border-left: 39px #f0feff solid !important;
}
.twilight-blue--ba-40 {
  border: 40px #f0feff solid !important;
}
.twilight-blue--bt-40 {
  border-top: 40px #f0feff solid !important;
}
.twilight-blue--br-40 {
  border-right: 40px #f0feff solid !important;
}
.twilight-blue--bl-40 {
  border-left: 40px #f0feff solid !important;
}
.twilight-blue--bb-40 {
  border-bottom: 40px #f0feff solid !important;
}
.twilight-blue--by-40 {
  border-top: 40px #f0feff solid !important;
  border-bottom: 40px #f0feff solid !important;
}
.twilight-blue--bx-40 {
  border-right: 40px #f0feff solid !important;
  border-left: 40px #f0feff solid !important;
}
.twilight-blue--ba-41 {
  border: 41px #f0feff solid !important;
}
.twilight-blue--bt-41 {
  border-top: 41px #f0feff solid !important;
}
.twilight-blue--br-41 {
  border-right: 41px #f0feff solid !important;
}
.twilight-blue--bl-41 {
  border-left: 41px #f0feff solid !important;
}
.twilight-blue--bb-41 {
  border-bottom: 41px #f0feff solid !important;
}
.twilight-blue--by-41 {
  border-top: 41px #f0feff solid !important;
  border-bottom: 41px #f0feff solid !important;
}
.twilight-blue--bx-41 {
  border-right: 41px #f0feff solid !important;
  border-left: 41px #f0feff solid !important;
}
.twilight-blue--ba-42 {
  border: 42px #f0feff solid !important;
}
.twilight-blue--bt-42 {
  border-top: 42px #f0feff solid !important;
}
.twilight-blue--br-42 {
  border-right: 42px #f0feff solid !important;
}
.twilight-blue--bl-42 {
  border-left: 42px #f0feff solid !important;
}
.twilight-blue--bb-42 {
  border-bottom: 42px #f0feff solid !important;
}
.twilight-blue--by-42 {
  border-top: 42px #f0feff solid !important;
  border-bottom: 42px #f0feff solid !important;
}
.twilight-blue--bx-42 {
  border-right: 42px #f0feff solid !important;
  border-left: 42px #f0feff solid !important;
}
.twilight-blue--ba-43 {
  border: 43px #f0feff solid !important;
}
.twilight-blue--bt-43 {
  border-top: 43px #f0feff solid !important;
}
.twilight-blue--br-43 {
  border-right: 43px #f0feff solid !important;
}
.twilight-blue--bl-43 {
  border-left: 43px #f0feff solid !important;
}
.twilight-blue--bb-43 {
  border-bottom: 43px #f0feff solid !important;
}
.twilight-blue--by-43 {
  border-top: 43px #f0feff solid !important;
  border-bottom: 43px #f0feff solid !important;
}
.twilight-blue--bx-43 {
  border-right: 43px #f0feff solid !important;
  border-left: 43px #f0feff solid !important;
}
.twilight-blue--ba-44 {
  border: 44px #f0feff solid !important;
}
.twilight-blue--bt-44 {
  border-top: 44px #f0feff solid !important;
}
.twilight-blue--br-44 {
  border-right: 44px #f0feff solid !important;
}
.twilight-blue--bl-44 {
  border-left: 44px #f0feff solid !important;
}
.twilight-blue--bb-44 {
  border-bottom: 44px #f0feff solid !important;
}
.twilight-blue--by-44 {
  border-top: 44px #f0feff solid !important;
  border-bottom: 44px #f0feff solid !important;
}
.twilight-blue--bx-44 {
  border-right: 44px #f0feff solid !important;
  border-left: 44px #f0feff solid !important;
}
.twilight-blue--ba-45 {
  border: 45px #f0feff solid !important;
}
.twilight-blue--bt-45 {
  border-top: 45px #f0feff solid !important;
}
.twilight-blue--br-45 {
  border-right: 45px #f0feff solid !important;
}
.twilight-blue--bl-45 {
  border-left: 45px #f0feff solid !important;
}
.twilight-blue--bb-45 {
  border-bottom: 45px #f0feff solid !important;
}
.twilight-blue--by-45 {
  border-top: 45px #f0feff solid !important;
  border-bottom: 45px #f0feff solid !important;
}
.twilight-blue--bx-45 {
  border-right: 45px #f0feff solid !important;
  border-left: 45px #f0feff solid !important;
}
.twilight-blue--ba-46 {
  border: 46px #f0feff solid !important;
}
.twilight-blue--bt-46 {
  border-top: 46px #f0feff solid !important;
}
.twilight-blue--br-46 {
  border-right: 46px #f0feff solid !important;
}
.twilight-blue--bl-46 {
  border-left: 46px #f0feff solid !important;
}
.twilight-blue--bb-46 {
  border-bottom: 46px #f0feff solid !important;
}
.twilight-blue--by-46 {
  border-top: 46px #f0feff solid !important;
  border-bottom: 46px #f0feff solid !important;
}
.twilight-blue--bx-46 {
  border-right: 46px #f0feff solid !important;
  border-left: 46px #f0feff solid !important;
}
.twilight-blue--ba-47 {
  border: 47px #f0feff solid !important;
}
.twilight-blue--bt-47 {
  border-top: 47px #f0feff solid !important;
}
.twilight-blue--br-47 {
  border-right: 47px #f0feff solid !important;
}
.twilight-blue--bl-47 {
  border-left: 47px #f0feff solid !important;
}
.twilight-blue--bb-47 {
  border-bottom: 47px #f0feff solid !important;
}
.twilight-blue--by-47 {
  border-top: 47px #f0feff solid !important;
  border-bottom: 47px #f0feff solid !important;
}
.twilight-blue--bx-47 {
  border-right: 47px #f0feff solid !important;
  border-left: 47px #f0feff solid !important;
}
.twilight-blue--ba-48 {
  border: 48px #f0feff solid !important;
}
.twilight-blue--bt-48 {
  border-top: 48px #f0feff solid !important;
}
.twilight-blue--br-48 {
  border-right: 48px #f0feff solid !important;
}
.twilight-blue--bl-48 {
  border-left: 48px #f0feff solid !important;
}
.twilight-blue--bb-48 {
  border-bottom: 48px #f0feff solid !important;
}
.twilight-blue--by-48 {
  border-top: 48px #f0feff solid !important;
  border-bottom: 48px #f0feff solid !important;
}
.twilight-blue--bx-48 {
  border-right: 48px #f0feff solid !important;
  border-left: 48px #f0feff solid !important;
}
.twilight-blue--ba-49 {
  border: 49px #f0feff solid !important;
}
.twilight-blue--bt-49 {
  border-top: 49px #f0feff solid !important;
}
.twilight-blue--br-49 {
  border-right: 49px #f0feff solid !important;
}
.twilight-blue--bl-49 {
  border-left: 49px #f0feff solid !important;
}
.twilight-blue--bb-49 {
  border-bottom: 49px #f0feff solid !important;
}
.twilight-blue--by-49 {
  border-top: 49px #f0feff solid !important;
  border-bottom: 49px #f0feff solid !important;
}
.twilight-blue--bx-49 {
  border-right: 49px #f0feff solid !important;
  border-left: 49px #f0feff solid !important;
}
.twilight-blue--ba-50 {
  border: 50px #f0feff solid !important;
}
.twilight-blue--bt-50 {
  border-top: 50px #f0feff solid !important;
}
.twilight-blue--br-50 {
  border-right: 50px #f0feff solid !important;
}
.twilight-blue--bl-50 {
  border-left: 50px #f0feff solid !important;
}
.twilight-blue--bb-50 {
  border-bottom: 50px #f0feff solid !important;
}
.twilight-blue--by-50 {
  border-top: 50px #f0feff solid !important;
  border-bottom: 50px #f0feff solid !important;
}
.twilight-blue--bx-50 {
  border-right: 50px #f0feff solid !important;
  border-left: 50px #f0feff solid !important;
}
.twilight-blue--ba-51 {
  border: 51px #f0feff solid !important;
}
.twilight-blue--bt-51 {
  border-top: 51px #f0feff solid !important;
}
.twilight-blue--br-51 {
  border-right: 51px #f0feff solid !important;
}
.twilight-blue--bl-51 {
  border-left: 51px #f0feff solid !important;
}
.twilight-blue--bb-51 {
  border-bottom: 51px #f0feff solid !important;
}
.twilight-blue--by-51 {
  border-top: 51px #f0feff solid !important;
  border-bottom: 51px #f0feff solid !important;
}
.twilight-blue--bx-51 {
  border-right: 51px #f0feff solid !important;
  border-left: 51px #f0feff solid !important;
}
.twilight-blue--ba-52 {
  border: 52px #f0feff solid !important;
}
.twilight-blue--bt-52 {
  border-top: 52px #f0feff solid !important;
}
.twilight-blue--br-52 {
  border-right: 52px #f0feff solid !important;
}
.twilight-blue--bl-52 {
  border-left: 52px #f0feff solid !important;
}
.twilight-blue--bb-52 {
  border-bottom: 52px #f0feff solid !important;
}
.twilight-blue--by-52 {
  border-top: 52px #f0feff solid !important;
  border-bottom: 52px #f0feff solid !important;
}
.twilight-blue--bx-52 {
  border-right: 52px #f0feff solid !important;
  border-left: 52px #f0feff solid !important;
}
.twilight-blue--ba-53 {
  border: 53px #f0feff solid !important;
}
.twilight-blue--bt-53 {
  border-top: 53px #f0feff solid !important;
}
.twilight-blue--br-53 {
  border-right: 53px #f0feff solid !important;
}
.twilight-blue--bl-53 {
  border-left: 53px #f0feff solid !important;
}
.twilight-blue--bb-53 {
  border-bottom: 53px #f0feff solid !important;
}
.twilight-blue--by-53 {
  border-top: 53px #f0feff solid !important;
  border-bottom: 53px #f0feff solid !important;
}
.twilight-blue--bx-53 {
  border-right: 53px #f0feff solid !important;
  border-left: 53px #f0feff solid !important;
}
.twilight-blue--ba-54 {
  border: 54px #f0feff solid !important;
}
.twilight-blue--bt-54 {
  border-top: 54px #f0feff solid !important;
}
.twilight-blue--br-54 {
  border-right: 54px #f0feff solid !important;
}
.twilight-blue--bl-54 {
  border-left: 54px #f0feff solid !important;
}
.twilight-blue--bb-54 {
  border-bottom: 54px #f0feff solid !important;
}
.twilight-blue--by-54 {
  border-top: 54px #f0feff solid !important;
  border-bottom: 54px #f0feff solid !important;
}
.twilight-blue--bx-54 {
  border-right: 54px #f0feff solid !important;
  border-left: 54px #f0feff solid !important;
}
.twilight-blue--ba-55 {
  border: 55px #f0feff solid !important;
}
.twilight-blue--bt-55 {
  border-top: 55px #f0feff solid !important;
}
.twilight-blue--br-55 {
  border-right: 55px #f0feff solid !important;
}
.twilight-blue--bl-55 {
  border-left: 55px #f0feff solid !important;
}
.twilight-blue--bb-55 {
  border-bottom: 55px #f0feff solid !important;
}
.twilight-blue--by-55 {
  border-top: 55px #f0feff solid !important;
  border-bottom: 55px #f0feff solid !important;
}
.twilight-blue--bx-55 {
  border-right: 55px #f0feff solid !important;
  border-left: 55px #f0feff solid !important;
}
.twilight-blue--ba-56 {
  border: 56px #f0feff solid !important;
}
.twilight-blue--bt-56 {
  border-top: 56px #f0feff solid !important;
}
.twilight-blue--br-56 {
  border-right: 56px #f0feff solid !important;
}
.twilight-blue--bl-56 {
  border-left: 56px #f0feff solid !important;
}
.twilight-blue--bb-56 {
  border-bottom: 56px #f0feff solid !important;
}
.twilight-blue--by-56 {
  border-top: 56px #f0feff solid !important;
  border-bottom: 56px #f0feff solid !important;
}
.twilight-blue--bx-56 {
  border-right: 56px #f0feff solid !important;
  border-left: 56px #f0feff solid !important;
}
.twilight-blue--ba-57 {
  border: 57px #f0feff solid !important;
}
.twilight-blue--bt-57 {
  border-top: 57px #f0feff solid !important;
}
.twilight-blue--br-57 {
  border-right: 57px #f0feff solid !important;
}
.twilight-blue--bl-57 {
  border-left: 57px #f0feff solid !important;
}
.twilight-blue--bb-57 {
  border-bottom: 57px #f0feff solid !important;
}
.twilight-blue--by-57 {
  border-top: 57px #f0feff solid !important;
  border-bottom: 57px #f0feff solid !important;
}
.twilight-blue--bx-57 {
  border-right: 57px #f0feff solid !important;
  border-left: 57px #f0feff solid !important;
}
.twilight-blue--ba-58 {
  border: 58px #f0feff solid !important;
}
.twilight-blue--bt-58 {
  border-top: 58px #f0feff solid !important;
}
.twilight-blue--br-58 {
  border-right: 58px #f0feff solid !important;
}
.twilight-blue--bl-58 {
  border-left: 58px #f0feff solid !important;
}
.twilight-blue--bb-58 {
  border-bottom: 58px #f0feff solid !important;
}
.twilight-blue--by-58 {
  border-top: 58px #f0feff solid !important;
  border-bottom: 58px #f0feff solid !important;
}
.twilight-blue--bx-58 {
  border-right: 58px #f0feff solid !important;
  border-left: 58px #f0feff solid !important;
}
.twilight-blue--ba-59 {
  border: 59px #f0feff solid !important;
}
.twilight-blue--bt-59 {
  border-top: 59px #f0feff solid !important;
}
.twilight-blue--br-59 {
  border-right: 59px #f0feff solid !important;
}
.twilight-blue--bl-59 {
  border-left: 59px #f0feff solid !important;
}
.twilight-blue--bb-59 {
  border-bottom: 59px #f0feff solid !important;
}
.twilight-blue--by-59 {
  border-top: 59px #f0feff solid !important;
  border-bottom: 59px #f0feff solid !important;
}
.twilight-blue--bx-59 {
  border-right: 59px #f0feff solid !important;
  border-left: 59px #f0feff solid !important;
}
.twilight-blue--ba-60 {
  border: 60px #f0feff solid !important;
}
.twilight-blue--bt-60 {
  border-top: 60px #f0feff solid !important;
}
.twilight-blue--br-60 {
  border-right: 60px #f0feff solid !important;
}
.twilight-blue--bl-60 {
  border-left: 60px #f0feff solid !important;
}
.twilight-blue--bb-60 {
  border-bottom: 60px #f0feff solid !important;
}
.twilight-blue--by-60 {
  border-top: 60px #f0feff solid !important;
  border-bottom: 60px #f0feff solid !important;
}
.twilight-blue--bx-60 {
  border-right: 60px #f0feff solid !important;
  border-left: 60px #f0feff solid !important;
}
.twilight-blue--ba-61 {
  border: 61px #f0feff solid !important;
}
.twilight-blue--bt-61 {
  border-top: 61px #f0feff solid !important;
}
.twilight-blue--br-61 {
  border-right: 61px #f0feff solid !important;
}
.twilight-blue--bl-61 {
  border-left: 61px #f0feff solid !important;
}
.twilight-blue--bb-61 {
  border-bottom: 61px #f0feff solid !important;
}
.twilight-blue--by-61 {
  border-top: 61px #f0feff solid !important;
  border-bottom: 61px #f0feff solid !important;
}
.twilight-blue--bx-61 {
  border-right: 61px #f0feff solid !important;
  border-left: 61px #f0feff solid !important;
}
.twilight-blue--ba-62 {
  border: 62px #f0feff solid !important;
}
.twilight-blue--bt-62 {
  border-top: 62px #f0feff solid !important;
}
.twilight-blue--br-62 {
  border-right: 62px #f0feff solid !important;
}
.twilight-blue--bl-62 {
  border-left: 62px #f0feff solid !important;
}
.twilight-blue--bb-62 {
  border-bottom: 62px #f0feff solid !important;
}
.twilight-blue--by-62 {
  border-top: 62px #f0feff solid !important;
  border-bottom: 62px #f0feff solid !important;
}
.twilight-blue--bx-62 {
  border-right: 62px #f0feff solid !important;
  border-left: 62px #f0feff solid !important;
}
.twilight-blue--ba-63 {
  border: 63px #f0feff solid !important;
}
.twilight-blue--bt-63 {
  border-top: 63px #f0feff solid !important;
}
.twilight-blue--br-63 {
  border-right: 63px #f0feff solid !important;
}
.twilight-blue--bl-63 {
  border-left: 63px #f0feff solid !important;
}
.twilight-blue--bb-63 {
  border-bottom: 63px #f0feff solid !important;
}
.twilight-blue--by-63 {
  border-top: 63px #f0feff solid !important;
  border-bottom: 63px #f0feff solid !important;
}
.twilight-blue--bx-63 {
  border-right: 63px #f0feff solid !important;
  border-left: 63px #f0feff solid !important;
}
.twilight-blue--ba-64 {
  border: 64px #f0feff solid !important;
}
.twilight-blue--bt-64 {
  border-top: 64px #f0feff solid !important;
}
.twilight-blue--br-64 {
  border-right: 64px #f0feff solid !important;
}
.twilight-blue--bl-64 {
  border-left: 64px #f0feff solid !important;
}
.twilight-blue--bb-64 {
  border-bottom: 64px #f0feff solid !important;
}
.twilight-blue--by-64 {
  border-top: 64px #f0feff solid !important;
  border-bottom: 64px #f0feff solid !important;
}
.twilight-blue--bx-64 {
  border-right: 64px #f0feff solid !important;
  border-left: 64px #f0feff solid !important;
}
.twilight-blue--ba-65 {
  border: 65px #f0feff solid !important;
}
.twilight-blue--bt-65 {
  border-top: 65px #f0feff solid !important;
}
.twilight-blue--br-65 {
  border-right: 65px #f0feff solid !important;
}
.twilight-blue--bl-65 {
  border-left: 65px #f0feff solid !important;
}
.twilight-blue--bb-65 {
  border-bottom: 65px #f0feff solid !important;
}
.twilight-blue--by-65 {
  border-top: 65px #f0feff solid !important;
  border-bottom: 65px #f0feff solid !important;
}
.twilight-blue--bx-65 {
  border-right: 65px #f0feff solid !important;
  border-left: 65px #f0feff solid !important;
}
.twilight-blue--ba-66 {
  border: 66px #f0feff solid !important;
}
.twilight-blue--bt-66 {
  border-top: 66px #f0feff solid !important;
}
.twilight-blue--br-66 {
  border-right: 66px #f0feff solid !important;
}
.twilight-blue--bl-66 {
  border-left: 66px #f0feff solid !important;
}
.twilight-blue--bb-66 {
  border-bottom: 66px #f0feff solid !important;
}
.twilight-blue--by-66 {
  border-top: 66px #f0feff solid !important;
  border-bottom: 66px #f0feff solid !important;
}
.twilight-blue--bx-66 {
  border-right: 66px #f0feff solid !important;
  border-left: 66px #f0feff solid !important;
}
.twilight-blue--ba-67 {
  border: 67px #f0feff solid !important;
}
.twilight-blue--bt-67 {
  border-top: 67px #f0feff solid !important;
}
.twilight-blue--br-67 {
  border-right: 67px #f0feff solid !important;
}
.twilight-blue--bl-67 {
  border-left: 67px #f0feff solid !important;
}
.twilight-blue--bb-67 {
  border-bottom: 67px #f0feff solid !important;
}
.twilight-blue--by-67 {
  border-top: 67px #f0feff solid !important;
  border-bottom: 67px #f0feff solid !important;
}
.twilight-blue--bx-67 {
  border-right: 67px #f0feff solid !important;
  border-left: 67px #f0feff solid !important;
}
.twilight-blue--ba-68 {
  border: 68px #f0feff solid !important;
}
.twilight-blue--bt-68 {
  border-top: 68px #f0feff solid !important;
}
.twilight-blue--br-68 {
  border-right: 68px #f0feff solid !important;
}
.twilight-blue--bl-68 {
  border-left: 68px #f0feff solid !important;
}
.twilight-blue--bb-68 {
  border-bottom: 68px #f0feff solid !important;
}
.twilight-blue--by-68 {
  border-top: 68px #f0feff solid !important;
  border-bottom: 68px #f0feff solid !important;
}
.twilight-blue--bx-68 {
  border-right: 68px #f0feff solid !important;
  border-left: 68px #f0feff solid !important;
}
.twilight-blue--ba-69 {
  border: 69px #f0feff solid !important;
}
.twilight-blue--bt-69 {
  border-top: 69px #f0feff solid !important;
}
.twilight-blue--br-69 {
  border-right: 69px #f0feff solid !important;
}
.twilight-blue--bl-69 {
  border-left: 69px #f0feff solid !important;
}
.twilight-blue--bb-69 {
  border-bottom: 69px #f0feff solid !important;
}
.twilight-blue--by-69 {
  border-top: 69px #f0feff solid !important;
  border-bottom: 69px #f0feff solid !important;
}
.twilight-blue--bx-69 {
  border-right: 69px #f0feff solid !important;
  border-left: 69px #f0feff solid !important;
}
.twilight-blue--ba-70 {
  border: 70px #f0feff solid !important;
}
.twilight-blue--bt-70 {
  border-top: 70px #f0feff solid !important;
}
.twilight-blue--br-70 {
  border-right: 70px #f0feff solid !important;
}
.twilight-blue--bl-70 {
  border-left: 70px #f0feff solid !important;
}
.twilight-blue--bb-70 {
  border-bottom: 70px #f0feff solid !important;
}
.twilight-blue--by-70 {
  border-top: 70px #f0feff solid !important;
  border-bottom: 70px #f0feff solid !important;
}
.twilight-blue--bx-70 {
  border-right: 70px #f0feff solid !important;
  border-left: 70px #f0feff solid !important;
}
.twilight-blue--ba-71 {
  border: 71px #f0feff solid !important;
}
.twilight-blue--bt-71 {
  border-top: 71px #f0feff solid !important;
}
.twilight-blue--br-71 {
  border-right: 71px #f0feff solid !important;
}
.twilight-blue--bl-71 {
  border-left: 71px #f0feff solid !important;
}
.twilight-blue--bb-71 {
  border-bottom: 71px #f0feff solid !important;
}
.twilight-blue--by-71 {
  border-top: 71px #f0feff solid !important;
  border-bottom: 71px #f0feff solid !important;
}
.twilight-blue--bx-71 {
  border-right: 71px #f0feff solid !important;
  border-left: 71px #f0feff solid !important;
}
.twilight-blue--ba-72 {
  border: 72px #f0feff solid !important;
}
.twilight-blue--bt-72 {
  border-top: 72px #f0feff solid !important;
}
.twilight-blue--br-72 {
  border-right: 72px #f0feff solid !important;
}
.twilight-blue--bl-72 {
  border-left: 72px #f0feff solid !important;
}
.twilight-blue--bb-72 {
  border-bottom: 72px #f0feff solid !important;
}
.twilight-blue--by-72 {
  border-top: 72px #f0feff solid !important;
  border-bottom: 72px #f0feff solid !important;
}
.twilight-blue--bx-72 {
  border-right: 72px #f0feff solid !important;
  border-left: 72px #f0feff solid !important;
}
.twilight-blue--ba-73 {
  border: 73px #f0feff solid !important;
}
.twilight-blue--bt-73 {
  border-top: 73px #f0feff solid !important;
}
.twilight-blue--br-73 {
  border-right: 73px #f0feff solid !important;
}
.twilight-blue--bl-73 {
  border-left: 73px #f0feff solid !important;
}
.twilight-blue--bb-73 {
  border-bottom: 73px #f0feff solid !important;
}
.twilight-blue--by-73 {
  border-top: 73px #f0feff solid !important;
  border-bottom: 73px #f0feff solid !important;
}
.twilight-blue--bx-73 {
  border-right: 73px #f0feff solid !important;
  border-left: 73px #f0feff solid !important;
}
.twilight-blue--ba-74 {
  border: 74px #f0feff solid !important;
}
.twilight-blue--bt-74 {
  border-top: 74px #f0feff solid !important;
}
.twilight-blue--br-74 {
  border-right: 74px #f0feff solid !important;
}
.twilight-blue--bl-74 {
  border-left: 74px #f0feff solid !important;
}
.twilight-blue--bb-74 {
  border-bottom: 74px #f0feff solid !important;
}
.twilight-blue--by-74 {
  border-top: 74px #f0feff solid !important;
  border-bottom: 74px #f0feff solid !important;
}
.twilight-blue--bx-74 {
  border-right: 74px #f0feff solid !important;
  border-left: 74px #f0feff solid !important;
}
.twilight-blue--ba-75 {
  border: 75px #f0feff solid !important;
}
.twilight-blue--bt-75 {
  border-top: 75px #f0feff solid !important;
}
.twilight-blue--br-75 {
  border-right: 75px #f0feff solid !important;
}
.twilight-blue--bl-75 {
  border-left: 75px #f0feff solid !important;
}
.twilight-blue--bb-75 {
  border-bottom: 75px #f0feff solid !important;
}
.twilight-blue--by-75 {
  border-top: 75px #f0feff solid !important;
  border-bottom: 75px #f0feff solid !important;
}
.twilight-blue--bx-75 {
  border-right: 75px #f0feff solid !important;
  border-left: 75px #f0feff solid !important;
}
.twilight-blue--ba-76 {
  border: 76px #f0feff solid !important;
}
.twilight-blue--bt-76 {
  border-top: 76px #f0feff solid !important;
}
.twilight-blue--br-76 {
  border-right: 76px #f0feff solid !important;
}
.twilight-blue--bl-76 {
  border-left: 76px #f0feff solid !important;
}
.twilight-blue--bb-76 {
  border-bottom: 76px #f0feff solid !important;
}
.twilight-blue--by-76 {
  border-top: 76px #f0feff solid !important;
  border-bottom: 76px #f0feff solid !important;
}
.twilight-blue--bx-76 {
  border-right: 76px #f0feff solid !important;
  border-left: 76px #f0feff solid !important;
}
.twilight-blue--ba-77 {
  border: 77px #f0feff solid !important;
}
.twilight-blue--bt-77 {
  border-top: 77px #f0feff solid !important;
}
.twilight-blue--br-77 {
  border-right: 77px #f0feff solid !important;
}
.twilight-blue--bl-77 {
  border-left: 77px #f0feff solid !important;
}
.twilight-blue--bb-77 {
  border-bottom: 77px #f0feff solid !important;
}
.twilight-blue--by-77 {
  border-top: 77px #f0feff solid !important;
  border-bottom: 77px #f0feff solid !important;
}
.twilight-blue--bx-77 {
  border-right: 77px #f0feff solid !important;
  border-left: 77px #f0feff solid !important;
}
.twilight-blue--ba-78 {
  border: 78px #f0feff solid !important;
}
.twilight-blue--bt-78 {
  border-top: 78px #f0feff solid !important;
}
.twilight-blue--br-78 {
  border-right: 78px #f0feff solid !important;
}
.twilight-blue--bl-78 {
  border-left: 78px #f0feff solid !important;
}
.twilight-blue--bb-78 {
  border-bottom: 78px #f0feff solid !important;
}
.twilight-blue--by-78 {
  border-top: 78px #f0feff solid !important;
  border-bottom: 78px #f0feff solid !important;
}
.twilight-blue--bx-78 {
  border-right: 78px #f0feff solid !important;
  border-left: 78px #f0feff solid !important;
}
.twilight-blue--ba-79 {
  border: 79px #f0feff solid !important;
}
.twilight-blue--bt-79 {
  border-top: 79px #f0feff solid !important;
}
.twilight-blue--br-79 {
  border-right: 79px #f0feff solid !important;
}
.twilight-blue--bl-79 {
  border-left: 79px #f0feff solid !important;
}
.twilight-blue--bb-79 {
  border-bottom: 79px #f0feff solid !important;
}
.twilight-blue--by-79 {
  border-top: 79px #f0feff solid !important;
  border-bottom: 79px #f0feff solid !important;
}
.twilight-blue--bx-79 {
  border-right: 79px #f0feff solid !important;
  border-left: 79px #f0feff solid !important;
}
.twilight-blue--ba-80 {
  border: 80px #f0feff solid !important;
}
.twilight-blue--bt-80 {
  border-top: 80px #f0feff solid !important;
}
.twilight-blue--br-80 {
  border-right: 80px #f0feff solid !important;
}
.twilight-blue--bl-80 {
  border-left: 80px #f0feff solid !important;
}
.twilight-blue--bb-80 {
  border-bottom: 80px #f0feff solid !important;
}
.twilight-blue--by-80 {
  border-top: 80px #f0feff solid !important;
  border-bottom: 80px #f0feff solid !important;
}
.twilight-blue--bx-80 {
  border-right: 80px #f0feff solid !important;
  border-left: 80px #f0feff solid !important;
}
.twilight-blue--ba-81 {
  border: 81px #f0feff solid !important;
}
.twilight-blue--bt-81 {
  border-top: 81px #f0feff solid !important;
}
.twilight-blue--br-81 {
  border-right: 81px #f0feff solid !important;
}
.twilight-blue--bl-81 {
  border-left: 81px #f0feff solid !important;
}
.twilight-blue--bb-81 {
  border-bottom: 81px #f0feff solid !important;
}
.twilight-blue--by-81 {
  border-top: 81px #f0feff solid !important;
  border-bottom: 81px #f0feff solid !important;
}
.twilight-blue--bx-81 {
  border-right: 81px #f0feff solid !important;
  border-left: 81px #f0feff solid !important;
}
.twilight-blue--ba-82 {
  border: 82px #f0feff solid !important;
}
.twilight-blue--bt-82 {
  border-top: 82px #f0feff solid !important;
}
.twilight-blue--br-82 {
  border-right: 82px #f0feff solid !important;
}
.twilight-blue--bl-82 {
  border-left: 82px #f0feff solid !important;
}
.twilight-blue--bb-82 {
  border-bottom: 82px #f0feff solid !important;
}
.twilight-blue--by-82 {
  border-top: 82px #f0feff solid !important;
  border-bottom: 82px #f0feff solid !important;
}
.twilight-blue--bx-82 {
  border-right: 82px #f0feff solid !important;
  border-left: 82px #f0feff solid !important;
}
.twilight-blue--ba-83 {
  border: 83px #f0feff solid !important;
}
.twilight-blue--bt-83 {
  border-top: 83px #f0feff solid !important;
}
.twilight-blue--br-83 {
  border-right: 83px #f0feff solid !important;
}
.twilight-blue--bl-83 {
  border-left: 83px #f0feff solid !important;
}
.twilight-blue--bb-83 {
  border-bottom: 83px #f0feff solid !important;
}
.twilight-blue--by-83 {
  border-top: 83px #f0feff solid !important;
  border-bottom: 83px #f0feff solid !important;
}
.twilight-blue--bx-83 {
  border-right: 83px #f0feff solid !important;
  border-left: 83px #f0feff solid !important;
}
.twilight-blue--ba-84 {
  border: 84px #f0feff solid !important;
}
.twilight-blue--bt-84 {
  border-top: 84px #f0feff solid !important;
}
.twilight-blue--br-84 {
  border-right: 84px #f0feff solid !important;
}
.twilight-blue--bl-84 {
  border-left: 84px #f0feff solid !important;
}
.twilight-blue--bb-84 {
  border-bottom: 84px #f0feff solid !important;
}
.twilight-blue--by-84 {
  border-top: 84px #f0feff solid !important;
  border-bottom: 84px #f0feff solid !important;
}
.twilight-blue--bx-84 {
  border-right: 84px #f0feff solid !important;
  border-left: 84px #f0feff solid !important;
}
.twilight-blue--ba-85 {
  border: 85px #f0feff solid !important;
}
.twilight-blue--bt-85 {
  border-top: 85px #f0feff solid !important;
}
.twilight-blue--br-85 {
  border-right: 85px #f0feff solid !important;
}
.twilight-blue--bl-85 {
  border-left: 85px #f0feff solid !important;
}
.twilight-blue--bb-85 {
  border-bottom: 85px #f0feff solid !important;
}
.twilight-blue--by-85 {
  border-top: 85px #f0feff solid !important;
  border-bottom: 85px #f0feff solid !important;
}
.twilight-blue--bx-85 {
  border-right: 85px #f0feff solid !important;
  border-left: 85px #f0feff solid !important;
}
.twilight-blue--ba-86 {
  border: 86px #f0feff solid !important;
}
.twilight-blue--bt-86 {
  border-top: 86px #f0feff solid !important;
}
.twilight-blue--br-86 {
  border-right: 86px #f0feff solid !important;
}
.twilight-blue--bl-86 {
  border-left: 86px #f0feff solid !important;
}
.twilight-blue--bb-86 {
  border-bottom: 86px #f0feff solid !important;
}
.twilight-blue--by-86 {
  border-top: 86px #f0feff solid !important;
  border-bottom: 86px #f0feff solid !important;
}
.twilight-blue--bx-86 {
  border-right: 86px #f0feff solid !important;
  border-left: 86px #f0feff solid !important;
}
.twilight-blue--ba-87 {
  border: 87px #f0feff solid !important;
}
.twilight-blue--bt-87 {
  border-top: 87px #f0feff solid !important;
}
.twilight-blue--br-87 {
  border-right: 87px #f0feff solid !important;
}
.twilight-blue--bl-87 {
  border-left: 87px #f0feff solid !important;
}
.twilight-blue--bb-87 {
  border-bottom: 87px #f0feff solid !important;
}
.twilight-blue--by-87 {
  border-top: 87px #f0feff solid !important;
  border-bottom: 87px #f0feff solid !important;
}
.twilight-blue--bx-87 {
  border-right: 87px #f0feff solid !important;
  border-left: 87px #f0feff solid !important;
}
.twilight-blue--ba-88 {
  border: 88px #f0feff solid !important;
}
.twilight-blue--bt-88 {
  border-top: 88px #f0feff solid !important;
}
.twilight-blue--br-88 {
  border-right: 88px #f0feff solid !important;
}
.twilight-blue--bl-88 {
  border-left: 88px #f0feff solid !important;
}
.twilight-blue--bb-88 {
  border-bottom: 88px #f0feff solid !important;
}
.twilight-blue--by-88 {
  border-top: 88px #f0feff solid !important;
  border-bottom: 88px #f0feff solid !important;
}
.twilight-blue--bx-88 {
  border-right: 88px #f0feff solid !important;
  border-left: 88px #f0feff solid !important;
}
.twilight-blue--ba-89 {
  border: 89px #f0feff solid !important;
}
.twilight-blue--bt-89 {
  border-top: 89px #f0feff solid !important;
}
.twilight-blue--br-89 {
  border-right: 89px #f0feff solid !important;
}
.twilight-blue--bl-89 {
  border-left: 89px #f0feff solid !important;
}
.twilight-blue--bb-89 {
  border-bottom: 89px #f0feff solid !important;
}
.twilight-blue--by-89 {
  border-top: 89px #f0feff solid !important;
  border-bottom: 89px #f0feff solid !important;
}
.twilight-blue--bx-89 {
  border-right: 89px #f0feff solid !important;
  border-left: 89px #f0feff solid !important;
}
.twilight-blue--ba-90 {
  border: 90px #f0feff solid !important;
}
.twilight-blue--bt-90 {
  border-top: 90px #f0feff solid !important;
}
.twilight-blue--br-90 {
  border-right: 90px #f0feff solid !important;
}
.twilight-blue--bl-90 {
  border-left: 90px #f0feff solid !important;
}
.twilight-blue--bb-90 {
  border-bottom: 90px #f0feff solid !important;
}
.twilight-blue--by-90 {
  border-top: 90px #f0feff solid !important;
  border-bottom: 90px #f0feff solid !important;
}
.twilight-blue--bx-90 {
  border-right: 90px #f0feff solid !important;
  border-left: 90px #f0feff solid !important;
}
.twilight-blue--ba-91 {
  border: 91px #f0feff solid !important;
}
.twilight-blue--bt-91 {
  border-top: 91px #f0feff solid !important;
}
.twilight-blue--br-91 {
  border-right: 91px #f0feff solid !important;
}
.twilight-blue--bl-91 {
  border-left: 91px #f0feff solid !important;
}
.twilight-blue--bb-91 {
  border-bottom: 91px #f0feff solid !important;
}
.twilight-blue--by-91 {
  border-top: 91px #f0feff solid !important;
  border-bottom: 91px #f0feff solid !important;
}
.twilight-blue--bx-91 {
  border-right: 91px #f0feff solid !important;
  border-left: 91px #f0feff solid !important;
}
.twilight-blue--ba-92 {
  border: 92px #f0feff solid !important;
}
.twilight-blue--bt-92 {
  border-top: 92px #f0feff solid !important;
}
.twilight-blue--br-92 {
  border-right: 92px #f0feff solid !important;
}
.twilight-blue--bl-92 {
  border-left: 92px #f0feff solid !important;
}
.twilight-blue--bb-92 {
  border-bottom: 92px #f0feff solid !important;
}
.twilight-blue--by-92 {
  border-top: 92px #f0feff solid !important;
  border-bottom: 92px #f0feff solid !important;
}
.twilight-blue--bx-92 {
  border-right: 92px #f0feff solid !important;
  border-left: 92px #f0feff solid !important;
}
.twilight-blue--ba-93 {
  border: 93px #f0feff solid !important;
}
.twilight-blue--bt-93 {
  border-top: 93px #f0feff solid !important;
}
.twilight-blue--br-93 {
  border-right: 93px #f0feff solid !important;
}
.twilight-blue--bl-93 {
  border-left: 93px #f0feff solid !important;
}
.twilight-blue--bb-93 {
  border-bottom: 93px #f0feff solid !important;
}
.twilight-blue--by-93 {
  border-top: 93px #f0feff solid !important;
  border-bottom: 93px #f0feff solid !important;
}
.twilight-blue--bx-93 {
  border-right: 93px #f0feff solid !important;
  border-left: 93px #f0feff solid !important;
}
.twilight-blue--ba-94 {
  border: 94px #f0feff solid !important;
}
.twilight-blue--bt-94 {
  border-top: 94px #f0feff solid !important;
}
.twilight-blue--br-94 {
  border-right: 94px #f0feff solid !important;
}
.twilight-blue--bl-94 {
  border-left: 94px #f0feff solid !important;
}
.twilight-blue--bb-94 {
  border-bottom: 94px #f0feff solid !important;
}
.twilight-blue--by-94 {
  border-top: 94px #f0feff solid !important;
  border-bottom: 94px #f0feff solid !important;
}
.twilight-blue--bx-94 {
  border-right: 94px #f0feff solid !important;
  border-left: 94px #f0feff solid !important;
}
.twilight-blue--ba-95 {
  border: 95px #f0feff solid !important;
}
.twilight-blue--bt-95 {
  border-top: 95px #f0feff solid !important;
}
.twilight-blue--br-95 {
  border-right: 95px #f0feff solid !important;
}
.twilight-blue--bl-95 {
  border-left: 95px #f0feff solid !important;
}
.twilight-blue--bb-95 {
  border-bottom: 95px #f0feff solid !important;
}
.twilight-blue--by-95 {
  border-top: 95px #f0feff solid !important;
  border-bottom: 95px #f0feff solid !important;
}
.twilight-blue--bx-95 {
  border-right: 95px #f0feff solid !important;
  border-left: 95px #f0feff solid !important;
}
.twilight-blue--ba-96 {
  border: 96px #f0feff solid !important;
}
.twilight-blue--bt-96 {
  border-top: 96px #f0feff solid !important;
}
.twilight-blue--br-96 {
  border-right: 96px #f0feff solid !important;
}
.twilight-blue--bl-96 {
  border-left: 96px #f0feff solid !important;
}
.twilight-blue--bb-96 {
  border-bottom: 96px #f0feff solid !important;
}
.twilight-blue--by-96 {
  border-top: 96px #f0feff solid !important;
  border-bottom: 96px #f0feff solid !important;
}
.twilight-blue--bx-96 {
  border-right: 96px #f0feff solid !important;
  border-left: 96px #f0feff solid !important;
}
.twilight-blue--ba-97 {
  border: 97px #f0feff solid !important;
}
.twilight-blue--bt-97 {
  border-top: 97px #f0feff solid !important;
}
.twilight-blue--br-97 {
  border-right: 97px #f0feff solid !important;
}
.twilight-blue--bl-97 {
  border-left: 97px #f0feff solid !important;
}
.twilight-blue--bb-97 {
  border-bottom: 97px #f0feff solid !important;
}
.twilight-blue--by-97 {
  border-top: 97px #f0feff solid !important;
  border-bottom: 97px #f0feff solid !important;
}
.twilight-blue--bx-97 {
  border-right: 97px #f0feff solid !important;
  border-left: 97px #f0feff solid !important;
}
.twilight-blue--ba-98 {
  border: 98px #f0feff solid !important;
}
.twilight-blue--bt-98 {
  border-top: 98px #f0feff solid !important;
}
.twilight-blue--br-98 {
  border-right: 98px #f0feff solid !important;
}
.twilight-blue--bl-98 {
  border-left: 98px #f0feff solid !important;
}
.twilight-blue--bb-98 {
  border-bottom: 98px #f0feff solid !important;
}
.twilight-blue--by-98 {
  border-top: 98px #f0feff solid !important;
  border-bottom: 98px #f0feff solid !important;
}
.twilight-blue--bx-98 {
  border-right: 98px #f0feff solid !important;
  border-left: 98px #f0feff solid !important;
}
.twilight-blue--ba-99 {
  border: 99px #f0feff solid !important;
}
.twilight-blue--bt-99 {
  border-top: 99px #f0feff solid !important;
}
.twilight-blue--br-99 {
  border-right: 99px #f0feff solid !important;
}
.twilight-blue--bl-99 {
  border-left: 99px #f0feff solid !important;
}
.twilight-blue--bb-99 {
  border-bottom: 99px #f0feff solid !important;
}
.twilight-blue--by-99 {
  border-top: 99px #f0feff solid !important;
  border-bottom: 99px #f0feff solid !important;
}
.twilight-blue--bx-99 {
  border-right: 99px #f0feff solid !important;
  border-left: 99px #f0feff solid !important;
}
.twilight-blue--ba-100 {
  border: 100px #f0feff solid !important;
}
.twilight-blue--bt-100 {
  border-top: 100px #f0feff solid !important;
}
.twilight-blue--br-100 {
  border-right: 100px #f0feff solid !important;
}
.twilight-blue--bl-100 {
  border-left: 100px #f0feff solid !important;
}
.twilight-blue--bb-100 {
  border-bottom: 100px #f0feff solid !important;
}
.twilight-blue--by-100 {
  border-top: 100px #f0feff solid !important;
  border-bottom: 100px #f0feff solid !important;
}
.twilight-blue--bx-100 {
  border-right: 100px #f0feff solid !important;
  border-left: 100px #f0feff solid !important;
}
.alice-blue--ba-1 {
  border: 1px #f1f9ff solid !important;
}
.alice-blue--bt-1 {
  border-top: 1px #f1f9ff solid !important;
}
.alice-blue--br-1 {
  border-right: 1px #f1f9ff solid !important;
}
.alice-blue--bl-1 {
  border-left: 1px #f1f9ff solid !important;
}
.alice-blue--bb-1 {
  border-bottom: 1px #f1f9ff solid !important;
}
.alice-blue--by-1 {
  border-top: 1px #f1f9ff solid !important;
  border-bottom: 1px #f1f9ff solid !important;
}
.alice-blue--bx-1 {
  border-right: 1px #f1f9ff solid !important;
  border-left: 1px #f1f9ff solid !important;
}
.alice-blue--ba-2 {
  border: 2px #f1f9ff solid !important;
}
.alice-blue--bt-2 {
  border-top: 2px #f1f9ff solid !important;
}
.alice-blue--br-2 {
  border-right: 2px #f1f9ff solid !important;
}
.alice-blue--bl-2 {
  border-left: 2px #f1f9ff solid !important;
}
.alice-blue--bb-2 {
  border-bottom: 2px #f1f9ff solid !important;
}
.alice-blue--by-2 {
  border-top: 2px #f1f9ff solid !important;
  border-bottom: 2px #f1f9ff solid !important;
}
.alice-blue--bx-2 {
  border-right: 2px #f1f9ff solid !important;
  border-left: 2px #f1f9ff solid !important;
}
.alice-blue--ba-3 {
  border: 3px #f1f9ff solid !important;
}
.alice-blue--bt-3 {
  border-top: 3px #f1f9ff solid !important;
}
.alice-blue--br-3 {
  border-right: 3px #f1f9ff solid !important;
}
.alice-blue--bl-3 {
  border-left: 3px #f1f9ff solid !important;
}
.alice-blue--bb-3 {
  border-bottom: 3px #f1f9ff solid !important;
}
.alice-blue--by-3 {
  border-top: 3px #f1f9ff solid !important;
  border-bottom: 3px #f1f9ff solid !important;
}
.alice-blue--bx-3 {
  border-right: 3px #f1f9ff solid !important;
  border-left: 3px #f1f9ff solid !important;
}
.alice-blue--ba-4 {
  border: 4px #f1f9ff solid !important;
}
.alice-blue--bt-4 {
  border-top: 4px #f1f9ff solid !important;
}
.alice-blue--br-4 {
  border-right: 4px #f1f9ff solid !important;
}
.alice-blue--bl-4 {
  border-left: 4px #f1f9ff solid !important;
}
.alice-blue--bb-4 {
  border-bottom: 4px #f1f9ff solid !important;
}
.alice-blue--by-4 {
  border-top: 4px #f1f9ff solid !important;
  border-bottom: 4px #f1f9ff solid !important;
}
.alice-blue--bx-4 {
  border-right: 4px #f1f9ff solid !important;
  border-left: 4px #f1f9ff solid !important;
}
.alice-blue--ba-5 {
  border: 5px #f1f9ff solid !important;
}
.alice-blue--bt-5 {
  border-top: 5px #f1f9ff solid !important;
}
.alice-blue--br-5 {
  border-right: 5px #f1f9ff solid !important;
}
.alice-blue--bl-5 {
  border-left: 5px #f1f9ff solid !important;
}
.alice-blue--bb-5 {
  border-bottom: 5px #f1f9ff solid !important;
}
.alice-blue--by-5 {
  border-top: 5px #f1f9ff solid !important;
  border-bottom: 5px #f1f9ff solid !important;
}
.alice-blue--bx-5 {
  border-right: 5px #f1f9ff solid !important;
  border-left: 5px #f1f9ff solid !important;
}
.alice-blue--ba-6 {
  border: 6px #f1f9ff solid !important;
}
.alice-blue--bt-6 {
  border-top: 6px #f1f9ff solid !important;
}
.alice-blue--br-6 {
  border-right: 6px #f1f9ff solid !important;
}
.alice-blue--bl-6 {
  border-left: 6px #f1f9ff solid !important;
}
.alice-blue--bb-6 {
  border-bottom: 6px #f1f9ff solid !important;
}
.alice-blue--by-6 {
  border-top: 6px #f1f9ff solid !important;
  border-bottom: 6px #f1f9ff solid !important;
}
.alice-blue--bx-6 {
  border-right: 6px #f1f9ff solid !important;
  border-left: 6px #f1f9ff solid !important;
}
.alice-blue--ba-7 {
  border: 7px #f1f9ff solid !important;
}
.alice-blue--bt-7 {
  border-top: 7px #f1f9ff solid !important;
}
.alice-blue--br-7 {
  border-right: 7px #f1f9ff solid !important;
}
.alice-blue--bl-7 {
  border-left: 7px #f1f9ff solid !important;
}
.alice-blue--bb-7 {
  border-bottom: 7px #f1f9ff solid !important;
}
.alice-blue--by-7 {
  border-top: 7px #f1f9ff solid !important;
  border-bottom: 7px #f1f9ff solid !important;
}
.alice-blue--bx-7 {
  border-right: 7px #f1f9ff solid !important;
  border-left: 7px #f1f9ff solid !important;
}
.alice-blue--ba-8 {
  border: 8px #f1f9ff solid !important;
}
.alice-blue--bt-8 {
  border-top: 8px #f1f9ff solid !important;
}
.alice-blue--br-8 {
  border-right: 8px #f1f9ff solid !important;
}
.alice-blue--bl-8 {
  border-left: 8px #f1f9ff solid !important;
}
.alice-blue--bb-8 {
  border-bottom: 8px #f1f9ff solid !important;
}
.alice-blue--by-8 {
  border-top: 8px #f1f9ff solid !important;
  border-bottom: 8px #f1f9ff solid !important;
}
.alice-blue--bx-8 {
  border-right: 8px #f1f9ff solid !important;
  border-left: 8px #f1f9ff solid !important;
}
.alice-blue--ba-9 {
  border: 9px #f1f9ff solid !important;
}
.alice-blue--bt-9 {
  border-top: 9px #f1f9ff solid !important;
}
.alice-blue--br-9 {
  border-right: 9px #f1f9ff solid !important;
}
.alice-blue--bl-9 {
  border-left: 9px #f1f9ff solid !important;
}
.alice-blue--bb-9 {
  border-bottom: 9px #f1f9ff solid !important;
}
.alice-blue--by-9 {
  border-top: 9px #f1f9ff solid !important;
  border-bottom: 9px #f1f9ff solid !important;
}
.alice-blue--bx-9 {
  border-right: 9px #f1f9ff solid !important;
  border-left: 9px #f1f9ff solid !important;
}
.alice-blue--ba-10 {
  border: 10px #f1f9ff solid !important;
}
.alice-blue--bt-10 {
  border-top: 10px #f1f9ff solid !important;
}
.alice-blue--br-10 {
  border-right: 10px #f1f9ff solid !important;
}
.alice-blue--bl-10 {
  border-left: 10px #f1f9ff solid !important;
}
.alice-blue--bb-10 {
  border-bottom: 10px #f1f9ff solid !important;
}
.alice-blue--by-10 {
  border-top: 10px #f1f9ff solid !important;
  border-bottom: 10px #f1f9ff solid !important;
}
.alice-blue--bx-10 {
  border-right: 10px #f1f9ff solid !important;
  border-left: 10px #f1f9ff solid !important;
}
.alice-blue--ba-11 {
  border: 11px #f1f9ff solid !important;
}
.alice-blue--bt-11 {
  border-top: 11px #f1f9ff solid !important;
}
.alice-blue--br-11 {
  border-right: 11px #f1f9ff solid !important;
}
.alice-blue--bl-11 {
  border-left: 11px #f1f9ff solid !important;
}
.alice-blue--bb-11 {
  border-bottom: 11px #f1f9ff solid !important;
}
.alice-blue--by-11 {
  border-top: 11px #f1f9ff solid !important;
  border-bottom: 11px #f1f9ff solid !important;
}
.alice-blue--bx-11 {
  border-right: 11px #f1f9ff solid !important;
  border-left: 11px #f1f9ff solid !important;
}
.alice-blue--ba-12 {
  border: 12px #f1f9ff solid !important;
}
.alice-blue--bt-12 {
  border-top: 12px #f1f9ff solid !important;
}
.alice-blue--br-12 {
  border-right: 12px #f1f9ff solid !important;
}
.alice-blue--bl-12 {
  border-left: 12px #f1f9ff solid !important;
}
.alice-blue--bb-12 {
  border-bottom: 12px #f1f9ff solid !important;
}
.alice-blue--by-12 {
  border-top: 12px #f1f9ff solid !important;
  border-bottom: 12px #f1f9ff solid !important;
}
.alice-blue--bx-12 {
  border-right: 12px #f1f9ff solid !important;
  border-left: 12px #f1f9ff solid !important;
}
.alice-blue--ba-13 {
  border: 13px #f1f9ff solid !important;
}
.alice-blue--bt-13 {
  border-top: 13px #f1f9ff solid !important;
}
.alice-blue--br-13 {
  border-right: 13px #f1f9ff solid !important;
}
.alice-blue--bl-13 {
  border-left: 13px #f1f9ff solid !important;
}
.alice-blue--bb-13 {
  border-bottom: 13px #f1f9ff solid !important;
}
.alice-blue--by-13 {
  border-top: 13px #f1f9ff solid !important;
  border-bottom: 13px #f1f9ff solid !important;
}
.alice-blue--bx-13 {
  border-right: 13px #f1f9ff solid !important;
  border-left: 13px #f1f9ff solid !important;
}
.alice-blue--ba-14 {
  border: 14px #f1f9ff solid !important;
}
.alice-blue--bt-14 {
  border-top: 14px #f1f9ff solid !important;
}
.alice-blue--br-14 {
  border-right: 14px #f1f9ff solid !important;
}
.alice-blue--bl-14 {
  border-left: 14px #f1f9ff solid !important;
}
.alice-blue--bb-14 {
  border-bottom: 14px #f1f9ff solid !important;
}
.alice-blue--by-14 {
  border-top: 14px #f1f9ff solid !important;
  border-bottom: 14px #f1f9ff solid !important;
}
.alice-blue--bx-14 {
  border-right: 14px #f1f9ff solid !important;
  border-left: 14px #f1f9ff solid !important;
}
.alice-blue--ba-15 {
  border: 15px #f1f9ff solid !important;
}
.alice-blue--bt-15 {
  border-top: 15px #f1f9ff solid !important;
}
.alice-blue--br-15 {
  border-right: 15px #f1f9ff solid !important;
}
.alice-blue--bl-15 {
  border-left: 15px #f1f9ff solid !important;
}
.alice-blue--bb-15 {
  border-bottom: 15px #f1f9ff solid !important;
}
.alice-blue--by-15 {
  border-top: 15px #f1f9ff solid !important;
  border-bottom: 15px #f1f9ff solid !important;
}
.alice-blue--bx-15 {
  border-right: 15px #f1f9ff solid !important;
  border-left: 15px #f1f9ff solid !important;
}
.alice-blue--ba-16 {
  border: 16px #f1f9ff solid !important;
}
.alice-blue--bt-16 {
  border-top: 16px #f1f9ff solid !important;
}
.alice-blue--br-16 {
  border-right: 16px #f1f9ff solid !important;
}
.alice-blue--bl-16 {
  border-left: 16px #f1f9ff solid !important;
}
.alice-blue--bb-16 {
  border-bottom: 16px #f1f9ff solid !important;
}
.alice-blue--by-16 {
  border-top: 16px #f1f9ff solid !important;
  border-bottom: 16px #f1f9ff solid !important;
}
.alice-blue--bx-16 {
  border-right: 16px #f1f9ff solid !important;
  border-left: 16px #f1f9ff solid !important;
}
.alice-blue--ba-17 {
  border: 17px #f1f9ff solid !important;
}
.alice-blue--bt-17 {
  border-top: 17px #f1f9ff solid !important;
}
.alice-blue--br-17 {
  border-right: 17px #f1f9ff solid !important;
}
.alice-blue--bl-17 {
  border-left: 17px #f1f9ff solid !important;
}
.alice-blue--bb-17 {
  border-bottom: 17px #f1f9ff solid !important;
}
.alice-blue--by-17 {
  border-top: 17px #f1f9ff solid !important;
  border-bottom: 17px #f1f9ff solid !important;
}
.alice-blue--bx-17 {
  border-right: 17px #f1f9ff solid !important;
  border-left: 17px #f1f9ff solid !important;
}
.alice-blue--ba-18 {
  border: 18px #f1f9ff solid !important;
}
.alice-blue--bt-18 {
  border-top: 18px #f1f9ff solid !important;
}
.alice-blue--br-18 {
  border-right: 18px #f1f9ff solid !important;
}
.alice-blue--bl-18 {
  border-left: 18px #f1f9ff solid !important;
}
.alice-blue--bb-18 {
  border-bottom: 18px #f1f9ff solid !important;
}
.alice-blue--by-18 {
  border-top: 18px #f1f9ff solid !important;
  border-bottom: 18px #f1f9ff solid !important;
}
.alice-blue--bx-18 {
  border-right: 18px #f1f9ff solid !important;
  border-left: 18px #f1f9ff solid !important;
}
.alice-blue--ba-19 {
  border: 19px #f1f9ff solid !important;
}
.alice-blue--bt-19 {
  border-top: 19px #f1f9ff solid !important;
}
.alice-blue--br-19 {
  border-right: 19px #f1f9ff solid !important;
}
.alice-blue--bl-19 {
  border-left: 19px #f1f9ff solid !important;
}
.alice-blue--bb-19 {
  border-bottom: 19px #f1f9ff solid !important;
}
.alice-blue--by-19 {
  border-top: 19px #f1f9ff solid !important;
  border-bottom: 19px #f1f9ff solid !important;
}
.alice-blue--bx-19 {
  border-right: 19px #f1f9ff solid !important;
  border-left: 19px #f1f9ff solid !important;
}
.alice-blue--ba-20 {
  border: 20px #f1f9ff solid !important;
}
.alice-blue--bt-20 {
  border-top: 20px #f1f9ff solid !important;
}
.alice-blue--br-20 {
  border-right: 20px #f1f9ff solid !important;
}
.alice-blue--bl-20 {
  border-left: 20px #f1f9ff solid !important;
}
.alice-blue--bb-20 {
  border-bottom: 20px #f1f9ff solid !important;
}
.alice-blue--by-20 {
  border-top: 20px #f1f9ff solid !important;
  border-bottom: 20px #f1f9ff solid !important;
}
.alice-blue--bx-20 {
  border-right: 20px #f1f9ff solid !important;
  border-left: 20px #f1f9ff solid !important;
}
.alice-blue--ba-21 {
  border: 21px #f1f9ff solid !important;
}
.alice-blue--bt-21 {
  border-top: 21px #f1f9ff solid !important;
}
.alice-blue--br-21 {
  border-right: 21px #f1f9ff solid !important;
}
.alice-blue--bl-21 {
  border-left: 21px #f1f9ff solid !important;
}
.alice-blue--bb-21 {
  border-bottom: 21px #f1f9ff solid !important;
}
.alice-blue--by-21 {
  border-top: 21px #f1f9ff solid !important;
  border-bottom: 21px #f1f9ff solid !important;
}
.alice-blue--bx-21 {
  border-right: 21px #f1f9ff solid !important;
  border-left: 21px #f1f9ff solid !important;
}
.alice-blue--ba-22 {
  border: 22px #f1f9ff solid !important;
}
.alice-blue--bt-22 {
  border-top: 22px #f1f9ff solid !important;
}
.alice-blue--br-22 {
  border-right: 22px #f1f9ff solid !important;
}
.alice-blue--bl-22 {
  border-left: 22px #f1f9ff solid !important;
}
.alice-blue--bb-22 {
  border-bottom: 22px #f1f9ff solid !important;
}
.alice-blue--by-22 {
  border-top: 22px #f1f9ff solid !important;
  border-bottom: 22px #f1f9ff solid !important;
}
.alice-blue--bx-22 {
  border-right: 22px #f1f9ff solid !important;
  border-left: 22px #f1f9ff solid !important;
}
.alice-blue--ba-23 {
  border: 23px #f1f9ff solid !important;
}
.alice-blue--bt-23 {
  border-top: 23px #f1f9ff solid !important;
}
.alice-blue--br-23 {
  border-right: 23px #f1f9ff solid !important;
}
.alice-blue--bl-23 {
  border-left: 23px #f1f9ff solid !important;
}
.alice-blue--bb-23 {
  border-bottom: 23px #f1f9ff solid !important;
}
.alice-blue--by-23 {
  border-top: 23px #f1f9ff solid !important;
  border-bottom: 23px #f1f9ff solid !important;
}
.alice-blue--bx-23 {
  border-right: 23px #f1f9ff solid !important;
  border-left: 23px #f1f9ff solid !important;
}
.alice-blue--ba-24 {
  border: 24px #f1f9ff solid !important;
}
.alice-blue--bt-24 {
  border-top: 24px #f1f9ff solid !important;
}
.alice-blue--br-24 {
  border-right: 24px #f1f9ff solid !important;
}
.alice-blue--bl-24 {
  border-left: 24px #f1f9ff solid !important;
}
.alice-blue--bb-24 {
  border-bottom: 24px #f1f9ff solid !important;
}
.alice-blue--by-24 {
  border-top: 24px #f1f9ff solid !important;
  border-bottom: 24px #f1f9ff solid !important;
}
.alice-blue--bx-24 {
  border-right: 24px #f1f9ff solid !important;
  border-left: 24px #f1f9ff solid !important;
}
.alice-blue--ba-25 {
  border: 25px #f1f9ff solid !important;
}
.alice-blue--bt-25 {
  border-top: 25px #f1f9ff solid !important;
}
.alice-blue--br-25 {
  border-right: 25px #f1f9ff solid !important;
}
.alice-blue--bl-25 {
  border-left: 25px #f1f9ff solid !important;
}
.alice-blue--bb-25 {
  border-bottom: 25px #f1f9ff solid !important;
}
.alice-blue--by-25 {
  border-top: 25px #f1f9ff solid !important;
  border-bottom: 25px #f1f9ff solid !important;
}
.alice-blue--bx-25 {
  border-right: 25px #f1f9ff solid !important;
  border-left: 25px #f1f9ff solid !important;
}
.alice-blue--ba-26 {
  border: 26px #f1f9ff solid !important;
}
.alice-blue--bt-26 {
  border-top: 26px #f1f9ff solid !important;
}
.alice-blue--br-26 {
  border-right: 26px #f1f9ff solid !important;
}
.alice-blue--bl-26 {
  border-left: 26px #f1f9ff solid !important;
}
.alice-blue--bb-26 {
  border-bottom: 26px #f1f9ff solid !important;
}
.alice-blue--by-26 {
  border-top: 26px #f1f9ff solid !important;
  border-bottom: 26px #f1f9ff solid !important;
}
.alice-blue--bx-26 {
  border-right: 26px #f1f9ff solid !important;
  border-left: 26px #f1f9ff solid !important;
}
.alice-blue--ba-27 {
  border: 27px #f1f9ff solid !important;
}
.alice-blue--bt-27 {
  border-top: 27px #f1f9ff solid !important;
}
.alice-blue--br-27 {
  border-right: 27px #f1f9ff solid !important;
}
.alice-blue--bl-27 {
  border-left: 27px #f1f9ff solid !important;
}
.alice-blue--bb-27 {
  border-bottom: 27px #f1f9ff solid !important;
}
.alice-blue--by-27 {
  border-top: 27px #f1f9ff solid !important;
  border-bottom: 27px #f1f9ff solid !important;
}
.alice-blue--bx-27 {
  border-right: 27px #f1f9ff solid !important;
  border-left: 27px #f1f9ff solid !important;
}
.alice-blue--ba-28 {
  border: 28px #f1f9ff solid !important;
}
.alice-blue--bt-28 {
  border-top: 28px #f1f9ff solid !important;
}
.alice-blue--br-28 {
  border-right: 28px #f1f9ff solid !important;
}
.alice-blue--bl-28 {
  border-left: 28px #f1f9ff solid !important;
}
.alice-blue--bb-28 {
  border-bottom: 28px #f1f9ff solid !important;
}
.alice-blue--by-28 {
  border-top: 28px #f1f9ff solid !important;
  border-bottom: 28px #f1f9ff solid !important;
}
.alice-blue--bx-28 {
  border-right: 28px #f1f9ff solid !important;
  border-left: 28px #f1f9ff solid !important;
}
.alice-blue--ba-29 {
  border: 29px #f1f9ff solid !important;
}
.alice-blue--bt-29 {
  border-top: 29px #f1f9ff solid !important;
}
.alice-blue--br-29 {
  border-right: 29px #f1f9ff solid !important;
}
.alice-blue--bl-29 {
  border-left: 29px #f1f9ff solid !important;
}
.alice-blue--bb-29 {
  border-bottom: 29px #f1f9ff solid !important;
}
.alice-blue--by-29 {
  border-top: 29px #f1f9ff solid !important;
  border-bottom: 29px #f1f9ff solid !important;
}
.alice-blue--bx-29 {
  border-right: 29px #f1f9ff solid !important;
  border-left: 29px #f1f9ff solid !important;
}
.alice-blue--ba-30 {
  border: 30px #f1f9ff solid !important;
}
.alice-blue--bt-30 {
  border-top: 30px #f1f9ff solid !important;
}
.alice-blue--br-30 {
  border-right: 30px #f1f9ff solid !important;
}
.alice-blue--bl-30 {
  border-left: 30px #f1f9ff solid !important;
}
.alice-blue--bb-30 {
  border-bottom: 30px #f1f9ff solid !important;
}
.alice-blue--by-30 {
  border-top: 30px #f1f9ff solid !important;
  border-bottom: 30px #f1f9ff solid !important;
}
.alice-blue--bx-30 {
  border-right: 30px #f1f9ff solid !important;
  border-left: 30px #f1f9ff solid !important;
}
.alice-blue--ba-31 {
  border: 31px #f1f9ff solid !important;
}
.alice-blue--bt-31 {
  border-top: 31px #f1f9ff solid !important;
}
.alice-blue--br-31 {
  border-right: 31px #f1f9ff solid !important;
}
.alice-blue--bl-31 {
  border-left: 31px #f1f9ff solid !important;
}
.alice-blue--bb-31 {
  border-bottom: 31px #f1f9ff solid !important;
}
.alice-blue--by-31 {
  border-top: 31px #f1f9ff solid !important;
  border-bottom: 31px #f1f9ff solid !important;
}
.alice-blue--bx-31 {
  border-right: 31px #f1f9ff solid !important;
  border-left: 31px #f1f9ff solid !important;
}
.alice-blue--ba-32 {
  border: 32px #f1f9ff solid !important;
}
.alice-blue--bt-32 {
  border-top: 32px #f1f9ff solid !important;
}
.alice-blue--br-32 {
  border-right: 32px #f1f9ff solid !important;
}
.alice-blue--bl-32 {
  border-left: 32px #f1f9ff solid !important;
}
.alice-blue--bb-32 {
  border-bottom: 32px #f1f9ff solid !important;
}
.alice-blue--by-32 {
  border-top: 32px #f1f9ff solid !important;
  border-bottom: 32px #f1f9ff solid !important;
}
.alice-blue--bx-32 {
  border-right: 32px #f1f9ff solid !important;
  border-left: 32px #f1f9ff solid !important;
}
.alice-blue--ba-33 {
  border: 33px #f1f9ff solid !important;
}
.alice-blue--bt-33 {
  border-top: 33px #f1f9ff solid !important;
}
.alice-blue--br-33 {
  border-right: 33px #f1f9ff solid !important;
}
.alice-blue--bl-33 {
  border-left: 33px #f1f9ff solid !important;
}
.alice-blue--bb-33 {
  border-bottom: 33px #f1f9ff solid !important;
}
.alice-blue--by-33 {
  border-top: 33px #f1f9ff solid !important;
  border-bottom: 33px #f1f9ff solid !important;
}
.alice-blue--bx-33 {
  border-right: 33px #f1f9ff solid !important;
  border-left: 33px #f1f9ff solid !important;
}
.alice-blue--ba-34 {
  border: 34px #f1f9ff solid !important;
}
.alice-blue--bt-34 {
  border-top: 34px #f1f9ff solid !important;
}
.alice-blue--br-34 {
  border-right: 34px #f1f9ff solid !important;
}
.alice-blue--bl-34 {
  border-left: 34px #f1f9ff solid !important;
}
.alice-blue--bb-34 {
  border-bottom: 34px #f1f9ff solid !important;
}
.alice-blue--by-34 {
  border-top: 34px #f1f9ff solid !important;
  border-bottom: 34px #f1f9ff solid !important;
}
.alice-blue--bx-34 {
  border-right: 34px #f1f9ff solid !important;
  border-left: 34px #f1f9ff solid !important;
}
.alice-blue--ba-35 {
  border: 35px #f1f9ff solid !important;
}
.alice-blue--bt-35 {
  border-top: 35px #f1f9ff solid !important;
}
.alice-blue--br-35 {
  border-right: 35px #f1f9ff solid !important;
}
.alice-blue--bl-35 {
  border-left: 35px #f1f9ff solid !important;
}
.alice-blue--bb-35 {
  border-bottom: 35px #f1f9ff solid !important;
}
.alice-blue--by-35 {
  border-top: 35px #f1f9ff solid !important;
  border-bottom: 35px #f1f9ff solid !important;
}
.alice-blue--bx-35 {
  border-right: 35px #f1f9ff solid !important;
  border-left: 35px #f1f9ff solid !important;
}
.alice-blue--ba-36 {
  border: 36px #f1f9ff solid !important;
}
.alice-blue--bt-36 {
  border-top: 36px #f1f9ff solid !important;
}
.alice-blue--br-36 {
  border-right: 36px #f1f9ff solid !important;
}
.alice-blue--bl-36 {
  border-left: 36px #f1f9ff solid !important;
}
.alice-blue--bb-36 {
  border-bottom: 36px #f1f9ff solid !important;
}
.alice-blue--by-36 {
  border-top: 36px #f1f9ff solid !important;
  border-bottom: 36px #f1f9ff solid !important;
}
.alice-blue--bx-36 {
  border-right: 36px #f1f9ff solid !important;
  border-left: 36px #f1f9ff solid !important;
}
.alice-blue--ba-37 {
  border: 37px #f1f9ff solid !important;
}
.alice-blue--bt-37 {
  border-top: 37px #f1f9ff solid !important;
}
.alice-blue--br-37 {
  border-right: 37px #f1f9ff solid !important;
}
.alice-blue--bl-37 {
  border-left: 37px #f1f9ff solid !important;
}
.alice-blue--bb-37 {
  border-bottom: 37px #f1f9ff solid !important;
}
.alice-blue--by-37 {
  border-top: 37px #f1f9ff solid !important;
  border-bottom: 37px #f1f9ff solid !important;
}
.alice-blue--bx-37 {
  border-right: 37px #f1f9ff solid !important;
  border-left: 37px #f1f9ff solid !important;
}
.alice-blue--ba-38 {
  border: 38px #f1f9ff solid !important;
}
.alice-blue--bt-38 {
  border-top: 38px #f1f9ff solid !important;
}
.alice-blue--br-38 {
  border-right: 38px #f1f9ff solid !important;
}
.alice-blue--bl-38 {
  border-left: 38px #f1f9ff solid !important;
}
.alice-blue--bb-38 {
  border-bottom: 38px #f1f9ff solid !important;
}
.alice-blue--by-38 {
  border-top: 38px #f1f9ff solid !important;
  border-bottom: 38px #f1f9ff solid !important;
}
.alice-blue--bx-38 {
  border-right: 38px #f1f9ff solid !important;
  border-left: 38px #f1f9ff solid !important;
}
.alice-blue--ba-39 {
  border: 39px #f1f9ff solid !important;
}
.alice-blue--bt-39 {
  border-top: 39px #f1f9ff solid !important;
}
.alice-blue--br-39 {
  border-right: 39px #f1f9ff solid !important;
}
.alice-blue--bl-39 {
  border-left: 39px #f1f9ff solid !important;
}
.alice-blue--bb-39 {
  border-bottom: 39px #f1f9ff solid !important;
}
.alice-blue--by-39 {
  border-top: 39px #f1f9ff solid !important;
  border-bottom: 39px #f1f9ff solid !important;
}
.alice-blue--bx-39 {
  border-right: 39px #f1f9ff solid !important;
  border-left: 39px #f1f9ff solid !important;
}
.alice-blue--ba-40 {
  border: 40px #f1f9ff solid !important;
}
.alice-blue--bt-40 {
  border-top: 40px #f1f9ff solid !important;
}
.alice-blue--br-40 {
  border-right: 40px #f1f9ff solid !important;
}
.alice-blue--bl-40 {
  border-left: 40px #f1f9ff solid !important;
}
.alice-blue--bb-40 {
  border-bottom: 40px #f1f9ff solid !important;
}
.alice-blue--by-40 {
  border-top: 40px #f1f9ff solid !important;
  border-bottom: 40px #f1f9ff solid !important;
}
.alice-blue--bx-40 {
  border-right: 40px #f1f9ff solid !important;
  border-left: 40px #f1f9ff solid !important;
}
.alice-blue--ba-41 {
  border: 41px #f1f9ff solid !important;
}
.alice-blue--bt-41 {
  border-top: 41px #f1f9ff solid !important;
}
.alice-blue--br-41 {
  border-right: 41px #f1f9ff solid !important;
}
.alice-blue--bl-41 {
  border-left: 41px #f1f9ff solid !important;
}
.alice-blue--bb-41 {
  border-bottom: 41px #f1f9ff solid !important;
}
.alice-blue--by-41 {
  border-top: 41px #f1f9ff solid !important;
  border-bottom: 41px #f1f9ff solid !important;
}
.alice-blue--bx-41 {
  border-right: 41px #f1f9ff solid !important;
  border-left: 41px #f1f9ff solid !important;
}
.alice-blue--ba-42 {
  border: 42px #f1f9ff solid !important;
}
.alice-blue--bt-42 {
  border-top: 42px #f1f9ff solid !important;
}
.alice-blue--br-42 {
  border-right: 42px #f1f9ff solid !important;
}
.alice-blue--bl-42 {
  border-left: 42px #f1f9ff solid !important;
}
.alice-blue--bb-42 {
  border-bottom: 42px #f1f9ff solid !important;
}
.alice-blue--by-42 {
  border-top: 42px #f1f9ff solid !important;
  border-bottom: 42px #f1f9ff solid !important;
}
.alice-blue--bx-42 {
  border-right: 42px #f1f9ff solid !important;
  border-left: 42px #f1f9ff solid !important;
}
.alice-blue--ba-43 {
  border: 43px #f1f9ff solid !important;
}
.alice-blue--bt-43 {
  border-top: 43px #f1f9ff solid !important;
}
.alice-blue--br-43 {
  border-right: 43px #f1f9ff solid !important;
}
.alice-blue--bl-43 {
  border-left: 43px #f1f9ff solid !important;
}
.alice-blue--bb-43 {
  border-bottom: 43px #f1f9ff solid !important;
}
.alice-blue--by-43 {
  border-top: 43px #f1f9ff solid !important;
  border-bottom: 43px #f1f9ff solid !important;
}
.alice-blue--bx-43 {
  border-right: 43px #f1f9ff solid !important;
  border-left: 43px #f1f9ff solid !important;
}
.alice-blue--ba-44 {
  border: 44px #f1f9ff solid !important;
}
.alice-blue--bt-44 {
  border-top: 44px #f1f9ff solid !important;
}
.alice-blue--br-44 {
  border-right: 44px #f1f9ff solid !important;
}
.alice-blue--bl-44 {
  border-left: 44px #f1f9ff solid !important;
}
.alice-blue--bb-44 {
  border-bottom: 44px #f1f9ff solid !important;
}
.alice-blue--by-44 {
  border-top: 44px #f1f9ff solid !important;
  border-bottom: 44px #f1f9ff solid !important;
}
.alice-blue--bx-44 {
  border-right: 44px #f1f9ff solid !important;
  border-left: 44px #f1f9ff solid !important;
}
.alice-blue--ba-45 {
  border: 45px #f1f9ff solid !important;
}
.alice-blue--bt-45 {
  border-top: 45px #f1f9ff solid !important;
}
.alice-blue--br-45 {
  border-right: 45px #f1f9ff solid !important;
}
.alice-blue--bl-45 {
  border-left: 45px #f1f9ff solid !important;
}
.alice-blue--bb-45 {
  border-bottom: 45px #f1f9ff solid !important;
}
.alice-blue--by-45 {
  border-top: 45px #f1f9ff solid !important;
  border-bottom: 45px #f1f9ff solid !important;
}
.alice-blue--bx-45 {
  border-right: 45px #f1f9ff solid !important;
  border-left: 45px #f1f9ff solid !important;
}
.alice-blue--ba-46 {
  border: 46px #f1f9ff solid !important;
}
.alice-blue--bt-46 {
  border-top: 46px #f1f9ff solid !important;
}
.alice-blue--br-46 {
  border-right: 46px #f1f9ff solid !important;
}
.alice-blue--bl-46 {
  border-left: 46px #f1f9ff solid !important;
}
.alice-blue--bb-46 {
  border-bottom: 46px #f1f9ff solid !important;
}
.alice-blue--by-46 {
  border-top: 46px #f1f9ff solid !important;
  border-bottom: 46px #f1f9ff solid !important;
}
.alice-blue--bx-46 {
  border-right: 46px #f1f9ff solid !important;
  border-left: 46px #f1f9ff solid !important;
}
.alice-blue--ba-47 {
  border: 47px #f1f9ff solid !important;
}
.alice-blue--bt-47 {
  border-top: 47px #f1f9ff solid !important;
}
.alice-blue--br-47 {
  border-right: 47px #f1f9ff solid !important;
}
.alice-blue--bl-47 {
  border-left: 47px #f1f9ff solid !important;
}
.alice-blue--bb-47 {
  border-bottom: 47px #f1f9ff solid !important;
}
.alice-blue--by-47 {
  border-top: 47px #f1f9ff solid !important;
  border-bottom: 47px #f1f9ff solid !important;
}
.alice-blue--bx-47 {
  border-right: 47px #f1f9ff solid !important;
  border-left: 47px #f1f9ff solid !important;
}
.alice-blue--ba-48 {
  border: 48px #f1f9ff solid !important;
}
.alice-blue--bt-48 {
  border-top: 48px #f1f9ff solid !important;
}
.alice-blue--br-48 {
  border-right: 48px #f1f9ff solid !important;
}
.alice-blue--bl-48 {
  border-left: 48px #f1f9ff solid !important;
}
.alice-blue--bb-48 {
  border-bottom: 48px #f1f9ff solid !important;
}
.alice-blue--by-48 {
  border-top: 48px #f1f9ff solid !important;
  border-bottom: 48px #f1f9ff solid !important;
}
.alice-blue--bx-48 {
  border-right: 48px #f1f9ff solid !important;
  border-left: 48px #f1f9ff solid !important;
}
.alice-blue--ba-49 {
  border: 49px #f1f9ff solid !important;
}
.alice-blue--bt-49 {
  border-top: 49px #f1f9ff solid !important;
}
.alice-blue--br-49 {
  border-right: 49px #f1f9ff solid !important;
}
.alice-blue--bl-49 {
  border-left: 49px #f1f9ff solid !important;
}
.alice-blue--bb-49 {
  border-bottom: 49px #f1f9ff solid !important;
}
.alice-blue--by-49 {
  border-top: 49px #f1f9ff solid !important;
  border-bottom: 49px #f1f9ff solid !important;
}
.alice-blue--bx-49 {
  border-right: 49px #f1f9ff solid !important;
  border-left: 49px #f1f9ff solid !important;
}
.alice-blue--ba-50 {
  border: 50px #f1f9ff solid !important;
}
.alice-blue--bt-50 {
  border-top: 50px #f1f9ff solid !important;
}
.alice-blue--br-50 {
  border-right: 50px #f1f9ff solid !important;
}
.alice-blue--bl-50 {
  border-left: 50px #f1f9ff solid !important;
}
.alice-blue--bb-50 {
  border-bottom: 50px #f1f9ff solid !important;
}
.alice-blue--by-50 {
  border-top: 50px #f1f9ff solid !important;
  border-bottom: 50px #f1f9ff solid !important;
}
.alice-blue--bx-50 {
  border-right: 50px #f1f9ff solid !important;
  border-left: 50px #f1f9ff solid !important;
}
.alice-blue--ba-51 {
  border: 51px #f1f9ff solid !important;
}
.alice-blue--bt-51 {
  border-top: 51px #f1f9ff solid !important;
}
.alice-blue--br-51 {
  border-right: 51px #f1f9ff solid !important;
}
.alice-blue--bl-51 {
  border-left: 51px #f1f9ff solid !important;
}
.alice-blue--bb-51 {
  border-bottom: 51px #f1f9ff solid !important;
}
.alice-blue--by-51 {
  border-top: 51px #f1f9ff solid !important;
  border-bottom: 51px #f1f9ff solid !important;
}
.alice-blue--bx-51 {
  border-right: 51px #f1f9ff solid !important;
  border-left: 51px #f1f9ff solid !important;
}
.alice-blue--ba-52 {
  border: 52px #f1f9ff solid !important;
}
.alice-blue--bt-52 {
  border-top: 52px #f1f9ff solid !important;
}
.alice-blue--br-52 {
  border-right: 52px #f1f9ff solid !important;
}
.alice-blue--bl-52 {
  border-left: 52px #f1f9ff solid !important;
}
.alice-blue--bb-52 {
  border-bottom: 52px #f1f9ff solid !important;
}
.alice-blue--by-52 {
  border-top: 52px #f1f9ff solid !important;
  border-bottom: 52px #f1f9ff solid !important;
}
.alice-blue--bx-52 {
  border-right: 52px #f1f9ff solid !important;
  border-left: 52px #f1f9ff solid !important;
}
.alice-blue--ba-53 {
  border: 53px #f1f9ff solid !important;
}
.alice-blue--bt-53 {
  border-top: 53px #f1f9ff solid !important;
}
.alice-blue--br-53 {
  border-right: 53px #f1f9ff solid !important;
}
.alice-blue--bl-53 {
  border-left: 53px #f1f9ff solid !important;
}
.alice-blue--bb-53 {
  border-bottom: 53px #f1f9ff solid !important;
}
.alice-blue--by-53 {
  border-top: 53px #f1f9ff solid !important;
  border-bottom: 53px #f1f9ff solid !important;
}
.alice-blue--bx-53 {
  border-right: 53px #f1f9ff solid !important;
  border-left: 53px #f1f9ff solid !important;
}
.alice-blue--ba-54 {
  border: 54px #f1f9ff solid !important;
}
.alice-blue--bt-54 {
  border-top: 54px #f1f9ff solid !important;
}
.alice-blue--br-54 {
  border-right: 54px #f1f9ff solid !important;
}
.alice-blue--bl-54 {
  border-left: 54px #f1f9ff solid !important;
}
.alice-blue--bb-54 {
  border-bottom: 54px #f1f9ff solid !important;
}
.alice-blue--by-54 {
  border-top: 54px #f1f9ff solid !important;
  border-bottom: 54px #f1f9ff solid !important;
}
.alice-blue--bx-54 {
  border-right: 54px #f1f9ff solid !important;
  border-left: 54px #f1f9ff solid !important;
}
.alice-blue--ba-55 {
  border: 55px #f1f9ff solid !important;
}
.alice-blue--bt-55 {
  border-top: 55px #f1f9ff solid !important;
}
.alice-blue--br-55 {
  border-right: 55px #f1f9ff solid !important;
}
.alice-blue--bl-55 {
  border-left: 55px #f1f9ff solid !important;
}
.alice-blue--bb-55 {
  border-bottom: 55px #f1f9ff solid !important;
}
.alice-blue--by-55 {
  border-top: 55px #f1f9ff solid !important;
  border-bottom: 55px #f1f9ff solid !important;
}
.alice-blue--bx-55 {
  border-right: 55px #f1f9ff solid !important;
  border-left: 55px #f1f9ff solid !important;
}
.alice-blue--ba-56 {
  border: 56px #f1f9ff solid !important;
}
.alice-blue--bt-56 {
  border-top: 56px #f1f9ff solid !important;
}
.alice-blue--br-56 {
  border-right: 56px #f1f9ff solid !important;
}
.alice-blue--bl-56 {
  border-left: 56px #f1f9ff solid !important;
}
.alice-blue--bb-56 {
  border-bottom: 56px #f1f9ff solid !important;
}
.alice-blue--by-56 {
  border-top: 56px #f1f9ff solid !important;
  border-bottom: 56px #f1f9ff solid !important;
}
.alice-blue--bx-56 {
  border-right: 56px #f1f9ff solid !important;
  border-left: 56px #f1f9ff solid !important;
}
.alice-blue--ba-57 {
  border: 57px #f1f9ff solid !important;
}
.alice-blue--bt-57 {
  border-top: 57px #f1f9ff solid !important;
}
.alice-blue--br-57 {
  border-right: 57px #f1f9ff solid !important;
}
.alice-blue--bl-57 {
  border-left: 57px #f1f9ff solid !important;
}
.alice-blue--bb-57 {
  border-bottom: 57px #f1f9ff solid !important;
}
.alice-blue--by-57 {
  border-top: 57px #f1f9ff solid !important;
  border-bottom: 57px #f1f9ff solid !important;
}
.alice-blue--bx-57 {
  border-right: 57px #f1f9ff solid !important;
  border-left: 57px #f1f9ff solid !important;
}
.alice-blue--ba-58 {
  border: 58px #f1f9ff solid !important;
}
.alice-blue--bt-58 {
  border-top: 58px #f1f9ff solid !important;
}
.alice-blue--br-58 {
  border-right: 58px #f1f9ff solid !important;
}
.alice-blue--bl-58 {
  border-left: 58px #f1f9ff solid !important;
}
.alice-blue--bb-58 {
  border-bottom: 58px #f1f9ff solid !important;
}
.alice-blue--by-58 {
  border-top: 58px #f1f9ff solid !important;
  border-bottom: 58px #f1f9ff solid !important;
}
.alice-blue--bx-58 {
  border-right: 58px #f1f9ff solid !important;
  border-left: 58px #f1f9ff solid !important;
}
.alice-blue--ba-59 {
  border: 59px #f1f9ff solid !important;
}
.alice-blue--bt-59 {
  border-top: 59px #f1f9ff solid !important;
}
.alice-blue--br-59 {
  border-right: 59px #f1f9ff solid !important;
}
.alice-blue--bl-59 {
  border-left: 59px #f1f9ff solid !important;
}
.alice-blue--bb-59 {
  border-bottom: 59px #f1f9ff solid !important;
}
.alice-blue--by-59 {
  border-top: 59px #f1f9ff solid !important;
  border-bottom: 59px #f1f9ff solid !important;
}
.alice-blue--bx-59 {
  border-right: 59px #f1f9ff solid !important;
  border-left: 59px #f1f9ff solid !important;
}
.alice-blue--ba-60 {
  border: 60px #f1f9ff solid !important;
}
.alice-blue--bt-60 {
  border-top: 60px #f1f9ff solid !important;
}
.alice-blue--br-60 {
  border-right: 60px #f1f9ff solid !important;
}
.alice-blue--bl-60 {
  border-left: 60px #f1f9ff solid !important;
}
.alice-blue--bb-60 {
  border-bottom: 60px #f1f9ff solid !important;
}
.alice-blue--by-60 {
  border-top: 60px #f1f9ff solid !important;
  border-bottom: 60px #f1f9ff solid !important;
}
.alice-blue--bx-60 {
  border-right: 60px #f1f9ff solid !important;
  border-left: 60px #f1f9ff solid !important;
}
.alice-blue--ba-61 {
  border: 61px #f1f9ff solid !important;
}
.alice-blue--bt-61 {
  border-top: 61px #f1f9ff solid !important;
}
.alice-blue--br-61 {
  border-right: 61px #f1f9ff solid !important;
}
.alice-blue--bl-61 {
  border-left: 61px #f1f9ff solid !important;
}
.alice-blue--bb-61 {
  border-bottom: 61px #f1f9ff solid !important;
}
.alice-blue--by-61 {
  border-top: 61px #f1f9ff solid !important;
  border-bottom: 61px #f1f9ff solid !important;
}
.alice-blue--bx-61 {
  border-right: 61px #f1f9ff solid !important;
  border-left: 61px #f1f9ff solid !important;
}
.alice-blue--ba-62 {
  border: 62px #f1f9ff solid !important;
}
.alice-blue--bt-62 {
  border-top: 62px #f1f9ff solid !important;
}
.alice-blue--br-62 {
  border-right: 62px #f1f9ff solid !important;
}
.alice-blue--bl-62 {
  border-left: 62px #f1f9ff solid !important;
}
.alice-blue--bb-62 {
  border-bottom: 62px #f1f9ff solid !important;
}
.alice-blue--by-62 {
  border-top: 62px #f1f9ff solid !important;
  border-bottom: 62px #f1f9ff solid !important;
}
.alice-blue--bx-62 {
  border-right: 62px #f1f9ff solid !important;
  border-left: 62px #f1f9ff solid !important;
}
.alice-blue--ba-63 {
  border: 63px #f1f9ff solid !important;
}
.alice-blue--bt-63 {
  border-top: 63px #f1f9ff solid !important;
}
.alice-blue--br-63 {
  border-right: 63px #f1f9ff solid !important;
}
.alice-blue--bl-63 {
  border-left: 63px #f1f9ff solid !important;
}
.alice-blue--bb-63 {
  border-bottom: 63px #f1f9ff solid !important;
}
.alice-blue--by-63 {
  border-top: 63px #f1f9ff solid !important;
  border-bottom: 63px #f1f9ff solid !important;
}
.alice-blue--bx-63 {
  border-right: 63px #f1f9ff solid !important;
  border-left: 63px #f1f9ff solid !important;
}
.alice-blue--ba-64 {
  border: 64px #f1f9ff solid !important;
}
.alice-blue--bt-64 {
  border-top: 64px #f1f9ff solid !important;
}
.alice-blue--br-64 {
  border-right: 64px #f1f9ff solid !important;
}
.alice-blue--bl-64 {
  border-left: 64px #f1f9ff solid !important;
}
.alice-blue--bb-64 {
  border-bottom: 64px #f1f9ff solid !important;
}
.alice-blue--by-64 {
  border-top: 64px #f1f9ff solid !important;
  border-bottom: 64px #f1f9ff solid !important;
}
.alice-blue--bx-64 {
  border-right: 64px #f1f9ff solid !important;
  border-left: 64px #f1f9ff solid !important;
}
.alice-blue--ba-65 {
  border: 65px #f1f9ff solid !important;
}
.alice-blue--bt-65 {
  border-top: 65px #f1f9ff solid !important;
}
.alice-blue--br-65 {
  border-right: 65px #f1f9ff solid !important;
}
.alice-blue--bl-65 {
  border-left: 65px #f1f9ff solid !important;
}
.alice-blue--bb-65 {
  border-bottom: 65px #f1f9ff solid !important;
}
.alice-blue--by-65 {
  border-top: 65px #f1f9ff solid !important;
  border-bottom: 65px #f1f9ff solid !important;
}
.alice-blue--bx-65 {
  border-right: 65px #f1f9ff solid !important;
  border-left: 65px #f1f9ff solid !important;
}
.alice-blue--ba-66 {
  border: 66px #f1f9ff solid !important;
}
.alice-blue--bt-66 {
  border-top: 66px #f1f9ff solid !important;
}
.alice-blue--br-66 {
  border-right: 66px #f1f9ff solid !important;
}
.alice-blue--bl-66 {
  border-left: 66px #f1f9ff solid !important;
}
.alice-blue--bb-66 {
  border-bottom: 66px #f1f9ff solid !important;
}
.alice-blue--by-66 {
  border-top: 66px #f1f9ff solid !important;
  border-bottom: 66px #f1f9ff solid !important;
}
.alice-blue--bx-66 {
  border-right: 66px #f1f9ff solid !important;
  border-left: 66px #f1f9ff solid !important;
}
.alice-blue--ba-67 {
  border: 67px #f1f9ff solid !important;
}
.alice-blue--bt-67 {
  border-top: 67px #f1f9ff solid !important;
}
.alice-blue--br-67 {
  border-right: 67px #f1f9ff solid !important;
}
.alice-blue--bl-67 {
  border-left: 67px #f1f9ff solid !important;
}
.alice-blue--bb-67 {
  border-bottom: 67px #f1f9ff solid !important;
}
.alice-blue--by-67 {
  border-top: 67px #f1f9ff solid !important;
  border-bottom: 67px #f1f9ff solid !important;
}
.alice-blue--bx-67 {
  border-right: 67px #f1f9ff solid !important;
  border-left: 67px #f1f9ff solid !important;
}
.alice-blue--ba-68 {
  border: 68px #f1f9ff solid !important;
}
.alice-blue--bt-68 {
  border-top: 68px #f1f9ff solid !important;
}
.alice-blue--br-68 {
  border-right: 68px #f1f9ff solid !important;
}
.alice-blue--bl-68 {
  border-left: 68px #f1f9ff solid !important;
}
.alice-blue--bb-68 {
  border-bottom: 68px #f1f9ff solid !important;
}
.alice-blue--by-68 {
  border-top: 68px #f1f9ff solid !important;
  border-bottom: 68px #f1f9ff solid !important;
}
.alice-blue--bx-68 {
  border-right: 68px #f1f9ff solid !important;
  border-left: 68px #f1f9ff solid !important;
}
.alice-blue--ba-69 {
  border: 69px #f1f9ff solid !important;
}
.alice-blue--bt-69 {
  border-top: 69px #f1f9ff solid !important;
}
.alice-blue--br-69 {
  border-right: 69px #f1f9ff solid !important;
}
.alice-blue--bl-69 {
  border-left: 69px #f1f9ff solid !important;
}
.alice-blue--bb-69 {
  border-bottom: 69px #f1f9ff solid !important;
}
.alice-blue--by-69 {
  border-top: 69px #f1f9ff solid !important;
  border-bottom: 69px #f1f9ff solid !important;
}
.alice-blue--bx-69 {
  border-right: 69px #f1f9ff solid !important;
  border-left: 69px #f1f9ff solid !important;
}
.alice-blue--ba-70 {
  border: 70px #f1f9ff solid !important;
}
.alice-blue--bt-70 {
  border-top: 70px #f1f9ff solid !important;
}
.alice-blue--br-70 {
  border-right: 70px #f1f9ff solid !important;
}
.alice-blue--bl-70 {
  border-left: 70px #f1f9ff solid !important;
}
.alice-blue--bb-70 {
  border-bottom: 70px #f1f9ff solid !important;
}
.alice-blue--by-70 {
  border-top: 70px #f1f9ff solid !important;
  border-bottom: 70px #f1f9ff solid !important;
}
.alice-blue--bx-70 {
  border-right: 70px #f1f9ff solid !important;
  border-left: 70px #f1f9ff solid !important;
}
.alice-blue--ba-71 {
  border: 71px #f1f9ff solid !important;
}
.alice-blue--bt-71 {
  border-top: 71px #f1f9ff solid !important;
}
.alice-blue--br-71 {
  border-right: 71px #f1f9ff solid !important;
}
.alice-blue--bl-71 {
  border-left: 71px #f1f9ff solid !important;
}
.alice-blue--bb-71 {
  border-bottom: 71px #f1f9ff solid !important;
}
.alice-blue--by-71 {
  border-top: 71px #f1f9ff solid !important;
  border-bottom: 71px #f1f9ff solid !important;
}
.alice-blue--bx-71 {
  border-right: 71px #f1f9ff solid !important;
  border-left: 71px #f1f9ff solid !important;
}
.alice-blue--ba-72 {
  border: 72px #f1f9ff solid !important;
}
.alice-blue--bt-72 {
  border-top: 72px #f1f9ff solid !important;
}
.alice-blue--br-72 {
  border-right: 72px #f1f9ff solid !important;
}
.alice-blue--bl-72 {
  border-left: 72px #f1f9ff solid !important;
}
.alice-blue--bb-72 {
  border-bottom: 72px #f1f9ff solid !important;
}
.alice-blue--by-72 {
  border-top: 72px #f1f9ff solid !important;
  border-bottom: 72px #f1f9ff solid !important;
}
.alice-blue--bx-72 {
  border-right: 72px #f1f9ff solid !important;
  border-left: 72px #f1f9ff solid !important;
}
.alice-blue--ba-73 {
  border: 73px #f1f9ff solid !important;
}
.alice-blue--bt-73 {
  border-top: 73px #f1f9ff solid !important;
}
.alice-blue--br-73 {
  border-right: 73px #f1f9ff solid !important;
}
.alice-blue--bl-73 {
  border-left: 73px #f1f9ff solid !important;
}
.alice-blue--bb-73 {
  border-bottom: 73px #f1f9ff solid !important;
}
.alice-blue--by-73 {
  border-top: 73px #f1f9ff solid !important;
  border-bottom: 73px #f1f9ff solid !important;
}
.alice-blue--bx-73 {
  border-right: 73px #f1f9ff solid !important;
  border-left: 73px #f1f9ff solid !important;
}
.alice-blue--ba-74 {
  border: 74px #f1f9ff solid !important;
}
.alice-blue--bt-74 {
  border-top: 74px #f1f9ff solid !important;
}
.alice-blue--br-74 {
  border-right: 74px #f1f9ff solid !important;
}
.alice-blue--bl-74 {
  border-left: 74px #f1f9ff solid !important;
}
.alice-blue--bb-74 {
  border-bottom: 74px #f1f9ff solid !important;
}
.alice-blue--by-74 {
  border-top: 74px #f1f9ff solid !important;
  border-bottom: 74px #f1f9ff solid !important;
}
.alice-blue--bx-74 {
  border-right: 74px #f1f9ff solid !important;
  border-left: 74px #f1f9ff solid !important;
}
.alice-blue--ba-75 {
  border: 75px #f1f9ff solid !important;
}
.alice-blue--bt-75 {
  border-top: 75px #f1f9ff solid !important;
}
.alice-blue--br-75 {
  border-right: 75px #f1f9ff solid !important;
}
.alice-blue--bl-75 {
  border-left: 75px #f1f9ff solid !important;
}
.alice-blue--bb-75 {
  border-bottom: 75px #f1f9ff solid !important;
}
.alice-blue--by-75 {
  border-top: 75px #f1f9ff solid !important;
  border-bottom: 75px #f1f9ff solid !important;
}
.alice-blue--bx-75 {
  border-right: 75px #f1f9ff solid !important;
  border-left: 75px #f1f9ff solid !important;
}
.alice-blue--ba-76 {
  border: 76px #f1f9ff solid !important;
}
.alice-blue--bt-76 {
  border-top: 76px #f1f9ff solid !important;
}
.alice-blue--br-76 {
  border-right: 76px #f1f9ff solid !important;
}
.alice-blue--bl-76 {
  border-left: 76px #f1f9ff solid !important;
}
.alice-blue--bb-76 {
  border-bottom: 76px #f1f9ff solid !important;
}
.alice-blue--by-76 {
  border-top: 76px #f1f9ff solid !important;
  border-bottom: 76px #f1f9ff solid !important;
}
.alice-blue--bx-76 {
  border-right: 76px #f1f9ff solid !important;
  border-left: 76px #f1f9ff solid !important;
}
.alice-blue--ba-77 {
  border: 77px #f1f9ff solid !important;
}
.alice-blue--bt-77 {
  border-top: 77px #f1f9ff solid !important;
}
.alice-blue--br-77 {
  border-right: 77px #f1f9ff solid !important;
}
.alice-blue--bl-77 {
  border-left: 77px #f1f9ff solid !important;
}
.alice-blue--bb-77 {
  border-bottom: 77px #f1f9ff solid !important;
}
.alice-blue--by-77 {
  border-top: 77px #f1f9ff solid !important;
  border-bottom: 77px #f1f9ff solid !important;
}
.alice-blue--bx-77 {
  border-right: 77px #f1f9ff solid !important;
  border-left: 77px #f1f9ff solid !important;
}
.alice-blue--ba-78 {
  border: 78px #f1f9ff solid !important;
}
.alice-blue--bt-78 {
  border-top: 78px #f1f9ff solid !important;
}
.alice-blue--br-78 {
  border-right: 78px #f1f9ff solid !important;
}
.alice-blue--bl-78 {
  border-left: 78px #f1f9ff solid !important;
}
.alice-blue--bb-78 {
  border-bottom: 78px #f1f9ff solid !important;
}
.alice-blue--by-78 {
  border-top: 78px #f1f9ff solid !important;
  border-bottom: 78px #f1f9ff solid !important;
}
.alice-blue--bx-78 {
  border-right: 78px #f1f9ff solid !important;
  border-left: 78px #f1f9ff solid !important;
}
.alice-blue--ba-79 {
  border: 79px #f1f9ff solid !important;
}
.alice-blue--bt-79 {
  border-top: 79px #f1f9ff solid !important;
}
.alice-blue--br-79 {
  border-right: 79px #f1f9ff solid !important;
}
.alice-blue--bl-79 {
  border-left: 79px #f1f9ff solid !important;
}
.alice-blue--bb-79 {
  border-bottom: 79px #f1f9ff solid !important;
}
.alice-blue--by-79 {
  border-top: 79px #f1f9ff solid !important;
  border-bottom: 79px #f1f9ff solid !important;
}
.alice-blue--bx-79 {
  border-right: 79px #f1f9ff solid !important;
  border-left: 79px #f1f9ff solid !important;
}
.alice-blue--ba-80 {
  border: 80px #f1f9ff solid !important;
}
.alice-blue--bt-80 {
  border-top: 80px #f1f9ff solid !important;
}
.alice-blue--br-80 {
  border-right: 80px #f1f9ff solid !important;
}
.alice-blue--bl-80 {
  border-left: 80px #f1f9ff solid !important;
}
.alice-blue--bb-80 {
  border-bottom: 80px #f1f9ff solid !important;
}
.alice-blue--by-80 {
  border-top: 80px #f1f9ff solid !important;
  border-bottom: 80px #f1f9ff solid !important;
}
.alice-blue--bx-80 {
  border-right: 80px #f1f9ff solid !important;
  border-left: 80px #f1f9ff solid !important;
}
.alice-blue--ba-81 {
  border: 81px #f1f9ff solid !important;
}
.alice-blue--bt-81 {
  border-top: 81px #f1f9ff solid !important;
}
.alice-blue--br-81 {
  border-right: 81px #f1f9ff solid !important;
}
.alice-blue--bl-81 {
  border-left: 81px #f1f9ff solid !important;
}
.alice-blue--bb-81 {
  border-bottom: 81px #f1f9ff solid !important;
}
.alice-blue--by-81 {
  border-top: 81px #f1f9ff solid !important;
  border-bottom: 81px #f1f9ff solid !important;
}
.alice-blue--bx-81 {
  border-right: 81px #f1f9ff solid !important;
  border-left: 81px #f1f9ff solid !important;
}
.alice-blue--ba-82 {
  border: 82px #f1f9ff solid !important;
}
.alice-blue--bt-82 {
  border-top: 82px #f1f9ff solid !important;
}
.alice-blue--br-82 {
  border-right: 82px #f1f9ff solid !important;
}
.alice-blue--bl-82 {
  border-left: 82px #f1f9ff solid !important;
}
.alice-blue--bb-82 {
  border-bottom: 82px #f1f9ff solid !important;
}
.alice-blue--by-82 {
  border-top: 82px #f1f9ff solid !important;
  border-bottom: 82px #f1f9ff solid !important;
}
.alice-blue--bx-82 {
  border-right: 82px #f1f9ff solid !important;
  border-left: 82px #f1f9ff solid !important;
}
.alice-blue--ba-83 {
  border: 83px #f1f9ff solid !important;
}
.alice-blue--bt-83 {
  border-top: 83px #f1f9ff solid !important;
}
.alice-blue--br-83 {
  border-right: 83px #f1f9ff solid !important;
}
.alice-blue--bl-83 {
  border-left: 83px #f1f9ff solid !important;
}
.alice-blue--bb-83 {
  border-bottom: 83px #f1f9ff solid !important;
}
.alice-blue--by-83 {
  border-top: 83px #f1f9ff solid !important;
  border-bottom: 83px #f1f9ff solid !important;
}
.alice-blue--bx-83 {
  border-right: 83px #f1f9ff solid !important;
  border-left: 83px #f1f9ff solid !important;
}
.alice-blue--ba-84 {
  border: 84px #f1f9ff solid !important;
}
.alice-blue--bt-84 {
  border-top: 84px #f1f9ff solid !important;
}
.alice-blue--br-84 {
  border-right: 84px #f1f9ff solid !important;
}
.alice-blue--bl-84 {
  border-left: 84px #f1f9ff solid !important;
}
.alice-blue--bb-84 {
  border-bottom: 84px #f1f9ff solid !important;
}
.alice-blue--by-84 {
  border-top: 84px #f1f9ff solid !important;
  border-bottom: 84px #f1f9ff solid !important;
}
.alice-blue--bx-84 {
  border-right: 84px #f1f9ff solid !important;
  border-left: 84px #f1f9ff solid !important;
}
.alice-blue--ba-85 {
  border: 85px #f1f9ff solid !important;
}
.alice-blue--bt-85 {
  border-top: 85px #f1f9ff solid !important;
}
.alice-blue--br-85 {
  border-right: 85px #f1f9ff solid !important;
}
.alice-blue--bl-85 {
  border-left: 85px #f1f9ff solid !important;
}
.alice-blue--bb-85 {
  border-bottom: 85px #f1f9ff solid !important;
}
.alice-blue--by-85 {
  border-top: 85px #f1f9ff solid !important;
  border-bottom: 85px #f1f9ff solid !important;
}
.alice-blue--bx-85 {
  border-right: 85px #f1f9ff solid !important;
  border-left: 85px #f1f9ff solid !important;
}
.alice-blue--ba-86 {
  border: 86px #f1f9ff solid !important;
}
.alice-blue--bt-86 {
  border-top: 86px #f1f9ff solid !important;
}
.alice-blue--br-86 {
  border-right: 86px #f1f9ff solid !important;
}
.alice-blue--bl-86 {
  border-left: 86px #f1f9ff solid !important;
}
.alice-blue--bb-86 {
  border-bottom: 86px #f1f9ff solid !important;
}
.alice-blue--by-86 {
  border-top: 86px #f1f9ff solid !important;
  border-bottom: 86px #f1f9ff solid !important;
}
.alice-blue--bx-86 {
  border-right: 86px #f1f9ff solid !important;
  border-left: 86px #f1f9ff solid !important;
}
.alice-blue--ba-87 {
  border: 87px #f1f9ff solid !important;
}
.alice-blue--bt-87 {
  border-top: 87px #f1f9ff solid !important;
}
.alice-blue--br-87 {
  border-right: 87px #f1f9ff solid !important;
}
.alice-blue--bl-87 {
  border-left: 87px #f1f9ff solid !important;
}
.alice-blue--bb-87 {
  border-bottom: 87px #f1f9ff solid !important;
}
.alice-blue--by-87 {
  border-top: 87px #f1f9ff solid !important;
  border-bottom: 87px #f1f9ff solid !important;
}
.alice-blue--bx-87 {
  border-right: 87px #f1f9ff solid !important;
  border-left: 87px #f1f9ff solid !important;
}
.alice-blue--ba-88 {
  border: 88px #f1f9ff solid !important;
}
.alice-blue--bt-88 {
  border-top: 88px #f1f9ff solid !important;
}
.alice-blue--br-88 {
  border-right: 88px #f1f9ff solid !important;
}
.alice-blue--bl-88 {
  border-left: 88px #f1f9ff solid !important;
}
.alice-blue--bb-88 {
  border-bottom: 88px #f1f9ff solid !important;
}
.alice-blue--by-88 {
  border-top: 88px #f1f9ff solid !important;
  border-bottom: 88px #f1f9ff solid !important;
}
.alice-blue--bx-88 {
  border-right: 88px #f1f9ff solid !important;
  border-left: 88px #f1f9ff solid !important;
}
.alice-blue--ba-89 {
  border: 89px #f1f9ff solid !important;
}
.alice-blue--bt-89 {
  border-top: 89px #f1f9ff solid !important;
}
.alice-blue--br-89 {
  border-right: 89px #f1f9ff solid !important;
}
.alice-blue--bl-89 {
  border-left: 89px #f1f9ff solid !important;
}
.alice-blue--bb-89 {
  border-bottom: 89px #f1f9ff solid !important;
}
.alice-blue--by-89 {
  border-top: 89px #f1f9ff solid !important;
  border-bottom: 89px #f1f9ff solid !important;
}
.alice-blue--bx-89 {
  border-right: 89px #f1f9ff solid !important;
  border-left: 89px #f1f9ff solid !important;
}
.alice-blue--ba-90 {
  border: 90px #f1f9ff solid !important;
}
.alice-blue--bt-90 {
  border-top: 90px #f1f9ff solid !important;
}
.alice-blue--br-90 {
  border-right: 90px #f1f9ff solid !important;
}
.alice-blue--bl-90 {
  border-left: 90px #f1f9ff solid !important;
}
.alice-blue--bb-90 {
  border-bottom: 90px #f1f9ff solid !important;
}
.alice-blue--by-90 {
  border-top: 90px #f1f9ff solid !important;
  border-bottom: 90px #f1f9ff solid !important;
}
.alice-blue--bx-90 {
  border-right: 90px #f1f9ff solid !important;
  border-left: 90px #f1f9ff solid !important;
}
.alice-blue--ba-91 {
  border: 91px #f1f9ff solid !important;
}
.alice-blue--bt-91 {
  border-top: 91px #f1f9ff solid !important;
}
.alice-blue--br-91 {
  border-right: 91px #f1f9ff solid !important;
}
.alice-blue--bl-91 {
  border-left: 91px #f1f9ff solid !important;
}
.alice-blue--bb-91 {
  border-bottom: 91px #f1f9ff solid !important;
}
.alice-blue--by-91 {
  border-top: 91px #f1f9ff solid !important;
  border-bottom: 91px #f1f9ff solid !important;
}
.alice-blue--bx-91 {
  border-right: 91px #f1f9ff solid !important;
  border-left: 91px #f1f9ff solid !important;
}
.alice-blue--ba-92 {
  border: 92px #f1f9ff solid !important;
}
.alice-blue--bt-92 {
  border-top: 92px #f1f9ff solid !important;
}
.alice-blue--br-92 {
  border-right: 92px #f1f9ff solid !important;
}
.alice-blue--bl-92 {
  border-left: 92px #f1f9ff solid !important;
}
.alice-blue--bb-92 {
  border-bottom: 92px #f1f9ff solid !important;
}
.alice-blue--by-92 {
  border-top: 92px #f1f9ff solid !important;
  border-bottom: 92px #f1f9ff solid !important;
}
.alice-blue--bx-92 {
  border-right: 92px #f1f9ff solid !important;
  border-left: 92px #f1f9ff solid !important;
}
.alice-blue--ba-93 {
  border: 93px #f1f9ff solid !important;
}
.alice-blue--bt-93 {
  border-top: 93px #f1f9ff solid !important;
}
.alice-blue--br-93 {
  border-right: 93px #f1f9ff solid !important;
}
.alice-blue--bl-93 {
  border-left: 93px #f1f9ff solid !important;
}
.alice-blue--bb-93 {
  border-bottom: 93px #f1f9ff solid !important;
}
.alice-blue--by-93 {
  border-top: 93px #f1f9ff solid !important;
  border-bottom: 93px #f1f9ff solid !important;
}
.alice-blue--bx-93 {
  border-right: 93px #f1f9ff solid !important;
  border-left: 93px #f1f9ff solid !important;
}
.alice-blue--ba-94 {
  border: 94px #f1f9ff solid !important;
}
.alice-blue--bt-94 {
  border-top: 94px #f1f9ff solid !important;
}
.alice-blue--br-94 {
  border-right: 94px #f1f9ff solid !important;
}
.alice-blue--bl-94 {
  border-left: 94px #f1f9ff solid !important;
}
.alice-blue--bb-94 {
  border-bottom: 94px #f1f9ff solid !important;
}
.alice-blue--by-94 {
  border-top: 94px #f1f9ff solid !important;
  border-bottom: 94px #f1f9ff solid !important;
}
.alice-blue--bx-94 {
  border-right: 94px #f1f9ff solid !important;
  border-left: 94px #f1f9ff solid !important;
}
.alice-blue--ba-95 {
  border: 95px #f1f9ff solid !important;
}
.alice-blue--bt-95 {
  border-top: 95px #f1f9ff solid !important;
}
.alice-blue--br-95 {
  border-right: 95px #f1f9ff solid !important;
}
.alice-blue--bl-95 {
  border-left: 95px #f1f9ff solid !important;
}
.alice-blue--bb-95 {
  border-bottom: 95px #f1f9ff solid !important;
}
.alice-blue--by-95 {
  border-top: 95px #f1f9ff solid !important;
  border-bottom: 95px #f1f9ff solid !important;
}
.alice-blue--bx-95 {
  border-right: 95px #f1f9ff solid !important;
  border-left: 95px #f1f9ff solid !important;
}
.alice-blue--ba-96 {
  border: 96px #f1f9ff solid !important;
}
.alice-blue--bt-96 {
  border-top: 96px #f1f9ff solid !important;
}
.alice-blue--br-96 {
  border-right: 96px #f1f9ff solid !important;
}
.alice-blue--bl-96 {
  border-left: 96px #f1f9ff solid !important;
}
.alice-blue--bb-96 {
  border-bottom: 96px #f1f9ff solid !important;
}
.alice-blue--by-96 {
  border-top: 96px #f1f9ff solid !important;
  border-bottom: 96px #f1f9ff solid !important;
}
.alice-blue--bx-96 {
  border-right: 96px #f1f9ff solid !important;
  border-left: 96px #f1f9ff solid !important;
}
.alice-blue--ba-97 {
  border: 97px #f1f9ff solid !important;
}
.alice-blue--bt-97 {
  border-top: 97px #f1f9ff solid !important;
}
.alice-blue--br-97 {
  border-right: 97px #f1f9ff solid !important;
}
.alice-blue--bl-97 {
  border-left: 97px #f1f9ff solid !important;
}
.alice-blue--bb-97 {
  border-bottom: 97px #f1f9ff solid !important;
}
.alice-blue--by-97 {
  border-top: 97px #f1f9ff solid !important;
  border-bottom: 97px #f1f9ff solid !important;
}
.alice-blue--bx-97 {
  border-right: 97px #f1f9ff solid !important;
  border-left: 97px #f1f9ff solid !important;
}
.alice-blue--ba-98 {
  border: 98px #f1f9ff solid !important;
}
.alice-blue--bt-98 {
  border-top: 98px #f1f9ff solid !important;
}
.alice-blue--br-98 {
  border-right: 98px #f1f9ff solid !important;
}
.alice-blue--bl-98 {
  border-left: 98px #f1f9ff solid !important;
}
.alice-blue--bb-98 {
  border-bottom: 98px #f1f9ff solid !important;
}
.alice-blue--by-98 {
  border-top: 98px #f1f9ff solid !important;
  border-bottom: 98px #f1f9ff solid !important;
}
.alice-blue--bx-98 {
  border-right: 98px #f1f9ff solid !important;
  border-left: 98px #f1f9ff solid !important;
}
.alice-blue--ba-99 {
  border: 99px #f1f9ff solid !important;
}
.alice-blue--bt-99 {
  border-top: 99px #f1f9ff solid !important;
}
.alice-blue--br-99 {
  border-right: 99px #f1f9ff solid !important;
}
.alice-blue--bl-99 {
  border-left: 99px #f1f9ff solid !important;
}
.alice-blue--bb-99 {
  border-bottom: 99px #f1f9ff solid !important;
}
.alice-blue--by-99 {
  border-top: 99px #f1f9ff solid !important;
  border-bottom: 99px #f1f9ff solid !important;
}
.alice-blue--bx-99 {
  border-right: 99px #f1f9ff solid !important;
  border-left: 99px #f1f9ff solid !important;
}
.alice-blue--ba-100 {
  border: 100px #f1f9ff solid !important;
}
.alice-blue--bt-100 {
  border-top: 100px #f1f9ff solid !important;
}
.alice-blue--br-100 {
  border-right: 100px #f1f9ff solid !important;
}
.alice-blue--bl-100 {
  border-left: 100px #f1f9ff solid !important;
}
.alice-blue--bb-100 {
  border-bottom: 100px #f1f9ff solid !important;
}
.alice-blue--by-100 {
  border-top: 100px #f1f9ff solid !important;
  border-bottom: 100px #f1f9ff solid !important;
}
.alice-blue--bx-100 {
  border-right: 100px #f1f9ff solid !important;
  border-left: 100px #f1f9ff solid !important;
}
.gray-chateau--ba-1 {
  border: 1px #a0a4a8 solid !important;
}
.gray-chateau--bt-1 {
  border-top: 1px #a0a4a8 solid !important;
}
.gray-chateau--br-1 {
  border-right: 1px #a0a4a8 solid !important;
}
.gray-chateau--bl-1 {
  border-left: 1px #a0a4a8 solid !important;
}
.gray-chateau--bb-1 {
  border-bottom: 1px #a0a4a8 solid !important;
}
.gray-chateau--by-1 {
  border-top: 1px #a0a4a8 solid !important;
  border-bottom: 1px #a0a4a8 solid !important;
}
.gray-chateau--bx-1 {
  border-right: 1px #a0a4a8 solid !important;
  border-left: 1px #a0a4a8 solid !important;
}
.gray-chateau--ba-2 {
  border: 2px #a0a4a8 solid !important;
}
.gray-chateau--bt-2 {
  border-top: 2px #a0a4a8 solid !important;
}
.gray-chateau--br-2 {
  border-right: 2px #a0a4a8 solid !important;
}
.gray-chateau--bl-2 {
  border-left: 2px #a0a4a8 solid !important;
}
.gray-chateau--bb-2 {
  border-bottom: 2px #a0a4a8 solid !important;
}
.gray-chateau--by-2 {
  border-top: 2px #a0a4a8 solid !important;
  border-bottom: 2px #a0a4a8 solid !important;
}
.gray-chateau--bx-2 {
  border-right: 2px #a0a4a8 solid !important;
  border-left: 2px #a0a4a8 solid !important;
}
.gray-chateau--ba-3 {
  border: 3px #a0a4a8 solid !important;
}
.gray-chateau--bt-3 {
  border-top: 3px #a0a4a8 solid !important;
}
.gray-chateau--br-3 {
  border-right: 3px #a0a4a8 solid !important;
}
.gray-chateau--bl-3 {
  border-left: 3px #a0a4a8 solid !important;
}
.gray-chateau--bb-3 {
  border-bottom: 3px #a0a4a8 solid !important;
}
.gray-chateau--by-3 {
  border-top: 3px #a0a4a8 solid !important;
  border-bottom: 3px #a0a4a8 solid !important;
}
.gray-chateau--bx-3 {
  border-right: 3px #a0a4a8 solid !important;
  border-left: 3px #a0a4a8 solid !important;
}
.gray-chateau--ba-4 {
  border: 4px #a0a4a8 solid !important;
}
.gray-chateau--bt-4 {
  border-top: 4px #a0a4a8 solid !important;
}
.gray-chateau--br-4 {
  border-right: 4px #a0a4a8 solid !important;
}
.gray-chateau--bl-4 {
  border-left: 4px #a0a4a8 solid !important;
}
.gray-chateau--bb-4 {
  border-bottom: 4px #a0a4a8 solid !important;
}
.gray-chateau--by-4 {
  border-top: 4px #a0a4a8 solid !important;
  border-bottom: 4px #a0a4a8 solid !important;
}
.gray-chateau--bx-4 {
  border-right: 4px #a0a4a8 solid !important;
  border-left: 4px #a0a4a8 solid !important;
}
.gray-chateau--ba-5 {
  border: 5px #a0a4a8 solid !important;
}
.gray-chateau--bt-5 {
  border-top: 5px #a0a4a8 solid !important;
}
.gray-chateau--br-5 {
  border-right: 5px #a0a4a8 solid !important;
}
.gray-chateau--bl-5 {
  border-left: 5px #a0a4a8 solid !important;
}
.gray-chateau--bb-5 {
  border-bottom: 5px #a0a4a8 solid !important;
}
.gray-chateau--by-5 {
  border-top: 5px #a0a4a8 solid !important;
  border-bottom: 5px #a0a4a8 solid !important;
}
.gray-chateau--bx-5 {
  border-right: 5px #a0a4a8 solid !important;
  border-left: 5px #a0a4a8 solid !important;
}
.gray-chateau--ba-6 {
  border: 6px #a0a4a8 solid !important;
}
.gray-chateau--bt-6 {
  border-top: 6px #a0a4a8 solid !important;
}
.gray-chateau--br-6 {
  border-right: 6px #a0a4a8 solid !important;
}
.gray-chateau--bl-6 {
  border-left: 6px #a0a4a8 solid !important;
}
.gray-chateau--bb-6 {
  border-bottom: 6px #a0a4a8 solid !important;
}
.gray-chateau--by-6 {
  border-top: 6px #a0a4a8 solid !important;
  border-bottom: 6px #a0a4a8 solid !important;
}
.gray-chateau--bx-6 {
  border-right: 6px #a0a4a8 solid !important;
  border-left: 6px #a0a4a8 solid !important;
}
.gray-chateau--ba-7 {
  border: 7px #a0a4a8 solid !important;
}
.gray-chateau--bt-7 {
  border-top: 7px #a0a4a8 solid !important;
}
.gray-chateau--br-7 {
  border-right: 7px #a0a4a8 solid !important;
}
.gray-chateau--bl-7 {
  border-left: 7px #a0a4a8 solid !important;
}
.gray-chateau--bb-7 {
  border-bottom: 7px #a0a4a8 solid !important;
}
.gray-chateau--by-7 {
  border-top: 7px #a0a4a8 solid !important;
  border-bottom: 7px #a0a4a8 solid !important;
}
.gray-chateau--bx-7 {
  border-right: 7px #a0a4a8 solid !important;
  border-left: 7px #a0a4a8 solid !important;
}
.gray-chateau--ba-8 {
  border: 8px #a0a4a8 solid !important;
}
.gray-chateau--bt-8 {
  border-top: 8px #a0a4a8 solid !important;
}
.gray-chateau--br-8 {
  border-right: 8px #a0a4a8 solid !important;
}
.gray-chateau--bl-8 {
  border-left: 8px #a0a4a8 solid !important;
}
.gray-chateau--bb-8 {
  border-bottom: 8px #a0a4a8 solid !important;
}
.gray-chateau--by-8 {
  border-top: 8px #a0a4a8 solid !important;
  border-bottom: 8px #a0a4a8 solid !important;
}
.gray-chateau--bx-8 {
  border-right: 8px #a0a4a8 solid !important;
  border-left: 8px #a0a4a8 solid !important;
}
.gray-chateau--ba-9 {
  border: 9px #a0a4a8 solid !important;
}
.gray-chateau--bt-9 {
  border-top: 9px #a0a4a8 solid !important;
}
.gray-chateau--br-9 {
  border-right: 9px #a0a4a8 solid !important;
}
.gray-chateau--bl-9 {
  border-left: 9px #a0a4a8 solid !important;
}
.gray-chateau--bb-9 {
  border-bottom: 9px #a0a4a8 solid !important;
}
.gray-chateau--by-9 {
  border-top: 9px #a0a4a8 solid !important;
  border-bottom: 9px #a0a4a8 solid !important;
}
.gray-chateau--bx-9 {
  border-right: 9px #a0a4a8 solid !important;
  border-left: 9px #a0a4a8 solid !important;
}
.gray-chateau--ba-10 {
  border: 10px #a0a4a8 solid !important;
}
.gray-chateau--bt-10 {
  border-top: 10px #a0a4a8 solid !important;
}
.gray-chateau--br-10 {
  border-right: 10px #a0a4a8 solid !important;
}
.gray-chateau--bl-10 {
  border-left: 10px #a0a4a8 solid !important;
}
.gray-chateau--bb-10 {
  border-bottom: 10px #a0a4a8 solid !important;
}
.gray-chateau--by-10 {
  border-top: 10px #a0a4a8 solid !important;
  border-bottom: 10px #a0a4a8 solid !important;
}
.gray-chateau--bx-10 {
  border-right: 10px #a0a4a8 solid !important;
  border-left: 10px #a0a4a8 solid !important;
}
.gray-chateau--ba-11 {
  border: 11px #a0a4a8 solid !important;
}
.gray-chateau--bt-11 {
  border-top: 11px #a0a4a8 solid !important;
}
.gray-chateau--br-11 {
  border-right: 11px #a0a4a8 solid !important;
}
.gray-chateau--bl-11 {
  border-left: 11px #a0a4a8 solid !important;
}
.gray-chateau--bb-11 {
  border-bottom: 11px #a0a4a8 solid !important;
}
.gray-chateau--by-11 {
  border-top: 11px #a0a4a8 solid !important;
  border-bottom: 11px #a0a4a8 solid !important;
}
.gray-chateau--bx-11 {
  border-right: 11px #a0a4a8 solid !important;
  border-left: 11px #a0a4a8 solid !important;
}
.gray-chateau--ba-12 {
  border: 12px #a0a4a8 solid !important;
}
.gray-chateau--bt-12 {
  border-top: 12px #a0a4a8 solid !important;
}
.gray-chateau--br-12 {
  border-right: 12px #a0a4a8 solid !important;
}
.gray-chateau--bl-12 {
  border-left: 12px #a0a4a8 solid !important;
}
.gray-chateau--bb-12 {
  border-bottom: 12px #a0a4a8 solid !important;
}
.gray-chateau--by-12 {
  border-top: 12px #a0a4a8 solid !important;
  border-bottom: 12px #a0a4a8 solid !important;
}
.gray-chateau--bx-12 {
  border-right: 12px #a0a4a8 solid !important;
  border-left: 12px #a0a4a8 solid !important;
}
.gray-chateau--ba-13 {
  border: 13px #a0a4a8 solid !important;
}
.gray-chateau--bt-13 {
  border-top: 13px #a0a4a8 solid !important;
}
.gray-chateau--br-13 {
  border-right: 13px #a0a4a8 solid !important;
}
.gray-chateau--bl-13 {
  border-left: 13px #a0a4a8 solid !important;
}
.gray-chateau--bb-13 {
  border-bottom: 13px #a0a4a8 solid !important;
}
.gray-chateau--by-13 {
  border-top: 13px #a0a4a8 solid !important;
  border-bottom: 13px #a0a4a8 solid !important;
}
.gray-chateau--bx-13 {
  border-right: 13px #a0a4a8 solid !important;
  border-left: 13px #a0a4a8 solid !important;
}
.gray-chateau--ba-14 {
  border: 14px #a0a4a8 solid !important;
}
.gray-chateau--bt-14 {
  border-top: 14px #a0a4a8 solid !important;
}
.gray-chateau--br-14 {
  border-right: 14px #a0a4a8 solid !important;
}
.gray-chateau--bl-14 {
  border-left: 14px #a0a4a8 solid !important;
}
.gray-chateau--bb-14 {
  border-bottom: 14px #a0a4a8 solid !important;
}
.gray-chateau--by-14 {
  border-top: 14px #a0a4a8 solid !important;
  border-bottom: 14px #a0a4a8 solid !important;
}
.gray-chateau--bx-14 {
  border-right: 14px #a0a4a8 solid !important;
  border-left: 14px #a0a4a8 solid !important;
}
.gray-chateau--ba-15 {
  border: 15px #a0a4a8 solid !important;
}
.gray-chateau--bt-15 {
  border-top: 15px #a0a4a8 solid !important;
}
.gray-chateau--br-15 {
  border-right: 15px #a0a4a8 solid !important;
}
.gray-chateau--bl-15 {
  border-left: 15px #a0a4a8 solid !important;
}
.gray-chateau--bb-15 {
  border-bottom: 15px #a0a4a8 solid !important;
}
.gray-chateau--by-15 {
  border-top: 15px #a0a4a8 solid !important;
  border-bottom: 15px #a0a4a8 solid !important;
}
.gray-chateau--bx-15 {
  border-right: 15px #a0a4a8 solid !important;
  border-left: 15px #a0a4a8 solid !important;
}
.gray-chateau--ba-16 {
  border: 16px #a0a4a8 solid !important;
}
.gray-chateau--bt-16 {
  border-top: 16px #a0a4a8 solid !important;
}
.gray-chateau--br-16 {
  border-right: 16px #a0a4a8 solid !important;
}
.gray-chateau--bl-16 {
  border-left: 16px #a0a4a8 solid !important;
}
.gray-chateau--bb-16 {
  border-bottom: 16px #a0a4a8 solid !important;
}
.gray-chateau--by-16 {
  border-top: 16px #a0a4a8 solid !important;
  border-bottom: 16px #a0a4a8 solid !important;
}
.gray-chateau--bx-16 {
  border-right: 16px #a0a4a8 solid !important;
  border-left: 16px #a0a4a8 solid !important;
}
.gray-chateau--ba-17 {
  border: 17px #a0a4a8 solid !important;
}
.gray-chateau--bt-17 {
  border-top: 17px #a0a4a8 solid !important;
}
.gray-chateau--br-17 {
  border-right: 17px #a0a4a8 solid !important;
}
.gray-chateau--bl-17 {
  border-left: 17px #a0a4a8 solid !important;
}
.gray-chateau--bb-17 {
  border-bottom: 17px #a0a4a8 solid !important;
}
.gray-chateau--by-17 {
  border-top: 17px #a0a4a8 solid !important;
  border-bottom: 17px #a0a4a8 solid !important;
}
.gray-chateau--bx-17 {
  border-right: 17px #a0a4a8 solid !important;
  border-left: 17px #a0a4a8 solid !important;
}
.gray-chateau--ba-18 {
  border: 18px #a0a4a8 solid !important;
}
.gray-chateau--bt-18 {
  border-top: 18px #a0a4a8 solid !important;
}
.gray-chateau--br-18 {
  border-right: 18px #a0a4a8 solid !important;
}
.gray-chateau--bl-18 {
  border-left: 18px #a0a4a8 solid !important;
}
.gray-chateau--bb-18 {
  border-bottom: 18px #a0a4a8 solid !important;
}
.gray-chateau--by-18 {
  border-top: 18px #a0a4a8 solid !important;
  border-bottom: 18px #a0a4a8 solid !important;
}
.gray-chateau--bx-18 {
  border-right: 18px #a0a4a8 solid !important;
  border-left: 18px #a0a4a8 solid !important;
}
.gray-chateau--ba-19 {
  border: 19px #a0a4a8 solid !important;
}
.gray-chateau--bt-19 {
  border-top: 19px #a0a4a8 solid !important;
}
.gray-chateau--br-19 {
  border-right: 19px #a0a4a8 solid !important;
}
.gray-chateau--bl-19 {
  border-left: 19px #a0a4a8 solid !important;
}
.gray-chateau--bb-19 {
  border-bottom: 19px #a0a4a8 solid !important;
}
.gray-chateau--by-19 {
  border-top: 19px #a0a4a8 solid !important;
  border-bottom: 19px #a0a4a8 solid !important;
}
.gray-chateau--bx-19 {
  border-right: 19px #a0a4a8 solid !important;
  border-left: 19px #a0a4a8 solid !important;
}
.gray-chateau--ba-20 {
  border: 20px #a0a4a8 solid !important;
}
.gray-chateau--bt-20 {
  border-top: 20px #a0a4a8 solid !important;
}
.gray-chateau--br-20 {
  border-right: 20px #a0a4a8 solid !important;
}
.gray-chateau--bl-20 {
  border-left: 20px #a0a4a8 solid !important;
}
.gray-chateau--bb-20 {
  border-bottom: 20px #a0a4a8 solid !important;
}
.gray-chateau--by-20 {
  border-top: 20px #a0a4a8 solid !important;
  border-bottom: 20px #a0a4a8 solid !important;
}
.gray-chateau--bx-20 {
  border-right: 20px #a0a4a8 solid !important;
  border-left: 20px #a0a4a8 solid !important;
}
.gray-chateau--ba-21 {
  border: 21px #a0a4a8 solid !important;
}
.gray-chateau--bt-21 {
  border-top: 21px #a0a4a8 solid !important;
}
.gray-chateau--br-21 {
  border-right: 21px #a0a4a8 solid !important;
}
.gray-chateau--bl-21 {
  border-left: 21px #a0a4a8 solid !important;
}
.gray-chateau--bb-21 {
  border-bottom: 21px #a0a4a8 solid !important;
}
.gray-chateau--by-21 {
  border-top: 21px #a0a4a8 solid !important;
  border-bottom: 21px #a0a4a8 solid !important;
}
.gray-chateau--bx-21 {
  border-right: 21px #a0a4a8 solid !important;
  border-left: 21px #a0a4a8 solid !important;
}
.gray-chateau--ba-22 {
  border: 22px #a0a4a8 solid !important;
}
.gray-chateau--bt-22 {
  border-top: 22px #a0a4a8 solid !important;
}
.gray-chateau--br-22 {
  border-right: 22px #a0a4a8 solid !important;
}
.gray-chateau--bl-22 {
  border-left: 22px #a0a4a8 solid !important;
}
.gray-chateau--bb-22 {
  border-bottom: 22px #a0a4a8 solid !important;
}
.gray-chateau--by-22 {
  border-top: 22px #a0a4a8 solid !important;
  border-bottom: 22px #a0a4a8 solid !important;
}
.gray-chateau--bx-22 {
  border-right: 22px #a0a4a8 solid !important;
  border-left: 22px #a0a4a8 solid !important;
}
.gray-chateau--ba-23 {
  border: 23px #a0a4a8 solid !important;
}
.gray-chateau--bt-23 {
  border-top: 23px #a0a4a8 solid !important;
}
.gray-chateau--br-23 {
  border-right: 23px #a0a4a8 solid !important;
}
.gray-chateau--bl-23 {
  border-left: 23px #a0a4a8 solid !important;
}
.gray-chateau--bb-23 {
  border-bottom: 23px #a0a4a8 solid !important;
}
.gray-chateau--by-23 {
  border-top: 23px #a0a4a8 solid !important;
  border-bottom: 23px #a0a4a8 solid !important;
}
.gray-chateau--bx-23 {
  border-right: 23px #a0a4a8 solid !important;
  border-left: 23px #a0a4a8 solid !important;
}
.gray-chateau--ba-24 {
  border: 24px #a0a4a8 solid !important;
}
.gray-chateau--bt-24 {
  border-top: 24px #a0a4a8 solid !important;
}
.gray-chateau--br-24 {
  border-right: 24px #a0a4a8 solid !important;
}
.gray-chateau--bl-24 {
  border-left: 24px #a0a4a8 solid !important;
}
.gray-chateau--bb-24 {
  border-bottom: 24px #a0a4a8 solid !important;
}
.gray-chateau--by-24 {
  border-top: 24px #a0a4a8 solid !important;
  border-bottom: 24px #a0a4a8 solid !important;
}
.gray-chateau--bx-24 {
  border-right: 24px #a0a4a8 solid !important;
  border-left: 24px #a0a4a8 solid !important;
}
.gray-chateau--ba-25 {
  border: 25px #a0a4a8 solid !important;
}
.gray-chateau--bt-25 {
  border-top: 25px #a0a4a8 solid !important;
}
.gray-chateau--br-25 {
  border-right: 25px #a0a4a8 solid !important;
}
.gray-chateau--bl-25 {
  border-left: 25px #a0a4a8 solid !important;
}
.gray-chateau--bb-25 {
  border-bottom: 25px #a0a4a8 solid !important;
}
.gray-chateau--by-25 {
  border-top: 25px #a0a4a8 solid !important;
  border-bottom: 25px #a0a4a8 solid !important;
}
.gray-chateau--bx-25 {
  border-right: 25px #a0a4a8 solid !important;
  border-left: 25px #a0a4a8 solid !important;
}
.gray-chateau--ba-26 {
  border: 26px #a0a4a8 solid !important;
}
.gray-chateau--bt-26 {
  border-top: 26px #a0a4a8 solid !important;
}
.gray-chateau--br-26 {
  border-right: 26px #a0a4a8 solid !important;
}
.gray-chateau--bl-26 {
  border-left: 26px #a0a4a8 solid !important;
}
.gray-chateau--bb-26 {
  border-bottom: 26px #a0a4a8 solid !important;
}
.gray-chateau--by-26 {
  border-top: 26px #a0a4a8 solid !important;
  border-bottom: 26px #a0a4a8 solid !important;
}
.gray-chateau--bx-26 {
  border-right: 26px #a0a4a8 solid !important;
  border-left: 26px #a0a4a8 solid !important;
}
.gray-chateau--ba-27 {
  border: 27px #a0a4a8 solid !important;
}
.gray-chateau--bt-27 {
  border-top: 27px #a0a4a8 solid !important;
}
.gray-chateau--br-27 {
  border-right: 27px #a0a4a8 solid !important;
}
.gray-chateau--bl-27 {
  border-left: 27px #a0a4a8 solid !important;
}
.gray-chateau--bb-27 {
  border-bottom: 27px #a0a4a8 solid !important;
}
.gray-chateau--by-27 {
  border-top: 27px #a0a4a8 solid !important;
  border-bottom: 27px #a0a4a8 solid !important;
}
.gray-chateau--bx-27 {
  border-right: 27px #a0a4a8 solid !important;
  border-left: 27px #a0a4a8 solid !important;
}
.gray-chateau--ba-28 {
  border: 28px #a0a4a8 solid !important;
}
.gray-chateau--bt-28 {
  border-top: 28px #a0a4a8 solid !important;
}
.gray-chateau--br-28 {
  border-right: 28px #a0a4a8 solid !important;
}
.gray-chateau--bl-28 {
  border-left: 28px #a0a4a8 solid !important;
}
.gray-chateau--bb-28 {
  border-bottom: 28px #a0a4a8 solid !important;
}
.gray-chateau--by-28 {
  border-top: 28px #a0a4a8 solid !important;
  border-bottom: 28px #a0a4a8 solid !important;
}
.gray-chateau--bx-28 {
  border-right: 28px #a0a4a8 solid !important;
  border-left: 28px #a0a4a8 solid !important;
}
.gray-chateau--ba-29 {
  border: 29px #a0a4a8 solid !important;
}
.gray-chateau--bt-29 {
  border-top: 29px #a0a4a8 solid !important;
}
.gray-chateau--br-29 {
  border-right: 29px #a0a4a8 solid !important;
}
.gray-chateau--bl-29 {
  border-left: 29px #a0a4a8 solid !important;
}
.gray-chateau--bb-29 {
  border-bottom: 29px #a0a4a8 solid !important;
}
.gray-chateau--by-29 {
  border-top: 29px #a0a4a8 solid !important;
  border-bottom: 29px #a0a4a8 solid !important;
}
.gray-chateau--bx-29 {
  border-right: 29px #a0a4a8 solid !important;
  border-left: 29px #a0a4a8 solid !important;
}
.gray-chateau--ba-30 {
  border: 30px #a0a4a8 solid !important;
}
.gray-chateau--bt-30 {
  border-top: 30px #a0a4a8 solid !important;
}
.gray-chateau--br-30 {
  border-right: 30px #a0a4a8 solid !important;
}
.gray-chateau--bl-30 {
  border-left: 30px #a0a4a8 solid !important;
}
.gray-chateau--bb-30 {
  border-bottom: 30px #a0a4a8 solid !important;
}
.gray-chateau--by-30 {
  border-top: 30px #a0a4a8 solid !important;
  border-bottom: 30px #a0a4a8 solid !important;
}
.gray-chateau--bx-30 {
  border-right: 30px #a0a4a8 solid !important;
  border-left: 30px #a0a4a8 solid !important;
}
.gray-chateau--ba-31 {
  border: 31px #a0a4a8 solid !important;
}
.gray-chateau--bt-31 {
  border-top: 31px #a0a4a8 solid !important;
}
.gray-chateau--br-31 {
  border-right: 31px #a0a4a8 solid !important;
}
.gray-chateau--bl-31 {
  border-left: 31px #a0a4a8 solid !important;
}
.gray-chateau--bb-31 {
  border-bottom: 31px #a0a4a8 solid !important;
}
.gray-chateau--by-31 {
  border-top: 31px #a0a4a8 solid !important;
  border-bottom: 31px #a0a4a8 solid !important;
}
.gray-chateau--bx-31 {
  border-right: 31px #a0a4a8 solid !important;
  border-left: 31px #a0a4a8 solid !important;
}
.gray-chateau--ba-32 {
  border: 32px #a0a4a8 solid !important;
}
.gray-chateau--bt-32 {
  border-top: 32px #a0a4a8 solid !important;
}
.gray-chateau--br-32 {
  border-right: 32px #a0a4a8 solid !important;
}
.gray-chateau--bl-32 {
  border-left: 32px #a0a4a8 solid !important;
}
.gray-chateau--bb-32 {
  border-bottom: 32px #a0a4a8 solid !important;
}
.gray-chateau--by-32 {
  border-top: 32px #a0a4a8 solid !important;
  border-bottom: 32px #a0a4a8 solid !important;
}
.gray-chateau--bx-32 {
  border-right: 32px #a0a4a8 solid !important;
  border-left: 32px #a0a4a8 solid !important;
}
.gray-chateau--ba-33 {
  border: 33px #a0a4a8 solid !important;
}
.gray-chateau--bt-33 {
  border-top: 33px #a0a4a8 solid !important;
}
.gray-chateau--br-33 {
  border-right: 33px #a0a4a8 solid !important;
}
.gray-chateau--bl-33 {
  border-left: 33px #a0a4a8 solid !important;
}
.gray-chateau--bb-33 {
  border-bottom: 33px #a0a4a8 solid !important;
}
.gray-chateau--by-33 {
  border-top: 33px #a0a4a8 solid !important;
  border-bottom: 33px #a0a4a8 solid !important;
}
.gray-chateau--bx-33 {
  border-right: 33px #a0a4a8 solid !important;
  border-left: 33px #a0a4a8 solid !important;
}
.gray-chateau--ba-34 {
  border: 34px #a0a4a8 solid !important;
}
.gray-chateau--bt-34 {
  border-top: 34px #a0a4a8 solid !important;
}
.gray-chateau--br-34 {
  border-right: 34px #a0a4a8 solid !important;
}
.gray-chateau--bl-34 {
  border-left: 34px #a0a4a8 solid !important;
}
.gray-chateau--bb-34 {
  border-bottom: 34px #a0a4a8 solid !important;
}
.gray-chateau--by-34 {
  border-top: 34px #a0a4a8 solid !important;
  border-bottom: 34px #a0a4a8 solid !important;
}
.gray-chateau--bx-34 {
  border-right: 34px #a0a4a8 solid !important;
  border-left: 34px #a0a4a8 solid !important;
}
.gray-chateau--ba-35 {
  border: 35px #a0a4a8 solid !important;
}
.gray-chateau--bt-35 {
  border-top: 35px #a0a4a8 solid !important;
}
.gray-chateau--br-35 {
  border-right: 35px #a0a4a8 solid !important;
}
.gray-chateau--bl-35 {
  border-left: 35px #a0a4a8 solid !important;
}
.gray-chateau--bb-35 {
  border-bottom: 35px #a0a4a8 solid !important;
}
.gray-chateau--by-35 {
  border-top: 35px #a0a4a8 solid !important;
  border-bottom: 35px #a0a4a8 solid !important;
}
.gray-chateau--bx-35 {
  border-right: 35px #a0a4a8 solid !important;
  border-left: 35px #a0a4a8 solid !important;
}
.gray-chateau--ba-36 {
  border: 36px #a0a4a8 solid !important;
}
.gray-chateau--bt-36 {
  border-top: 36px #a0a4a8 solid !important;
}
.gray-chateau--br-36 {
  border-right: 36px #a0a4a8 solid !important;
}
.gray-chateau--bl-36 {
  border-left: 36px #a0a4a8 solid !important;
}
.gray-chateau--bb-36 {
  border-bottom: 36px #a0a4a8 solid !important;
}
.gray-chateau--by-36 {
  border-top: 36px #a0a4a8 solid !important;
  border-bottom: 36px #a0a4a8 solid !important;
}
.gray-chateau--bx-36 {
  border-right: 36px #a0a4a8 solid !important;
  border-left: 36px #a0a4a8 solid !important;
}
.gray-chateau--ba-37 {
  border: 37px #a0a4a8 solid !important;
}
.gray-chateau--bt-37 {
  border-top: 37px #a0a4a8 solid !important;
}
.gray-chateau--br-37 {
  border-right: 37px #a0a4a8 solid !important;
}
.gray-chateau--bl-37 {
  border-left: 37px #a0a4a8 solid !important;
}
.gray-chateau--bb-37 {
  border-bottom: 37px #a0a4a8 solid !important;
}
.gray-chateau--by-37 {
  border-top: 37px #a0a4a8 solid !important;
  border-bottom: 37px #a0a4a8 solid !important;
}
.gray-chateau--bx-37 {
  border-right: 37px #a0a4a8 solid !important;
  border-left: 37px #a0a4a8 solid !important;
}
.gray-chateau--ba-38 {
  border: 38px #a0a4a8 solid !important;
}
.gray-chateau--bt-38 {
  border-top: 38px #a0a4a8 solid !important;
}
.gray-chateau--br-38 {
  border-right: 38px #a0a4a8 solid !important;
}
.gray-chateau--bl-38 {
  border-left: 38px #a0a4a8 solid !important;
}
.gray-chateau--bb-38 {
  border-bottom: 38px #a0a4a8 solid !important;
}
.gray-chateau--by-38 {
  border-top: 38px #a0a4a8 solid !important;
  border-bottom: 38px #a0a4a8 solid !important;
}
.gray-chateau--bx-38 {
  border-right: 38px #a0a4a8 solid !important;
  border-left: 38px #a0a4a8 solid !important;
}
.gray-chateau--ba-39 {
  border: 39px #a0a4a8 solid !important;
}
.gray-chateau--bt-39 {
  border-top: 39px #a0a4a8 solid !important;
}
.gray-chateau--br-39 {
  border-right: 39px #a0a4a8 solid !important;
}
.gray-chateau--bl-39 {
  border-left: 39px #a0a4a8 solid !important;
}
.gray-chateau--bb-39 {
  border-bottom: 39px #a0a4a8 solid !important;
}
.gray-chateau--by-39 {
  border-top: 39px #a0a4a8 solid !important;
  border-bottom: 39px #a0a4a8 solid !important;
}
.gray-chateau--bx-39 {
  border-right: 39px #a0a4a8 solid !important;
  border-left: 39px #a0a4a8 solid !important;
}
.gray-chateau--ba-40 {
  border: 40px #a0a4a8 solid !important;
}
.gray-chateau--bt-40 {
  border-top: 40px #a0a4a8 solid !important;
}
.gray-chateau--br-40 {
  border-right: 40px #a0a4a8 solid !important;
}
.gray-chateau--bl-40 {
  border-left: 40px #a0a4a8 solid !important;
}
.gray-chateau--bb-40 {
  border-bottom: 40px #a0a4a8 solid !important;
}
.gray-chateau--by-40 {
  border-top: 40px #a0a4a8 solid !important;
  border-bottom: 40px #a0a4a8 solid !important;
}
.gray-chateau--bx-40 {
  border-right: 40px #a0a4a8 solid !important;
  border-left: 40px #a0a4a8 solid !important;
}
.gray-chateau--ba-41 {
  border: 41px #a0a4a8 solid !important;
}
.gray-chateau--bt-41 {
  border-top: 41px #a0a4a8 solid !important;
}
.gray-chateau--br-41 {
  border-right: 41px #a0a4a8 solid !important;
}
.gray-chateau--bl-41 {
  border-left: 41px #a0a4a8 solid !important;
}
.gray-chateau--bb-41 {
  border-bottom: 41px #a0a4a8 solid !important;
}
.gray-chateau--by-41 {
  border-top: 41px #a0a4a8 solid !important;
  border-bottom: 41px #a0a4a8 solid !important;
}
.gray-chateau--bx-41 {
  border-right: 41px #a0a4a8 solid !important;
  border-left: 41px #a0a4a8 solid !important;
}
.gray-chateau--ba-42 {
  border: 42px #a0a4a8 solid !important;
}
.gray-chateau--bt-42 {
  border-top: 42px #a0a4a8 solid !important;
}
.gray-chateau--br-42 {
  border-right: 42px #a0a4a8 solid !important;
}
.gray-chateau--bl-42 {
  border-left: 42px #a0a4a8 solid !important;
}
.gray-chateau--bb-42 {
  border-bottom: 42px #a0a4a8 solid !important;
}
.gray-chateau--by-42 {
  border-top: 42px #a0a4a8 solid !important;
  border-bottom: 42px #a0a4a8 solid !important;
}
.gray-chateau--bx-42 {
  border-right: 42px #a0a4a8 solid !important;
  border-left: 42px #a0a4a8 solid !important;
}
.gray-chateau--ba-43 {
  border: 43px #a0a4a8 solid !important;
}
.gray-chateau--bt-43 {
  border-top: 43px #a0a4a8 solid !important;
}
.gray-chateau--br-43 {
  border-right: 43px #a0a4a8 solid !important;
}
.gray-chateau--bl-43 {
  border-left: 43px #a0a4a8 solid !important;
}
.gray-chateau--bb-43 {
  border-bottom: 43px #a0a4a8 solid !important;
}
.gray-chateau--by-43 {
  border-top: 43px #a0a4a8 solid !important;
  border-bottom: 43px #a0a4a8 solid !important;
}
.gray-chateau--bx-43 {
  border-right: 43px #a0a4a8 solid !important;
  border-left: 43px #a0a4a8 solid !important;
}
.gray-chateau--ba-44 {
  border: 44px #a0a4a8 solid !important;
}
.gray-chateau--bt-44 {
  border-top: 44px #a0a4a8 solid !important;
}
.gray-chateau--br-44 {
  border-right: 44px #a0a4a8 solid !important;
}
.gray-chateau--bl-44 {
  border-left: 44px #a0a4a8 solid !important;
}
.gray-chateau--bb-44 {
  border-bottom: 44px #a0a4a8 solid !important;
}
.gray-chateau--by-44 {
  border-top: 44px #a0a4a8 solid !important;
  border-bottom: 44px #a0a4a8 solid !important;
}
.gray-chateau--bx-44 {
  border-right: 44px #a0a4a8 solid !important;
  border-left: 44px #a0a4a8 solid !important;
}
.gray-chateau--ba-45 {
  border: 45px #a0a4a8 solid !important;
}
.gray-chateau--bt-45 {
  border-top: 45px #a0a4a8 solid !important;
}
.gray-chateau--br-45 {
  border-right: 45px #a0a4a8 solid !important;
}
.gray-chateau--bl-45 {
  border-left: 45px #a0a4a8 solid !important;
}
.gray-chateau--bb-45 {
  border-bottom: 45px #a0a4a8 solid !important;
}
.gray-chateau--by-45 {
  border-top: 45px #a0a4a8 solid !important;
  border-bottom: 45px #a0a4a8 solid !important;
}
.gray-chateau--bx-45 {
  border-right: 45px #a0a4a8 solid !important;
  border-left: 45px #a0a4a8 solid !important;
}
.gray-chateau--ba-46 {
  border: 46px #a0a4a8 solid !important;
}
.gray-chateau--bt-46 {
  border-top: 46px #a0a4a8 solid !important;
}
.gray-chateau--br-46 {
  border-right: 46px #a0a4a8 solid !important;
}
.gray-chateau--bl-46 {
  border-left: 46px #a0a4a8 solid !important;
}
.gray-chateau--bb-46 {
  border-bottom: 46px #a0a4a8 solid !important;
}
.gray-chateau--by-46 {
  border-top: 46px #a0a4a8 solid !important;
  border-bottom: 46px #a0a4a8 solid !important;
}
.gray-chateau--bx-46 {
  border-right: 46px #a0a4a8 solid !important;
  border-left: 46px #a0a4a8 solid !important;
}
.gray-chateau--ba-47 {
  border: 47px #a0a4a8 solid !important;
}
.gray-chateau--bt-47 {
  border-top: 47px #a0a4a8 solid !important;
}
.gray-chateau--br-47 {
  border-right: 47px #a0a4a8 solid !important;
}
.gray-chateau--bl-47 {
  border-left: 47px #a0a4a8 solid !important;
}
.gray-chateau--bb-47 {
  border-bottom: 47px #a0a4a8 solid !important;
}
.gray-chateau--by-47 {
  border-top: 47px #a0a4a8 solid !important;
  border-bottom: 47px #a0a4a8 solid !important;
}
.gray-chateau--bx-47 {
  border-right: 47px #a0a4a8 solid !important;
  border-left: 47px #a0a4a8 solid !important;
}
.gray-chateau--ba-48 {
  border: 48px #a0a4a8 solid !important;
}
.gray-chateau--bt-48 {
  border-top: 48px #a0a4a8 solid !important;
}
.gray-chateau--br-48 {
  border-right: 48px #a0a4a8 solid !important;
}
.gray-chateau--bl-48 {
  border-left: 48px #a0a4a8 solid !important;
}
.gray-chateau--bb-48 {
  border-bottom: 48px #a0a4a8 solid !important;
}
.gray-chateau--by-48 {
  border-top: 48px #a0a4a8 solid !important;
  border-bottom: 48px #a0a4a8 solid !important;
}
.gray-chateau--bx-48 {
  border-right: 48px #a0a4a8 solid !important;
  border-left: 48px #a0a4a8 solid !important;
}
.gray-chateau--ba-49 {
  border: 49px #a0a4a8 solid !important;
}
.gray-chateau--bt-49 {
  border-top: 49px #a0a4a8 solid !important;
}
.gray-chateau--br-49 {
  border-right: 49px #a0a4a8 solid !important;
}
.gray-chateau--bl-49 {
  border-left: 49px #a0a4a8 solid !important;
}
.gray-chateau--bb-49 {
  border-bottom: 49px #a0a4a8 solid !important;
}
.gray-chateau--by-49 {
  border-top: 49px #a0a4a8 solid !important;
  border-bottom: 49px #a0a4a8 solid !important;
}
.gray-chateau--bx-49 {
  border-right: 49px #a0a4a8 solid !important;
  border-left: 49px #a0a4a8 solid !important;
}
.gray-chateau--ba-50 {
  border: 50px #a0a4a8 solid !important;
}
.gray-chateau--bt-50 {
  border-top: 50px #a0a4a8 solid !important;
}
.gray-chateau--br-50 {
  border-right: 50px #a0a4a8 solid !important;
}
.gray-chateau--bl-50 {
  border-left: 50px #a0a4a8 solid !important;
}
.gray-chateau--bb-50 {
  border-bottom: 50px #a0a4a8 solid !important;
}
.gray-chateau--by-50 {
  border-top: 50px #a0a4a8 solid !important;
  border-bottom: 50px #a0a4a8 solid !important;
}
.gray-chateau--bx-50 {
  border-right: 50px #a0a4a8 solid !important;
  border-left: 50px #a0a4a8 solid !important;
}
.gray-chateau--ba-51 {
  border: 51px #a0a4a8 solid !important;
}
.gray-chateau--bt-51 {
  border-top: 51px #a0a4a8 solid !important;
}
.gray-chateau--br-51 {
  border-right: 51px #a0a4a8 solid !important;
}
.gray-chateau--bl-51 {
  border-left: 51px #a0a4a8 solid !important;
}
.gray-chateau--bb-51 {
  border-bottom: 51px #a0a4a8 solid !important;
}
.gray-chateau--by-51 {
  border-top: 51px #a0a4a8 solid !important;
  border-bottom: 51px #a0a4a8 solid !important;
}
.gray-chateau--bx-51 {
  border-right: 51px #a0a4a8 solid !important;
  border-left: 51px #a0a4a8 solid !important;
}
.gray-chateau--ba-52 {
  border: 52px #a0a4a8 solid !important;
}
.gray-chateau--bt-52 {
  border-top: 52px #a0a4a8 solid !important;
}
.gray-chateau--br-52 {
  border-right: 52px #a0a4a8 solid !important;
}
.gray-chateau--bl-52 {
  border-left: 52px #a0a4a8 solid !important;
}
.gray-chateau--bb-52 {
  border-bottom: 52px #a0a4a8 solid !important;
}
.gray-chateau--by-52 {
  border-top: 52px #a0a4a8 solid !important;
  border-bottom: 52px #a0a4a8 solid !important;
}
.gray-chateau--bx-52 {
  border-right: 52px #a0a4a8 solid !important;
  border-left: 52px #a0a4a8 solid !important;
}
.gray-chateau--ba-53 {
  border: 53px #a0a4a8 solid !important;
}
.gray-chateau--bt-53 {
  border-top: 53px #a0a4a8 solid !important;
}
.gray-chateau--br-53 {
  border-right: 53px #a0a4a8 solid !important;
}
.gray-chateau--bl-53 {
  border-left: 53px #a0a4a8 solid !important;
}
.gray-chateau--bb-53 {
  border-bottom: 53px #a0a4a8 solid !important;
}
.gray-chateau--by-53 {
  border-top: 53px #a0a4a8 solid !important;
  border-bottom: 53px #a0a4a8 solid !important;
}
.gray-chateau--bx-53 {
  border-right: 53px #a0a4a8 solid !important;
  border-left: 53px #a0a4a8 solid !important;
}
.gray-chateau--ba-54 {
  border: 54px #a0a4a8 solid !important;
}
.gray-chateau--bt-54 {
  border-top: 54px #a0a4a8 solid !important;
}
.gray-chateau--br-54 {
  border-right: 54px #a0a4a8 solid !important;
}
.gray-chateau--bl-54 {
  border-left: 54px #a0a4a8 solid !important;
}
.gray-chateau--bb-54 {
  border-bottom: 54px #a0a4a8 solid !important;
}
.gray-chateau--by-54 {
  border-top: 54px #a0a4a8 solid !important;
  border-bottom: 54px #a0a4a8 solid !important;
}
.gray-chateau--bx-54 {
  border-right: 54px #a0a4a8 solid !important;
  border-left: 54px #a0a4a8 solid !important;
}
.gray-chateau--ba-55 {
  border: 55px #a0a4a8 solid !important;
}
.gray-chateau--bt-55 {
  border-top: 55px #a0a4a8 solid !important;
}
.gray-chateau--br-55 {
  border-right: 55px #a0a4a8 solid !important;
}
.gray-chateau--bl-55 {
  border-left: 55px #a0a4a8 solid !important;
}
.gray-chateau--bb-55 {
  border-bottom: 55px #a0a4a8 solid !important;
}
.gray-chateau--by-55 {
  border-top: 55px #a0a4a8 solid !important;
  border-bottom: 55px #a0a4a8 solid !important;
}
.gray-chateau--bx-55 {
  border-right: 55px #a0a4a8 solid !important;
  border-left: 55px #a0a4a8 solid !important;
}
.gray-chateau--ba-56 {
  border: 56px #a0a4a8 solid !important;
}
.gray-chateau--bt-56 {
  border-top: 56px #a0a4a8 solid !important;
}
.gray-chateau--br-56 {
  border-right: 56px #a0a4a8 solid !important;
}
.gray-chateau--bl-56 {
  border-left: 56px #a0a4a8 solid !important;
}
.gray-chateau--bb-56 {
  border-bottom: 56px #a0a4a8 solid !important;
}
.gray-chateau--by-56 {
  border-top: 56px #a0a4a8 solid !important;
  border-bottom: 56px #a0a4a8 solid !important;
}
.gray-chateau--bx-56 {
  border-right: 56px #a0a4a8 solid !important;
  border-left: 56px #a0a4a8 solid !important;
}
.gray-chateau--ba-57 {
  border: 57px #a0a4a8 solid !important;
}
.gray-chateau--bt-57 {
  border-top: 57px #a0a4a8 solid !important;
}
.gray-chateau--br-57 {
  border-right: 57px #a0a4a8 solid !important;
}
.gray-chateau--bl-57 {
  border-left: 57px #a0a4a8 solid !important;
}
.gray-chateau--bb-57 {
  border-bottom: 57px #a0a4a8 solid !important;
}
.gray-chateau--by-57 {
  border-top: 57px #a0a4a8 solid !important;
  border-bottom: 57px #a0a4a8 solid !important;
}
.gray-chateau--bx-57 {
  border-right: 57px #a0a4a8 solid !important;
  border-left: 57px #a0a4a8 solid !important;
}
.gray-chateau--ba-58 {
  border: 58px #a0a4a8 solid !important;
}
.gray-chateau--bt-58 {
  border-top: 58px #a0a4a8 solid !important;
}
.gray-chateau--br-58 {
  border-right: 58px #a0a4a8 solid !important;
}
.gray-chateau--bl-58 {
  border-left: 58px #a0a4a8 solid !important;
}
.gray-chateau--bb-58 {
  border-bottom: 58px #a0a4a8 solid !important;
}
.gray-chateau--by-58 {
  border-top: 58px #a0a4a8 solid !important;
  border-bottom: 58px #a0a4a8 solid !important;
}
.gray-chateau--bx-58 {
  border-right: 58px #a0a4a8 solid !important;
  border-left: 58px #a0a4a8 solid !important;
}
.gray-chateau--ba-59 {
  border: 59px #a0a4a8 solid !important;
}
.gray-chateau--bt-59 {
  border-top: 59px #a0a4a8 solid !important;
}
.gray-chateau--br-59 {
  border-right: 59px #a0a4a8 solid !important;
}
.gray-chateau--bl-59 {
  border-left: 59px #a0a4a8 solid !important;
}
.gray-chateau--bb-59 {
  border-bottom: 59px #a0a4a8 solid !important;
}
.gray-chateau--by-59 {
  border-top: 59px #a0a4a8 solid !important;
  border-bottom: 59px #a0a4a8 solid !important;
}
.gray-chateau--bx-59 {
  border-right: 59px #a0a4a8 solid !important;
  border-left: 59px #a0a4a8 solid !important;
}
.gray-chateau--ba-60 {
  border: 60px #a0a4a8 solid !important;
}
.gray-chateau--bt-60 {
  border-top: 60px #a0a4a8 solid !important;
}
.gray-chateau--br-60 {
  border-right: 60px #a0a4a8 solid !important;
}
.gray-chateau--bl-60 {
  border-left: 60px #a0a4a8 solid !important;
}
.gray-chateau--bb-60 {
  border-bottom: 60px #a0a4a8 solid !important;
}
.gray-chateau--by-60 {
  border-top: 60px #a0a4a8 solid !important;
  border-bottom: 60px #a0a4a8 solid !important;
}
.gray-chateau--bx-60 {
  border-right: 60px #a0a4a8 solid !important;
  border-left: 60px #a0a4a8 solid !important;
}
.gray-chateau--ba-61 {
  border: 61px #a0a4a8 solid !important;
}
.gray-chateau--bt-61 {
  border-top: 61px #a0a4a8 solid !important;
}
.gray-chateau--br-61 {
  border-right: 61px #a0a4a8 solid !important;
}
.gray-chateau--bl-61 {
  border-left: 61px #a0a4a8 solid !important;
}
.gray-chateau--bb-61 {
  border-bottom: 61px #a0a4a8 solid !important;
}
.gray-chateau--by-61 {
  border-top: 61px #a0a4a8 solid !important;
  border-bottom: 61px #a0a4a8 solid !important;
}
.gray-chateau--bx-61 {
  border-right: 61px #a0a4a8 solid !important;
  border-left: 61px #a0a4a8 solid !important;
}
.gray-chateau--ba-62 {
  border: 62px #a0a4a8 solid !important;
}
.gray-chateau--bt-62 {
  border-top: 62px #a0a4a8 solid !important;
}
.gray-chateau--br-62 {
  border-right: 62px #a0a4a8 solid !important;
}
.gray-chateau--bl-62 {
  border-left: 62px #a0a4a8 solid !important;
}
.gray-chateau--bb-62 {
  border-bottom: 62px #a0a4a8 solid !important;
}
.gray-chateau--by-62 {
  border-top: 62px #a0a4a8 solid !important;
  border-bottom: 62px #a0a4a8 solid !important;
}
.gray-chateau--bx-62 {
  border-right: 62px #a0a4a8 solid !important;
  border-left: 62px #a0a4a8 solid !important;
}
.gray-chateau--ba-63 {
  border: 63px #a0a4a8 solid !important;
}
.gray-chateau--bt-63 {
  border-top: 63px #a0a4a8 solid !important;
}
.gray-chateau--br-63 {
  border-right: 63px #a0a4a8 solid !important;
}
.gray-chateau--bl-63 {
  border-left: 63px #a0a4a8 solid !important;
}
.gray-chateau--bb-63 {
  border-bottom: 63px #a0a4a8 solid !important;
}
.gray-chateau--by-63 {
  border-top: 63px #a0a4a8 solid !important;
  border-bottom: 63px #a0a4a8 solid !important;
}
.gray-chateau--bx-63 {
  border-right: 63px #a0a4a8 solid !important;
  border-left: 63px #a0a4a8 solid !important;
}
.gray-chateau--ba-64 {
  border: 64px #a0a4a8 solid !important;
}
.gray-chateau--bt-64 {
  border-top: 64px #a0a4a8 solid !important;
}
.gray-chateau--br-64 {
  border-right: 64px #a0a4a8 solid !important;
}
.gray-chateau--bl-64 {
  border-left: 64px #a0a4a8 solid !important;
}
.gray-chateau--bb-64 {
  border-bottom: 64px #a0a4a8 solid !important;
}
.gray-chateau--by-64 {
  border-top: 64px #a0a4a8 solid !important;
  border-bottom: 64px #a0a4a8 solid !important;
}
.gray-chateau--bx-64 {
  border-right: 64px #a0a4a8 solid !important;
  border-left: 64px #a0a4a8 solid !important;
}
.gray-chateau--ba-65 {
  border: 65px #a0a4a8 solid !important;
}
.gray-chateau--bt-65 {
  border-top: 65px #a0a4a8 solid !important;
}
.gray-chateau--br-65 {
  border-right: 65px #a0a4a8 solid !important;
}
.gray-chateau--bl-65 {
  border-left: 65px #a0a4a8 solid !important;
}
.gray-chateau--bb-65 {
  border-bottom: 65px #a0a4a8 solid !important;
}
.gray-chateau--by-65 {
  border-top: 65px #a0a4a8 solid !important;
  border-bottom: 65px #a0a4a8 solid !important;
}
.gray-chateau--bx-65 {
  border-right: 65px #a0a4a8 solid !important;
  border-left: 65px #a0a4a8 solid !important;
}
.gray-chateau--ba-66 {
  border: 66px #a0a4a8 solid !important;
}
.gray-chateau--bt-66 {
  border-top: 66px #a0a4a8 solid !important;
}
.gray-chateau--br-66 {
  border-right: 66px #a0a4a8 solid !important;
}
.gray-chateau--bl-66 {
  border-left: 66px #a0a4a8 solid !important;
}
.gray-chateau--bb-66 {
  border-bottom: 66px #a0a4a8 solid !important;
}
.gray-chateau--by-66 {
  border-top: 66px #a0a4a8 solid !important;
  border-bottom: 66px #a0a4a8 solid !important;
}
.gray-chateau--bx-66 {
  border-right: 66px #a0a4a8 solid !important;
  border-left: 66px #a0a4a8 solid !important;
}
.gray-chateau--ba-67 {
  border: 67px #a0a4a8 solid !important;
}
.gray-chateau--bt-67 {
  border-top: 67px #a0a4a8 solid !important;
}
.gray-chateau--br-67 {
  border-right: 67px #a0a4a8 solid !important;
}
.gray-chateau--bl-67 {
  border-left: 67px #a0a4a8 solid !important;
}
.gray-chateau--bb-67 {
  border-bottom: 67px #a0a4a8 solid !important;
}
.gray-chateau--by-67 {
  border-top: 67px #a0a4a8 solid !important;
  border-bottom: 67px #a0a4a8 solid !important;
}
.gray-chateau--bx-67 {
  border-right: 67px #a0a4a8 solid !important;
  border-left: 67px #a0a4a8 solid !important;
}
.gray-chateau--ba-68 {
  border: 68px #a0a4a8 solid !important;
}
.gray-chateau--bt-68 {
  border-top: 68px #a0a4a8 solid !important;
}
.gray-chateau--br-68 {
  border-right: 68px #a0a4a8 solid !important;
}
.gray-chateau--bl-68 {
  border-left: 68px #a0a4a8 solid !important;
}
.gray-chateau--bb-68 {
  border-bottom: 68px #a0a4a8 solid !important;
}
.gray-chateau--by-68 {
  border-top: 68px #a0a4a8 solid !important;
  border-bottom: 68px #a0a4a8 solid !important;
}
.gray-chateau--bx-68 {
  border-right: 68px #a0a4a8 solid !important;
  border-left: 68px #a0a4a8 solid !important;
}
.gray-chateau--ba-69 {
  border: 69px #a0a4a8 solid !important;
}
.gray-chateau--bt-69 {
  border-top: 69px #a0a4a8 solid !important;
}
.gray-chateau--br-69 {
  border-right: 69px #a0a4a8 solid !important;
}
.gray-chateau--bl-69 {
  border-left: 69px #a0a4a8 solid !important;
}
.gray-chateau--bb-69 {
  border-bottom: 69px #a0a4a8 solid !important;
}
.gray-chateau--by-69 {
  border-top: 69px #a0a4a8 solid !important;
  border-bottom: 69px #a0a4a8 solid !important;
}
.gray-chateau--bx-69 {
  border-right: 69px #a0a4a8 solid !important;
  border-left: 69px #a0a4a8 solid !important;
}
.gray-chateau--ba-70 {
  border: 70px #a0a4a8 solid !important;
}
.gray-chateau--bt-70 {
  border-top: 70px #a0a4a8 solid !important;
}
.gray-chateau--br-70 {
  border-right: 70px #a0a4a8 solid !important;
}
.gray-chateau--bl-70 {
  border-left: 70px #a0a4a8 solid !important;
}
.gray-chateau--bb-70 {
  border-bottom: 70px #a0a4a8 solid !important;
}
.gray-chateau--by-70 {
  border-top: 70px #a0a4a8 solid !important;
  border-bottom: 70px #a0a4a8 solid !important;
}
.gray-chateau--bx-70 {
  border-right: 70px #a0a4a8 solid !important;
  border-left: 70px #a0a4a8 solid !important;
}
.gray-chateau--ba-71 {
  border: 71px #a0a4a8 solid !important;
}
.gray-chateau--bt-71 {
  border-top: 71px #a0a4a8 solid !important;
}
.gray-chateau--br-71 {
  border-right: 71px #a0a4a8 solid !important;
}
.gray-chateau--bl-71 {
  border-left: 71px #a0a4a8 solid !important;
}
.gray-chateau--bb-71 {
  border-bottom: 71px #a0a4a8 solid !important;
}
.gray-chateau--by-71 {
  border-top: 71px #a0a4a8 solid !important;
  border-bottom: 71px #a0a4a8 solid !important;
}
.gray-chateau--bx-71 {
  border-right: 71px #a0a4a8 solid !important;
  border-left: 71px #a0a4a8 solid !important;
}
.gray-chateau--ba-72 {
  border: 72px #a0a4a8 solid !important;
}
.gray-chateau--bt-72 {
  border-top: 72px #a0a4a8 solid !important;
}
.gray-chateau--br-72 {
  border-right: 72px #a0a4a8 solid !important;
}
.gray-chateau--bl-72 {
  border-left: 72px #a0a4a8 solid !important;
}
.gray-chateau--bb-72 {
  border-bottom: 72px #a0a4a8 solid !important;
}
.gray-chateau--by-72 {
  border-top: 72px #a0a4a8 solid !important;
  border-bottom: 72px #a0a4a8 solid !important;
}
.gray-chateau--bx-72 {
  border-right: 72px #a0a4a8 solid !important;
  border-left: 72px #a0a4a8 solid !important;
}
.gray-chateau--ba-73 {
  border: 73px #a0a4a8 solid !important;
}
.gray-chateau--bt-73 {
  border-top: 73px #a0a4a8 solid !important;
}
.gray-chateau--br-73 {
  border-right: 73px #a0a4a8 solid !important;
}
.gray-chateau--bl-73 {
  border-left: 73px #a0a4a8 solid !important;
}
.gray-chateau--bb-73 {
  border-bottom: 73px #a0a4a8 solid !important;
}
.gray-chateau--by-73 {
  border-top: 73px #a0a4a8 solid !important;
  border-bottom: 73px #a0a4a8 solid !important;
}
.gray-chateau--bx-73 {
  border-right: 73px #a0a4a8 solid !important;
  border-left: 73px #a0a4a8 solid !important;
}
.gray-chateau--ba-74 {
  border: 74px #a0a4a8 solid !important;
}
.gray-chateau--bt-74 {
  border-top: 74px #a0a4a8 solid !important;
}
.gray-chateau--br-74 {
  border-right: 74px #a0a4a8 solid !important;
}
.gray-chateau--bl-74 {
  border-left: 74px #a0a4a8 solid !important;
}
.gray-chateau--bb-74 {
  border-bottom: 74px #a0a4a8 solid !important;
}
.gray-chateau--by-74 {
  border-top: 74px #a0a4a8 solid !important;
  border-bottom: 74px #a0a4a8 solid !important;
}
.gray-chateau--bx-74 {
  border-right: 74px #a0a4a8 solid !important;
  border-left: 74px #a0a4a8 solid !important;
}
.gray-chateau--ba-75 {
  border: 75px #a0a4a8 solid !important;
}
.gray-chateau--bt-75 {
  border-top: 75px #a0a4a8 solid !important;
}
.gray-chateau--br-75 {
  border-right: 75px #a0a4a8 solid !important;
}
.gray-chateau--bl-75 {
  border-left: 75px #a0a4a8 solid !important;
}
.gray-chateau--bb-75 {
  border-bottom: 75px #a0a4a8 solid !important;
}
.gray-chateau--by-75 {
  border-top: 75px #a0a4a8 solid !important;
  border-bottom: 75px #a0a4a8 solid !important;
}
.gray-chateau--bx-75 {
  border-right: 75px #a0a4a8 solid !important;
  border-left: 75px #a0a4a8 solid !important;
}
.gray-chateau--ba-76 {
  border: 76px #a0a4a8 solid !important;
}
.gray-chateau--bt-76 {
  border-top: 76px #a0a4a8 solid !important;
}
.gray-chateau--br-76 {
  border-right: 76px #a0a4a8 solid !important;
}
.gray-chateau--bl-76 {
  border-left: 76px #a0a4a8 solid !important;
}
.gray-chateau--bb-76 {
  border-bottom: 76px #a0a4a8 solid !important;
}
.gray-chateau--by-76 {
  border-top: 76px #a0a4a8 solid !important;
  border-bottom: 76px #a0a4a8 solid !important;
}
.gray-chateau--bx-76 {
  border-right: 76px #a0a4a8 solid !important;
  border-left: 76px #a0a4a8 solid !important;
}
.gray-chateau--ba-77 {
  border: 77px #a0a4a8 solid !important;
}
.gray-chateau--bt-77 {
  border-top: 77px #a0a4a8 solid !important;
}
.gray-chateau--br-77 {
  border-right: 77px #a0a4a8 solid !important;
}
.gray-chateau--bl-77 {
  border-left: 77px #a0a4a8 solid !important;
}
.gray-chateau--bb-77 {
  border-bottom: 77px #a0a4a8 solid !important;
}
.gray-chateau--by-77 {
  border-top: 77px #a0a4a8 solid !important;
  border-bottom: 77px #a0a4a8 solid !important;
}
.gray-chateau--bx-77 {
  border-right: 77px #a0a4a8 solid !important;
  border-left: 77px #a0a4a8 solid !important;
}
.gray-chateau--ba-78 {
  border: 78px #a0a4a8 solid !important;
}
.gray-chateau--bt-78 {
  border-top: 78px #a0a4a8 solid !important;
}
.gray-chateau--br-78 {
  border-right: 78px #a0a4a8 solid !important;
}
.gray-chateau--bl-78 {
  border-left: 78px #a0a4a8 solid !important;
}
.gray-chateau--bb-78 {
  border-bottom: 78px #a0a4a8 solid !important;
}
.gray-chateau--by-78 {
  border-top: 78px #a0a4a8 solid !important;
  border-bottom: 78px #a0a4a8 solid !important;
}
.gray-chateau--bx-78 {
  border-right: 78px #a0a4a8 solid !important;
  border-left: 78px #a0a4a8 solid !important;
}
.gray-chateau--ba-79 {
  border: 79px #a0a4a8 solid !important;
}
.gray-chateau--bt-79 {
  border-top: 79px #a0a4a8 solid !important;
}
.gray-chateau--br-79 {
  border-right: 79px #a0a4a8 solid !important;
}
.gray-chateau--bl-79 {
  border-left: 79px #a0a4a8 solid !important;
}
.gray-chateau--bb-79 {
  border-bottom: 79px #a0a4a8 solid !important;
}
.gray-chateau--by-79 {
  border-top: 79px #a0a4a8 solid !important;
  border-bottom: 79px #a0a4a8 solid !important;
}
.gray-chateau--bx-79 {
  border-right: 79px #a0a4a8 solid !important;
  border-left: 79px #a0a4a8 solid !important;
}
.gray-chateau--ba-80 {
  border: 80px #a0a4a8 solid !important;
}
.gray-chateau--bt-80 {
  border-top: 80px #a0a4a8 solid !important;
}
.gray-chateau--br-80 {
  border-right: 80px #a0a4a8 solid !important;
}
.gray-chateau--bl-80 {
  border-left: 80px #a0a4a8 solid !important;
}
.gray-chateau--bb-80 {
  border-bottom: 80px #a0a4a8 solid !important;
}
.gray-chateau--by-80 {
  border-top: 80px #a0a4a8 solid !important;
  border-bottom: 80px #a0a4a8 solid !important;
}
.gray-chateau--bx-80 {
  border-right: 80px #a0a4a8 solid !important;
  border-left: 80px #a0a4a8 solid !important;
}
.gray-chateau--ba-81 {
  border: 81px #a0a4a8 solid !important;
}
.gray-chateau--bt-81 {
  border-top: 81px #a0a4a8 solid !important;
}
.gray-chateau--br-81 {
  border-right: 81px #a0a4a8 solid !important;
}
.gray-chateau--bl-81 {
  border-left: 81px #a0a4a8 solid !important;
}
.gray-chateau--bb-81 {
  border-bottom: 81px #a0a4a8 solid !important;
}
.gray-chateau--by-81 {
  border-top: 81px #a0a4a8 solid !important;
  border-bottom: 81px #a0a4a8 solid !important;
}
.gray-chateau--bx-81 {
  border-right: 81px #a0a4a8 solid !important;
  border-left: 81px #a0a4a8 solid !important;
}
.gray-chateau--ba-82 {
  border: 82px #a0a4a8 solid !important;
}
.gray-chateau--bt-82 {
  border-top: 82px #a0a4a8 solid !important;
}
.gray-chateau--br-82 {
  border-right: 82px #a0a4a8 solid !important;
}
.gray-chateau--bl-82 {
  border-left: 82px #a0a4a8 solid !important;
}
.gray-chateau--bb-82 {
  border-bottom: 82px #a0a4a8 solid !important;
}
.gray-chateau--by-82 {
  border-top: 82px #a0a4a8 solid !important;
  border-bottom: 82px #a0a4a8 solid !important;
}
.gray-chateau--bx-82 {
  border-right: 82px #a0a4a8 solid !important;
  border-left: 82px #a0a4a8 solid !important;
}
.gray-chateau--ba-83 {
  border: 83px #a0a4a8 solid !important;
}
.gray-chateau--bt-83 {
  border-top: 83px #a0a4a8 solid !important;
}
.gray-chateau--br-83 {
  border-right: 83px #a0a4a8 solid !important;
}
.gray-chateau--bl-83 {
  border-left: 83px #a0a4a8 solid !important;
}
.gray-chateau--bb-83 {
  border-bottom: 83px #a0a4a8 solid !important;
}
.gray-chateau--by-83 {
  border-top: 83px #a0a4a8 solid !important;
  border-bottom: 83px #a0a4a8 solid !important;
}
.gray-chateau--bx-83 {
  border-right: 83px #a0a4a8 solid !important;
  border-left: 83px #a0a4a8 solid !important;
}
.gray-chateau--ba-84 {
  border: 84px #a0a4a8 solid !important;
}
.gray-chateau--bt-84 {
  border-top: 84px #a0a4a8 solid !important;
}
.gray-chateau--br-84 {
  border-right: 84px #a0a4a8 solid !important;
}
.gray-chateau--bl-84 {
  border-left: 84px #a0a4a8 solid !important;
}
.gray-chateau--bb-84 {
  border-bottom: 84px #a0a4a8 solid !important;
}
.gray-chateau--by-84 {
  border-top: 84px #a0a4a8 solid !important;
  border-bottom: 84px #a0a4a8 solid !important;
}
.gray-chateau--bx-84 {
  border-right: 84px #a0a4a8 solid !important;
  border-left: 84px #a0a4a8 solid !important;
}
.gray-chateau--ba-85 {
  border: 85px #a0a4a8 solid !important;
}
.gray-chateau--bt-85 {
  border-top: 85px #a0a4a8 solid !important;
}
.gray-chateau--br-85 {
  border-right: 85px #a0a4a8 solid !important;
}
.gray-chateau--bl-85 {
  border-left: 85px #a0a4a8 solid !important;
}
.gray-chateau--bb-85 {
  border-bottom: 85px #a0a4a8 solid !important;
}
.gray-chateau--by-85 {
  border-top: 85px #a0a4a8 solid !important;
  border-bottom: 85px #a0a4a8 solid !important;
}
.gray-chateau--bx-85 {
  border-right: 85px #a0a4a8 solid !important;
  border-left: 85px #a0a4a8 solid !important;
}
.gray-chateau--ba-86 {
  border: 86px #a0a4a8 solid !important;
}
.gray-chateau--bt-86 {
  border-top: 86px #a0a4a8 solid !important;
}
.gray-chateau--br-86 {
  border-right: 86px #a0a4a8 solid !important;
}
.gray-chateau--bl-86 {
  border-left: 86px #a0a4a8 solid !important;
}
.gray-chateau--bb-86 {
  border-bottom: 86px #a0a4a8 solid !important;
}
.gray-chateau--by-86 {
  border-top: 86px #a0a4a8 solid !important;
  border-bottom: 86px #a0a4a8 solid !important;
}
.gray-chateau--bx-86 {
  border-right: 86px #a0a4a8 solid !important;
  border-left: 86px #a0a4a8 solid !important;
}
.gray-chateau--ba-87 {
  border: 87px #a0a4a8 solid !important;
}
.gray-chateau--bt-87 {
  border-top: 87px #a0a4a8 solid !important;
}
.gray-chateau--br-87 {
  border-right: 87px #a0a4a8 solid !important;
}
.gray-chateau--bl-87 {
  border-left: 87px #a0a4a8 solid !important;
}
.gray-chateau--bb-87 {
  border-bottom: 87px #a0a4a8 solid !important;
}
.gray-chateau--by-87 {
  border-top: 87px #a0a4a8 solid !important;
  border-bottom: 87px #a0a4a8 solid !important;
}
.gray-chateau--bx-87 {
  border-right: 87px #a0a4a8 solid !important;
  border-left: 87px #a0a4a8 solid !important;
}
.gray-chateau--ba-88 {
  border: 88px #a0a4a8 solid !important;
}
.gray-chateau--bt-88 {
  border-top: 88px #a0a4a8 solid !important;
}
.gray-chateau--br-88 {
  border-right: 88px #a0a4a8 solid !important;
}
.gray-chateau--bl-88 {
  border-left: 88px #a0a4a8 solid !important;
}
.gray-chateau--bb-88 {
  border-bottom: 88px #a0a4a8 solid !important;
}
.gray-chateau--by-88 {
  border-top: 88px #a0a4a8 solid !important;
  border-bottom: 88px #a0a4a8 solid !important;
}
.gray-chateau--bx-88 {
  border-right: 88px #a0a4a8 solid !important;
  border-left: 88px #a0a4a8 solid !important;
}
.gray-chateau--ba-89 {
  border: 89px #a0a4a8 solid !important;
}
.gray-chateau--bt-89 {
  border-top: 89px #a0a4a8 solid !important;
}
.gray-chateau--br-89 {
  border-right: 89px #a0a4a8 solid !important;
}
.gray-chateau--bl-89 {
  border-left: 89px #a0a4a8 solid !important;
}
.gray-chateau--bb-89 {
  border-bottom: 89px #a0a4a8 solid !important;
}
.gray-chateau--by-89 {
  border-top: 89px #a0a4a8 solid !important;
  border-bottom: 89px #a0a4a8 solid !important;
}
.gray-chateau--bx-89 {
  border-right: 89px #a0a4a8 solid !important;
  border-left: 89px #a0a4a8 solid !important;
}
.gray-chateau--ba-90 {
  border: 90px #a0a4a8 solid !important;
}
.gray-chateau--bt-90 {
  border-top: 90px #a0a4a8 solid !important;
}
.gray-chateau--br-90 {
  border-right: 90px #a0a4a8 solid !important;
}
.gray-chateau--bl-90 {
  border-left: 90px #a0a4a8 solid !important;
}
.gray-chateau--bb-90 {
  border-bottom: 90px #a0a4a8 solid !important;
}
.gray-chateau--by-90 {
  border-top: 90px #a0a4a8 solid !important;
  border-bottom: 90px #a0a4a8 solid !important;
}
.gray-chateau--bx-90 {
  border-right: 90px #a0a4a8 solid !important;
  border-left: 90px #a0a4a8 solid !important;
}
.gray-chateau--ba-91 {
  border: 91px #a0a4a8 solid !important;
}
.gray-chateau--bt-91 {
  border-top: 91px #a0a4a8 solid !important;
}
.gray-chateau--br-91 {
  border-right: 91px #a0a4a8 solid !important;
}
.gray-chateau--bl-91 {
  border-left: 91px #a0a4a8 solid !important;
}
.gray-chateau--bb-91 {
  border-bottom: 91px #a0a4a8 solid !important;
}
.gray-chateau--by-91 {
  border-top: 91px #a0a4a8 solid !important;
  border-bottom: 91px #a0a4a8 solid !important;
}
.gray-chateau--bx-91 {
  border-right: 91px #a0a4a8 solid !important;
  border-left: 91px #a0a4a8 solid !important;
}
.gray-chateau--ba-92 {
  border: 92px #a0a4a8 solid !important;
}
.gray-chateau--bt-92 {
  border-top: 92px #a0a4a8 solid !important;
}
.gray-chateau--br-92 {
  border-right: 92px #a0a4a8 solid !important;
}
.gray-chateau--bl-92 {
  border-left: 92px #a0a4a8 solid !important;
}
.gray-chateau--bb-92 {
  border-bottom: 92px #a0a4a8 solid !important;
}
.gray-chateau--by-92 {
  border-top: 92px #a0a4a8 solid !important;
  border-bottom: 92px #a0a4a8 solid !important;
}
.gray-chateau--bx-92 {
  border-right: 92px #a0a4a8 solid !important;
  border-left: 92px #a0a4a8 solid !important;
}
.gray-chateau--ba-93 {
  border: 93px #a0a4a8 solid !important;
}
.gray-chateau--bt-93 {
  border-top: 93px #a0a4a8 solid !important;
}
.gray-chateau--br-93 {
  border-right: 93px #a0a4a8 solid !important;
}
.gray-chateau--bl-93 {
  border-left: 93px #a0a4a8 solid !important;
}
.gray-chateau--bb-93 {
  border-bottom: 93px #a0a4a8 solid !important;
}
.gray-chateau--by-93 {
  border-top: 93px #a0a4a8 solid !important;
  border-bottom: 93px #a0a4a8 solid !important;
}
.gray-chateau--bx-93 {
  border-right: 93px #a0a4a8 solid !important;
  border-left: 93px #a0a4a8 solid !important;
}
.gray-chateau--ba-94 {
  border: 94px #a0a4a8 solid !important;
}
.gray-chateau--bt-94 {
  border-top: 94px #a0a4a8 solid !important;
}
.gray-chateau--br-94 {
  border-right: 94px #a0a4a8 solid !important;
}
.gray-chateau--bl-94 {
  border-left: 94px #a0a4a8 solid !important;
}
.gray-chateau--bb-94 {
  border-bottom: 94px #a0a4a8 solid !important;
}
.gray-chateau--by-94 {
  border-top: 94px #a0a4a8 solid !important;
  border-bottom: 94px #a0a4a8 solid !important;
}
.gray-chateau--bx-94 {
  border-right: 94px #a0a4a8 solid !important;
  border-left: 94px #a0a4a8 solid !important;
}
.gray-chateau--ba-95 {
  border: 95px #a0a4a8 solid !important;
}
.gray-chateau--bt-95 {
  border-top: 95px #a0a4a8 solid !important;
}
.gray-chateau--br-95 {
  border-right: 95px #a0a4a8 solid !important;
}
.gray-chateau--bl-95 {
  border-left: 95px #a0a4a8 solid !important;
}
.gray-chateau--bb-95 {
  border-bottom: 95px #a0a4a8 solid !important;
}
.gray-chateau--by-95 {
  border-top: 95px #a0a4a8 solid !important;
  border-bottom: 95px #a0a4a8 solid !important;
}
.gray-chateau--bx-95 {
  border-right: 95px #a0a4a8 solid !important;
  border-left: 95px #a0a4a8 solid !important;
}
.gray-chateau--ba-96 {
  border: 96px #a0a4a8 solid !important;
}
.gray-chateau--bt-96 {
  border-top: 96px #a0a4a8 solid !important;
}
.gray-chateau--br-96 {
  border-right: 96px #a0a4a8 solid !important;
}
.gray-chateau--bl-96 {
  border-left: 96px #a0a4a8 solid !important;
}
.gray-chateau--bb-96 {
  border-bottom: 96px #a0a4a8 solid !important;
}
.gray-chateau--by-96 {
  border-top: 96px #a0a4a8 solid !important;
  border-bottom: 96px #a0a4a8 solid !important;
}
.gray-chateau--bx-96 {
  border-right: 96px #a0a4a8 solid !important;
  border-left: 96px #a0a4a8 solid !important;
}
.gray-chateau--ba-97 {
  border: 97px #a0a4a8 solid !important;
}
.gray-chateau--bt-97 {
  border-top: 97px #a0a4a8 solid !important;
}
.gray-chateau--br-97 {
  border-right: 97px #a0a4a8 solid !important;
}
.gray-chateau--bl-97 {
  border-left: 97px #a0a4a8 solid !important;
}
.gray-chateau--bb-97 {
  border-bottom: 97px #a0a4a8 solid !important;
}
.gray-chateau--by-97 {
  border-top: 97px #a0a4a8 solid !important;
  border-bottom: 97px #a0a4a8 solid !important;
}
.gray-chateau--bx-97 {
  border-right: 97px #a0a4a8 solid !important;
  border-left: 97px #a0a4a8 solid !important;
}
.gray-chateau--ba-98 {
  border: 98px #a0a4a8 solid !important;
}
.gray-chateau--bt-98 {
  border-top: 98px #a0a4a8 solid !important;
}
.gray-chateau--br-98 {
  border-right: 98px #a0a4a8 solid !important;
}
.gray-chateau--bl-98 {
  border-left: 98px #a0a4a8 solid !important;
}
.gray-chateau--bb-98 {
  border-bottom: 98px #a0a4a8 solid !important;
}
.gray-chateau--by-98 {
  border-top: 98px #a0a4a8 solid !important;
  border-bottom: 98px #a0a4a8 solid !important;
}
.gray-chateau--bx-98 {
  border-right: 98px #a0a4a8 solid !important;
  border-left: 98px #a0a4a8 solid !important;
}
.gray-chateau--ba-99 {
  border: 99px #a0a4a8 solid !important;
}
.gray-chateau--bt-99 {
  border-top: 99px #a0a4a8 solid !important;
}
.gray-chateau--br-99 {
  border-right: 99px #a0a4a8 solid !important;
}
.gray-chateau--bl-99 {
  border-left: 99px #a0a4a8 solid !important;
}
.gray-chateau--bb-99 {
  border-bottom: 99px #a0a4a8 solid !important;
}
.gray-chateau--by-99 {
  border-top: 99px #a0a4a8 solid !important;
  border-bottom: 99px #a0a4a8 solid !important;
}
.gray-chateau--bx-99 {
  border-right: 99px #a0a4a8 solid !important;
  border-left: 99px #a0a4a8 solid !important;
}
.gray-chateau--ba-100 {
  border: 100px #a0a4a8 solid !important;
}
.gray-chateau--bt-100 {
  border-top: 100px #a0a4a8 solid !important;
}
.gray-chateau--br-100 {
  border-right: 100px #a0a4a8 solid !important;
}
.gray-chateau--bl-100 {
  border-left: 100px #a0a4a8 solid !important;
}
.gray-chateau--bb-100 {
  border-bottom: 100px #a0a4a8 solid !important;
}
.gray-chateau--by-100 {
  border-top: 100px #a0a4a8 solid !important;
  border-bottom: 100px #a0a4a8 solid !important;
}
.gray-chateau--bx-100 {
  border-right: 100px #a0a4a8 solid !important;
  border-left: 100px #a0a4a8 solid !important;
}
.school-bus-yellow--ba-1 {
  border: 1px #fdda00 solid !important;
}
.school-bus-yellow--bt-1 {
  border-top: 1px #fdda00 solid !important;
}
.school-bus-yellow--br-1 {
  border-right: 1px #fdda00 solid !important;
}
.school-bus-yellow--bl-1 {
  border-left: 1px #fdda00 solid !important;
}
.school-bus-yellow--bb-1 {
  border-bottom: 1px #fdda00 solid !important;
}
.school-bus-yellow--by-1 {
  border-top: 1px #fdda00 solid !important;
  border-bottom: 1px #fdda00 solid !important;
}
.school-bus-yellow--bx-1 {
  border-right: 1px #fdda00 solid !important;
  border-left: 1px #fdda00 solid !important;
}
.school-bus-yellow--ba-2 {
  border: 2px #fdda00 solid !important;
}
.school-bus-yellow--bt-2 {
  border-top: 2px #fdda00 solid !important;
}
.school-bus-yellow--br-2 {
  border-right: 2px #fdda00 solid !important;
}
.school-bus-yellow--bl-2 {
  border-left: 2px #fdda00 solid !important;
}
.school-bus-yellow--bb-2 {
  border-bottom: 2px #fdda00 solid !important;
}
.school-bus-yellow--by-2 {
  border-top: 2px #fdda00 solid !important;
  border-bottom: 2px #fdda00 solid !important;
}
.school-bus-yellow--bx-2 {
  border-right: 2px #fdda00 solid !important;
  border-left: 2px #fdda00 solid !important;
}
.school-bus-yellow--ba-3 {
  border: 3px #fdda00 solid !important;
}
.school-bus-yellow--bt-3 {
  border-top: 3px #fdda00 solid !important;
}
.school-bus-yellow--br-3 {
  border-right: 3px #fdda00 solid !important;
}
.school-bus-yellow--bl-3 {
  border-left: 3px #fdda00 solid !important;
}
.school-bus-yellow--bb-3 {
  border-bottom: 3px #fdda00 solid !important;
}
.school-bus-yellow--by-3 {
  border-top: 3px #fdda00 solid !important;
  border-bottom: 3px #fdda00 solid !important;
}
.school-bus-yellow--bx-3 {
  border-right: 3px #fdda00 solid !important;
  border-left: 3px #fdda00 solid !important;
}
.school-bus-yellow--ba-4 {
  border: 4px #fdda00 solid !important;
}
.school-bus-yellow--bt-4 {
  border-top: 4px #fdda00 solid !important;
}
.school-bus-yellow--br-4 {
  border-right: 4px #fdda00 solid !important;
}
.school-bus-yellow--bl-4 {
  border-left: 4px #fdda00 solid !important;
}
.school-bus-yellow--bb-4 {
  border-bottom: 4px #fdda00 solid !important;
}
.school-bus-yellow--by-4 {
  border-top: 4px #fdda00 solid !important;
  border-bottom: 4px #fdda00 solid !important;
}
.school-bus-yellow--bx-4 {
  border-right: 4px #fdda00 solid !important;
  border-left: 4px #fdda00 solid !important;
}
.school-bus-yellow--ba-5 {
  border: 5px #fdda00 solid !important;
}
.school-bus-yellow--bt-5 {
  border-top: 5px #fdda00 solid !important;
}
.school-bus-yellow--br-5 {
  border-right: 5px #fdda00 solid !important;
}
.school-bus-yellow--bl-5 {
  border-left: 5px #fdda00 solid !important;
}
.school-bus-yellow--bb-5 {
  border-bottom: 5px #fdda00 solid !important;
}
.school-bus-yellow--by-5 {
  border-top: 5px #fdda00 solid !important;
  border-bottom: 5px #fdda00 solid !important;
}
.school-bus-yellow--bx-5 {
  border-right: 5px #fdda00 solid !important;
  border-left: 5px #fdda00 solid !important;
}
.school-bus-yellow--ba-6 {
  border: 6px #fdda00 solid !important;
}
.school-bus-yellow--bt-6 {
  border-top: 6px #fdda00 solid !important;
}
.school-bus-yellow--br-6 {
  border-right: 6px #fdda00 solid !important;
}
.school-bus-yellow--bl-6 {
  border-left: 6px #fdda00 solid !important;
}
.school-bus-yellow--bb-6 {
  border-bottom: 6px #fdda00 solid !important;
}
.school-bus-yellow--by-6 {
  border-top: 6px #fdda00 solid !important;
  border-bottom: 6px #fdda00 solid !important;
}
.school-bus-yellow--bx-6 {
  border-right: 6px #fdda00 solid !important;
  border-left: 6px #fdda00 solid !important;
}
.school-bus-yellow--ba-7 {
  border: 7px #fdda00 solid !important;
}
.school-bus-yellow--bt-7 {
  border-top: 7px #fdda00 solid !important;
}
.school-bus-yellow--br-7 {
  border-right: 7px #fdda00 solid !important;
}
.school-bus-yellow--bl-7 {
  border-left: 7px #fdda00 solid !important;
}
.school-bus-yellow--bb-7 {
  border-bottom: 7px #fdda00 solid !important;
}
.school-bus-yellow--by-7 {
  border-top: 7px #fdda00 solid !important;
  border-bottom: 7px #fdda00 solid !important;
}
.school-bus-yellow--bx-7 {
  border-right: 7px #fdda00 solid !important;
  border-left: 7px #fdda00 solid !important;
}
.school-bus-yellow--ba-8 {
  border: 8px #fdda00 solid !important;
}
.school-bus-yellow--bt-8 {
  border-top: 8px #fdda00 solid !important;
}
.school-bus-yellow--br-8 {
  border-right: 8px #fdda00 solid !important;
}
.school-bus-yellow--bl-8 {
  border-left: 8px #fdda00 solid !important;
}
.school-bus-yellow--bb-8 {
  border-bottom: 8px #fdda00 solid !important;
}
.school-bus-yellow--by-8 {
  border-top: 8px #fdda00 solid !important;
  border-bottom: 8px #fdda00 solid !important;
}
.school-bus-yellow--bx-8 {
  border-right: 8px #fdda00 solid !important;
  border-left: 8px #fdda00 solid !important;
}
.school-bus-yellow--ba-9 {
  border: 9px #fdda00 solid !important;
}
.school-bus-yellow--bt-9 {
  border-top: 9px #fdda00 solid !important;
}
.school-bus-yellow--br-9 {
  border-right: 9px #fdda00 solid !important;
}
.school-bus-yellow--bl-9 {
  border-left: 9px #fdda00 solid !important;
}
.school-bus-yellow--bb-9 {
  border-bottom: 9px #fdda00 solid !important;
}
.school-bus-yellow--by-9 {
  border-top: 9px #fdda00 solid !important;
  border-bottom: 9px #fdda00 solid !important;
}
.school-bus-yellow--bx-9 {
  border-right: 9px #fdda00 solid !important;
  border-left: 9px #fdda00 solid !important;
}
.school-bus-yellow--ba-10 {
  border: 10px #fdda00 solid !important;
}
.school-bus-yellow--bt-10 {
  border-top: 10px #fdda00 solid !important;
}
.school-bus-yellow--br-10 {
  border-right: 10px #fdda00 solid !important;
}
.school-bus-yellow--bl-10 {
  border-left: 10px #fdda00 solid !important;
}
.school-bus-yellow--bb-10 {
  border-bottom: 10px #fdda00 solid !important;
}
.school-bus-yellow--by-10 {
  border-top: 10px #fdda00 solid !important;
  border-bottom: 10px #fdda00 solid !important;
}
.school-bus-yellow--bx-10 {
  border-right: 10px #fdda00 solid !important;
  border-left: 10px #fdda00 solid !important;
}
.school-bus-yellow--ba-11 {
  border: 11px #fdda00 solid !important;
}
.school-bus-yellow--bt-11 {
  border-top: 11px #fdda00 solid !important;
}
.school-bus-yellow--br-11 {
  border-right: 11px #fdda00 solid !important;
}
.school-bus-yellow--bl-11 {
  border-left: 11px #fdda00 solid !important;
}
.school-bus-yellow--bb-11 {
  border-bottom: 11px #fdda00 solid !important;
}
.school-bus-yellow--by-11 {
  border-top: 11px #fdda00 solid !important;
  border-bottom: 11px #fdda00 solid !important;
}
.school-bus-yellow--bx-11 {
  border-right: 11px #fdda00 solid !important;
  border-left: 11px #fdda00 solid !important;
}
.school-bus-yellow--ba-12 {
  border: 12px #fdda00 solid !important;
}
.school-bus-yellow--bt-12 {
  border-top: 12px #fdda00 solid !important;
}
.school-bus-yellow--br-12 {
  border-right: 12px #fdda00 solid !important;
}
.school-bus-yellow--bl-12 {
  border-left: 12px #fdda00 solid !important;
}
.school-bus-yellow--bb-12 {
  border-bottom: 12px #fdda00 solid !important;
}
.school-bus-yellow--by-12 {
  border-top: 12px #fdda00 solid !important;
  border-bottom: 12px #fdda00 solid !important;
}
.school-bus-yellow--bx-12 {
  border-right: 12px #fdda00 solid !important;
  border-left: 12px #fdda00 solid !important;
}
.school-bus-yellow--ba-13 {
  border: 13px #fdda00 solid !important;
}
.school-bus-yellow--bt-13 {
  border-top: 13px #fdda00 solid !important;
}
.school-bus-yellow--br-13 {
  border-right: 13px #fdda00 solid !important;
}
.school-bus-yellow--bl-13 {
  border-left: 13px #fdda00 solid !important;
}
.school-bus-yellow--bb-13 {
  border-bottom: 13px #fdda00 solid !important;
}
.school-bus-yellow--by-13 {
  border-top: 13px #fdda00 solid !important;
  border-bottom: 13px #fdda00 solid !important;
}
.school-bus-yellow--bx-13 {
  border-right: 13px #fdda00 solid !important;
  border-left: 13px #fdda00 solid !important;
}
.school-bus-yellow--ba-14 {
  border: 14px #fdda00 solid !important;
}
.school-bus-yellow--bt-14 {
  border-top: 14px #fdda00 solid !important;
}
.school-bus-yellow--br-14 {
  border-right: 14px #fdda00 solid !important;
}
.school-bus-yellow--bl-14 {
  border-left: 14px #fdda00 solid !important;
}
.school-bus-yellow--bb-14 {
  border-bottom: 14px #fdda00 solid !important;
}
.school-bus-yellow--by-14 {
  border-top: 14px #fdda00 solid !important;
  border-bottom: 14px #fdda00 solid !important;
}
.school-bus-yellow--bx-14 {
  border-right: 14px #fdda00 solid !important;
  border-left: 14px #fdda00 solid !important;
}
.school-bus-yellow--ba-15 {
  border: 15px #fdda00 solid !important;
}
.school-bus-yellow--bt-15 {
  border-top: 15px #fdda00 solid !important;
}
.school-bus-yellow--br-15 {
  border-right: 15px #fdda00 solid !important;
}
.school-bus-yellow--bl-15 {
  border-left: 15px #fdda00 solid !important;
}
.school-bus-yellow--bb-15 {
  border-bottom: 15px #fdda00 solid !important;
}
.school-bus-yellow--by-15 {
  border-top: 15px #fdda00 solid !important;
  border-bottom: 15px #fdda00 solid !important;
}
.school-bus-yellow--bx-15 {
  border-right: 15px #fdda00 solid !important;
  border-left: 15px #fdda00 solid !important;
}
.school-bus-yellow--ba-16 {
  border: 16px #fdda00 solid !important;
}
.school-bus-yellow--bt-16 {
  border-top: 16px #fdda00 solid !important;
}
.school-bus-yellow--br-16 {
  border-right: 16px #fdda00 solid !important;
}
.school-bus-yellow--bl-16 {
  border-left: 16px #fdda00 solid !important;
}
.school-bus-yellow--bb-16 {
  border-bottom: 16px #fdda00 solid !important;
}
.school-bus-yellow--by-16 {
  border-top: 16px #fdda00 solid !important;
  border-bottom: 16px #fdda00 solid !important;
}
.school-bus-yellow--bx-16 {
  border-right: 16px #fdda00 solid !important;
  border-left: 16px #fdda00 solid !important;
}
.school-bus-yellow--ba-17 {
  border: 17px #fdda00 solid !important;
}
.school-bus-yellow--bt-17 {
  border-top: 17px #fdda00 solid !important;
}
.school-bus-yellow--br-17 {
  border-right: 17px #fdda00 solid !important;
}
.school-bus-yellow--bl-17 {
  border-left: 17px #fdda00 solid !important;
}
.school-bus-yellow--bb-17 {
  border-bottom: 17px #fdda00 solid !important;
}
.school-bus-yellow--by-17 {
  border-top: 17px #fdda00 solid !important;
  border-bottom: 17px #fdda00 solid !important;
}
.school-bus-yellow--bx-17 {
  border-right: 17px #fdda00 solid !important;
  border-left: 17px #fdda00 solid !important;
}
.school-bus-yellow--ba-18 {
  border: 18px #fdda00 solid !important;
}
.school-bus-yellow--bt-18 {
  border-top: 18px #fdda00 solid !important;
}
.school-bus-yellow--br-18 {
  border-right: 18px #fdda00 solid !important;
}
.school-bus-yellow--bl-18 {
  border-left: 18px #fdda00 solid !important;
}
.school-bus-yellow--bb-18 {
  border-bottom: 18px #fdda00 solid !important;
}
.school-bus-yellow--by-18 {
  border-top: 18px #fdda00 solid !important;
  border-bottom: 18px #fdda00 solid !important;
}
.school-bus-yellow--bx-18 {
  border-right: 18px #fdda00 solid !important;
  border-left: 18px #fdda00 solid !important;
}
.school-bus-yellow--ba-19 {
  border: 19px #fdda00 solid !important;
}
.school-bus-yellow--bt-19 {
  border-top: 19px #fdda00 solid !important;
}
.school-bus-yellow--br-19 {
  border-right: 19px #fdda00 solid !important;
}
.school-bus-yellow--bl-19 {
  border-left: 19px #fdda00 solid !important;
}
.school-bus-yellow--bb-19 {
  border-bottom: 19px #fdda00 solid !important;
}
.school-bus-yellow--by-19 {
  border-top: 19px #fdda00 solid !important;
  border-bottom: 19px #fdda00 solid !important;
}
.school-bus-yellow--bx-19 {
  border-right: 19px #fdda00 solid !important;
  border-left: 19px #fdda00 solid !important;
}
.school-bus-yellow--ba-20 {
  border: 20px #fdda00 solid !important;
}
.school-bus-yellow--bt-20 {
  border-top: 20px #fdda00 solid !important;
}
.school-bus-yellow--br-20 {
  border-right: 20px #fdda00 solid !important;
}
.school-bus-yellow--bl-20 {
  border-left: 20px #fdda00 solid !important;
}
.school-bus-yellow--bb-20 {
  border-bottom: 20px #fdda00 solid !important;
}
.school-bus-yellow--by-20 {
  border-top: 20px #fdda00 solid !important;
  border-bottom: 20px #fdda00 solid !important;
}
.school-bus-yellow--bx-20 {
  border-right: 20px #fdda00 solid !important;
  border-left: 20px #fdda00 solid !important;
}
.school-bus-yellow--ba-21 {
  border: 21px #fdda00 solid !important;
}
.school-bus-yellow--bt-21 {
  border-top: 21px #fdda00 solid !important;
}
.school-bus-yellow--br-21 {
  border-right: 21px #fdda00 solid !important;
}
.school-bus-yellow--bl-21 {
  border-left: 21px #fdda00 solid !important;
}
.school-bus-yellow--bb-21 {
  border-bottom: 21px #fdda00 solid !important;
}
.school-bus-yellow--by-21 {
  border-top: 21px #fdda00 solid !important;
  border-bottom: 21px #fdda00 solid !important;
}
.school-bus-yellow--bx-21 {
  border-right: 21px #fdda00 solid !important;
  border-left: 21px #fdda00 solid !important;
}
.school-bus-yellow--ba-22 {
  border: 22px #fdda00 solid !important;
}
.school-bus-yellow--bt-22 {
  border-top: 22px #fdda00 solid !important;
}
.school-bus-yellow--br-22 {
  border-right: 22px #fdda00 solid !important;
}
.school-bus-yellow--bl-22 {
  border-left: 22px #fdda00 solid !important;
}
.school-bus-yellow--bb-22 {
  border-bottom: 22px #fdda00 solid !important;
}
.school-bus-yellow--by-22 {
  border-top: 22px #fdda00 solid !important;
  border-bottom: 22px #fdda00 solid !important;
}
.school-bus-yellow--bx-22 {
  border-right: 22px #fdda00 solid !important;
  border-left: 22px #fdda00 solid !important;
}
.school-bus-yellow--ba-23 {
  border: 23px #fdda00 solid !important;
}
.school-bus-yellow--bt-23 {
  border-top: 23px #fdda00 solid !important;
}
.school-bus-yellow--br-23 {
  border-right: 23px #fdda00 solid !important;
}
.school-bus-yellow--bl-23 {
  border-left: 23px #fdda00 solid !important;
}
.school-bus-yellow--bb-23 {
  border-bottom: 23px #fdda00 solid !important;
}
.school-bus-yellow--by-23 {
  border-top: 23px #fdda00 solid !important;
  border-bottom: 23px #fdda00 solid !important;
}
.school-bus-yellow--bx-23 {
  border-right: 23px #fdda00 solid !important;
  border-left: 23px #fdda00 solid !important;
}
.school-bus-yellow--ba-24 {
  border: 24px #fdda00 solid !important;
}
.school-bus-yellow--bt-24 {
  border-top: 24px #fdda00 solid !important;
}
.school-bus-yellow--br-24 {
  border-right: 24px #fdda00 solid !important;
}
.school-bus-yellow--bl-24 {
  border-left: 24px #fdda00 solid !important;
}
.school-bus-yellow--bb-24 {
  border-bottom: 24px #fdda00 solid !important;
}
.school-bus-yellow--by-24 {
  border-top: 24px #fdda00 solid !important;
  border-bottom: 24px #fdda00 solid !important;
}
.school-bus-yellow--bx-24 {
  border-right: 24px #fdda00 solid !important;
  border-left: 24px #fdda00 solid !important;
}
.school-bus-yellow--ba-25 {
  border: 25px #fdda00 solid !important;
}
.school-bus-yellow--bt-25 {
  border-top: 25px #fdda00 solid !important;
}
.school-bus-yellow--br-25 {
  border-right: 25px #fdda00 solid !important;
}
.school-bus-yellow--bl-25 {
  border-left: 25px #fdda00 solid !important;
}
.school-bus-yellow--bb-25 {
  border-bottom: 25px #fdda00 solid !important;
}
.school-bus-yellow--by-25 {
  border-top: 25px #fdda00 solid !important;
  border-bottom: 25px #fdda00 solid !important;
}
.school-bus-yellow--bx-25 {
  border-right: 25px #fdda00 solid !important;
  border-left: 25px #fdda00 solid !important;
}
.school-bus-yellow--ba-26 {
  border: 26px #fdda00 solid !important;
}
.school-bus-yellow--bt-26 {
  border-top: 26px #fdda00 solid !important;
}
.school-bus-yellow--br-26 {
  border-right: 26px #fdda00 solid !important;
}
.school-bus-yellow--bl-26 {
  border-left: 26px #fdda00 solid !important;
}
.school-bus-yellow--bb-26 {
  border-bottom: 26px #fdda00 solid !important;
}
.school-bus-yellow--by-26 {
  border-top: 26px #fdda00 solid !important;
  border-bottom: 26px #fdda00 solid !important;
}
.school-bus-yellow--bx-26 {
  border-right: 26px #fdda00 solid !important;
  border-left: 26px #fdda00 solid !important;
}
.school-bus-yellow--ba-27 {
  border: 27px #fdda00 solid !important;
}
.school-bus-yellow--bt-27 {
  border-top: 27px #fdda00 solid !important;
}
.school-bus-yellow--br-27 {
  border-right: 27px #fdda00 solid !important;
}
.school-bus-yellow--bl-27 {
  border-left: 27px #fdda00 solid !important;
}
.school-bus-yellow--bb-27 {
  border-bottom: 27px #fdda00 solid !important;
}
.school-bus-yellow--by-27 {
  border-top: 27px #fdda00 solid !important;
  border-bottom: 27px #fdda00 solid !important;
}
.school-bus-yellow--bx-27 {
  border-right: 27px #fdda00 solid !important;
  border-left: 27px #fdda00 solid !important;
}
.school-bus-yellow--ba-28 {
  border: 28px #fdda00 solid !important;
}
.school-bus-yellow--bt-28 {
  border-top: 28px #fdda00 solid !important;
}
.school-bus-yellow--br-28 {
  border-right: 28px #fdda00 solid !important;
}
.school-bus-yellow--bl-28 {
  border-left: 28px #fdda00 solid !important;
}
.school-bus-yellow--bb-28 {
  border-bottom: 28px #fdda00 solid !important;
}
.school-bus-yellow--by-28 {
  border-top: 28px #fdda00 solid !important;
  border-bottom: 28px #fdda00 solid !important;
}
.school-bus-yellow--bx-28 {
  border-right: 28px #fdda00 solid !important;
  border-left: 28px #fdda00 solid !important;
}
.school-bus-yellow--ba-29 {
  border: 29px #fdda00 solid !important;
}
.school-bus-yellow--bt-29 {
  border-top: 29px #fdda00 solid !important;
}
.school-bus-yellow--br-29 {
  border-right: 29px #fdda00 solid !important;
}
.school-bus-yellow--bl-29 {
  border-left: 29px #fdda00 solid !important;
}
.school-bus-yellow--bb-29 {
  border-bottom: 29px #fdda00 solid !important;
}
.school-bus-yellow--by-29 {
  border-top: 29px #fdda00 solid !important;
  border-bottom: 29px #fdda00 solid !important;
}
.school-bus-yellow--bx-29 {
  border-right: 29px #fdda00 solid !important;
  border-left: 29px #fdda00 solid !important;
}
.school-bus-yellow--ba-30 {
  border: 30px #fdda00 solid !important;
}
.school-bus-yellow--bt-30 {
  border-top: 30px #fdda00 solid !important;
}
.school-bus-yellow--br-30 {
  border-right: 30px #fdda00 solid !important;
}
.school-bus-yellow--bl-30 {
  border-left: 30px #fdda00 solid !important;
}
.school-bus-yellow--bb-30 {
  border-bottom: 30px #fdda00 solid !important;
}
.school-bus-yellow--by-30 {
  border-top: 30px #fdda00 solid !important;
  border-bottom: 30px #fdda00 solid !important;
}
.school-bus-yellow--bx-30 {
  border-right: 30px #fdda00 solid !important;
  border-left: 30px #fdda00 solid !important;
}
.school-bus-yellow--ba-31 {
  border: 31px #fdda00 solid !important;
}
.school-bus-yellow--bt-31 {
  border-top: 31px #fdda00 solid !important;
}
.school-bus-yellow--br-31 {
  border-right: 31px #fdda00 solid !important;
}
.school-bus-yellow--bl-31 {
  border-left: 31px #fdda00 solid !important;
}
.school-bus-yellow--bb-31 {
  border-bottom: 31px #fdda00 solid !important;
}
.school-bus-yellow--by-31 {
  border-top: 31px #fdda00 solid !important;
  border-bottom: 31px #fdda00 solid !important;
}
.school-bus-yellow--bx-31 {
  border-right: 31px #fdda00 solid !important;
  border-left: 31px #fdda00 solid !important;
}
.school-bus-yellow--ba-32 {
  border: 32px #fdda00 solid !important;
}
.school-bus-yellow--bt-32 {
  border-top: 32px #fdda00 solid !important;
}
.school-bus-yellow--br-32 {
  border-right: 32px #fdda00 solid !important;
}
.school-bus-yellow--bl-32 {
  border-left: 32px #fdda00 solid !important;
}
.school-bus-yellow--bb-32 {
  border-bottom: 32px #fdda00 solid !important;
}
.school-bus-yellow--by-32 {
  border-top: 32px #fdda00 solid !important;
  border-bottom: 32px #fdda00 solid !important;
}
.school-bus-yellow--bx-32 {
  border-right: 32px #fdda00 solid !important;
  border-left: 32px #fdda00 solid !important;
}
.school-bus-yellow--ba-33 {
  border: 33px #fdda00 solid !important;
}
.school-bus-yellow--bt-33 {
  border-top: 33px #fdda00 solid !important;
}
.school-bus-yellow--br-33 {
  border-right: 33px #fdda00 solid !important;
}
.school-bus-yellow--bl-33 {
  border-left: 33px #fdda00 solid !important;
}
.school-bus-yellow--bb-33 {
  border-bottom: 33px #fdda00 solid !important;
}
.school-bus-yellow--by-33 {
  border-top: 33px #fdda00 solid !important;
  border-bottom: 33px #fdda00 solid !important;
}
.school-bus-yellow--bx-33 {
  border-right: 33px #fdda00 solid !important;
  border-left: 33px #fdda00 solid !important;
}
.school-bus-yellow--ba-34 {
  border: 34px #fdda00 solid !important;
}
.school-bus-yellow--bt-34 {
  border-top: 34px #fdda00 solid !important;
}
.school-bus-yellow--br-34 {
  border-right: 34px #fdda00 solid !important;
}
.school-bus-yellow--bl-34 {
  border-left: 34px #fdda00 solid !important;
}
.school-bus-yellow--bb-34 {
  border-bottom: 34px #fdda00 solid !important;
}
.school-bus-yellow--by-34 {
  border-top: 34px #fdda00 solid !important;
  border-bottom: 34px #fdda00 solid !important;
}
.school-bus-yellow--bx-34 {
  border-right: 34px #fdda00 solid !important;
  border-left: 34px #fdda00 solid !important;
}
.school-bus-yellow--ba-35 {
  border: 35px #fdda00 solid !important;
}
.school-bus-yellow--bt-35 {
  border-top: 35px #fdda00 solid !important;
}
.school-bus-yellow--br-35 {
  border-right: 35px #fdda00 solid !important;
}
.school-bus-yellow--bl-35 {
  border-left: 35px #fdda00 solid !important;
}
.school-bus-yellow--bb-35 {
  border-bottom: 35px #fdda00 solid !important;
}
.school-bus-yellow--by-35 {
  border-top: 35px #fdda00 solid !important;
  border-bottom: 35px #fdda00 solid !important;
}
.school-bus-yellow--bx-35 {
  border-right: 35px #fdda00 solid !important;
  border-left: 35px #fdda00 solid !important;
}
.school-bus-yellow--ba-36 {
  border: 36px #fdda00 solid !important;
}
.school-bus-yellow--bt-36 {
  border-top: 36px #fdda00 solid !important;
}
.school-bus-yellow--br-36 {
  border-right: 36px #fdda00 solid !important;
}
.school-bus-yellow--bl-36 {
  border-left: 36px #fdda00 solid !important;
}
.school-bus-yellow--bb-36 {
  border-bottom: 36px #fdda00 solid !important;
}
.school-bus-yellow--by-36 {
  border-top: 36px #fdda00 solid !important;
  border-bottom: 36px #fdda00 solid !important;
}
.school-bus-yellow--bx-36 {
  border-right: 36px #fdda00 solid !important;
  border-left: 36px #fdda00 solid !important;
}
.school-bus-yellow--ba-37 {
  border: 37px #fdda00 solid !important;
}
.school-bus-yellow--bt-37 {
  border-top: 37px #fdda00 solid !important;
}
.school-bus-yellow--br-37 {
  border-right: 37px #fdda00 solid !important;
}
.school-bus-yellow--bl-37 {
  border-left: 37px #fdda00 solid !important;
}
.school-bus-yellow--bb-37 {
  border-bottom: 37px #fdda00 solid !important;
}
.school-bus-yellow--by-37 {
  border-top: 37px #fdda00 solid !important;
  border-bottom: 37px #fdda00 solid !important;
}
.school-bus-yellow--bx-37 {
  border-right: 37px #fdda00 solid !important;
  border-left: 37px #fdda00 solid !important;
}
.school-bus-yellow--ba-38 {
  border: 38px #fdda00 solid !important;
}
.school-bus-yellow--bt-38 {
  border-top: 38px #fdda00 solid !important;
}
.school-bus-yellow--br-38 {
  border-right: 38px #fdda00 solid !important;
}
.school-bus-yellow--bl-38 {
  border-left: 38px #fdda00 solid !important;
}
.school-bus-yellow--bb-38 {
  border-bottom: 38px #fdda00 solid !important;
}
.school-bus-yellow--by-38 {
  border-top: 38px #fdda00 solid !important;
  border-bottom: 38px #fdda00 solid !important;
}
.school-bus-yellow--bx-38 {
  border-right: 38px #fdda00 solid !important;
  border-left: 38px #fdda00 solid !important;
}
.school-bus-yellow--ba-39 {
  border: 39px #fdda00 solid !important;
}
.school-bus-yellow--bt-39 {
  border-top: 39px #fdda00 solid !important;
}
.school-bus-yellow--br-39 {
  border-right: 39px #fdda00 solid !important;
}
.school-bus-yellow--bl-39 {
  border-left: 39px #fdda00 solid !important;
}
.school-bus-yellow--bb-39 {
  border-bottom: 39px #fdda00 solid !important;
}
.school-bus-yellow--by-39 {
  border-top: 39px #fdda00 solid !important;
  border-bottom: 39px #fdda00 solid !important;
}
.school-bus-yellow--bx-39 {
  border-right: 39px #fdda00 solid !important;
  border-left: 39px #fdda00 solid !important;
}
.school-bus-yellow--ba-40 {
  border: 40px #fdda00 solid !important;
}
.school-bus-yellow--bt-40 {
  border-top: 40px #fdda00 solid !important;
}
.school-bus-yellow--br-40 {
  border-right: 40px #fdda00 solid !important;
}
.school-bus-yellow--bl-40 {
  border-left: 40px #fdda00 solid !important;
}
.school-bus-yellow--bb-40 {
  border-bottom: 40px #fdda00 solid !important;
}
.school-bus-yellow--by-40 {
  border-top: 40px #fdda00 solid !important;
  border-bottom: 40px #fdda00 solid !important;
}
.school-bus-yellow--bx-40 {
  border-right: 40px #fdda00 solid !important;
  border-left: 40px #fdda00 solid !important;
}
.school-bus-yellow--ba-41 {
  border: 41px #fdda00 solid !important;
}
.school-bus-yellow--bt-41 {
  border-top: 41px #fdda00 solid !important;
}
.school-bus-yellow--br-41 {
  border-right: 41px #fdda00 solid !important;
}
.school-bus-yellow--bl-41 {
  border-left: 41px #fdda00 solid !important;
}
.school-bus-yellow--bb-41 {
  border-bottom: 41px #fdda00 solid !important;
}
.school-bus-yellow--by-41 {
  border-top: 41px #fdda00 solid !important;
  border-bottom: 41px #fdda00 solid !important;
}
.school-bus-yellow--bx-41 {
  border-right: 41px #fdda00 solid !important;
  border-left: 41px #fdda00 solid !important;
}
.school-bus-yellow--ba-42 {
  border: 42px #fdda00 solid !important;
}
.school-bus-yellow--bt-42 {
  border-top: 42px #fdda00 solid !important;
}
.school-bus-yellow--br-42 {
  border-right: 42px #fdda00 solid !important;
}
.school-bus-yellow--bl-42 {
  border-left: 42px #fdda00 solid !important;
}
.school-bus-yellow--bb-42 {
  border-bottom: 42px #fdda00 solid !important;
}
.school-bus-yellow--by-42 {
  border-top: 42px #fdda00 solid !important;
  border-bottom: 42px #fdda00 solid !important;
}
.school-bus-yellow--bx-42 {
  border-right: 42px #fdda00 solid !important;
  border-left: 42px #fdda00 solid !important;
}
.school-bus-yellow--ba-43 {
  border: 43px #fdda00 solid !important;
}
.school-bus-yellow--bt-43 {
  border-top: 43px #fdda00 solid !important;
}
.school-bus-yellow--br-43 {
  border-right: 43px #fdda00 solid !important;
}
.school-bus-yellow--bl-43 {
  border-left: 43px #fdda00 solid !important;
}
.school-bus-yellow--bb-43 {
  border-bottom: 43px #fdda00 solid !important;
}
.school-bus-yellow--by-43 {
  border-top: 43px #fdda00 solid !important;
  border-bottom: 43px #fdda00 solid !important;
}
.school-bus-yellow--bx-43 {
  border-right: 43px #fdda00 solid !important;
  border-left: 43px #fdda00 solid !important;
}
.school-bus-yellow--ba-44 {
  border: 44px #fdda00 solid !important;
}
.school-bus-yellow--bt-44 {
  border-top: 44px #fdda00 solid !important;
}
.school-bus-yellow--br-44 {
  border-right: 44px #fdda00 solid !important;
}
.school-bus-yellow--bl-44 {
  border-left: 44px #fdda00 solid !important;
}
.school-bus-yellow--bb-44 {
  border-bottom: 44px #fdda00 solid !important;
}
.school-bus-yellow--by-44 {
  border-top: 44px #fdda00 solid !important;
  border-bottom: 44px #fdda00 solid !important;
}
.school-bus-yellow--bx-44 {
  border-right: 44px #fdda00 solid !important;
  border-left: 44px #fdda00 solid !important;
}
.school-bus-yellow--ba-45 {
  border: 45px #fdda00 solid !important;
}
.school-bus-yellow--bt-45 {
  border-top: 45px #fdda00 solid !important;
}
.school-bus-yellow--br-45 {
  border-right: 45px #fdda00 solid !important;
}
.school-bus-yellow--bl-45 {
  border-left: 45px #fdda00 solid !important;
}
.school-bus-yellow--bb-45 {
  border-bottom: 45px #fdda00 solid !important;
}
.school-bus-yellow--by-45 {
  border-top: 45px #fdda00 solid !important;
  border-bottom: 45px #fdda00 solid !important;
}
.school-bus-yellow--bx-45 {
  border-right: 45px #fdda00 solid !important;
  border-left: 45px #fdda00 solid !important;
}
.school-bus-yellow--ba-46 {
  border: 46px #fdda00 solid !important;
}
.school-bus-yellow--bt-46 {
  border-top: 46px #fdda00 solid !important;
}
.school-bus-yellow--br-46 {
  border-right: 46px #fdda00 solid !important;
}
.school-bus-yellow--bl-46 {
  border-left: 46px #fdda00 solid !important;
}
.school-bus-yellow--bb-46 {
  border-bottom: 46px #fdda00 solid !important;
}
.school-bus-yellow--by-46 {
  border-top: 46px #fdda00 solid !important;
  border-bottom: 46px #fdda00 solid !important;
}
.school-bus-yellow--bx-46 {
  border-right: 46px #fdda00 solid !important;
  border-left: 46px #fdda00 solid !important;
}
.school-bus-yellow--ba-47 {
  border: 47px #fdda00 solid !important;
}
.school-bus-yellow--bt-47 {
  border-top: 47px #fdda00 solid !important;
}
.school-bus-yellow--br-47 {
  border-right: 47px #fdda00 solid !important;
}
.school-bus-yellow--bl-47 {
  border-left: 47px #fdda00 solid !important;
}
.school-bus-yellow--bb-47 {
  border-bottom: 47px #fdda00 solid !important;
}
.school-bus-yellow--by-47 {
  border-top: 47px #fdda00 solid !important;
  border-bottom: 47px #fdda00 solid !important;
}
.school-bus-yellow--bx-47 {
  border-right: 47px #fdda00 solid !important;
  border-left: 47px #fdda00 solid !important;
}
.school-bus-yellow--ba-48 {
  border: 48px #fdda00 solid !important;
}
.school-bus-yellow--bt-48 {
  border-top: 48px #fdda00 solid !important;
}
.school-bus-yellow--br-48 {
  border-right: 48px #fdda00 solid !important;
}
.school-bus-yellow--bl-48 {
  border-left: 48px #fdda00 solid !important;
}
.school-bus-yellow--bb-48 {
  border-bottom: 48px #fdda00 solid !important;
}
.school-bus-yellow--by-48 {
  border-top: 48px #fdda00 solid !important;
  border-bottom: 48px #fdda00 solid !important;
}
.school-bus-yellow--bx-48 {
  border-right: 48px #fdda00 solid !important;
  border-left: 48px #fdda00 solid !important;
}
.school-bus-yellow--ba-49 {
  border: 49px #fdda00 solid !important;
}
.school-bus-yellow--bt-49 {
  border-top: 49px #fdda00 solid !important;
}
.school-bus-yellow--br-49 {
  border-right: 49px #fdda00 solid !important;
}
.school-bus-yellow--bl-49 {
  border-left: 49px #fdda00 solid !important;
}
.school-bus-yellow--bb-49 {
  border-bottom: 49px #fdda00 solid !important;
}
.school-bus-yellow--by-49 {
  border-top: 49px #fdda00 solid !important;
  border-bottom: 49px #fdda00 solid !important;
}
.school-bus-yellow--bx-49 {
  border-right: 49px #fdda00 solid !important;
  border-left: 49px #fdda00 solid !important;
}
.school-bus-yellow--ba-50 {
  border: 50px #fdda00 solid !important;
}
.school-bus-yellow--bt-50 {
  border-top: 50px #fdda00 solid !important;
}
.school-bus-yellow--br-50 {
  border-right: 50px #fdda00 solid !important;
}
.school-bus-yellow--bl-50 {
  border-left: 50px #fdda00 solid !important;
}
.school-bus-yellow--bb-50 {
  border-bottom: 50px #fdda00 solid !important;
}
.school-bus-yellow--by-50 {
  border-top: 50px #fdda00 solid !important;
  border-bottom: 50px #fdda00 solid !important;
}
.school-bus-yellow--bx-50 {
  border-right: 50px #fdda00 solid !important;
  border-left: 50px #fdda00 solid !important;
}
.school-bus-yellow--ba-51 {
  border: 51px #fdda00 solid !important;
}
.school-bus-yellow--bt-51 {
  border-top: 51px #fdda00 solid !important;
}
.school-bus-yellow--br-51 {
  border-right: 51px #fdda00 solid !important;
}
.school-bus-yellow--bl-51 {
  border-left: 51px #fdda00 solid !important;
}
.school-bus-yellow--bb-51 {
  border-bottom: 51px #fdda00 solid !important;
}
.school-bus-yellow--by-51 {
  border-top: 51px #fdda00 solid !important;
  border-bottom: 51px #fdda00 solid !important;
}
.school-bus-yellow--bx-51 {
  border-right: 51px #fdda00 solid !important;
  border-left: 51px #fdda00 solid !important;
}
.school-bus-yellow--ba-52 {
  border: 52px #fdda00 solid !important;
}
.school-bus-yellow--bt-52 {
  border-top: 52px #fdda00 solid !important;
}
.school-bus-yellow--br-52 {
  border-right: 52px #fdda00 solid !important;
}
.school-bus-yellow--bl-52 {
  border-left: 52px #fdda00 solid !important;
}
.school-bus-yellow--bb-52 {
  border-bottom: 52px #fdda00 solid !important;
}
.school-bus-yellow--by-52 {
  border-top: 52px #fdda00 solid !important;
  border-bottom: 52px #fdda00 solid !important;
}
.school-bus-yellow--bx-52 {
  border-right: 52px #fdda00 solid !important;
  border-left: 52px #fdda00 solid !important;
}
.school-bus-yellow--ba-53 {
  border: 53px #fdda00 solid !important;
}
.school-bus-yellow--bt-53 {
  border-top: 53px #fdda00 solid !important;
}
.school-bus-yellow--br-53 {
  border-right: 53px #fdda00 solid !important;
}
.school-bus-yellow--bl-53 {
  border-left: 53px #fdda00 solid !important;
}
.school-bus-yellow--bb-53 {
  border-bottom: 53px #fdda00 solid !important;
}
.school-bus-yellow--by-53 {
  border-top: 53px #fdda00 solid !important;
  border-bottom: 53px #fdda00 solid !important;
}
.school-bus-yellow--bx-53 {
  border-right: 53px #fdda00 solid !important;
  border-left: 53px #fdda00 solid !important;
}
.school-bus-yellow--ba-54 {
  border: 54px #fdda00 solid !important;
}
.school-bus-yellow--bt-54 {
  border-top: 54px #fdda00 solid !important;
}
.school-bus-yellow--br-54 {
  border-right: 54px #fdda00 solid !important;
}
.school-bus-yellow--bl-54 {
  border-left: 54px #fdda00 solid !important;
}
.school-bus-yellow--bb-54 {
  border-bottom: 54px #fdda00 solid !important;
}
.school-bus-yellow--by-54 {
  border-top: 54px #fdda00 solid !important;
  border-bottom: 54px #fdda00 solid !important;
}
.school-bus-yellow--bx-54 {
  border-right: 54px #fdda00 solid !important;
  border-left: 54px #fdda00 solid !important;
}
.school-bus-yellow--ba-55 {
  border: 55px #fdda00 solid !important;
}
.school-bus-yellow--bt-55 {
  border-top: 55px #fdda00 solid !important;
}
.school-bus-yellow--br-55 {
  border-right: 55px #fdda00 solid !important;
}
.school-bus-yellow--bl-55 {
  border-left: 55px #fdda00 solid !important;
}
.school-bus-yellow--bb-55 {
  border-bottom: 55px #fdda00 solid !important;
}
.school-bus-yellow--by-55 {
  border-top: 55px #fdda00 solid !important;
  border-bottom: 55px #fdda00 solid !important;
}
.school-bus-yellow--bx-55 {
  border-right: 55px #fdda00 solid !important;
  border-left: 55px #fdda00 solid !important;
}
.school-bus-yellow--ba-56 {
  border: 56px #fdda00 solid !important;
}
.school-bus-yellow--bt-56 {
  border-top: 56px #fdda00 solid !important;
}
.school-bus-yellow--br-56 {
  border-right: 56px #fdda00 solid !important;
}
.school-bus-yellow--bl-56 {
  border-left: 56px #fdda00 solid !important;
}
.school-bus-yellow--bb-56 {
  border-bottom: 56px #fdda00 solid !important;
}
.school-bus-yellow--by-56 {
  border-top: 56px #fdda00 solid !important;
  border-bottom: 56px #fdda00 solid !important;
}
.school-bus-yellow--bx-56 {
  border-right: 56px #fdda00 solid !important;
  border-left: 56px #fdda00 solid !important;
}
.school-bus-yellow--ba-57 {
  border: 57px #fdda00 solid !important;
}
.school-bus-yellow--bt-57 {
  border-top: 57px #fdda00 solid !important;
}
.school-bus-yellow--br-57 {
  border-right: 57px #fdda00 solid !important;
}
.school-bus-yellow--bl-57 {
  border-left: 57px #fdda00 solid !important;
}
.school-bus-yellow--bb-57 {
  border-bottom: 57px #fdda00 solid !important;
}
.school-bus-yellow--by-57 {
  border-top: 57px #fdda00 solid !important;
  border-bottom: 57px #fdda00 solid !important;
}
.school-bus-yellow--bx-57 {
  border-right: 57px #fdda00 solid !important;
  border-left: 57px #fdda00 solid !important;
}
.school-bus-yellow--ba-58 {
  border: 58px #fdda00 solid !important;
}
.school-bus-yellow--bt-58 {
  border-top: 58px #fdda00 solid !important;
}
.school-bus-yellow--br-58 {
  border-right: 58px #fdda00 solid !important;
}
.school-bus-yellow--bl-58 {
  border-left: 58px #fdda00 solid !important;
}
.school-bus-yellow--bb-58 {
  border-bottom: 58px #fdda00 solid !important;
}
.school-bus-yellow--by-58 {
  border-top: 58px #fdda00 solid !important;
  border-bottom: 58px #fdda00 solid !important;
}
.school-bus-yellow--bx-58 {
  border-right: 58px #fdda00 solid !important;
  border-left: 58px #fdda00 solid !important;
}
.school-bus-yellow--ba-59 {
  border: 59px #fdda00 solid !important;
}
.school-bus-yellow--bt-59 {
  border-top: 59px #fdda00 solid !important;
}
.school-bus-yellow--br-59 {
  border-right: 59px #fdda00 solid !important;
}
.school-bus-yellow--bl-59 {
  border-left: 59px #fdda00 solid !important;
}
.school-bus-yellow--bb-59 {
  border-bottom: 59px #fdda00 solid !important;
}
.school-bus-yellow--by-59 {
  border-top: 59px #fdda00 solid !important;
  border-bottom: 59px #fdda00 solid !important;
}
.school-bus-yellow--bx-59 {
  border-right: 59px #fdda00 solid !important;
  border-left: 59px #fdda00 solid !important;
}
.school-bus-yellow--ba-60 {
  border: 60px #fdda00 solid !important;
}
.school-bus-yellow--bt-60 {
  border-top: 60px #fdda00 solid !important;
}
.school-bus-yellow--br-60 {
  border-right: 60px #fdda00 solid !important;
}
.school-bus-yellow--bl-60 {
  border-left: 60px #fdda00 solid !important;
}
.school-bus-yellow--bb-60 {
  border-bottom: 60px #fdda00 solid !important;
}
.school-bus-yellow--by-60 {
  border-top: 60px #fdda00 solid !important;
  border-bottom: 60px #fdda00 solid !important;
}
.school-bus-yellow--bx-60 {
  border-right: 60px #fdda00 solid !important;
  border-left: 60px #fdda00 solid !important;
}
.school-bus-yellow--ba-61 {
  border: 61px #fdda00 solid !important;
}
.school-bus-yellow--bt-61 {
  border-top: 61px #fdda00 solid !important;
}
.school-bus-yellow--br-61 {
  border-right: 61px #fdda00 solid !important;
}
.school-bus-yellow--bl-61 {
  border-left: 61px #fdda00 solid !important;
}
.school-bus-yellow--bb-61 {
  border-bottom: 61px #fdda00 solid !important;
}
.school-bus-yellow--by-61 {
  border-top: 61px #fdda00 solid !important;
  border-bottom: 61px #fdda00 solid !important;
}
.school-bus-yellow--bx-61 {
  border-right: 61px #fdda00 solid !important;
  border-left: 61px #fdda00 solid !important;
}
.school-bus-yellow--ba-62 {
  border: 62px #fdda00 solid !important;
}
.school-bus-yellow--bt-62 {
  border-top: 62px #fdda00 solid !important;
}
.school-bus-yellow--br-62 {
  border-right: 62px #fdda00 solid !important;
}
.school-bus-yellow--bl-62 {
  border-left: 62px #fdda00 solid !important;
}
.school-bus-yellow--bb-62 {
  border-bottom: 62px #fdda00 solid !important;
}
.school-bus-yellow--by-62 {
  border-top: 62px #fdda00 solid !important;
  border-bottom: 62px #fdda00 solid !important;
}
.school-bus-yellow--bx-62 {
  border-right: 62px #fdda00 solid !important;
  border-left: 62px #fdda00 solid !important;
}
.school-bus-yellow--ba-63 {
  border: 63px #fdda00 solid !important;
}
.school-bus-yellow--bt-63 {
  border-top: 63px #fdda00 solid !important;
}
.school-bus-yellow--br-63 {
  border-right: 63px #fdda00 solid !important;
}
.school-bus-yellow--bl-63 {
  border-left: 63px #fdda00 solid !important;
}
.school-bus-yellow--bb-63 {
  border-bottom: 63px #fdda00 solid !important;
}
.school-bus-yellow--by-63 {
  border-top: 63px #fdda00 solid !important;
  border-bottom: 63px #fdda00 solid !important;
}
.school-bus-yellow--bx-63 {
  border-right: 63px #fdda00 solid !important;
  border-left: 63px #fdda00 solid !important;
}
.school-bus-yellow--ba-64 {
  border: 64px #fdda00 solid !important;
}
.school-bus-yellow--bt-64 {
  border-top: 64px #fdda00 solid !important;
}
.school-bus-yellow--br-64 {
  border-right: 64px #fdda00 solid !important;
}
.school-bus-yellow--bl-64 {
  border-left: 64px #fdda00 solid !important;
}
.school-bus-yellow--bb-64 {
  border-bottom: 64px #fdda00 solid !important;
}
.school-bus-yellow--by-64 {
  border-top: 64px #fdda00 solid !important;
  border-bottom: 64px #fdda00 solid !important;
}
.school-bus-yellow--bx-64 {
  border-right: 64px #fdda00 solid !important;
  border-left: 64px #fdda00 solid !important;
}
.school-bus-yellow--ba-65 {
  border: 65px #fdda00 solid !important;
}
.school-bus-yellow--bt-65 {
  border-top: 65px #fdda00 solid !important;
}
.school-bus-yellow--br-65 {
  border-right: 65px #fdda00 solid !important;
}
.school-bus-yellow--bl-65 {
  border-left: 65px #fdda00 solid !important;
}
.school-bus-yellow--bb-65 {
  border-bottom: 65px #fdda00 solid !important;
}
.school-bus-yellow--by-65 {
  border-top: 65px #fdda00 solid !important;
  border-bottom: 65px #fdda00 solid !important;
}
.school-bus-yellow--bx-65 {
  border-right: 65px #fdda00 solid !important;
  border-left: 65px #fdda00 solid !important;
}
.school-bus-yellow--ba-66 {
  border: 66px #fdda00 solid !important;
}
.school-bus-yellow--bt-66 {
  border-top: 66px #fdda00 solid !important;
}
.school-bus-yellow--br-66 {
  border-right: 66px #fdda00 solid !important;
}
.school-bus-yellow--bl-66 {
  border-left: 66px #fdda00 solid !important;
}
.school-bus-yellow--bb-66 {
  border-bottom: 66px #fdda00 solid !important;
}
.school-bus-yellow--by-66 {
  border-top: 66px #fdda00 solid !important;
  border-bottom: 66px #fdda00 solid !important;
}
.school-bus-yellow--bx-66 {
  border-right: 66px #fdda00 solid !important;
  border-left: 66px #fdda00 solid !important;
}
.school-bus-yellow--ba-67 {
  border: 67px #fdda00 solid !important;
}
.school-bus-yellow--bt-67 {
  border-top: 67px #fdda00 solid !important;
}
.school-bus-yellow--br-67 {
  border-right: 67px #fdda00 solid !important;
}
.school-bus-yellow--bl-67 {
  border-left: 67px #fdda00 solid !important;
}
.school-bus-yellow--bb-67 {
  border-bottom: 67px #fdda00 solid !important;
}
.school-bus-yellow--by-67 {
  border-top: 67px #fdda00 solid !important;
  border-bottom: 67px #fdda00 solid !important;
}
.school-bus-yellow--bx-67 {
  border-right: 67px #fdda00 solid !important;
  border-left: 67px #fdda00 solid !important;
}
.school-bus-yellow--ba-68 {
  border: 68px #fdda00 solid !important;
}
.school-bus-yellow--bt-68 {
  border-top: 68px #fdda00 solid !important;
}
.school-bus-yellow--br-68 {
  border-right: 68px #fdda00 solid !important;
}
.school-bus-yellow--bl-68 {
  border-left: 68px #fdda00 solid !important;
}
.school-bus-yellow--bb-68 {
  border-bottom: 68px #fdda00 solid !important;
}
.school-bus-yellow--by-68 {
  border-top: 68px #fdda00 solid !important;
  border-bottom: 68px #fdda00 solid !important;
}
.school-bus-yellow--bx-68 {
  border-right: 68px #fdda00 solid !important;
  border-left: 68px #fdda00 solid !important;
}
.school-bus-yellow--ba-69 {
  border: 69px #fdda00 solid !important;
}
.school-bus-yellow--bt-69 {
  border-top: 69px #fdda00 solid !important;
}
.school-bus-yellow--br-69 {
  border-right: 69px #fdda00 solid !important;
}
.school-bus-yellow--bl-69 {
  border-left: 69px #fdda00 solid !important;
}
.school-bus-yellow--bb-69 {
  border-bottom: 69px #fdda00 solid !important;
}
.school-bus-yellow--by-69 {
  border-top: 69px #fdda00 solid !important;
  border-bottom: 69px #fdda00 solid !important;
}
.school-bus-yellow--bx-69 {
  border-right: 69px #fdda00 solid !important;
  border-left: 69px #fdda00 solid !important;
}
.school-bus-yellow--ba-70 {
  border: 70px #fdda00 solid !important;
}
.school-bus-yellow--bt-70 {
  border-top: 70px #fdda00 solid !important;
}
.school-bus-yellow--br-70 {
  border-right: 70px #fdda00 solid !important;
}
.school-bus-yellow--bl-70 {
  border-left: 70px #fdda00 solid !important;
}
.school-bus-yellow--bb-70 {
  border-bottom: 70px #fdda00 solid !important;
}
.school-bus-yellow--by-70 {
  border-top: 70px #fdda00 solid !important;
  border-bottom: 70px #fdda00 solid !important;
}
.school-bus-yellow--bx-70 {
  border-right: 70px #fdda00 solid !important;
  border-left: 70px #fdda00 solid !important;
}
.school-bus-yellow--ba-71 {
  border: 71px #fdda00 solid !important;
}
.school-bus-yellow--bt-71 {
  border-top: 71px #fdda00 solid !important;
}
.school-bus-yellow--br-71 {
  border-right: 71px #fdda00 solid !important;
}
.school-bus-yellow--bl-71 {
  border-left: 71px #fdda00 solid !important;
}
.school-bus-yellow--bb-71 {
  border-bottom: 71px #fdda00 solid !important;
}
.school-bus-yellow--by-71 {
  border-top: 71px #fdda00 solid !important;
  border-bottom: 71px #fdda00 solid !important;
}
.school-bus-yellow--bx-71 {
  border-right: 71px #fdda00 solid !important;
  border-left: 71px #fdda00 solid !important;
}
.school-bus-yellow--ba-72 {
  border: 72px #fdda00 solid !important;
}
.school-bus-yellow--bt-72 {
  border-top: 72px #fdda00 solid !important;
}
.school-bus-yellow--br-72 {
  border-right: 72px #fdda00 solid !important;
}
.school-bus-yellow--bl-72 {
  border-left: 72px #fdda00 solid !important;
}
.school-bus-yellow--bb-72 {
  border-bottom: 72px #fdda00 solid !important;
}
.school-bus-yellow--by-72 {
  border-top: 72px #fdda00 solid !important;
  border-bottom: 72px #fdda00 solid !important;
}
.school-bus-yellow--bx-72 {
  border-right: 72px #fdda00 solid !important;
  border-left: 72px #fdda00 solid !important;
}
.school-bus-yellow--ba-73 {
  border: 73px #fdda00 solid !important;
}
.school-bus-yellow--bt-73 {
  border-top: 73px #fdda00 solid !important;
}
.school-bus-yellow--br-73 {
  border-right: 73px #fdda00 solid !important;
}
.school-bus-yellow--bl-73 {
  border-left: 73px #fdda00 solid !important;
}
.school-bus-yellow--bb-73 {
  border-bottom: 73px #fdda00 solid !important;
}
.school-bus-yellow--by-73 {
  border-top: 73px #fdda00 solid !important;
  border-bottom: 73px #fdda00 solid !important;
}
.school-bus-yellow--bx-73 {
  border-right: 73px #fdda00 solid !important;
  border-left: 73px #fdda00 solid !important;
}
.school-bus-yellow--ba-74 {
  border: 74px #fdda00 solid !important;
}
.school-bus-yellow--bt-74 {
  border-top: 74px #fdda00 solid !important;
}
.school-bus-yellow--br-74 {
  border-right: 74px #fdda00 solid !important;
}
.school-bus-yellow--bl-74 {
  border-left: 74px #fdda00 solid !important;
}
.school-bus-yellow--bb-74 {
  border-bottom: 74px #fdda00 solid !important;
}
.school-bus-yellow--by-74 {
  border-top: 74px #fdda00 solid !important;
  border-bottom: 74px #fdda00 solid !important;
}
.school-bus-yellow--bx-74 {
  border-right: 74px #fdda00 solid !important;
  border-left: 74px #fdda00 solid !important;
}
.school-bus-yellow--ba-75 {
  border: 75px #fdda00 solid !important;
}
.school-bus-yellow--bt-75 {
  border-top: 75px #fdda00 solid !important;
}
.school-bus-yellow--br-75 {
  border-right: 75px #fdda00 solid !important;
}
.school-bus-yellow--bl-75 {
  border-left: 75px #fdda00 solid !important;
}
.school-bus-yellow--bb-75 {
  border-bottom: 75px #fdda00 solid !important;
}
.school-bus-yellow--by-75 {
  border-top: 75px #fdda00 solid !important;
  border-bottom: 75px #fdda00 solid !important;
}
.school-bus-yellow--bx-75 {
  border-right: 75px #fdda00 solid !important;
  border-left: 75px #fdda00 solid !important;
}
.school-bus-yellow--ba-76 {
  border: 76px #fdda00 solid !important;
}
.school-bus-yellow--bt-76 {
  border-top: 76px #fdda00 solid !important;
}
.school-bus-yellow--br-76 {
  border-right: 76px #fdda00 solid !important;
}
.school-bus-yellow--bl-76 {
  border-left: 76px #fdda00 solid !important;
}
.school-bus-yellow--bb-76 {
  border-bottom: 76px #fdda00 solid !important;
}
.school-bus-yellow--by-76 {
  border-top: 76px #fdda00 solid !important;
  border-bottom: 76px #fdda00 solid !important;
}
.school-bus-yellow--bx-76 {
  border-right: 76px #fdda00 solid !important;
  border-left: 76px #fdda00 solid !important;
}
.school-bus-yellow--ba-77 {
  border: 77px #fdda00 solid !important;
}
.school-bus-yellow--bt-77 {
  border-top: 77px #fdda00 solid !important;
}
.school-bus-yellow--br-77 {
  border-right: 77px #fdda00 solid !important;
}
.school-bus-yellow--bl-77 {
  border-left: 77px #fdda00 solid !important;
}
.school-bus-yellow--bb-77 {
  border-bottom: 77px #fdda00 solid !important;
}
.school-bus-yellow--by-77 {
  border-top: 77px #fdda00 solid !important;
  border-bottom: 77px #fdda00 solid !important;
}
.school-bus-yellow--bx-77 {
  border-right: 77px #fdda00 solid !important;
  border-left: 77px #fdda00 solid !important;
}
.school-bus-yellow--ba-78 {
  border: 78px #fdda00 solid !important;
}
.school-bus-yellow--bt-78 {
  border-top: 78px #fdda00 solid !important;
}
.school-bus-yellow--br-78 {
  border-right: 78px #fdda00 solid !important;
}
.school-bus-yellow--bl-78 {
  border-left: 78px #fdda00 solid !important;
}
.school-bus-yellow--bb-78 {
  border-bottom: 78px #fdda00 solid !important;
}
.school-bus-yellow--by-78 {
  border-top: 78px #fdda00 solid !important;
  border-bottom: 78px #fdda00 solid !important;
}
.school-bus-yellow--bx-78 {
  border-right: 78px #fdda00 solid !important;
  border-left: 78px #fdda00 solid !important;
}
.school-bus-yellow--ba-79 {
  border: 79px #fdda00 solid !important;
}
.school-bus-yellow--bt-79 {
  border-top: 79px #fdda00 solid !important;
}
.school-bus-yellow--br-79 {
  border-right: 79px #fdda00 solid !important;
}
.school-bus-yellow--bl-79 {
  border-left: 79px #fdda00 solid !important;
}
.school-bus-yellow--bb-79 {
  border-bottom: 79px #fdda00 solid !important;
}
.school-bus-yellow--by-79 {
  border-top: 79px #fdda00 solid !important;
  border-bottom: 79px #fdda00 solid !important;
}
.school-bus-yellow--bx-79 {
  border-right: 79px #fdda00 solid !important;
  border-left: 79px #fdda00 solid !important;
}
.school-bus-yellow--ba-80 {
  border: 80px #fdda00 solid !important;
}
.school-bus-yellow--bt-80 {
  border-top: 80px #fdda00 solid !important;
}
.school-bus-yellow--br-80 {
  border-right: 80px #fdda00 solid !important;
}
.school-bus-yellow--bl-80 {
  border-left: 80px #fdda00 solid !important;
}
.school-bus-yellow--bb-80 {
  border-bottom: 80px #fdda00 solid !important;
}
.school-bus-yellow--by-80 {
  border-top: 80px #fdda00 solid !important;
  border-bottom: 80px #fdda00 solid !important;
}
.school-bus-yellow--bx-80 {
  border-right: 80px #fdda00 solid !important;
  border-left: 80px #fdda00 solid !important;
}
.school-bus-yellow--ba-81 {
  border: 81px #fdda00 solid !important;
}
.school-bus-yellow--bt-81 {
  border-top: 81px #fdda00 solid !important;
}
.school-bus-yellow--br-81 {
  border-right: 81px #fdda00 solid !important;
}
.school-bus-yellow--bl-81 {
  border-left: 81px #fdda00 solid !important;
}
.school-bus-yellow--bb-81 {
  border-bottom: 81px #fdda00 solid !important;
}
.school-bus-yellow--by-81 {
  border-top: 81px #fdda00 solid !important;
  border-bottom: 81px #fdda00 solid !important;
}
.school-bus-yellow--bx-81 {
  border-right: 81px #fdda00 solid !important;
  border-left: 81px #fdda00 solid !important;
}
.school-bus-yellow--ba-82 {
  border: 82px #fdda00 solid !important;
}
.school-bus-yellow--bt-82 {
  border-top: 82px #fdda00 solid !important;
}
.school-bus-yellow--br-82 {
  border-right: 82px #fdda00 solid !important;
}
.school-bus-yellow--bl-82 {
  border-left: 82px #fdda00 solid !important;
}
.school-bus-yellow--bb-82 {
  border-bottom: 82px #fdda00 solid !important;
}
.school-bus-yellow--by-82 {
  border-top: 82px #fdda00 solid !important;
  border-bottom: 82px #fdda00 solid !important;
}
.school-bus-yellow--bx-82 {
  border-right: 82px #fdda00 solid !important;
  border-left: 82px #fdda00 solid !important;
}
.school-bus-yellow--ba-83 {
  border: 83px #fdda00 solid !important;
}
.school-bus-yellow--bt-83 {
  border-top: 83px #fdda00 solid !important;
}
.school-bus-yellow--br-83 {
  border-right: 83px #fdda00 solid !important;
}
.school-bus-yellow--bl-83 {
  border-left: 83px #fdda00 solid !important;
}
.school-bus-yellow--bb-83 {
  border-bottom: 83px #fdda00 solid !important;
}
.school-bus-yellow--by-83 {
  border-top: 83px #fdda00 solid !important;
  border-bottom: 83px #fdda00 solid !important;
}
.school-bus-yellow--bx-83 {
  border-right: 83px #fdda00 solid !important;
  border-left: 83px #fdda00 solid !important;
}
.school-bus-yellow--ba-84 {
  border: 84px #fdda00 solid !important;
}
.school-bus-yellow--bt-84 {
  border-top: 84px #fdda00 solid !important;
}
.school-bus-yellow--br-84 {
  border-right: 84px #fdda00 solid !important;
}
.school-bus-yellow--bl-84 {
  border-left: 84px #fdda00 solid !important;
}
.school-bus-yellow--bb-84 {
  border-bottom: 84px #fdda00 solid !important;
}
.school-bus-yellow--by-84 {
  border-top: 84px #fdda00 solid !important;
  border-bottom: 84px #fdda00 solid !important;
}
.school-bus-yellow--bx-84 {
  border-right: 84px #fdda00 solid !important;
  border-left: 84px #fdda00 solid !important;
}
.school-bus-yellow--ba-85 {
  border: 85px #fdda00 solid !important;
}
.school-bus-yellow--bt-85 {
  border-top: 85px #fdda00 solid !important;
}
.school-bus-yellow--br-85 {
  border-right: 85px #fdda00 solid !important;
}
.school-bus-yellow--bl-85 {
  border-left: 85px #fdda00 solid !important;
}
.school-bus-yellow--bb-85 {
  border-bottom: 85px #fdda00 solid !important;
}
.school-bus-yellow--by-85 {
  border-top: 85px #fdda00 solid !important;
  border-bottom: 85px #fdda00 solid !important;
}
.school-bus-yellow--bx-85 {
  border-right: 85px #fdda00 solid !important;
  border-left: 85px #fdda00 solid !important;
}
.school-bus-yellow--ba-86 {
  border: 86px #fdda00 solid !important;
}
.school-bus-yellow--bt-86 {
  border-top: 86px #fdda00 solid !important;
}
.school-bus-yellow--br-86 {
  border-right: 86px #fdda00 solid !important;
}
.school-bus-yellow--bl-86 {
  border-left: 86px #fdda00 solid !important;
}
.school-bus-yellow--bb-86 {
  border-bottom: 86px #fdda00 solid !important;
}
.school-bus-yellow--by-86 {
  border-top: 86px #fdda00 solid !important;
  border-bottom: 86px #fdda00 solid !important;
}
.school-bus-yellow--bx-86 {
  border-right: 86px #fdda00 solid !important;
  border-left: 86px #fdda00 solid !important;
}
.school-bus-yellow--ba-87 {
  border: 87px #fdda00 solid !important;
}
.school-bus-yellow--bt-87 {
  border-top: 87px #fdda00 solid !important;
}
.school-bus-yellow--br-87 {
  border-right: 87px #fdda00 solid !important;
}
.school-bus-yellow--bl-87 {
  border-left: 87px #fdda00 solid !important;
}
.school-bus-yellow--bb-87 {
  border-bottom: 87px #fdda00 solid !important;
}
.school-bus-yellow--by-87 {
  border-top: 87px #fdda00 solid !important;
  border-bottom: 87px #fdda00 solid !important;
}
.school-bus-yellow--bx-87 {
  border-right: 87px #fdda00 solid !important;
  border-left: 87px #fdda00 solid !important;
}
.school-bus-yellow--ba-88 {
  border: 88px #fdda00 solid !important;
}
.school-bus-yellow--bt-88 {
  border-top: 88px #fdda00 solid !important;
}
.school-bus-yellow--br-88 {
  border-right: 88px #fdda00 solid !important;
}
.school-bus-yellow--bl-88 {
  border-left: 88px #fdda00 solid !important;
}
.school-bus-yellow--bb-88 {
  border-bottom: 88px #fdda00 solid !important;
}
.school-bus-yellow--by-88 {
  border-top: 88px #fdda00 solid !important;
  border-bottom: 88px #fdda00 solid !important;
}
.school-bus-yellow--bx-88 {
  border-right: 88px #fdda00 solid !important;
  border-left: 88px #fdda00 solid !important;
}
.school-bus-yellow--ba-89 {
  border: 89px #fdda00 solid !important;
}
.school-bus-yellow--bt-89 {
  border-top: 89px #fdda00 solid !important;
}
.school-bus-yellow--br-89 {
  border-right: 89px #fdda00 solid !important;
}
.school-bus-yellow--bl-89 {
  border-left: 89px #fdda00 solid !important;
}
.school-bus-yellow--bb-89 {
  border-bottom: 89px #fdda00 solid !important;
}
.school-bus-yellow--by-89 {
  border-top: 89px #fdda00 solid !important;
  border-bottom: 89px #fdda00 solid !important;
}
.school-bus-yellow--bx-89 {
  border-right: 89px #fdda00 solid !important;
  border-left: 89px #fdda00 solid !important;
}
.school-bus-yellow--ba-90 {
  border: 90px #fdda00 solid !important;
}
.school-bus-yellow--bt-90 {
  border-top: 90px #fdda00 solid !important;
}
.school-bus-yellow--br-90 {
  border-right: 90px #fdda00 solid !important;
}
.school-bus-yellow--bl-90 {
  border-left: 90px #fdda00 solid !important;
}
.school-bus-yellow--bb-90 {
  border-bottom: 90px #fdda00 solid !important;
}
.school-bus-yellow--by-90 {
  border-top: 90px #fdda00 solid !important;
  border-bottom: 90px #fdda00 solid !important;
}
.school-bus-yellow--bx-90 {
  border-right: 90px #fdda00 solid !important;
  border-left: 90px #fdda00 solid !important;
}
.school-bus-yellow--ba-91 {
  border: 91px #fdda00 solid !important;
}
.school-bus-yellow--bt-91 {
  border-top: 91px #fdda00 solid !important;
}
.school-bus-yellow--br-91 {
  border-right: 91px #fdda00 solid !important;
}
.school-bus-yellow--bl-91 {
  border-left: 91px #fdda00 solid !important;
}
.school-bus-yellow--bb-91 {
  border-bottom: 91px #fdda00 solid !important;
}
.school-bus-yellow--by-91 {
  border-top: 91px #fdda00 solid !important;
  border-bottom: 91px #fdda00 solid !important;
}
.school-bus-yellow--bx-91 {
  border-right: 91px #fdda00 solid !important;
  border-left: 91px #fdda00 solid !important;
}
.school-bus-yellow--ba-92 {
  border: 92px #fdda00 solid !important;
}
.school-bus-yellow--bt-92 {
  border-top: 92px #fdda00 solid !important;
}
.school-bus-yellow--br-92 {
  border-right: 92px #fdda00 solid !important;
}
.school-bus-yellow--bl-92 {
  border-left: 92px #fdda00 solid !important;
}
.school-bus-yellow--bb-92 {
  border-bottom: 92px #fdda00 solid !important;
}
.school-bus-yellow--by-92 {
  border-top: 92px #fdda00 solid !important;
  border-bottom: 92px #fdda00 solid !important;
}
.school-bus-yellow--bx-92 {
  border-right: 92px #fdda00 solid !important;
  border-left: 92px #fdda00 solid !important;
}
.school-bus-yellow--ba-93 {
  border: 93px #fdda00 solid !important;
}
.school-bus-yellow--bt-93 {
  border-top: 93px #fdda00 solid !important;
}
.school-bus-yellow--br-93 {
  border-right: 93px #fdda00 solid !important;
}
.school-bus-yellow--bl-93 {
  border-left: 93px #fdda00 solid !important;
}
.school-bus-yellow--bb-93 {
  border-bottom: 93px #fdda00 solid !important;
}
.school-bus-yellow--by-93 {
  border-top: 93px #fdda00 solid !important;
  border-bottom: 93px #fdda00 solid !important;
}
.school-bus-yellow--bx-93 {
  border-right: 93px #fdda00 solid !important;
  border-left: 93px #fdda00 solid !important;
}
.school-bus-yellow--ba-94 {
  border: 94px #fdda00 solid !important;
}
.school-bus-yellow--bt-94 {
  border-top: 94px #fdda00 solid !important;
}
.school-bus-yellow--br-94 {
  border-right: 94px #fdda00 solid !important;
}
.school-bus-yellow--bl-94 {
  border-left: 94px #fdda00 solid !important;
}
.school-bus-yellow--bb-94 {
  border-bottom: 94px #fdda00 solid !important;
}
.school-bus-yellow--by-94 {
  border-top: 94px #fdda00 solid !important;
  border-bottom: 94px #fdda00 solid !important;
}
.school-bus-yellow--bx-94 {
  border-right: 94px #fdda00 solid !important;
  border-left: 94px #fdda00 solid !important;
}
.school-bus-yellow--ba-95 {
  border: 95px #fdda00 solid !important;
}
.school-bus-yellow--bt-95 {
  border-top: 95px #fdda00 solid !important;
}
.school-bus-yellow--br-95 {
  border-right: 95px #fdda00 solid !important;
}
.school-bus-yellow--bl-95 {
  border-left: 95px #fdda00 solid !important;
}
.school-bus-yellow--bb-95 {
  border-bottom: 95px #fdda00 solid !important;
}
.school-bus-yellow--by-95 {
  border-top: 95px #fdda00 solid !important;
  border-bottom: 95px #fdda00 solid !important;
}
.school-bus-yellow--bx-95 {
  border-right: 95px #fdda00 solid !important;
  border-left: 95px #fdda00 solid !important;
}
.school-bus-yellow--ba-96 {
  border: 96px #fdda00 solid !important;
}
.school-bus-yellow--bt-96 {
  border-top: 96px #fdda00 solid !important;
}
.school-bus-yellow--br-96 {
  border-right: 96px #fdda00 solid !important;
}
.school-bus-yellow--bl-96 {
  border-left: 96px #fdda00 solid !important;
}
.school-bus-yellow--bb-96 {
  border-bottom: 96px #fdda00 solid !important;
}
.school-bus-yellow--by-96 {
  border-top: 96px #fdda00 solid !important;
  border-bottom: 96px #fdda00 solid !important;
}
.school-bus-yellow--bx-96 {
  border-right: 96px #fdda00 solid !important;
  border-left: 96px #fdda00 solid !important;
}
.school-bus-yellow--ba-97 {
  border: 97px #fdda00 solid !important;
}
.school-bus-yellow--bt-97 {
  border-top: 97px #fdda00 solid !important;
}
.school-bus-yellow--br-97 {
  border-right: 97px #fdda00 solid !important;
}
.school-bus-yellow--bl-97 {
  border-left: 97px #fdda00 solid !important;
}
.school-bus-yellow--bb-97 {
  border-bottom: 97px #fdda00 solid !important;
}
.school-bus-yellow--by-97 {
  border-top: 97px #fdda00 solid !important;
  border-bottom: 97px #fdda00 solid !important;
}
.school-bus-yellow--bx-97 {
  border-right: 97px #fdda00 solid !important;
  border-left: 97px #fdda00 solid !important;
}
.school-bus-yellow--ba-98 {
  border: 98px #fdda00 solid !important;
}
.school-bus-yellow--bt-98 {
  border-top: 98px #fdda00 solid !important;
}
.school-bus-yellow--br-98 {
  border-right: 98px #fdda00 solid !important;
}
.school-bus-yellow--bl-98 {
  border-left: 98px #fdda00 solid !important;
}
.school-bus-yellow--bb-98 {
  border-bottom: 98px #fdda00 solid !important;
}
.school-bus-yellow--by-98 {
  border-top: 98px #fdda00 solid !important;
  border-bottom: 98px #fdda00 solid !important;
}
.school-bus-yellow--bx-98 {
  border-right: 98px #fdda00 solid !important;
  border-left: 98px #fdda00 solid !important;
}
.school-bus-yellow--ba-99 {
  border: 99px #fdda00 solid !important;
}
.school-bus-yellow--bt-99 {
  border-top: 99px #fdda00 solid !important;
}
.school-bus-yellow--br-99 {
  border-right: 99px #fdda00 solid !important;
}
.school-bus-yellow--bl-99 {
  border-left: 99px #fdda00 solid !important;
}
.school-bus-yellow--bb-99 {
  border-bottom: 99px #fdda00 solid !important;
}
.school-bus-yellow--by-99 {
  border-top: 99px #fdda00 solid !important;
  border-bottom: 99px #fdda00 solid !important;
}
.school-bus-yellow--bx-99 {
  border-right: 99px #fdda00 solid !important;
  border-left: 99px #fdda00 solid !important;
}
.school-bus-yellow--ba-100 {
  border: 100px #fdda00 solid !important;
}
.school-bus-yellow--bt-100 {
  border-top: 100px #fdda00 solid !important;
}
.school-bus-yellow--br-100 {
  border-right: 100px #fdda00 solid !important;
}
.school-bus-yellow--bl-100 {
  border-left: 100px #fdda00 solid !important;
}
.school-bus-yellow--bb-100 {
  border-bottom: 100px #fdda00 solid !important;
}
.school-bus-yellow--by-100 {
  border-top: 100px #fdda00 solid !important;
  border-bottom: 100px #fdda00 solid !important;
}
.school-bus-yellow--bx-100 {
  border-right: 100px #fdda00 solid !important;
  border-left: 100px #fdda00 solid !important;
}
.alto--ba-1 {
  border: 1px #ddd solid !important;
}
.alto--bt-1 {
  border-top: 1px #ddd solid !important;
}
.alto--br-1 {
  border-right: 1px #ddd solid !important;
}
.alto--bl-1 {
  border-left: 1px #ddd solid !important;
}
.alto--bb-1 {
  border-bottom: 1px #ddd solid !important;
}
.alto--by-1 {
  border-top: 1px #ddd solid !important;
  border-bottom: 1px #ddd solid !important;
}
.alto--bx-1 {
  border-right: 1px #ddd solid !important;
  border-left: 1px #ddd solid !important;
}
.alto--ba-2 {
  border: 2px #ddd solid !important;
}
.alto--bt-2 {
  border-top: 2px #ddd solid !important;
}
.alto--br-2 {
  border-right: 2px #ddd solid !important;
}
.alto--bl-2 {
  border-left: 2px #ddd solid !important;
}
.alto--bb-2 {
  border-bottom: 2px #ddd solid !important;
}
.alto--by-2 {
  border-top: 2px #ddd solid !important;
  border-bottom: 2px #ddd solid !important;
}
.alto--bx-2 {
  border-right: 2px #ddd solid !important;
  border-left: 2px #ddd solid !important;
}
.alto--ba-3 {
  border: 3px #ddd solid !important;
}
.alto--bt-3 {
  border-top: 3px #ddd solid !important;
}
.alto--br-3 {
  border-right: 3px #ddd solid !important;
}
.alto--bl-3 {
  border-left: 3px #ddd solid !important;
}
.alto--bb-3 {
  border-bottom: 3px #ddd solid !important;
}
.alto--by-3 {
  border-top: 3px #ddd solid !important;
  border-bottom: 3px #ddd solid !important;
}
.alto--bx-3 {
  border-right: 3px #ddd solid !important;
  border-left: 3px #ddd solid !important;
}
.alto--ba-4 {
  border: 4px #ddd solid !important;
}
.alto--bt-4 {
  border-top: 4px #ddd solid !important;
}
.alto--br-4 {
  border-right: 4px #ddd solid !important;
}
.alto--bl-4 {
  border-left: 4px #ddd solid !important;
}
.alto--bb-4 {
  border-bottom: 4px #ddd solid !important;
}
.alto--by-4 {
  border-top: 4px #ddd solid !important;
  border-bottom: 4px #ddd solid !important;
}
.alto--bx-4 {
  border-right: 4px #ddd solid !important;
  border-left: 4px #ddd solid !important;
}
.alto--ba-5 {
  border: 5px #ddd solid !important;
}
.alto--bt-5 {
  border-top: 5px #ddd solid !important;
}
.alto--br-5 {
  border-right: 5px #ddd solid !important;
}
.alto--bl-5 {
  border-left: 5px #ddd solid !important;
}
.alto--bb-5 {
  border-bottom: 5px #ddd solid !important;
}
.alto--by-5 {
  border-top: 5px #ddd solid !important;
  border-bottom: 5px #ddd solid !important;
}
.alto--bx-5 {
  border-right: 5px #ddd solid !important;
  border-left: 5px #ddd solid !important;
}
.alto--ba-6 {
  border: 6px #ddd solid !important;
}
.alto--bt-6 {
  border-top: 6px #ddd solid !important;
}
.alto--br-6 {
  border-right: 6px #ddd solid !important;
}
.alto--bl-6 {
  border-left: 6px #ddd solid !important;
}
.alto--bb-6 {
  border-bottom: 6px #ddd solid !important;
}
.alto--by-6 {
  border-top: 6px #ddd solid !important;
  border-bottom: 6px #ddd solid !important;
}
.alto--bx-6 {
  border-right: 6px #ddd solid !important;
  border-left: 6px #ddd solid !important;
}
.alto--ba-7 {
  border: 7px #ddd solid !important;
}
.alto--bt-7 {
  border-top: 7px #ddd solid !important;
}
.alto--br-7 {
  border-right: 7px #ddd solid !important;
}
.alto--bl-7 {
  border-left: 7px #ddd solid !important;
}
.alto--bb-7 {
  border-bottom: 7px #ddd solid !important;
}
.alto--by-7 {
  border-top: 7px #ddd solid !important;
  border-bottom: 7px #ddd solid !important;
}
.alto--bx-7 {
  border-right: 7px #ddd solid !important;
  border-left: 7px #ddd solid !important;
}
.alto--ba-8 {
  border: 8px #ddd solid !important;
}
.alto--bt-8 {
  border-top: 8px #ddd solid !important;
}
.alto--br-8 {
  border-right: 8px #ddd solid !important;
}
.alto--bl-8 {
  border-left: 8px #ddd solid !important;
}
.alto--bb-8 {
  border-bottom: 8px #ddd solid !important;
}
.alto--by-8 {
  border-top: 8px #ddd solid !important;
  border-bottom: 8px #ddd solid !important;
}
.alto--bx-8 {
  border-right: 8px #ddd solid !important;
  border-left: 8px #ddd solid !important;
}
.alto--ba-9 {
  border: 9px #ddd solid !important;
}
.alto--bt-9 {
  border-top: 9px #ddd solid !important;
}
.alto--br-9 {
  border-right: 9px #ddd solid !important;
}
.alto--bl-9 {
  border-left: 9px #ddd solid !important;
}
.alto--bb-9 {
  border-bottom: 9px #ddd solid !important;
}
.alto--by-9 {
  border-top: 9px #ddd solid !important;
  border-bottom: 9px #ddd solid !important;
}
.alto--bx-9 {
  border-right: 9px #ddd solid !important;
  border-left: 9px #ddd solid !important;
}
.alto--ba-10 {
  border: 10px #ddd solid !important;
}
.alto--bt-10 {
  border-top: 10px #ddd solid !important;
}
.alto--br-10 {
  border-right: 10px #ddd solid !important;
}
.alto--bl-10 {
  border-left: 10px #ddd solid !important;
}
.alto--bb-10 {
  border-bottom: 10px #ddd solid !important;
}
.alto--by-10 {
  border-top: 10px #ddd solid !important;
  border-bottom: 10px #ddd solid !important;
}
.alto--bx-10 {
  border-right: 10px #ddd solid !important;
  border-left: 10px #ddd solid !important;
}
.alto--ba-11 {
  border: 11px #ddd solid !important;
}
.alto--bt-11 {
  border-top: 11px #ddd solid !important;
}
.alto--br-11 {
  border-right: 11px #ddd solid !important;
}
.alto--bl-11 {
  border-left: 11px #ddd solid !important;
}
.alto--bb-11 {
  border-bottom: 11px #ddd solid !important;
}
.alto--by-11 {
  border-top: 11px #ddd solid !important;
  border-bottom: 11px #ddd solid !important;
}
.alto--bx-11 {
  border-right: 11px #ddd solid !important;
  border-left: 11px #ddd solid !important;
}
.alto--ba-12 {
  border: 12px #ddd solid !important;
}
.alto--bt-12 {
  border-top: 12px #ddd solid !important;
}
.alto--br-12 {
  border-right: 12px #ddd solid !important;
}
.alto--bl-12 {
  border-left: 12px #ddd solid !important;
}
.alto--bb-12 {
  border-bottom: 12px #ddd solid !important;
}
.alto--by-12 {
  border-top: 12px #ddd solid !important;
  border-bottom: 12px #ddd solid !important;
}
.alto--bx-12 {
  border-right: 12px #ddd solid !important;
  border-left: 12px #ddd solid !important;
}
.alto--ba-13 {
  border: 13px #ddd solid !important;
}
.alto--bt-13 {
  border-top: 13px #ddd solid !important;
}
.alto--br-13 {
  border-right: 13px #ddd solid !important;
}
.alto--bl-13 {
  border-left: 13px #ddd solid !important;
}
.alto--bb-13 {
  border-bottom: 13px #ddd solid !important;
}
.alto--by-13 {
  border-top: 13px #ddd solid !important;
  border-bottom: 13px #ddd solid !important;
}
.alto--bx-13 {
  border-right: 13px #ddd solid !important;
  border-left: 13px #ddd solid !important;
}
.alto--ba-14 {
  border: 14px #ddd solid !important;
}
.alto--bt-14 {
  border-top: 14px #ddd solid !important;
}
.alto--br-14 {
  border-right: 14px #ddd solid !important;
}
.alto--bl-14 {
  border-left: 14px #ddd solid !important;
}
.alto--bb-14 {
  border-bottom: 14px #ddd solid !important;
}
.alto--by-14 {
  border-top: 14px #ddd solid !important;
  border-bottom: 14px #ddd solid !important;
}
.alto--bx-14 {
  border-right: 14px #ddd solid !important;
  border-left: 14px #ddd solid !important;
}
.alto--ba-15 {
  border: 15px #ddd solid !important;
}
.alto--bt-15 {
  border-top: 15px #ddd solid !important;
}
.alto--br-15 {
  border-right: 15px #ddd solid !important;
}
.alto--bl-15 {
  border-left: 15px #ddd solid !important;
}
.alto--bb-15 {
  border-bottom: 15px #ddd solid !important;
}
.alto--by-15 {
  border-top: 15px #ddd solid !important;
  border-bottom: 15px #ddd solid !important;
}
.alto--bx-15 {
  border-right: 15px #ddd solid !important;
  border-left: 15px #ddd solid !important;
}
.alto--ba-16 {
  border: 16px #ddd solid !important;
}
.alto--bt-16 {
  border-top: 16px #ddd solid !important;
}
.alto--br-16 {
  border-right: 16px #ddd solid !important;
}
.alto--bl-16 {
  border-left: 16px #ddd solid !important;
}
.alto--bb-16 {
  border-bottom: 16px #ddd solid !important;
}
.alto--by-16 {
  border-top: 16px #ddd solid !important;
  border-bottom: 16px #ddd solid !important;
}
.alto--bx-16 {
  border-right: 16px #ddd solid !important;
  border-left: 16px #ddd solid !important;
}
.alto--ba-17 {
  border: 17px #ddd solid !important;
}
.alto--bt-17 {
  border-top: 17px #ddd solid !important;
}
.alto--br-17 {
  border-right: 17px #ddd solid !important;
}
.alto--bl-17 {
  border-left: 17px #ddd solid !important;
}
.alto--bb-17 {
  border-bottom: 17px #ddd solid !important;
}
.alto--by-17 {
  border-top: 17px #ddd solid !important;
  border-bottom: 17px #ddd solid !important;
}
.alto--bx-17 {
  border-right: 17px #ddd solid !important;
  border-left: 17px #ddd solid !important;
}
.alto--ba-18 {
  border: 18px #ddd solid !important;
}
.alto--bt-18 {
  border-top: 18px #ddd solid !important;
}
.alto--br-18 {
  border-right: 18px #ddd solid !important;
}
.alto--bl-18 {
  border-left: 18px #ddd solid !important;
}
.alto--bb-18 {
  border-bottom: 18px #ddd solid !important;
}
.alto--by-18 {
  border-top: 18px #ddd solid !important;
  border-bottom: 18px #ddd solid !important;
}
.alto--bx-18 {
  border-right: 18px #ddd solid !important;
  border-left: 18px #ddd solid !important;
}
.alto--ba-19 {
  border: 19px #ddd solid !important;
}
.alto--bt-19 {
  border-top: 19px #ddd solid !important;
}
.alto--br-19 {
  border-right: 19px #ddd solid !important;
}
.alto--bl-19 {
  border-left: 19px #ddd solid !important;
}
.alto--bb-19 {
  border-bottom: 19px #ddd solid !important;
}
.alto--by-19 {
  border-top: 19px #ddd solid !important;
  border-bottom: 19px #ddd solid !important;
}
.alto--bx-19 {
  border-right: 19px #ddd solid !important;
  border-left: 19px #ddd solid !important;
}
.alto--ba-20 {
  border: 20px #ddd solid !important;
}
.alto--bt-20 {
  border-top: 20px #ddd solid !important;
}
.alto--br-20 {
  border-right: 20px #ddd solid !important;
}
.alto--bl-20 {
  border-left: 20px #ddd solid !important;
}
.alto--bb-20 {
  border-bottom: 20px #ddd solid !important;
}
.alto--by-20 {
  border-top: 20px #ddd solid !important;
  border-bottom: 20px #ddd solid !important;
}
.alto--bx-20 {
  border-right: 20px #ddd solid !important;
  border-left: 20px #ddd solid !important;
}
.alto--ba-21 {
  border: 21px #ddd solid !important;
}
.alto--bt-21 {
  border-top: 21px #ddd solid !important;
}
.alto--br-21 {
  border-right: 21px #ddd solid !important;
}
.alto--bl-21 {
  border-left: 21px #ddd solid !important;
}
.alto--bb-21 {
  border-bottom: 21px #ddd solid !important;
}
.alto--by-21 {
  border-top: 21px #ddd solid !important;
  border-bottom: 21px #ddd solid !important;
}
.alto--bx-21 {
  border-right: 21px #ddd solid !important;
  border-left: 21px #ddd solid !important;
}
.alto--ba-22 {
  border: 22px #ddd solid !important;
}
.alto--bt-22 {
  border-top: 22px #ddd solid !important;
}
.alto--br-22 {
  border-right: 22px #ddd solid !important;
}
.alto--bl-22 {
  border-left: 22px #ddd solid !important;
}
.alto--bb-22 {
  border-bottom: 22px #ddd solid !important;
}
.alto--by-22 {
  border-top: 22px #ddd solid !important;
  border-bottom: 22px #ddd solid !important;
}
.alto--bx-22 {
  border-right: 22px #ddd solid !important;
  border-left: 22px #ddd solid !important;
}
.alto--ba-23 {
  border: 23px #ddd solid !important;
}
.alto--bt-23 {
  border-top: 23px #ddd solid !important;
}
.alto--br-23 {
  border-right: 23px #ddd solid !important;
}
.alto--bl-23 {
  border-left: 23px #ddd solid !important;
}
.alto--bb-23 {
  border-bottom: 23px #ddd solid !important;
}
.alto--by-23 {
  border-top: 23px #ddd solid !important;
  border-bottom: 23px #ddd solid !important;
}
.alto--bx-23 {
  border-right: 23px #ddd solid !important;
  border-left: 23px #ddd solid !important;
}
.alto--ba-24 {
  border: 24px #ddd solid !important;
}
.alto--bt-24 {
  border-top: 24px #ddd solid !important;
}
.alto--br-24 {
  border-right: 24px #ddd solid !important;
}
.alto--bl-24 {
  border-left: 24px #ddd solid !important;
}
.alto--bb-24 {
  border-bottom: 24px #ddd solid !important;
}
.alto--by-24 {
  border-top: 24px #ddd solid !important;
  border-bottom: 24px #ddd solid !important;
}
.alto--bx-24 {
  border-right: 24px #ddd solid !important;
  border-left: 24px #ddd solid !important;
}
.alto--ba-25 {
  border: 25px #ddd solid !important;
}
.alto--bt-25 {
  border-top: 25px #ddd solid !important;
}
.alto--br-25 {
  border-right: 25px #ddd solid !important;
}
.alto--bl-25 {
  border-left: 25px #ddd solid !important;
}
.alto--bb-25 {
  border-bottom: 25px #ddd solid !important;
}
.alto--by-25 {
  border-top: 25px #ddd solid !important;
  border-bottom: 25px #ddd solid !important;
}
.alto--bx-25 {
  border-right: 25px #ddd solid !important;
  border-left: 25px #ddd solid !important;
}
.alto--ba-26 {
  border: 26px #ddd solid !important;
}
.alto--bt-26 {
  border-top: 26px #ddd solid !important;
}
.alto--br-26 {
  border-right: 26px #ddd solid !important;
}
.alto--bl-26 {
  border-left: 26px #ddd solid !important;
}
.alto--bb-26 {
  border-bottom: 26px #ddd solid !important;
}
.alto--by-26 {
  border-top: 26px #ddd solid !important;
  border-bottom: 26px #ddd solid !important;
}
.alto--bx-26 {
  border-right: 26px #ddd solid !important;
  border-left: 26px #ddd solid !important;
}
.alto--ba-27 {
  border: 27px #ddd solid !important;
}
.alto--bt-27 {
  border-top: 27px #ddd solid !important;
}
.alto--br-27 {
  border-right: 27px #ddd solid !important;
}
.alto--bl-27 {
  border-left: 27px #ddd solid !important;
}
.alto--bb-27 {
  border-bottom: 27px #ddd solid !important;
}
.alto--by-27 {
  border-top: 27px #ddd solid !important;
  border-bottom: 27px #ddd solid !important;
}
.alto--bx-27 {
  border-right: 27px #ddd solid !important;
  border-left: 27px #ddd solid !important;
}
.alto--ba-28 {
  border: 28px #ddd solid !important;
}
.alto--bt-28 {
  border-top: 28px #ddd solid !important;
}
.alto--br-28 {
  border-right: 28px #ddd solid !important;
}
.alto--bl-28 {
  border-left: 28px #ddd solid !important;
}
.alto--bb-28 {
  border-bottom: 28px #ddd solid !important;
}
.alto--by-28 {
  border-top: 28px #ddd solid !important;
  border-bottom: 28px #ddd solid !important;
}
.alto--bx-28 {
  border-right: 28px #ddd solid !important;
  border-left: 28px #ddd solid !important;
}
.alto--ba-29 {
  border: 29px #ddd solid !important;
}
.alto--bt-29 {
  border-top: 29px #ddd solid !important;
}
.alto--br-29 {
  border-right: 29px #ddd solid !important;
}
.alto--bl-29 {
  border-left: 29px #ddd solid !important;
}
.alto--bb-29 {
  border-bottom: 29px #ddd solid !important;
}
.alto--by-29 {
  border-top: 29px #ddd solid !important;
  border-bottom: 29px #ddd solid !important;
}
.alto--bx-29 {
  border-right: 29px #ddd solid !important;
  border-left: 29px #ddd solid !important;
}
.alto--ba-30 {
  border: 30px #ddd solid !important;
}
.alto--bt-30 {
  border-top: 30px #ddd solid !important;
}
.alto--br-30 {
  border-right: 30px #ddd solid !important;
}
.alto--bl-30 {
  border-left: 30px #ddd solid !important;
}
.alto--bb-30 {
  border-bottom: 30px #ddd solid !important;
}
.alto--by-30 {
  border-top: 30px #ddd solid !important;
  border-bottom: 30px #ddd solid !important;
}
.alto--bx-30 {
  border-right: 30px #ddd solid !important;
  border-left: 30px #ddd solid !important;
}
.alto--ba-31 {
  border: 31px #ddd solid !important;
}
.alto--bt-31 {
  border-top: 31px #ddd solid !important;
}
.alto--br-31 {
  border-right: 31px #ddd solid !important;
}
.alto--bl-31 {
  border-left: 31px #ddd solid !important;
}
.alto--bb-31 {
  border-bottom: 31px #ddd solid !important;
}
.alto--by-31 {
  border-top: 31px #ddd solid !important;
  border-bottom: 31px #ddd solid !important;
}
.alto--bx-31 {
  border-right: 31px #ddd solid !important;
  border-left: 31px #ddd solid !important;
}
.alto--ba-32 {
  border: 32px #ddd solid !important;
}
.alto--bt-32 {
  border-top: 32px #ddd solid !important;
}
.alto--br-32 {
  border-right: 32px #ddd solid !important;
}
.alto--bl-32 {
  border-left: 32px #ddd solid !important;
}
.alto--bb-32 {
  border-bottom: 32px #ddd solid !important;
}
.alto--by-32 {
  border-top: 32px #ddd solid !important;
  border-bottom: 32px #ddd solid !important;
}
.alto--bx-32 {
  border-right: 32px #ddd solid !important;
  border-left: 32px #ddd solid !important;
}
.alto--ba-33 {
  border: 33px #ddd solid !important;
}
.alto--bt-33 {
  border-top: 33px #ddd solid !important;
}
.alto--br-33 {
  border-right: 33px #ddd solid !important;
}
.alto--bl-33 {
  border-left: 33px #ddd solid !important;
}
.alto--bb-33 {
  border-bottom: 33px #ddd solid !important;
}
.alto--by-33 {
  border-top: 33px #ddd solid !important;
  border-bottom: 33px #ddd solid !important;
}
.alto--bx-33 {
  border-right: 33px #ddd solid !important;
  border-left: 33px #ddd solid !important;
}
.alto--ba-34 {
  border: 34px #ddd solid !important;
}
.alto--bt-34 {
  border-top: 34px #ddd solid !important;
}
.alto--br-34 {
  border-right: 34px #ddd solid !important;
}
.alto--bl-34 {
  border-left: 34px #ddd solid !important;
}
.alto--bb-34 {
  border-bottom: 34px #ddd solid !important;
}
.alto--by-34 {
  border-top: 34px #ddd solid !important;
  border-bottom: 34px #ddd solid !important;
}
.alto--bx-34 {
  border-right: 34px #ddd solid !important;
  border-left: 34px #ddd solid !important;
}
.alto--ba-35 {
  border: 35px #ddd solid !important;
}
.alto--bt-35 {
  border-top: 35px #ddd solid !important;
}
.alto--br-35 {
  border-right: 35px #ddd solid !important;
}
.alto--bl-35 {
  border-left: 35px #ddd solid !important;
}
.alto--bb-35 {
  border-bottom: 35px #ddd solid !important;
}
.alto--by-35 {
  border-top: 35px #ddd solid !important;
  border-bottom: 35px #ddd solid !important;
}
.alto--bx-35 {
  border-right: 35px #ddd solid !important;
  border-left: 35px #ddd solid !important;
}
.alto--ba-36 {
  border: 36px #ddd solid !important;
}
.alto--bt-36 {
  border-top: 36px #ddd solid !important;
}
.alto--br-36 {
  border-right: 36px #ddd solid !important;
}
.alto--bl-36 {
  border-left: 36px #ddd solid !important;
}
.alto--bb-36 {
  border-bottom: 36px #ddd solid !important;
}
.alto--by-36 {
  border-top: 36px #ddd solid !important;
  border-bottom: 36px #ddd solid !important;
}
.alto--bx-36 {
  border-right: 36px #ddd solid !important;
  border-left: 36px #ddd solid !important;
}
.alto--ba-37 {
  border: 37px #ddd solid !important;
}
.alto--bt-37 {
  border-top: 37px #ddd solid !important;
}
.alto--br-37 {
  border-right: 37px #ddd solid !important;
}
.alto--bl-37 {
  border-left: 37px #ddd solid !important;
}
.alto--bb-37 {
  border-bottom: 37px #ddd solid !important;
}
.alto--by-37 {
  border-top: 37px #ddd solid !important;
  border-bottom: 37px #ddd solid !important;
}
.alto--bx-37 {
  border-right: 37px #ddd solid !important;
  border-left: 37px #ddd solid !important;
}
.alto--ba-38 {
  border: 38px #ddd solid !important;
}
.alto--bt-38 {
  border-top: 38px #ddd solid !important;
}
.alto--br-38 {
  border-right: 38px #ddd solid !important;
}
.alto--bl-38 {
  border-left: 38px #ddd solid !important;
}
.alto--bb-38 {
  border-bottom: 38px #ddd solid !important;
}
.alto--by-38 {
  border-top: 38px #ddd solid !important;
  border-bottom: 38px #ddd solid !important;
}
.alto--bx-38 {
  border-right: 38px #ddd solid !important;
  border-left: 38px #ddd solid !important;
}
.alto--ba-39 {
  border: 39px #ddd solid !important;
}
.alto--bt-39 {
  border-top: 39px #ddd solid !important;
}
.alto--br-39 {
  border-right: 39px #ddd solid !important;
}
.alto--bl-39 {
  border-left: 39px #ddd solid !important;
}
.alto--bb-39 {
  border-bottom: 39px #ddd solid !important;
}
.alto--by-39 {
  border-top: 39px #ddd solid !important;
  border-bottom: 39px #ddd solid !important;
}
.alto--bx-39 {
  border-right: 39px #ddd solid !important;
  border-left: 39px #ddd solid !important;
}
.alto--ba-40 {
  border: 40px #ddd solid !important;
}
.alto--bt-40 {
  border-top: 40px #ddd solid !important;
}
.alto--br-40 {
  border-right: 40px #ddd solid !important;
}
.alto--bl-40 {
  border-left: 40px #ddd solid !important;
}
.alto--bb-40 {
  border-bottom: 40px #ddd solid !important;
}
.alto--by-40 {
  border-top: 40px #ddd solid !important;
  border-bottom: 40px #ddd solid !important;
}
.alto--bx-40 {
  border-right: 40px #ddd solid !important;
  border-left: 40px #ddd solid !important;
}
.alto--ba-41 {
  border: 41px #ddd solid !important;
}
.alto--bt-41 {
  border-top: 41px #ddd solid !important;
}
.alto--br-41 {
  border-right: 41px #ddd solid !important;
}
.alto--bl-41 {
  border-left: 41px #ddd solid !important;
}
.alto--bb-41 {
  border-bottom: 41px #ddd solid !important;
}
.alto--by-41 {
  border-top: 41px #ddd solid !important;
  border-bottom: 41px #ddd solid !important;
}
.alto--bx-41 {
  border-right: 41px #ddd solid !important;
  border-left: 41px #ddd solid !important;
}
.alto--ba-42 {
  border: 42px #ddd solid !important;
}
.alto--bt-42 {
  border-top: 42px #ddd solid !important;
}
.alto--br-42 {
  border-right: 42px #ddd solid !important;
}
.alto--bl-42 {
  border-left: 42px #ddd solid !important;
}
.alto--bb-42 {
  border-bottom: 42px #ddd solid !important;
}
.alto--by-42 {
  border-top: 42px #ddd solid !important;
  border-bottom: 42px #ddd solid !important;
}
.alto--bx-42 {
  border-right: 42px #ddd solid !important;
  border-left: 42px #ddd solid !important;
}
.alto--ba-43 {
  border: 43px #ddd solid !important;
}
.alto--bt-43 {
  border-top: 43px #ddd solid !important;
}
.alto--br-43 {
  border-right: 43px #ddd solid !important;
}
.alto--bl-43 {
  border-left: 43px #ddd solid !important;
}
.alto--bb-43 {
  border-bottom: 43px #ddd solid !important;
}
.alto--by-43 {
  border-top: 43px #ddd solid !important;
  border-bottom: 43px #ddd solid !important;
}
.alto--bx-43 {
  border-right: 43px #ddd solid !important;
  border-left: 43px #ddd solid !important;
}
.alto--ba-44 {
  border: 44px #ddd solid !important;
}
.alto--bt-44 {
  border-top: 44px #ddd solid !important;
}
.alto--br-44 {
  border-right: 44px #ddd solid !important;
}
.alto--bl-44 {
  border-left: 44px #ddd solid !important;
}
.alto--bb-44 {
  border-bottom: 44px #ddd solid !important;
}
.alto--by-44 {
  border-top: 44px #ddd solid !important;
  border-bottom: 44px #ddd solid !important;
}
.alto--bx-44 {
  border-right: 44px #ddd solid !important;
  border-left: 44px #ddd solid !important;
}
.alto--ba-45 {
  border: 45px #ddd solid !important;
}
.alto--bt-45 {
  border-top: 45px #ddd solid !important;
}
.alto--br-45 {
  border-right: 45px #ddd solid !important;
}
.alto--bl-45 {
  border-left: 45px #ddd solid !important;
}
.alto--bb-45 {
  border-bottom: 45px #ddd solid !important;
}
.alto--by-45 {
  border-top: 45px #ddd solid !important;
  border-bottom: 45px #ddd solid !important;
}
.alto--bx-45 {
  border-right: 45px #ddd solid !important;
  border-left: 45px #ddd solid !important;
}
.alto--ba-46 {
  border: 46px #ddd solid !important;
}
.alto--bt-46 {
  border-top: 46px #ddd solid !important;
}
.alto--br-46 {
  border-right: 46px #ddd solid !important;
}
.alto--bl-46 {
  border-left: 46px #ddd solid !important;
}
.alto--bb-46 {
  border-bottom: 46px #ddd solid !important;
}
.alto--by-46 {
  border-top: 46px #ddd solid !important;
  border-bottom: 46px #ddd solid !important;
}
.alto--bx-46 {
  border-right: 46px #ddd solid !important;
  border-left: 46px #ddd solid !important;
}
.alto--ba-47 {
  border: 47px #ddd solid !important;
}
.alto--bt-47 {
  border-top: 47px #ddd solid !important;
}
.alto--br-47 {
  border-right: 47px #ddd solid !important;
}
.alto--bl-47 {
  border-left: 47px #ddd solid !important;
}
.alto--bb-47 {
  border-bottom: 47px #ddd solid !important;
}
.alto--by-47 {
  border-top: 47px #ddd solid !important;
  border-bottom: 47px #ddd solid !important;
}
.alto--bx-47 {
  border-right: 47px #ddd solid !important;
  border-left: 47px #ddd solid !important;
}
.alto--ba-48 {
  border: 48px #ddd solid !important;
}
.alto--bt-48 {
  border-top: 48px #ddd solid !important;
}
.alto--br-48 {
  border-right: 48px #ddd solid !important;
}
.alto--bl-48 {
  border-left: 48px #ddd solid !important;
}
.alto--bb-48 {
  border-bottom: 48px #ddd solid !important;
}
.alto--by-48 {
  border-top: 48px #ddd solid !important;
  border-bottom: 48px #ddd solid !important;
}
.alto--bx-48 {
  border-right: 48px #ddd solid !important;
  border-left: 48px #ddd solid !important;
}
.alto--ba-49 {
  border: 49px #ddd solid !important;
}
.alto--bt-49 {
  border-top: 49px #ddd solid !important;
}
.alto--br-49 {
  border-right: 49px #ddd solid !important;
}
.alto--bl-49 {
  border-left: 49px #ddd solid !important;
}
.alto--bb-49 {
  border-bottom: 49px #ddd solid !important;
}
.alto--by-49 {
  border-top: 49px #ddd solid !important;
  border-bottom: 49px #ddd solid !important;
}
.alto--bx-49 {
  border-right: 49px #ddd solid !important;
  border-left: 49px #ddd solid !important;
}
.alto--ba-50 {
  border: 50px #ddd solid !important;
}
.alto--bt-50 {
  border-top: 50px #ddd solid !important;
}
.alto--br-50 {
  border-right: 50px #ddd solid !important;
}
.alto--bl-50 {
  border-left: 50px #ddd solid !important;
}
.alto--bb-50 {
  border-bottom: 50px #ddd solid !important;
}
.alto--by-50 {
  border-top: 50px #ddd solid !important;
  border-bottom: 50px #ddd solid !important;
}
.alto--bx-50 {
  border-right: 50px #ddd solid !important;
  border-left: 50px #ddd solid !important;
}
.alto--ba-51 {
  border: 51px #ddd solid !important;
}
.alto--bt-51 {
  border-top: 51px #ddd solid !important;
}
.alto--br-51 {
  border-right: 51px #ddd solid !important;
}
.alto--bl-51 {
  border-left: 51px #ddd solid !important;
}
.alto--bb-51 {
  border-bottom: 51px #ddd solid !important;
}
.alto--by-51 {
  border-top: 51px #ddd solid !important;
  border-bottom: 51px #ddd solid !important;
}
.alto--bx-51 {
  border-right: 51px #ddd solid !important;
  border-left: 51px #ddd solid !important;
}
.alto--ba-52 {
  border: 52px #ddd solid !important;
}
.alto--bt-52 {
  border-top: 52px #ddd solid !important;
}
.alto--br-52 {
  border-right: 52px #ddd solid !important;
}
.alto--bl-52 {
  border-left: 52px #ddd solid !important;
}
.alto--bb-52 {
  border-bottom: 52px #ddd solid !important;
}
.alto--by-52 {
  border-top: 52px #ddd solid !important;
  border-bottom: 52px #ddd solid !important;
}
.alto--bx-52 {
  border-right: 52px #ddd solid !important;
  border-left: 52px #ddd solid !important;
}
.alto--ba-53 {
  border: 53px #ddd solid !important;
}
.alto--bt-53 {
  border-top: 53px #ddd solid !important;
}
.alto--br-53 {
  border-right: 53px #ddd solid !important;
}
.alto--bl-53 {
  border-left: 53px #ddd solid !important;
}
.alto--bb-53 {
  border-bottom: 53px #ddd solid !important;
}
.alto--by-53 {
  border-top: 53px #ddd solid !important;
  border-bottom: 53px #ddd solid !important;
}
.alto--bx-53 {
  border-right: 53px #ddd solid !important;
  border-left: 53px #ddd solid !important;
}
.alto--ba-54 {
  border: 54px #ddd solid !important;
}
.alto--bt-54 {
  border-top: 54px #ddd solid !important;
}
.alto--br-54 {
  border-right: 54px #ddd solid !important;
}
.alto--bl-54 {
  border-left: 54px #ddd solid !important;
}
.alto--bb-54 {
  border-bottom: 54px #ddd solid !important;
}
.alto--by-54 {
  border-top: 54px #ddd solid !important;
  border-bottom: 54px #ddd solid !important;
}
.alto--bx-54 {
  border-right: 54px #ddd solid !important;
  border-left: 54px #ddd solid !important;
}
.alto--ba-55 {
  border: 55px #ddd solid !important;
}
.alto--bt-55 {
  border-top: 55px #ddd solid !important;
}
.alto--br-55 {
  border-right: 55px #ddd solid !important;
}
.alto--bl-55 {
  border-left: 55px #ddd solid !important;
}
.alto--bb-55 {
  border-bottom: 55px #ddd solid !important;
}
.alto--by-55 {
  border-top: 55px #ddd solid !important;
  border-bottom: 55px #ddd solid !important;
}
.alto--bx-55 {
  border-right: 55px #ddd solid !important;
  border-left: 55px #ddd solid !important;
}
.alto--ba-56 {
  border: 56px #ddd solid !important;
}
.alto--bt-56 {
  border-top: 56px #ddd solid !important;
}
.alto--br-56 {
  border-right: 56px #ddd solid !important;
}
.alto--bl-56 {
  border-left: 56px #ddd solid !important;
}
.alto--bb-56 {
  border-bottom: 56px #ddd solid !important;
}
.alto--by-56 {
  border-top: 56px #ddd solid !important;
  border-bottom: 56px #ddd solid !important;
}
.alto--bx-56 {
  border-right: 56px #ddd solid !important;
  border-left: 56px #ddd solid !important;
}
.alto--ba-57 {
  border: 57px #ddd solid !important;
}
.alto--bt-57 {
  border-top: 57px #ddd solid !important;
}
.alto--br-57 {
  border-right: 57px #ddd solid !important;
}
.alto--bl-57 {
  border-left: 57px #ddd solid !important;
}
.alto--bb-57 {
  border-bottom: 57px #ddd solid !important;
}
.alto--by-57 {
  border-top: 57px #ddd solid !important;
  border-bottom: 57px #ddd solid !important;
}
.alto--bx-57 {
  border-right: 57px #ddd solid !important;
  border-left: 57px #ddd solid !important;
}
.alto--ba-58 {
  border: 58px #ddd solid !important;
}
.alto--bt-58 {
  border-top: 58px #ddd solid !important;
}
.alto--br-58 {
  border-right: 58px #ddd solid !important;
}
.alto--bl-58 {
  border-left: 58px #ddd solid !important;
}
.alto--bb-58 {
  border-bottom: 58px #ddd solid !important;
}
.alto--by-58 {
  border-top: 58px #ddd solid !important;
  border-bottom: 58px #ddd solid !important;
}
.alto--bx-58 {
  border-right: 58px #ddd solid !important;
  border-left: 58px #ddd solid !important;
}
.alto--ba-59 {
  border: 59px #ddd solid !important;
}
.alto--bt-59 {
  border-top: 59px #ddd solid !important;
}
.alto--br-59 {
  border-right: 59px #ddd solid !important;
}
.alto--bl-59 {
  border-left: 59px #ddd solid !important;
}
.alto--bb-59 {
  border-bottom: 59px #ddd solid !important;
}
.alto--by-59 {
  border-top: 59px #ddd solid !important;
  border-bottom: 59px #ddd solid !important;
}
.alto--bx-59 {
  border-right: 59px #ddd solid !important;
  border-left: 59px #ddd solid !important;
}
.alto--ba-60 {
  border: 60px #ddd solid !important;
}
.alto--bt-60 {
  border-top: 60px #ddd solid !important;
}
.alto--br-60 {
  border-right: 60px #ddd solid !important;
}
.alto--bl-60 {
  border-left: 60px #ddd solid !important;
}
.alto--bb-60 {
  border-bottom: 60px #ddd solid !important;
}
.alto--by-60 {
  border-top: 60px #ddd solid !important;
  border-bottom: 60px #ddd solid !important;
}
.alto--bx-60 {
  border-right: 60px #ddd solid !important;
  border-left: 60px #ddd solid !important;
}
.alto--ba-61 {
  border: 61px #ddd solid !important;
}
.alto--bt-61 {
  border-top: 61px #ddd solid !important;
}
.alto--br-61 {
  border-right: 61px #ddd solid !important;
}
.alto--bl-61 {
  border-left: 61px #ddd solid !important;
}
.alto--bb-61 {
  border-bottom: 61px #ddd solid !important;
}
.alto--by-61 {
  border-top: 61px #ddd solid !important;
  border-bottom: 61px #ddd solid !important;
}
.alto--bx-61 {
  border-right: 61px #ddd solid !important;
  border-left: 61px #ddd solid !important;
}
.alto--ba-62 {
  border: 62px #ddd solid !important;
}
.alto--bt-62 {
  border-top: 62px #ddd solid !important;
}
.alto--br-62 {
  border-right: 62px #ddd solid !important;
}
.alto--bl-62 {
  border-left: 62px #ddd solid !important;
}
.alto--bb-62 {
  border-bottom: 62px #ddd solid !important;
}
.alto--by-62 {
  border-top: 62px #ddd solid !important;
  border-bottom: 62px #ddd solid !important;
}
.alto--bx-62 {
  border-right: 62px #ddd solid !important;
  border-left: 62px #ddd solid !important;
}
.alto--ba-63 {
  border: 63px #ddd solid !important;
}
.alto--bt-63 {
  border-top: 63px #ddd solid !important;
}
.alto--br-63 {
  border-right: 63px #ddd solid !important;
}
.alto--bl-63 {
  border-left: 63px #ddd solid !important;
}
.alto--bb-63 {
  border-bottom: 63px #ddd solid !important;
}
.alto--by-63 {
  border-top: 63px #ddd solid !important;
  border-bottom: 63px #ddd solid !important;
}
.alto--bx-63 {
  border-right: 63px #ddd solid !important;
  border-left: 63px #ddd solid !important;
}
.alto--ba-64 {
  border: 64px #ddd solid !important;
}
.alto--bt-64 {
  border-top: 64px #ddd solid !important;
}
.alto--br-64 {
  border-right: 64px #ddd solid !important;
}
.alto--bl-64 {
  border-left: 64px #ddd solid !important;
}
.alto--bb-64 {
  border-bottom: 64px #ddd solid !important;
}
.alto--by-64 {
  border-top: 64px #ddd solid !important;
  border-bottom: 64px #ddd solid !important;
}
.alto--bx-64 {
  border-right: 64px #ddd solid !important;
  border-left: 64px #ddd solid !important;
}
.alto--ba-65 {
  border: 65px #ddd solid !important;
}
.alto--bt-65 {
  border-top: 65px #ddd solid !important;
}
.alto--br-65 {
  border-right: 65px #ddd solid !important;
}
.alto--bl-65 {
  border-left: 65px #ddd solid !important;
}
.alto--bb-65 {
  border-bottom: 65px #ddd solid !important;
}
.alto--by-65 {
  border-top: 65px #ddd solid !important;
  border-bottom: 65px #ddd solid !important;
}
.alto--bx-65 {
  border-right: 65px #ddd solid !important;
  border-left: 65px #ddd solid !important;
}
.alto--ba-66 {
  border: 66px #ddd solid !important;
}
.alto--bt-66 {
  border-top: 66px #ddd solid !important;
}
.alto--br-66 {
  border-right: 66px #ddd solid !important;
}
.alto--bl-66 {
  border-left: 66px #ddd solid !important;
}
.alto--bb-66 {
  border-bottom: 66px #ddd solid !important;
}
.alto--by-66 {
  border-top: 66px #ddd solid !important;
  border-bottom: 66px #ddd solid !important;
}
.alto--bx-66 {
  border-right: 66px #ddd solid !important;
  border-left: 66px #ddd solid !important;
}
.alto--ba-67 {
  border: 67px #ddd solid !important;
}
.alto--bt-67 {
  border-top: 67px #ddd solid !important;
}
.alto--br-67 {
  border-right: 67px #ddd solid !important;
}
.alto--bl-67 {
  border-left: 67px #ddd solid !important;
}
.alto--bb-67 {
  border-bottom: 67px #ddd solid !important;
}
.alto--by-67 {
  border-top: 67px #ddd solid !important;
  border-bottom: 67px #ddd solid !important;
}
.alto--bx-67 {
  border-right: 67px #ddd solid !important;
  border-left: 67px #ddd solid !important;
}
.alto--ba-68 {
  border: 68px #ddd solid !important;
}
.alto--bt-68 {
  border-top: 68px #ddd solid !important;
}
.alto--br-68 {
  border-right: 68px #ddd solid !important;
}
.alto--bl-68 {
  border-left: 68px #ddd solid !important;
}
.alto--bb-68 {
  border-bottom: 68px #ddd solid !important;
}
.alto--by-68 {
  border-top: 68px #ddd solid !important;
  border-bottom: 68px #ddd solid !important;
}
.alto--bx-68 {
  border-right: 68px #ddd solid !important;
  border-left: 68px #ddd solid !important;
}
.alto--ba-69 {
  border: 69px #ddd solid !important;
}
.alto--bt-69 {
  border-top: 69px #ddd solid !important;
}
.alto--br-69 {
  border-right: 69px #ddd solid !important;
}
.alto--bl-69 {
  border-left: 69px #ddd solid !important;
}
.alto--bb-69 {
  border-bottom: 69px #ddd solid !important;
}
.alto--by-69 {
  border-top: 69px #ddd solid !important;
  border-bottom: 69px #ddd solid !important;
}
.alto--bx-69 {
  border-right: 69px #ddd solid !important;
  border-left: 69px #ddd solid !important;
}
.alto--ba-70 {
  border: 70px #ddd solid !important;
}
.alto--bt-70 {
  border-top: 70px #ddd solid !important;
}
.alto--br-70 {
  border-right: 70px #ddd solid !important;
}
.alto--bl-70 {
  border-left: 70px #ddd solid !important;
}
.alto--bb-70 {
  border-bottom: 70px #ddd solid !important;
}
.alto--by-70 {
  border-top: 70px #ddd solid !important;
  border-bottom: 70px #ddd solid !important;
}
.alto--bx-70 {
  border-right: 70px #ddd solid !important;
  border-left: 70px #ddd solid !important;
}
.alto--ba-71 {
  border: 71px #ddd solid !important;
}
.alto--bt-71 {
  border-top: 71px #ddd solid !important;
}
.alto--br-71 {
  border-right: 71px #ddd solid !important;
}
.alto--bl-71 {
  border-left: 71px #ddd solid !important;
}
.alto--bb-71 {
  border-bottom: 71px #ddd solid !important;
}
.alto--by-71 {
  border-top: 71px #ddd solid !important;
  border-bottom: 71px #ddd solid !important;
}
.alto--bx-71 {
  border-right: 71px #ddd solid !important;
  border-left: 71px #ddd solid !important;
}
.alto--ba-72 {
  border: 72px #ddd solid !important;
}
.alto--bt-72 {
  border-top: 72px #ddd solid !important;
}
.alto--br-72 {
  border-right: 72px #ddd solid !important;
}
.alto--bl-72 {
  border-left: 72px #ddd solid !important;
}
.alto--bb-72 {
  border-bottom: 72px #ddd solid !important;
}
.alto--by-72 {
  border-top: 72px #ddd solid !important;
  border-bottom: 72px #ddd solid !important;
}
.alto--bx-72 {
  border-right: 72px #ddd solid !important;
  border-left: 72px #ddd solid !important;
}
.alto--ba-73 {
  border: 73px #ddd solid !important;
}
.alto--bt-73 {
  border-top: 73px #ddd solid !important;
}
.alto--br-73 {
  border-right: 73px #ddd solid !important;
}
.alto--bl-73 {
  border-left: 73px #ddd solid !important;
}
.alto--bb-73 {
  border-bottom: 73px #ddd solid !important;
}
.alto--by-73 {
  border-top: 73px #ddd solid !important;
  border-bottom: 73px #ddd solid !important;
}
.alto--bx-73 {
  border-right: 73px #ddd solid !important;
  border-left: 73px #ddd solid !important;
}
.alto--ba-74 {
  border: 74px #ddd solid !important;
}
.alto--bt-74 {
  border-top: 74px #ddd solid !important;
}
.alto--br-74 {
  border-right: 74px #ddd solid !important;
}
.alto--bl-74 {
  border-left: 74px #ddd solid !important;
}
.alto--bb-74 {
  border-bottom: 74px #ddd solid !important;
}
.alto--by-74 {
  border-top: 74px #ddd solid !important;
  border-bottom: 74px #ddd solid !important;
}
.alto--bx-74 {
  border-right: 74px #ddd solid !important;
  border-left: 74px #ddd solid !important;
}
.alto--ba-75 {
  border: 75px #ddd solid !important;
}
.alto--bt-75 {
  border-top: 75px #ddd solid !important;
}
.alto--br-75 {
  border-right: 75px #ddd solid !important;
}
.alto--bl-75 {
  border-left: 75px #ddd solid !important;
}
.alto--bb-75 {
  border-bottom: 75px #ddd solid !important;
}
.alto--by-75 {
  border-top: 75px #ddd solid !important;
  border-bottom: 75px #ddd solid !important;
}
.alto--bx-75 {
  border-right: 75px #ddd solid !important;
  border-left: 75px #ddd solid !important;
}
.alto--ba-76 {
  border: 76px #ddd solid !important;
}
.alto--bt-76 {
  border-top: 76px #ddd solid !important;
}
.alto--br-76 {
  border-right: 76px #ddd solid !important;
}
.alto--bl-76 {
  border-left: 76px #ddd solid !important;
}
.alto--bb-76 {
  border-bottom: 76px #ddd solid !important;
}
.alto--by-76 {
  border-top: 76px #ddd solid !important;
  border-bottom: 76px #ddd solid !important;
}
.alto--bx-76 {
  border-right: 76px #ddd solid !important;
  border-left: 76px #ddd solid !important;
}
.alto--ba-77 {
  border: 77px #ddd solid !important;
}
.alto--bt-77 {
  border-top: 77px #ddd solid !important;
}
.alto--br-77 {
  border-right: 77px #ddd solid !important;
}
.alto--bl-77 {
  border-left: 77px #ddd solid !important;
}
.alto--bb-77 {
  border-bottom: 77px #ddd solid !important;
}
.alto--by-77 {
  border-top: 77px #ddd solid !important;
  border-bottom: 77px #ddd solid !important;
}
.alto--bx-77 {
  border-right: 77px #ddd solid !important;
  border-left: 77px #ddd solid !important;
}
.alto--ba-78 {
  border: 78px #ddd solid !important;
}
.alto--bt-78 {
  border-top: 78px #ddd solid !important;
}
.alto--br-78 {
  border-right: 78px #ddd solid !important;
}
.alto--bl-78 {
  border-left: 78px #ddd solid !important;
}
.alto--bb-78 {
  border-bottom: 78px #ddd solid !important;
}
.alto--by-78 {
  border-top: 78px #ddd solid !important;
  border-bottom: 78px #ddd solid !important;
}
.alto--bx-78 {
  border-right: 78px #ddd solid !important;
  border-left: 78px #ddd solid !important;
}
.alto--ba-79 {
  border: 79px #ddd solid !important;
}
.alto--bt-79 {
  border-top: 79px #ddd solid !important;
}
.alto--br-79 {
  border-right: 79px #ddd solid !important;
}
.alto--bl-79 {
  border-left: 79px #ddd solid !important;
}
.alto--bb-79 {
  border-bottom: 79px #ddd solid !important;
}
.alto--by-79 {
  border-top: 79px #ddd solid !important;
  border-bottom: 79px #ddd solid !important;
}
.alto--bx-79 {
  border-right: 79px #ddd solid !important;
  border-left: 79px #ddd solid !important;
}
.alto--ba-80 {
  border: 80px #ddd solid !important;
}
.alto--bt-80 {
  border-top: 80px #ddd solid !important;
}
.alto--br-80 {
  border-right: 80px #ddd solid !important;
}
.alto--bl-80 {
  border-left: 80px #ddd solid !important;
}
.alto--bb-80 {
  border-bottom: 80px #ddd solid !important;
}
.alto--by-80 {
  border-top: 80px #ddd solid !important;
  border-bottom: 80px #ddd solid !important;
}
.alto--bx-80 {
  border-right: 80px #ddd solid !important;
  border-left: 80px #ddd solid !important;
}
.alto--ba-81 {
  border: 81px #ddd solid !important;
}
.alto--bt-81 {
  border-top: 81px #ddd solid !important;
}
.alto--br-81 {
  border-right: 81px #ddd solid !important;
}
.alto--bl-81 {
  border-left: 81px #ddd solid !important;
}
.alto--bb-81 {
  border-bottom: 81px #ddd solid !important;
}
.alto--by-81 {
  border-top: 81px #ddd solid !important;
  border-bottom: 81px #ddd solid !important;
}
.alto--bx-81 {
  border-right: 81px #ddd solid !important;
  border-left: 81px #ddd solid !important;
}
.alto--ba-82 {
  border: 82px #ddd solid !important;
}
.alto--bt-82 {
  border-top: 82px #ddd solid !important;
}
.alto--br-82 {
  border-right: 82px #ddd solid !important;
}
.alto--bl-82 {
  border-left: 82px #ddd solid !important;
}
.alto--bb-82 {
  border-bottom: 82px #ddd solid !important;
}
.alto--by-82 {
  border-top: 82px #ddd solid !important;
  border-bottom: 82px #ddd solid !important;
}
.alto--bx-82 {
  border-right: 82px #ddd solid !important;
  border-left: 82px #ddd solid !important;
}
.alto--ba-83 {
  border: 83px #ddd solid !important;
}
.alto--bt-83 {
  border-top: 83px #ddd solid !important;
}
.alto--br-83 {
  border-right: 83px #ddd solid !important;
}
.alto--bl-83 {
  border-left: 83px #ddd solid !important;
}
.alto--bb-83 {
  border-bottom: 83px #ddd solid !important;
}
.alto--by-83 {
  border-top: 83px #ddd solid !important;
  border-bottom: 83px #ddd solid !important;
}
.alto--bx-83 {
  border-right: 83px #ddd solid !important;
  border-left: 83px #ddd solid !important;
}
.alto--ba-84 {
  border: 84px #ddd solid !important;
}
.alto--bt-84 {
  border-top: 84px #ddd solid !important;
}
.alto--br-84 {
  border-right: 84px #ddd solid !important;
}
.alto--bl-84 {
  border-left: 84px #ddd solid !important;
}
.alto--bb-84 {
  border-bottom: 84px #ddd solid !important;
}
.alto--by-84 {
  border-top: 84px #ddd solid !important;
  border-bottom: 84px #ddd solid !important;
}
.alto--bx-84 {
  border-right: 84px #ddd solid !important;
  border-left: 84px #ddd solid !important;
}
.alto--ba-85 {
  border: 85px #ddd solid !important;
}
.alto--bt-85 {
  border-top: 85px #ddd solid !important;
}
.alto--br-85 {
  border-right: 85px #ddd solid !important;
}
.alto--bl-85 {
  border-left: 85px #ddd solid !important;
}
.alto--bb-85 {
  border-bottom: 85px #ddd solid !important;
}
.alto--by-85 {
  border-top: 85px #ddd solid !important;
  border-bottom: 85px #ddd solid !important;
}
.alto--bx-85 {
  border-right: 85px #ddd solid !important;
  border-left: 85px #ddd solid !important;
}
.alto--ba-86 {
  border: 86px #ddd solid !important;
}
.alto--bt-86 {
  border-top: 86px #ddd solid !important;
}
.alto--br-86 {
  border-right: 86px #ddd solid !important;
}
.alto--bl-86 {
  border-left: 86px #ddd solid !important;
}
.alto--bb-86 {
  border-bottom: 86px #ddd solid !important;
}
.alto--by-86 {
  border-top: 86px #ddd solid !important;
  border-bottom: 86px #ddd solid !important;
}
.alto--bx-86 {
  border-right: 86px #ddd solid !important;
  border-left: 86px #ddd solid !important;
}
.alto--ba-87 {
  border: 87px #ddd solid !important;
}
.alto--bt-87 {
  border-top: 87px #ddd solid !important;
}
.alto--br-87 {
  border-right: 87px #ddd solid !important;
}
.alto--bl-87 {
  border-left: 87px #ddd solid !important;
}
.alto--bb-87 {
  border-bottom: 87px #ddd solid !important;
}
.alto--by-87 {
  border-top: 87px #ddd solid !important;
  border-bottom: 87px #ddd solid !important;
}
.alto--bx-87 {
  border-right: 87px #ddd solid !important;
  border-left: 87px #ddd solid !important;
}
.alto--ba-88 {
  border: 88px #ddd solid !important;
}
.alto--bt-88 {
  border-top: 88px #ddd solid !important;
}
.alto--br-88 {
  border-right: 88px #ddd solid !important;
}
.alto--bl-88 {
  border-left: 88px #ddd solid !important;
}
.alto--bb-88 {
  border-bottom: 88px #ddd solid !important;
}
.alto--by-88 {
  border-top: 88px #ddd solid !important;
  border-bottom: 88px #ddd solid !important;
}
.alto--bx-88 {
  border-right: 88px #ddd solid !important;
  border-left: 88px #ddd solid !important;
}
.alto--ba-89 {
  border: 89px #ddd solid !important;
}
.alto--bt-89 {
  border-top: 89px #ddd solid !important;
}
.alto--br-89 {
  border-right: 89px #ddd solid !important;
}
.alto--bl-89 {
  border-left: 89px #ddd solid !important;
}
.alto--bb-89 {
  border-bottom: 89px #ddd solid !important;
}
.alto--by-89 {
  border-top: 89px #ddd solid !important;
  border-bottom: 89px #ddd solid !important;
}
.alto--bx-89 {
  border-right: 89px #ddd solid !important;
  border-left: 89px #ddd solid !important;
}
.alto--ba-90 {
  border: 90px #ddd solid !important;
}
.alto--bt-90 {
  border-top: 90px #ddd solid !important;
}
.alto--br-90 {
  border-right: 90px #ddd solid !important;
}
.alto--bl-90 {
  border-left: 90px #ddd solid !important;
}
.alto--bb-90 {
  border-bottom: 90px #ddd solid !important;
}
.alto--by-90 {
  border-top: 90px #ddd solid !important;
  border-bottom: 90px #ddd solid !important;
}
.alto--bx-90 {
  border-right: 90px #ddd solid !important;
  border-left: 90px #ddd solid !important;
}
.alto--ba-91 {
  border: 91px #ddd solid !important;
}
.alto--bt-91 {
  border-top: 91px #ddd solid !important;
}
.alto--br-91 {
  border-right: 91px #ddd solid !important;
}
.alto--bl-91 {
  border-left: 91px #ddd solid !important;
}
.alto--bb-91 {
  border-bottom: 91px #ddd solid !important;
}
.alto--by-91 {
  border-top: 91px #ddd solid !important;
  border-bottom: 91px #ddd solid !important;
}
.alto--bx-91 {
  border-right: 91px #ddd solid !important;
  border-left: 91px #ddd solid !important;
}
.alto--ba-92 {
  border: 92px #ddd solid !important;
}
.alto--bt-92 {
  border-top: 92px #ddd solid !important;
}
.alto--br-92 {
  border-right: 92px #ddd solid !important;
}
.alto--bl-92 {
  border-left: 92px #ddd solid !important;
}
.alto--bb-92 {
  border-bottom: 92px #ddd solid !important;
}
.alto--by-92 {
  border-top: 92px #ddd solid !important;
  border-bottom: 92px #ddd solid !important;
}
.alto--bx-92 {
  border-right: 92px #ddd solid !important;
  border-left: 92px #ddd solid !important;
}
.alto--ba-93 {
  border: 93px #ddd solid !important;
}
.alto--bt-93 {
  border-top: 93px #ddd solid !important;
}
.alto--br-93 {
  border-right: 93px #ddd solid !important;
}
.alto--bl-93 {
  border-left: 93px #ddd solid !important;
}
.alto--bb-93 {
  border-bottom: 93px #ddd solid !important;
}
.alto--by-93 {
  border-top: 93px #ddd solid !important;
  border-bottom: 93px #ddd solid !important;
}
.alto--bx-93 {
  border-right: 93px #ddd solid !important;
  border-left: 93px #ddd solid !important;
}
.alto--ba-94 {
  border: 94px #ddd solid !important;
}
.alto--bt-94 {
  border-top: 94px #ddd solid !important;
}
.alto--br-94 {
  border-right: 94px #ddd solid !important;
}
.alto--bl-94 {
  border-left: 94px #ddd solid !important;
}
.alto--bb-94 {
  border-bottom: 94px #ddd solid !important;
}
.alto--by-94 {
  border-top: 94px #ddd solid !important;
  border-bottom: 94px #ddd solid !important;
}
.alto--bx-94 {
  border-right: 94px #ddd solid !important;
  border-left: 94px #ddd solid !important;
}
.alto--ba-95 {
  border: 95px #ddd solid !important;
}
.alto--bt-95 {
  border-top: 95px #ddd solid !important;
}
.alto--br-95 {
  border-right: 95px #ddd solid !important;
}
.alto--bl-95 {
  border-left: 95px #ddd solid !important;
}
.alto--bb-95 {
  border-bottom: 95px #ddd solid !important;
}
.alto--by-95 {
  border-top: 95px #ddd solid !important;
  border-bottom: 95px #ddd solid !important;
}
.alto--bx-95 {
  border-right: 95px #ddd solid !important;
  border-left: 95px #ddd solid !important;
}
.alto--ba-96 {
  border: 96px #ddd solid !important;
}
.alto--bt-96 {
  border-top: 96px #ddd solid !important;
}
.alto--br-96 {
  border-right: 96px #ddd solid !important;
}
.alto--bl-96 {
  border-left: 96px #ddd solid !important;
}
.alto--bb-96 {
  border-bottom: 96px #ddd solid !important;
}
.alto--by-96 {
  border-top: 96px #ddd solid !important;
  border-bottom: 96px #ddd solid !important;
}
.alto--bx-96 {
  border-right: 96px #ddd solid !important;
  border-left: 96px #ddd solid !important;
}
.alto--ba-97 {
  border: 97px #ddd solid !important;
}
.alto--bt-97 {
  border-top: 97px #ddd solid !important;
}
.alto--br-97 {
  border-right: 97px #ddd solid !important;
}
.alto--bl-97 {
  border-left: 97px #ddd solid !important;
}
.alto--bb-97 {
  border-bottom: 97px #ddd solid !important;
}
.alto--by-97 {
  border-top: 97px #ddd solid !important;
  border-bottom: 97px #ddd solid !important;
}
.alto--bx-97 {
  border-right: 97px #ddd solid !important;
  border-left: 97px #ddd solid !important;
}
.alto--ba-98 {
  border: 98px #ddd solid !important;
}
.alto--bt-98 {
  border-top: 98px #ddd solid !important;
}
.alto--br-98 {
  border-right: 98px #ddd solid !important;
}
.alto--bl-98 {
  border-left: 98px #ddd solid !important;
}
.alto--bb-98 {
  border-bottom: 98px #ddd solid !important;
}
.alto--by-98 {
  border-top: 98px #ddd solid !important;
  border-bottom: 98px #ddd solid !important;
}
.alto--bx-98 {
  border-right: 98px #ddd solid !important;
  border-left: 98px #ddd solid !important;
}
.alto--ba-99 {
  border: 99px #ddd solid !important;
}
.alto--bt-99 {
  border-top: 99px #ddd solid !important;
}
.alto--br-99 {
  border-right: 99px #ddd solid !important;
}
.alto--bl-99 {
  border-left: 99px #ddd solid !important;
}
.alto--bb-99 {
  border-bottom: 99px #ddd solid !important;
}
.alto--by-99 {
  border-top: 99px #ddd solid !important;
  border-bottom: 99px #ddd solid !important;
}
.alto--bx-99 {
  border-right: 99px #ddd solid !important;
  border-left: 99px #ddd solid !important;
}
.alto--ba-100 {
  border: 100px #ddd solid !important;
}
.alto--bt-100 {
  border-top: 100px #ddd solid !important;
}
.alto--br-100 {
  border-right: 100px #ddd solid !important;
}
.alto--bl-100 {
  border-left: 100px #ddd solid !important;
}
.alto--bb-100 {
  border-bottom: 100px #ddd solid !important;
}
.alto--by-100 {
  border-top: 100px #ddd solid !important;
  border-bottom: 100px #ddd solid !important;
}
.alto--bx-100 {
  border-right: 100px #ddd solid !important;
  border-left: 100px #ddd solid !important;
}
.bunting--ba-1 {
  border: 1px #191e5a solid !important;
}
.bunting--bt-1 {
  border-top: 1px #191e5a solid !important;
}
.bunting--br-1 {
  border-right: 1px #191e5a solid !important;
}
.bunting--bl-1 {
  border-left: 1px #191e5a solid !important;
}
.bunting--bb-1 {
  border-bottom: 1px #191e5a solid !important;
}
.bunting--by-1 {
  border-top: 1px #191e5a solid !important;
  border-bottom: 1px #191e5a solid !important;
}
.bunting--bx-1 {
  border-right: 1px #191e5a solid !important;
  border-left: 1px #191e5a solid !important;
}
.bunting--ba-2 {
  border: 2px #191e5a solid !important;
}
.bunting--bt-2 {
  border-top: 2px #191e5a solid !important;
}
.bunting--br-2 {
  border-right: 2px #191e5a solid !important;
}
.bunting--bl-2 {
  border-left: 2px #191e5a solid !important;
}
.bunting--bb-2 {
  border-bottom: 2px #191e5a solid !important;
}
.bunting--by-2 {
  border-top: 2px #191e5a solid !important;
  border-bottom: 2px #191e5a solid !important;
}
.bunting--bx-2 {
  border-right: 2px #191e5a solid !important;
  border-left: 2px #191e5a solid !important;
}
.bunting--ba-3 {
  border: 3px #191e5a solid !important;
}
.bunting--bt-3 {
  border-top: 3px #191e5a solid !important;
}
.bunting--br-3 {
  border-right: 3px #191e5a solid !important;
}
.bunting--bl-3 {
  border-left: 3px #191e5a solid !important;
}
.bunting--bb-3 {
  border-bottom: 3px #191e5a solid !important;
}
.bunting--by-3 {
  border-top: 3px #191e5a solid !important;
  border-bottom: 3px #191e5a solid !important;
}
.bunting--bx-3 {
  border-right: 3px #191e5a solid !important;
  border-left: 3px #191e5a solid !important;
}
.bunting--ba-4 {
  border: 4px #191e5a solid !important;
}
.bunting--bt-4 {
  border-top: 4px #191e5a solid !important;
}
.bunting--br-4 {
  border-right: 4px #191e5a solid !important;
}
.bunting--bl-4 {
  border-left: 4px #191e5a solid !important;
}
.bunting--bb-4 {
  border-bottom: 4px #191e5a solid !important;
}
.bunting--by-4 {
  border-top: 4px #191e5a solid !important;
  border-bottom: 4px #191e5a solid !important;
}
.bunting--bx-4 {
  border-right: 4px #191e5a solid !important;
  border-left: 4px #191e5a solid !important;
}
.bunting--ba-5 {
  border: 5px #191e5a solid !important;
}
.bunting--bt-5 {
  border-top: 5px #191e5a solid !important;
}
.bunting--br-5 {
  border-right: 5px #191e5a solid !important;
}
.bunting--bl-5 {
  border-left: 5px #191e5a solid !important;
}
.bunting--bb-5 {
  border-bottom: 5px #191e5a solid !important;
}
.bunting--by-5 {
  border-top: 5px #191e5a solid !important;
  border-bottom: 5px #191e5a solid !important;
}
.bunting--bx-5 {
  border-right: 5px #191e5a solid !important;
  border-left: 5px #191e5a solid !important;
}
.bunting--ba-6 {
  border: 6px #191e5a solid !important;
}
.bunting--bt-6 {
  border-top: 6px #191e5a solid !important;
}
.bunting--br-6 {
  border-right: 6px #191e5a solid !important;
}
.bunting--bl-6 {
  border-left: 6px #191e5a solid !important;
}
.bunting--bb-6 {
  border-bottom: 6px #191e5a solid !important;
}
.bunting--by-6 {
  border-top: 6px #191e5a solid !important;
  border-bottom: 6px #191e5a solid !important;
}
.bunting--bx-6 {
  border-right: 6px #191e5a solid !important;
  border-left: 6px #191e5a solid !important;
}
.bunting--ba-7 {
  border: 7px #191e5a solid !important;
}
.bunting--bt-7 {
  border-top: 7px #191e5a solid !important;
}
.bunting--br-7 {
  border-right: 7px #191e5a solid !important;
}
.bunting--bl-7 {
  border-left: 7px #191e5a solid !important;
}
.bunting--bb-7 {
  border-bottom: 7px #191e5a solid !important;
}
.bunting--by-7 {
  border-top: 7px #191e5a solid !important;
  border-bottom: 7px #191e5a solid !important;
}
.bunting--bx-7 {
  border-right: 7px #191e5a solid !important;
  border-left: 7px #191e5a solid !important;
}
.bunting--ba-8 {
  border: 8px #191e5a solid !important;
}
.bunting--bt-8 {
  border-top: 8px #191e5a solid !important;
}
.bunting--br-8 {
  border-right: 8px #191e5a solid !important;
}
.bunting--bl-8 {
  border-left: 8px #191e5a solid !important;
}
.bunting--bb-8 {
  border-bottom: 8px #191e5a solid !important;
}
.bunting--by-8 {
  border-top: 8px #191e5a solid !important;
  border-bottom: 8px #191e5a solid !important;
}
.bunting--bx-8 {
  border-right: 8px #191e5a solid !important;
  border-left: 8px #191e5a solid !important;
}
.bunting--ba-9 {
  border: 9px #191e5a solid !important;
}
.bunting--bt-9 {
  border-top: 9px #191e5a solid !important;
}
.bunting--br-9 {
  border-right: 9px #191e5a solid !important;
}
.bunting--bl-9 {
  border-left: 9px #191e5a solid !important;
}
.bunting--bb-9 {
  border-bottom: 9px #191e5a solid !important;
}
.bunting--by-9 {
  border-top: 9px #191e5a solid !important;
  border-bottom: 9px #191e5a solid !important;
}
.bunting--bx-9 {
  border-right: 9px #191e5a solid !important;
  border-left: 9px #191e5a solid !important;
}
.bunting--ba-10 {
  border: 10px #191e5a solid !important;
}
.bunting--bt-10 {
  border-top: 10px #191e5a solid !important;
}
.bunting--br-10 {
  border-right: 10px #191e5a solid !important;
}
.bunting--bl-10 {
  border-left: 10px #191e5a solid !important;
}
.bunting--bb-10 {
  border-bottom: 10px #191e5a solid !important;
}
.bunting--by-10 {
  border-top: 10px #191e5a solid !important;
  border-bottom: 10px #191e5a solid !important;
}
.bunting--bx-10 {
  border-right: 10px #191e5a solid !important;
  border-left: 10px #191e5a solid !important;
}
.bunting--ba-11 {
  border: 11px #191e5a solid !important;
}
.bunting--bt-11 {
  border-top: 11px #191e5a solid !important;
}
.bunting--br-11 {
  border-right: 11px #191e5a solid !important;
}
.bunting--bl-11 {
  border-left: 11px #191e5a solid !important;
}
.bunting--bb-11 {
  border-bottom: 11px #191e5a solid !important;
}
.bunting--by-11 {
  border-top: 11px #191e5a solid !important;
  border-bottom: 11px #191e5a solid !important;
}
.bunting--bx-11 {
  border-right: 11px #191e5a solid !important;
  border-left: 11px #191e5a solid !important;
}
.bunting--ba-12 {
  border: 12px #191e5a solid !important;
}
.bunting--bt-12 {
  border-top: 12px #191e5a solid !important;
}
.bunting--br-12 {
  border-right: 12px #191e5a solid !important;
}
.bunting--bl-12 {
  border-left: 12px #191e5a solid !important;
}
.bunting--bb-12 {
  border-bottom: 12px #191e5a solid !important;
}
.bunting--by-12 {
  border-top: 12px #191e5a solid !important;
  border-bottom: 12px #191e5a solid !important;
}
.bunting--bx-12 {
  border-right: 12px #191e5a solid !important;
  border-left: 12px #191e5a solid !important;
}
.bunting--ba-13 {
  border: 13px #191e5a solid !important;
}
.bunting--bt-13 {
  border-top: 13px #191e5a solid !important;
}
.bunting--br-13 {
  border-right: 13px #191e5a solid !important;
}
.bunting--bl-13 {
  border-left: 13px #191e5a solid !important;
}
.bunting--bb-13 {
  border-bottom: 13px #191e5a solid !important;
}
.bunting--by-13 {
  border-top: 13px #191e5a solid !important;
  border-bottom: 13px #191e5a solid !important;
}
.bunting--bx-13 {
  border-right: 13px #191e5a solid !important;
  border-left: 13px #191e5a solid !important;
}
.bunting--ba-14 {
  border: 14px #191e5a solid !important;
}
.bunting--bt-14 {
  border-top: 14px #191e5a solid !important;
}
.bunting--br-14 {
  border-right: 14px #191e5a solid !important;
}
.bunting--bl-14 {
  border-left: 14px #191e5a solid !important;
}
.bunting--bb-14 {
  border-bottom: 14px #191e5a solid !important;
}
.bunting--by-14 {
  border-top: 14px #191e5a solid !important;
  border-bottom: 14px #191e5a solid !important;
}
.bunting--bx-14 {
  border-right: 14px #191e5a solid !important;
  border-left: 14px #191e5a solid !important;
}
.bunting--ba-15 {
  border: 15px #191e5a solid !important;
}
.bunting--bt-15 {
  border-top: 15px #191e5a solid !important;
}
.bunting--br-15 {
  border-right: 15px #191e5a solid !important;
}
.bunting--bl-15 {
  border-left: 15px #191e5a solid !important;
}
.bunting--bb-15 {
  border-bottom: 15px #191e5a solid !important;
}
.bunting--by-15 {
  border-top: 15px #191e5a solid !important;
  border-bottom: 15px #191e5a solid !important;
}
.bunting--bx-15 {
  border-right: 15px #191e5a solid !important;
  border-left: 15px #191e5a solid !important;
}
.bunting--ba-16 {
  border: 16px #191e5a solid !important;
}
.bunting--bt-16 {
  border-top: 16px #191e5a solid !important;
}
.bunting--br-16 {
  border-right: 16px #191e5a solid !important;
}
.bunting--bl-16 {
  border-left: 16px #191e5a solid !important;
}
.bunting--bb-16 {
  border-bottom: 16px #191e5a solid !important;
}
.bunting--by-16 {
  border-top: 16px #191e5a solid !important;
  border-bottom: 16px #191e5a solid !important;
}
.bunting--bx-16 {
  border-right: 16px #191e5a solid !important;
  border-left: 16px #191e5a solid !important;
}
.bunting--ba-17 {
  border: 17px #191e5a solid !important;
}
.bunting--bt-17 {
  border-top: 17px #191e5a solid !important;
}
.bunting--br-17 {
  border-right: 17px #191e5a solid !important;
}
.bunting--bl-17 {
  border-left: 17px #191e5a solid !important;
}
.bunting--bb-17 {
  border-bottom: 17px #191e5a solid !important;
}
.bunting--by-17 {
  border-top: 17px #191e5a solid !important;
  border-bottom: 17px #191e5a solid !important;
}
.bunting--bx-17 {
  border-right: 17px #191e5a solid !important;
  border-left: 17px #191e5a solid !important;
}
.bunting--ba-18 {
  border: 18px #191e5a solid !important;
}
.bunting--bt-18 {
  border-top: 18px #191e5a solid !important;
}
.bunting--br-18 {
  border-right: 18px #191e5a solid !important;
}
.bunting--bl-18 {
  border-left: 18px #191e5a solid !important;
}
.bunting--bb-18 {
  border-bottom: 18px #191e5a solid !important;
}
.bunting--by-18 {
  border-top: 18px #191e5a solid !important;
  border-bottom: 18px #191e5a solid !important;
}
.bunting--bx-18 {
  border-right: 18px #191e5a solid !important;
  border-left: 18px #191e5a solid !important;
}
.bunting--ba-19 {
  border: 19px #191e5a solid !important;
}
.bunting--bt-19 {
  border-top: 19px #191e5a solid !important;
}
.bunting--br-19 {
  border-right: 19px #191e5a solid !important;
}
.bunting--bl-19 {
  border-left: 19px #191e5a solid !important;
}
.bunting--bb-19 {
  border-bottom: 19px #191e5a solid !important;
}
.bunting--by-19 {
  border-top: 19px #191e5a solid !important;
  border-bottom: 19px #191e5a solid !important;
}
.bunting--bx-19 {
  border-right: 19px #191e5a solid !important;
  border-left: 19px #191e5a solid !important;
}
.bunting--ba-20 {
  border: 20px #191e5a solid !important;
}
.bunting--bt-20 {
  border-top: 20px #191e5a solid !important;
}
.bunting--br-20 {
  border-right: 20px #191e5a solid !important;
}
.bunting--bl-20 {
  border-left: 20px #191e5a solid !important;
}
.bunting--bb-20 {
  border-bottom: 20px #191e5a solid !important;
}
.bunting--by-20 {
  border-top: 20px #191e5a solid !important;
  border-bottom: 20px #191e5a solid !important;
}
.bunting--bx-20 {
  border-right: 20px #191e5a solid !important;
  border-left: 20px #191e5a solid !important;
}
.bunting--ba-21 {
  border: 21px #191e5a solid !important;
}
.bunting--bt-21 {
  border-top: 21px #191e5a solid !important;
}
.bunting--br-21 {
  border-right: 21px #191e5a solid !important;
}
.bunting--bl-21 {
  border-left: 21px #191e5a solid !important;
}
.bunting--bb-21 {
  border-bottom: 21px #191e5a solid !important;
}
.bunting--by-21 {
  border-top: 21px #191e5a solid !important;
  border-bottom: 21px #191e5a solid !important;
}
.bunting--bx-21 {
  border-right: 21px #191e5a solid !important;
  border-left: 21px #191e5a solid !important;
}
.bunting--ba-22 {
  border: 22px #191e5a solid !important;
}
.bunting--bt-22 {
  border-top: 22px #191e5a solid !important;
}
.bunting--br-22 {
  border-right: 22px #191e5a solid !important;
}
.bunting--bl-22 {
  border-left: 22px #191e5a solid !important;
}
.bunting--bb-22 {
  border-bottom: 22px #191e5a solid !important;
}
.bunting--by-22 {
  border-top: 22px #191e5a solid !important;
  border-bottom: 22px #191e5a solid !important;
}
.bunting--bx-22 {
  border-right: 22px #191e5a solid !important;
  border-left: 22px #191e5a solid !important;
}
.bunting--ba-23 {
  border: 23px #191e5a solid !important;
}
.bunting--bt-23 {
  border-top: 23px #191e5a solid !important;
}
.bunting--br-23 {
  border-right: 23px #191e5a solid !important;
}
.bunting--bl-23 {
  border-left: 23px #191e5a solid !important;
}
.bunting--bb-23 {
  border-bottom: 23px #191e5a solid !important;
}
.bunting--by-23 {
  border-top: 23px #191e5a solid !important;
  border-bottom: 23px #191e5a solid !important;
}
.bunting--bx-23 {
  border-right: 23px #191e5a solid !important;
  border-left: 23px #191e5a solid !important;
}
.bunting--ba-24 {
  border: 24px #191e5a solid !important;
}
.bunting--bt-24 {
  border-top: 24px #191e5a solid !important;
}
.bunting--br-24 {
  border-right: 24px #191e5a solid !important;
}
.bunting--bl-24 {
  border-left: 24px #191e5a solid !important;
}
.bunting--bb-24 {
  border-bottom: 24px #191e5a solid !important;
}
.bunting--by-24 {
  border-top: 24px #191e5a solid !important;
  border-bottom: 24px #191e5a solid !important;
}
.bunting--bx-24 {
  border-right: 24px #191e5a solid !important;
  border-left: 24px #191e5a solid !important;
}
.bunting--ba-25 {
  border: 25px #191e5a solid !important;
}
.bunting--bt-25 {
  border-top: 25px #191e5a solid !important;
}
.bunting--br-25 {
  border-right: 25px #191e5a solid !important;
}
.bunting--bl-25 {
  border-left: 25px #191e5a solid !important;
}
.bunting--bb-25 {
  border-bottom: 25px #191e5a solid !important;
}
.bunting--by-25 {
  border-top: 25px #191e5a solid !important;
  border-bottom: 25px #191e5a solid !important;
}
.bunting--bx-25 {
  border-right: 25px #191e5a solid !important;
  border-left: 25px #191e5a solid !important;
}
.bunting--ba-26 {
  border: 26px #191e5a solid !important;
}
.bunting--bt-26 {
  border-top: 26px #191e5a solid !important;
}
.bunting--br-26 {
  border-right: 26px #191e5a solid !important;
}
.bunting--bl-26 {
  border-left: 26px #191e5a solid !important;
}
.bunting--bb-26 {
  border-bottom: 26px #191e5a solid !important;
}
.bunting--by-26 {
  border-top: 26px #191e5a solid !important;
  border-bottom: 26px #191e5a solid !important;
}
.bunting--bx-26 {
  border-right: 26px #191e5a solid !important;
  border-left: 26px #191e5a solid !important;
}
.bunting--ba-27 {
  border: 27px #191e5a solid !important;
}
.bunting--bt-27 {
  border-top: 27px #191e5a solid !important;
}
.bunting--br-27 {
  border-right: 27px #191e5a solid !important;
}
.bunting--bl-27 {
  border-left: 27px #191e5a solid !important;
}
.bunting--bb-27 {
  border-bottom: 27px #191e5a solid !important;
}
.bunting--by-27 {
  border-top: 27px #191e5a solid !important;
  border-bottom: 27px #191e5a solid !important;
}
.bunting--bx-27 {
  border-right: 27px #191e5a solid !important;
  border-left: 27px #191e5a solid !important;
}
.bunting--ba-28 {
  border: 28px #191e5a solid !important;
}
.bunting--bt-28 {
  border-top: 28px #191e5a solid !important;
}
.bunting--br-28 {
  border-right: 28px #191e5a solid !important;
}
.bunting--bl-28 {
  border-left: 28px #191e5a solid !important;
}
.bunting--bb-28 {
  border-bottom: 28px #191e5a solid !important;
}
.bunting--by-28 {
  border-top: 28px #191e5a solid !important;
  border-bottom: 28px #191e5a solid !important;
}
.bunting--bx-28 {
  border-right: 28px #191e5a solid !important;
  border-left: 28px #191e5a solid !important;
}
.bunting--ba-29 {
  border: 29px #191e5a solid !important;
}
.bunting--bt-29 {
  border-top: 29px #191e5a solid !important;
}
.bunting--br-29 {
  border-right: 29px #191e5a solid !important;
}
.bunting--bl-29 {
  border-left: 29px #191e5a solid !important;
}
.bunting--bb-29 {
  border-bottom: 29px #191e5a solid !important;
}
.bunting--by-29 {
  border-top: 29px #191e5a solid !important;
  border-bottom: 29px #191e5a solid !important;
}
.bunting--bx-29 {
  border-right: 29px #191e5a solid !important;
  border-left: 29px #191e5a solid !important;
}
.bunting--ba-30 {
  border: 30px #191e5a solid !important;
}
.bunting--bt-30 {
  border-top: 30px #191e5a solid !important;
}
.bunting--br-30 {
  border-right: 30px #191e5a solid !important;
}
.bunting--bl-30 {
  border-left: 30px #191e5a solid !important;
}
.bunting--bb-30 {
  border-bottom: 30px #191e5a solid !important;
}
.bunting--by-30 {
  border-top: 30px #191e5a solid !important;
  border-bottom: 30px #191e5a solid !important;
}
.bunting--bx-30 {
  border-right: 30px #191e5a solid !important;
  border-left: 30px #191e5a solid !important;
}
.bunting--ba-31 {
  border: 31px #191e5a solid !important;
}
.bunting--bt-31 {
  border-top: 31px #191e5a solid !important;
}
.bunting--br-31 {
  border-right: 31px #191e5a solid !important;
}
.bunting--bl-31 {
  border-left: 31px #191e5a solid !important;
}
.bunting--bb-31 {
  border-bottom: 31px #191e5a solid !important;
}
.bunting--by-31 {
  border-top: 31px #191e5a solid !important;
  border-bottom: 31px #191e5a solid !important;
}
.bunting--bx-31 {
  border-right: 31px #191e5a solid !important;
  border-left: 31px #191e5a solid !important;
}
.bunting--ba-32 {
  border: 32px #191e5a solid !important;
}
.bunting--bt-32 {
  border-top: 32px #191e5a solid !important;
}
.bunting--br-32 {
  border-right: 32px #191e5a solid !important;
}
.bunting--bl-32 {
  border-left: 32px #191e5a solid !important;
}
.bunting--bb-32 {
  border-bottom: 32px #191e5a solid !important;
}
.bunting--by-32 {
  border-top: 32px #191e5a solid !important;
  border-bottom: 32px #191e5a solid !important;
}
.bunting--bx-32 {
  border-right: 32px #191e5a solid !important;
  border-left: 32px #191e5a solid !important;
}
.bunting--ba-33 {
  border: 33px #191e5a solid !important;
}
.bunting--bt-33 {
  border-top: 33px #191e5a solid !important;
}
.bunting--br-33 {
  border-right: 33px #191e5a solid !important;
}
.bunting--bl-33 {
  border-left: 33px #191e5a solid !important;
}
.bunting--bb-33 {
  border-bottom: 33px #191e5a solid !important;
}
.bunting--by-33 {
  border-top: 33px #191e5a solid !important;
  border-bottom: 33px #191e5a solid !important;
}
.bunting--bx-33 {
  border-right: 33px #191e5a solid !important;
  border-left: 33px #191e5a solid !important;
}
.bunting--ba-34 {
  border: 34px #191e5a solid !important;
}
.bunting--bt-34 {
  border-top: 34px #191e5a solid !important;
}
.bunting--br-34 {
  border-right: 34px #191e5a solid !important;
}
.bunting--bl-34 {
  border-left: 34px #191e5a solid !important;
}
.bunting--bb-34 {
  border-bottom: 34px #191e5a solid !important;
}
.bunting--by-34 {
  border-top: 34px #191e5a solid !important;
  border-bottom: 34px #191e5a solid !important;
}
.bunting--bx-34 {
  border-right: 34px #191e5a solid !important;
  border-left: 34px #191e5a solid !important;
}
.bunting--ba-35 {
  border: 35px #191e5a solid !important;
}
.bunting--bt-35 {
  border-top: 35px #191e5a solid !important;
}
.bunting--br-35 {
  border-right: 35px #191e5a solid !important;
}
.bunting--bl-35 {
  border-left: 35px #191e5a solid !important;
}
.bunting--bb-35 {
  border-bottom: 35px #191e5a solid !important;
}
.bunting--by-35 {
  border-top: 35px #191e5a solid !important;
  border-bottom: 35px #191e5a solid !important;
}
.bunting--bx-35 {
  border-right: 35px #191e5a solid !important;
  border-left: 35px #191e5a solid !important;
}
.bunting--ba-36 {
  border: 36px #191e5a solid !important;
}
.bunting--bt-36 {
  border-top: 36px #191e5a solid !important;
}
.bunting--br-36 {
  border-right: 36px #191e5a solid !important;
}
.bunting--bl-36 {
  border-left: 36px #191e5a solid !important;
}
.bunting--bb-36 {
  border-bottom: 36px #191e5a solid !important;
}
.bunting--by-36 {
  border-top: 36px #191e5a solid !important;
  border-bottom: 36px #191e5a solid !important;
}
.bunting--bx-36 {
  border-right: 36px #191e5a solid !important;
  border-left: 36px #191e5a solid !important;
}
.bunting--ba-37 {
  border: 37px #191e5a solid !important;
}
.bunting--bt-37 {
  border-top: 37px #191e5a solid !important;
}
.bunting--br-37 {
  border-right: 37px #191e5a solid !important;
}
.bunting--bl-37 {
  border-left: 37px #191e5a solid !important;
}
.bunting--bb-37 {
  border-bottom: 37px #191e5a solid !important;
}
.bunting--by-37 {
  border-top: 37px #191e5a solid !important;
  border-bottom: 37px #191e5a solid !important;
}
.bunting--bx-37 {
  border-right: 37px #191e5a solid !important;
  border-left: 37px #191e5a solid !important;
}
.bunting--ba-38 {
  border: 38px #191e5a solid !important;
}
.bunting--bt-38 {
  border-top: 38px #191e5a solid !important;
}
.bunting--br-38 {
  border-right: 38px #191e5a solid !important;
}
.bunting--bl-38 {
  border-left: 38px #191e5a solid !important;
}
.bunting--bb-38 {
  border-bottom: 38px #191e5a solid !important;
}
.bunting--by-38 {
  border-top: 38px #191e5a solid !important;
  border-bottom: 38px #191e5a solid !important;
}
.bunting--bx-38 {
  border-right: 38px #191e5a solid !important;
  border-left: 38px #191e5a solid !important;
}
.bunting--ba-39 {
  border: 39px #191e5a solid !important;
}
.bunting--bt-39 {
  border-top: 39px #191e5a solid !important;
}
.bunting--br-39 {
  border-right: 39px #191e5a solid !important;
}
.bunting--bl-39 {
  border-left: 39px #191e5a solid !important;
}
.bunting--bb-39 {
  border-bottom: 39px #191e5a solid !important;
}
.bunting--by-39 {
  border-top: 39px #191e5a solid !important;
  border-bottom: 39px #191e5a solid !important;
}
.bunting--bx-39 {
  border-right: 39px #191e5a solid !important;
  border-left: 39px #191e5a solid !important;
}
.bunting--ba-40 {
  border: 40px #191e5a solid !important;
}
.bunting--bt-40 {
  border-top: 40px #191e5a solid !important;
}
.bunting--br-40 {
  border-right: 40px #191e5a solid !important;
}
.bunting--bl-40 {
  border-left: 40px #191e5a solid !important;
}
.bunting--bb-40 {
  border-bottom: 40px #191e5a solid !important;
}
.bunting--by-40 {
  border-top: 40px #191e5a solid !important;
  border-bottom: 40px #191e5a solid !important;
}
.bunting--bx-40 {
  border-right: 40px #191e5a solid !important;
  border-left: 40px #191e5a solid !important;
}
.bunting--ba-41 {
  border: 41px #191e5a solid !important;
}
.bunting--bt-41 {
  border-top: 41px #191e5a solid !important;
}
.bunting--br-41 {
  border-right: 41px #191e5a solid !important;
}
.bunting--bl-41 {
  border-left: 41px #191e5a solid !important;
}
.bunting--bb-41 {
  border-bottom: 41px #191e5a solid !important;
}
.bunting--by-41 {
  border-top: 41px #191e5a solid !important;
  border-bottom: 41px #191e5a solid !important;
}
.bunting--bx-41 {
  border-right: 41px #191e5a solid !important;
  border-left: 41px #191e5a solid !important;
}
.bunting--ba-42 {
  border: 42px #191e5a solid !important;
}
.bunting--bt-42 {
  border-top: 42px #191e5a solid !important;
}
.bunting--br-42 {
  border-right: 42px #191e5a solid !important;
}
.bunting--bl-42 {
  border-left: 42px #191e5a solid !important;
}
.bunting--bb-42 {
  border-bottom: 42px #191e5a solid !important;
}
.bunting--by-42 {
  border-top: 42px #191e5a solid !important;
  border-bottom: 42px #191e5a solid !important;
}
.bunting--bx-42 {
  border-right: 42px #191e5a solid !important;
  border-left: 42px #191e5a solid !important;
}
.bunting--ba-43 {
  border: 43px #191e5a solid !important;
}
.bunting--bt-43 {
  border-top: 43px #191e5a solid !important;
}
.bunting--br-43 {
  border-right: 43px #191e5a solid !important;
}
.bunting--bl-43 {
  border-left: 43px #191e5a solid !important;
}
.bunting--bb-43 {
  border-bottom: 43px #191e5a solid !important;
}
.bunting--by-43 {
  border-top: 43px #191e5a solid !important;
  border-bottom: 43px #191e5a solid !important;
}
.bunting--bx-43 {
  border-right: 43px #191e5a solid !important;
  border-left: 43px #191e5a solid !important;
}
.bunting--ba-44 {
  border: 44px #191e5a solid !important;
}
.bunting--bt-44 {
  border-top: 44px #191e5a solid !important;
}
.bunting--br-44 {
  border-right: 44px #191e5a solid !important;
}
.bunting--bl-44 {
  border-left: 44px #191e5a solid !important;
}
.bunting--bb-44 {
  border-bottom: 44px #191e5a solid !important;
}
.bunting--by-44 {
  border-top: 44px #191e5a solid !important;
  border-bottom: 44px #191e5a solid !important;
}
.bunting--bx-44 {
  border-right: 44px #191e5a solid !important;
  border-left: 44px #191e5a solid !important;
}
.bunting--ba-45 {
  border: 45px #191e5a solid !important;
}
.bunting--bt-45 {
  border-top: 45px #191e5a solid !important;
}
.bunting--br-45 {
  border-right: 45px #191e5a solid !important;
}
.bunting--bl-45 {
  border-left: 45px #191e5a solid !important;
}
.bunting--bb-45 {
  border-bottom: 45px #191e5a solid !important;
}
.bunting--by-45 {
  border-top: 45px #191e5a solid !important;
  border-bottom: 45px #191e5a solid !important;
}
.bunting--bx-45 {
  border-right: 45px #191e5a solid !important;
  border-left: 45px #191e5a solid !important;
}
.bunting--ba-46 {
  border: 46px #191e5a solid !important;
}
.bunting--bt-46 {
  border-top: 46px #191e5a solid !important;
}
.bunting--br-46 {
  border-right: 46px #191e5a solid !important;
}
.bunting--bl-46 {
  border-left: 46px #191e5a solid !important;
}
.bunting--bb-46 {
  border-bottom: 46px #191e5a solid !important;
}
.bunting--by-46 {
  border-top: 46px #191e5a solid !important;
  border-bottom: 46px #191e5a solid !important;
}
.bunting--bx-46 {
  border-right: 46px #191e5a solid !important;
  border-left: 46px #191e5a solid !important;
}
.bunting--ba-47 {
  border: 47px #191e5a solid !important;
}
.bunting--bt-47 {
  border-top: 47px #191e5a solid !important;
}
.bunting--br-47 {
  border-right: 47px #191e5a solid !important;
}
.bunting--bl-47 {
  border-left: 47px #191e5a solid !important;
}
.bunting--bb-47 {
  border-bottom: 47px #191e5a solid !important;
}
.bunting--by-47 {
  border-top: 47px #191e5a solid !important;
  border-bottom: 47px #191e5a solid !important;
}
.bunting--bx-47 {
  border-right: 47px #191e5a solid !important;
  border-left: 47px #191e5a solid !important;
}
.bunting--ba-48 {
  border: 48px #191e5a solid !important;
}
.bunting--bt-48 {
  border-top: 48px #191e5a solid !important;
}
.bunting--br-48 {
  border-right: 48px #191e5a solid !important;
}
.bunting--bl-48 {
  border-left: 48px #191e5a solid !important;
}
.bunting--bb-48 {
  border-bottom: 48px #191e5a solid !important;
}
.bunting--by-48 {
  border-top: 48px #191e5a solid !important;
  border-bottom: 48px #191e5a solid !important;
}
.bunting--bx-48 {
  border-right: 48px #191e5a solid !important;
  border-left: 48px #191e5a solid !important;
}
.bunting--ba-49 {
  border: 49px #191e5a solid !important;
}
.bunting--bt-49 {
  border-top: 49px #191e5a solid !important;
}
.bunting--br-49 {
  border-right: 49px #191e5a solid !important;
}
.bunting--bl-49 {
  border-left: 49px #191e5a solid !important;
}
.bunting--bb-49 {
  border-bottom: 49px #191e5a solid !important;
}
.bunting--by-49 {
  border-top: 49px #191e5a solid !important;
  border-bottom: 49px #191e5a solid !important;
}
.bunting--bx-49 {
  border-right: 49px #191e5a solid !important;
  border-left: 49px #191e5a solid !important;
}
.bunting--ba-50 {
  border: 50px #191e5a solid !important;
}
.bunting--bt-50 {
  border-top: 50px #191e5a solid !important;
}
.bunting--br-50 {
  border-right: 50px #191e5a solid !important;
}
.bunting--bl-50 {
  border-left: 50px #191e5a solid !important;
}
.bunting--bb-50 {
  border-bottom: 50px #191e5a solid !important;
}
.bunting--by-50 {
  border-top: 50px #191e5a solid !important;
  border-bottom: 50px #191e5a solid !important;
}
.bunting--bx-50 {
  border-right: 50px #191e5a solid !important;
  border-left: 50px #191e5a solid !important;
}
.bunting--ba-51 {
  border: 51px #191e5a solid !important;
}
.bunting--bt-51 {
  border-top: 51px #191e5a solid !important;
}
.bunting--br-51 {
  border-right: 51px #191e5a solid !important;
}
.bunting--bl-51 {
  border-left: 51px #191e5a solid !important;
}
.bunting--bb-51 {
  border-bottom: 51px #191e5a solid !important;
}
.bunting--by-51 {
  border-top: 51px #191e5a solid !important;
  border-bottom: 51px #191e5a solid !important;
}
.bunting--bx-51 {
  border-right: 51px #191e5a solid !important;
  border-left: 51px #191e5a solid !important;
}
.bunting--ba-52 {
  border: 52px #191e5a solid !important;
}
.bunting--bt-52 {
  border-top: 52px #191e5a solid !important;
}
.bunting--br-52 {
  border-right: 52px #191e5a solid !important;
}
.bunting--bl-52 {
  border-left: 52px #191e5a solid !important;
}
.bunting--bb-52 {
  border-bottom: 52px #191e5a solid !important;
}
.bunting--by-52 {
  border-top: 52px #191e5a solid !important;
  border-bottom: 52px #191e5a solid !important;
}
.bunting--bx-52 {
  border-right: 52px #191e5a solid !important;
  border-left: 52px #191e5a solid !important;
}
.bunting--ba-53 {
  border: 53px #191e5a solid !important;
}
.bunting--bt-53 {
  border-top: 53px #191e5a solid !important;
}
.bunting--br-53 {
  border-right: 53px #191e5a solid !important;
}
.bunting--bl-53 {
  border-left: 53px #191e5a solid !important;
}
.bunting--bb-53 {
  border-bottom: 53px #191e5a solid !important;
}
.bunting--by-53 {
  border-top: 53px #191e5a solid !important;
  border-bottom: 53px #191e5a solid !important;
}
.bunting--bx-53 {
  border-right: 53px #191e5a solid !important;
  border-left: 53px #191e5a solid !important;
}
.bunting--ba-54 {
  border: 54px #191e5a solid !important;
}
.bunting--bt-54 {
  border-top: 54px #191e5a solid !important;
}
.bunting--br-54 {
  border-right: 54px #191e5a solid !important;
}
.bunting--bl-54 {
  border-left: 54px #191e5a solid !important;
}
.bunting--bb-54 {
  border-bottom: 54px #191e5a solid !important;
}
.bunting--by-54 {
  border-top: 54px #191e5a solid !important;
  border-bottom: 54px #191e5a solid !important;
}
.bunting--bx-54 {
  border-right: 54px #191e5a solid !important;
  border-left: 54px #191e5a solid !important;
}
.bunting--ba-55 {
  border: 55px #191e5a solid !important;
}
.bunting--bt-55 {
  border-top: 55px #191e5a solid !important;
}
.bunting--br-55 {
  border-right: 55px #191e5a solid !important;
}
.bunting--bl-55 {
  border-left: 55px #191e5a solid !important;
}
.bunting--bb-55 {
  border-bottom: 55px #191e5a solid !important;
}
.bunting--by-55 {
  border-top: 55px #191e5a solid !important;
  border-bottom: 55px #191e5a solid !important;
}
.bunting--bx-55 {
  border-right: 55px #191e5a solid !important;
  border-left: 55px #191e5a solid !important;
}
.bunting--ba-56 {
  border: 56px #191e5a solid !important;
}
.bunting--bt-56 {
  border-top: 56px #191e5a solid !important;
}
.bunting--br-56 {
  border-right: 56px #191e5a solid !important;
}
.bunting--bl-56 {
  border-left: 56px #191e5a solid !important;
}
.bunting--bb-56 {
  border-bottom: 56px #191e5a solid !important;
}
.bunting--by-56 {
  border-top: 56px #191e5a solid !important;
  border-bottom: 56px #191e5a solid !important;
}
.bunting--bx-56 {
  border-right: 56px #191e5a solid !important;
  border-left: 56px #191e5a solid !important;
}
.bunting--ba-57 {
  border: 57px #191e5a solid !important;
}
.bunting--bt-57 {
  border-top: 57px #191e5a solid !important;
}
.bunting--br-57 {
  border-right: 57px #191e5a solid !important;
}
.bunting--bl-57 {
  border-left: 57px #191e5a solid !important;
}
.bunting--bb-57 {
  border-bottom: 57px #191e5a solid !important;
}
.bunting--by-57 {
  border-top: 57px #191e5a solid !important;
  border-bottom: 57px #191e5a solid !important;
}
.bunting--bx-57 {
  border-right: 57px #191e5a solid !important;
  border-left: 57px #191e5a solid !important;
}
.bunting--ba-58 {
  border: 58px #191e5a solid !important;
}
.bunting--bt-58 {
  border-top: 58px #191e5a solid !important;
}
.bunting--br-58 {
  border-right: 58px #191e5a solid !important;
}
.bunting--bl-58 {
  border-left: 58px #191e5a solid !important;
}
.bunting--bb-58 {
  border-bottom: 58px #191e5a solid !important;
}
.bunting--by-58 {
  border-top: 58px #191e5a solid !important;
  border-bottom: 58px #191e5a solid !important;
}
.bunting--bx-58 {
  border-right: 58px #191e5a solid !important;
  border-left: 58px #191e5a solid !important;
}
.bunting--ba-59 {
  border: 59px #191e5a solid !important;
}
.bunting--bt-59 {
  border-top: 59px #191e5a solid !important;
}
.bunting--br-59 {
  border-right: 59px #191e5a solid !important;
}
.bunting--bl-59 {
  border-left: 59px #191e5a solid !important;
}
.bunting--bb-59 {
  border-bottom: 59px #191e5a solid !important;
}
.bunting--by-59 {
  border-top: 59px #191e5a solid !important;
  border-bottom: 59px #191e5a solid !important;
}
.bunting--bx-59 {
  border-right: 59px #191e5a solid !important;
  border-left: 59px #191e5a solid !important;
}
.bunting--ba-60 {
  border: 60px #191e5a solid !important;
}
.bunting--bt-60 {
  border-top: 60px #191e5a solid !important;
}
.bunting--br-60 {
  border-right: 60px #191e5a solid !important;
}
.bunting--bl-60 {
  border-left: 60px #191e5a solid !important;
}
.bunting--bb-60 {
  border-bottom: 60px #191e5a solid !important;
}
.bunting--by-60 {
  border-top: 60px #191e5a solid !important;
  border-bottom: 60px #191e5a solid !important;
}
.bunting--bx-60 {
  border-right: 60px #191e5a solid !important;
  border-left: 60px #191e5a solid !important;
}
.bunting--ba-61 {
  border: 61px #191e5a solid !important;
}
.bunting--bt-61 {
  border-top: 61px #191e5a solid !important;
}
.bunting--br-61 {
  border-right: 61px #191e5a solid !important;
}
.bunting--bl-61 {
  border-left: 61px #191e5a solid !important;
}
.bunting--bb-61 {
  border-bottom: 61px #191e5a solid !important;
}
.bunting--by-61 {
  border-top: 61px #191e5a solid !important;
  border-bottom: 61px #191e5a solid !important;
}
.bunting--bx-61 {
  border-right: 61px #191e5a solid !important;
  border-left: 61px #191e5a solid !important;
}
.bunting--ba-62 {
  border: 62px #191e5a solid !important;
}
.bunting--bt-62 {
  border-top: 62px #191e5a solid !important;
}
.bunting--br-62 {
  border-right: 62px #191e5a solid !important;
}
.bunting--bl-62 {
  border-left: 62px #191e5a solid !important;
}
.bunting--bb-62 {
  border-bottom: 62px #191e5a solid !important;
}
.bunting--by-62 {
  border-top: 62px #191e5a solid !important;
  border-bottom: 62px #191e5a solid !important;
}
.bunting--bx-62 {
  border-right: 62px #191e5a solid !important;
  border-left: 62px #191e5a solid !important;
}
.bunting--ba-63 {
  border: 63px #191e5a solid !important;
}
.bunting--bt-63 {
  border-top: 63px #191e5a solid !important;
}
.bunting--br-63 {
  border-right: 63px #191e5a solid !important;
}
.bunting--bl-63 {
  border-left: 63px #191e5a solid !important;
}
.bunting--bb-63 {
  border-bottom: 63px #191e5a solid !important;
}
.bunting--by-63 {
  border-top: 63px #191e5a solid !important;
  border-bottom: 63px #191e5a solid !important;
}
.bunting--bx-63 {
  border-right: 63px #191e5a solid !important;
  border-left: 63px #191e5a solid !important;
}
.bunting--ba-64 {
  border: 64px #191e5a solid !important;
}
.bunting--bt-64 {
  border-top: 64px #191e5a solid !important;
}
.bunting--br-64 {
  border-right: 64px #191e5a solid !important;
}
.bunting--bl-64 {
  border-left: 64px #191e5a solid !important;
}
.bunting--bb-64 {
  border-bottom: 64px #191e5a solid !important;
}
.bunting--by-64 {
  border-top: 64px #191e5a solid !important;
  border-bottom: 64px #191e5a solid !important;
}
.bunting--bx-64 {
  border-right: 64px #191e5a solid !important;
  border-left: 64px #191e5a solid !important;
}
.bunting--ba-65 {
  border: 65px #191e5a solid !important;
}
.bunting--bt-65 {
  border-top: 65px #191e5a solid !important;
}
.bunting--br-65 {
  border-right: 65px #191e5a solid !important;
}
.bunting--bl-65 {
  border-left: 65px #191e5a solid !important;
}
.bunting--bb-65 {
  border-bottom: 65px #191e5a solid !important;
}
.bunting--by-65 {
  border-top: 65px #191e5a solid !important;
  border-bottom: 65px #191e5a solid !important;
}
.bunting--bx-65 {
  border-right: 65px #191e5a solid !important;
  border-left: 65px #191e5a solid !important;
}
.bunting--ba-66 {
  border: 66px #191e5a solid !important;
}
.bunting--bt-66 {
  border-top: 66px #191e5a solid !important;
}
.bunting--br-66 {
  border-right: 66px #191e5a solid !important;
}
.bunting--bl-66 {
  border-left: 66px #191e5a solid !important;
}
.bunting--bb-66 {
  border-bottom: 66px #191e5a solid !important;
}
.bunting--by-66 {
  border-top: 66px #191e5a solid !important;
  border-bottom: 66px #191e5a solid !important;
}
.bunting--bx-66 {
  border-right: 66px #191e5a solid !important;
  border-left: 66px #191e5a solid !important;
}
.bunting--ba-67 {
  border: 67px #191e5a solid !important;
}
.bunting--bt-67 {
  border-top: 67px #191e5a solid !important;
}
.bunting--br-67 {
  border-right: 67px #191e5a solid !important;
}
.bunting--bl-67 {
  border-left: 67px #191e5a solid !important;
}
.bunting--bb-67 {
  border-bottom: 67px #191e5a solid !important;
}
.bunting--by-67 {
  border-top: 67px #191e5a solid !important;
  border-bottom: 67px #191e5a solid !important;
}
.bunting--bx-67 {
  border-right: 67px #191e5a solid !important;
  border-left: 67px #191e5a solid !important;
}
.bunting--ba-68 {
  border: 68px #191e5a solid !important;
}
.bunting--bt-68 {
  border-top: 68px #191e5a solid !important;
}
.bunting--br-68 {
  border-right: 68px #191e5a solid !important;
}
.bunting--bl-68 {
  border-left: 68px #191e5a solid !important;
}
.bunting--bb-68 {
  border-bottom: 68px #191e5a solid !important;
}
.bunting--by-68 {
  border-top: 68px #191e5a solid !important;
  border-bottom: 68px #191e5a solid !important;
}
.bunting--bx-68 {
  border-right: 68px #191e5a solid !important;
  border-left: 68px #191e5a solid !important;
}
.bunting--ba-69 {
  border: 69px #191e5a solid !important;
}
.bunting--bt-69 {
  border-top: 69px #191e5a solid !important;
}
.bunting--br-69 {
  border-right: 69px #191e5a solid !important;
}
.bunting--bl-69 {
  border-left: 69px #191e5a solid !important;
}
.bunting--bb-69 {
  border-bottom: 69px #191e5a solid !important;
}
.bunting--by-69 {
  border-top: 69px #191e5a solid !important;
  border-bottom: 69px #191e5a solid !important;
}
.bunting--bx-69 {
  border-right: 69px #191e5a solid !important;
  border-left: 69px #191e5a solid !important;
}
.bunting--ba-70 {
  border: 70px #191e5a solid !important;
}
.bunting--bt-70 {
  border-top: 70px #191e5a solid !important;
}
.bunting--br-70 {
  border-right: 70px #191e5a solid !important;
}
.bunting--bl-70 {
  border-left: 70px #191e5a solid !important;
}
.bunting--bb-70 {
  border-bottom: 70px #191e5a solid !important;
}
.bunting--by-70 {
  border-top: 70px #191e5a solid !important;
  border-bottom: 70px #191e5a solid !important;
}
.bunting--bx-70 {
  border-right: 70px #191e5a solid !important;
  border-left: 70px #191e5a solid !important;
}
.bunting--ba-71 {
  border: 71px #191e5a solid !important;
}
.bunting--bt-71 {
  border-top: 71px #191e5a solid !important;
}
.bunting--br-71 {
  border-right: 71px #191e5a solid !important;
}
.bunting--bl-71 {
  border-left: 71px #191e5a solid !important;
}
.bunting--bb-71 {
  border-bottom: 71px #191e5a solid !important;
}
.bunting--by-71 {
  border-top: 71px #191e5a solid !important;
  border-bottom: 71px #191e5a solid !important;
}
.bunting--bx-71 {
  border-right: 71px #191e5a solid !important;
  border-left: 71px #191e5a solid !important;
}
.bunting--ba-72 {
  border: 72px #191e5a solid !important;
}
.bunting--bt-72 {
  border-top: 72px #191e5a solid !important;
}
.bunting--br-72 {
  border-right: 72px #191e5a solid !important;
}
.bunting--bl-72 {
  border-left: 72px #191e5a solid !important;
}
.bunting--bb-72 {
  border-bottom: 72px #191e5a solid !important;
}
.bunting--by-72 {
  border-top: 72px #191e5a solid !important;
  border-bottom: 72px #191e5a solid !important;
}
.bunting--bx-72 {
  border-right: 72px #191e5a solid !important;
  border-left: 72px #191e5a solid !important;
}
.bunting--ba-73 {
  border: 73px #191e5a solid !important;
}
.bunting--bt-73 {
  border-top: 73px #191e5a solid !important;
}
.bunting--br-73 {
  border-right: 73px #191e5a solid !important;
}
.bunting--bl-73 {
  border-left: 73px #191e5a solid !important;
}
.bunting--bb-73 {
  border-bottom: 73px #191e5a solid !important;
}
.bunting--by-73 {
  border-top: 73px #191e5a solid !important;
  border-bottom: 73px #191e5a solid !important;
}
.bunting--bx-73 {
  border-right: 73px #191e5a solid !important;
  border-left: 73px #191e5a solid !important;
}
.bunting--ba-74 {
  border: 74px #191e5a solid !important;
}
.bunting--bt-74 {
  border-top: 74px #191e5a solid !important;
}
.bunting--br-74 {
  border-right: 74px #191e5a solid !important;
}
.bunting--bl-74 {
  border-left: 74px #191e5a solid !important;
}
.bunting--bb-74 {
  border-bottom: 74px #191e5a solid !important;
}
.bunting--by-74 {
  border-top: 74px #191e5a solid !important;
  border-bottom: 74px #191e5a solid !important;
}
.bunting--bx-74 {
  border-right: 74px #191e5a solid !important;
  border-left: 74px #191e5a solid !important;
}
.bunting--ba-75 {
  border: 75px #191e5a solid !important;
}
.bunting--bt-75 {
  border-top: 75px #191e5a solid !important;
}
.bunting--br-75 {
  border-right: 75px #191e5a solid !important;
}
.bunting--bl-75 {
  border-left: 75px #191e5a solid !important;
}
.bunting--bb-75 {
  border-bottom: 75px #191e5a solid !important;
}
.bunting--by-75 {
  border-top: 75px #191e5a solid !important;
  border-bottom: 75px #191e5a solid !important;
}
.bunting--bx-75 {
  border-right: 75px #191e5a solid !important;
  border-left: 75px #191e5a solid !important;
}
.bunting--ba-76 {
  border: 76px #191e5a solid !important;
}
.bunting--bt-76 {
  border-top: 76px #191e5a solid !important;
}
.bunting--br-76 {
  border-right: 76px #191e5a solid !important;
}
.bunting--bl-76 {
  border-left: 76px #191e5a solid !important;
}
.bunting--bb-76 {
  border-bottom: 76px #191e5a solid !important;
}
.bunting--by-76 {
  border-top: 76px #191e5a solid !important;
  border-bottom: 76px #191e5a solid !important;
}
.bunting--bx-76 {
  border-right: 76px #191e5a solid !important;
  border-left: 76px #191e5a solid !important;
}
.bunting--ba-77 {
  border: 77px #191e5a solid !important;
}
.bunting--bt-77 {
  border-top: 77px #191e5a solid !important;
}
.bunting--br-77 {
  border-right: 77px #191e5a solid !important;
}
.bunting--bl-77 {
  border-left: 77px #191e5a solid !important;
}
.bunting--bb-77 {
  border-bottom: 77px #191e5a solid !important;
}
.bunting--by-77 {
  border-top: 77px #191e5a solid !important;
  border-bottom: 77px #191e5a solid !important;
}
.bunting--bx-77 {
  border-right: 77px #191e5a solid !important;
  border-left: 77px #191e5a solid !important;
}
.bunting--ba-78 {
  border: 78px #191e5a solid !important;
}
.bunting--bt-78 {
  border-top: 78px #191e5a solid !important;
}
.bunting--br-78 {
  border-right: 78px #191e5a solid !important;
}
.bunting--bl-78 {
  border-left: 78px #191e5a solid !important;
}
.bunting--bb-78 {
  border-bottom: 78px #191e5a solid !important;
}
.bunting--by-78 {
  border-top: 78px #191e5a solid !important;
  border-bottom: 78px #191e5a solid !important;
}
.bunting--bx-78 {
  border-right: 78px #191e5a solid !important;
  border-left: 78px #191e5a solid !important;
}
.bunting--ba-79 {
  border: 79px #191e5a solid !important;
}
.bunting--bt-79 {
  border-top: 79px #191e5a solid !important;
}
.bunting--br-79 {
  border-right: 79px #191e5a solid !important;
}
.bunting--bl-79 {
  border-left: 79px #191e5a solid !important;
}
.bunting--bb-79 {
  border-bottom: 79px #191e5a solid !important;
}
.bunting--by-79 {
  border-top: 79px #191e5a solid !important;
  border-bottom: 79px #191e5a solid !important;
}
.bunting--bx-79 {
  border-right: 79px #191e5a solid !important;
  border-left: 79px #191e5a solid !important;
}
.bunting--ba-80 {
  border: 80px #191e5a solid !important;
}
.bunting--bt-80 {
  border-top: 80px #191e5a solid !important;
}
.bunting--br-80 {
  border-right: 80px #191e5a solid !important;
}
.bunting--bl-80 {
  border-left: 80px #191e5a solid !important;
}
.bunting--bb-80 {
  border-bottom: 80px #191e5a solid !important;
}
.bunting--by-80 {
  border-top: 80px #191e5a solid !important;
  border-bottom: 80px #191e5a solid !important;
}
.bunting--bx-80 {
  border-right: 80px #191e5a solid !important;
  border-left: 80px #191e5a solid !important;
}
.bunting--ba-81 {
  border: 81px #191e5a solid !important;
}
.bunting--bt-81 {
  border-top: 81px #191e5a solid !important;
}
.bunting--br-81 {
  border-right: 81px #191e5a solid !important;
}
.bunting--bl-81 {
  border-left: 81px #191e5a solid !important;
}
.bunting--bb-81 {
  border-bottom: 81px #191e5a solid !important;
}
.bunting--by-81 {
  border-top: 81px #191e5a solid !important;
  border-bottom: 81px #191e5a solid !important;
}
.bunting--bx-81 {
  border-right: 81px #191e5a solid !important;
  border-left: 81px #191e5a solid !important;
}
.bunting--ba-82 {
  border: 82px #191e5a solid !important;
}
.bunting--bt-82 {
  border-top: 82px #191e5a solid !important;
}
.bunting--br-82 {
  border-right: 82px #191e5a solid !important;
}
.bunting--bl-82 {
  border-left: 82px #191e5a solid !important;
}
.bunting--bb-82 {
  border-bottom: 82px #191e5a solid !important;
}
.bunting--by-82 {
  border-top: 82px #191e5a solid !important;
  border-bottom: 82px #191e5a solid !important;
}
.bunting--bx-82 {
  border-right: 82px #191e5a solid !important;
  border-left: 82px #191e5a solid !important;
}
.bunting--ba-83 {
  border: 83px #191e5a solid !important;
}
.bunting--bt-83 {
  border-top: 83px #191e5a solid !important;
}
.bunting--br-83 {
  border-right: 83px #191e5a solid !important;
}
.bunting--bl-83 {
  border-left: 83px #191e5a solid !important;
}
.bunting--bb-83 {
  border-bottom: 83px #191e5a solid !important;
}
.bunting--by-83 {
  border-top: 83px #191e5a solid !important;
  border-bottom: 83px #191e5a solid !important;
}
.bunting--bx-83 {
  border-right: 83px #191e5a solid !important;
  border-left: 83px #191e5a solid !important;
}
.bunting--ba-84 {
  border: 84px #191e5a solid !important;
}
.bunting--bt-84 {
  border-top: 84px #191e5a solid !important;
}
.bunting--br-84 {
  border-right: 84px #191e5a solid !important;
}
.bunting--bl-84 {
  border-left: 84px #191e5a solid !important;
}
.bunting--bb-84 {
  border-bottom: 84px #191e5a solid !important;
}
.bunting--by-84 {
  border-top: 84px #191e5a solid !important;
  border-bottom: 84px #191e5a solid !important;
}
.bunting--bx-84 {
  border-right: 84px #191e5a solid !important;
  border-left: 84px #191e5a solid !important;
}
.bunting--ba-85 {
  border: 85px #191e5a solid !important;
}
.bunting--bt-85 {
  border-top: 85px #191e5a solid !important;
}
.bunting--br-85 {
  border-right: 85px #191e5a solid !important;
}
.bunting--bl-85 {
  border-left: 85px #191e5a solid !important;
}
.bunting--bb-85 {
  border-bottom: 85px #191e5a solid !important;
}
.bunting--by-85 {
  border-top: 85px #191e5a solid !important;
  border-bottom: 85px #191e5a solid !important;
}
.bunting--bx-85 {
  border-right: 85px #191e5a solid !important;
  border-left: 85px #191e5a solid !important;
}
.bunting--ba-86 {
  border: 86px #191e5a solid !important;
}
.bunting--bt-86 {
  border-top: 86px #191e5a solid !important;
}
.bunting--br-86 {
  border-right: 86px #191e5a solid !important;
}
.bunting--bl-86 {
  border-left: 86px #191e5a solid !important;
}
.bunting--bb-86 {
  border-bottom: 86px #191e5a solid !important;
}
.bunting--by-86 {
  border-top: 86px #191e5a solid !important;
  border-bottom: 86px #191e5a solid !important;
}
.bunting--bx-86 {
  border-right: 86px #191e5a solid !important;
  border-left: 86px #191e5a solid !important;
}
.bunting--ba-87 {
  border: 87px #191e5a solid !important;
}
.bunting--bt-87 {
  border-top: 87px #191e5a solid !important;
}
.bunting--br-87 {
  border-right: 87px #191e5a solid !important;
}
.bunting--bl-87 {
  border-left: 87px #191e5a solid !important;
}
.bunting--bb-87 {
  border-bottom: 87px #191e5a solid !important;
}
.bunting--by-87 {
  border-top: 87px #191e5a solid !important;
  border-bottom: 87px #191e5a solid !important;
}
.bunting--bx-87 {
  border-right: 87px #191e5a solid !important;
  border-left: 87px #191e5a solid !important;
}
.bunting--ba-88 {
  border: 88px #191e5a solid !important;
}
.bunting--bt-88 {
  border-top: 88px #191e5a solid !important;
}
.bunting--br-88 {
  border-right: 88px #191e5a solid !important;
}
.bunting--bl-88 {
  border-left: 88px #191e5a solid !important;
}
.bunting--bb-88 {
  border-bottom: 88px #191e5a solid !important;
}
.bunting--by-88 {
  border-top: 88px #191e5a solid !important;
  border-bottom: 88px #191e5a solid !important;
}
.bunting--bx-88 {
  border-right: 88px #191e5a solid !important;
  border-left: 88px #191e5a solid !important;
}
.bunting--ba-89 {
  border: 89px #191e5a solid !important;
}
.bunting--bt-89 {
  border-top: 89px #191e5a solid !important;
}
.bunting--br-89 {
  border-right: 89px #191e5a solid !important;
}
.bunting--bl-89 {
  border-left: 89px #191e5a solid !important;
}
.bunting--bb-89 {
  border-bottom: 89px #191e5a solid !important;
}
.bunting--by-89 {
  border-top: 89px #191e5a solid !important;
  border-bottom: 89px #191e5a solid !important;
}
.bunting--bx-89 {
  border-right: 89px #191e5a solid !important;
  border-left: 89px #191e5a solid !important;
}
.bunting--ba-90 {
  border: 90px #191e5a solid !important;
}
.bunting--bt-90 {
  border-top: 90px #191e5a solid !important;
}
.bunting--br-90 {
  border-right: 90px #191e5a solid !important;
}
.bunting--bl-90 {
  border-left: 90px #191e5a solid !important;
}
.bunting--bb-90 {
  border-bottom: 90px #191e5a solid !important;
}
.bunting--by-90 {
  border-top: 90px #191e5a solid !important;
  border-bottom: 90px #191e5a solid !important;
}
.bunting--bx-90 {
  border-right: 90px #191e5a solid !important;
  border-left: 90px #191e5a solid !important;
}
.bunting--ba-91 {
  border: 91px #191e5a solid !important;
}
.bunting--bt-91 {
  border-top: 91px #191e5a solid !important;
}
.bunting--br-91 {
  border-right: 91px #191e5a solid !important;
}
.bunting--bl-91 {
  border-left: 91px #191e5a solid !important;
}
.bunting--bb-91 {
  border-bottom: 91px #191e5a solid !important;
}
.bunting--by-91 {
  border-top: 91px #191e5a solid !important;
  border-bottom: 91px #191e5a solid !important;
}
.bunting--bx-91 {
  border-right: 91px #191e5a solid !important;
  border-left: 91px #191e5a solid !important;
}
.bunting--ba-92 {
  border: 92px #191e5a solid !important;
}
.bunting--bt-92 {
  border-top: 92px #191e5a solid !important;
}
.bunting--br-92 {
  border-right: 92px #191e5a solid !important;
}
.bunting--bl-92 {
  border-left: 92px #191e5a solid !important;
}
.bunting--bb-92 {
  border-bottom: 92px #191e5a solid !important;
}
.bunting--by-92 {
  border-top: 92px #191e5a solid !important;
  border-bottom: 92px #191e5a solid !important;
}
.bunting--bx-92 {
  border-right: 92px #191e5a solid !important;
  border-left: 92px #191e5a solid !important;
}
.bunting--ba-93 {
  border: 93px #191e5a solid !important;
}
.bunting--bt-93 {
  border-top: 93px #191e5a solid !important;
}
.bunting--br-93 {
  border-right: 93px #191e5a solid !important;
}
.bunting--bl-93 {
  border-left: 93px #191e5a solid !important;
}
.bunting--bb-93 {
  border-bottom: 93px #191e5a solid !important;
}
.bunting--by-93 {
  border-top: 93px #191e5a solid !important;
  border-bottom: 93px #191e5a solid !important;
}
.bunting--bx-93 {
  border-right: 93px #191e5a solid !important;
  border-left: 93px #191e5a solid !important;
}
.bunting--ba-94 {
  border: 94px #191e5a solid !important;
}
.bunting--bt-94 {
  border-top: 94px #191e5a solid !important;
}
.bunting--br-94 {
  border-right: 94px #191e5a solid !important;
}
.bunting--bl-94 {
  border-left: 94px #191e5a solid !important;
}
.bunting--bb-94 {
  border-bottom: 94px #191e5a solid !important;
}
.bunting--by-94 {
  border-top: 94px #191e5a solid !important;
  border-bottom: 94px #191e5a solid !important;
}
.bunting--bx-94 {
  border-right: 94px #191e5a solid !important;
  border-left: 94px #191e5a solid !important;
}
.bunting--ba-95 {
  border: 95px #191e5a solid !important;
}
.bunting--bt-95 {
  border-top: 95px #191e5a solid !important;
}
.bunting--br-95 {
  border-right: 95px #191e5a solid !important;
}
.bunting--bl-95 {
  border-left: 95px #191e5a solid !important;
}
.bunting--bb-95 {
  border-bottom: 95px #191e5a solid !important;
}
.bunting--by-95 {
  border-top: 95px #191e5a solid !important;
  border-bottom: 95px #191e5a solid !important;
}
.bunting--bx-95 {
  border-right: 95px #191e5a solid !important;
  border-left: 95px #191e5a solid !important;
}
.bunting--ba-96 {
  border: 96px #191e5a solid !important;
}
.bunting--bt-96 {
  border-top: 96px #191e5a solid !important;
}
.bunting--br-96 {
  border-right: 96px #191e5a solid !important;
}
.bunting--bl-96 {
  border-left: 96px #191e5a solid !important;
}
.bunting--bb-96 {
  border-bottom: 96px #191e5a solid !important;
}
.bunting--by-96 {
  border-top: 96px #191e5a solid !important;
  border-bottom: 96px #191e5a solid !important;
}
.bunting--bx-96 {
  border-right: 96px #191e5a solid !important;
  border-left: 96px #191e5a solid !important;
}
.bunting--ba-97 {
  border: 97px #191e5a solid !important;
}
.bunting--bt-97 {
  border-top: 97px #191e5a solid !important;
}
.bunting--br-97 {
  border-right: 97px #191e5a solid !important;
}
.bunting--bl-97 {
  border-left: 97px #191e5a solid !important;
}
.bunting--bb-97 {
  border-bottom: 97px #191e5a solid !important;
}
.bunting--by-97 {
  border-top: 97px #191e5a solid !important;
  border-bottom: 97px #191e5a solid !important;
}
.bunting--bx-97 {
  border-right: 97px #191e5a solid !important;
  border-left: 97px #191e5a solid !important;
}
.bunting--ba-98 {
  border: 98px #191e5a solid !important;
}
.bunting--bt-98 {
  border-top: 98px #191e5a solid !important;
}
.bunting--br-98 {
  border-right: 98px #191e5a solid !important;
}
.bunting--bl-98 {
  border-left: 98px #191e5a solid !important;
}
.bunting--bb-98 {
  border-bottom: 98px #191e5a solid !important;
}
.bunting--by-98 {
  border-top: 98px #191e5a solid !important;
  border-bottom: 98px #191e5a solid !important;
}
.bunting--bx-98 {
  border-right: 98px #191e5a solid !important;
  border-left: 98px #191e5a solid !important;
}
.bunting--ba-99 {
  border: 99px #191e5a solid !important;
}
.bunting--bt-99 {
  border-top: 99px #191e5a solid !important;
}
.bunting--br-99 {
  border-right: 99px #191e5a solid !important;
}
.bunting--bl-99 {
  border-left: 99px #191e5a solid !important;
}
.bunting--bb-99 {
  border-bottom: 99px #191e5a solid !important;
}
.bunting--by-99 {
  border-top: 99px #191e5a solid !important;
  border-bottom: 99px #191e5a solid !important;
}
.bunting--bx-99 {
  border-right: 99px #191e5a solid !important;
  border-left: 99px #191e5a solid !important;
}
.bunting--ba-100 {
  border: 100px #191e5a solid !important;
}
.bunting--bt-100 {
  border-top: 100px #191e5a solid !important;
}
.bunting--br-100 {
  border-right: 100px #191e5a solid !important;
}
.bunting--bl-100 {
  border-left: 100px #191e5a solid !important;
}
.bunting--bb-100 {
  border-bottom: 100px #191e5a solid !important;
}
.bunting--by-100 {
  border-top: 100px #191e5a solid !important;
  border-bottom: 100px #191e5a solid !important;
}
.bunting--bx-100 {
  border-right: 100px #191e5a solid !important;
  border-left: 100px #191e5a solid !important;
}
.red--ba-1 {
  border: 1px #f00 solid !important;
}
.red--bt-1 {
  border-top: 1px #f00 solid !important;
}
.red--br-1 {
  border-right: 1px #f00 solid !important;
}
.red--bl-1 {
  border-left: 1px #f00 solid !important;
}
.red--bb-1 {
  border-bottom: 1px #f00 solid !important;
}
.red--by-1 {
  border-top: 1px #f00 solid !important;
  border-bottom: 1px #f00 solid !important;
}
.red--bx-1 {
  border-right: 1px #f00 solid !important;
  border-left: 1px #f00 solid !important;
}
.red--ba-2 {
  border: 2px #f00 solid !important;
}
.red--bt-2 {
  border-top: 2px #f00 solid !important;
}
.red--br-2 {
  border-right: 2px #f00 solid !important;
}
.red--bl-2 {
  border-left: 2px #f00 solid !important;
}
.red--bb-2 {
  border-bottom: 2px #f00 solid !important;
}
.red--by-2 {
  border-top: 2px #f00 solid !important;
  border-bottom: 2px #f00 solid !important;
}
.red--bx-2 {
  border-right: 2px #f00 solid !important;
  border-left: 2px #f00 solid !important;
}
.red--ba-3 {
  border: 3px #f00 solid !important;
}
.red--bt-3 {
  border-top: 3px #f00 solid !important;
}
.red--br-3 {
  border-right: 3px #f00 solid !important;
}
.red--bl-3 {
  border-left: 3px #f00 solid !important;
}
.red--bb-3 {
  border-bottom: 3px #f00 solid !important;
}
.red--by-3 {
  border-top: 3px #f00 solid !important;
  border-bottom: 3px #f00 solid !important;
}
.red--bx-3 {
  border-right: 3px #f00 solid !important;
  border-left: 3px #f00 solid !important;
}
.red--ba-4 {
  border: 4px #f00 solid !important;
}
.red--bt-4 {
  border-top: 4px #f00 solid !important;
}
.red--br-4 {
  border-right: 4px #f00 solid !important;
}
.red--bl-4 {
  border-left: 4px #f00 solid !important;
}
.red--bb-4 {
  border-bottom: 4px #f00 solid !important;
}
.red--by-4 {
  border-top: 4px #f00 solid !important;
  border-bottom: 4px #f00 solid !important;
}
.red--bx-4 {
  border-right: 4px #f00 solid !important;
  border-left: 4px #f00 solid !important;
}
.red--ba-5 {
  border: 5px #f00 solid !important;
}
.red--bt-5 {
  border-top: 5px #f00 solid !important;
}
.red--br-5 {
  border-right: 5px #f00 solid !important;
}
.red--bl-5 {
  border-left: 5px #f00 solid !important;
}
.red--bb-5 {
  border-bottom: 5px #f00 solid !important;
}
.red--by-5 {
  border-top: 5px #f00 solid !important;
  border-bottom: 5px #f00 solid !important;
}
.red--bx-5 {
  border-right: 5px #f00 solid !important;
  border-left: 5px #f00 solid !important;
}
.red--ba-6 {
  border: 6px #f00 solid !important;
}
.red--bt-6 {
  border-top: 6px #f00 solid !important;
}
.red--br-6 {
  border-right: 6px #f00 solid !important;
}
.red--bl-6 {
  border-left: 6px #f00 solid !important;
}
.red--bb-6 {
  border-bottom: 6px #f00 solid !important;
}
.red--by-6 {
  border-top: 6px #f00 solid !important;
  border-bottom: 6px #f00 solid !important;
}
.red--bx-6 {
  border-right: 6px #f00 solid !important;
  border-left: 6px #f00 solid !important;
}
.red--ba-7 {
  border: 7px #f00 solid !important;
}
.red--bt-7 {
  border-top: 7px #f00 solid !important;
}
.red--br-7 {
  border-right: 7px #f00 solid !important;
}
.red--bl-7 {
  border-left: 7px #f00 solid !important;
}
.red--bb-7 {
  border-bottom: 7px #f00 solid !important;
}
.red--by-7 {
  border-top: 7px #f00 solid !important;
  border-bottom: 7px #f00 solid !important;
}
.red--bx-7 {
  border-right: 7px #f00 solid !important;
  border-left: 7px #f00 solid !important;
}
.red--ba-8 {
  border: 8px #f00 solid !important;
}
.red--bt-8 {
  border-top: 8px #f00 solid !important;
}
.red--br-8 {
  border-right: 8px #f00 solid !important;
}
.red--bl-8 {
  border-left: 8px #f00 solid !important;
}
.red--bb-8 {
  border-bottom: 8px #f00 solid !important;
}
.red--by-8 {
  border-top: 8px #f00 solid !important;
  border-bottom: 8px #f00 solid !important;
}
.red--bx-8 {
  border-right: 8px #f00 solid !important;
  border-left: 8px #f00 solid !important;
}
.red--ba-9 {
  border: 9px #f00 solid !important;
}
.red--bt-9 {
  border-top: 9px #f00 solid !important;
}
.red--br-9 {
  border-right: 9px #f00 solid !important;
}
.red--bl-9 {
  border-left: 9px #f00 solid !important;
}
.red--bb-9 {
  border-bottom: 9px #f00 solid !important;
}
.red--by-9 {
  border-top: 9px #f00 solid !important;
  border-bottom: 9px #f00 solid !important;
}
.red--bx-9 {
  border-right: 9px #f00 solid !important;
  border-left: 9px #f00 solid !important;
}
.red--ba-10 {
  border: 10px #f00 solid !important;
}
.red--bt-10 {
  border-top: 10px #f00 solid !important;
}
.red--br-10 {
  border-right: 10px #f00 solid !important;
}
.red--bl-10 {
  border-left: 10px #f00 solid !important;
}
.red--bb-10 {
  border-bottom: 10px #f00 solid !important;
}
.red--by-10 {
  border-top: 10px #f00 solid !important;
  border-bottom: 10px #f00 solid !important;
}
.red--bx-10 {
  border-right: 10px #f00 solid !important;
  border-left: 10px #f00 solid !important;
}
.red--ba-11 {
  border: 11px #f00 solid !important;
}
.red--bt-11 {
  border-top: 11px #f00 solid !important;
}
.red--br-11 {
  border-right: 11px #f00 solid !important;
}
.red--bl-11 {
  border-left: 11px #f00 solid !important;
}
.red--bb-11 {
  border-bottom: 11px #f00 solid !important;
}
.red--by-11 {
  border-top: 11px #f00 solid !important;
  border-bottom: 11px #f00 solid !important;
}
.red--bx-11 {
  border-right: 11px #f00 solid !important;
  border-left: 11px #f00 solid !important;
}
.red--ba-12 {
  border: 12px #f00 solid !important;
}
.red--bt-12 {
  border-top: 12px #f00 solid !important;
}
.red--br-12 {
  border-right: 12px #f00 solid !important;
}
.red--bl-12 {
  border-left: 12px #f00 solid !important;
}
.red--bb-12 {
  border-bottom: 12px #f00 solid !important;
}
.red--by-12 {
  border-top: 12px #f00 solid !important;
  border-bottom: 12px #f00 solid !important;
}
.red--bx-12 {
  border-right: 12px #f00 solid !important;
  border-left: 12px #f00 solid !important;
}
.red--ba-13 {
  border: 13px #f00 solid !important;
}
.red--bt-13 {
  border-top: 13px #f00 solid !important;
}
.red--br-13 {
  border-right: 13px #f00 solid !important;
}
.red--bl-13 {
  border-left: 13px #f00 solid !important;
}
.red--bb-13 {
  border-bottom: 13px #f00 solid !important;
}
.red--by-13 {
  border-top: 13px #f00 solid !important;
  border-bottom: 13px #f00 solid !important;
}
.red--bx-13 {
  border-right: 13px #f00 solid !important;
  border-left: 13px #f00 solid !important;
}
.red--ba-14 {
  border: 14px #f00 solid !important;
}
.red--bt-14 {
  border-top: 14px #f00 solid !important;
}
.red--br-14 {
  border-right: 14px #f00 solid !important;
}
.red--bl-14 {
  border-left: 14px #f00 solid !important;
}
.red--bb-14 {
  border-bottom: 14px #f00 solid !important;
}
.red--by-14 {
  border-top: 14px #f00 solid !important;
  border-bottom: 14px #f00 solid !important;
}
.red--bx-14 {
  border-right: 14px #f00 solid !important;
  border-left: 14px #f00 solid !important;
}
.red--ba-15 {
  border: 15px #f00 solid !important;
}
.red--bt-15 {
  border-top: 15px #f00 solid !important;
}
.red--br-15 {
  border-right: 15px #f00 solid !important;
}
.red--bl-15 {
  border-left: 15px #f00 solid !important;
}
.red--bb-15 {
  border-bottom: 15px #f00 solid !important;
}
.red--by-15 {
  border-top: 15px #f00 solid !important;
  border-bottom: 15px #f00 solid !important;
}
.red--bx-15 {
  border-right: 15px #f00 solid !important;
  border-left: 15px #f00 solid !important;
}
.red--ba-16 {
  border: 16px #f00 solid !important;
}
.red--bt-16 {
  border-top: 16px #f00 solid !important;
}
.red--br-16 {
  border-right: 16px #f00 solid !important;
}
.red--bl-16 {
  border-left: 16px #f00 solid !important;
}
.red--bb-16 {
  border-bottom: 16px #f00 solid !important;
}
.red--by-16 {
  border-top: 16px #f00 solid !important;
  border-bottom: 16px #f00 solid !important;
}
.red--bx-16 {
  border-right: 16px #f00 solid !important;
  border-left: 16px #f00 solid !important;
}
.red--ba-17 {
  border: 17px #f00 solid !important;
}
.red--bt-17 {
  border-top: 17px #f00 solid !important;
}
.red--br-17 {
  border-right: 17px #f00 solid !important;
}
.red--bl-17 {
  border-left: 17px #f00 solid !important;
}
.red--bb-17 {
  border-bottom: 17px #f00 solid !important;
}
.red--by-17 {
  border-top: 17px #f00 solid !important;
  border-bottom: 17px #f00 solid !important;
}
.red--bx-17 {
  border-right: 17px #f00 solid !important;
  border-left: 17px #f00 solid !important;
}
.red--ba-18 {
  border: 18px #f00 solid !important;
}
.red--bt-18 {
  border-top: 18px #f00 solid !important;
}
.red--br-18 {
  border-right: 18px #f00 solid !important;
}
.red--bl-18 {
  border-left: 18px #f00 solid !important;
}
.red--bb-18 {
  border-bottom: 18px #f00 solid !important;
}
.red--by-18 {
  border-top: 18px #f00 solid !important;
  border-bottom: 18px #f00 solid !important;
}
.red--bx-18 {
  border-right: 18px #f00 solid !important;
  border-left: 18px #f00 solid !important;
}
.red--ba-19 {
  border: 19px #f00 solid !important;
}
.red--bt-19 {
  border-top: 19px #f00 solid !important;
}
.red--br-19 {
  border-right: 19px #f00 solid !important;
}
.red--bl-19 {
  border-left: 19px #f00 solid !important;
}
.red--bb-19 {
  border-bottom: 19px #f00 solid !important;
}
.red--by-19 {
  border-top: 19px #f00 solid !important;
  border-bottom: 19px #f00 solid !important;
}
.red--bx-19 {
  border-right: 19px #f00 solid !important;
  border-left: 19px #f00 solid !important;
}
.red--ba-20 {
  border: 20px #f00 solid !important;
}
.red--bt-20 {
  border-top: 20px #f00 solid !important;
}
.red--br-20 {
  border-right: 20px #f00 solid !important;
}
.red--bl-20 {
  border-left: 20px #f00 solid !important;
}
.red--bb-20 {
  border-bottom: 20px #f00 solid !important;
}
.red--by-20 {
  border-top: 20px #f00 solid !important;
  border-bottom: 20px #f00 solid !important;
}
.red--bx-20 {
  border-right: 20px #f00 solid !important;
  border-left: 20px #f00 solid !important;
}
.red--ba-21 {
  border: 21px #f00 solid !important;
}
.red--bt-21 {
  border-top: 21px #f00 solid !important;
}
.red--br-21 {
  border-right: 21px #f00 solid !important;
}
.red--bl-21 {
  border-left: 21px #f00 solid !important;
}
.red--bb-21 {
  border-bottom: 21px #f00 solid !important;
}
.red--by-21 {
  border-top: 21px #f00 solid !important;
  border-bottom: 21px #f00 solid !important;
}
.red--bx-21 {
  border-right: 21px #f00 solid !important;
  border-left: 21px #f00 solid !important;
}
.red--ba-22 {
  border: 22px #f00 solid !important;
}
.red--bt-22 {
  border-top: 22px #f00 solid !important;
}
.red--br-22 {
  border-right: 22px #f00 solid !important;
}
.red--bl-22 {
  border-left: 22px #f00 solid !important;
}
.red--bb-22 {
  border-bottom: 22px #f00 solid !important;
}
.red--by-22 {
  border-top: 22px #f00 solid !important;
  border-bottom: 22px #f00 solid !important;
}
.red--bx-22 {
  border-right: 22px #f00 solid !important;
  border-left: 22px #f00 solid !important;
}
.red--ba-23 {
  border: 23px #f00 solid !important;
}
.red--bt-23 {
  border-top: 23px #f00 solid !important;
}
.red--br-23 {
  border-right: 23px #f00 solid !important;
}
.red--bl-23 {
  border-left: 23px #f00 solid !important;
}
.red--bb-23 {
  border-bottom: 23px #f00 solid !important;
}
.red--by-23 {
  border-top: 23px #f00 solid !important;
  border-bottom: 23px #f00 solid !important;
}
.red--bx-23 {
  border-right: 23px #f00 solid !important;
  border-left: 23px #f00 solid !important;
}
.red--ba-24 {
  border: 24px #f00 solid !important;
}
.red--bt-24 {
  border-top: 24px #f00 solid !important;
}
.red--br-24 {
  border-right: 24px #f00 solid !important;
}
.red--bl-24 {
  border-left: 24px #f00 solid !important;
}
.red--bb-24 {
  border-bottom: 24px #f00 solid !important;
}
.red--by-24 {
  border-top: 24px #f00 solid !important;
  border-bottom: 24px #f00 solid !important;
}
.red--bx-24 {
  border-right: 24px #f00 solid !important;
  border-left: 24px #f00 solid !important;
}
.red--ba-25 {
  border: 25px #f00 solid !important;
}
.red--bt-25 {
  border-top: 25px #f00 solid !important;
}
.red--br-25 {
  border-right: 25px #f00 solid !important;
}
.red--bl-25 {
  border-left: 25px #f00 solid !important;
}
.red--bb-25 {
  border-bottom: 25px #f00 solid !important;
}
.red--by-25 {
  border-top: 25px #f00 solid !important;
  border-bottom: 25px #f00 solid !important;
}
.red--bx-25 {
  border-right: 25px #f00 solid !important;
  border-left: 25px #f00 solid !important;
}
.red--ba-26 {
  border: 26px #f00 solid !important;
}
.red--bt-26 {
  border-top: 26px #f00 solid !important;
}
.red--br-26 {
  border-right: 26px #f00 solid !important;
}
.red--bl-26 {
  border-left: 26px #f00 solid !important;
}
.red--bb-26 {
  border-bottom: 26px #f00 solid !important;
}
.red--by-26 {
  border-top: 26px #f00 solid !important;
  border-bottom: 26px #f00 solid !important;
}
.red--bx-26 {
  border-right: 26px #f00 solid !important;
  border-left: 26px #f00 solid !important;
}
.red--ba-27 {
  border: 27px #f00 solid !important;
}
.red--bt-27 {
  border-top: 27px #f00 solid !important;
}
.red--br-27 {
  border-right: 27px #f00 solid !important;
}
.red--bl-27 {
  border-left: 27px #f00 solid !important;
}
.red--bb-27 {
  border-bottom: 27px #f00 solid !important;
}
.red--by-27 {
  border-top: 27px #f00 solid !important;
  border-bottom: 27px #f00 solid !important;
}
.red--bx-27 {
  border-right: 27px #f00 solid !important;
  border-left: 27px #f00 solid !important;
}
.red--ba-28 {
  border: 28px #f00 solid !important;
}
.red--bt-28 {
  border-top: 28px #f00 solid !important;
}
.red--br-28 {
  border-right: 28px #f00 solid !important;
}
.red--bl-28 {
  border-left: 28px #f00 solid !important;
}
.red--bb-28 {
  border-bottom: 28px #f00 solid !important;
}
.red--by-28 {
  border-top: 28px #f00 solid !important;
  border-bottom: 28px #f00 solid !important;
}
.red--bx-28 {
  border-right: 28px #f00 solid !important;
  border-left: 28px #f00 solid !important;
}
.red--ba-29 {
  border: 29px #f00 solid !important;
}
.red--bt-29 {
  border-top: 29px #f00 solid !important;
}
.red--br-29 {
  border-right: 29px #f00 solid !important;
}
.red--bl-29 {
  border-left: 29px #f00 solid !important;
}
.red--bb-29 {
  border-bottom: 29px #f00 solid !important;
}
.red--by-29 {
  border-top: 29px #f00 solid !important;
  border-bottom: 29px #f00 solid !important;
}
.red--bx-29 {
  border-right: 29px #f00 solid !important;
  border-left: 29px #f00 solid !important;
}
.red--ba-30 {
  border: 30px #f00 solid !important;
}
.red--bt-30 {
  border-top: 30px #f00 solid !important;
}
.red--br-30 {
  border-right: 30px #f00 solid !important;
}
.red--bl-30 {
  border-left: 30px #f00 solid !important;
}
.red--bb-30 {
  border-bottom: 30px #f00 solid !important;
}
.red--by-30 {
  border-top: 30px #f00 solid !important;
  border-bottom: 30px #f00 solid !important;
}
.red--bx-30 {
  border-right: 30px #f00 solid !important;
  border-left: 30px #f00 solid !important;
}
.red--ba-31 {
  border: 31px #f00 solid !important;
}
.red--bt-31 {
  border-top: 31px #f00 solid !important;
}
.red--br-31 {
  border-right: 31px #f00 solid !important;
}
.red--bl-31 {
  border-left: 31px #f00 solid !important;
}
.red--bb-31 {
  border-bottom: 31px #f00 solid !important;
}
.red--by-31 {
  border-top: 31px #f00 solid !important;
  border-bottom: 31px #f00 solid !important;
}
.red--bx-31 {
  border-right: 31px #f00 solid !important;
  border-left: 31px #f00 solid !important;
}
.red--ba-32 {
  border: 32px #f00 solid !important;
}
.red--bt-32 {
  border-top: 32px #f00 solid !important;
}
.red--br-32 {
  border-right: 32px #f00 solid !important;
}
.red--bl-32 {
  border-left: 32px #f00 solid !important;
}
.red--bb-32 {
  border-bottom: 32px #f00 solid !important;
}
.red--by-32 {
  border-top: 32px #f00 solid !important;
  border-bottom: 32px #f00 solid !important;
}
.red--bx-32 {
  border-right: 32px #f00 solid !important;
  border-left: 32px #f00 solid !important;
}
.red--ba-33 {
  border: 33px #f00 solid !important;
}
.red--bt-33 {
  border-top: 33px #f00 solid !important;
}
.red--br-33 {
  border-right: 33px #f00 solid !important;
}
.red--bl-33 {
  border-left: 33px #f00 solid !important;
}
.red--bb-33 {
  border-bottom: 33px #f00 solid !important;
}
.red--by-33 {
  border-top: 33px #f00 solid !important;
  border-bottom: 33px #f00 solid !important;
}
.red--bx-33 {
  border-right: 33px #f00 solid !important;
  border-left: 33px #f00 solid !important;
}
.red--ba-34 {
  border: 34px #f00 solid !important;
}
.red--bt-34 {
  border-top: 34px #f00 solid !important;
}
.red--br-34 {
  border-right: 34px #f00 solid !important;
}
.red--bl-34 {
  border-left: 34px #f00 solid !important;
}
.red--bb-34 {
  border-bottom: 34px #f00 solid !important;
}
.red--by-34 {
  border-top: 34px #f00 solid !important;
  border-bottom: 34px #f00 solid !important;
}
.red--bx-34 {
  border-right: 34px #f00 solid !important;
  border-left: 34px #f00 solid !important;
}
.red--ba-35 {
  border: 35px #f00 solid !important;
}
.red--bt-35 {
  border-top: 35px #f00 solid !important;
}
.red--br-35 {
  border-right: 35px #f00 solid !important;
}
.red--bl-35 {
  border-left: 35px #f00 solid !important;
}
.red--bb-35 {
  border-bottom: 35px #f00 solid !important;
}
.red--by-35 {
  border-top: 35px #f00 solid !important;
  border-bottom: 35px #f00 solid !important;
}
.red--bx-35 {
  border-right: 35px #f00 solid !important;
  border-left: 35px #f00 solid !important;
}
.red--ba-36 {
  border: 36px #f00 solid !important;
}
.red--bt-36 {
  border-top: 36px #f00 solid !important;
}
.red--br-36 {
  border-right: 36px #f00 solid !important;
}
.red--bl-36 {
  border-left: 36px #f00 solid !important;
}
.red--bb-36 {
  border-bottom: 36px #f00 solid !important;
}
.red--by-36 {
  border-top: 36px #f00 solid !important;
  border-bottom: 36px #f00 solid !important;
}
.red--bx-36 {
  border-right: 36px #f00 solid !important;
  border-left: 36px #f00 solid !important;
}
.red--ba-37 {
  border: 37px #f00 solid !important;
}
.red--bt-37 {
  border-top: 37px #f00 solid !important;
}
.red--br-37 {
  border-right: 37px #f00 solid !important;
}
.red--bl-37 {
  border-left: 37px #f00 solid !important;
}
.red--bb-37 {
  border-bottom: 37px #f00 solid !important;
}
.red--by-37 {
  border-top: 37px #f00 solid !important;
  border-bottom: 37px #f00 solid !important;
}
.red--bx-37 {
  border-right: 37px #f00 solid !important;
  border-left: 37px #f00 solid !important;
}
.red--ba-38 {
  border: 38px #f00 solid !important;
}
.red--bt-38 {
  border-top: 38px #f00 solid !important;
}
.red--br-38 {
  border-right: 38px #f00 solid !important;
}
.red--bl-38 {
  border-left: 38px #f00 solid !important;
}
.red--bb-38 {
  border-bottom: 38px #f00 solid !important;
}
.red--by-38 {
  border-top: 38px #f00 solid !important;
  border-bottom: 38px #f00 solid !important;
}
.red--bx-38 {
  border-right: 38px #f00 solid !important;
  border-left: 38px #f00 solid !important;
}
.red--ba-39 {
  border: 39px #f00 solid !important;
}
.red--bt-39 {
  border-top: 39px #f00 solid !important;
}
.red--br-39 {
  border-right: 39px #f00 solid !important;
}
.red--bl-39 {
  border-left: 39px #f00 solid !important;
}
.red--bb-39 {
  border-bottom: 39px #f00 solid !important;
}
.red--by-39 {
  border-top: 39px #f00 solid !important;
  border-bottom: 39px #f00 solid !important;
}
.red--bx-39 {
  border-right: 39px #f00 solid !important;
  border-left: 39px #f00 solid !important;
}
.red--ba-40 {
  border: 40px #f00 solid !important;
}
.red--bt-40 {
  border-top: 40px #f00 solid !important;
}
.red--br-40 {
  border-right: 40px #f00 solid !important;
}
.red--bl-40 {
  border-left: 40px #f00 solid !important;
}
.red--bb-40 {
  border-bottom: 40px #f00 solid !important;
}
.red--by-40 {
  border-top: 40px #f00 solid !important;
  border-bottom: 40px #f00 solid !important;
}
.red--bx-40 {
  border-right: 40px #f00 solid !important;
  border-left: 40px #f00 solid !important;
}
.red--ba-41 {
  border: 41px #f00 solid !important;
}
.red--bt-41 {
  border-top: 41px #f00 solid !important;
}
.red--br-41 {
  border-right: 41px #f00 solid !important;
}
.red--bl-41 {
  border-left: 41px #f00 solid !important;
}
.red--bb-41 {
  border-bottom: 41px #f00 solid !important;
}
.red--by-41 {
  border-top: 41px #f00 solid !important;
  border-bottom: 41px #f00 solid !important;
}
.red--bx-41 {
  border-right: 41px #f00 solid !important;
  border-left: 41px #f00 solid !important;
}
.red--ba-42 {
  border: 42px #f00 solid !important;
}
.red--bt-42 {
  border-top: 42px #f00 solid !important;
}
.red--br-42 {
  border-right: 42px #f00 solid !important;
}
.red--bl-42 {
  border-left: 42px #f00 solid !important;
}
.red--bb-42 {
  border-bottom: 42px #f00 solid !important;
}
.red--by-42 {
  border-top: 42px #f00 solid !important;
  border-bottom: 42px #f00 solid !important;
}
.red--bx-42 {
  border-right: 42px #f00 solid !important;
  border-left: 42px #f00 solid !important;
}
.red--ba-43 {
  border: 43px #f00 solid !important;
}
.red--bt-43 {
  border-top: 43px #f00 solid !important;
}
.red--br-43 {
  border-right: 43px #f00 solid !important;
}
.red--bl-43 {
  border-left: 43px #f00 solid !important;
}
.red--bb-43 {
  border-bottom: 43px #f00 solid !important;
}
.red--by-43 {
  border-top: 43px #f00 solid !important;
  border-bottom: 43px #f00 solid !important;
}
.red--bx-43 {
  border-right: 43px #f00 solid !important;
  border-left: 43px #f00 solid !important;
}
.red--ba-44 {
  border: 44px #f00 solid !important;
}
.red--bt-44 {
  border-top: 44px #f00 solid !important;
}
.red--br-44 {
  border-right: 44px #f00 solid !important;
}
.red--bl-44 {
  border-left: 44px #f00 solid !important;
}
.red--bb-44 {
  border-bottom: 44px #f00 solid !important;
}
.red--by-44 {
  border-top: 44px #f00 solid !important;
  border-bottom: 44px #f00 solid !important;
}
.red--bx-44 {
  border-right: 44px #f00 solid !important;
  border-left: 44px #f00 solid !important;
}
.red--ba-45 {
  border: 45px #f00 solid !important;
}
.red--bt-45 {
  border-top: 45px #f00 solid !important;
}
.red--br-45 {
  border-right: 45px #f00 solid !important;
}
.red--bl-45 {
  border-left: 45px #f00 solid !important;
}
.red--bb-45 {
  border-bottom: 45px #f00 solid !important;
}
.red--by-45 {
  border-top: 45px #f00 solid !important;
  border-bottom: 45px #f00 solid !important;
}
.red--bx-45 {
  border-right: 45px #f00 solid !important;
  border-left: 45px #f00 solid !important;
}
.red--ba-46 {
  border: 46px #f00 solid !important;
}
.red--bt-46 {
  border-top: 46px #f00 solid !important;
}
.red--br-46 {
  border-right: 46px #f00 solid !important;
}
.red--bl-46 {
  border-left: 46px #f00 solid !important;
}
.red--bb-46 {
  border-bottom: 46px #f00 solid !important;
}
.red--by-46 {
  border-top: 46px #f00 solid !important;
  border-bottom: 46px #f00 solid !important;
}
.red--bx-46 {
  border-right: 46px #f00 solid !important;
  border-left: 46px #f00 solid !important;
}
.red--ba-47 {
  border: 47px #f00 solid !important;
}
.red--bt-47 {
  border-top: 47px #f00 solid !important;
}
.red--br-47 {
  border-right: 47px #f00 solid !important;
}
.red--bl-47 {
  border-left: 47px #f00 solid !important;
}
.red--bb-47 {
  border-bottom: 47px #f00 solid !important;
}
.red--by-47 {
  border-top: 47px #f00 solid !important;
  border-bottom: 47px #f00 solid !important;
}
.red--bx-47 {
  border-right: 47px #f00 solid !important;
  border-left: 47px #f00 solid !important;
}
.red--ba-48 {
  border: 48px #f00 solid !important;
}
.red--bt-48 {
  border-top: 48px #f00 solid !important;
}
.red--br-48 {
  border-right: 48px #f00 solid !important;
}
.red--bl-48 {
  border-left: 48px #f00 solid !important;
}
.red--bb-48 {
  border-bottom: 48px #f00 solid !important;
}
.red--by-48 {
  border-top: 48px #f00 solid !important;
  border-bottom: 48px #f00 solid !important;
}
.red--bx-48 {
  border-right: 48px #f00 solid !important;
  border-left: 48px #f00 solid !important;
}
.red--ba-49 {
  border: 49px #f00 solid !important;
}
.red--bt-49 {
  border-top: 49px #f00 solid !important;
}
.red--br-49 {
  border-right: 49px #f00 solid !important;
}
.red--bl-49 {
  border-left: 49px #f00 solid !important;
}
.red--bb-49 {
  border-bottom: 49px #f00 solid !important;
}
.red--by-49 {
  border-top: 49px #f00 solid !important;
  border-bottom: 49px #f00 solid !important;
}
.red--bx-49 {
  border-right: 49px #f00 solid !important;
  border-left: 49px #f00 solid !important;
}
.red--ba-50 {
  border: 50px #f00 solid !important;
}
.red--bt-50 {
  border-top: 50px #f00 solid !important;
}
.red--br-50 {
  border-right: 50px #f00 solid !important;
}
.red--bl-50 {
  border-left: 50px #f00 solid !important;
}
.red--bb-50 {
  border-bottom: 50px #f00 solid !important;
}
.red--by-50 {
  border-top: 50px #f00 solid !important;
  border-bottom: 50px #f00 solid !important;
}
.red--bx-50 {
  border-right: 50px #f00 solid !important;
  border-left: 50px #f00 solid !important;
}
.red--ba-51 {
  border: 51px #f00 solid !important;
}
.red--bt-51 {
  border-top: 51px #f00 solid !important;
}
.red--br-51 {
  border-right: 51px #f00 solid !important;
}
.red--bl-51 {
  border-left: 51px #f00 solid !important;
}
.red--bb-51 {
  border-bottom: 51px #f00 solid !important;
}
.red--by-51 {
  border-top: 51px #f00 solid !important;
  border-bottom: 51px #f00 solid !important;
}
.red--bx-51 {
  border-right: 51px #f00 solid !important;
  border-left: 51px #f00 solid !important;
}
.red--ba-52 {
  border: 52px #f00 solid !important;
}
.red--bt-52 {
  border-top: 52px #f00 solid !important;
}
.red--br-52 {
  border-right: 52px #f00 solid !important;
}
.red--bl-52 {
  border-left: 52px #f00 solid !important;
}
.red--bb-52 {
  border-bottom: 52px #f00 solid !important;
}
.red--by-52 {
  border-top: 52px #f00 solid !important;
  border-bottom: 52px #f00 solid !important;
}
.red--bx-52 {
  border-right: 52px #f00 solid !important;
  border-left: 52px #f00 solid !important;
}
.red--ba-53 {
  border: 53px #f00 solid !important;
}
.red--bt-53 {
  border-top: 53px #f00 solid !important;
}
.red--br-53 {
  border-right: 53px #f00 solid !important;
}
.red--bl-53 {
  border-left: 53px #f00 solid !important;
}
.red--bb-53 {
  border-bottom: 53px #f00 solid !important;
}
.red--by-53 {
  border-top: 53px #f00 solid !important;
  border-bottom: 53px #f00 solid !important;
}
.red--bx-53 {
  border-right: 53px #f00 solid !important;
  border-left: 53px #f00 solid !important;
}
.red--ba-54 {
  border: 54px #f00 solid !important;
}
.red--bt-54 {
  border-top: 54px #f00 solid !important;
}
.red--br-54 {
  border-right: 54px #f00 solid !important;
}
.red--bl-54 {
  border-left: 54px #f00 solid !important;
}
.red--bb-54 {
  border-bottom: 54px #f00 solid !important;
}
.red--by-54 {
  border-top: 54px #f00 solid !important;
  border-bottom: 54px #f00 solid !important;
}
.red--bx-54 {
  border-right: 54px #f00 solid !important;
  border-left: 54px #f00 solid !important;
}
.red--ba-55 {
  border: 55px #f00 solid !important;
}
.red--bt-55 {
  border-top: 55px #f00 solid !important;
}
.red--br-55 {
  border-right: 55px #f00 solid !important;
}
.red--bl-55 {
  border-left: 55px #f00 solid !important;
}
.red--bb-55 {
  border-bottom: 55px #f00 solid !important;
}
.red--by-55 {
  border-top: 55px #f00 solid !important;
  border-bottom: 55px #f00 solid !important;
}
.red--bx-55 {
  border-right: 55px #f00 solid !important;
  border-left: 55px #f00 solid !important;
}
.red--ba-56 {
  border: 56px #f00 solid !important;
}
.red--bt-56 {
  border-top: 56px #f00 solid !important;
}
.red--br-56 {
  border-right: 56px #f00 solid !important;
}
.red--bl-56 {
  border-left: 56px #f00 solid !important;
}
.red--bb-56 {
  border-bottom: 56px #f00 solid !important;
}
.red--by-56 {
  border-top: 56px #f00 solid !important;
  border-bottom: 56px #f00 solid !important;
}
.red--bx-56 {
  border-right: 56px #f00 solid !important;
  border-left: 56px #f00 solid !important;
}
.red--ba-57 {
  border: 57px #f00 solid !important;
}
.red--bt-57 {
  border-top: 57px #f00 solid !important;
}
.red--br-57 {
  border-right: 57px #f00 solid !important;
}
.red--bl-57 {
  border-left: 57px #f00 solid !important;
}
.red--bb-57 {
  border-bottom: 57px #f00 solid !important;
}
.red--by-57 {
  border-top: 57px #f00 solid !important;
  border-bottom: 57px #f00 solid !important;
}
.red--bx-57 {
  border-right: 57px #f00 solid !important;
  border-left: 57px #f00 solid !important;
}
.red--ba-58 {
  border: 58px #f00 solid !important;
}
.red--bt-58 {
  border-top: 58px #f00 solid !important;
}
.red--br-58 {
  border-right: 58px #f00 solid !important;
}
.red--bl-58 {
  border-left: 58px #f00 solid !important;
}
.red--bb-58 {
  border-bottom: 58px #f00 solid !important;
}
.red--by-58 {
  border-top: 58px #f00 solid !important;
  border-bottom: 58px #f00 solid !important;
}
.red--bx-58 {
  border-right: 58px #f00 solid !important;
  border-left: 58px #f00 solid !important;
}
.red--ba-59 {
  border: 59px #f00 solid !important;
}
.red--bt-59 {
  border-top: 59px #f00 solid !important;
}
.red--br-59 {
  border-right: 59px #f00 solid !important;
}
.red--bl-59 {
  border-left: 59px #f00 solid !important;
}
.red--bb-59 {
  border-bottom: 59px #f00 solid !important;
}
.red--by-59 {
  border-top: 59px #f00 solid !important;
  border-bottom: 59px #f00 solid !important;
}
.red--bx-59 {
  border-right: 59px #f00 solid !important;
  border-left: 59px #f00 solid !important;
}
.red--ba-60 {
  border: 60px #f00 solid !important;
}
.red--bt-60 {
  border-top: 60px #f00 solid !important;
}
.red--br-60 {
  border-right: 60px #f00 solid !important;
}
.red--bl-60 {
  border-left: 60px #f00 solid !important;
}
.red--bb-60 {
  border-bottom: 60px #f00 solid !important;
}
.red--by-60 {
  border-top: 60px #f00 solid !important;
  border-bottom: 60px #f00 solid !important;
}
.red--bx-60 {
  border-right: 60px #f00 solid !important;
  border-left: 60px #f00 solid !important;
}
.red--ba-61 {
  border: 61px #f00 solid !important;
}
.red--bt-61 {
  border-top: 61px #f00 solid !important;
}
.red--br-61 {
  border-right: 61px #f00 solid !important;
}
.red--bl-61 {
  border-left: 61px #f00 solid !important;
}
.red--bb-61 {
  border-bottom: 61px #f00 solid !important;
}
.red--by-61 {
  border-top: 61px #f00 solid !important;
  border-bottom: 61px #f00 solid !important;
}
.red--bx-61 {
  border-right: 61px #f00 solid !important;
  border-left: 61px #f00 solid !important;
}
.red--ba-62 {
  border: 62px #f00 solid !important;
}
.red--bt-62 {
  border-top: 62px #f00 solid !important;
}
.red--br-62 {
  border-right: 62px #f00 solid !important;
}
.red--bl-62 {
  border-left: 62px #f00 solid !important;
}
.red--bb-62 {
  border-bottom: 62px #f00 solid !important;
}
.red--by-62 {
  border-top: 62px #f00 solid !important;
  border-bottom: 62px #f00 solid !important;
}
.red--bx-62 {
  border-right: 62px #f00 solid !important;
  border-left: 62px #f00 solid !important;
}
.red--ba-63 {
  border: 63px #f00 solid !important;
}
.red--bt-63 {
  border-top: 63px #f00 solid !important;
}
.red--br-63 {
  border-right: 63px #f00 solid !important;
}
.red--bl-63 {
  border-left: 63px #f00 solid !important;
}
.red--bb-63 {
  border-bottom: 63px #f00 solid !important;
}
.red--by-63 {
  border-top: 63px #f00 solid !important;
  border-bottom: 63px #f00 solid !important;
}
.red--bx-63 {
  border-right: 63px #f00 solid !important;
  border-left: 63px #f00 solid !important;
}
.red--ba-64 {
  border: 64px #f00 solid !important;
}
.red--bt-64 {
  border-top: 64px #f00 solid !important;
}
.red--br-64 {
  border-right: 64px #f00 solid !important;
}
.red--bl-64 {
  border-left: 64px #f00 solid !important;
}
.red--bb-64 {
  border-bottom: 64px #f00 solid !important;
}
.red--by-64 {
  border-top: 64px #f00 solid !important;
  border-bottom: 64px #f00 solid !important;
}
.red--bx-64 {
  border-right: 64px #f00 solid !important;
  border-left: 64px #f00 solid !important;
}
.red--ba-65 {
  border: 65px #f00 solid !important;
}
.red--bt-65 {
  border-top: 65px #f00 solid !important;
}
.red--br-65 {
  border-right: 65px #f00 solid !important;
}
.red--bl-65 {
  border-left: 65px #f00 solid !important;
}
.red--bb-65 {
  border-bottom: 65px #f00 solid !important;
}
.red--by-65 {
  border-top: 65px #f00 solid !important;
  border-bottom: 65px #f00 solid !important;
}
.red--bx-65 {
  border-right: 65px #f00 solid !important;
  border-left: 65px #f00 solid !important;
}
.red--ba-66 {
  border: 66px #f00 solid !important;
}
.red--bt-66 {
  border-top: 66px #f00 solid !important;
}
.red--br-66 {
  border-right: 66px #f00 solid !important;
}
.red--bl-66 {
  border-left: 66px #f00 solid !important;
}
.red--bb-66 {
  border-bottom: 66px #f00 solid !important;
}
.red--by-66 {
  border-top: 66px #f00 solid !important;
  border-bottom: 66px #f00 solid !important;
}
.red--bx-66 {
  border-right: 66px #f00 solid !important;
  border-left: 66px #f00 solid !important;
}
.red--ba-67 {
  border: 67px #f00 solid !important;
}
.red--bt-67 {
  border-top: 67px #f00 solid !important;
}
.red--br-67 {
  border-right: 67px #f00 solid !important;
}
.red--bl-67 {
  border-left: 67px #f00 solid !important;
}
.red--bb-67 {
  border-bottom: 67px #f00 solid !important;
}
.red--by-67 {
  border-top: 67px #f00 solid !important;
  border-bottom: 67px #f00 solid !important;
}
.red--bx-67 {
  border-right: 67px #f00 solid !important;
  border-left: 67px #f00 solid !important;
}
.red--ba-68 {
  border: 68px #f00 solid !important;
}
.red--bt-68 {
  border-top: 68px #f00 solid !important;
}
.red--br-68 {
  border-right: 68px #f00 solid !important;
}
.red--bl-68 {
  border-left: 68px #f00 solid !important;
}
.red--bb-68 {
  border-bottom: 68px #f00 solid !important;
}
.red--by-68 {
  border-top: 68px #f00 solid !important;
  border-bottom: 68px #f00 solid !important;
}
.red--bx-68 {
  border-right: 68px #f00 solid !important;
  border-left: 68px #f00 solid !important;
}
.red--ba-69 {
  border: 69px #f00 solid !important;
}
.red--bt-69 {
  border-top: 69px #f00 solid !important;
}
.red--br-69 {
  border-right: 69px #f00 solid !important;
}
.red--bl-69 {
  border-left: 69px #f00 solid !important;
}
.red--bb-69 {
  border-bottom: 69px #f00 solid !important;
}
.red--by-69 {
  border-top: 69px #f00 solid !important;
  border-bottom: 69px #f00 solid !important;
}
.red--bx-69 {
  border-right: 69px #f00 solid !important;
  border-left: 69px #f00 solid !important;
}
.red--ba-70 {
  border: 70px #f00 solid !important;
}
.red--bt-70 {
  border-top: 70px #f00 solid !important;
}
.red--br-70 {
  border-right: 70px #f00 solid !important;
}
.red--bl-70 {
  border-left: 70px #f00 solid !important;
}
.red--bb-70 {
  border-bottom: 70px #f00 solid !important;
}
.red--by-70 {
  border-top: 70px #f00 solid !important;
  border-bottom: 70px #f00 solid !important;
}
.red--bx-70 {
  border-right: 70px #f00 solid !important;
  border-left: 70px #f00 solid !important;
}
.red--ba-71 {
  border: 71px #f00 solid !important;
}
.red--bt-71 {
  border-top: 71px #f00 solid !important;
}
.red--br-71 {
  border-right: 71px #f00 solid !important;
}
.red--bl-71 {
  border-left: 71px #f00 solid !important;
}
.red--bb-71 {
  border-bottom: 71px #f00 solid !important;
}
.red--by-71 {
  border-top: 71px #f00 solid !important;
  border-bottom: 71px #f00 solid !important;
}
.red--bx-71 {
  border-right: 71px #f00 solid !important;
  border-left: 71px #f00 solid !important;
}
.red--ba-72 {
  border: 72px #f00 solid !important;
}
.red--bt-72 {
  border-top: 72px #f00 solid !important;
}
.red--br-72 {
  border-right: 72px #f00 solid !important;
}
.red--bl-72 {
  border-left: 72px #f00 solid !important;
}
.red--bb-72 {
  border-bottom: 72px #f00 solid !important;
}
.red--by-72 {
  border-top: 72px #f00 solid !important;
  border-bottom: 72px #f00 solid !important;
}
.red--bx-72 {
  border-right: 72px #f00 solid !important;
  border-left: 72px #f00 solid !important;
}
.red--ba-73 {
  border: 73px #f00 solid !important;
}
.red--bt-73 {
  border-top: 73px #f00 solid !important;
}
.red--br-73 {
  border-right: 73px #f00 solid !important;
}
.red--bl-73 {
  border-left: 73px #f00 solid !important;
}
.red--bb-73 {
  border-bottom: 73px #f00 solid !important;
}
.red--by-73 {
  border-top: 73px #f00 solid !important;
  border-bottom: 73px #f00 solid !important;
}
.red--bx-73 {
  border-right: 73px #f00 solid !important;
  border-left: 73px #f00 solid !important;
}
.red--ba-74 {
  border: 74px #f00 solid !important;
}
.red--bt-74 {
  border-top: 74px #f00 solid !important;
}
.red--br-74 {
  border-right: 74px #f00 solid !important;
}
.red--bl-74 {
  border-left: 74px #f00 solid !important;
}
.red--bb-74 {
  border-bottom: 74px #f00 solid !important;
}
.red--by-74 {
  border-top: 74px #f00 solid !important;
  border-bottom: 74px #f00 solid !important;
}
.red--bx-74 {
  border-right: 74px #f00 solid !important;
  border-left: 74px #f00 solid !important;
}
.red--ba-75 {
  border: 75px #f00 solid !important;
}
.red--bt-75 {
  border-top: 75px #f00 solid !important;
}
.red--br-75 {
  border-right: 75px #f00 solid !important;
}
.red--bl-75 {
  border-left: 75px #f00 solid !important;
}
.red--bb-75 {
  border-bottom: 75px #f00 solid !important;
}
.red--by-75 {
  border-top: 75px #f00 solid !important;
  border-bottom: 75px #f00 solid !important;
}
.red--bx-75 {
  border-right: 75px #f00 solid !important;
  border-left: 75px #f00 solid !important;
}
.red--ba-76 {
  border: 76px #f00 solid !important;
}
.red--bt-76 {
  border-top: 76px #f00 solid !important;
}
.red--br-76 {
  border-right: 76px #f00 solid !important;
}
.red--bl-76 {
  border-left: 76px #f00 solid !important;
}
.red--bb-76 {
  border-bottom: 76px #f00 solid !important;
}
.red--by-76 {
  border-top: 76px #f00 solid !important;
  border-bottom: 76px #f00 solid !important;
}
.red--bx-76 {
  border-right: 76px #f00 solid !important;
  border-left: 76px #f00 solid !important;
}
.red--ba-77 {
  border: 77px #f00 solid !important;
}
.red--bt-77 {
  border-top: 77px #f00 solid !important;
}
.red--br-77 {
  border-right: 77px #f00 solid !important;
}
.red--bl-77 {
  border-left: 77px #f00 solid !important;
}
.red--bb-77 {
  border-bottom: 77px #f00 solid !important;
}
.red--by-77 {
  border-top: 77px #f00 solid !important;
  border-bottom: 77px #f00 solid !important;
}
.red--bx-77 {
  border-right: 77px #f00 solid !important;
  border-left: 77px #f00 solid !important;
}
.red--ba-78 {
  border: 78px #f00 solid !important;
}
.red--bt-78 {
  border-top: 78px #f00 solid !important;
}
.red--br-78 {
  border-right: 78px #f00 solid !important;
}
.red--bl-78 {
  border-left: 78px #f00 solid !important;
}
.red--bb-78 {
  border-bottom: 78px #f00 solid !important;
}
.red--by-78 {
  border-top: 78px #f00 solid !important;
  border-bottom: 78px #f00 solid !important;
}
.red--bx-78 {
  border-right: 78px #f00 solid !important;
  border-left: 78px #f00 solid !important;
}
.red--ba-79 {
  border: 79px #f00 solid !important;
}
.red--bt-79 {
  border-top: 79px #f00 solid !important;
}
.red--br-79 {
  border-right: 79px #f00 solid !important;
}
.red--bl-79 {
  border-left: 79px #f00 solid !important;
}
.red--bb-79 {
  border-bottom: 79px #f00 solid !important;
}
.red--by-79 {
  border-top: 79px #f00 solid !important;
  border-bottom: 79px #f00 solid !important;
}
.red--bx-79 {
  border-right: 79px #f00 solid !important;
  border-left: 79px #f00 solid !important;
}
.red--ba-80 {
  border: 80px #f00 solid !important;
}
.red--bt-80 {
  border-top: 80px #f00 solid !important;
}
.red--br-80 {
  border-right: 80px #f00 solid !important;
}
.red--bl-80 {
  border-left: 80px #f00 solid !important;
}
.red--bb-80 {
  border-bottom: 80px #f00 solid !important;
}
.red--by-80 {
  border-top: 80px #f00 solid !important;
  border-bottom: 80px #f00 solid !important;
}
.red--bx-80 {
  border-right: 80px #f00 solid !important;
  border-left: 80px #f00 solid !important;
}
.red--ba-81 {
  border: 81px #f00 solid !important;
}
.red--bt-81 {
  border-top: 81px #f00 solid !important;
}
.red--br-81 {
  border-right: 81px #f00 solid !important;
}
.red--bl-81 {
  border-left: 81px #f00 solid !important;
}
.red--bb-81 {
  border-bottom: 81px #f00 solid !important;
}
.red--by-81 {
  border-top: 81px #f00 solid !important;
  border-bottom: 81px #f00 solid !important;
}
.red--bx-81 {
  border-right: 81px #f00 solid !important;
  border-left: 81px #f00 solid !important;
}
.red--ba-82 {
  border: 82px #f00 solid !important;
}
.red--bt-82 {
  border-top: 82px #f00 solid !important;
}
.red--br-82 {
  border-right: 82px #f00 solid !important;
}
.red--bl-82 {
  border-left: 82px #f00 solid !important;
}
.red--bb-82 {
  border-bottom: 82px #f00 solid !important;
}
.red--by-82 {
  border-top: 82px #f00 solid !important;
  border-bottom: 82px #f00 solid !important;
}
.red--bx-82 {
  border-right: 82px #f00 solid !important;
  border-left: 82px #f00 solid !important;
}
.red--ba-83 {
  border: 83px #f00 solid !important;
}
.red--bt-83 {
  border-top: 83px #f00 solid !important;
}
.red--br-83 {
  border-right: 83px #f00 solid !important;
}
.red--bl-83 {
  border-left: 83px #f00 solid !important;
}
.red--bb-83 {
  border-bottom: 83px #f00 solid !important;
}
.red--by-83 {
  border-top: 83px #f00 solid !important;
  border-bottom: 83px #f00 solid !important;
}
.red--bx-83 {
  border-right: 83px #f00 solid !important;
  border-left: 83px #f00 solid !important;
}
.red--ba-84 {
  border: 84px #f00 solid !important;
}
.red--bt-84 {
  border-top: 84px #f00 solid !important;
}
.red--br-84 {
  border-right: 84px #f00 solid !important;
}
.red--bl-84 {
  border-left: 84px #f00 solid !important;
}
.red--bb-84 {
  border-bottom: 84px #f00 solid !important;
}
.red--by-84 {
  border-top: 84px #f00 solid !important;
  border-bottom: 84px #f00 solid !important;
}
.red--bx-84 {
  border-right: 84px #f00 solid !important;
  border-left: 84px #f00 solid !important;
}
.red--ba-85 {
  border: 85px #f00 solid !important;
}
.red--bt-85 {
  border-top: 85px #f00 solid !important;
}
.red--br-85 {
  border-right: 85px #f00 solid !important;
}
.red--bl-85 {
  border-left: 85px #f00 solid !important;
}
.red--bb-85 {
  border-bottom: 85px #f00 solid !important;
}
.red--by-85 {
  border-top: 85px #f00 solid !important;
  border-bottom: 85px #f00 solid !important;
}
.red--bx-85 {
  border-right: 85px #f00 solid !important;
  border-left: 85px #f00 solid !important;
}
.red--ba-86 {
  border: 86px #f00 solid !important;
}
.red--bt-86 {
  border-top: 86px #f00 solid !important;
}
.red--br-86 {
  border-right: 86px #f00 solid !important;
}
.red--bl-86 {
  border-left: 86px #f00 solid !important;
}
.red--bb-86 {
  border-bottom: 86px #f00 solid !important;
}
.red--by-86 {
  border-top: 86px #f00 solid !important;
  border-bottom: 86px #f00 solid !important;
}
.red--bx-86 {
  border-right: 86px #f00 solid !important;
  border-left: 86px #f00 solid !important;
}
.red--ba-87 {
  border: 87px #f00 solid !important;
}
.red--bt-87 {
  border-top: 87px #f00 solid !important;
}
.red--br-87 {
  border-right: 87px #f00 solid !important;
}
.red--bl-87 {
  border-left: 87px #f00 solid !important;
}
.red--bb-87 {
  border-bottom: 87px #f00 solid !important;
}
.red--by-87 {
  border-top: 87px #f00 solid !important;
  border-bottom: 87px #f00 solid !important;
}
.red--bx-87 {
  border-right: 87px #f00 solid !important;
  border-left: 87px #f00 solid !important;
}
.red--ba-88 {
  border: 88px #f00 solid !important;
}
.red--bt-88 {
  border-top: 88px #f00 solid !important;
}
.red--br-88 {
  border-right: 88px #f00 solid !important;
}
.red--bl-88 {
  border-left: 88px #f00 solid !important;
}
.red--bb-88 {
  border-bottom: 88px #f00 solid !important;
}
.red--by-88 {
  border-top: 88px #f00 solid !important;
  border-bottom: 88px #f00 solid !important;
}
.red--bx-88 {
  border-right: 88px #f00 solid !important;
  border-left: 88px #f00 solid !important;
}
.red--ba-89 {
  border: 89px #f00 solid !important;
}
.red--bt-89 {
  border-top: 89px #f00 solid !important;
}
.red--br-89 {
  border-right: 89px #f00 solid !important;
}
.red--bl-89 {
  border-left: 89px #f00 solid !important;
}
.red--bb-89 {
  border-bottom: 89px #f00 solid !important;
}
.red--by-89 {
  border-top: 89px #f00 solid !important;
  border-bottom: 89px #f00 solid !important;
}
.red--bx-89 {
  border-right: 89px #f00 solid !important;
  border-left: 89px #f00 solid !important;
}
.red--ba-90 {
  border: 90px #f00 solid !important;
}
.red--bt-90 {
  border-top: 90px #f00 solid !important;
}
.red--br-90 {
  border-right: 90px #f00 solid !important;
}
.red--bl-90 {
  border-left: 90px #f00 solid !important;
}
.red--bb-90 {
  border-bottom: 90px #f00 solid !important;
}
.red--by-90 {
  border-top: 90px #f00 solid !important;
  border-bottom: 90px #f00 solid !important;
}
.red--bx-90 {
  border-right: 90px #f00 solid !important;
  border-left: 90px #f00 solid !important;
}
.red--ba-91 {
  border: 91px #f00 solid !important;
}
.red--bt-91 {
  border-top: 91px #f00 solid !important;
}
.red--br-91 {
  border-right: 91px #f00 solid !important;
}
.red--bl-91 {
  border-left: 91px #f00 solid !important;
}
.red--bb-91 {
  border-bottom: 91px #f00 solid !important;
}
.red--by-91 {
  border-top: 91px #f00 solid !important;
  border-bottom: 91px #f00 solid !important;
}
.red--bx-91 {
  border-right: 91px #f00 solid !important;
  border-left: 91px #f00 solid !important;
}
.red--ba-92 {
  border: 92px #f00 solid !important;
}
.red--bt-92 {
  border-top: 92px #f00 solid !important;
}
.red--br-92 {
  border-right: 92px #f00 solid !important;
}
.red--bl-92 {
  border-left: 92px #f00 solid !important;
}
.red--bb-92 {
  border-bottom: 92px #f00 solid !important;
}
.red--by-92 {
  border-top: 92px #f00 solid !important;
  border-bottom: 92px #f00 solid !important;
}
.red--bx-92 {
  border-right: 92px #f00 solid !important;
  border-left: 92px #f00 solid !important;
}
.red--ba-93 {
  border: 93px #f00 solid !important;
}
.red--bt-93 {
  border-top: 93px #f00 solid !important;
}
.red--br-93 {
  border-right: 93px #f00 solid !important;
}
.red--bl-93 {
  border-left: 93px #f00 solid !important;
}
.red--bb-93 {
  border-bottom: 93px #f00 solid !important;
}
.red--by-93 {
  border-top: 93px #f00 solid !important;
  border-bottom: 93px #f00 solid !important;
}
.red--bx-93 {
  border-right: 93px #f00 solid !important;
  border-left: 93px #f00 solid !important;
}
.red--ba-94 {
  border: 94px #f00 solid !important;
}
.red--bt-94 {
  border-top: 94px #f00 solid !important;
}
.red--br-94 {
  border-right: 94px #f00 solid !important;
}
.red--bl-94 {
  border-left: 94px #f00 solid !important;
}
.red--bb-94 {
  border-bottom: 94px #f00 solid !important;
}
.red--by-94 {
  border-top: 94px #f00 solid !important;
  border-bottom: 94px #f00 solid !important;
}
.red--bx-94 {
  border-right: 94px #f00 solid !important;
  border-left: 94px #f00 solid !important;
}
.red--ba-95 {
  border: 95px #f00 solid !important;
}
.red--bt-95 {
  border-top: 95px #f00 solid !important;
}
.red--br-95 {
  border-right: 95px #f00 solid !important;
}
.red--bl-95 {
  border-left: 95px #f00 solid !important;
}
.red--bb-95 {
  border-bottom: 95px #f00 solid !important;
}
.red--by-95 {
  border-top: 95px #f00 solid !important;
  border-bottom: 95px #f00 solid !important;
}
.red--bx-95 {
  border-right: 95px #f00 solid !important;
  border-left: 95px #f00 solid !important;
}
.red--ba-96 {
  border: 96px #f00 solid !important;
}
.red--bt-96 {
  border-top: 96px #f00 solid !important;
}
.red--br-96 {
  border-right: 96px #f00 solid !important;
}
.red--bl-96 {
  border-left: 96px #f00 solid !important;
}
.red--bb-96 {
  border-bottom: 96px #f00 solid !important;
}
.red--by-96 {
  border-top: 96px #f00 solid !important;
  border-bottom: 96px #f00 solid !important;
}
.red--bx-96 {
  border-right: 96px #f00 solid !important;
  border-left: 96px #f00 solid !important;
}
.red--ba-97 {
  border: 97px #f00 solid !important;
}
.red--bt-97 {
  border-top: 97px #f00 solid !important;
}
.red--br-97 {
  border-right: 97px #f00 solid !important;
}
.red--bl-97 {
  border-left: 97px #f00 solid !important;
}
.red--bb-97 {
  border-bottom: 97px #f00 solid !important;
}
.red--by-97 {
  border-top: 97px #f00 solid !important;
  border-bottom: 97px #f00 solid !important;
}
.red--bx-97 {
  border-right: 97px #f00 solid !important;
  border-left: 97px #f00 solid !important;
}
.red--ba-98 {
  border: 98px #f00 solid !important;
}
.red--bt-98 {
  border-top: 98px #f00 solid !important;
}
.red--br-98 {
  border-right: 98px #f00 solid !important;
}
.red--bl-98 {
  border-left: 98px #f00 solid !important;
}
.red--bb-98 {
  border-bottom: 98px #f00 solid !important;
}
.red--by-98 {
  border-top: 98px #f00 solid !important;
  border-bottom: 98px #f00 solid !important;
}
.red--bx-98 {
  border-right: 98px #f00 solid !important;
  border-left: 98px #f00 solid !important;
}
.red--ba-99 {
  border: 99px #f00 solid !important;
}
.red--bt-99 {
  border-top: 99px #f00 solid !important;
}
.red--br-99 {
  border-right: 99px #f00 solid !important;
}
.red--bl-99 {
  border-left: 99px #f00 solid !important;
}
.red--bb-99 {
  border-bottom: 99px #f00 solid !important;
}
.red--by-99 {
  border-top: 99px #f00 solid !important;
  border-bottom: 99px #f00 solid !important;
}
.red--bx-99 {
  border-right: 99px #f00 solid !important;
  border-left: 99px #f00 solid !important;
}
.red--ba-100 {
  border: 100px #f00 solid !important;
}
.red--bt-100 {
  border-top: 100px #f00 solid !important;
}
.red--br-100 {
  border-right: 100px #f00 solid !important;
}
.red--bl-100 {
  border-left: 100px #f00 solid !important;
}
.red--bb-100 {
  border-bottom: 100px #f00 solid !important;
}
.red--by-100 {
  border-top: 100px #f00 solid !important;
  border-bottom: 100px #f00 solid !important;
}
.red--bx-100 {
  border-right: 100px #f00 solid !important;
  border-left: 100px #f00 solid !important;
}
.wild-sand--ba-1 {
  border: 1px #f6f6f6 solid !important;
}
.wild-sand--bt-1 {
  border-top: 1px #f6f6f6 solid !important;
}
.wild-sand--br-1 {
  border-right: 1px #f6f6f6 solid !important;
}
.wild-sand--bl-1 {
  border-left: 1px #f6f6f6 solid !important;
}
.wild-sand--bb-1 {
  border-bottom: 1px #f6f6f6 solid !important;
}
.wild-sand--by-1 {
  border-top: 1px #f6f6f6 solid !important;
  border-bottom: 1px #f6f6f6 solid !important;
}
.wild-sand--bx-1 {
  border-right: 1px #f6f6f6 solid !important;
  border-left: 1px #f6f6f6 solid !important;
}
.wild-sand--ba-2 {
  border: 2px #f6f6f6 solid !important;
}
.wild-sand--bt-2 {
  border-top: 2px #f6f6f6 solid !important;
}
.wild-sand--br-2 {
  border-right: 2px #f6f6f6 solid !important;
}
.wild-sand--bl-2 {
  border-left: 2px #f6f6f6 solid !important;
}
.wild-sand--bb-2 {
  border-bottom: 2px #f6f6f6 solid !important;
}
.wild-sand--by-2 {
  border-top: 2px #f6f6f6 solid !important;
  border-bottom: 2px #f6f6f6 solid !important;
}
.wild-sand--bx-2 {
  border-right: 2px #f6f6f6 solid !important;
  border-left: 2px #f6f6f6 solid !important;
}
.wild-sand--ba-3 {
  border: 3px #f6f6f6 solid !important;
}
.wild-sand--bt-3 {
  border-top: 3px #f6f6f6 solid !important;
}
.wild-sand--br-3 {
  border-right: 3px #f6f6f6 solid !important;
}
.wild-sand--bl-3 {
  border-left: 3px #f6f6f6 solid !important;
}
.wild-sand--bb-3 {
  border-bottom: 3px #f6f6f6 solid !important;
}
.wild-sand--by-3 {
  border-top: 3px #f6f6f6 solid !important;
  border-bottom: 3px #f6f6f6 solid !important;
}
.wild-sand--bx-3 {
  border-right: 3px #f6f6f6 solid !important;
  border-left: 3px #f6f6f6 solid !important;
}
.wild-sand--ba-4 {
  border: 4px #f6f6f6 solid !important;
}
.wild-sand--bt-4 {
  border-top: 4px #f6f6f6 solid !important;
}
.wild-sand--br-4 {
  border-right: 4px #f6f6f6 solid !important;
}
.wild-sand--bl-4 {
  border-left: 4px #f6f6f6 solid !important;
}
.wild-sand--bb-4 {
  border-bottom: 4px #f6f6f6 solid !important;
}
.wild-sand--by-4 {
  border-top: 4px #f6f6f6 solid !important;
  border-bottom: 4px #f6f6f6 solid !important;
}
.wild-sand--bx-4 {
  border-right: 4px #f6f6f6 solid !important;
  border-left: 4px #f6f6f6 solid !important;
}
.wild-sand--ba-5 {
  border: 5px #f6f6f6 solid !important;
}
.wild-sand--bt-5 {
  border-top: 5px #f6f6f6 solid !important;
}
.wild-sand--br-5 {
  border-right: 5px #f6f6f6 solid !important;
}
.wild-sand--bl-5 {
  border-left: 5px #f6f6f6 solid !important;
}
.wild-sand--bb-5 {
  border-bottom: 5px #f6f6f6 solid !important;
}
.wild-sand--by-5 {
  border-top: 5px #f6f6f6 solid !important;
  border-bottom: 5px #f6f6f6 solid !important;
}
.wild-sand--bx-5 {
  border-right: 5px #f6f6f6 solid !important;
  border-left: 5px #f6f6f6 solid !important;
}
.wild-sand--ba-6 {
  border: 6px #f6f6f6 solid !important;
}
.wild-sand--bt-6 {
  border-top: 6px #f6f6f6 solid !important;
}
.wild-sand--br-6 {
  border-right: 6px #f6f6f6 solid !important;
}
.wild-sand--bl-6 {
  border-left: 6px #f6f6f6 solid !important;
}
.wild-sand--bb-6 {
  border-bottom: 6px #f6f6f6 solid !important;
}
.wild-sand--by-6 {
  border-top: 6px #f6f6f6 solid !important;
  border-bottom: 6px #f6f6f6 solid !important;
}
.wild-sand--bx-6 {
  border-right: 6px #f6f6f6 solid !important;
  border-left: 6px #f6f6f6 solid !important;
}
.wild-sand--ba-7 {
  border: 7px #f6f6f6 solid !important;
}
.wild-sand--bt-7 {
  border-top: 7px #f6f6f6 solid !important;
}
.wild-sand--br-7 {
  border-right: 7px #f6f6f6 solid !important;
}
.wild-sand--bl-7 {
  border-left: 7px #f6f6f6 solid !important;
}
.wild-sand--bb-7 {
  border-bottom: 7px #f6f6f6 solid !important;
}
.wild-sand--by-7 {
  border-top: 7px #f6f6f6 solid !important;
  border-bottom: 7px #f6f6f6 solid !important;
}
.wild-sand--bx-7 {
  border-right: 7px #f6f6f6 solid !important;
  border-left: 7px #f6f6f6 solid !important;
}
.wild-sand--ba-8 {
  border: 8px #f6f6f6 solid !important;
}
.wild-sand--bt-8 {
  border-top: 8px #f6f6f6 solid !important;
}
.wild-sand--br-8 {
  border-right: 8px #f6f6f6 solid !important;
}
.wild-sand--bl-8 {
  border-left: 8px #f6f6f6 solid !important;
}
.wild-sand--bb-8 {
  border-bottom: 8px #f6f6f6 solid !important;
}
.wild-sand--by-8 {
  border-top: 8px #f6f6f6 solid !important;
  border-bottom: 8px #f6f6f6 solid !important;
}
.wild-sand--bx-8 {
  border-right: 8px #f6f6f6 solid !important;
  border-left: 8px #f6f6f6 solid !important;
}
.wild-sand--ba-9 {
  border: 9px #f6f6f6 solid !important;
}
.wild-sand--bt-9 {
  border-top: 9px #f6f6f6 solid !important;
}
.wild-sand--br-9 {
  border-right: 9px #f6f6f6 solid !important;
}
.wild-sand--bl-9 {
  border-left: 9px #f6f6f6 solid !important;
}
.wild-sand--bb-9 {
  border-bottom: 9px #f6f6f6 solid !important;
}
.wild-sand--by-9 {
  border-top: 9px #f6f6f6 solid !important;
  border-bottom: 9px #f6f6f6 solid !important;
}
.wild-sand--bx-9 {
  border-right: 9px #f6f6f6 solid !important;
  border-left: 9px #f6f6f6 solid !important;
}
.wild-sand--ba-10 {
  border: 10px #f6f6f6 solid !important;
}
.wild-sand--bt-10 {
  border-top: 10px #f6f6f6 solid !important;
}
.wild-sand--br-10 {
  border-right: 10px #f6f6f6 solid !important;
}
.wild-sand--bl-10 {
  border-left: 10px #f6f6f6 solid !important;
}
.wild-sand--bb-10 {
  border-bottom: 10px #f6f6f6 solid !important;
}
.wild-sand--by-10 {
  border-top: 10px #f6f6f6 solid !important;
  border-bottom: 10px #f6f6f6 solid !important;
}
.wild-sand--bx-10 {
  border-right: 10px #f6f6f6 solid !important;
  border-left: 10px #f6f6f6 solid !important;
}
.wild-sand--ba-11 {
  border: 11px #f6f6f6 solid !important;
}
.wild-sand--bt-11 {
  border-top: 11px #f6f6f6 solid !important;
}
.wild-sand--br-11 {
  border-right: 11px #f6f6f6 solid !important;
}
.wild-sand--bl-11 {
  border-left: 11px #f6f6f6 solid !important;
}
.wild-sand--bb-11 {
  border-bottom: 11px #f6f6f6 solid !important;
}
.wild-sand--by-11 {
  border-top: 11px #f6f6f6 solid !important;
  border-bottom: 11px #f6f6f6 solid !important;
}
.wild-sand--bx-11 {
  border-right: 11px #f6f6f6 solid !important;
  border-left: 11px #f6f6f6 solid !important;
}
.wild-sand--ba-12 {
  border: 12px #f6f6f6 solid !important;
}
.wild-sand--bt-12 {
  border-top: 12px #f6f6f6 solid !important;
}
.wild-sand--br-12 {
  border-right: 12px #f6f6f6 solid !important;
}
.wild-sand--bl-12 {
  border-left: 12px #f6f6f6 solid !important;
}
.wild-sand--bb-12 {
  border-bottom: 12px #f6f6f6 solid !important;
}
.wild-sand--by-12 {
  border-top: 12px #f6f6f6 solid !important;
  border-bottom: 12px #f6f6f6 solid !important;
}
.wild-sand--bx-12 {
  border-right: 12px #f6f6f6 solid !important;
  border-left: 12px #f6f6f6 solid !important;
}
.wild-sand--ba-13 {
  border: 13px #f6f6f6 solid !important;
}
.wild-sand--bt-13 {
  border-top: 13px #f6f6f6 solid !important;
}
.wild-sand--br-13 {
  border-right: 13px #f6f6f6 solid !important;
}
.wild-sand--bl-13 {
  border-left: 13px #f6f6f6 solid !important;
}
.wild-sand--bb-13 {
  border-bottom: 13px #f6f6f6 solid !important;
}
.wild-sand--by-13 {
  border-top: 13px #f6f6f6 solid !important;
  border-bottom: 13px #f6f6f6 solid !important;
}
.wild-sand--bx-13 {
  border-right: 13px #f6f6f6 solid !important;
  border-left: 13px #f6f6f6 solid !important;
}
.wild-sand--ba-14 {
  border: 14px #f6f6f6 solid !important;
}
.wild-sand--bt-14 {
  border-top: 14px #f6f6f6 solid !important;
}
.wild-sand--br-14 {
  border-right: 14px #f6f6f6 solid !important;
}
.wild-sand--bl-14 {
  border-left: 14px #f6f6f6 solid !important;
}
.wild-sand--bb-14 {
  border-bottom: 14px #f6f6f6 solid !important;
}
.wild-sand--by-14 {
  border-top: 14px #f6f6f6 solid !important;
  border-bottom: 14px #f6f6f6 solid !important;
}
.wild-sand--bx-14 {
  border-right: 14px #f6f6f6 solid !important;
  border-left: 14px #f6f6f6 solid !important;
}
.wild-sand--ba-15 {
  border: 15px #f6f6f6 solid !important;
}
.wild-sand--bt-15 {
  border-top: 15px #f6f6f6 solid !important;
}
.wild-sand--br-15 {
  border-right: 15px #f6f6f6 solid !important;
}
.wild-sand--bl-15 {
  border-left: 15px #f6f6f6 solid !important;
}
.wild-sand--bb-15 {
  border-bottom: 15px #f6f6f6 solid !important;
}
.wild-sand--by-15 {
  border-top: 15px #f6f6f6 solid !important;
  border-bottom: 15px #f6f6f6 solid !important;
}
.wild-sand--bx-15 {
  border-right: 15px #f6f6f6 solid !important;
  border-left: 15px #f6f6f6 solid !important;
}
.wild-sand--ba-16 {
  border: 16px #f6f6f6 solid !important;
}
.wild-sand--bt-16 {
  border-top: 16px #f6f6f6 solid !important;
}
.wild-sand--br-16 {
  border-right: 16px #f6f6f6 solid !important;
}
.wild-sand--bl-16 {
  border-left: 16px #f6f6f6 solid !important;
}
.wild-sand--bb-16 {
  border-bottom: 16px #f6f6f6 solid !important;
}
.wild-sand--by-16 {
  border-top: 16px #f6f6f6 solid !important;
  border-bottom: 16px #f6f6f6 solid !important;
}
.wild-sand--bx-16 {
  border-right: 16px #f6f6f6 solid !important;
  border-left: 16px #f6f6f6 solid !important;
}
.wild-sand--ba-17 {
  border: 17px #f6f6f6 solid !important;
}
.wild-sand--bt-17 {
  border-top: 17px #f6f6f6 solid !important;
}
.wild-sand--br-17 {
  border-right: 17px #f6f6f6 solid !important;
}
.wild-sand--bl-17 {
  border-left: 17px #f6f6f6 solid !important;
}
.wild-sand--bb-17 {
  border-bottom: 17px #f6f6f6 solid !important;
}
.wild-sand--by-17 {
  border-top: 17px #f6f6f6 solid !important;
  border-bottom: 17px #f6f6f6 solid !important;
}
.wild-sand--bx-17 {
  border-right: 17px #f6f6f6 solid !important;
  border-left: 17px #f6f6f6 solid !important;
}
.wild-sand--ba-18 {
  border: 18px #f6f6f6 solid !important;
}
.wild-sand--bt-18 {
  border-top: 18px #f6f6f6 solid !important;
}
.wild-sand--br-18 {
  border-right: 18px #f6f6f6 solid !important;
}
.wild-sand--bl-18 {
  border-left: 18px #f6f6f6 solid !important;
}
.wild-sand--bb-18 {
  border-bottom: 18px #f6f6f6 solid !important;
}
.wild-sand--by-18 {
  border-top: 18px #f6f6f6 solid !important;
  border-bottom: 18px #f6f6f6 solid !important;
}
.wild-sand--bx-18 {
  border-right: 18px #f6f6f6 solid !important;
  border-left: 18px #f6f6f6 solid !important;
}
.wild-sand--ba-19 {
  border: 19px #f6f6f6 solid !important;
}
.wild-sand--bt-19 {
  border-top: 19px #f6f6f6 solid !important;
}
.wild-sand--br-19 {
  border-right: 19px #f6f6f6 solid !important;
}
.wild-sand--bl-19 {
  border-left: 19px #f6f6f6 solid !important;
}
.wild-sand--bb-19 {
  border-bottom: 19px #f6f6f6 solid !important;
}
.wild-sand--by-19 {
  border-top: 19px #f6f6f6 solid !important;
  border-bottom: 19px #f6f6f6 solid !important;
}
.wild-sand--bx-19 {
  border-right: 19px #f6f6f6 solid !important;
  border-left: 19px #f6f6f6 solid !important;
}
.wild-sand--ba-20 {
  border: 20px #f6f6f6 solid !important;
}
.wild-sand--bt-20 {
  border-top: 20px #f6f6f6 solid !important;
}
.wild-sand--br-20 {
  border-right: 20px #f6f6f6 solid !important;
}
.wild-sand--bl-20 {
  border-left: 20px #f6f6f6 solid !important;
}
.wild-sand--bb-20 {
  border-bottom: 20px #f6f6f6 solid !important;
}
.wild-sand--by-20 {
  border-top: 20px #f6f6f6 solid !important;
  border-bottom: 20px #f6f6f6 solid !important;
}
.wild-sand--bx-20 {
  border-right: 20px #f6f6f6 solid !important;
  border-left: 20px #f6f6f6 solid !important;
}
.wild-sand--ba-21 {
  border: 21px #f6f6f6 solid !important;
}
.wild-sand--bt-21 {
  border-top: 21px #f6f6f6 solid !important;
}
.wild-sand--br-21 {
  border-right: 21px #f6f6f6 solid !important;
}
.wild-sand--bl-21 {
  border-left: 21px #f6f6f6 solid !important;
}
.wild-sand--bb-21 {
  border-bottom: 21px #f6f6f6 solid !important;
}
.wild-sand--by-21 {
  border-top: 21px #f6f6f6 solid !important;
  border-bottom: 21px #f6f6f6 solid !important;
}
.wild-sand--bx-21 {
  border-right: 21px #f6f6f6 solid !important;
  border-left: 21px #f6f6f6 solid !important;
}
.wild-sand--ba-22 {
  border: 22px #f6f6f6 solid !important;
}
.wild-sand--bt-22 {
  border-top: 22px #f6f6f6 solid !important;
}
.wild-sand--br-22 {
  border-right: 22px #f6f6f6 solid !important;
}
.wild-sand--bl-22 {
  border-left: 22px #f6f6f6 solid !important;
}
.wild-sand--bb-22 {
  border-bottom: 22px #f6f6f6 solid !important;
}
.wild-sand--by-22 {
  border-top: 22px #f6f6f6 solid !important;
  border-bottom: 22px #f6f6f6 solid !important;
}
.wild-sand--bx-22 {
  border-right: 22px #f6f6f6 solid !important;
  border-left: 22px #f6f6f6 solid !important;
}
.wild-sand--ba-23 {
  border: 23px #f6f6f6 solid !important;
}
.wild-sand--bt-23 {
  border-top: 23px #f6f6f6 solid !important;
}
.wild-sand--br-23 {
  border-right: 23px #f6f6f6 solid !important;
}
.wild-sand--bl-23 {
  border-left: 23px #f6f6f6 solid !important;
}
.wild-sand--bb-23 {
  border-bottom: 23px #f6f6f6 solid !important;
}
.wild-sand--by-23 {
  border-top: 23px #f6f6f6 solid !important;
  border-bottom: 23px #f6f6f6 solid !important;
}
.wild-sand--bx-23 {
  border-right: 23px #f6f6f6 solid !important;
  border-left: 23px #f6f6f6 solid !important;
}
.wild-sand--ba-24 {
  border: 24px #f6f6f6 solid !important;
}
.wild-sand--bt-24 {
  border-top: 24px #f6f6f6 solid !important;
}
.wild-sand--br-24 {
  border-right: 24px #f6f6f6 solid !important;
}
.wild-sand--bl-24 {
  border-left: 24px #f6f6f6 solid !important;
}
.wild-sand--bb-24 {
  border-bottom: 24px #f6f6f6 solid !important;
}
.wild-sand--by-24 {
  border-top: 24px #f6f6f6 solid !important;
  border-bottom: 24px #f6f6f6 solid !important;
}
.wild-sand--bx-24 {
  border-right: 24px #f6f6f6 solid !important;
  border-left: 24px #f6f6f6 solid !important;
}
.wild-sand--ba-25 {
  border: 25px #f6f6f6 solid !important;
}
.wild-sand--bt-25 {
  border-top: 25px #f6f6f6 solid !important;
}
.wild-sand--br-25 {
  border-right: 25px #f6f6f6 solid !important;
}
.wild-sand--bl-25 {
  border-left: 25px #f6f6f6 solid !important;
}
.wild-sand--bb-25 {
  border-bottom: 25px #f6f6f6 solid !important;
}
.wild-sand--by-25 {
  border-top: 25px #f6f6f6 solid !important;
  border-bottom: 25px #f6f6f6 solid !important;
}
.wild-sand--bx-25 {
  border-right: 25px #f6f6f6 solid !important;
  border-left: 25px #f6f6f6 solid !important;
}
.wild-sand--ba-26 {
  border: 26px #f6f6f6 solid !important;
}
.wild-sand--bt-26 {
  border-top: 26px #f6f6f6 solid !important;
}
.wild-sand--br-26 {
  border-right: 26px #f6f6f6 solid !important;
}
.wild-sand--bl-26 {
  border-left: 26px #f6f6f6 solid !important;
}
.wild-sand--bb-26 {
  border-bottom: 26px #f6f6f6 solid !important;
}
.wild-sand--by-26 {
  border-top: 26px #f6f6f6 solid !important;
  border-bottom: 26px #f6f6f6 solid !important;
}
.wild-sand--bx-26 {
  border-right: 26px #f6f6f6 solid !important;
  border-left: 26px #f6f6f6 solid !important;
}
.wild-sand--ba-27 {
  border: 27px #f6f6f6 solid !important;
}
.wild-sand--bt-27 {
  border-top: 27px #f6f6f6 solid !important;
}
.wild-sand--br-27 {
  border-right: 27px #f6f6f6 solid !important;
}
.wild-sand--bl-27 {
  border-left: 27px #f6f6f6 solid !important;
}
.wild-sand--bb-27 {
  border-bottom: 27px #f6f6f6 solid !important;
}
.wild-sand--by-27 {
  border-top: 27px #f6f6f6 solid !important;
  border-bottom: 27px #f6f6f6 solid !important;
}
.wild-sand--bx-27 {
  border-right: 27px #f6f6f6 solid !important;
  border-left: 27px #f6f6f6 solid !important;
}
.wild-sand--ba-28 {
  border: 28px #f6f6f6 solid !important;
}
.wild-sand--bt-28 {
  border-top: 28px #f6f6f6 solid !important;
}
.wild-sand--br-28 {
  border-right: 28px #f6f6f6 solid !important;
}
.wild-sand--bl-28 {
  border-left: 28px #f6f6f6 solid !important;
}
.wild-sand--bb-28 {
  border-bottom: 28px #f6f6f6 solid !important;
}
.wild-sand--by-28 {
  border-top: 28px #f6f6f6 solid !important;
  border-bottom: 28px #f6f6f6 solid !important;
}
.wild-sand--bx-28 {
  border-right: 28px #f6f6f6 solid !important;
  border-left: 28px #f6f6f6 solid !important;
}
.wild-sand--ba-29 {
  border: 29px #f6f6f6 solid !important;
}
.wild-sand--bt-29 {
  border-top: 29px #f6f6f6 solid !important;
}
.wild-sand--br-29 {
  border-right: 29px #f6f6f6 solid !important;
}
.wild-sand--bl-29 {
  border-left: 29px #f6f6f6 solid !important;
}
.wild-sand--bb-29 {
  border-bottom: 29px #f6f6f6 solid !important;
}
.wild-sand--by-29 {
  border-top: 29px #f6f6f6 solid !important;
  border-bottom: 29px #f6f6f6 solid !important;
}
.wild-sand--bx-29 {
  border-right: 29px #f6f6f6 solid !important;
  border-left: 29px #f6f6f6 solid !important;
}
.wild-sand--ba-30 {
  border: 30px #f6f6f6 solid !important;
}
.wild-sand--bt-30 {
  border-top: 30px #f6f6f6 solid !important;
}
.wild-sand--br-30 {
  border-right: 30px #f6f6f6 solid !important;
}
.wild-sand--bl-30 {
  border-left: 30px #f6f6f6 solid !important;
}
.wild-sand--bb-30 {
  border-bottom: 30px #f6f6f6 solid !important;
}
.wild-sand--by-30 {
  border-top: 30px #f6f6f6 solid !important;
  border-bottom: 30px #f6f6f6 solid !important;
}
.wild-sand--bx-30 {
  border-right: 30px #f6f6f6 solid !important;
  border-left: 30px #f6f6f6 solid !important;
}
.wild-sand--ba-31 {
  border: 31px #f6f6f6 solid !important;
}
.wild-sand--bt-31 {
  border-top: 31px #f6f6f6 solid !important;
}
.wild-sand--br-31 {
  border-right: 31px #f6f6f6 solid !important;
}
.wild-sand--bl-31 {
  border-left: 31px #f6f6f6 solid !important;
}
.wild-sand--bb-31 {
  border-bottom: 31px #f6f6f6 solid !important;
}
.wild-sand--by-31 {
  border-top: 31px #f6f6f6 solid !important;
  border-bottom: 31px #f6f6f6 solid !important;
}
.wild-sand--bx-31 {
  border-right: 31px #f6f6f6 solid !important;
  border-left: 31px #f6f6f6 solid !important;
}
.wild-sand--ba-32 {
  border: 32px #f6f6f6 solid !important;
}
.wild-sand--bt-32 {
  border-top: 32px #f6f6f6 solid !important;
}
.wild-sand--br-32 {
  border-right: 32px #f6f6f6 solid !important;
}
.wild-sand--bl-32 {
  border-left: 32px #f6f6f6 solid !important;
}
.wild-sand--bb-32 {
  border-bottom: 32px #f6f6f6 solid !important;
}
.wild-sand--by-32 {
  border-top: 32px #f6f6f6 solid !important;
  border-bottom: 32px #f6f6f6 solid !important;
}
.wild-sand--bx-32 {
  border-right: 32px #f6f6f6 solid !important;
  border-left: 32px #f6f6f6 solid !important;
}
.wild-sand--ba-33 {
  border: 33px #f6f6f6 solid !important;
}
.wild-sand--bt-33 {
  border-top: 33px #f6f6f6 solid !important;
}
.wild-sand--br-33 {
  border-right: 33px #f6f6f6 solid !important;
}
.wild-sand--bl-33 {
  border-left: 33px #f6f6f6 solid !important;
}
.wild-sand--bb-33 {
  border-bottom: 33px #f6f6f6 solid !important;
}
.wild-sand--by-33 {
  border-top: 33px #f6f6f6 solid !important;
  border-bottom: 33px #f6f6f6 solid !important;
}
.wild-sand--bx-33 {
  border-right: 33px #f6f6f6 solid !important;
  border-left: 33px #f6f6f6 solid !important;
}
.wild-sand--ba-34 {
  border: 34px #f6f6f6 solid !important;
}
.wild-sand--bt-34 {
  border-top: 34px #f6f6f6 solid !important;
}
.wild-sand--br-34 {
  border-right: 34px #f6f6f6 solid !important;
}
.wild-sand--bl-34 {
  border-left: 34px #f6f6f6 solid !important;
}
.wild-sand--bb-34 {
  border-bottom: 34px #f6f6f6 solid !important;
}
.wild-sand--by-34 {
  border-top: 34px #f6f6f6 solid !important;
  border-bottom: 34px #f6f6f6 solid !important;
}
.wild-sand--bx-34 {
  border-right: 34px #f6f6f6 solid !important;
  border-left: 34px #f6f6f6 solid !important;
}
.wild-sand--ba-35 {
  border: 35px #f6f6f6 solid !important;
}
.wild-sand--bt-35 {
  border-top: 35px #f6f6f6 solid !important;
}
.wild-sand--br-35 {
  border-right: 35px #f6f6f6 solid !important;
}
.wild-sand--bl-35 {
  border-left: 35px #f6f6f6 solid !important;
}
.wild-sand--bb-35 {
  border-bottom: 35px #f6f6f6 solid !important;
}
.wild-sand--by-35 {
  border-top: 35px #f6f6f6 solid !important;
  border-bottom: 35px #f6f6f6 solid !important;
}
.wild-sand--bx-35 {
  border-right: 35px #f6f6f6 solid !important;
  border-left: 35px #f6f6f6 solid !important;
}
.wild-sand--ba-36 {
  border: 36px #f6f6f6 solid !important;
}
.wild-sand--bt-36 {
  border-top: 36px #f6f6f6 solid !important;
}
.wild-sand--br-36 {
  border-right: 36px #f6f6f6 solid !important;
}
.wild-sand--bl-36 {
  border-left: 36px #f6f6f6 solid !important;
}
.wild-sand--bb-36 {
  border-bottom: 36px #f6f6f6 solid !important;
}
.wild-sand--by-36 {
  border-top: 36px #f6f6f6 solid !important;
  border-bottom: 36px #f6f6f6 solid !important;
}
.wild-sand--bx-36 {
  border-right: 36px #f6f6f6 solid !important;
  border-left: 36px #f6f6f6 solid !important;
}
.wild-sand--ba-37 {
  border: 37px #f6f6f6 solid !important;
}
.wild-sand--bt-37 {
  border-top: 37px #f6f6f6 solid !important;
}
.wild-sand--br-37 {
  border-right: 37px #f6f6f6 solid !important;
}
.wild-sand--bl-37 {
  border-left: 37px #f6f6f6 solid !important;
}
.wild-sand--bb-37 {
  border-bottom: 37px #f6f6f6 solid !important;
}
.wild-sand--by-37 {
  border-top: 37px #f6f6f6 solid !important;
  border-bottom: 37px #f6f6f6 solid !important;
}
.wild-sand--bx-37 {
  border-right: 37px #f6f6f6 solid !important;
  border-left: 37px #f6f6f6 solid !important;
}
.wild-sand--ba-38 {
  border: 38px #f6f6f6 solid !important;
}
.wild-sand--bt-38 {
  border-top: 38px #f6f6f6 solid !important;
}
.wild-sand--br-38 {
  border-right: 38px #f6f6f6 solid !important;
}
.wild-sand--bl-38 {
  border-left: 38px #f6f6f6 solid !important;
}
.wild-sand--bb-38 {
  border-bottom: 38px #f6f6f6 solid !important;
}
.wild-sand--by-38 {
  border-top: 38px #f6f6f6 solid !important;
  border-bottom: 38px #f6f6f6 solid !important;
}
.wild-sand--bx-38 {
  border-right: 38px #f6f6f6 solid !important;
  border-left: 38px #f6f6f6 solid !important;
}
.wild-sand--ba-39 {
  border: 39px #f6f6f6 solid !important;
}
.wild-sand--bt-39 {
  border-top: 39px #f6f6f6 solid !important;
}
.wild-sand--br-39 {
  border-right: 39px #f6f6f6 solid !important;
}
.wild-sand--bl-39 {
  border-left: 39px #f6f6f6 solid !important;
}
.wild-sand--bb-39 {
  border-bottom: 39px #f6f6f6 solid !important;
}
.wild-sand--by-39 {
  border-top: 39px #f6f6f6 solid !important;
  border-bottom: 39px #f6f6f6 solid !important;
}
.wild-sand--bx-39 {
  border-right: 39px #f6f6f6 solid !important;
  border-left: 39px #f6f6f6 solid !important;
}
.wild-sand--ba-40 {
  border: 40px #f6f6f6 solid !important;
}
.wild-sand--bt-40 {
  border-top: 40px #f6f6f6 solid !important;
}
.wild-sand--br-40 {
  border-right: 40px #f6f6f6 solid !important;
}
.wild-sand--bl-40 {
  border-left: 40px #f6f6f6 solid !important;
}
.wild-sand--bb-40 {
  border-bottom: 40px #f6f6f6 solid !important;
}
.wild-sand--by-40 {
  border-top: 40px #f6f6f6 solid !important;
  border-bottom: 40px #f6f6f6 solid !important;
}
.wild-sand--bx-40 {
  border-right: 40px #f6f6f6 solid !important;
  border-left: 40px #f6f6f6 solid !important;
}
.wild-sand--ba-41 {
  border: 41px #f6f6f6 solid !important;
}
.wild-sand--bt-41 {
  border-top: 41px #f6f6f6 solid !important;
}
.wild-sand--br-41 {
  border-right: 41px #f6f6f6 solid !important;
}
.wild-sand--bl-41 {
  border-left: 41px #f6f6f6 solid !important;
}
.wild-sand--bb-41 {
  border-bottom: 41px #f6f6f6 solid !important;
}
.wild-sand--by-41 {
  border-top: 41px #f6f6f6 solid !important;
  border-bottom: 41px #f6f6f6 solid !important;
}
.wild-sand--bx-41 {
  border-right: 41px #f6f6f6 solid !important;
  border-left: 41px #f6f6f6 solid !important;
}
.wild-sand--ba-42 {
  border: 42px #f6f6f6 solid !important;
}
.wild-sand--bt-42 {
  border-top: 42px #f6f6f6 solid !important;
}
.wild-sand--br-42 {
  border-right: 42px #f6f6f6 solid !important;
}
.wild-sand--bl-42 {
  border-left: 42px #f6f6f6 solid !important;
}
.wild-sand--bb-42 {
  border-bottom: 42px #f6f6f6 solid !important;
}
.wild-sand--by-42 {
  border-top: 42px #f6f6f6 solid !important;
  border-bottom: 42px #f6f6f6 solid !important;
}
.wild-sand--bx-42 {
  border-right: 42px #f6f6f6 solid !important;
  border-left: 42px #f6f6f6 solid !important;
}
.wild-sand--ba-43 {
  border: 43px #f6f6f6 solid !important;
}
.wild-sand--bt-43 {
  border-top: 43px #f6f6f6 solid !important;
}
.wild-sand--br-43 {
  border-right: 43px #f6f6f6 solid !important;
}
.wild-sand--bl-43 {
  border-left: 43px #f6f6f6 solid !important;
}
.wild-sand--bb-43 {
  border-bottom: 43px #f6f6f6 solid !important;
}
.wild-sand--by-43 {
  border-top: 43px #f6f6f6 solid !important;
  border-bottom: 43px #f6f6f6 solid !important;
}
.wild-sand--bx-43 {
  border-right: 43px #f6f6f6 solid !important;
  border-left: 43px #f6f6f6 solid !important;
}
.wild-sand--ba-44 {
  border: 44px #f6f6f6 solid !important;
}
.wild-sand--bt-44 {
  border-top: 44px #f6f6f6 solid !important;
}
.wild-sand--br-44 {
  border-right: 44px #f6f6f6 solid !important;
}
.wild-sand--bl-44 {
  border-left: 44px #f6f6f6 solid !important;
}
.wild-sand--bb-44 {
  border-bottom: 44px #f6f6f6 solid !important;
}
.wild-sand--by-44 {
  border-top: 44px #f6f6f6 solid !important;
  border-bottom: 44px #f6f6f6 solid !important;
}
.wild-sand--bx-44 {
  border-right: 44px #f6f6f6 solid !important;
  border-left: 44px #f6f6f6 solid !important;
}
.wild-sand--ba-45 {
  border: 45px #f6f6f6 solid !important;
}
.wild-sand--bt-45 {
  border-top: 45px #f6f6f6 solid !important;
}
.wild-sand--br-45 {
  border-right: 45px #f6f6f6 solid !important;
}
.wild-sand--bl-45 {
  border-left: 45px #f6f6f6 solid !important;
}
.wild-sand--bb-45 {
  border-bottom: 45px #f6f6f6 solid !important;
}
.wild-sand--by-45 {
  border-top: 45px #f6f6f6 solid !important;
  border-bottom: 45px #f6f6f6 solid !important;
}
.wild-sand--bx-45 {
  border-right: 45px #f6f6f6 solid !important;
  border-left: 45px #f6f6f6 solid !important;
}
.wild-sand--ba-46 {
  border: 46px #f6f6f6 solid !important;
}
.wild-sand--bt-46 {
  border-top: 46px #f6f6f6 solid !important;
}
.wild-sand--br-46 {
  border-right: 46px #f6f6f6 solid !important;
}
.wild-sand--bl-46 {
  border-left: 46px #f6f6f6 solid !important;
}
.wild-sand--bb-46 {
  border-bottom: 46px #f6f6f6 solid !important;
}
.wild-sand--by-46 {
  border-top: 46px #f6f6f6 solid !important;
  border-bottom: 46px #f6f6f6 solid !important;
}
.wild-sand--bx-46 {
  border-right: 46px #f6f6f6 solid !important;
  border-left: 46px #f6f6f6 solid !important;
}
.wild-sand--ba-47 {
  border: 47px #f6f6f6 solid !important;
}
.wild-sand--bt-47 {
  border-top: 47px #f6f6f6 solid !important;
}
.wild-sand--br-47 {
  border-right: 47px #f6f6f6 solid !important;
}
.wild-sand--bl-47 {
  border-left: 47px #f6f6f6 solid !important;
}
.wild-sand--bb-47 {
  border-bottom: 47px #f6f6f6 solid !important;
}
.wild-sand--by-47 {
  border-top: 47px #f6f6f6 solid !important;
  border-bottom: 47px #f6f6f6 solid !important;
}
.wild-sand--bx-47 {
  border-right: 47px #f6f6f6 solid !important;
  border-left: 47px #f6f6f6 solid !important;
}
.wild-sand--ba-48 {
  border: 48px #f6f6f6 solid !important;
}
.wild-sand--bt-48 {
  border-top: 48px #f6f6f6 solid !important;
}
.wild-sand--br-48 {
  border-right: 48px #f6f6f6 solid !important;
}
.wild-sand--bl-48 {
  border-left: 48px #f6f6f6 solid !important;
}
.wild-sand--bb-48 {
  border-bottom: 48px #f6f6f6 solid !important;
}
.wild-sand--by-48 {
  border-top: 48px #f6f6f6 solid !important;
  border-bottom: 48px #f6f6f6 solid !important;
}
.wild-sand--bx-48 {
  border-right: 48px #f6f6f6 solid !important;
  border-left: 48px #f6f6f6 solid !important;
}
.wild-sand--ba-49 {
  border: 49px #f6f6f6 solid !important;
}
.wild-sand--bt-49 {
  border-top: 49px #f6f6f6 solid !important;
}
.wild-sand--br-49 {
  border-right: 49px #f6f6f6 solid !important;
}
.wild-sand--bl-49 {
  border-left: 49px #f6f6f6 solid !important;
}
.wild-sand--bb-49 {
  border-bottom: 49px #f6f6f6 solid !important;
}
.wild-sand--by-49 {
  border-top: 49px #f6f6f6 solid !important;
  border-bottom: 49px #f6f6f6 solid !important;
}
.wild-sand--bx-49 {
  border-right: 49px #f6f6f6 solid !important;
  border-left: 49px #f6f6f6 solid !important;
}
.wild-sand--ba-50 {
  border: 50px #f6f6f6 solid !important;
}
.wild-sand--bt-50 {
  border-top: 50px #f6f6f6 solid !important;
}
.wild-sand--br-50 {
  border-right: 50px #f6f6f6 solid !important;
}
.wild-sand--bl-50 {
  border-left: 50px #f6f6f6 solid !important;
}
.wild-sand--bb-50 {
  border-bottom: 50px #f6f6f6 solid !important;
}
.wild-sand--by-50 {
  border-top: 50px #f6f6f6 solid !important;
  border-bottom: 50px #f6f6f6 solid !important;
}
.wild-sand--bx-50 {
  border-right: 50px #f6f6f6 solid !important;
  border-left: 50px #f6f6f6 solid !important;
}
.wild-sand--ba-51 {
  border: 51px #f6f6f6 solid !important;
}
.wild-sand--bt-51 {
  border-top: 51px #f6f6f6 solid !important;
}
.wild-sand--br-51 {
  border-right: 51px #f6f6f6 solid !important;
}
.wild-sand--bl-51 {
  border-left: 51px #f6f6f6 solid !important;
}
.wild-sand--bb-51 {
  border-bottom: 51px #f6f6f6 solid !important;
}
.wild-sand--by-51 {
  border-top: 51px #f6f6f6 solid !important;
  border-bottom: 51px #f6f6f6 solid !important;
}
.wild-sand--bx-51 {
  border-right: 51px #f6f6f6 solid !important;
  border-left: 51px #f6f6f6 solid !important;
}
.wild-sand--ba-52 {
  border: 52px #f6f6f6 solid !important;
}
.wild-sand--bt-52 {
  border-top: 52px #f6f6f6 solid !important;
}
.wild-sand--br-52 {
  border-right: 52px #f6f6f6 solid !important;
}
.wild-sand--bl-52 {
  border-left: 52px #f6f6f6 solid !important;
}
.wild-sand--bb-52 {
  border-bottom: 52px #f6f6f6 solid !important;
}
.wild-sand--by-52 {
  border-top: 52px #f6f6f6 solid !important;
  border-bottom: 52px #f6f6f6 solid !important;
}
.wild-sand--bx-52 {
  border-right: 52px #f6f6f6 solid !important;
  border-left: 52px #f6f6f6 solid !important;
}
.wild-sand--ba-53 {
  border: 53px #f6f6f6 solid !important;
}
.wild-sand--bt-53 {
  border-top: 53px #f6f6f6 solid !important;
}
.wild-sand--br-53 {
  border-right: 53px #f6f6f6 solid !important;
}
.wild-sand--bl-53 {
  border-left: 53px #f6f6f6 solid !important;
}
.wild-sand--bb-53 {
  border-bottom: 53px #f6f6f6 solid !important;
}
.wild-sand--by-53 {
  border-top: 53px #f6f6f6 solid !important;
  border-bottom: 53px #f6f6f6 solid !important;
}
.wild-sand--bx-53 {
  border-right: 53px #f6f6f6 solid !important;
  border-left: 53px #f6f6f6 solid !important;
}
.wild-sand--ba-54 {
  border: 54px #f6f6f6 solid !important;
}
.wild-sand--bt-54 {
  border-top: 54px #f6f6f6 solid !important;
}
.wild-sand--br-54 {
  border-right: 54px #f6f6f6 solid !important;
}
.wild-sand--bl-54 {
  border-left: 54px #f6f6f6 solid !important;
}
.wild-sand--bb-54 {
  border-bottom: 54px #f6f6f6 solid !important;
}
.wild-sand--by-54 {
  border-top: 54px #f6f6f6 solid !important;
  border-bottom: 54px #f6f6f6 solid !important;
}
.wild-sand--bx-54 {
  border-right: 54px #f6f6f6 solid !important;
  border-left: 54px #f6f6f6 solid !important;
}
.wild-sand--ba-55 {
  border: 55px #f6f6f6 solid !important;
}
.wild-sand--bt-55 {
  border-top: 55px #f6f6f6 solid !important;
}
.wild-sand--br-55 {
  border-right: 55px #f6f6f6 solid !important;
}
.wild-sand--bl-55 {
  border-left: 55px #f6f6f6 solid !important;
}
.wild-sand--bb-55 {
  border-bottom: 55px #f6f6f6 solid !important;
}
.wild-sand--by-55 {
  border-top: 55px #f6f6f6 solid !important;
  border-bottom: 55px #f6f6f6 solid !important;
}
.wild-sand--bx-55 {
  border-right: 55px #f6f6f6 solid !important;
  border-left: 55px #f6f6f6 solid !important;
}
.wild-sand--ba-56 {
  border: 56px #f6f6f6 solid !important;
}
.wild-sand--bt-56 {
  border-top: 56px #f6f6f6 solid !important;
}
.wild-sand--br-56 {
  border-right: 56px #f6f6f6 solid !important;
}
.wild-sand--bl-56 {
  border-left: 56px #f6f6f6 solid !important;
}
.wild-sand--bb-56 {
  border-bottom: 56px #f6f6f6 solid !important;
}
.wild-sand--by-56 {
  border-top: 56px #f6f6f6 solid !important;
  border-bottom: 56px #f6f6f6 solid !important;
}
.wild-sand--bx-56 {
  border-right: 56px #f6f6f6 solid !important;
  border-left: 56px #f6f6f6 solid !important;
}
.wild-sand--ba-57 {
  border: 57px #f6f6f6 solid !important;
}
.wild-sand--bt-57 {
  border-top: 57px #f6f6f6 solid !important;
}
.wild-sand--br-57 {
  border-right: 57px #f6f6f6 solid !important;
}
.wild-sand--bl-57 {
  border-left: 57px #f6f6f6 solid !important;
}
.wild-sand--bb-57 {
  border-bottom: 57px #f6f6f6 solid !important;
}
.wild-sand--by-57 {
  border-top: 57px #f6f6f6 solid !important;
  border-bottom: 57px #f6f6f6 solid !important;
}
.wild-sand--bx-57 {
  border-right: 57px #f6f6f6 solid !important;
  border-left: 57px #f6f6f6 solid !important;
}
.wild-sand--ba-58 {
  border: 58px #f6f6f6 solid !important;
}
.wild-sand--bt-58 {
  border-top: 58px #f6f6f6 solid !important;
}
.wild-sand--br-58 {
  border-right: 58px #f6f6f6 solid !important;
}
.wild-sand--bl-58 {
  border-left: 58px #f6f6f6 solid !important;
}
.wild-sand--bb-58 {
  border-bottom: 58px #f6f6f6 solid !important;
}
.wild-sand--by-58 {
  border-top: 58px #f6f6f6 solid !important;
  border-bottom: 58px #f6f6f6 solid !important;
}
.wild-sand--bx-58 {
  border-right: 58px #f6f6f6 solid !important;
  border-left: 58px #f6f6f6 solid !important;
}
.wild-sand--ba-59 {
  border: 59px #f6f6f6 solid !important;
}
.wild-sand--bt-59 {
  border-top: 59px #f6f6f6 solid !important;
}
.wild-sand--br-59 {
  border-right: 59px #f6f6f6 solid !important;
}
.wild-sand--bl-59 {
  border-left: 59px #f6f6f6 solid !important;
}
.wild-sand--bb-59 {
  border-bottom: 59px #f6f6f6 solid !important;
}
.wild-sand--by-59 {
  border-top: 59px #f6f6f6 solid !important;
  border-bottom: 59px #f6f6f6 solid !important;
}
.wild-sand--bx-59 {
  border-right: 59px #f6f6f6 solid !important;
  border-left: 59px #f6f6f6 solid !important;
}
.wild-sand--ba-60 {
  border: 60px #f6f6f6 solid !important;
}
.wild-sand--bt-60 {
  border-top: 60px #f6f6f6 solid !important;
}
.wild-sand--br-60 {
  border-right: 60px #f6f6f6 solid !important;
}
.wild-sand--bl-60 {
  border-left: 60px #f6f6f6 solid !important;
}
.wild-sand--bb-60 {
  border-bottom: 60px #f6f6f6 solid !important;
}
.wild-sand--by-60 {
  border-top: 60px #f6f6f6 solid !important;
  border-bottom: 60px #f6f6f6 solid !important;
}
.wild-sand--bx-60 {
  border-right: 60px #f6f6f6 solid !important;
  border-left: 60px #f6f6f6 solid !important;
}
.wild-sand--ba-61 {
  border: 61px #f6f6f6 solid !important;
}
.wild-sand--bt-61 {
  border-top: 61px #f6f6f6 solid !important;
}
.wild-sand--br-61 {
  border-right: 61px #f6f6f6 solid !important;
}
.wild-sand--bl-61 {
  border-left: 61px #f6f6f6 solid !important;
}
.wild-sand--bb-61 {
  border-bottom: 61px #f6f6f6 solid !important;
}
.wild-sand--by-61 {
  border-top: 61px #f6f6f6 solid !important;
  border-bottom: 61px #f6f6f6 solid !important;
}
.wild-sand--bx-61 {
  border-right: 61px #f6f6f6 solid !important;
  border-left: 61px #f6f6f6 solid !important;
}
.wild-sand--ba-62 {
  border: 62px #f6f6f6 solid !important;
}
.wild-sand--bt-62 {
  border-top: 62px #f6f6f6 solid !important;
}
.wild-sand--br-62 {
  border-right: 62px #f6f6f6 solid !important;
}
.wild-sand--bl-62 {
  border-left: 62px #f6f6f6 solid !important;
}
.wild-sand--bb-62 {
  border-bottom: 62px #f6f6f6 solid !important;
}
.wild-sand--by-62 {
  border-top: 62px #f6f6f6 solid !important;
  border-bottom: 62px #f6f6f6 solid !important;
}
.wild-sand--bx-62 {
  border-right: 62px #f6f6f6 solid !important;
  border-left: 62px #f6f6f6 solid !important;
}
.wild-sand--ba-63 {
  border: 63px #f6f6f6 solid !important;
}
.wild-sand--bt-63 {
  border-top: 63px #f6f6f6 solid !important;
}
.wild-sand--br-63 {
  border-right: 63px #f6f6f6 solid !important;
}
.wild-sand--bl-63 {
  border-left: 63px #f6f6f6 solid !important;
}
.wild-sand--bb-63 {
  border-bottom: 63px #f6f6f6 solid !important;
}
.wild-sand--by-63 {
  border-top: 63px #f6f6f6 solid !important;
  border-bottom: 63px #f6f6f6 solid !important;
}
.wild-sand--bx-63 {
  border-right: 63px #f6f6f6 solid !important;
  border-left: 63px #f6f6f6 solid !important;
}
.wild-sand--ba-64 {
  border: 64px #f6f6f6 solid !important;
}
.wild-sand--bt-64 {
  border-top: 64px #f6f6f6 solid !important;
}
.wild-sand--br-64 {
  border-right: 64px #f6f6f6 solid !important;
}
.wild-sand--bl-64 {
  border-left: 64px #f6f6f6 solid !important;
}
.wild-sand--bb-64 {
  border-bottom: 64px #f6f6f6 solid !important;
}
.wild-sand--by-64 {
  border-top: 64px #f6f6f6 solid !important;
  border-bottom: 64px #f6f6f6 solid !important;
}
.wild-sand--bx-64 {
  border-right: 64px #f6f6f6 solid !important;
  border-left: 64px #f6f6f6 solid !important;
}
.wild-sand--ba-65 {
  border: 65px #f6f6f6 solid !important;
}
.wild-sand--bt-65 {
  border-top: 65px #f6f6f6 solid !important;
}
.wild-sand--br-65 {
  border-right: 65px #f6f6f6 solid !important;
}
.wild-sand--bl-65 {
  border-left: 65px #f6f6f6 solid !important;
}
.wild-sand--bb-65 {
  border-bottom: 65px #f6f6f6 solid !important;
}
.wild-sand--by-65 {
  border-top: 65px #f6f6f6 solid !important;
  border-bottom: 65px #f6f6f6 solid !important;
}
.wild-sand--bx-65 {
  border-right: 65px #f6f6f6 solid !important;
  border-left: 65px #f6f6f6 solid !important;
}
.wild-sand--ba-66 {
  border: 66px #f6f6f6 solid !important;
}
.wild-sand--bt-66 {
  border-top: 66px #f6f6f6 solid !important;
}
.wild-sand--br-66 {
  border-right: 66px #f6f6f6 solid !important;
}
.wild-sand--bl-66 {
  border-left: 66px #f6f6f6 solid !important;
}
.wild-sand--bb-66 {
  border-bottom: 66px #f6f6f6 solid !important;
}
.wild-sand--by-66 {
  border-top: 66px #f6f6f6 solid !important;
  border-bottom: 66px #f6f6f6 solid !important;
}
.wild-sand--bx-66 {
  border-right: 66px #f6f6f6 solid !important;
  border-left: 66px #f6f6f6 solid !important;
}
.wild-sand--ba-67 {
  border: 67px #f6f6f6 solid !important;
}
.wild-sand--bt-67 {
  border-top: 67px #f6f6f6 solid !important;
}
.wild-sand--br-67 {
  border-right: 67px #f6f6f6 solid !important;
}
.wild-sand--bl-67 {
  border-left: 67px #f6f6f6 solid !important;
}
.wild-sand--bb-67 {
  border-bottom: 67px #f6f6f6 solid !important;
}
.wild-sand--by-67 {
  border-top: 67px #f6f6f6 solid !important;
  border-bottom: 67px #f6f6f6 solid !important;
}
.wild-sand--bx-67 {
  border-right: 67px #f6f6f6 solid !important;
  border-left: 67px #f6f6f6 solid !important;
}
.wild-sand--ba-68 {
  border: 68px #f6f6f6 solid !important;
}
.wild-sand--bt-68 {
  border-top: 68px #f6f6f6 solid !important;
}
.wild-sand--br-68 {
  border-right: 68px #f6f6f6 solid !important;
}
.wild-sand--bl-68 {
  border-left: 68px #f6f6f6 solid !important;
}
.wild-sand--bb-68 {
  border-bottom: 68px #f6f6f6 solid !important;
}
.wild-sand--by-68 {
  border-top: 68px #f6f6f6 solid !important;
  border-bottom: 68px #f6f6f6 solid !important;
}
.wild-sand--bx-68 {
  border-right: 68px #f6f6f6 solid !important;
  border-left: 68px #f6f6f6 solid !important;
}
.wild-sand--ba-69 {
  border: 69px #f6f6f6 solid !important;
}
.wild-sand--bt-69 {
  border-top: 69px #f6f6f6 solid !important;
}
.wild-sand--br-69 {
  border-right: 69px #f6f6f6 solid !important;
}
.wild-sand--bl-69 {
  border-left: 69px #f6f6f6 solid !important;
}
.wild-sand--bb-69 {
  border-bottom: 69px #f6f6f6 solid !important;
}
.wild-sand--by-69 {
  border-top: 69px #f6f6f6 solid !important;
  border-bottom: 69px #f6f6f6 solid !important;
}
.wild-sand--bx-69 {
  border-right: 69px #f6f6f6 solid !important;
  border-left: 69px #f6f6f6 solid !important;
}
.wild-sand--ba-70 {
  border: 70px #f6f6f6 solid !important;
}
.wild-sand--bt-70 {
  border-top: 70px #f6f6f6 solid !important;
}
.wild-sand--br-70 {
  border-right: 70px #f6f6f6 solid !important;
}
.wild-sand--bl-70 {
  border-left: 70px #f6f6f6 solid !important;
}
.wild-sand--bb-70 {
  border-bottom: 70px #f6f6f6 solid !important;
}
.wild-sand--by-70 {
  border-top: 70px #f6f6f6 solid !important;
  border-bottom: 70px #f6f6f6 solid !important;
}
.wild-sand--bx-70 {
  border-right: 70px #f6f6f6 solid !important;
  border-left: 70px #f6f6f6 solid !important;
}
.wild-sand--ba-71 {
  border: 71px #f6f6f6 solid !important;
}
.wild-sand--bt-71 {
  border-top: 71px #f6f6f6 solid !important;
}
.wild-sand--br-71 {
  border-right: 71px #f6f6f6 solid !important;
}
.wild-sand--bl-71 {
  border-left: 71px #f6f6f6 solid !important;
}
.wild-sand--bb-71 {
  border-bottom: 71px #f6f6f6 solid !important;
}
.wild-sand--by-71 {
  border-top: 71px #f6f6f6 solid !important;
  border-bottom: 71px #f6f6f6 solid !important;
}
.wild-sand--bx-71 {
  border-right: 71px #f6f6f6 solid !important;
  border-left: 71px #f6f6f6 solid !important;
}
.wild-sand--ba-72 {
  border: 72px #f6f6f6 solid !important;
}
.wild-sand--bt-72 {
  border-top: 72px #f6f6f6 solid !important;
}
.wild-sand--br-72 {
  border-right: 72px #f6f6f6 solid !important;
}
.wild-sand--bl-72 {
  border-left: 72px #f6f6f6 solid !important;
}
.wild-sand--bb-72 {
  border-bottom: 72px #f6f6f6 solid !important;
}
.wild-sand--by-72 {
  border-top: 72px #f6f6f6 solid !important;
  border-bottom: 72px #f6f6f6 solid !important;
}
.wild-sand--bx-72 {
  border-right: 72px #f6f6f6 solid !important;
  border-left: 72px #f6f6f6 solid !important;
}
.wild-sand--ba-73 {
  border: 73px #f6f6f6 solid !important;
}
.wild-sand--bt-73 {
  border-top: 73px #f6f6f6 solid !important;
}
.wild-sand--br-73 {
  border-right: 73px #f6f6f6 solid !important;
}
.wild-sand--bl-73 {
  border-left: 73px #f6f6f6 solid !important;
}
.wild-sand--bb-73 {
  border-bottom: 73px #f6f6f6 solid !important;
}
.wild-sand--by-73 {
  border-top: 73px #f6f6f6 solid !important;
  border-bottom: 73px #f6f6f6 solid !important;
}
.wild-sand--bx-73 {
  border-right: 73px #f6f6f6 solid !important;
  border-left: 73px #f6f6f6 solid !important;
}
.wild-sand--ba-74 {
  border: 74px #f6f6f6 solid !important;
}
.wild-sand--bt-74 {
  border-top: 74px #f6f6f6 solid !important;
}
.wild-sand--br-74 {
  border-right: 74px #f6f6f6 solid !important;
}
.wild-sand--bl-74 {
  border-left: 74px #f6f6f6 solid !important;
}
.wild-sand--bb-74 {
  border-bottom: 74px #f6f6f6 solid !important;
}
.wild-sand--by-74 {
  border-top: 74px #f6f6f6 solid !important;
  border-bottom: 74px #f6f6f6 solid !important;
}
.wild-sand--bx-74 {
  border-right: 74px #f6f6f6 solid !important;
  border-left: 74px #f6f6f6 solid !important;
}
.wild-sand--ba-75 {
  border: 75px #f6f6f6 solid !important;
}
.wild-sand--bt-75 {
  border-top: 75px #f6f6f6 solid !important;
}
.wild-sand--br-75 {
  border-right: 75px #f6f6f6 solid !important;
}
.wild-sand--bl-75 {
  border-left: 75px #f6f6f6 solid !important;
}
.wild-sand--bb-75 {
  border-bottom: 75px #f6f6f6 solid !important;
}
.wild-sand--by-75 {
  border-top: 75px #f6f6f6 solid !important;
  border-bottom: 75px #f6f6f6 solid !important;
}
.wild-sand--bx-75 {
  border-right: 75px #f6f6f6 solid !important;
  border-left: 75px #f6f6f6 solid !important;
}
.wild-sand--ba-76 {
  border: 76px #f6f6f6 solid !important;
}
.wild-sand--bt-76 {
  border-top: 76px #f6f6f6 solid !important;
}
.wild-sand--br-76 {
  border-right: 76px #f6f6f6 solid !important;
}
.wild-sand--bl-76 {
  border-left: 76px #f6f6f6 solid !important;
}
.wild-sand--bb-76 {
  border-bottom: 76px #f6f6f6 solid !important;
}
.wild-sand--by-76 {
  border-top: 76px #f6f6f6 solid !important;
  border-bottom: 76px #f6f6f6 solid !important;
}
.wild-sand--bx-76 {
  border-right: 76px #f6f6f6 solid !important;
  border-left: 76px #f6f6f6 solid !important;
}
.wild-sand--ba-77 {
  border: 77px #f6f6f6 solid !important;
}
.wild-sand--bt-77 {
  border-top: 77px #f6f6f6 solid !important;
}
.wild-sand--br-77 {
  border-right: 77px #f6f6f6 solid !important;
}
.wild-sand--bl-77 {
  border-left: 77px #f6f6f6 solid !important;
}
.wild-sand--bb-77 {
  border-bottom: 77px #f6f6f6 solid !important;
}
.wild-sand--by-77 {
  border-top: 77px #f6f6f6 solid !important;
  border-bottom: 77px #f6f6f6 solid !important;
}
.wild-sand--bx-77 {
  border-right: 77px #f6f6f6 solid !important;
  border-left: 77px #f6f6f6 solid !important;
}
.wild-sand--ba-78 {
  border: 78px #f6f6f6 solid !important;
}
.wild-sand--bt-78 {
  border-top: 78px #f6f6f6 solid !important;
}
.wild-sand--br-78 {
  border-right: 78px #f6f6f6 solid !important;
}
.wild-sand--bl-78 {
  border-left: 78px #f6f6f6 solid !important;
}
.wild-sand--bb-78 {
  border-bottom: 78px #f6f6f6 solid !important;
}
.wild-sand--by-78 {
  border-top: 78px #f6f6f6 solid !important;
  border-bottom: 78px #f6f6f6 solid !important;
}
.wild-sand--bx-78 {
  border-right: 78px #f6f6f6 solid !important;
  border-left: 78px #f6f6f6 solid !important;
}
.wild-sand--ba-79 {
  border: 79px #f6f6f6 solid !important;
}
.wild-sand--bt-79 {
  border-top: 79px #f6f6f6 solid !important;
}
.wild-sand--br-79 {
  border-right: 79px #f6f6f6 solid !important;
}
.wild-sand--bl-79 {
  border-left: 79px #f6f6f6 solid !important;
}
.wild-sand--bb-79 {
  border-bottom: 79px #f6f6f6 solid !important;
}
.wild-sand--by-79 {
  border-top: 79px #f6f6f6 solid !important;
  border-bottom: 79px #f6f6f6 solid !important;
}
.wild-sand--bx-79 {
  border-right: 79px #f6f6f6 solid !important;
  border-left: 79px #f6f6f6 solid !important;
}
.wild-sand--ba-80 {
  border: 80px #f6f6f6 solid !important;
}
.wild-sand--bt-80 {
  border-top: 80px #f6f6f6 solid !important;
}
.wild-sand--br-80 {
  border-right: 80px #f6f6f6 solid !important;
}
.wild-sand--bl-80 {
  border-left: 80px #f6f6f6 solid !important;
}
.wild-sand--bb-80 {
  border-bottom: 80px #f6f6f6 solid !important;
}
.wild-sand--by-80 {
  border-top: 80px #f6f6f6 solid !important;
  border-bottom: 80px #f6f6f6 solid !important;
}
.wild-sand--bx-80 {
  border-right: 80px #f6f6f6 solid !important;
  border-left: 80px #f6f6f6 solid !important;
}
.wild-sand--ba-81 {
  border: 81px #f6f6f6 solid !important;
}
.wild-sand--bt-81 {
  border-top: 81px #f6f6f6 solid !important;
}
.wild-sand--br-81 {
  border-right: 81px #f6f6f6 solid !important;
}
.wild-sand--bl-81 {
  border-left: 81px #f6f6f6 solid !important;
}
.wild-sand--bb-81 {
  border-bottom: 81px #f6f6f6 solid !important;
}
.wild-sand--by-81 {
  border-top: 81px #f6f6f6 solid !important;
  border-bottom: 81px #f6f6f6 solid !important;
}
.wild-sand--bx-81 {
  border-right: 81px #f6f6f6 solid !important;
  border-left: 81px #f6f6f6 solid !important;
}
.wild-sand--ba-82 {
  border: 82px #f6f6f6 solid !important;
}
.wild-sand--bt-82 {
  border-top: 82px #f6f6f6 solid !important;
}
.wild-sand--br-82 {
  border-right: 82px #f6f6f6 solid !important;
}
.wild-sand--bl-82 {
  border-left: 82px #f6f6f6 solid !important;
}
.wild-sand--bb-82 {
  border-bottom: 82px #f6f6f6 solid !important;
}
.wild-sand--by-82 {
  border-top: 82px #f6f6f6 solid !important;
  border-bottom: 82px #f6f6f6 solid !important;
}
.wild-sand--bx-82 {
  border-right: 82px #f6f6f6 solid !important;
  border-left: 82px #f6f6f6 solid !important;
}
.wild-sand--ba-83 {
  border: 83px #f6f6f6 solid !important;
}
.wild-sand--bt-83 {
  border-top: 83px #f6f6f6 solid !important;
}
.wild-sand--br-83 {
  border-right: 83px #f6f6f6 solid !important;
}
.wild-sand--bl-83 {
  border-left: 83px #f6f6f6 solid !important;
}
.wild-sand--bb-83 {
  border-bottom: 83px #f6f6f6 solid !important;
}
.wild-sand--by-83 {
  border-top: 83px #f6f6f6 solid !important;
  border-bottom: 83px #f6f6f6 solid !important;
}
.wild-sand--bx-83 {
  border-right: 83px #f6f6f6 solid !important;
  border-left: 83px #f6f6f6 solid !important;
}
.wild-sand--ba-84 {
  border: 84px #f6f6f6 solid !important;
}
.wild-sand--bt-84 {
  border-top: 84px #f6f6f6 solid !important;
}
.wild-sand--br-84 {
  border-right: 84px #f6f6f6 solid !important;
}
.wild-sand--bl-84 {
  border-left: 84px #f6f6f6 solid !important;
}
.wild-sand--bb-84 {
  border-bottom: 84px #f6f6f6 solid !important;
}
.wild-sand--by-84 {
  border-top: 84px #f6f6f6 solid !important;
  border-bottom: 84px #f6f6f6 solid !important;
}
.wild-sand--bx-84 {
  border-right: 84px #f6f6f6 solid !important;
  border-left: 84px #f6f6f6 solid !important;
}
.wild-sand--ba-85 {
  border: 85px #f6f6f6 solid !important;
}
.wild-sand--bt-85 {
  border-top: 85px #f6f6f6 solid !important;
}
.wild-sand--br-85 {
  border-right: 85px #f6f6f6 solid !important;
}
.wild-sand--bl-85 {
  border-left: 85px #f6f6f6 solid !important;
}
.wild-sand--bb-85 {
  border-bottom: 85px #f6f6f6 solid !important;
}
.wild-sand--by-85 {
  border-top: 85px #f6f6f6 solid !important;
  border-bottom: 85px #f6f6f6 solid !important;
}
.wild-sand--bx-85 {
  border-right: 85px #f6f6f6 solid !important;
  border-left: 85px #f6f6f6 solid !important;
}
.wild-sand--ba-86 {
  border: 86px #f6f6f6 solid !important;
}
.wild-sand--bt-86 {
  border-top: 86px #f6f6f6 solid !important;
}
.wild-sand--br-86 {
  border-right: 86px #f6f6f6 solid !important;
}
.wild-sand--bl-86 {
  border-left: 86px #f6f6f6 solid !important;
}
.wild-sand--bb-86 {
  border-bottom: 86px #f6f6f6 solid !important;
}
.wild-sand--by-86 {
  border-top: 86px #f6f6f6 solid !important;
  border-bottom: 86px #f6f6f6 solid !important;
}
.wild-sand--bx-86 {
  border-right: 86px #f6f6f6 solid !important;
  border-left: 86px #f6f6f6 solid !important;
}
.wild-sand--ba-87 {
  border: 87px #f6f6f6 solid !important;
}
.wild-sand--bt-87 {
  border-top: 87px #f6f6f6 solid !important;
}
.wild-sand--br-87 {
  border-right: 87px #f6f6f6 solid !important;
}
.wild-sand--bl-87 {
  border-left: 87px #f6f6f6 solid !important;
}
.wild-sand--bb-87 {
  border-bottom: 87px #f6f6f6 solid !important;
}
.wild-sand--by-87 {
  border-top: 87px #f6f6f6 solid !important;
  border-bottom: 87px #f6f6f6 solid !important;
}
.wild-sand--bx-87 {
  border-right: 87px #f6f6f6 solid !important;
  border-left: 87px #f6f6f6 solid !important;
}
.wild-sand--ba-88 {
  border: 88px #f6f6f6 solid !important;
}
.wild-sand--bt-88 {
  border-top: 88px #f6f6f6 solid !important;
}
.wild-sand--br-88 {
  border-right: 88px #f6f6f6 solid !important;
}
.wild-sand--bl-88 {
  border-left: 88px #f6f6f6 solid !important;
}
.wild-sand--bb-88 {
  border-bottom: 88px #f6f6f6 solid !important;
}
.wild-sand--by-88 {
  border-top: 88px #f6f6f6 solid !important;
  border-bottom: 88px #f6f6f6 solid !important;
}
.wild-sand--bx-88 {
  border-right: 88px #f6f6f6 solid !important;
  border-left: 88px #f6f6f6 solid !important;
}
.wild-sand--ba-89 {
  border: 89px #f6f6f6 solid !important;
}
.wild-sand--bt-89 {
  border-top: 89px #f6f6f6 solid !important;
}
.wild-sand--br-89 {
  border-right: 89px #f6f6f6 solid !important;
}
.wild-sand--bl-89 {
  border-left: 89px #f6f6f6 solid !important;
}
.wild-sand--bb-89 {
  border-bottom: 89px #f6f6f6 solid !important;
}
.wild-sand--by-89 {
  border-top: 89px #f6f6f6 solid !important;
  border-bottom: 89px #f6f6f6 solid !important;
}
.wild-sand--bx-89 {
  border-right: 89px #f6f6f6 solid !important;
  border-left: 89px #f6f6f6 solid !important;
}
.wild-sand--ba-90 {
  border: 90px #f6f6f6 solid !important;
}
.wild-sand--bt-90 {
  border-top: 90px #f6f6f6 solid !important;
}
.wild-sand--br-90 {
  border-right: 90px #f6f6f6 solid !important;
}
.wild-sand--bl-90 {
  border-left: 90px #f6f6f6 solid !important;
}
.wild-sand--bb-90 {
  border-bottom: 90px #f6f6f6 solid !important;
}
.wild-sand--by-90 {
  border-top: 90px #f6f6f6 solid !important;
  border-bottom: 90px #f6f6f6 solid !important;
}
.wild-sand--bx-90 {
  border-right: 90px #f6f6f6 solid !important;
  border-left: 90px #f6f6f6 solid !important;
}
.wild-sand--ba-91 {
  border: 91px #f6f6f6 solid !important;
}
.wild-sand--bt-91 {
  border-top: 91px #f6f6f6 solid !important;
}
.wild-sand--br-91 {
  border-right: 91px #f6f6f6 solid !important;
}
.wild-sand--bl-91 {
  border-left: 91px #f6f6f6 solid !important;
}
.wild-sand--bb-91 {
  border-bottom: 91px #f6f6f6 solid !important;
}
.wild-sand--by-91 {
  border-top: 91px #f6f6f6 solid !important;
  border-bottom: 91px #f6f6f6 solid !important;
}
.wild-sand--bx-91 {
  border-right: 91px #f6f6f6 solid !important;
  border-left: 91px #f6f6f6 solid !important;
}
.wild-sand--ba-92 {
  border: 92px #f6f6f6 solid !important;
}
.wild-sand--bt-92 {
  border-top: 92px #f6f6f6 solid !important;
}
.wild-sand--br-92 {
  border-right: 92px #f6f6f6 solid !important;
}
.wild-sand--bl-92 {
  border-left: 92px #f6f6f6 solid !important;
}
.wild-sand--bb-92 {
  border-bottom: 92px #f6f6f6 solid !important;
}
.wild-sand--by-92 {
  border-top: 92px #f6f6f6 solid !important;
  border-bottom: 92px #f6f6f6 solid !important;
}
.wild-sand--bx-92 {
  border-right: 92px #f6f6f6 solid !important;
  border-left: 92px #f6f6f6 solid !important;
}
.wild-sand--ba-93 {
  border: 93px #f6f6f6 solid !important;
}
.wild-sand--bt-93 {
  border-top: 93px #f6f6f6 solid !important;
}
.wild-sand--br-93 {
  border-right: 93px #f6f6f6 solid !important;
}
.wild-sand--bl-93 {
  border-left: 93px #f6f6f6 solid !important;
}
.wild-sand--bb-93 {
  border-bottom: 93px #f6f6f6 solid !important;
}
.wild-sand--by-93 {
  border-top: 93px #f6f6f6 solid !important;
  border-bottom: 93px #f6f6f6 solid !important;
}
.wild-sand--bx-93 {
  border-right: 93px #f6f6f6 solid !important;
  border-left: 93px #f6f6f6 solid !important;
}
.wild-sand--ba-94 {
  border: 94px #f6f6f6 solid !important;
}
.wild-sand--bt-94 {
  border-top: 94px #f6f6f6 solid !important;
}
.wild-sand--br-94 {
  border-right: 94px #f6f6f6 solid !important;
}
.wild-sand--bl-94 {
  border-left: 94px #f6f6f6 solid !important;
}
.wild-sand--bb-94 {
  border-bottom: 94px #f6f6f6 solid !important;
}
.wild-sand--by-94 {
  border-top: 94px #f6f6f6 solid !important;
  border-bottom: 94px #f6f6f6 solid !important;
}
.wild-sand--bx-94 {
  border-right: 94px #f6f6f6 solid !important;
  border-left: 94px #f6f6f6 solid !important;
}
.wild-sand--ba-95 {
  border: 95px #f6f6f6 solid !important;
}
.wild-sand--bt-95 {
  border-top: 95px #f6f6f6 solid !important;
}
.wild-sand--br-95 {
  border-right: 95px #f6f6f6 solid !important;
}
.wild-sand--bl-95 {
  border-left: 95px #f6f6f6 solid !important;
}
.wild-sand--bb-95 {
  border-bottom: 95px #f6f6f6 solid !important;
}
.wild-sand--by-95 {
  border-top: 95px #f6f6f6 solid !important;
  border-bottom: 95px #f6f6f6 solid !important;
}
.wild-sand--bx-95 {
  border-right: 95px #f6f6f6 solid !important;
  border-left: 95px #f6f6f6 solid !important;
}
.wild-sand--ba-96 {
  border: 96px #f6f6f6 solid !important;
}
.wild-sand--bt-96 {
  border-top: 96px #f6f6f6 solid !important;
}
.wild-sand--br-96 {
  border-right: 96px #f6f6f6 solid !important;
}
.wild-sand--bl-96 {
  border-left: 96px #f6f6f6 solid !important;
}
.wild-sand--bb-96 {
  border-bottom: 96px #f6f6f6 solid !important;
}
.wild-sand--by-96 {
  border-top: 96px #f6f6f6 solid !important;
  border-bottom: 96px #f6f6f6 solid !important;
}
.wild-sand--bx-96 {
  border-right: 96px #f6f6f6 solid !important;
  border-left: 96px #f6f6f6 solid !important;
}
.wild-sand--ba-97 {
  border: 97px #f6f6f6 solid !important;
}
.wild-sand--bt-97 {
  border-top: 97px #f6f6f6 solid !important;
}
.wild-sand--br-97 {
  border-right: 97px #f6f6f6 solid !important;
}
.wild-sand--bl-97 {
  border-left: 97px #f6f6f6 solid !important;
}
.wild-sand--bb-97 {
  border-bottom: 97px #f6f6f6 solid !important;
}
.wild-sand--by-97 {
  border-top: 97px #f6f6f6 solid !important;
  border-bottom: 97px #f6f6f6 solid !important;
}
.wild-sand--bx-97 {
  border-right: 97px #f6f6f6 solid !important;
  border-left: 97px #f6f6f6 solid !important;
}
.wild-sand--ba-98 {
  border: 98px #f6f6f6 solid !important;
}
.wild-sand--bt-98 {
  border-top: 98px #f6f6f6 solid !important;
}
.wild-sand--br-98 {
  border-right: 98px #f6f6f6 solid !important;
}
.wild-sand--bl-98 {
  border-left: 98px #f6f6f6 solid !important;
}
.wild-sand--bb-98 {
  border-bottom: 98px #f6f6f6 solid !important;
}
.wild-sand--by-98 {
  border-top: 98px #f6f6f6 solid !important;
  border-bottom: 98px #f6f6f6 solid !important;
}
.wild-sand--bx-98 {
  border-right: 98px #f6f6f6 solid !important;
  border-left: 98px #f6f6f6 solid !important;
}
.wild-sand--ba-99 {
  border: 99px #f6f6f6 solid !important;
}
.wild-sand--bt-99 {
  border-top: 99px #f6f6f6 solid !important;
}
.wild-sand--br-99 {
  border-right: 99px #f6f6f6 solid !important;
}
.wild-sand--bl-99 {
  border-left: 99px #f6f6f6 solid !important;
}
.wild-sand--bb-99 {
  border-bottom: 99px #f6f6f6 solid !important;
}
.wild-sand--by-99 {
  border-top: 99px #f6f6f6 solid !important;
  border-bottom: 99px #f6f6f6 solid !important;
}
.wild-sand--bx-99 {
  border-right: 99px #f6f6f6 solid !important;
  border-left: 99px #f6f6f6 solid !important;
}
.wild-sand--ba-100 {
  border: 100px #f6f6f6 solid !important;
}
.wild-sand--bt-100 {
  border-top: 100px #f6f6f6 solid !important;
}
.wild-sand--br-100 {
  border-right: 100px #f6f6f6 solid !important;
}
.wild-sand--bl-100 {
  border-left: 100px #f6f6f6 solid !important;
}
.wild-sand--bb-100 {
  border-bottom: 100px #f6f6f6 solid !important;
}
.wild-sand--by-100 {
  border-top: 100px #f6f6f6 solid !important;
  border-bottom: 100px #f6f6f6 solid !important;
}
.wild-sand--bx-100 {
  border-right: 100px #f6f6f6 solid !important;
  border-left: 100px #f6f6f6 solid !important;
}
.silver-chalice--ba-1 {
  border: 1px #acacac solid !important;
}
.silver-chalice--bt-1 {
  border-top: 1px #acacac solid !important;
}
.silver-chalice--br-1 {
  border-right: 1px #acacac solid !important;
}
.silver-chalice--bl-1 {
  border-left: 1px #acacac solid !important;
}
.silver-chalice--bb-1 {
  border-bottom: 1px #acacac solid !important;
}
.silver-chalice--by-1 {
  border-top: 1px #acacac solid !important;
  border-bottom: 1px #acacac solid !important;
}
.silver-chalice--bx-1 {
  border-right: 1px #acacac solid !important;
  border-left: 1px #acacac solid !important;
}
.silver-chalice--ba-2 {
  border: 2px #acacac solid !important;
}
.silver-chalice--bt-2 {
  border-top: 2px #acacac solid !important;
}
.silver-chalice--br-2 {
  border-right: 2px #acacac solid !important;
}
.silver-chalice--bl-2 {
  border-left: 2px #acacac solid !important;
}
.silver-chalice--bb-2 {
  border-bottom: 2px #acacac solid !important;
}
.silver-chalice--by-2 {
  border-top: 2px #acacac solid !important;
  border-bottom: 2px #acacac solid !important;
}
.silver-chalice--bx-2 {
  border-right: 2px #acacac solid !important;
  border-left: 2px #acacac solid !important;
}
.silver-chalice--ba-3 {
  border: 3px #acacac solid !important;
}
.silver-chalice--bt-3 {
  border-top: 3px #acacac solid !important;
}
.silver-chalice--br-3 {
  border-right: 3px #acacac solid !important;
}
.silver-chalice--bl-3 {
  border-left: 3px #acacac solid !important;
}
.silver-chalice--bb-3 {
  border-bottom: 3px #acacac solid !important;
}
.silver-chalice--by-3 {
  border-top: 3px #acacac solid !important;
  border-bottom: 3px #acacac solid !important;
}
.silver-chalice--bx-3 {
  border-right: 3px #acacac solid !important;
  border-left: 3px #acacac solid !important;
}
.silver-chalice--ba-4 {
  border: 4px #acacac solid !important;
}
.silver-chalice--bt-4 {
  border-top: 4px #acacac solid !important;
}
.silver-chalice--br-4 {
  border-right: 4px #acacac solid !important;
}
.silver-chalice--bl-4 {
  border-left: 4px #acacac solid !important;
}
.silver-chalice--bb-4 {
  border-bottom: 4px #acacac solid !important;
}
.silver-chalice--by-4 {
  border-top: 4px #acacac solid !important;
  border-bottom: 4px #acacac solid !important;
}
.silver-chalice--bx-4 {
  border-right: 4px #acacac solid !important;
  border-left: 4px #acacac solid !important;
}
.silver-chalice--ba-5 {
  border: 5px #acacac solid !important;
}
.silver-chalice--bt-5 {
  border-top: 5px #acacac solid !important;
}
.silver-chalice--br-5 {
  border-right: 5px #acacac solid !important;
}
.silver-chalice--bl-5 {
  border-left: 5px #acacac solid !important;
}
.silver-chalice--bb-5 {
  border-bottom: 5px #acacac solid !important;
}
.silver-chalice--by-5 {
  border-top: 5px #acacac solid !important;
  border-bottom: 5px #acacac solid !important;
}
.silver-chalice--bx-5 {
  border-right: 5px #acacac solid !important;
  border-left: 5px #acacac solid !important;
}
.silver-chalice--ba-6 {
  border: 6px #acacac solid !important;
}
.silver-chalice--bt-6 {
  border-top: 6px #acacac solid !important;
}
.silver-chalice--br-6 {
  border-right: 6px #acacac solid !important;
}
.silver-chalice--bl-6 {
  border-left: 6px #acacac solid !important;
}
.silver-chalice--bb-6 {
  border-bottom: 6px #acacac solid !important;
}
.silver-chalice--by-6 {
  border-top: 6px #acacac solid !important;
  border-bottom: 6px #acacac solid !important;
}
.silver-chalice--bx-6 {
  border-right: 6px #acacac solid !important;
  border-left: 6px #acacac solid !important;
}
.silver-chalice--ba-7 {
  border: 7px #acacac solid !important;
}
.silver-chalice--bt-7 {
  border-top: 7px #acacac solid !important;
}
.silver-chalice--br-7 {
  border-right: 7px #acacac solid !important;
}
.silver-chalice--bl-7 {
  border-left: 7px #acacac solid !important;
}
.silver-chalice--bb-7 {
  border-bottom: 7px #acacac solid !important;
}
.silver-chalice--by-7 {
  border-top: 7px #acacac solid !important;
  border-bottom: 7px #acacac solid !important;
}
.silver-chalice--bx-7 {
  border-right: 7px #acacac solid !important;
  border-left: 7px #acacac solid !important;
}
.silver-chalice--ba-8 {
  border: 8px #acacac solid !important;
}
.silver-chalice--bt-8 {
  border-top: 8px #acacac solid !important;
}
.silver-chalice--br-8 {
  border-right: 8px #acacac solid !important;
}
.silver-chalice--bl-8 {
  border-left: 8px #acacac solid !important;
}
.silver-chalice--bb-8 {
  border-bottom: 8px #acacac solid !important;
}
.silver-chalice--by-8 {
  border-top: 8px #acacac solid !important;
  border-bottom: 8px #acacac solid !important;
}
.silver-chalice--bx-8 {
  border-right: 8px #acacac solid !important;
  border-left: 8px #acacac solid !important;
}
.silver-chalice--ba-9 {
  border: 9px #acacac solid !important;
}
.silver-chalice--bt-9 {
  border-top: 9px #acacac solid !important;
}
.silver-chalice--br-9 {
  border-right: 9px #acacac solid !important;
}
.silver-chalice--bl-9 {
  border-left: 9px #acacac solid !important;
}
.silver-chalice--bb-9 {
  border-bottom: 9px #acacac solid !important;
}
.silver-chalice--by-9 {
  border-top: 9px #acacac solid !important;
  border-bottom: 9px #acacac solid !important;
}
.silver-chalice--bx-9 {
  border-right: 9px #acacac solid !important;
  border-left: 9px #acacac solid !important;
}
.silver-chalice--ba-10 {
  border: 10px #acacac solid !important;
}
.silver-chalice--bt-10 {
  border-top: 10px #acacac solid !important;
}
.silver-chalice--br-10 {
  border-right: 10px #acacac solid !important;
}
.silver-chalice--bl-10 {
  border-left: 10px #acacac solid !important;
}
.silver-chalice--bb-10 {
  border-bottom: 10px #acacac solid !important;
}
.silver-chalice--by-10 {
  border-top: 10px #acacac solid !important;
  border-bottom: 10px #acacac solid !important;
}
.silver-chalice--bx-10 {
  border-right: 10px #acacac solid !important;
  border-left: 10px #acacac solid !important;
}
.silver-chalice--ba-11 {
  border: 11px #acacac solid !important;
}
.silver-chalice--bt-11 {
  border-top: 11px #acacac solid !important;
}
.silver-chalice--br-11 {
  border-right: 11px #acacac solid !important;
}
.silver-chalice--bl-11 {
  border-left: 11px #acacac solid !important;
}
.silver-chalice--bb-11 {
  border-bottom: 11px #acacac solid !important;
}
.silver-chalice--by-11 {
  border-top: 11px #acacac solid !important;
  border-bottom: 11px #acacac solid !important;
}
.silver-chalice--bx-11 {
  border-right: 11px #acacac solid !important;
  border-left: 11px #acacac solid !important;
}
.silver-chalice--ba-12 {
  border: 12px #acacac solid !important;
}
.silver-chalice--bt-12 {
  border-top: 12px #acacac solid !important;
}
.silver-chalice--br-12 {
  border-right: 12px #acacac solid !important;
}
.silver-chalice--bl-12 {
  border-left: 12px #acacac solid !important;
}
.silver-chalice--bb-12 {
  border-bottom: 12px #acacac solid !important;
}
.silver-chalice--by-12 {
  border-top: 12px #acacac solid !important;
  border-bottom: 12px #acacac solid !important;
}
.silver-chalice--bx-12 {
  border-right: 12px #acacac solid !important;
  border-left: 12px #acacac solid !important;
}
.silver-chalice--ba-13 {
  border: 13px #acacac solid !important;
}
.silver-chalice--bt-13 {
  border-top: 13px #acacac solid !important;
}
.silver-chalice--br-13 {
  border-right: 13px #acacac solid !important;
}
.silver-chalice--bl-13 {
  border-left: 13px #acacac solid !important;
}
.silver-chalice--bb-13 {
  border-bottom: 13px #acacac solid !important;
}
.silver-chalice--by-13 {
  border-top: 13px #acacac solid !important;
  border-bottom: 13px #acacac solid !important;
}
.silver-chalice--bx-13 {
  border-right: 13px #acacac solid !important;
  border-left: 13px #acacac solid !important;
}
.silver-chalice--ba-14 {
  border: 14px #acacac solid !important;
}
.silver-chalice--bt-14 {
  border-top: 14px #acacac solid !important;
}
.silver-chalice--br-14 {
  border-right: 14px #acacac solid !important;
}
.silver-chalice--bl-14 {
  border-left: 14px #acacac solid !important;
}
.silver-chalice--bb-14 {
  border-bottom: 14px #acacac solid !important;
}
.silver-chalice--by-14 {
  border-top: 14px #acacac solid !important;
  border-bottom: 14px #acacac solid !important;
}
.silver-chalice--bx-14 {
  border-right: 14px #acacac solid !important;
  border-left: 14px #acacac solid !important;
}
.silver-chalice--ba-15 {
  border: 15px #acacac solid !important;
}
.silver-chalice--bt-15 {
  border-top: 15px #acacac solid !important;
}
.silver-chalice--br-15 {
  border-right: 15px #acacac solid !important;
}
.silver-chalice--bl-15 {
  border-left: 15px #acacac solid !important;
}
.silver-chalice--bb-15 {
  border-bottom: 15px #acacac solid !important;
}
.silver-chalice--by-15 {
  border-top: 15px #acacac solid !important;
  border-bottom: 15px #acacac solid !important;
}
.silver-chalice--bx-15 {
  border-right: 15px #acacac solid !important;
  border-left: 15px #acacac solid !important;
}
.silver-chalice--ba-16 {
  border: 16px #acacac solid !important;
}
.silver-chalice--bt-16 {
  border-top: 16px #acacac solid !important;
}
.silver-chalice--br-16 {
  border-right: 16px #acacac solid !important;
}
.silver-chalice--bl-16 {
  border-left: 16px #acacac solid !important;
}
.silver-chalice--bb-16 {
  border-bottom: 16px #acacac solid !important;
}
.silver-chalice--by-16 {
  border-top: 16px #acacac solid !important;
  border-bottom: 16px #acacac solid !important;
}
.silver-chalice--bx-16 {
  border-right: 16px #acacac solid !important;
  border-left: 16px #acacac solid !important;
}
.silver-chalice--ba-17 {
  border: 17px #acacac solid !important;
}
.silver-chalice--bt-17 {
  border-top: 17px #acacac solid !important;
}
.silver-chalice--br-17 {
  border-right: 17px #acacac solid !important;
}
.silver-chalice--bl-17 {
  border-left: 17px #acacac solid !important;
}
.silver-chalice--bb-17 {
  border-bottom: 17px #acacac solid !important;
}
.silver-chalice--by-17 {
  border-top: 17px #acacac solid !important;
  border-bottom: 17px #acacac solid !important;
}
.silver-chalice--bx-17 {
  border-right: 17px #acacac solid !important;
  border-left: 17px #acacac solid !important;
}
.silver-chalice--ba-18 {
  border: 18px #acacac solid !important;
}
.silver-chalice--bt-18 {
  border-top: 18px #acacac solid !important;
}
.silver-chalice--br-18 {
  border-right: 18px #acacac solid !important;
}
.silver-chalice--bl-18 {
  border-left: 18px #acacac solid !important;
}
.silver-chalice--bb-18 {
  border-bottom: 18px #acacac solid !important;
}
.silver-chalice--by-18 {
  border-top: 18px #acacac solid !important;
  border-bottom: 18px #acacac solid !important;
}
.silver-chalice--bx-18 {
  border-right: 18px #acacac solid !important;
  border-left: 18px #acacac solid !important;
}
.silver-chalice--ba-19 {
  border: 19px #acacac solid !important;
}
.silver-chalice--bt-19 {
  border-top: 19px #acacac solid !important;
}
.silver-chalice--br-19 {
  border-right: 19px #acacac solid !important;
}
.silver-chalice--bl-19 {
  border-left: 19px #acacac solid !important;
}
.silver-chalice--bb-19 {
  border-bottom: 19px #acacac solid !important;
}
.silver-chalice--by-19 {
  border-top: 19px #acacac solid !important;
  border-bottom: 19px #acacac solid !important;
}
.silver-chalice--bx-19 {
  border-right: 19px #acacac solid !important;
  border-left: 19px #acacac solid !important;
}
.silver-chalice--ba-20 {
  border: 20px #acacac solid !important;
}
.silver-chalice--bt-20 {
  border-top: 20px #acacac solid !important;
}
.silver-chalice--br-20 {
  border-right: 20px #acacac solid !important;
}
.silver-chalice--bl-20 {
  border-left: 20px #acacac solid !important;
}
.silver-chalice--bb-20 {
  border-bottom: 20px #acacac solid !important;
}
.silver-chalice--by-20 {
  border-top: 20px #acacac solid !important;
  border-bottom: 20px #acacac solid !important;
}
.silver-chalice--bx-20 {
  border-right: 20px #acacac solid !important;
  border-left: 20px #acacac solid !important;
}
.silver-chalice--ba-21 {
  border: 21px #acacac solid !important;
}
.silver-chalice--bt-21 {
  border-top: 21px #acacac solid !important;
}
.silver-chalice--br-21 {
  border-right: 21px #acacac solid !important;
}
.silver-chalice--bl-21 {
  border-left: 21px #acacac solid !important;
}
.silver-chalice--bb-21 {
  border-bottom: 21px #acacac solid !important;
}
.silver-chalice--by-21 {
  border-top: 21px #acacac solid !important;
  border-bottom: 21px #acacac solid !important;
}
.silver-chalice--bx-21 {
  border-right: 21px #acacac solid !important;
  border-left: 21px #acacac solid !important;
}
.silver-chalice--ba-22 {
  border: 22px #acacac solid !important;
}
.silver-chalice--bt-22 {
  border-top: 22px #acacac solid !important;
}
.silver-chalice--br-22 {
  border-right: 22px #acacac solid !important;
}
.silver-chalice--bl-22 {
  border-left: 22px #acacac solid !important;
}
.silver-chalice--bb-22 {
  border-bottom: 22px #acacac solid !important;
}
.silver-chalice--by-22 {
  border-top: 22px #acacac solid !important;
  border-bottom: 22px #acacac solid !important;
}
.silver-chalice--bx-22 {
  border-right: 22px #acacac solid !important;
  border-left: 22px #acacac solid !important;
}
.silver-chalice--ba-23 {
  border: 23px #acacac solid !important;
}
.silver-chalice--bt-23 {
  border-top: 23px #acacac solid !important;
}
.silver-chalice--br-23 {
  border-right: 23px #acacac solid !important;
}
.silver-chalice--bl-23 {
  border-left: 23px #acacac solid !important;
}
.silver-chalice--bb-23 {
  border-bottom: 23px #acacac solid !important;
}
.silver-chalice--by-23 {
  border-top: 23px #acacac solid !important;
  border-bottom: 23px #acacac solid !important;
}
.silver-chalice--bx-23 {
  border-right: 23px #acacac solid !important;
  border-left: 23px #acacac solid !important;
}
.silver-chalice--ba-24 {
  border: 24px #acacac solid !important;
}
.silver-chalice--bt-24 {
  border-top: 24px #acacac solid !important;
}
.silver-chalice--br-24 {
  border-right: 24px #acacac solid !important;
}
.silver-chalice--bl-24 {
  border-left: 24px #acacac solid !important;
}
.silver-chalice--bb-24 {
  border-bottom: 24px #acacac solid !important;
}
.silver-chalice--by-24 {
  border-top: 24px #acacac solid !important;
  border-bottom: 24px #acacac solid !important;
}
.silver-chalice--bx-24 {
  border-right: 24px #acacac solid !important;
  border-left: 24px #acacac solid !important;
}
.silver-chalice--ba-25 {
  border: 25px #acacac solid !important;
}
.silver-chalice--bt-25 {
  border-top: 25px #acacac solid !important;
}
.silver-chalice--br-25 {
  border-right: 25px #acacac solid !important;
}
.silver-chalice--bl-25 {
  border-left: 25px #acacac solid !important;
}
.silver-chalice--bb-25 {
  border-bottom: 25px #acacac solid !important;
}
.silver-chalice--by-25 {
  border-top: 25px #acacac solid !important;
  border-bottom: 25px #acacac solid !important;
}
.silver-chalice--bx-25 {
  border-right: 25px #acacac solid !important;
  border-left: 25px #acacac solid !important;
}
.silver-chalice--ba-26 {
  border: 26px #acacac solid !important;
}
.silver-chalice--bt-26 {
  border-top: 26px #acacac solid !important;
}
.silver-chalice--br-26 {
  border-right: 26px #acacac solid !important;
}
.silver-chalice--bl-26 {
  border-left: 26px #acacac solid !important;
}
.silver-chalice--bb-26 {
  border-bottom: 26px #acacac solid !important;
}
.silver-chalice--by-26 {
  border-top: 26px #acacac solid !important;
  border-bottom: 26px #acacac solid !important;
}
.silver-chalice--bx-26 {
  border-right: 26px #acacac solid !important;
  border-left: 26px #acacac solid !important;
}
.silver-chalice--ba-27 {
  border: 27px #acacac solid !important;
}
.silver-chalice--bt-27 {
  border-top: 27px #acacac solid !important;
}
.silver-chalice--br-27 {
  border-right: 27px #acacac solid !important;
}
.silver-chalice--bl-27 {
  border-left: 27px #acacac solid !important;
}
.silver-chalice--bb-27 {
  border-bottom: 27px #acacac solid !important;
}
.silver-chalice--by-27 {
  border-top: 27px #acacac solid !important;
  border-bottom: 27px #acacac solid !important;
}
.silver-chalice--bx-27 {
  border-right: 27px #acacac solid !important;
  border-left: 27px #acacac solid !important;
}
.silver-chalice--ba-28 {
  border: 28px #acacac solid !important;
}
.silver-chalice--bt-28 {
  border-top: 28px #acacac solid !important;
}
.silver-chalice--br-28 {
  border-right: 28px #acacac solid !important;
}
.silver-chalice--bl-28 {
  border-left: 28px #acacac solid !important;
}
.silver-chalice--bb-28 {
  border-bottom: 28px #acacac solid !important;
}
.silver-chalice--by-28 {
  border-top: 28px #acacac solid !important;
  border-bottom: 28px #acacac solid !important;
}
.silver-chalice--bx-28 {
  border-right: 28px #acacac solid !important;
  border-left: 28px #acacac solid !important;
}
.silver-chalice--ba-29 {
  border: 29px #acacac solid !important;
}
.silver-chalice--bt-29 {
  border-top: 29px #acacac solid !important;
}
.silver-chalice--br-29 {
  border-right: 29px #acacac solid !important;
}
.silver-chalice--bl-29 {
  border-left: 29px #acacac solid !important;
}
.silver-chalice--bb-29 {
  border-bottom: 29px #acacac solid !important;
}
.silver-chalice--by-29 {
  border-top: 29px #acacac solid !important;
  border-bottom: 29px #acacac solid !important;
}
.silver-chalice--bx-29 {
  border-right: 29px #acacac solid !important;
  border-left: 29px #acacac solid !important;
}
.silver-chalice--ba-30 {
  border: 30px #acacac solid !important;
}
.silver-chalice--bt-30 {
  border-top: 30px #acacac solid !important;
}
.silver-chalice--br-30 {
  border-right: 30px #acacac solid !important;
}
.silver-chalice--bl-30 {
  border-left: 30px #acacac solid !important;
}
.silver-chalice--bb-30 {
  border-bottom: 30px #acacac solid !important;
}
.silver-chalice--by-30 {
  border-top: 30px #acacac solid !important;
  border-bottom: 30px #acacac solid !important;
}
.silver-chalice--bx-30 {
  border-right: 30px #acacac solid !important;
  border-left: 30px #acacac solid !important;
}
.silver-chalice--ba-31 {
  border: 31px #acacac solid !important;
}
.silver-chalice--bt-31 {
  border-top: 31px #acacac solid !important;
}
.silver-chalice--br-31 {
  border-right: 31px #acacac solid !important;
}
.silver-chalice--bl-31 {
  border-left: 31px #acacac solid !important;
}
.silver-chalice--bb-31 {
  border-bottom: 31px #acacac solid !important;
}
.silver-chalice--by-31 {
  border-top: 31px #acacac solid !important;
  border-bottom: 31px #acacac solid !important;
}
.silver-chalice--bx-31 {
  border-right: 31px #acacac solid !important;
  border-left: 31px #acacac solid !important;
}
.silver-chalice--ba-32 {
  border: 32px #acacac solid !important;
}
.silver-chalice--bt-32 {
  border-top: 32px #acacac solid !important;
}
.silver-chalice--br-32 {
  border-right: 32px #acacac solid !important;
}
.silver-chalice--bl-32 {
  border-left: 32px #acacac solid !important;
}
.silver-chalice--bb-32 {
  border-bottom: 32px #acacac solid !important;
}
.silver-chalice--by-32 {
  border-top: 32px #acacac solid !important;
  border-bottom: 32px #acacac solid !important;
}
.silver-chalice--bx-32 {
  border-right: 32px #acacac solid !important;
  border-left: 32px #acacac solid !important;
}
.silver-chalice--ba-33 {
  border: 33px #acacac solid !important;
}
.silver-chalice--bt-33 {
  border-top: 33px #acacac solid !important;
}
.silver-chalice--br-33 {
  border-right: 33px #acacac solid !important;
}
.silver-chalice--bl-33 {
  border-left: 33px #acacac solid !important;
}
.silver-chalice--bb-33 {
  border-bottom: 33px #acacac solid !important;
}
.silver-chalice--by-33 {
  border-top: 33px #acacac solid !important;
  border-bottom: 33px #acacac solid !important;
}
.silver-chalice--bx-33 {
  border-right: 33px #acacac solid !important;
  border-left: 33px #acacac solid !important;
}
.silver-chalice--ba-34 {
  border: 34px #acacac solid !important;
}
.silver-chalice--bt-34 {
  border-top: 34px #acacac solid !important;
}
.silver-chalice--br-34 {
  border-right: 34px #acacac solid !important;
}
.silver-chalice--bl-34 {
  border-left: 34px #acacac solid !important;
}
.silver-chalice--bb-34 {
  border-bottom: 34px #acacac solid !important;
}
.silver-chalice--by-34 {
  border-top: 34px #acacac solid !important;
  border-bottom: 34px #acacac solid !important;
}
.silver-chalice--bx-34 {
  border-right: 34px #acacac solid !important;
  border-left: 34px #acacac solid !important;
}
.silver-chalice--ba-35 {
  border: 35px #acacac solid !important;
}
.silver-chalice--bt-35 {
  border-top: 35px #acacac solid !important;
}
.silver-chalice--br-35 {
  border-right: 35px #acacac solid !important;
}
.silver-chalice--bl-35 {
  border-left: 35px #acacac solid !important;
}
.silver-chalice--bb-35 {
  border-bottom: 35px #acacac solid !important;
}
.silver-chalice--by-35 {
  border-top: 35px #acacac solid !important;
  border-bottom: 35px #acacac solid !important;
}
.silver-chalice--bx-35 {
  border-right: 35px #acacac solid !important;
  border-left: 35px #acacac solid !important;
}
.silver-chalice--ba-36 {
  border: 36px #acacac solid !important;
}
.silver-chalice--bt-36 {
  border-top: 36px #acacac solid !important;
}
.silver-chalice--br-36 {
  border-right: 36px #acacac solid !important;
}
.silver-chalice--bl-36 {
  border-left: 36px #acacac solid !important;
}
.silver-chalice--bb-36 {
  border-bottom: 36px #acacac solid !important;
}
.silver-chalice--by-36 {
  border-top: 36px #acacac solid !important;
  border-bottom: 36px #acacac solid !important;
}
.silver-chalice--bx-36 {
  border-right: 36px #acacac solid !important;
  border-left: 36px #acacac solid !important;
}
.silver-chalice--ba-37 {
  border: 37px #acacac solid !important;
}
.silver-chalice--bt-37 {
  border-top: 37px #acacac solid !important;
}
.silver-chalice--br-37 {
  border-right: 37px #acacac solid !important;
}
.silver-chalice--bl-37 {
  border-left: 37px #acacac solid !important;
}
.silver-chalice--bb-37 {
  border-bottom: 37px #acacac solid !important;
}
.silver-chalice--by-37 {
  border-top: 37px #acacac solid !important;
  border-bottom: 37px #acacac solid !important;
}
.silver-chalice--bx-37 {
  border-right: 37px #acacac solid !important;
  border-left: 37px #acacac solid !important;
}
.silver-chalice--ba-38 {
  border: 38px #acacac solid !important;
}
.silver-chalice--bt-38 {
  border-top: 38px #acacac solid !important;
}
.silver-chalice--br-38 {
  border-right: 38px #acacac solid !important;
}
.silver-chalice--bl-38 {
  border-left: 38px #acacac solid !important;
}
.silver-chalice--bb-38 {
  border-bottom: 38px #acacac solid !important;
}
.silver-chalice--by-38 {
  border-top: 38px #acacac solid !important;
  border-bottom: 38px #acacac solid !important;
}
.silver-chalice--bx-38 {
  border-right: 38px #acacac solid !important;
  border-left: 38px #acacac solid !important;
}
.silver-chalice--ba-39 {
  border: 39px #acacac solid !important;
}
.silver-chalice--bt-39 {
  border-top: 39px #acacac solid !important;
}
.silver-chalice--br-39 {
  border-right: 39px #acacac solid !important;
}
.silver-chalice--bl-39 {
  border-left: 39px #acacac solid !important;
}
.silver-chalice--bb-39 {
  border-bottom: 39px #acacac solid !important;
}
.silver-chalice--by-39 {
  border-top: 39px #acacac solid !important;
  border-bottom: 39px #acacac solid !important;
}
.silver-chalice--bx-39 {
  border-right: 39px #acacac solid !important;
  border-left: 39px #acacac solid !important;
}
.silver-chalice--ba-40 {
  border: 40px #acacac solid !important;
}
.silver-chalice--bt-40 {
  border-top: 40px #acacac solid !important;
}
.silver-chalice--br-40 {
  border-right: 40px #acacac solid !important;
}
.silver-chalice--bl-40 {
  border-left: 40px #acacac solid !important;
}
.silver-chalice--bb-40 {
  border-bottom: 40px #acacac solid !important;
}
.silver-chalice--by-40 {
  border-top: 40px #acacac solid !important;
  border-bottom: 40px #acacac solid !important;
}
.silver-chalice--bx-40 {
  border-right: 40px #acacac solid !important;
  border-left: 40px #acacac solid !important;
}
.silver-chalice--ba-41 {
  border: 41px #acacac solid !important;
}
.silver-chalice--bt-41 {
  border-top: 41px #acacac solid !important;
}
.silver-chalice--br-41 {
  border-right: 41px #acacac solid !important;
}
.silver-chalice--bl-41 {
  border-left: 41px #acacac solid !important;
}
.silver-chalice--bb-41 {
  border-bottom: 41px #acacac solid !important;
}
.silver-chalice--by-41 {
  border-top: 41px #acacac solid !important;
  border-bottom: 41px #acacac solid !important;
}
.silver-chalice--bx-41 {
  border-right: 41px #acacac solid !important;
  border-left: 41px #acacac solid !important;
}
.silver-chalice--ba-42 {
  border: 42px #acacac solid !important;
}
.silver-chalice--bt-42 {
  border-top: 42px #acacac solid !important;
}
.silver-chalice--br-42 {
  border-right: 42px #acacac solid !important;
}
.silver-chalice--bl-42 {
  border-left: 42px #acacac solid !important;
}
.silver-chalice--bb-42 {
  border-bottom: 42px #acacac solid !important;
}
.silver-chalice--by-42 {
  border-top: 42px #acacac solid !important;
  border-bottom: 42px #acacac solid !important;
}
.silver-chalice--bx-42 {
  border-right: 42px #acacac solid !important;
  border-left: 42px #acacac solid !important;
}
.silver-chalice--ba-43 {
  border: 43px #acacac solid !important;
}
.silver-chalice--bt-43 {
  border-top: 43px #acacac solid !important;
}
.silver-chalice--br-43 {
  border-right: 43px #acacac solid !important;
}
.silver-chalice--bl-43 {
  border-left: 43px #acacac solid !important;
}
.silver-chalice--bb-43 {
  border-bottom: 43px #acacac solid !important;
}
.silver-chalice--by-43 {
  border-top: 43px #acacac solid !important;
  border-bottom: 43px #acacac solid !important;
}
.silver-chalice--bx-43 {
  border-right: 43px #acacac solid !important;
  border-left: 43px #acacac solid !important;
}
.silver-chalice--ba-44 {
  border: 44px #acacac solid !important;
}
.silver-chalice--bt-44 {
  border-top: 44px #acacac solid !important;
}
.silver-chalice--br-44 {
  border-right: 44px #acacac solid !important;
}
.silver-chalice--bl-44 {
  border-left: 44px #acacac solid !important;
}
.silver-chalice--bb-44 {
  border-bottom: 44px #acacac solid !important;
}
.silver-chalice--by-44 {
  border-top: 44px #acacac solid !important;
  border-bottom: 44px #acacac solid !important;
}
.silver-chalice--bx-44 {
  border-right: 44px #acacac solid !important;
  border-left: 44px #acacac solid !important;
}
.silver-chalice--ba-45 {
  border: 45px #acacac solid !important;
}
.silver-chalice--bt-45 {
  border-top: 45px #acacac solid !important;
}
.silver-chalice--br-45 {
  border-right: 45px #acacac solid !important;
}
.silver-chalice--bl-45 {
  border-left: 45px #acacac solid !important;
}
.silver-chalice--bb-45 {
  border-bottom: 45px #acacac solid !important;
}
.silver-chalice--by-45 {
  border-top: 45px #acacac solid !important;
  border-bottom: 45px #acacac solid !important;
}
.silver-chalice--bx-45 {
  border-right: 45px #acacac solid !important;
  border-left: 45px #acacac solid !important;
}
.silver-chalice--ba-46 {
  border: 46px #acacac solid !important;
}
.silver-chalice--bt-46 {
  border-top: 46px #acacac solid !important;
}
.silver-chalice--br-46 {
  border-right: 46px #acacac solid !important;
}
.silver-chalice--bl-46 {
  border-left: 46px #acacac solid !important;
}
.silver-chalice--bb-46 {
  border-bottom: 46px #acacac solid !important;
}
.silver-chalice--by-46 {
  border-top: 46px #acacac solid !important;
  border-bottom: 46px #acacac solid !important;
}
.silver-chalice--bx-46 {
  border-right: 46px #acacac solid !important;
  border-left: 46px #acacac solid !important;
}
.silver-chalice--ba-47 {
  border: 47px #acacac solid !important;
}
.silver-chalice--bt-47 {
  border-top: 47px #acacac solid !important;
}
.silver-chalice--br-47 {
  border-right: 47px #acacac solid !important;
}
.silver-chalice--bl-47 {
  border-left: 47px #acacac solid !important;
}
.silver-chalice--bb-47 {
  border-bottom: 47px #acacac solid !important;
}
.silver-chalice--by-47 {
  border-top: 47px #acacac solid !important;
  border-bottom: 47px #acacac solid !important;
}
.silver-chalice--bx-47 {
  border-right: 47px #acacac solid !important;
  border-left: 47px #acacac solid !important;
}
.silver-chalice--ba-48 {
  border: 48px #acacac solid !important;
}
.silver-chalice--bt-48 {
  border-top: 48px #acacac solid !important;
}
.silver-chalice--br-48 {
  border-right: 48px #acacac solid !important;
}
.silver-chalice--bl-48 {
  border-left: 48px #acacac solid !important;
}
.silver-chalice--bb-48 {
  border-bottom: 48px #acacac solid !important;
}
.silver-chalice--by-48 {
  border-top: 48px #acacac solid !important;
  border-bottom: 48px #acacac solid !important;
}
.silver-chalice--bx-48 {
  border-right: 48px #acacac solid !important;
  border-left: 48px #acacac solid !important;
}
.silver-chalice--ba-49 {
  border: 49px #acacac solid !important;
}
.silver-chalice--bt-49 {
  border-top: 49px #acacac solid !important;
}
.silver-chalice--br-49 {
  border-right: 49px #acacac solid !important;
}
.silver-chalice--bl-49 {
  border-left: 49px #acacac solid !important;
}
.silver-chalice--bb-49 {
  border-bottom: 49px #acacac solid !important;
}
.silver-chalice--by-49 {
  border-top: 49px #acacac solid !important;
  border-bottom: 49px #acacac solid !important;
}
.silver-chalice--bx-49 {
  border-right: 49px #acacac solid !important;
  border-left: 49px #acacac solid !important;
}
.silver-chalice--ba-50 {
  border: 50px #acacac solid !important;
}
.silver-chalice--bt-50 {
  border-top: 50px #acacac solid !important;
}
.silver-chalice--br-50 {
  border-right: 50px #acacac solid !important;
}
.silver-chalice--bl-50 {
  border-left: 50px #acacac solid !important;
}
.silver-chalice--bb-50 {
  border-bottom: 50px #acacac solid !important;
}
.silver-chalice--by-50 {
  border-top: 50px #acacac solid !important;
  border-bottom: 50px #acacac solid !important;
}
.silver-chalice--bx-50 {
  border-right: 50px #acacac solid !important;
  border-left: 50px #acacac solid !important;
}
.silver-chalice--ba-51 {
  border: 51px #acacac solid !important;
}
.silver-chalice--bt-51 {
  border-top: 51px #acacac solid !important;
}
.silver-chalice--br-51 {
  border-right: 51px #acacac solid !important;
}
.silver-chalice--bl-51 {
  border-left: 51px #acacac solid !important;
}
.silver-chalice--bb-51 {
  border-bottom: 51px #acacac solid !important;
}
.silver-chalice--by-51 {
  border-top: 51px #acacac solid !important;
  border-bottom: 51px #acacac solid !important;
}
.silver-chalice--bx-51 {
  border-right: 51px #acacac solid !important;
  border-left: 51px #acacac solid !important;
}
.silver-chalice--ba-52 {
  border: 52px #acacac solid !important;
}
.silver-chalice--bt-52 {
  border-top: 52px #acacac solid !important;
}
.silver-chalice--br-52 {
  border-right: 52px #acacac solid !important;
}
.silver-chalice--bl-52 {
  border-left: 52px #acacac solid !important;
}
.silver-chalice--bb-52 {
  border-bottom: 52px #acacac solid !important;
}
.silver-chalice--by-52 {
  border-top: 52px #acacac solid !important;
  border-bottom: 52px #acacac solid !important;
}
.silver-chalice--bx-52 {
  border-right: 52px #acacac solid !important;
  border-left: 52px #acacac solid !important;
}
.silver-chalice--ba-53 {
  border: 53px #acacac solid !important;
}
.silver-chalice--bt-53 {
  border-top: 53px #acacac solid !important;
}
.silver-chalice--br-53 {
  border-right: 53px #acacac solid !important;
}
.silver-chalice--bl-53 {
  border-left: 53px #acacac solid !important;
}
.silver-chalice--bb-53 {
  border-bottom: 53px #acacac solid !important;
}
.silver-chalice--by-53 {
  border-top: 53px #acacac solid !important;
  border-bottom: 53px #acacac solid !important;
}
.silver-chalice--bx-53 {
  border-right: 53px #acacac solid !important;
  border-left: 53px #acacac solid !important;
}
.silver-chalice--ba-54 {
  border: 54px #acacac solid !important;
}
.silver-chalice--bt-54 {
  border-top: 54px #acacac solid !important;
}
.silver-chalice--br-54 {
  border-right: 54px #acacac solid !important;
}
.silver-chalice--bl-54 {
  border-left: 54px #acacac solid !important;
}
.silver-chalice--bb-54 {
  border-bottom: 54px #acacac solid !important;
}
.silver-chalice--by-54 {
  border-top: 54px #acacac solid !important;
  border-bottom: 54px #acacac solid !important;
}
.silver-chalice--bx-54 {
  border-right: 54px #acacac solid !important;
  border-left: 54px #acacac solid !important;
}
.silver-chalice--ba-55 {
  border: 55px #acacac solid !important;
}
.silver-chalice--bt-55 {
  border-top: 55px #acacac solid !important;
}
.silver-chalice--br-55 {
  border-right: 55px #acacac solid !important;
}
.silver-chalice--bl-55 {
  border-left: 55px #acacac solid !important;
}
.silver-chalice--bb-55 {
  border-bottom: 55px #acacac solid !important;
}
.silver-chalice--by-55 {
  border-top: 55px #acacac solid !important;
  border-bottom: 55px #acacac solid !important;
}
.silver-chalice--bx-55 {
  border-right: 55px #acacac solid !important;
  border-left: 55px #acacac solid !important;
}
.silver-chalice--ba-56 {
  border: 56px #acacac solid !important;
}
.silver-chalice--bt-56 {
  border-top: 56px #acacac solid !important;
}
.silver-chalice--br-56 {
  border-right: 56px #acacac solid !important;
}
.silver-chalice--bl-56 {
  border-left: 56px #acacac solid !important;
}
.silver-chalice--bb-56 {
  border-bottom: 56px #acacac solid !important;
}
.silver-chalice--by-56 {
  border-top: 56px #acacac solid !important;
  border-bottom: 56px #acacac solid !important;
}
.silver-chalice--bx-56 {
  border-right: 56px #acacac solid !important;
  border-left: 56px #acacac solid !important;
}
.silver-chalice--ba-57 {
  border: 57px #acacac solid !important;
}
.silver-chalice--bt-57 {
  border-top: 57px #acacac solid !important;
}
.silver-chalice--br-57 {
  border-right: 57px #acacac solid !important;
}
.silver-chalice--bl-57 {
  border-left: 57px #acacac solid !important;
}
.silver-chalice--bb-57 {
  border-bottom: 57px #acacac solid !important;
}
.silver-chalice--by-57 {
  border-top: 57px #acacac solid !important;
  border-bottom: 57px #acacac solid !important;
}
.silver-chalice--bx-57 {
  border-right: 57px #acacac solid !important;
  border-left: 57px #acacac solid !important;
}
.silver-chalice--ba-58 {
  border: 58px #acacac solid !important;
}
.silver-chalice--bt-58 {
  border-top: 58px #acacac solid !important;
}
.silver-chalice--br-58 {
  border-right: 58px #acacac solid !important;
}
.silver-chalice--bl-58 {
  border-left: 58px #acacac solid !important;
}
.silver-chalice--bb-58 {
  border-bottom: 58px #acacac solid !important;
}
.silver-chalice--by-58 {
  border-top: 58px #acacac solid !important;
  border-bottom: 58px #acacac solid !important;
}
.silver-chalice--bx-58 {
  border-right: 58px #acacac solid !important;
  border-left: 58px #acacac solid !important;
}
.silver-chalice--ba-59 {
  border: 59px #acacac solid !important;
}
.silver-chalice--bt-59 {
  border-top: 59px #acacac solid !important;
}
.silver-chalice--br-59 {
  border-right: 59px #acacac solid !important;
}
.silver-chalice--bl-59 {
  border-left: 59px #acacac solid !important;
}
.silver-chalice--bb-59 {
  border-bottom: 59px #acacac solid !important;
}
.silver-chalice--by-59 {
  border-top: 59px #acacac solid !important;
  border-bottom: 59px #acacac solid !important;
}
.silver-chalice--bx-59 {
  border-right: 59px #acacac solid !important;
  border-left: 59px #acacac solid !important;
}
.silver-chalice--ba-60 {
  border: 60px #acacac solid !important;
}
.silver-chalice--bt-60 {
  border-top: 60px #acacac solid !important;
}
.silver-chalice--br-60 {
  border-right: 60px #acacac solid !important;
}
.silver-chalice--bl-60 {
  border-left: 60px #acacac solid !important;
}
.silver-chalice--bb-60 {
  border-bottom: 60px #acacac solid !important;
}
.silver-chalice--by-60 {
  border-top: 60px #acacac solid !important;
  border-bottom: 60px #acacac solid !important;
}
.silver-chalice--bx-60 {
  border-right: 60px #acacac solid !important;
  border-left: 60px #acacac solid !important;
}
.silver-chalice--ba-61 {
  border: 61px #acacac solid !important;
}
.silver-chalice--bt-61 {
  border-top: 61px #acacac solid !important;
}
.silver-chalice--br-61 {
  border-right: 61px #acacac solid !important;
}
.silver-chalice--bl-61 {
  border-left: 61px #acacac solid !important;
}
.silver-chalice--bb-61 {
  border-bottom: 61px #acacac solid !important;
}
.silver-chalice--by-61 {
  border-top: 61px #acacac solid !important;
  border-bottom: 61px #acacac solid !important;
}
.silver-chalice--bx-61 {
  border-right: 61px #acacac solid !important;
  border-left: 61px #acacac solid !important;
}
.silver-chalice--ba-62 {
  border: 62px #acacac solid !important;
}
.silver-chalice--bt-62 {
  border-top: 62px #acacac solid !important;
}
.silver-chalice--br-62 {
  border-right: 62px #acacac solid !important;
}
.silver-chalice--bl-62 {
  border-left: 62px #acacac solid !important;
}
.silver-chalice--bb-62 {
  border-bottom: 62px #acacac solid !important;
}
.silver-chalice--by-62 {
  border-top: 62px #acacac solid !important;
  border-bottom: 62px #acacac solid !important;
}
.silver-chalice--bx-62 {
  border-right: 62px #acacac solid !important;
  border-left: 62px #acacac solid !important;
}
.silver-chalice--ba-63 {
  border: 63px #acacac solid !important;
}
.silver-chalice--bt-63 {
  border-top: 63px #acacac solid !important;
}
.silver-chalice--br-63 {
  border-right: 63px #acacac solid !important;
}
.silver-chalice--bl-63 {
  border-left: 63px #acacac solid !important;
}
.silver-chalice--bb-63 {
  border-bottom: 63px #acacac solid !important;
}
.silver-chalice--by-63 {
  border-top: 63px #acacac solid !important;
  border-bottom: 63px #acacac solid !important;
}
.silver-chalice--bx-63 {
  border-right: 63px #acacac solid !important;
  border-left: 63px #acacac solid !important;
}
.silver-chalice--ba-64 {
  border: 64px #acacac solid !important;
}
.silver-chalice--bt-64 {
  border-top: 64px #acacac solid !important;
}
.silver-chalice--br-64 {
  border-right: 64px #acacac solid !important;
}
.silver-chalice--bl-64 {
  border-left: 64px #acacac solid !important;
}
.silver-chalice--bb-64 {
  border-bottom: 64px #acacac solid !important;
}
.silver-chalice--by-64 {
  border-top: 64px #acacac solid !important;
  border-bottom: 64px #acacac solid !important;
}
.silver-chalice--bx-64 {
  border-right: 64px #acacac solid !important;
  border-left: 64px #acacac solid !important;
}
.silver-chalice--ba-65 {
  border: 65px #acacac solid !important;
}
.silver-chalice--bt-65 {
  border-top: 65px #acacac solid !important;
}
.silver-chalice--br-65 {
  border-right: 65px #acacac solid !important;
}
.silver-chalice--bl-65 {
  border-left: 65px #acacac solid !important;
}
.silver-chalice--bb-65 {
  border-bottom: 65px #acacac solid !important;
}
.silver-chalice--by-65 {
  border-top: 65px #acacac solid !important;
  border-bottom: 65px #acacac solid !important;
}
.silver-chalice--bx-65 {
  border-right: 65px #acacac solid !important;
  border-left: 65px #acacac solid !important;
}
.silver-chalice--ba-66 {
  border: 66px #acacac solid !important;
}
.silver-chalice--bt-66 {
  border-top: 66px #acacac solid !important;
}
.silver-chalice--br-66 {
  border-right: 66px #acacac solid !important;
}
.silver-chalice--bl-66 {
  border-left: 66px #acacac solid !important;
}
.silver-chalice--bb-66 {
  border-bottom: 66px #acacac solid !important;
}
.silver-chalice--by-66 {
  border-top: 66px #acacac solid !important;
  border-bottom: 66px #acacac solid !important;
}
.silver-chalice--bx-66 {
  border-right: 66px #acacac solid !important;
  border-left: 66px #acacac solid !important;
}
.silver-chalice--ba-67 {
  border: 67px #acacac solid !important;
}
.silver-chalice--bt-67 {
  border-top: 67px #acacac solid !important;
}
.silver-chalice--br-67 {
  border-right: 67px #acacac solid !important;
}
.silver-chalice--bl-67 {
  border-left: 67px #acacac solid !important;
}
.silver-chalice--bb-67 {
  border-bottom: 67px #acacac solid !important;
}
.silver-chalice--by-67 {
  border-top: 67px #acacac solid !important;
  border-bottom: 67px #acacac solid !important;
}
.silver-chalice--bx-67 {
  border-right: 67px #acacac solid !important;
  border-left: 67px #acacac solid !important;
}
.silver-chalice--ba-68 {
  border: 68px #acacac solid !important;
}
.silver-chalice--bt-68 {
  border-top: 68px #acacac solid !important;
}
.silver-chalice--br-68 {
  border-right: 68px #acacac solid !important;
}
.silver-chalice--bl-68 {
  border-left: 68px #acacac solid !important;
}
.silver-chalice--bb-68 {
  border-bottom: 68px #acacac solid !important;
}
.silver-chalice--by-68 {
  border-top: 68px #acacac solid !important;
  border-bottom: 68px #acacac solid !important;
}
.silver-chalice--bx-68 {
  border-right: 68px #acacac solid !important;
  border-left: 68px #acacac solid !important;
}
.silver-chalice--ba-69 {
  border: 69px #acacac solid !important;
}
.silver-chalice--bt-69 {
  border-top: 69px #acacac solid !important;
}
.silver-chalice--br-69 {
  border-right: 69px #acacac solid !important;
}
.silver-chalice--bl-69 {
  border-left: 69px #acacac solid !important;
}
.silver-chalice--bb-69 {
  border-bottom: 69px #acacac solid !important;
}
.silver-chalice--by-69 {
  border-top: 69px #acacac solid !important;
  border-bottom: 69px #acacac solid !important;
}
.silver-chalice--bx-69 {
  border-right: 69px #acacac solid !important;
  border-left: 69px #acacac solid !important;
}
.silver-chalice--ba-70 {
  border: 70px #acacac solid !important;
}
.silver-chalice--bt-70 {
  border-top: 70px #acacac solid !important;
}
.silver-chalice--br-70 {
  border-right: 70px #acacac solid !important;
}
.silver-chalice--bl-70 {
  border-left: 70px #acacac solid !important;
}
.silver-chalice--bb-70 {
  border-bottom: 70px #acacac solid !important;
}
.silver-chalice--by-70 {
  border-top: 70px #acacac solid !important;
  border-bottom: 70px #acacac solid !important;
}
.silver-chalice--bx-70 {
  border-right: 70px #acacac solid !important;
  border-left: 70px #acacac solid !important;
}
.silver-chalice--ba-71 {
  border: 71px #acacac solid !important;
}
.silver-chalice--bt-71 {
  border-top: 71px #acacac solid !important;
}
.silver-chalice--br-71 {
  border-right: 71px #acacac solid !important;
}
.silver-chalice--bl-71 {
  border-left: 71px #acacac solid !important;
}
.silver-chalice--bb-71 {
  border-bottom: 71px #acacac solid !important;
}
.silver-chalice--by-71 {
  border-top: 71px #acacac solid !important;
  border-bottom: 71px #acacac solid !important;
}
.silver-chalice--bx-71 {
  border-right: 71px #acacac solid !important;
  border-left: 71px #acacac solid !important;
}
.silver-chalice--ba-72 {
  border: 72px #acacac solid !important;
}
.silver-chalice--bt-72 {
  border-top: 72px #acacac solid !important;
}
.silver-chalice--br-72 {
  border-right: 72px #acacac solid !important;
}
.silver-chalice--bl-72 {
  border-left: 72px #acacac solid !important;
}
.silver-chalice--bb-72 {
  border-bottom: 72px #acacac solid !important;
}
.silver-chalice--by-72 {
  border-top: 72px #acacac solid !important;
  border-bottom: 72px #acacac solid !important;
}
.silver-chalice--bx-72 {
  border-right: 72px #acacac solid !important;
  border-left: 72px #acacac solid !important;
}
.silver-chalice--ba-73 {
  border: 73px #acacac solid !important;
}
.silver-chalice--bt-73 {
  border-top: 73px #acacac solid !important;
}
.silver-chalice--br-73 {
  border-right: 73px #acacac solid !important;
}
.silver-chalice--bl-73 {
  border-left: 73px #acacac solid !important;
}
.silver-chalice--bb-73 {
  border-bottom: 73px #acacac solid !important;
}
.silver-chalice--by-73 {
  border-top: 73px #acacac solid !important;
  border-bottom: 73px #acacac solid !important;
}
.silver-chalice--bx-73 {
  border-right: 73px #acacac solid !important;
  border-left: 73px #acacac solid !important;
}
.silver-chalice--ba-74 {
  border: 74px #acacac solid !important;
}
.silver-chalice--bt-74 {
  border-top: 74px #acacac solid !important;
}
.silver-chalice--br-74 {
  border-right: 74px #acacac solid !important;
}
.silver-chalice--bl-74 {
  border-left: 74px #acacac solid !important;
}
.silver-chalice--bb-74 {
  border-bottom: 74px #acacac solid !important;
}
.silver-chalice--by-74 {
  border-top: 74px #acacac solid !important;
  border-bottom: 74px #acacac solid !important;
}
.silver-chalice--bx-74 {
  border-right: 74px #acacac solid !important;
  border-left: 74px #acacac solid !important;
}
.silver-chalice--ba-75 {
  border: 75px #acacac solid !important;
}
.silver-chalice--bt-75 {
  border-top: 75px #acacac solid !important;
}
.silver-chalice--br-75 {
  border-right: 75px #acacac solid !important;
}
.silver-chalice--bl-75 {
  border-left: 75px #acacac solid !important;
}
.silver-chalice--bb-75 {
  border-bottom: 75px #acacac solid !important;
}
.silver-chalice--by-75 {
  border-top: 75px #acacac solid !important;
  border-bottom: 75px #acacac solid !important;
}
.silver-chalice--bx-75 {
  border-right: 75px #acacac solid !important;
  border-left: 75px #acacac solid !important;
}
.silver-chalice--ba-76 {
  border: 76px #acacac solid !important;
}
.silver-chalice--bt-76 {
  border-top: 76px #acacac solid !important;
}
.silver-chalice--br-76 {
  border-right: 76px #acacac solid !important;
}
.silver-chalice--bl-76 {
  border-left: 76px #acacac solid !important;
}
.silver-chalice--bb-76 {
  border-bottom: 76px #acacac solid !important;
}
.silver-chalice--by-76 {
  border-top: 76px #acacac solid !important;
  border-bottom: 76px #acacac solid !important;
}
.silver-chalice--bx-76 {
  border-right: 76px #acacac solid !important;
  border-left: 76px #acacac solid !important;
}
.silver-chalice--ba-77 {
  border: 77px #acacac solid !important;
}
.silver-chalice--bt-77 {
  border-top: 77px #acacac solid !important;
}
.silver-chalice--br-77 {
  border-right: 77px #acacac solid !important;
}
.silver-chalice--bl-77 {
  border-left: 77px #acacac solid !important;
}
.silver-chalice--bb-77 {
  border-bottom: 77px #acacac solid !important;
}
.silver-chalice--by-77 {
  border-top: 77px #acacac solid !important;
  border-bottom: 77px #acacac solid !important;
}
.silver-chalice--bx-77 {
  border-right: 77px #acacac solid !important;
  border-left: 77px #acacac solid !important;
}
.silver-chalice--ba-78 {
  border: 78px #acacac solid !important;
}
.silver-chalice--bt-78 {
  border-top: 78px #acacac solid !important;
}
.silver-chalice--br-78 {
  border-right: 78px #acacac solid !important;
}
.silver-chalice--bl-78 {
  border-left: 78px #acacac solid !important;
}
.silver-chalice--bb-78 {
  border-bottom: 78px #acacac solid !important;
}
.silver-chalice--by-78 {
  border-top: 78px #acacac solid !important;
  border-bottom: 78px #acacac solid !important;
}
.silver-chalice--bx-78 {
  border-right: 78px #acacac solid !important;
  border-left: 78px #acacac solid !important;
}
.silver-chalice--ba-79 {
  border: 79px #acacac solid !important;
}
.silver-chalice--bt-79 {
  border-top: 79px #acacac solid !important;
}
.silver-chalice--br-79 {
  border-right: 79px #acacac solid !important;
}
.silver-chalice--bl-79 {
  border-left: 79px #acacac solid !important;
}
.silver-chalice--bb-79 {
  border-bottom: 79px #acacac solid !important;
}
.silver-chalice--by-79 {
  border-top: 79px #acacac solid !important;
  border-bottom: 79px #acacac solid !important;
}
.silver-chalice--bx-79 {
  border-right: 79px #acacac solid !important;
  border-left: 79px #acacac solid !important;
}
.silver-chalice--ba-80 {
  border: 80px #acacac solid !important;
}
.silver-chalice--bt-80 {
  border-top: 80px #acacac solid !important;
}
.silver-chalice--br-80 {
  border-right: 80px #acacac solid !important;
}
.silver-chalice--bl-80 {
  border-left: 80px #acacac solid !important;
}
.silver-chalice--bb-80 {
  border-bottom: 80px #acacac solid !important;
}
.silver-chalice--by-80 {
  border-top: 80px #acacac solid !important;
  border-bottom: 80px #acacac solid !important;
}
.silver-chalice--bx-80 {
  border-right: 80px #acacac solid !important;
  border-left: 80px #acacac solid !important;
}
.silver-chalice--ba-81 {
  border: 81px #acacac solid !important;
}
.silver-chalice--bt-81 {
  border-top: 81px #acacac solid !important;
}
.silver-chalice--br-81 {
  border-right: 81px #acacac solid !important;
}
.silver-chalice--bl-81 {
  border-left: 81px #acacac solid !important;
}
.silver-chalice--bb-81 {
  border-bottom: 81px #acacac solid !important;
}
.silver-chalice--by-81 {
  border-top: 81px #acacac solid !important;
  border-bottom: 81px #acacac solid !important;
}
.silver-chalice--bx-81 {
  border-right: 81px #acacac solid !important;
  border-left: 81px #acacac solid !important;
}
.silver-chalice--ba-82 {
  border: 82px #acacac solid !important;
}
.silver-chalice--bt-82 {
  border-top: 82px #acacac solid !important;
}
.silver-chalice--br-82 {
  border-right: 82px #acacac solid !important;
}
.silver-chalice--bl-82 {
  border-left: 82px #acacac solid !important;
}
.silver-chalice--bb-82 {
  border-bottom: 82px #acacac solid !important;
}
.silver-chalice--by-82 {
  border-top: 82px #acacac solid !important;
  border-bottom: 82px #acacac solid !important;
}
.silver-chalice--bx-82 {
  border-right: 82px #acacac solid !important;
  border-left: 82px #acacac solid !important;
}
.silver-chalice--ba-83 {
  border: 83px #acacac solid !important;
}
.silver-chalice--bt-83 {
  border-top: 83px #acacac solid !important;
}
.silver-chalice--br-83 {
  border-right: 83px #acacac solid !important;
}
.silver-chalice--bl-83 {
  border-left: 83px #acacac solid !important;
}
.silver-chalice--bb-83 {
  border-bottom: 83px #acacac solid !important;
}
.silver-chalice--by-83 {
  border-top: 83px #acacac solid !important;
  border-bottom: 83px #acacac solid !important;
}
.silver-chalice--bx-83 {
  border-right: 83px #acacac solid !important;
  border-left: 83px #acacac solid !important;
}
.silver-chalice--ba-84 {
  border: 84px #acacac solid !important;
}
.silver-chalice--bt-84 {
  border-top: 84px #acacac solid !important;
}
.silver-chalice--br-84 {
  border-right: 84px #acacac solid !important;
}
.silver-chalice--bl-84 {
  border-left: 84px #acacac solid !important;
}
.silver-chalice--bb-84 {
  border-bottom: 84px #acacac solid !important;
}
.silver-chalice--by-84 {
  border-top: 84px #acacac solid !important;
  border-bottom: 84px #acacac solid !important;
}
.silver-chalice--bx-84 {
  border-right: 84px #acacac solid !important;
  border-left: 84px #acacac solid !important;
}
.silver-chalice--ba-85 {
  border: 85px #acacac solid !important;
}
.silver-chalice--bt-85 {
  border-top: 85px #acacac solid !important;
}
.silver-chalice--br-85 {
  border-right: 85px #acacac solid !important;
}
.silver-chalice--bl-85 {
  border-left: 85px #acacac solid !important;
}
.silver-chalice--bb-85 {
  border-bottom: 85px #acacac solid !important;
}
.silver-chalice--by-85 {
  border-top: 85px #acacac solid !important;
  border-bottom: 85px #acacac solid !important;
}
.silver-chalice--bx-85 {
  border-right: 85px #acacac solid !important;
  border-left: 85px #acacac solid !important;
}
.silver-chalice--ba-86 {
  border: 86px #acacac solid !important;
}
.silver-chalice--bt-86 {
  border-top: 86px #acacac solid !important;
}
.silver-chalice--br-86 {
  border-right: 86px #acacac solid !important;
}
.silver-chalice--bl-86 {
  border-left: 86px #acacac solid !important;
}
.silver-chalice--bb-86 {
  border-bottom: 86px #acacac solid !important;
}
.silver-chalice--by-86 {
  border-top: 86px #acacac solid !important;
  border-bottom: 86px #acacac solid !important;
}
.silver-chalice--bx-86 {
  border-right: 86px #acacac solid !important;
  border-left: 86px #acacac solid !important;
}
.silver-chalice--ba-87 {
  border: 87px #acacac solid !important;
}
.silver-chalice--bt-87 {
  border-top: 87px #acacac solid !important;
}
.silver-chalice--br-87 {
  border-right: 87px #acacac solid !important;
}
.silver-chalice--bl-87 {
  border-left: 87px #acacac solid !important;
}
.silver-chalice--bb-87 {
  border-bottom: 87px #acacac solid !important;
}
.silver-chalice--by-87 {
  border-top: 87px #acacac solid !important;
  border-bottom: 87px #acacac solid !important;
}
.silver-chalice--bx-87 {
  border-right: 87px #acacac solid !important;
  border-left: 87px #acacac solid !important;
}
.silver-chalice--ba-88 {
  border: 88px #acacac solid !important;
}
.silver-chalice--bt-88 {
  border-top: 88px #acacac solid !important;
}
.silver-chalice--br-88 {
  border-right: 88px #acacac solid !important;
}
.silver-chalice--bl-88 {
  border-left: 88px #acacac solid !important;
}
.silver-chalice--bb-88 {
  border-bottom: 88px #acacac solid !important;
}
.silver-chalice--by-88 {
  border-top: 88px #acacac solid !important;
  border-bottom: 88px #acacac solid !important;
}
.silver-chalice--bx-88 {
  border-right: 88px #acacac solid !important;
  border-left: 88px #acacac solid !important;
}
.silver-chalice--ba-89 {
  border: 89px #acacac solid !important;
}
.silver-chalice--bt-89 {
  border-top: 89px #acacac solid !important;
}
.silver-chalice--br-89 {
  border-right: 89px #acacac solid !important;
}
.silver-chalice--bl-89 {
  border-left: 89px #acacac solid !important;
}
.silver-chalice--bb-89 {
  border-bottom: 89px #acacac solid !important;
}
.silver-chalice--by-89 {
  border-top: 89px #acacac solid !important;
  border-bottom: 89px #acacac solid !important;
}
.silver-chalice--bx-89 {
  border-right: 89px #acacac solid !important;
  border-left: 89px #acacac solid !important;
}
.silver-chalice--ba-90 {
  border: 90px #acacac solid !important;
}
.silver-chalice--bt-90 {
  border-top: 90px #acacac solid !important;
}
.silver-chalice--br-90 {
  border-right: 90px #acacac solid !important;
}
.silver-chalice--bl-90 {
  border-left: 90px #acacac solid !important;
}
.silver-chalice--bb-90 {
  border-bottom: 90px #acacac solid !important;
}
.silver-chalice--by-90 {
  border-top: 90px #acacac solid !important;
  border-bottom: 90px #acacac solid !important;
}
.silver-chalice--bx-90 {
  border-right: 90px #acacac solid !important;
  border-left: 90px #acacac solid !important;
}
.silver-chalice--ba-91 {
  border: 91px #acacac solid !important;
}
.silver-chalice--bt-91 {
  border-top: 91px #acacac solid !important;
}
.silver-chalice--br-91 {
  border-right: 91px #acacac solid !important;
}
.silver-chalice--bl-91 {
  border-left: 91px #acacac solid !important;
}
.silver-chalice--bb-91 {
  border-bottom: 91px #acacac solid !important;
}
.silver-chalice--by-91 {
  border-top: 91px #acacac solid !important;
  border-bottom: 91px #acacac solid !important;
}
.silver-chalice--bx-91 {
  border-right: 91px #acacac solid !important;
  border-left: 91px #acacac solid !important;
}
.silver-chalice--ba-92 {
  border: 92px #acacac solid !important;
}
.silver-chalice--bt-92 {
  border-top: 92px #acacac solid !important;
}
.silver-chalice--br-92 {
  border-right: 92px #acacac solid !important;
}
.silver-chalice--bl-92 {
  border-left: 92px #acacac solid !important;
}
.silver-chalice--bb-92 {
  border-bottom: 92px #acacac solid !important;
}
.silver-chalice--by-92 {
  border-top: 92px #acacac solid !important;
  border-bottom: 92px #acacac solid !important;
}
.silver-chalice--bx-92 {
  border-right: 92px #acacac solid !important;
  border-left: 92px #acacac solid !important;
}
.silver-chalice--ba-93 {
  border: 93px #acacac solid !important;
}
.silver-chalice--bt-93 {
  border-top: 93px #acacac solid !important;
}
.silver-chalice--br-93 {
  border-right: 93px #acacac solid !important;
}
.silver-chalice--bl-93 {
  border-left: 93px #acacac solid !important;
}
.silver-chalice--bb-93 {
  border-bottom: 93px #acacac solid !important;
}
.silver-chalice--by-93 {
  border-top: 93px #acacac solid !important;
  border-bottom: 93px #acacac solid !important;
}
.silver-chalice--bx-93 {
  border-right: 93px #acacac solid !important;
  border-left: 93px #acacac solid !important;
}
.silver-chalice--ba-94 {
  border: 94px #acacac solid !important;
}
.silver-chalice--bt-94 {
  border-top: 94px #acacac solid !important;
}
.silver-chalice--br-94 {
  border-right: 94px #acacac solid !important;
}
.silver-chalice--bl-94 {
  border-left: 94px #acacac solid !important;
}
.silver-chalice--bb-94 {
  border-bottom: 94px #acacac solid !important;
}
.silver-chalice--by-94 {
  border-top: 94px #acacac solid !important;
  border-bottom: 94px #acacac solid !important;
}
.silver-chalice--bx-94 {
  border-right: 94px #acacac solid !important;
  border-left: 94px #acacac solid !important;
}
.silver-chalice--ba-95 {
  border: 95px #acacac solid !important;
}
.silver-chalice--bt-95 {
  border-top: 95px #acacac solid !important;
}
.silver-chalice--br-95 {
  border-right: 95px #acacac solid !important;
}
.silver-chalice--bl-95 {
  border-left: 95px #acacac solid !important;
}
.silver-chalice--bb-95 {
  border-bottom: 95px #acacac solid !important;
}
.silver-chalice--by-95 {
  border-top: 95px #acacac solid !important;
  border-bottom: 95px #acacac solid !important;
}
.silver-chalice--bx-95 {
  border-right: 95px #acacac solid !important;
  border-left: 95px #acacac solid !important;
}
.silver-chalice--ba-96 {
  border: 96px #acacac solid !important;
}
.silver-chalice--bt-96 {
  border-top: 96px #acacac solid !important;
}
.silver-chalice--br-96 {
  border-right: 96px #acacac solid !important;
}
.silver-chalice--bl-96 {
  border-left: 96px #acacac solid !important;
}
.silver-chalice--bb-96 {
  border-bottom: 96px #acacac solid !important;
}
.silver-chalice--by-96 {
  border-top: 96px #acacac solid !important;
  border-bottom: 96px #acacac solid !important;
}
.silver-chalice--bx-96 {
  border-right: 96px #acacac solid !important;
  border-left: 96px #acacac solid !important;
}
.silver-chalice--ba-97 {
  border: 97px #acacac solid !important;
}
.silver-chalice--bt-97 {
  border-top: 97px #acacac solid !important;
}
.silver-chalice--br-97 {
  border-right: 97px #acacac solid !important;
}
.silver-chalice--bl-97 {
  border-left: 97px #acacac solid !important;
}
.silver-chalice--bb-97 {
  border-bottom: 97px #acacac solid !important;
}
.silver-chalice--by-97 {
  border-top: 97px #acacac solid !important;
  border-bottom: 97px #acacac solid !important;
}
.silver-chalice--bx-97 {
  border-right: 97px #acacac solid !important;
  border-left: 97px #acacac solid !important;
}
.silver-chalice--ba-98 {
  border: 98px #acacac solid !important;
}
.silver-chalice--bt-98 {
  border-top: 98px #acacac solid !important;
}
.silver-chalice--br-98 {
  border-right: 98px #acacac solid !important;
}
.silver-chalice--bl-98 {
  border-left: 98px #acacac solid !important;
}
.silver-chalice--bb-98 {
  border-bottom: 98px #acacac solid !important;
}
.silver-chalice--by-98 {
  border-top: 98px #acacac solid !important;
  border-bottom: 98px #acacac solid !important;
}
.silver-chalice--bx-98 {
  border-right: 98px #acacac solid !important;
  border-left: 98px #acacac solid !important;
}
.silver-chalice--ba-99 {
  border: 99px #acacac solid !important;
}
.silver-chalice--bt-99 {
  border-top: 99px #acacac solid !important;
}
.silver-chalice--br-99 {
  border-right: 99px #acacac solid !important;
}
.silver-chalice--bl-99 {
  border-left: 99px #acacac solid !important;
}
.silver-chalice--bb-99 {
  border-bottom: 99px #acacac solid !important;
}
.silver-chalice--by-99 {
  border-top: 99px #acacac solid !important;
  border-bottom: 99px #acacac solid !important;
}
.silver-chalice--bx-99 {
  border-right: 99px #acacac solid !important;
  border-left: 99px #acacac solid !important;
}
.silver-chalice--ba-100 {
  border: 100px #acacac solid !important;
}
.silver-chalice--bt-100 {
  border-top: 100px #acacac solid !important;
}
.silver-chalice--br-100 {
  border-right: 100px #acacac solid !important;
}
.silver-chalice--bl-100 {
  border-left: 100px #acacac solid !important;
}
.silver-chalice--bb-100 {
  border-bottom: 100px #acacac solid !important;
}
.silver-chalice--by-100 {
  border-top: 100px #acacac solid !important;
  border-bottom: 100px #acacac solid !important;
}
.silver-chalice--bx-100 {
  border-right: 100px #acacac solid !important;
  border-left: 100px #acacac solid !important;
}
.sun-glow--ba-1 {
  border: 1px #ffca28 solid !important;
}
.sun-glow--bt-1 {
  border-top: 1px #ffca28 solid !important;
}
.sun-glow--br-1 {
  border-right: 1px #ffca28 solid !important;
}
.sun-glow--bl-1 {
  border-left: 1px #ffca28 solid !important;
}
.sun-glow--bb-1 {
  border-bottom: 1px #ffca28 solid !important;
}
.sun-glow--by-1 {
  border-top: 1px #ffca28 solid !important;
  border-bottom: 1px #ffca28 solid !important;
}
.sun-glow--bx-1 {
  border-right: 1px #ffca28 solid !important;
  border-left: 1px #ffca28 solid !important;
}
.sun-glow--ba-2 {
  border: 2px #ffca28 solid !important;
}
.sun-glow--bt-2 {
  border-top: 2px #ffca28 solid !important;
}
.sun-glow--br-2 {
  border-right: 2px #ffca28 solid !important;
}
.sun-glow--bl-2 {
  border-left: 2px #ffca28 solid !important;
}
.sun-glow--bb-2 {
  border-bottom: 2px #ffca28 solid !important;
}
.sun-glow--by-2 {
  border-top: 2px #ffca28 solid !important;
  border-bottom: 2px #ffca28 solid !important;
}
.sun-glow--bx-2 {
  border-right: 2px #ffca28 solid !important;
  border-left: 2px #ffca28 solid !important;
}
.sun-glow--ba-3 {
  border: 3px #ffca28 solid !important;
}
.sun-glow--bt-3 {
  border-top: 3px #ffca28 solid !important;
}
.sun-glow--br-3 {
  border-right: 3px #ffca28 solid !important;
}
.sun-glow--bl-3 {
  border-left: 3px #ffca28 solid !important;
}
.sun-glow--bb-3 {
  border-bottom: 3px #ffca28 solid !important;
}
.sun-glow--by-3 {
  border-top: 3px #ffca28 solid !important;
  border-bottom: 3px #ffca28 solid !important;
}
.sun-glow--bx-3 {
  border-right: 3px #ffca28 solid !important;
  border-left: 3px #ffca28 solid !important;
}
.sun-glow--ba-4 {
  border: 4px #ffca28 solid !important;
}
.sun-glow--bt-4 {
  border-top: 4px #ffca28 solid !important;
}
.sun-glow--br-4 {
  border-right: 4px #ffca28 solid !important;
}
.sun-glow--bl-4 {
  border-left: 4px #ffca28 solid !important;
}
.sun-glow--bb-4 {
  border-bottom: 4px #ffca28 solid !important;
}
.sun-glow--by-4 {
  border-top: 4px #ffca28 solid !important;
  border-bottom: 4px #ffca28 solid !important;
}
.sun-glow--bx-4 {
  border-right: 4px #ffca28 solid !important;
  border-left: 4px #ffca28 solid !important;
}
.sun-glow--ba-5 {
  border: 5px #ffca28 solid !important;
}
.sun-glow--bt-5 {
  border-top: 5px #ffca28 solid !important;
}
.sun-glow--br-5 {
  border-right: 5px #ffca28 solid !important;
}
.sun-glow--bl-5 {
  border-left: 5px #ffca28 solid !important;
}
.sun-glow--bb-5 {
  border-bottom: 5px #ffca28 solid !important;
}
.sun-glow--by-5 {
  border-top: 5px #ffca28 solid !important;
  border-bottom: 5px #ffca28 solid !important;
}
.sun-glow--bx-5 {
  border-right: 5px #ffca28 solid !important;
  border-left: 5px #ffca28 solid !important;
}
.sun-glow--ba-6 {
  border: 6px #ffca28 solid !important;
}
.sun-glow--bt-6 {
  border-top: 6px #ffca28 solid !important;
}
.sun-glow--br-6 {
  border-right: 6px #ffca28 solid !important;
}
.sun-glow--bl-6 {
  border-left: 6px #ffca28 solid !important;
}
.sun-glow--bb-6 {
  border-bottom: 6px #ffca28 solid !important;
}
.sun-glow--by-6 {
  border-top: 6px #ffca28 solid !important;
  border-bottom: 6px #ffca28 solid !important;
}
.sun-glow--bx-6 {
  border-right: 6px #ffca28 solid !important;
  border-left: 6px #ffca28 solid !important;
}
.sun-glow--ba-7 {
  border: 7px #ffca28 solid !important;
}
.sun-glow--bt-7 {
  border-top: 7px #ffca28 solid !important;
}
.sun-glow--br-7 {
  border-right: 7px #ffca28 solid !important;
}
.sun-glow--bl-7 {
  border-left: 7px #ffca28 solid !important;
}
.sun-glow--bb-7 {
  border-bottom: 7px #ffca28 solid !important;
}
.sun-glow--by-7 {
  border-top: 7px #ffca28 solid !important;
  border-bottom: 7px #ffca28 solid !important;
}
.sun-glow--bx-7 {
  border-right: 7px #ffca28 solid !important;
  border-left: 7px #ffca28 solid !important;
}
.sun-glow--ba-8 {
  border: 8px #ffca28 solid !important;
}
.sun-glow--bt-8 {
  border-top: 8px #ffca28 solid !important;
}
.sun-glow--br-8 {
  border-right: 8px #ffca28 solid !important;
}
.sun-glow--bl-8 {
  border-left: 8px #ffca28 solid !important;
}
.sun-glow--bb-8 {
  border-bottom: 8px #ffca28 solid !important;
}
.sun-glow--by-8 {
  border-top: 8px #ffca28 solid !important;
  border-bottom: 8px #ffca28 solid !important;
}
.sun-glow--bx-8 {
  border-right: 8px #ffca28 solid !important;
  border-left: 8px #ffca28 solid !important;
}
.sun-glow--ba-9 {
  border: 9px #ffca28 solid !important;
}
.sun-glow--bt-9 {
  border-top: 9px #ffca28 solid !important;
}
.sun-glow--br-9 {
  border-right: 9px #ffca28 solid !important;
}
.sun-glow--bl-9 {
  border-left: 9px #ffca28 solid !important;
}
.sun-glow--bb-9 {
  border-bottom: 9px #ffca28 solid !important;
}
.sun-glow--by-9 {
  border-top: 9px #ffca28 solid !important;
  border-bottom: 9px #ffca28 solid !important;
}
.sun-glow--bx-9 {
  border-right: 9px #ffca28 solid !important;
  border-left: 9px #ffca28 solid !important;
}
.sun-glow--ba-10 {
  border: 10px #ffca28 solid !important;
}
.sun-glow--bt-10 {
  border-top: 10px #ffca28 solid !important;
}
.sun-glow--br-10 {
  border-right: 10px #ffca28 solid !important;
}
.sun-glow--bl-10 {
  border-left: 10px #ffca28 solid !important;
}
.sun-glow--bb-10 {
  border-bottom: 10px #ffca28 solid !important;
}
.sun-glow--by-10 {
  border-top: 10px #ffca28 solid !important;
  border-bottom: 10px #ffca28 solid !important;
}
.sun-glow--bx-10 {
  border-right: 10px #ffca28 solid !important;
  border-left: 10px #ffca28 solid !important;
}
.sun-glow--ba-11 {
  border: 11px #ffca28 solid !important;
}
.sun-glow--bt-11 {
  border-top: 11px #ffca28 solid !important;
}
.sun-glow--br-11 {
  border-right: 11px #ffca28 solid !important;
}
.sun-glow--bl-11 {
  border-left: 11px #ffca28 solid !important;
}
.sun-glow--bb-11 {
  border-bottom: 11px #ffca28 solid !important;
}
.sun-glow--by-11 {
  border-top: 11px #ffca28 solid !important;
  border-bottom: 11px #ffca28 solid !important;
}
.sun-glow--bx-11 {
  border-right: 11px #ffca28 solid !important;
  border-left: 11px #ffca28 solid !important;
}
.sun-glow--ba-12 {
  border: 12px #ffca28 solid !important;
}
.sun-glow--bt-12 {
  border-top: 12px #ffca28 solid !important;
}
.sun-glow--br-12 {
  border-right: 12px #ffca28 solid !important;
}
.sun-glow--bl-12 {
  border-left: 12px #ffca28 solid !important;
}
.sun-glow--bb-12 {
  border-bottom: 12px #ffca28 solid !important;
}
.sun-glow--by-12 {
  border-top: 12px #ffca28 solid !important;
  border-bottom: 12px #ffca28 solid !important;
}
.sun-glow--bx-12 {
  border-right: 12px #ffca28 solid !important;
  border-left: 12px #ffca28 solid !important;
}
.sun-glow--ba-13 {
  border: 13px #ffca28 solid !important;
}
.sun-glow--bt-13 {
  border-top: 13px #ffca28 solid !important;
}
.sun-glow--br-13 {
  border-right: 13px #ffca28 solid !important;
}
.sun-glow--bl-13 {
  border-left: 13px #ffca28 solid !important;
}
.sun-glow--bb-13 {
  border-bottom: 13px #ffca28 solid !important;
}
.sun-glow--by-13 {
  border-top: 13px #ffca28 solid !important;
  border-bottom: 13px #ffca28 solid !important;
}
.sun-glow--bx-13 {
  border-right: 13px #ffca28 solid !important;
  border-left: 13px #ffca28 solid !important;
}
.sun-glow--ba-14 {
  border: 14px #ffca28 solid !important;
}
.sun-glow--bt-14 {
  border-top: 14px #ffca28 solid !important;
}
.sun-glow--br-14 {
  border-right: 14px #ffca28 solid !important;
}
.sun-glow--bl-14 {
  border-left: 14px #ffca28 solid !important;
}
.sun-glow--bb-14 {
  border-bottom: 14px #ffca28 solid !important;
}
.sun-glow--by-14 {
  border-top: 14px #ffca28 solid !important;
  border-bottom: 14px #ffca28 solid !important;
}
.sun-glow--bx-14 {
  border-right: 14px #ffca28 solid !important;
  border-left: 14px #ffca28 solid !important;
}
.sun-glow--ba-15 {
  border: 15px #ffca28 solid !important;
}
.sun-glow--bt-15 {
  border-top: 15px #ffca28 solid !important;
}
.sun-glow--br-15 {
  border-right: 15px #ffca28 solid !important;
}
.sun-glow--bl-15 {
  border-left: 15px #ffca28 solid !important;
}
.sun-glow--bb-15 {
  border-bottom: 15px #ffca28 solid !important;
}
.sun-glow--by-15 {
  border-top: 15px #ffca28 solid !important;
  border-bottom: 15px #ffca28 solid !important;
}
.sun-glow--bx-15 {
  border-right: 15px #ffca28 solid !important;
  border-left: 15px #ffca28 solid !important;
}
.sun-glow--ba-16 {
  border: 16px #ffca28 solid !important;
}
.sun-glow--bt-16 {
  border-top: 16px #ffca28 solid !important;
}
.sun-glow--br-16 {
  border-right: 16px #ffca28 solid !important;
}
.sun-glow--bl-16 {
  border-left: 16px #ffca28 solid !important;
}
.sun-glow--bb-16 {
  border-bottom: 16px #ffca28 solid !important;
}
.sun-glow--by-16 {
  border-top: 16px #ffca28 solid !important;
  border-bottom: 16px #ffca28 solid !important;
}
.sun-glow--bx-16 {
  border-right: 16px #ffca28 solid !important;
  border-left: 16px #ffca28 solid !important;
}
.sun-glow--ba-17 {
  border: 17px #ffca28 solid !important;
}
.sun-glow--bt-17 {
  border-top: 17px #ffca28 solid !important;
}
.sun-glow--br-17 {
  border-right: 17px #ffca28 solid !important;
}
.sun-glow--bl-17 {
  border-left: 17px #ffca28 solid !important;
}
.sun-glow--bb-17 {
  border-bottom: 17px #ffca28 solid !important;
}
.sun-glow--by-17 {
  border-top: 17px #ffca28 solid !important;
  border-bottom: 17px #ffca28 solid !important;
}
.sun-glow--bx-17 {
  border-right: 17px #ffca28 solid !important;
  border-left: 17px #ffca28 solid !important;
}
.sun-glow--ba-18 {
  border: 18px #ffca28 solid !important;
}
.sun-glow--bt-18 {
  border-top: 18px #ffca28 solid !important;
}
.sun-glow--br-18 {
  border-right: 18px #ffca28 solid !important;
}
.sun-glow--bl-18 {
  border-left: 18px #ffca28 solid !important;
}
.sun-glow--bb-18 {
  border-bottom: 18px #ffca28 solid !important;
}
.sun-glow--by-18 {
  border-top: 18px #ffca28 solid !important;
  border-bottom: 18px #ffca28 solid !important;
}
.sun-glow--bx-18 {
  border-right: 18px #ffca28 solid !important;
  border-left: 18px #ffca28 solid !important;
}
.sun-glow--ba-19 {
  border: 19px #ffca28 solid !important;
}
.sun-glow--bt-19 {
  border-top: 19px #ffca28 solid !important;
}
.sun-glow--br-19 {
  border-right: 19px #ffca28 solid !important;
}
.sun-glow--bl-19 {
  border-left: 19px #ffca28 solid !important;
}
.sun-glow--bb-19 {
  border-bottom: 19px #ffca28 solid !important;
}
.sun-glow--by-19 {
  border-top: 19px #ffca28 solid !important;
  border-bottom: 19px #ffca28 solid !important;
}
.sun-glow--bx-19 {
  border-right: 19px #ffca28 solid !important;
  border-left: 19px #ffca28 solid !important;
}
.sun-glow--ba-20 {
  border: 20px #ffca28 solid !important;
}
.sun-glow--bt-20 {
  border-top: 20px #ffca28 solid !important;
}
.sun-glow--br-20 {
  border-right: 20px #ffca28 solid !important;
}
.sun-glow--bl-20 {
  border-left: 20px #ffca28 solid !important;
}
.sun-glow--bb-20 {
  border-bottom: 20px #ffca28 solid !important;
}
.sun-glow--by-20 {
  border-top: 20px #ffca28 solid !important;
  border-bottom: 20px #ffca28 solid !important;
}
.sun-glow--bx-20 {
  border-right: 20px #ffca28 solid !important;
  border-left: 20px #ffca28 solid !important;
}
.sun-glow--ba-21 {
  border: 21px #ffca28 solid !important;
}
.sun-glow--bt-21 {
  border-top: 21px #ffca28 solid !important;
}
.sun-glow--br-21 {
  border-right: 21px #ffca28 solid !important;
}
.sun-glow--bl-21 {
  border-left: 21px #ffca28 solid !important;
}
.sun-glow--bb-21 {
  border-bottom: 21px #ffca28 solid !important;
}
.sun-glow--by-21 {
  border-top: 21px #ffca28 solid !important;
  border-bottom: 21px #ffca28 solid !important;
}
.sun-glow--bx-21 {
  border-right: 21px #ffca28 solid !important;
  border-left: 21px #ffca28 solid !important;
}
.sun-glow--ba-22 {
  border: 22px #ffca28 solid !important;
}
.sun-glow--bt-22 {
  border-top: 22px #ffca28 solid !important;
}
.sun-glow--br-22 {
  border-right: 22px #ffca28 solid !important;
}
.sun-glow--bl-22 {
  border-left: 22px #ffca28 solid !important;
}
.sun-glow--bb-22 {
  border-bottom: 22px #ffca28 solid !important;
}
.sun-glow--by-22 {
  border-top: 22px #ffca28 solid !important;
  border-bottom: 22px #ffca28 solid !important;
}
.sun-glow--bx-22 {
  border-right: 22px #ffca28 solid !important;
  border-left: 22px #ffca28 solid !important;
}
.sun-glow--ba-23 {
  border: 23px #ffca28 solid !important;
}
.sun-glow--bt-23 {
  border-top: 23px #ffca28 solid !important;
}
.sun-glow--br-23 {
  border-right: 23px #ffca28 solid !important;
}
.sun-glow--bl-23 {
  border-left: 23px #ffca28 solid !important;
}
.sun-glow--bb-23 {
  border-bottom: 23px #ffca28 solid !important;
}
.sun-glow--by-23 {
  border-top: 23px #ffca28 solid !important;
  border-bottom: 23px #ffca28 solid !important;
}
.sun-glow--bx-23 {
  border-right: 23px #ffca28 solid !important;
  border-left: 23px #ffca28 solid !important;
}
.sun-glow--ba-24 {
  border: 24px #ffca28 solid !important;
}
.sun-glow--bt-24 {
  border-top: 24px #ffca28 solid !important;
}
.sun-glow--br-24 {
  border-right: 24px #ffca28 solid !important;
}
.sun-glow--bl-24 {
  border-left: 24px #ffca28 solid !important;
}
.sun-glow--bb-24 {
  border-bottom: 24px #ffca28 solid !important;
}
.sun-glow--by-24 {
  border-top: 24px #ffca28 solid !important;
  border-bottom: 24px #ffca28 solid !important;
}
.sun-glow--bx-24 {
  border-right: 24px #ffca28 solid !important;
  border-left: 24px #ffca28 solid !important;
}
.sun-glow--ba-25 {
  border: 25px #ffca28 solid !important;
}
.sun-glow--bt-25 {
  border-top: 25px #ffca28 solid !important;
}
.sun-glow--br-25 {
  border-right: 25px #ffca28 solid !important;
}
.sun-glow--bl-25 {
  border-left: 25px #ffca28 solid !important;
}
.sun-glow--bb-25 {
  border-bottom: 25px #ffca28 solid !important;
}
.sun-glow--by-25 {
  border-top: 25px #ffca28 solid !important;
  border-bottom: 25px #ffca28 solid !important;
}
.sun-glow--bx-25 {
  border-right: 25px #ffca28 solid !important;
  border-left: 25px #ffca28 solid !important;
}
.sun-glow--ba-26 {
  border: 26px #ffca28 solid !important;
}
.sun-glow--bt-26 {
  border-top: 26px #ffca28 solid !important;
}
.sun-glow--br-26 {
  border-right: 26px #ffca28 solid !important;
}
.sun-glow--bl-26 {
  border-left: 26px #ffca28 solid !important;
}
.sun-glow--bb-26 {
  border-bottom: 26px #ffca28 solid !important;
}
.sun-glow--by-26 {
  border-top: 26px #ffca28 solid !important;
  border-bottom: 26px #ffca28 solid !important;
}
.sun-glow--bx-26 {
  border-right: 26px #ffca28 solid !important;
  border-left: 26px #ffca28 solid !important;
}
.sun-glow--ba-27 {
  border: 27px #ffca28 solid !important;
}
.sun-glow--bt-27 {
  border-top: 27px #ffca28 solid !important;
}
.sun-glow--br-27 {
  border-right: 27px #ffca28 solid !important;
}
.sun-glow--bl-27 {
  border-left: 27px #ffca28 solid !important;
}
.sun-glow--bb-27 {
  border-bottom: 27px #ffca28 solid !important;
}
.sun-glow--by-27 {
  border-top: 27px #ffca28 solid !important;
  border-bottom: 27px #ffca28 solid !important;
}
.sun-glow--bx-27 {
  border-right: 27px #ffca28 solid !important;
  border-left: 27px #ffca28 solid !important;
}
.sun-glow--ba-28 {
  border: 28px #ffca28 solid !important;
}
.sun-glow--bt-28 {
  border-top: 28px #ffca28 solid !important;
}
.sun-glow--br-28 {
  border-right: 28px #ffca28 solid !important;
}
.sun-glow--bl-28 {
  border-left: 28px #ffca28 solid !important;
}
.sun-glow--bb-28 {
  border-bottom: 28px #ffca28 solid !important;
}
.sun-glow--by-28 {
  border-top: 28px #ffca28 solid !important;
  border-bottom: 28px #ffca28 solid !important;
}
.sun-glow--bx-28 {
  border-right: 28px #ffca28 solid !important;
  border-left: 28px #ffca28 solid !important;
}
.sun-glow--ba-29 {
  border: 29px #ffca28 solid !important;
}
.sun-glow--bt-29 {
  border-top: 29px #ffca28 solid !important;
}
.sun-glow--br-29 {
  border-right: 29px #ffca28 solid !important;
}
.sun-glow--bl-29 {
  border-left: 29px #ffca28 solid !important;
}
.sun-glow--bb-29 {
  border-bottom: 29px #ffca28 solid !important;
}
.sun-glow--by-29 {
  border-top: 29px #ffca28 solid !important;
  border-bottom: 29px #ffca28 solid !important;
}
.sun-glow--bx-29 {
  border-right: 29px #ffca28 solid !important;
  border-left: 29px #ffca28 solid !important;
}
.sun-glow--ba-30 {
  border: 30px #ffca28 solid !important;
}
.sun-glow--bt-30 {
  border-top: 30px #ffca28 solid !important;
}
.sun-glow--br-30 {
  border-right: 30px #ffca28 solid !important;
}
.sun-glow--bl-30 {
  border-left: 30px #ffca28 solid !important;
}
.sun-glow--bb-30 {
  border-bottom: 30px #ffca28 solid !important;
}
.sun-glow--by-30 {
  border-top: 30px #ffca28 solid !important;
  border-bottom: 30px #ffca28 solid !important;
}
.sun-glow--bx-30 {
  border-right: 30px #ffca28 solid !important;
  border-left: 30px #ffca28 solid !important;
}
.sun-glow--ba-31 {
  border: 31px #ffca28 solid !important;
}
.sun-glow--bt-31 {
  border-top: 31px #ffca28 solid !important;
}
.sun-glow--br-31 {
  border-right: 31px #ffca28 solid !important;
}
.sun-glow--bl-31 {
  border-left: 31px #ffca28 solid !important;
}
.sun-glow--bb-31 {
  border-bottom: 31px #ffca28 solid !important;
}
.sun-glow--by-31 {
  border-top: 31px #ffca28 solid !important;
  border-bottom: 31px #ffca28 solid !important;
}
.sun-glow--bx-31 {
  border-right: 31px #ffca28 solid !important;
  border-left: 31px #ffca28 solid !important;
}
.sun-glow--ba-32 {
  border: 32px #ffca28 solid !important;
}
.sun-glow--bt-32 {
  border-top: 32px #ffca28 solid !important;
}
.sun-glow--br-32 {
  border-right: 32px #ffca28 solid !important;
}
.sun-glow--bl-32 {
  border-left: 32px #ffca28 solid !important;
}
.sun-glow--bb-32 {
  border-bottom: 32px #ffca28 solid !important;
}
.sun-glow--by-32 {
  border-top: 32px #ffca28 solid !important;
  border-bottom: 32px #ffca28 solid !important;
}
.sun-glow--bx-32 {
  border-right: 32px #ffca28 solid !important;
  border-left: 32px #ffca28 solid !important;
}
.sun-glow--ba-33 {
  border: 33px #ffca28 solid !important;
}
.sun-glow--bt-33 {
  border-top: 33px #ffca28 solid !important;
}
.sun-glow--br-33 {
  border-right: 33px #ffca28 solid !important;
}
.sun-glow--bl-33 {
  border-left: 33px #ffca28 solid !important;
}
.sun-glow--bb-33 {
  border-bottom: 33px #ffca28 solid !important;
}
.sun-glow--by-33 {
  border-top: 33px #ffca28 solid !important;
  border-bottom: 33px #ffca28 solid !important;
}
.sun-glow--bx-33 {
  border-right: 33px #ffca28 solid !important;
  border-left: 33px #ffca28 solid !important;
}
.sun-glow--ba-34 {
  border: 34px #ffca28 solid !important;
}
.sun-glow--bt-34 {
  border-top: 34px #ffca28 solid !important;
}
.sun-glow--br-34 {
  border-right: 34px #ffca28 solid !important;
}
.sun-glow--bl-34 {
  border-left: 34px #ffca28 solid !important;
}
.sun-glow--bb-34 {
  border-bottom: 34px #ffca28 solid !important;
}
.sun-glow--by-34 {
  border-top: 34px #ffca28 solid !important;
  border-bottom: 34px #ffca28 solid !important;
}
.sun-glow--bx-34 {
  border-right: 34px #ffca28 solid !important;
  border-left: 34px #ffca28 solid !important;
}
.sun-glow--ba-35 {
  border: 35px #ffca28 solid !important;
}
.sun-glow--bt-35 {
  border-top: 35px #ffca28 solid !important;
}
.sun-glow--br-35 {
  border-right: 35px #ffca28 solid !important;
}
.sun-glow--bl-35 {
  border-left: 35px #ffca28 solid !important;
}
.sun-glow--bb-35 {
  border-bottom: 35px #ffca28 solid !important;
}
.sun-glow--by-35 {
  border-top: 35px #ffca28 solid !important;
  border-bottom: 35px #ffca28 solid !important;
}
.sun-glow--bx-35 {
  border-right: 35px #ffca28 solid !important;
  border-left: 35px #ffca28 solid !important;
}
.sun-glow--ba-36 {
  border: 36px #ffca28 solid !important;
}
.sun-glow--bt-36 {
  border-top: 36px #ffca28 solid !important;
}
.sun-glow--br-36 {
  border-right: 36px #ffca28 solid !important;
}
.sun-glow--bl-36 {
  border-left: 36px #ffca28 solid !important;
}
.sun-glow--bb-36 {
  border-bottom: 36px #ffca28 solid !important;
}
.sun-glow--by-36 {
  border-top: 36px #ffca28 solid !important;
  border-bottom: 36px #ffca28 solid !important;
}
.sun-glow--bx-36 {
  border-right: 36px #ffca28 solid !important;
  border-left: 36px #ffca28 solid !important;
}
.sun-glow--ba-37 {
  border: 37px #ffca28 solid !important;
}
.sun-glow--bt-37 {
  border-top: 37px #ffca28 solid !important;
}
.sun-glow--br-37 {
  border-right: 37px #ffca28 solid !important;
}
.sun-glow--bl-37 {
  border-left: 37px #ffca28 solid !important;
}
.sun-glow--bb-37 {
  border-bottom: 37px #ffca28 solid !important;
}
.sun-glow--by-37 {
  border-top: 37px #ffca28 solid !important;
  border-bottom: 37px #ffca28 solid !important;
}
.sun-glow--bx-37 {
  border-right: 37px #ffca28 solid !important;
  border-left: 37px #ffca28 solid !important;
}
.sun-glow--ba-38 {
  border: 38px #ffca28 solid !important;
}
.sun-glow--bt-38 {
  border-top: 38px #ffca28 solid !important;
}
.sun-glow--br-38 {
  border-right: 38px #ffca28 solid !important;
}
.sun-glow--bl-38 {
  border-left: 38px #ffca28 solid !important;
}
.sun-glow--bb-38 {
  border-bottom: 38px #ffca28 solid !important;
}
.sun-glow--by-38 {
  border-top: 38px #ffca28 solid !important;
  border-bottom: 38px #ffca28 solid !important;
}
.sun-glow--bx-38 {
  border-right: 38px #ffca28 solid !important;
  border-left: 38px #ffca28 solid !important;
}
.sun-glow--ba-39 {
  border: 39px #ffca28 solid !important;
}
.sun-glow--bt-39 {
  border-top: 39px #ffca28 solid !important;
}
.sun-glow--br-39 {
  border-right: 39px #ffca28 solid !important;
}
.sun-glow--bl-39 {
  border-left: 39px #ffca28 solid !important;
}
.sun-glow--bb-39 {
  border-bottom: 39px #ffca28 solid !important;
}
.sun-glow--by-39 {
  border-top: 39px #ffca28 solid !important;
  border-bottom: 39px #ffca28 solid !important;
}
.sun-glow--bx-39 {
  border-right: 39px #ffca28 solid !important;
  border-left: 39px #ffca28 solid !important;
}
.sun-glow--ba-40 {
  border: 40px #ffca28 solid !important;
}
.sun-glow--bt-40 {
  border-top: 40px #ffca28 solid !important;
}
.sun-glow--br-40 {
  border-right: 40px #ffca28 solid !important;
}
.sun-glow--bl-40 {
  border-left: 40px #ffca28 solid !important;
}
.sun-glow--bb-40 {
  border-bottom: 40px #ffca28 solid !important;
}
.sun-glow--by-40 {
  border-top: 40px #ffca28 solid !important;
  border-bottom: 40px #ffca28 solid !important;
}
.sun-glow--bx-40 {
  border-right: 40px #ffca28 solid !important;
  border-left: 40px #ffca28 solid !important;
}
.sun-glow--ba-41 {
  border: 41px #ffca28 solid !important;
}
.sun-glow--bt-41 {
  border-top: 41px #ffca28 solid !important;
}
.sun-glow--br-41 {
  border-right: 41px #ffca28 solid !important;
}
.sun-glow--bl-41 {
  border-left: 41px #ffca28 solid !important;
}
.sun-glow--bb-41 {
  border-bottom: 41px #ffca28 solid !important;
}
.sun-glow--by-41 {
  border-top: 41px #ffca28 solid !important;
  border-bottom: 41px #ffca28 solid !important;
}
.sun-glow--bx-41 {
  border-right: 41px #ffca28 solid !important;
  border-left: 41px #ffca28 solid !important;
}
.sun-glow--ba-42 {
  border: 42px #ffca28 solid !important;
}
.sun-glow--bt-42 {
  border-top: 42px #ffca28 solid !important;
}
.sun-glow--br-42 {
  border-right: 42px #ffca28 solid !important;
}
.sun-glow--bl-42 {
  border-left: 42px #ffca28 solid !important;
}
.sun-glow--bb-42 {
  border-bottom: 42px #ffca28 solid !important;
}
.sun-glow--by-42 {
  border-top: 42px #ffca28 solid !important;
  border-bottom: 42px #ffca28 solid !important;
}
.sun-glow--bx-42 {
  border-right: 42px #ffca28 solid !important;
  border-left: 42px #ffca28 solid !important;
}
.sun-glow--ba-43 {
  border: 43px #ffca28 solid !important;
}
.sun-glow--bt-43 {
  border-top: 43px #ffca28 solid !important;
}
.sun-glow--br-43 {
  border-right: 43px #ffca28 solid !important;
}
.sun-glow--bl-43 {
  border-left: 43px #ffca28 solid !important;
}
.sun-glow--bb-43 {
  border-bottom: 43px #ffca28 solid !important;
}
.sun-glow--by-43 {
  border-top: 43px #ffca28 solid !important;
  border-bottom: 43px #ffca28 solid !important;
}
.sun-glow--bx-43 {
  border-right: 43px #ffca28 solid !important;
  border-left: 43px #ffca28 solid !important;
}
.sun-glow--ba-44 {
  border: 44px #ffca28 solid !important;
}
.sun-glow--bt-44 {
  border-top: 44px #ffca28 solid !important;
}
.sun-glow--br-44 {
  border-right: 44px #ffca28 solid !important;
}
.sun-glow--bl-44 {
  border-left: 44px #ffca28 solid !important;
}
.sun-glow--bb-44 {
  border-bottom: 44px #ffca28 solid !important;
}
.sun-glow--by-44 {
  border-top: 44px #ffca28 solid !important;
  border-bottom: 44px #ffca28 solid !important;
}
.sun-glow--bx-44 {
  border-right: 44px #ffca28 solid !important;
  border-left: 44px #ffca28 solid !important;
}
.sun-glow--ba-45 {
  border: 45px #ffca28 solid !important;
}
.sun-glow--bt-45 {
  border-top: 45px #ffca28 solid !important;
}
.sun-glow--br-45 {
  border-right: 45px #ffca28 solid !important;
}
.sun-glow--bl-45 {
  border-left: 45px #ffca28 solid !important;
}
.sun-glow--bb-45 {
  border-bottom: 45px #ffca28 solid !important;
}
.sun-glow--by-45 {
  border-top: 45px #ffca28 solid !important;
  border-bottom: 45px #ffca28 solid !important;
}
.sun-glow--bx-45 {
  border-right: 45px #ffca28 solid !important;
  border-left: 45px #ffca28 solid !important;
}
.sun-glow--ba-46 {
  border: 46px #ffca28 solid !important;
}
.sun-glow--bt-46 {
  border-top: 46px #ffca28 solid !important;
}
.sun-glow--br-46 {
  border-right: 46px #ffca28 solid !important;
}
.sun-glow--bl-46 {
  border-left: 46px #ffca28 solid !important;
}
.sun-glow--bb-46 {
  border-bottom: 46px #ffca28 solid !important;
}
.sun-glow--by-46 {
  border-top: 46px #ffca28 solid !important;
  border-bottom: 46px #ffca28 solid !important;
}
.sun-glow--bx-46 {
  border-right: 46px #ffca28 solid !important;
  border-left: 46px #ffca28 solid !important;
}
.sun-glow--ba-47 {
  border: 47px #ffca28 solid !important;
}
.sun-glow--bt-47 {
  border-top: 47px #ffca28 solid !important;
}
.sun-glow--br-47 {
  border-right: 47px #ffca28 solid !important;
}
.sun-glow--bl-47 {
  border-left: 47px #ffca28 solid !important;
}
.sun-glow--bb-47 {
  border-bottom: 47px #ffca28 solid !important;
}
.sun-glow--by-47 {
  border-top: 47px #ffca28 solid !important;
  border-bottom: 47px #ffca28 solid !important;
}
.sun-glow--bx-47 {
  border-right: 47px #ffca28 solid !important;
  border-left: 47px #ffca28 solid !important;
}
.sun-glow--ba-48 {
  border: 48px #ffca28 solid !important;
}
.sun-glow--bt-48 {
  border-top: 48px #ffca28 solid !important;
}
.sun-glow--br-48 {
  border-right: 48px #ffca28 solid !important;
}
.sun-glow--bl-48 {
  border-left: 48px #ffca28 solid !important;
}
.sun-glow--bb-48 {
  border-bottom: 48px #ffca28 solid !important;
}
.sun-glow--by-48 {
  border-top: 48px #ffca28 solid !important;
  border-bottom: 48px #ffca28 solid !important;
}
.sun-glow--bx-48 {
  border-right: 48px #ffca28 solid !important;
  border-left: 48px #ffca28 solid !important;
}
.sun-glow--ba-49 {
  border: 49px #ffca28 solid !important;
}
.sun-glow--bt-49 {
  border-top: 49px #ffca28 solid !important;
}
.sun-glow--br-49 {
  border-right: 49px #ffca28 solid !important;
}
.sun-glow--bl-49 {
  border-left: 49px #ffca28 solid !important;
}
.sun-glow--bb-49 {
  border-bottom: 49px #ffca28 solid !important;
}
.sun-glow--by-49 {
  border-top: 49px #ffca28 solid !important;
  border-bottom: 49px #ffca28 solid !important;
}
.sun-glow--bx-49 {
  border-right: 49px #ffca28 solid !important;
  border-left: 49px #ffca28 solid !important;
}
.sun-glow--ba-50 {
  border: 50px #ffca28 solid !important;
}
.sun-glow--bt-50 {
  border-top: 50px #ffca28 solid !important;
}
.sun-glow--br-50 {
  border-right: 50px #ffca28 solid !important;
}
.sun-glow--bl-50 {
  border-left: 50px #ffca28 solid !important;
}
.sun-glow--bb-50 {
  border-bottom: 50px #ffca28 solid !important;
}
.sun-glow--by-50 {
  border-top: 50px #ffca28 solid !important;
  border-bottom: 50px #ffca28 solid !important;
}
.sun-glow--bx-50 {
  border-right: 50px #ffca28 solid !important;
  border-left: 50px #ffca28 solid !important;
}
.sun-glow--ba-51 {
  border: 51px #ffca28 solid !important;
}
.sun-glow--bt-51 {
  border-top: 51px #ffca28 solid !important;
}
.sun-glow--br-51 {
  border-right: 51px #ffca28 solid !important;
}
.sun-glow--bl-51 {
  border-left: 51px #ffca28 solid !important;
}
.sun-glow--bb-51 {
  border-bottom: 51px #ffca28 solid !important;
}
.sun-glow--by-51 {
  border-top: 51px #ffca28 solid !important;
  border-bottom: 51px #ffca28 solid !important;
}
.sun-glow--bx-51 {
  border-right: 51px #ffca28 solid !important;
  border-left: 51px #ffca28 solid !important;
}
.sun-glow--ba-52 {
  border: 52px #ffca28 solid !important;
}
.sun-glow--bt-52 {
  border-top: 52px #ffca28 solid !important;
}
.sun-glow--br-52 {
  border-right: 52px #ffca28 solid !important;
}
.sun-glow--bl-52 {
  border-left: 52px #ffca28 solid !important;
}
.sun-glow--bb-52 {
  border-bottom: 52px #ffca28 solid !important;
}
.sun-glow--by-52 {
  border-top: 52px #ffca28 solid !important;
  border-bottom: 52px #ffca28 solid !important;
}
.sun-glow--bx-52 {
  border-right: 52px #ffca28 solid !important;
  border-left: 52px #ffca28 solid !important;
}
.sun-glow--ba-53 {
  border: 53px #ffca28 solid !important;
}
.sun-glow--bt-53 {
  border-top: 53px #ffca28 solid !important;
}
.sun-glow--br-53 {
  border-right: 53px #ffca28 solid !important;
}
.sun-glow--bl-53 {
  border-left: 53px #ffca28 solid !important;
}
.sun-glow--bb-53 {
  border-bottom: 53px #ffca28 solid !important;
}
.sun-glow--by-53 {
  border-top: 53px #ffca28 solid !important;
  border-bottom: 53px #ffca28 solid !important;
}
.sun-glow--bx-53 {
  border-right: 53px #ffca28 solid !important;
  border-left: 53px #ffca28 solid !important;
}
.sun-glow--ba-54 {
  border: 54px #ffca28 solid !important;
}
.sun-glow--bt-54 {
  border-top: 54px #ffca28 solid !important;
}
.sun-glow--br-54 {
  border-right: 54px #ffca28 solid !important;
}
.sun-glow--bl-54 {
  border-left: 54px #ffca28 solid !important;
}
.sun-glow--bb-54 {
  border-bottom: 54px #ffca28 solid !important;
}
.sun-glow--by-54 {
  border-top: 54px #ffca28 solid !important;
  border-bottom: 54px #ffca28 solid !important;
}
.sun-glow--bx-54 {
  border-right: 54px #ffca28 solid !important;
  border-left: 54px #ffca28 solid !important;
}
.sun-glow--ba-55 {
  border: 55px #ffca28 solid !important;
}
.sun-glow--bt-55 {
  border-top: 55px #ffca28 solid !important;
}
.sun-glow--br-55 {
  border-right: 55px #ffca28 solid !important;
}
.sun-glow--bl-55 {
  border-left: 55px #ffca28 solid !important;
}
.sun-glow--bb-55 {
  border-bottom: 55px #ffca28 solid !important;
}
.sun-glow--by-55 {
  border-top: 55px #ffca28 solid !important;
  border-bottom: 55px #ffca28 solid !important;
}
.sun-glow--bx-55 {
  border-right: 55px #ffca28 solid !important;
  border-left: 55px #ffca28 solid !important;
}
.sun-glow--ba-56 {
  border: 56px #ffca28 solid !important;
}
.sun-glow--bt-56 {
  border-top: 56px #ffca28 solid !important;
}
.sun-glow--br-56 {
  border-right: 56px #ffca28 solid !important;
}
.sun-glow--bl-56 {
  border-left: 56px #ffca28 solid !important;
}
.sun-glow--bb-56 {
  border-bottom: 56px #ffca28 solid !important;
}
.sun-glow--by-56 {
  border-top: 56px #ffca28 solid !important;
  border-bottom: 56px #ffca28 solid !important;
}
.sun-glow--bx-56 {
  border-right: 56px #ffca28 solid !important;
  border-left: 56px #ffca28 solid !important;
}
.sun-glow--ba-57 {
  border: 57px #ffca28 solid !important;
}
.sun-glow--bt-57 {
  border-top: 57px #ffca28 solid !important;
}
.sun-glow--br-57 {
  border-right: 57px #ffca28 solid !important;
}
.sun-glow--bl-57 {
  border-left: 57px #ffca28 solid !important;
}
.sun-glow--bb-57 {
  border-bottom: 57px #ffca28 solid !important;
}
.sun-glow--by-57 {
  border-top: 57px #ffca28 solid !important;
  border-bottom: 57px #ffca28 solid !important;
}
.sun-glow--bx-57 {
  border-right: 57px #ffca28 solid !important;
  border-left: 57px #ffca28 solid !important;
}
.sun-glow--ba-58 {
  border: 58px #ffca28 solid !important;
}
.sun-glow--bt-58 {
  border-top: 58px #ffca28 solid !important;
}
.sun-glow--br-58 {
  border-right: 58px #ffca28 solid !important;
}
.sun-glow--bl-58 {
  border-left: 58px #ffca28 solid !important;
}
.sun-glow--bb-58 {
  border-bottom: 58px #ffca28 solid !important;
}
.sun-glow--by-58 {
  border-top: 58px #ffca28 solid !important;
  border-bottom: 58px #ffca28 solid !important;
}
.sun-glow--bx-58 {
  border-right: 58px #ffca28 solid !important;
  border-left: 58px #ffca28 solid !important;
}
.sun-glow--ba-59 {
  border: 59px #ffca28 solid !important;
}
.sun-glow--bt-59 {
  border-top: 59px #ffca28 solid !important;
}
.sun-glow--br-59 {
  border-right: 59px #ffca28 solid !important;
}
.sun-glow--bl-59 {
  border-left: 59px #ffca28 solid !important;
}
.sun-glow--bb-59 {
  border-bottom: 59px #ffca28 solid !important;
}
.sun-glow--by-59 {
  border-top: 59px #ffca28 solid !important;
  border-bottom: 59px #ffca28 solid !important;
}
.sun-glow--bx-59 {
  border-right: 59px #ffca28 solid !important;
  border-left: 59px #ffca28 solid !important;
}
.sun-glow--ba-60 {
  border: 60px #ffca28 solid !important;
}
.sun-glow--bt-60 {
  border-top: 60px #ffca28 solid !important;
}
.sun-glow--br-60 {
  border-right: 60px #ffca28 solid !important;
}
.sun-glow--bl-60 {
  border-left: 60px #ffca28 solid !important;
}
.sun-glow--bb-60 {
  border-bottom: 60px #ffca28 solid !important;
}
.sun-glow--by-60 {
  border-top: 60px #ffca28 solid !important;
  border-bottom: 60px #ffca28 solid !important;
}
.sun-glow--bx-60 {
  border-right: 60px #ffca28 solid !important;
  border-left: 60px #ffca28 solid !important;
}
.sun-glow--ba-61 {
  border: 61px #ffca28 solid !important;
}
.sun-glow--bt-61 {
  border-top: 61px #ffca28 solid !important;
}
.sun-glow--br-61 {
  border-right: 61px #ffca28 solid !important;
}
.sun-glow--bl-61 {
  border-left: 61px #ffca28 solid !important;
}
.sun-glow--bb-61 {
  border-bottom: 61px #ffca28 solid !important;
}
.sun-glow--by-61 {
  border-top: 61px #ffca28 solid !important;
  border-bottom: 61px #ffca28 solid !important;
}
.sun-glow--bx-61 {
  border-right: 61px #ffca28 solid !important;
  border-left: 61px #ffca28 solid !important;
}
.sun-glow--ba-62 {
  border: 62px #ffca28 solid !important;
}
.sun-glow--bt-62 {
  border-top: 62px #ffca28 solid !important;
}
.sun-glow--br-62 {
  border-right: 62px #ffca28 solid !important;
}
.sun-glow--bl-62 {
  border-left: 62px #ffca28 solid !important;
}
.sun-glow--bb-62 {
  border-bottom: 62px #ffca28 solid !important;
}
.sun-glow--by-62 {
  border-top: 62px #ffca28 solid !important;
  border-bottom: 62px #ffca28 solid !important;
}
.sun-glow--bx-62 {
  border-right: 62px #ffca28 solid !important;
  border-left: 62px #ffca28 solid !important;
}
.sun-glow--ba-63 {
  border: 63px #ffca28 solid !important;
}
.sun-glow--bt-63 {
  border-top: 63px #ffca28 solid !important;
}
.sun-glow--br-63 {
  border-right: 63px #ffca28 solid !important;
}
.sun-glow--bl-63 {
  border-left: 63px #ffca28 solid !important;
}
.sun-glow--bb-63 {
  border-bottom: 63px #ffca28 solid !important;
}
.sun-glow--by-63 {
  border-top: 63px #ffca28 solid !important;
  border-bottom: 63px #ffca28 solid !important;
}
.sun-glow--bx-63 {
  border-right: 63px #ffca28 solid !important;
  border-left: 63px #ffca28 solid !important;
}
.sun-glow--ba-64 {
  border: 64px #ffca28 solid !important;
}
.sun-glow--bt-64 {
  border-top: 64px #ffca28 solid !important;
}
.sun-glow--br-64 {
  border-right: 64px #ffca28 solid !important;
}
.sun-glow--bl-64 {
  border-left: 64px #ffca28 solid !important;
}
.sun-glow--bb-64 {
  border-bottom: 64px #ffca28 solid !important;
}
.sun-glow--by-64 {
  border-top: 64px #ffca28 solid !important;
  border-bottom: 64px #ffca28 solid !important;
}
.sun-glow--bx-64 {
  border-right: 64px #ffca28 solid !important;
  border-left: 64px #ffca28 solid !important;
}
.sun-glow--ba-65 {
  border: 65px #ffca28 solid !important;
}
.sun-glow--bt-65 {
  border-top: 65px #ffca28 solid !important;
}
.sun-glow--br-65 {
  border-right: 65px #ffca28 solid !important;
}
.sun-glow--bl-65 {
  border-left: 65px #ffca28 solid !important;
}
.sun-glow--bb-65 {
  border-bottom: 65px #ffca28 solid !important;
}
.sun-glow--by-65 {
  border-top: 65px #ffca28 solid !important;
  border-bottom: 65px #ffca28 solid !important;
}
.sun-glow--bx-65 {
  border-right: 65px #ffca28 solid !important;
  border-left: 65px #ffca28 solid !important;
}
.sun-glow--ba-66 {
  border: 66px #ffca28 solid !important;
}
.sun-glow--bt-66 {
  border-top: 66px #ffca28 solid !important;
}
.sun-glow--br-66 {
  border-right: 66px #ffca28 solid !important;
}
.sun-glow--bl-66 {
  border-left: 66px #ffca28 solid !important;
}
.sun-glow--bb-66 {
  border-bottom: 66px #ffca28 solid !important;
}
.sun-glow--by-66 {
  border-top: 66px #ffca28 solid !important;
  border-bottom: 66px #ffca28 solid !important;
}
.sun-glow--bx-66 {
  border-right: 66px #ffca28 solid !important;
  border-left: 66px #ffca28 solid !important;
}
.sun-glow--ba-67 {
  border: 67px #ffca28 solid !important;
}
.sun-glow--bt-67 {
  border-top: 67px #ffca28 solid !important;
}
.sun-glow--br-67 {
  border-right: 67px #ffca28 solid !important;
}
.sun-glow--bl-67 {
  border-left: 67px #ffca28 solid !important;
}
.sun-glow--bb-67 {
  border-bottom: 67px #ffca28 solid !important;
}
.sun-glow--by-67 {
  border-top: 67px #ffca28 solid !important;
  border-bottom: 67px #ffca28 solid !important;
}
.sun-glow--bx-67 {
  border-right: 67px #ffca28 solid !important;
  border-left: 67px #ffca28 solid !important;
}
.sun-glow--ba-68 {
  border: 68px #ffca28 solid !important;
}
.sun-glow--bt-68 {
  border-top: 68px #ffca28 solid !important;
}
.sun-glow--br-68 {
  border-right: 68px #ffca28 solid !important;
}
.sun-glow--bl-68 {
  border-left: 68px #ffca28 solid !important;
}
.sun-glow--bb-68 {
  border-bottom: 68px #ffca28 solid !important;
}
.sun-glow--by-68 {
  border-top: 68px #ffca28 solid !important;
  border-bottom: 68px #ffca28 solid !important;
}
.sun-glow--bx-68 {
  border-right: 68px #ffca28 solid !important;
  border-left: 68px #ffca28 solid !important;
}
.sun-glow--ba-69 {
  border: 69px #ffca28 solid !important;
}
.sun-glow--bt-69 {
  border-top: 69px #ffca28 solid !important;
}
.sun-glow--br-69 {
  border-right: 69px #ffca28 solid !important;
}
.sun-glow--bl-69 {
  border-left: 69px #ffca28 solid !important;
}
.sun-glow--bb-69 {
  border-bottom: 69px #ffca28 solid !important;
}
.sun-glow--by-69 {
  border-top: 69px #ffca28 solid !important;
  border-bottom: 69px #ffca28 solid !important;
}
.sun-glow--bx-69 {
  border-right: 69px #ffca28 solid !important;
  border-left: 69px #ffca28 solid !important;
}
.sun-glow--ba-70 {
  border: 70px #ffca28 solid !important;
}
.sun-glow--bt-70 {
  border-top: 70px #ffca28 solid !important;
}
.sun-glow--br-70 {
  border-right: 70px #ffca28 solid !important;
}
.sun-glow--bl-70 {
  border-left: 70px #ffca28 solid !important;
}
.sun-glow--bb-70 {
  border-bottom: 70px #ffca28 solid !important;
}
.sun-glow--by-70 {
  border-top: 70px #ffca28 solid !important;
  border-bottom: 70px #ffca28 solid !important;
}
.sun-glow--bx-70 {
  border-right: 70px #ffca28 solid !important;
  border-left: 70px #ffca28 solid !important;
}
.sun-glow--ba-71 {
  border: 71px #ffca28 solid !important;
}
.sun-glow--bt-71 {
  border-top: 71px #ffca28 solid !important;
}
.sun-glow--br-71 {
  border-right: 71px #ffca28 solid !important;
}
.sun-glow--bl-71 {
  border-left: 71px #ffca28 solid !important;
}
.sun-glow--bb-71 {
  border-bottom: 71px #ffca28 solid !important;
}
.sun-glow--by-71 {
  border-top: 71px #ffca28 solid !important;
  border-bottom: 71px #ffca28 solid !important;
}
.sun-glow--bx-71 {
  border-right: 71px #ffca28 solid !important;
  border-left: 71px #ffca28 solid !important;
}
.sun-glow--ba-72 {
  border: 72px #ffca28 solid !important;
}
.sun-glow--bt-72 {
  border-top: 72px #ffca28 solid !important;
}
.sun-glow--br-72 {
  border-right: 72px #ffca28 solid !important;
}
.sun-glow--bl-72 {
  border-left: 72px #ffca28 solid !important;
}
.sun-glow--bb-72 {
  border-bottom: 72px #ffca28 solid !important;
}
.sun-glow--by-72 {
  border-top: 72px #ffca28 solid !important;
  border-bottom: 72px #ffca28 solid !important;
}
.sun-glow--bx-72 {
  border-right: 72px #ffca28 solid !important;
  border-left: 72px #ffca28 solid !important;
}
.sun-glow--ba-73 {
  border: 73px #ffca28 solid !important;
}
.sun-glow--bt-73 {
  border-top: 73px #ffca28 solid !important;
}
.sun-glow--br-73 {
  border-right: 73px #ffca28 solid !important;
}
.sun-glow--bl-73 {
  border-left: 73px #ffca28 solid !important;
}
.sun-glow--bb-73 {
  border-bottom: 73px #ffca28 solid !important;
}
.sun-glow--by-73 {
  border-top: 73px #ffca28 solid !important;
  border-bottom: 73px #ffca28 solid !important;
}
.sun-glow--bx-73 {
  border-right: 73px #ffca28 solid !important;
  border-left: 73px #ffca28 solid !important;
}
.sun-glow--ba-74 {
  border: 74px #ffca28 solid !important;
}
.sun-glow--bt-74 {
  border-top: 74px #ffca28 solid !important;
}
.sun-glow--br-74 {
  border-right: 74px #ffca28 solid !important;
}
.sun-glow--bl-74 {
  border-left: 74px #ffca28 solid !important;
}
.sun-glow--bb-74 {
  border-bottom: 74px #ffca28 solid !important;
}
.sun-glow--by-74 {
  border-top: 74px #ffca28 solid !important;
  border-bottom: 74px #ffca28 solid !important;
}
.sun-glow--bx-74 {
  border-right: 74px #ffca28 solid !important;
  border-left: 74px #ffca28 solid !important;
}
.sun-glow--ba-75 {
  border: 75px #ffca28 solid !important;
}
.sun-glow--bt-75 {
  border-top: 75px #ffca28 solid !important;
}
.sun-glow--br-75 {
  border-right: 75px #ffca28 solid !important;
}
.sun-glow--bl-75 {
  border-left: 75px #ffca28 solid !important;
}
.sun-glow--bb-75 {
  border-bottom: 75px #ffca28 solid !important;
}
.sun-glow--by-75 {
  border-top: 75px #ffca28 solid !important;
  border-bottom: 75px #ffca28 solid !important;
}
.sun-glow--bx-75 {
  border-right: 75px #ffca28 solid !important;
  border-left: 75px #ffca28 solid !important;
}
.sun-glow--ba-76 {
  border: 76px #ffca28 solid !important;
}
.sun-glow--bt-76 {
  border-top: 76px #ffca28 solid !important;
}
.sun-glow--br-76 {
  border-right: 76px #ffca28 solid !important;
}
.sun-glow--bl-76 {
  border-left: 76px #ffca28 solid !important;
}
.sun-glow--bb-76 {
  border-bottom: 76px #ffca28 solid !important;
}
.sun-glow--by-76 {
  border-top: 76px #ffca28 solid !important;
  border-bottom: 76px #ffca28 solid !important;
}
.sun-glow--bx-76 {
  border-right: 76px #ffca28 solid !important;
  border-left: 76px #ffca28 solid !important;
}
.sun-glow--ba-77 {
  border: 77px #ffca28 solid !important;
}
.sun-glow--bt-77 {
  border-top: 77px #ffca28 solid !important;
}
.sun-glow--br-77 {
  border-right: 77px #ffca28 solid !important;
}
.sun-glow--bl-77 {
  border-left: 77px #ffca28 solid !important;
}
.sun-glow--bb-77 {
  border-bottom: 77px #ffca28 solid !important;
}
.sun-glow--by-77 {
  border-top: 77px #ffca28 solid !important;
  border-bottom: 77px #ffca28 solid !important;
}
.sun-glow--bx-77 {
  border-right: 77px #ffca28 solid !important;
  border-left: 77px #ffca28 solid !important;
}
.sun-glow--ba-78 {
  border: 78px #ffca28 solid !important;
}
.sun-glow--bt-78 {
  border-top: 78px #ffca28 solid !important;
}
.sun-glow--br-78 {
  border-right: 78px #ffca28 solid !important;
}
.sun-glow--bl-78 {
  border-left: 78px #ffca28 solid !important;
}
.sun-glow--bb-78 {
  border-bottom: 78px #ffca28 solid !important;
}
.sun-glow--by-78 {
  border-top: 78px #ffca28 solid !important;
  border-bottom: 78px #ffca28 solid !important;
}
.sun-glow--bx-78 {
  border-right: 78px #ffca28 solid !important;
  border-left: 78px #ffca28 solid !important;
}
.sun-glow--ba-79 {
  border: 79px #ffca28 solid !important;
}
.sun-glow--bt-79 {
  border-top: 79px #ffca28 solid !important;
}
.sun-glow--br-79 {
  border-right: 79px #ffca28 solid !important;
}
.sun-glow--bl-79 {
  border-left: 79px #ffca28 solid !important;
}
.sun-glow--bb-79 {
  border-bottom: 79px #ffca28 solid !important;
}
.sun-glow--by-79 {
  border-top: 79px #ffca28 solid !important;
  border-bottom: 79px #ffca28 solid !important;
}
.sun-glow--bx-79 {
  border-right: 79px #ffca28 solid !important;
  border-left: 79px #ffca28 solid !important;
}
.sun-glow--ba-80 {
  border: 80px #ffca28 solid !important;
}
.sun-glow--bt-80 {
  border-top: 80px #ffca28 solid !important;
}
.sun-glow--br-80 {
  border-right: 80px #ffca28 solid !important;
}
.sun-glow--bl-80 {
  border-left: 80px #ffca28 solid !important;
}
.sun-glow--bb-80 {
  border-bottom: 80px #ffca28 solid !important;
}
.sun-glow--by-80 {
  border-top: 80px #ffca28 solid !important;
  border-bottom: 80px #ffca28 solid !important;
}
.sun-glow--bx-80 {
  border-right: 80px #ffca28 solid !important;
  border-left: 80px #ffca28 solid !important;
}
.sun-glow--ba-81 {
  border: 81px #ffca28 solid !important;
}
.sun-glow--bt-81 {
  border-top: 81px #ffca28 solid !important;
}
.sun-glow--br-81 {
  border-right: 81px #ffca28 solid !important;
}
.sun-glow--bl-81 {
  border-left: 81px #ffca28 solid !important;
}
.sun-glow--bb-81 {
  border-bottom: 81px #ffca28 solid !important;
}
.sun-glow--by-81 {
  border-top: 81px #ffca28 solid !important;
  border-bottom: 81px #ffca28 solid !important;
}
.sun-glow--bx-81 {
  border-right: 81px #ffca28 solid !important;
  border-left: 81px #ffca28 solid !important;
}
.sun-glow--ba-82 {
  border: 82px #ffca28 solid !important;
}
.sun-glow--bt-82 {
  border-top: 82px #ffca28 solid !important;
}
.sun-glow--br-82 {
  border-right: 82px #ffca28 solid !important;
}
.sun-glow--bl-82 {
  border-left: 82px #ffca28 solid !important;
}
.sun-glow--bb-82 {
  border-bottom: 82px #ffca28 solid !important;
}
.sun-glow--by-82 {
  border-top: 82px #ffca28 solid !important;
  border-bottom: 82px #ffca28 solid !important;
}
.sun-glow--bx-82 {
  border-right: 82px #ffca28 solid !important;
  border-left: 82px #ffca28 solid !important;
}
.sun-glow--ba-83 {
  border: 83px #ffca28 solid !important;
}
.sun-glow--bt-83 {
  border-top: 83px #ffca28 solid !important;
}
.sun-glow--br-83 {
  border-right: 83px #ffca28 solid !important;
}
.sun-glow--bl-83 {
  border-left: 83px #ffca28 solid !important;
}
.sun-glow--bb-83 {
  border-bottom: 83px #ffca28 solid !important;
}
.sun-glow--by-83 {
  border-top: 83px #ffca28 solid !important;
  border-bottom: 83px #ffca28 solid !important;
}
.sun-glow--bx-83 {
  border-right: 83px #ffca28 solid !important;
  border-left: 83px #ffca28 solid !important;
}
.sun-glow--ba-84 {
  border: 84px #ffca28 solid !important;
}
.sun-glow--bt-84 {
  border-top: 84px #ffca28 solid !important;
}
.sun-glow--br-84 {
  border-right: 84px #ffca28 solid !important;
}
.sun-glow--bl-84 {
  border-left: 84px #ffca28 solid !important;
}
.sun-glow--bb-84 {
  border-bottom: 84px #ffca28 solid !important;
}
.sun-glow--by-84 {
  border-top: 84px #ffca28 solid !important;
  border-bottom: 84px #ffca28 solid !important;
}
.sun-glow--bx-84 {
  border-right: 84px #ffca28 solid !important;
  border-left: 84px #ffca28 solid !important;
}
.sun-glow--ba-85 {
  border: 85px #ffca28 solid !important;
}
.sun-glow--bt-85 {
  border-top: 85px #ffca28 solid !important;
}
.sun-glow--br-85 {
  border-right: 85px #ffca28 solid !important;
}
.sun-glow--bl-85 {
  border-left: 85px #ffca28 solid !important;
}
.sun-glow--bb-85 {
  border-bottom: 85px #ffca28 solid !important;
}
.sun-glow--by-85 {
  border-top: 85px #ffca28 solid !important;
  border-bottom: 85px #ffca28 solid !important;
}
.sun-glow--bx-85 {
  border-right: 85px #ffca28 solid !important;
  border-left: 85px #ffca28 solid !important;
}
.sun-glow--ba-86 {
  border: 86px #ffca28 solid !important;
}
.sun-glow--bt-86 {
  border-top: 86px #ffca28 solid !important;
}
.sun-glow--br-86 {
  border-right: 86px #ffca28 solid !important;
}
.sun-glow--bl-86 {
  border-left: 86px #ffca28 solid !important;
}
.sun-glow--bb-86 {
  border-bottom: 86px #ffca28 solid !important;
}
.sun-glow--by-86 {
  border-top: 86px #ffca28 solid !important;
  border-bottom: 86px #ffca28 solid !important;
}
.sun-glow--bx-86 {
  border-right: 86px #ffca28 solid !important;
  border-left: 86px #ffca28 solid !important;
}
.sun-glow--ba-87 {
  border: 87px #ffca28 solid !important;
}
.sun-glow--bt-87 {
  border-top: 87px #ffca28 solid !important;
}
.sun-glow--br-87 {
  border-right: 87px #ffca28 solid !important;
}
.sun-glow--bl-87 {
  border-left: 87px #ffca28 solid !important;
}
.sun-glow--bb-87 {
  border-bottom: 87px #ffca28 solid !important;
}
.sun-glow--by-87 {
  border-top: 87px #ffca28 solid !important;
  border-bottom: 87px #ffca28 solid !important;
}
.sun-glow--bx-87 {
  border-right: 87px #ffca28 solid !important;
  border-left: 87px #ffca28 solid !important;
}
.sun-glow--ba-88 {
  border: 88px #ffca28 solid !important;
}
.sun-glow--bt-88 {
  border-top: 88px #ffca28 solid !important;
}
.sun-glow--br-88 {
  border-right: 88px #ffca28 solid !important;
}
.sun-glow--bl-88 {
  border-left: 88px #ffca28 solid !important;
}
.sun-glow--bb-88 {
  border-bottom: 88px #ffca28 solid !important;
}
.sun-glow--by-88 {
  border-top: 88px #ffca28 solid !important;
  border-bottom: 88px #ffca28 solid !important;
}
.sun-glow--bx-88 {
  border-right: 88px #ffca28 solid !important;
  border-left: 88px #ffca28 solid !important;
}
.sun-glow--ba-89 {
  border: 89px #ffca28 solid !important;
}
.sun-glow--bt-89 {
  border-top: 89px #ffca28 solid !important;
}
.sun-glow--br-89 {
  border-right: 89px #ffca28 solid !important;
}
.sun-glow--bl-89 {
  border-left: 89px #ffca28 solid !important;
}
.sun-glow--bb-89 {
  border-bottom: 89px #ffca28 solid !important;
}
.sun-glow--by-89 {
  border-top: 89px #ffca28 solid !important;
  border-bottom: 89px #ffca28 solid !important;
}
.sun-glow--bx-89 {
  border-right: 89px #ffca28 solid !important;
  border-left: 89px #ffca28 solid !important;
}
.sun-glow--ba-90 {
  border: 90px #ffca28 solid !important;
}
.sun-glow--bt-90 {
  border-top: 90px #ffca28 solid !important;
}
.sun-glow--br-90 {
  border-right: 90px #ffca28 solid !important;
}
.sun-glow--bl-90 {
  border-left: 90px #ffca28 solid !important;
}
.sun-glow--bb-90 {
  border-bottom: 90px #ffca28 solid !important;
}
.sun-glow--by-90 {
  border-top: 90px #ffca28 solid !important;
  border-bottom: 90px #ffca28 solid !important;
}
.sun-glow--bx-90 {
  border-right: 90px #ffca28 solid !important;
  border-left: 90px #ffca28 solid !important;
}
.sun-glow--ba-91 {
  border: 91px #ffca28 solid !important;
}
.sun-glow--bt-91 {
  border-top: 91px #ffca28 solid !important;
}
.sun-glow--br-91 {
  border-right: 91px #ffca28 solid !important;
}
.sun-glow--bl-91 {
  border-left: 91px #ffca28 solid !important;
}
.sun-glow--bb-91 {
  border-bottom: 91px #ffca28 solid !important;
}
.sun-glow--by-91 {
  border-top: 91px #ffca28 solid !important;
  border-bottom: 91px #ffca28 solid !important;
}
.sun-glow--bx-91 {
  border-right: 91px #ffca28 solid !important;
  border-left: 91px #ffca28 solid !important;
}
.sun-glow--ba-92 {
  border: 92px #ffca28 solid !important;
}
.sun-glow--bt-92 {
  border-top: 92px #ffca28 solid !important;
}
.sun-glow--br-92 {
  border-right: 92px #ffca28 solid !important;
}
.sun-glow--bl-92 {
  border-left: 92px #ffca28 solid !important;
}
.sun-glow--bb-92 {
  border-bottom: 92px #ffca28 solid !important;
}
.sun-glow--by-92 {
  border-top: 92px #ffca28 solid !important;
  border-bottom: 92px #ffca28 solid !important;
}
.sun-glow--bx-92 {
  border-right: 92px #ffca28 solid !important;
  border-left: 92px #ffca28 solid !important;
}
.sun-glow--ba-93 {
  border: 93px #ffca28 solid !important;
}
.sun-glow--bt-93 {
  border-top: 93px #ffca28 solid !important;
}
.sun-glow--br-93 {
  border-right: 93px #ffca28 solid !important;
}
.sun-glow--bl-93 {
  border-left: 93px #ffca28 solid !important;
}
.sun-glow--bb-93 {
  border-bottom: 93px #ffca28 solid !important;
}
.sun-glow--by-93 {
  border-top: 93px #ffca28 solid !important;
  border-bottom: 93px #ffca28 solid !important;
}
.sun-glow--bx-93 {
  border-right: 93px #ffca28 solid !important;
  border-left: 93px #ffca28 solid !important;
}
.sun-glow--ba-94 {
  border: 94px #ffca28 solid !important;
}
.sun-glow--bt-94 {
  border-top: 94px #ffca28 solid !important;
}
.sun-glow--br-94 {
  border-right: 94px #ffca28 solid !important;
}
.sun-glow--bl-94 {
  border-left: 94px #ffca28 solid !important;
}
.sun-glow--bb-94 {
  border-bottom: 94px #ffca28 solid !important;
}
.sun-glow--by-94 {
  border-top: 94px #ffca28 solid !important;
  border-bottom: 94px #ffca28 solid !important;
}
.sun-glow--bx-94 {
  border-right: 94px #ffca28 solid !important;
  border-left: 94px #ffca28 solid !important;
}
.sun-glow--ba-95 {
  border: 95px #ffca28 solid !important;
}
.sun-glow--bt-95 {
  border-top: 95px #ffca28 solid !important;
}
.sun-glow--br-95 {
  border-right: 95px #ffca28 solid !important;
}
.sun-glow--bl-95 {
  border-left: 95px #ffca28 solid !important;
}
.sun-glow--bb-95 {
  border-bottom: 95px #ffca28 solid !important;
}
.sun-glow--by-95 {
  border-top: 95px #ffca28 solid !important;
  border-bottom: 95px #ffca28 solid !important;
}
.sun-glow--bx-95 {
  border-right: 95px #ffca28 solid !important;
  border-left: 95px #ffca28 solid !important;
}
.sun-glow--ba-96 {
  border: 96px #ffca28 solid !important;
}
.sun-glow--bt-96 {
  border-top: 96px #ffca28 solid !important;
}
.sun-glow--br-96 {
  border-right: 96px #ffca28 solid !important;
}
.sun-glow--bl-96 {
  border-left: 96px #ffca28 solid !important;
}
.sun-glow--bb-96 {
  border-bottom: 96px #ffca28 solid !important;
}
.sun-glow--by-96 {
  border-top: 96px #ffca28 solid !important;
  border-bottom: 96px #ffca28 solid !important;
}
.sun-glow--bx-96 {
  border-right: 96px #ffca28 solid !important;
  border-left: 96px #ffca28 solid !important;
}
.sun-glow--ba-97 {
  border: 97px #ffca28 solid !important;
}
.sun-glow--bt-97 {
  border-top: 97px #ffca28 solid !important;
}
.sun-glow--br-97 {
  border-right: 97px #ffca28 solid !important;
}
.sun-glow--bl-97 {
  border-left: 97px #ffca28 solid !important;
}
.sun-glow--bb-97 {
  border-bottom: 97px #ffca28 solid !important;
}
.sun-glow--by-97 {
  border-top: 97px #ffca28 solid !important;
  border-bottom: 97px #ffca28 solid !important;
}
.sun-glow--bx-97 {
  border-right: 97px #ffca28 solid !important;
  border-left: 97px #ffca28 solid !important;
}
.sun-glow--ba-98 {
  border: 98px #ffca28 solid !important;
}
.sun-glow--bt-98 {
  border-top: 98px #ffca28 solid !important;
}
.sun-glow--br-98 {
  border-right: 98px #ffca28 solid !important;
}
.sun-glow--bl-98 {
  border-left: 98px #ffca28 solid !important;
}
.sun-glow--bb-98 {
  border-bottom: 98px #ffca28 solid !important;
}
.sun-glow--by-98 {
  border-top: 98px #ffca28 solid !important;
  border-bottom: 98px #ffca28 solid !important;
}
.sun-glow--bx-98 {
  border-right: 98px #ffca28 solid !important;
  border-left: 98px #ffca28 solid !important;
}
.sun-glow--ba-99 {
  border: 99px #ffca28 solid !important;
}
.sun-glow--bt-99 {
  border-top: 99px #ffca28 solid !important;
}
.sun-glow--br-99 {
  border-right: 99px #ffca28 solid !important;
}
.sun-glow--bl-99 {
  border-left: 99px #ffca28 solid !important;
}
.sun-glow--bb-99 {
  border-bottom: 99px #ffca28 solid !important;
}
.sun-glow--by-99 {
  border-top: 99px #ffca28 solid !important;
  border-bottom: 99px #ffca28 solid !important;
}
.sun-glow--bx-99 {
  border-right: 99px #ffca28 solid !important;
  border-left: 99px #ffca28 solid !important;
}
.sun-glow--ba-100 {
  border: 100px #ffca28 solid !important;
}
.sun-glow--bt-100 {
  border-top: 100px #ffca28 solid !important;
}
.sun-glow--br-100 {
  border-right: 100px #ffca28 solid !important;
}
.sun-glow--bl-100 {
  border-left: 100px #ffca28 solid !important;
}
.sun-glow--bb-100 {
  border-bottom: 100px #ffca28 solid !important;
}
.sun-glow--by-100 {
  border-top: 100px #ffca28 solid !important;
  border-bottom: 100px #ffca28 solid !important;
}
.sun-glow--bx-100 {
  border-right: 100px #ffca28 solid !important;
  border-left: 100px #ffca28 solid !important;
}
.gold--ba-1 {
  border: 1px #fdd600 solid !important;
}
.gold--bt-1 {
  border-top: 1px #fdd600 solid !important;
}
.gold--br-1 {
  border-right: 1px #fdd600 solid !important;
}
.gold--bl-1 {
  border-left: 1px #fdd600 solid !important;
}
.gold--bb-1 {
  border-bottom: 1px #fdd600 solid !important;
}
.gold--by-1 {
  border-top: 1px #fdd600 solid !important;
  border-bottom: 1px #fdd600 solid !important;
}
.gold--bx-1 {
  border-right: 1px #fdd600 solid !important;
  border-left: 1px #fdd600 solid !important;
}
.gold--ba-2 {
  border: 2px #fdd600 solid !important;
}
.gold--bt-2 {
  border-top: 2px #fdd600 solid !important;
}
.gold--br-2 {
  border-right: 2px #fdd600 solid !important;
}
.gold--bl-2 {
  border-left: 2px #fdd600 solid !important;
}
.gold--bb-2 {
  border-bottom: 2px #fdd600 solid !important;
}
.gold--by-2 {
  border-top: 2px #fdd600 solid !important;
  border-bottom: 2px #fdd600 solid !important;
}
.gold--bx-2 {
  border-right: 2px #fdd600 solid !important;
  border-left: 2px #fdd600 solid !important;
}
.gold--ba-3 {
  border: 3px #fdd600 solid !important;
}
.gold--bt-3 {
  border-top: 3px #fdd600 solid !important;
}
.gold--br-3 {
  border-right: 3px #fdd600 solid !important;
}
.gold--bl-3 {
  border-left: 3px #fdd600 solid !important;
}
.gold--bb-3 {
  border-bottom: 3px #fdd600 solid !important;
}
.gold--by-3 {
  border-top: 3px #fdd600 solid !important;
  border-bottom: 3px #fdd600 solid !important;
}
.gold--bx-3 {
  border-right: 3px #fdd600 solid !important;
  border-left: 3px #fdd600 solid !important;
}
.gold--ba-4 {
  border: 4px #fdd600 solid !important;
}
.gold--bt-4 {
  border-top: 4px #fdd600 solid !important;
}
.gold--br-4 {
  border-right: 4px #fdd600 solid !important;
}
.gold--bl-4 {
  border-left: 4px #fdd600 solid !important;
}
.gold--bb-4 {
  border-bottom: 4px #fdd600 solid !important;
}
.gold--by-4 {
  border-top: 4px #fdd600 solid !important;
  border-bottom: 4px #fdd600 solid !important;
}
.gold--bx-4 {
  border-right: 4px #fdd600 solid !important;
  border-left: 4px #fdd600 solid !important;
}
.gold--ba-5 {
  border: 5px #fdd600 solid !important;
}
.gold--bt-5 {
  border-top: 5px #fdd600 solid !important;
}
.gold--br-5 {
  border-right: 5px #fdd600 solid !important;
}
.gold--bl-5 {
  border-left: 5px #fdd600 solid !important;
}
.gold--bb-5 {
  border-bottom: 5px #fdd600 solid !important;
}
.gold--by-5 {
  border-top: 5px #fdd600 solid !important;
  border-bottom: 5px #fdd600 solid !important;
}
.gold--bx-5 {
  border-right: 5px #fdd600 solid !important;
  border-left: 5px #fdd600 solid !important;
}
.gold--ba-6 {
  border: 6px #fdd600 solid !important;
}
.gold--bt-6 {
  border-top: 6px #fdd600 solid !important;
}
.gold--br-6 {
  border-right: 6px #fdd600 solid !important;
}
.gold--bl-6 {
  border-left: 6px #fdd600 solid !important;
}
.gold--bb-6 {
  border-bottom: 6px #fdd600 solid !important;
}
.gold--by-6 {
  border-top: 6px #fdd600 solid !important;
  border-bottom: 6px #fdd600 solid !important;
}
.gold--bx-6 {
  border-right: 6px #fdd600 solid !important;
  border-left: 6px #fdd600 solid !important;
}
.gold--ba-7 {
  border: 7px #fdd600 solid !important;
}
.gold--bt-7 {
  border-top: 7px #fdd600 solid !important;
}
.gold--br-7 {
  border-right: 7px #fdd600 solid !important;
}
.gold--bl-7 {
  border-left: 7px #fdd600 solid !important;
}
.gold--bb-7 {
  border-bottom: 7px #fdd600 solid !important;
}
.gold--by-7 {
  border-top: 7px #fdd600 solid !important;
  border-bottom: 7px #fdd600 solid !important;
}
.gold--bx-7 {
  border-right: 7px #fdd600 solid !important;
  border-left: 7px #fdd600 solid !important;
}
.gold--ba-8 {
  border: 8px #fdd600 solid !important;
}
.gold--bt-8 {
  border-top: 8px #fdd600 solid !important;
}
.gold--br-8 {
  border-right: 8px #fdd600 solid !important;
}
.gold--bl-8 {
  border-left: 8px #fdd600 solid !important;
}
.gold--bb-8 {
  border-bottom: 8px #fdd600 solid !important;
}
.gold--by-8 {
  border-top: 8px #fdd600 solid !important;
  border-bottom: 8px #fdd600 solid !important;
}
.gold--bx-8 {
  border-right: 8px #fdd600 solid !important;
  border-left: 8px #fdd600 solid !important;
}
.gold--ba-9 {
  border: 9px #fdd600 solid !important;
}
.gold--bt-9 {
  border-top: 9px #fdd600 solid !important;
}
.gold--br-9 {
  border-right: 9px #fdd600 solid !important;
}
.gold--bl-9 {
  border-left: 9px #fdd600 solid !important;
}
.gold--bb-9 {
  border-bottom: 9px #fdd600 solid !important;
}
.gold--by-9 {
  border-top: 9px #fdd600 solid !important;
  border-bottom: 9px #fdd600 solid !important;
}
.gold--bx-9 {
  border-right: 9px #fdd600 solid !important;
  border-left: 9px #fdd600 solid !important;
}
.gold--ba-10 {
  border: 10px #fdd600 solid !important;
}
.gold--bt-10 {
  border-top: 10px #fdd600 solid !important;
}
.gold--br-10 {
  border-right: 10px #fdd600 solid !important;
}
.gold--bl-10 {
  border-left: 10px #fdd600 solid !important;
}
.gold--bb-10 {
  border-bottom: 10px #fdd600 solid !important;
}
.gold--by-10 {
  border-top: 10px #fdd600 solid !important;
  border-bottom: 10px #fdd600 solid !important;
}
.gold--bx-10 {
  border-right: 10px #fdd600 solid !important;
  border-left: 10px #fdd600 solid !important;
}
.gold--ba-11 {
  border: 11px #fdd600 solid !important;
}
.gold--bt-11 {
  border-top: 11px #fdd600 solid !important;
}
.gold--br-11 {
  border-right: 11px #fdd600 solid !important;
}
.gold--bl-11 {
  border-left: 11px #fdd600 solid !important;
}
.gold--bb-11 {
  border-bottom: 11px #fdd600 solid !important;
}
.gold--by-11 {
  border-top: 11px #fdd600 solid !important;
  border-bottom: 11px #fdd600 solid !important;
}
.gold--bx-11 {
  border-right: 11px #fdd600 solid !important;
  border-left: 11px #fdd600 solid !important;
}
.gold--ba-12 {
  border: 12px #fdd600 solid !important;
}
.gold--bt-12 {
  border-top: 12px #fdd600 solid !important;
}
.gold--br-12 {
  border-right: 12px #fdd600 solid !important;
}
.gold--bl-12 {
  border-left: 12px #fdd600 solid !important;
}
.gold--bb-12 {
  border-bottom: 12px #fdd600 solid !important;
}
.gold--by-12 {
  border-top: 12px #fdd600 solid !important;
  border-bottom: 12px #fdd600 solid !important;
}
.gold--bx-12 {
  border-right: 12px #fdd600 solid !important;
  border-left: 12px #fdd600 solid !important;
}
.gold--ba-13 {
  border: 13px #fdd600 solid !important;
}
.gold--bt-13 {
  border-top: 13px #fdd600 solid !important;
}
.gold--br-13 {
  border-right: 13px #fdd600 solid !important;
}
.gold--bl-13 {
  border-left: 13px #fdd600 solid !important;
}
.gold--bb-13 {
  border-bottom: 13px #fdd600 solid !important;
}
.gold--by-13 {
  border-top: 13px #fdd600 solid !important;
  border-bottom: 13px #fdd600 solid !important;
}
.gold--bx-13 {
  border-right: 13px #fdd600 solid !important;
  border-left: 13px #fdd600 solid !important;
}
.gold--ba-14 {
  border: 14px #fdd600 solid !important;
}
.gold--bt-14 {
  border-top: 14px #fdd600 solid !important;
}
.gold--br-14 {
  border-right: 14px #fdd600 solid !important;
}
.gold--bl-14 {
  border-left: 14px #fdd600 solid !important;
}
.gold--bb-14 {
  border-bottom: 14px #fdd600 solid !important;
}
.gold--by-14 {
  border-top: 14px #fdd600 solid !important;
  border-bottom: 14px #fdd600 solid !important;
}
.gold--bx-14 {
  border-right: 14px #fdd600 solid !important;
  border-left: 14px #fdd600 solid !important;
}
.gold--ba-15 {
  border: 15px #fdd600 solid !important;
}
.gold--bt-15 {
  border-top: 15px #fdd600 solid !important;
}
.gold--br-15 {
  border-right: 15px #fdd600 solid !important;
}
.gold--bl-15 {
  border-left: 15px #fdd600 solid !important;
}
.gold--bb-15 {
  border-bottom: 15px #fdd600 solid !important;
}
.gold--by-15 {
  border-top: 15px #fdd600 solid !important;
  border-bottom: 15px #fdd600 solid !important;
}
.gold--bx-15 {
  border-right: 15px #fdd600 solid !important;
  border-left: 15px #fdd600 solid !important;
}
.gold--ba-16 {
  border: 16px #fdd600 solid !important;
}
.gold--bt-16 {
  border-top: 16px #fdd600 solid !important;
}
.gold--br-16 {
  border-right: 16px #fdd600 solid !important;
}
.gold--bl-16 {
  border-left: 16px #fdd600 solid !important;
}
.gold--bb-16 {
  border-bottom: 16px #fdd600 solid !important;
}
.gold--by-16 {
  border-top: 16px #fdd600 solid !important;
  border-bottom: 16px #fdd600 solid !important;
}
.gold--bx-16 {
  border-right: 16px #fdd600 solid !important;
  border-left: 16px #fdd600 solid !important;
}
.gold--ba-17 {
  border: 17px #fdd600 solid !important;
}
.gold--bt-17 {
  border-top: 17px #fdd600 solid !important;
}
.gold--br-17 {
  border-right: 17px #fdd600 solid !important;
}
.gold--bl-17 {
  border-left: 17px #fdd600 solid !important;
}
.gold--bb-17 {
  border-bottom: 17px #fdd600 solid !important;
}
.gold--by-17 {
  border-top: 17px #fdd600 solid !important;
  border-bottom: 17px #fdd600 solid !important;
}
.gold--bx-17 {
  border-right: 17px #fdd600 solid !important;
  border-left: 17px #fdd600 solid !important;
}
.gold--ba-18 {
  border: 18px #fdd600 solid !important;
}
.gold--bt-18 {
  border-top: 18px #fdd600 solid !important;
}
.gold--br-18 {
  border-right: 18px #fdd600 solid !important;
}
.gold--bl-18 {
  border-left: 18px #fdd600 solid !important;
}
.gold--bb-18 {
  border-bottom: 18px #fdd600 solid !important;
}
.gold--by-18 {
  border-top: 18px #fdd600 solid !important;
  border-bottom: 18px #fdd600 solid !important;
}
.gold--bx-18 {
  border-right: 18px #fdd600 solid !important;
  border-left: 18px #fdd600 solid !important;
}
.gold--ba-19 {
  border: 19px #fdd600 solid !important;
}
.gold--bt-19 {
  border-top: 19px #fdd600 solid !important;
}
.gold--br-19 {
  border-right: 19px #fdd600 solid !important;
}
.gold--bl-19 {
  border-left: 19px #fdd600 solid !important;
}
.gold--bb-19 {
  border-bottom: 19px #fdd600 solid !important;
}
.gold--by-19 {
  border-top: 19px #fdd600 solid !important;
  border-bottom: 19px #fdd600 solid !important;
}
.gold--bx-19 {
  border-right: 19px #fdd600 solid !important;
  border-left: 19px #fdd600 solid !important;
}
.gold--ba-20 {
  border: 20px #fdd600 solid !important;
}
.gold--bt-20 {
  border-top: 20px #fdd600 solid !important;
}
.gold--br-20 {
  border-right: 20px #fdd600 solid !important;
}
.gold--bl-20 {
  border-left: 20px #fdd600 solid !important;
}
.gold--bb-20 {
  border-bottom: 20px #fdd600 solid !important;
}
.gold--by-20 {
  border-top: 20px #fdd600 solid !important;
  border-bottom: 20px #fdd600 solid !important;
}
.gold--bx-20 {
  border-right: 20px #fdd600 solid !important;
  border-left: 20px #fdd600 solid !important;
}
.gold--ba-21 {
  border: 21px #fdd600 solid !important;
}
.gold--bt-21 {
  border-top: 21px #fdd600 solid !important;
}
.gold--br-21 {
  border-right: 21px #fdd600 solid !important;
}
.gold--bl-21 {
  border-left: 21px #fdd600 solid !important;
}
.gold--bb-21 {
  border-bottom: 21px #fdd600 solid !important;
}
.gold--by-21 {
  border-top: 21px #fdd600 solid !important;
  border-bottom: 21px #fdd600 solid !important;
}
.gold--bx-21 {
  border-right: 21px #fdd600 solid !important;
  border-left: 21px #fdd600 solid !important;
}
.gold--ba-22 {
  border: 22px #fdd600 solid !important;
}
.gold--bt-22 {
  border-top: 22px #fdd600 solid !important;
}
.gold--br-22 {
  border-right: 22px #fdd600 solid !important;
}
.gold--bl-22 {
  border-left: 22px #fdd600 solid !important;
}
.gold--bb-22 {
  border-bottom: 22px #fdd600 solid !important;
}
.gold--by-22 {
  border-top: 22px #fdd600 solid !important;
  border-bottom: 22px #fdd600 solid !important;
}
.gold--bx-22 {
  border-right: 22px #fdd600 solid !important;
  border-left: 22px #fdd600 solid !important;
}
.gold--ba-23 {
  border: 23px #fdd600 solid !important;
}
.gold--bt-23 {
  border-top: 23px #fdd600 solid !important;
}
.gold--br-23 {
  border-right: 23px #fdd600 solid !important;
}
.gold--bl-23 {
  border-left: 23px #fdd600 solid !important;
}
.gold--bb-23 {
  border-bottom: 23px #fdd600 solid !important;
}
.gold--by-23 {
  border-top: 23px #fdd600 solid !important;
  border-bottom: 23px #fdd600 solid !important;
}
.gold--bx-23 {
  border-right: 23px #fdd600 solid !important;
  border-left: 23px #fdd600 solid !important;
}
.gold--ba-24 {
  border: 24px #fdd600 solid !important;
}
.gold--bt-24 {
  border-top: 24px #fdd600 solid !important;
}
.gold--br-24 {
  border-right: 24px #fdd600 solid !important;
}
.gold--bl-24 {
  border-left: 24px #fdd600 solid !important;
}
.gold--bb-24 {
  border-bottom: 24px #fdd600 solid !important;
}
.gold--by-24 {
  border-top: 24px #fdd600 solid !important;
  border-bottom: 24px #fdd600 solid !important;
}
.gold--bx-24 {
  border-right: 24px #fdd600 solid !important;
  border-left: 24px #fdd600 solid !important;
}
.gold--ba-25 {
  border: 25px #fdd600 solid !important;
}
.gold--bt-25 {
  border-top: 25px #fdd600 solid !important;
}
.gold--br-25 {
  border-right: 25px #fdd600 solid !important;
}
.gold--bl-25 {
  border-left: 25px #fdd600 solid !important;
}
.gold--bb-25 {
  border-bottom: 25px #fdd600 solid !important;
}
.gold--by-25 {
  border-top: 25px #fdd600 solid !important;
  border-bottom: 25px #fdd600 solid !important;
}
.gold--bx-25 {
  border-right: 25px #fdd600 solid !important;
  border-left: 25px #fdd600 solid !important;
}
.gold--ba-26 {
  border: 26px #fdd600 solid !important;
}
.gold--bt-26 {
  border-top: 26px #fdd600 solid !important;
}
.gold--br-26 {
  border-right: 26px #fdd600 solid !important;
}
.gold--bl-26 {
  border-left: 26px #fdd600 solid !important;
}
.gold--bb-26 {
  border-bottom: 26px #fdd600 solid !important;
}
.gold--by-26 {
  border-top: 26px #fdd600 solid !important;
  border-bottom: 26px #fdd600 solid !important;
}
.gold--bx-26 {
  border-right: 26px #fdd600 solid !important;
  border-left: 26px #fdd600 solid !important;
}
.gold--ba-27 {
  border: 27px #fdd600 solid !important;
}
.gold--bt-27 {
  border-top: 27px #fdd600 solid !important;
}
.gold--br-27 {
  border-right: 27px #fdd600 solid !important;
}
.gold--bl-27 {
  border-left: 27px #fdd600 solid !important;
}
.gold--bb-27 {
  border-bottom: 27px #fdd600 solid !important;
}
.gold--by-27 {
  border-top: 27px #fdd600 solid !important;
  border-bottom: 27px #fdd600 solid !important;
}
.gold--bx-27 {
  border-right: 27px #fdd600 solid !important;
  border-left: 27px #fdd600 solid !important;
}
.gold--ba-28 {
  border: 28px #fdd600 solid !important;
}
.gold--bt-28 {
  border-top: 28px #fdd600 solid !important;
}
.gold--br-28 {
  border-right: 28px #fdd600 solid !important;
}
.gold--bl-28 {
  border-left: 28px #fdd600 solid !important;
}
.gold--bb-28 {
  border-bottom: 28px #fdd600 solid !important;
}
.gold--by-28 {
  border-top: 28px #fdd600 solid !important;
  border-bottom: 28px #fdd600 solid !important;
}
.gold--bx-28 {
  border-right: 28px #fdd600 solid !important;
  border-left: 28px #fdd600 solid !important;
}
.gold--ba-29 {
  border: 29px #fdd600 solid !important;
}
.gold--bt-29 {
  border-top: 29px #fdd600 solid !important;
}
.gold--br-29 {
  border-right: 29px #fdd600 solid !important;
}
.gold--bl-29 {
  border-left: 29px #fdd600 solid !important;
}
.gold--bb-29 {
  border-bottom: 29px #fdd600 solid !important;
}
.gold--by-29 {
  border-top: 29px #fdd600 solid !important;
  border-bottom: 29px #fdd600 solid !important;
}
.gold--bx-29 {
  border-right: 29px #fdd600 solid !important;
  border-left: 29px #fdd600 solid !important;
}
.gold--ba-30 {
  border: 30px #fdd600 solid !important;
}
.gold--bt-30 {
  border-top: 30px #fdd600 solid !important;
}
.gold--br-30 {
  border-right: 30px #fdd600 solid !important;
}
.gold--bl-30 {
  border-left: 30px #fdd600 solid !important;
}
.gold--bb-30 {
  border-bottom: 30px #fdd600 solid !important;
}
.gold--by-30 {
  border-top: 30px #fdd600 solid !important;
  border-bottom: 30px #fdd600 solid !important;
}
.gold--bx-30 {
  border-right: 30px #fdd600 solid !important;
  border-left: 30px #fdd600 solid !important;
}
.gold--ba-31 {
  border: 31px #fdd600 solid !important;
}
.gold--bt-31 {
  border-top: 31px #fdd600 solid !important;
}
.gold--br-31 {
  border-right: 31px #fdd600 solid !important;
}
.gold--bl-31 {
  border-left: 31px #fdd600 solid !important;
}
.gold--bb-31 {
  border-bottom: 31px #fdd600 solid !important;
}
.gold--by-31 {
  border-top: 31px #fdd600 solid !important;
  border-bottom: 31px #fdd600 solid !important;
}
.gold--bx-31 {
  border-right: 31px #fdd600 solid !important;
  border-left: 31px #fdd600 solid !important;
}
.gold--ba-32 {
  border: 32px #fdd600 solid !important;
}
.gold--bt-32 {
  border-top: 32px #fdd600 solid !important;
}
.gold--br-32 {
  border-right: 32px #fdd600 solid !important;
}
.gold--bl-32 {
  border-left: 32px #fdd600 solid !important;
}
.gold--bb-32 {
  border-bottom: 32px #fdd600 solid !important;
}
.gold--by-32 {
  border-top: 32px #fdd600 solid !important;
  border-bottom: 32px #fdd600 solid !important;
}
.gold--bx-32 {
  border-right: 32px #fdd600 solid !important;
  border-left: 32px #fdd600 solid !important;
}
.gold--ba-33 {
  border: 33px #fdd600 solid !important;
}
.gold--bt-33 {
  border-top: 33px #fdd600 solid !important;
}
.gold--br-33 {
  border-right: 33px #fdd600 solid !important;
}
.gold--bl-33 {
  border-left: 33px #fdd600 solid !important;
}
.gold--bb-33 {
  border-bottom: 33px #fdd600 solid !important;
}
.gold--by-33 {
  border-top: 33px #fdd600 solid !important;
  border-bottom: 33px #fdd600 solid !important;
}
.gold--bx-33 {
  border-right: 33px #fdd600 solid !important;
  border-left: 33px #fdd600 solid !important;
}
.gold--ba-34 {
  border: 34px #fdd600 solid !important;
}
.gold--bt-34 {
  border-top: 34px #fdd600 solid !important;
}
.gold--br-34 {
  border-right: 34px #fdd600 solid !important;
}
.gold--bl-34 {
  border-left: 34px #fdd600 solid !important;
}
.gold--bb-34 {
  border-bottom: 34px #fdd600 solid !important;
}
.gold--by-34 {
  border-top: 34px #fdd600 solid !important;
  border-bottom: 34px #fdd600 solid !important;
}
.gold--bx-34 {
  border-right: 34px #fdd600 solid !important;
  border-left: 34px #fdd600 solid !important;
}
.gold--ba-35 {
  border: 35px #fdd600 solid !important;
}
.gold--bt-35 {
  border-top: 35px #fdd600 solid !important;
}
.gold--br-35 {
  border-right: 35px #fdd600 solid !important;
}
.gold--bl-35 {
  border-left: 35px #fdd600 solid !important;
}
.gold--bb-35 {
  border-bottom: 35px #fdd600 solid !important;
}
.gold--by-35 {
  border-top: 35px #fdd600 solid !important;
  border-bottom: 35px #fdd600 solid !important;
}
.gold--bx-35 {
  border-right: 35px #fdd600 solid !important;
  border-left: 35px #fdd600 solid !important;
}
.gold--ba-36 {
  border: 36px #fdd600 solid !important;
}
.gold--bt-36 {
  border-top: 36px #fdd600 solid !important;
}
.gold--br-36 {
  border-right: 36px #fdd600 solid !important;
}
.gold--bl-36 {
  border-left: 36px #fdd600 solid !important;
}
.gold--bb-36 {
  border-bottom: 36px #fdd600 solid !important;
}
.gold--by-36 {
  border-top: 36px #fdd600 solid !important;
  border-bottom: 36px #fdd600 solid !important;
}
.gold--bx-36 {
  border-right: 36px #fdd600 solid !important;
  border-left: 36px #fdd600 solid !important;
}
.gold--ba-37 {
  border: 37px #fdd600 solid !important;
}
.gold--bt-37 {
  border-top: 37px #fdd600 solid !important;
}
.gold--br-37 {
  border-right: 37px #fdd600 solid !important;
}
.gold--bl-37 {
  border-left: 37px #fdd600 solid !important;
}
.gold--bb-37 {
  border-bottom: 37px #fdd600 solid !important;
}
.gold--by-37 {
  border-top: 37px #fdd600 solid !important;
  border-bottom: 37px #fdd600 solid !important;
}
.gold--bx-37 {
  border-right: 37px #fdd600 solid !important;
  border-left: 37px #fdd600 solid !important;
}
.gold--ba-38 {
  border: 38px #fdd600 solid !important;
}
.gold--bt-38 {
  border-top: 38px #fdd600 solid !important;
}
.gold--br-38 {
  border-right: 38px #fdd600 solid !important;
}
.gold--bl-38 {
  border-left: 38px #fdd600 solid !important;
}
.gold--bb-38 {
  border-bottom: 38px #fdd600 solid !important;
}
.gold--by-38 {
  border-top: 38px #fdd600 solid !important;
  border-bottom: 38px #fdd600 solid !important;
}
.gold--bx-38 {
  border-right: 38px #fdd600 solid !important;
  border-left: 38px #fdd600 solid !important;
}
.gold--ba-39 {
  border: 39px #fdd600 solid !important;
}
.gold--bt-39 {
  border-top: 39px #fdd600 solid !important;
}
.gold--br-39 {
  border-right: 39px #fdd600 solid !important;
}
.gold--bl-39 {
  border-left: 39px #fdd600 solid !important;
}
.gold--bb-39 {
  border-bottom: 39px #fdd600 solid !important;
}
.gold--by-39 {
  border-top: 39px #fdd600 solid !important;
  border-bottom: 39px #fdd600 solid !important;
}
.gold--bx-39 {
  border-right: 39px #fdd600 solid !important;
  border-left: 39px #fdd600 solid !important;
}
.gold--ba-40 {
  border: 40px #fdd600 solid !important;
}
.gold--bt-40 {
  border-top: 40px #fdd600 solid !important;
}
.gold--br-40 {
  border-right: 40px #fdd600 solid !important;
}
.gold--bl-40 {
  border-left: 40px #fdd600 solid !important;
}
.gold--bb-40 {
  border-bottom: 40px #fdd600 solid !important;
}
.gold--by-40 {
  border-top: 40px #fdd600 solid !important;
  border-bottom: 40px #fdd600 solid !important;
}
.gold--bx-40 {
  border-right: 40px #fdd600 solid !important;
  border-left: 40px #fdd600 solid !important;
}
.gold--ba-41 {
  border: 41px #fdd600 solid !important;
}
.gold--bt-41 {
  border-top: 41px #fdd600 solid !important;
}
.gold--br-41 {
  border-right: 41px #fdd600 solid !important;
}
.gold--bl-41 {
  border-left: 41px #fdd600 solid !important;
}
.gold--bb-41 {
  border-bottom: 41px #fdd600 solid !important;
}
.gold--by-41 {
  border-top: 41px #fdd600 solid !important;
  border-bottom: 41px #fdd600 solid !important;
}
.gold--bx-41 {
  border-right: 41px #fdd600 solid !important;
  border-left: 41px #fdd600 solid !important;
}
.gold--ba-42 {
  border: 42px #fdd600 solid !important;
}
.gold--bt-42 {
  border-top: 42px #fdd600 solid !important;
}
.gold--br-42 {
  border-right: 42px #fdd600 solid !important;
}
.gold--bl-42 {
  border-left: 42px #fdd600 solid !important;
}
.gold--bb-42 {
  border-bottom: 42px #fdd600 solid !important;
}
.gold--by-42 {
  border-top: 42px #fdd600 solid !important;
  border-bottom: 42px #fdd600 solid !important;
}
.gold--bx-42 {
  border-right: 42px #fdd600 solid !important;
  border-left: 42px #fdd600 solid !important;
}
.gold--ba-43 {
  border: 43px #fdd600 solid !important;
}
.gold--bt-43 {
  border-top: 43px #fdd600 solid !important;
}
.gold--br-43 {
  border-right: 43px #fdd600 solid !important;
}
.gold--bl-43 {
  border-left: 43px #fdd600 solid !important;
}
.gold--bb-43 {
  border-bottom: 43px #fdd600 solid !important;
}
.gold--by-43 {
  border-top: 43px #fdd600 solid !important;
  border-bottom: 43px #fdd600 solid !important;
}
.gold--bx-43 {
  border-right: 43px #fdd600 solid !important;
  border-left: 43px #fdd600 solid !important;
}
.gold--ba-44 {
  border: 44px #fdd600 solid !important;
}
.gold--bt-44 {
  border-top: 44px #fdd600 solid !important;
}
.gold--br-44 {
  border-right: 44px #fdd600 solid !important;
}
.gold--bl-44 {
  border-left: 44px #fdd600 solid !important;
}
.gold--bb-44 {
  border-bottom: 44px #fdd600 solid !important;
}
.gold--by-44 {
  border-top: 44px #fdd600 solid !important;
  border-bottom: 44px #fdd600 solid !important;
}
.gold--bx-44 {
  border-right: 44px #fdd600 solid !important;
  border-left: 44px #fdd600 solid !important;
}
.gold--ba-45 {
  border: 45px #fdd600 solid !important;
}
.gold--bt-45 {
  border-top: 45px #fdd600 solid !important;
}
.gold--br-45 {
  border-right: 45px #fdd600 solid !important;
}
.gold--bl-45 {
  border-left: 45px #fdd600 solid !important;
}
.gold--bb-45 {
  border-bottom: 45px #fdd600 solid !important;
}
.gold--by-45 {
  border-top: 45px #fdd600 solid !important;
  border-bottom: 45px #fdd600 solid !important;
}
.gold--bx-45 {
  border-right: 45px #fdd600 solid !important;
  border-left: 45px #fdd600 solid !important;
}
.gold--ba-46 {
  border: 46px #fdd600 solid !important;
}
.gold--bt-46 {
  border-top: 46px #fdd600 solid !important;
}
.gold--br-46 {
  border-right: 46px #fdd600 solid !important;
}
.gold--bl-46 {
  border-left: 46px #fdd600 solid !important;
}
.gold--bb-46 {
  border-bottom: 46px #fdd600 solid !important;
}
.gold--by-46 {
  border-top: 46px #fdd600 solid !important;
  border-bottom: 46px #fdd600 solid !important;
}
.gold--bx-46 {
  border-right: 46px #fdd600 solid !important;
  border-left: 46px #fdd600 solid !important;
}
.gold--ba-47 {
  border: 47px #fdd600 solid !important;
}
.gold--bt-47 {
  border-top: 47px #fdd600 solid !important;
}
.gold--br-47 {
  border-right: 47px #fdd600 solid !important;
}
.gold--bl-47 {
  border-left: 47px #fdd600 solid !important;
}
.gold--bb-47 {
  border-bottom: 47px #fdd600 solid !important;
}
.gold--by-47 {
  border-top: 47px #fdd600 solid !important;
  border-bottom: 47px #fdd600 solid !important;
}
.gold--bx-47 {
  border-right: 47px #fdd600 solid !important;
  border-left: 47px #fdd600 solid !important;
}
.gold--ba-48 {
  border: 48px #fdd600 solid !important;
}
.gold--bt-48 {
  border-top: 48px #fdd600 solid !important;
}
.gold--br-48 {
  border-right: 48px #fdd600 solid !important;
}
.gold--bl-48 {
  border-left: 48px #fdd600 solid !important;
}
.gold--bb-48 {
  border-bottom: 48px #fdd600 solid !important;
}
.gold--by-48 {
  border-top: 48px #fdd600 solid !important;
  border-bottom: 48px #fdd600 solid !important;
}
.gold--bx-48 {
  border-right: 48px #fdd600 solid !important;
  border-left: 48px #fdd600 solid !important;
}
.gold--ba-49 {
  border: 49px #fdd600 solid !important;
}
.gold--bt-49 {
  border-top: 49px #fdd600 solid !important;
}
.gold--br-49 {
  border-right: 49px #fdd600 solid !important;
}
.gold--bl-49 {
  border-left: 49px #fdd600 solid !important;
}
.gold--bb-49 {
  border-bottom: 49px #fdd600 solid !important;
}
.gold--by-49 {
  border-top: 49px #fdd600 solid !important;
  border-bottom: 49px #fdd600 solid !important;
}
.gold--bx-49 {
  border-right: 49px #fdd600 solid !important;
  border-left: 49px #fdd600 solid !important;
}
.gold--ba-50 {
  border: 50px #fdd600 solid !important;
}
.gold--bt-50 {
  border-top: 50px #fdd600 solid !important;
}
.gold--br-50 {
  border-right: 50px #fdd600 solid !important;
}
.gold--bl-50 {
  border-left: 50px #fdd600 solid !important;
}
.gold--bb-50 {
  border-bottom: 50px #fdd600 solid !important;
}
.gold--by-50 {
  border-top: 50px #fdd600 solid !important;
  border-bottom: 50px #fdd600 solid !important;
}
.gold--bx-50 {
  border-right: 50px #fdd600 solid !important;
  border-left: 50px #fdd600 solid !important;
}
.gold--ba-51 {
  border: 51px #fdd600 solid !important;
}
.gold--bt-51 {
  border-top: 51px #fdd600 solid !important;
}
.gold--br-51 {
  border-right: 51px #fdd600 solid !important;
}
.gold--bl-51 {
  border-left: 51px #fdd600 solid !important;
}
.gold--bb-51 {
  border-bottom: 51px #fdd600 solid !important;
}
.gold--by-51 {
  border-top: 51px #fdd600 solid !important;
  border-bottom: 51px #fdd600 solid !important;
}
.gold--bx-51 {
  border-right: 51px #fdd600 solid !important;
  border-left: 51px #fdd600 solid !important;
}
.gold--ba-52 {
  border: 52px #fdd600 solid !important;
}
.gold--bt-52 {
  border-top: 52px #fdd600 solid !important;
}
.gold--br-52 {
  border-right: 52px #fdd600 solid !important;
}
.gold--bl-52 {
  border-left: 52px #fdd600 solid !important;
}
.gold--bb-52 {
  border-bottom: 52px #fdd600 solid !important;
}
.gold--by-52 {
  border-top: 52px #fdd600 solid !important;
  border-bottom: 52px #fdd600 solid !important;
}
.gold--bx-52 {
  border-right: 52px #fdd600 solid !important;
  border-left: 52px #fdd600 solid !important;
}
.gold--ba-53 {
  border: 53px #fdd600 solid !important;
}
.gold--bt-53 {
  border-top: 53px #fdd600 solid !important;
}
.gold--br-53 {
  border-right: 53px #fdd600 solid !important;
}
.gold--bl-53 {
  border-left: 53px #fdd600 solid !important;
}
.gold--bb-53 {
  border-bottom: 53px #fdd600 solid !important;
}
.gold--by-53 {
  border-top: 53px #fdd600 solid !important;
  border-bottom: 53px #fdd600 solid !important;
}
.gold--bx-53 {
  border-right: 53px #fdd600 solid !important;
  border-left: 53px #fdd600 solid !important;
}
.gold--ba-54 {
  border: 54px #fdd600 solid !important;
}
.gold--bt-54 {
  border-top: 54px #fdd600 solid !important;
}
.gold--br-54 {
  border-right: 54px #fdd600 solid !important;
}
.gold--bl-54 {
  border-left: 54px #fdd600 solid !important;
}
.gold--bb-54 {
  border-bottom: 54px #fdd600 solid !important;
}
.gold--by-54 {
  border-top: 54px #fdd600 solid !important;
  border-bottom: 54px #fdd600 solid !important;
}
.gold--bx-54 {
  border-right: 54px #fdd600 solid !important;
  border-left: 54px #fdd600 solid !important;
}
.gold--ba-55 {
  border: 55px #fdd600 solid !important;
}
.gold--bt-55 {
  border-top: 55px #fdd600 solid !important;
}
.gold--br-55 {
  border-right: 55px #fdd600 solid !important;
}
.gold--bl-55 {
  border-left: 55px #fdd600 solid !important;
}
.gold--bb-55 {
  border-bottom: 55px #fdd600 solid !important;
}
.gold--by-55 {
  border-top: 55px #fdd600 solid !important;
  border-bottom: 55px #fdd600 solid !important;
}
.gold--bx-55 {
  border-right: 55px #fdd600 solid !important;
  border-left: 55px #fdd600 solid !important;
}
.gold--ba-56 {
  border: 56px #fdd600 solid !important;
}
.gold--bt-56 {
  border-top: 56px #fdd600 solid !important;
}
.gold--br-56 {
  border-right: 56px #fdd600 solid !important;
}
.gold--bl-56 {
  border-left: 56px #fdd600 solid !important;
}
.gold--bb-56 {
  border-bottom: 56px #fdd600 solid !important;
}
.gold--by-56 {
  border-top: 56px #fdd600 solid !important;
  border-bottom: 56px #fdd600 solid !important;
}
.gold--bx-56 {
  border-right: 56px #fdd600 solid !important;
  border-left: 56px #fdd600 solid !important;
}
.gold--ba-57 {
  border: 57px #fdd600 solid !important;
}
.gold--bt-57 {
  border-top: 57px #fdd600 solid !important;
}
.gold--br-57 {
  border-right: 57px #fdd600 solid !important;
}
.gold--bl-57 {
  border-left: 57px #fdd600 solid !important;
}
.gold--bb-57 {
  border-bottom: 57px #fdd600 solid !important;
}
.gold--by-57 {
  border-top: 57px #fdd600 solid !important;
  border-bottom: 57px #fdd600 solid !important;
}
.gold--bx-57 {
  border-right: 57px #fdd600 solid !important;
  border-left: 57px #fdd600 solid !important;
}
.gold--ba-58 {
  border: 58px #fdd600 solid !important;
}
.gold--bt-58 {
  border-top: 58px #fdd600 solid !important;
}
.gold--br-58 {
  border-right: 58px #fdd600 solid !important;
}
.gold--bl-58 {
  border-left: 58px #fdd600 solid !important;
}
.gold--bb-58 {
  border-bottom: 58px #fdd600 solid !important;
}
.gold--by-58 {
  border-top: 58px #fdd600 solid !important;
  border-bottom: 58px #fdd600 solid !important;
}
.gold--bx-58 {
  border-right: 58px #fdd600 solid !important;
  border-left: 58px #fdd600 solid !important;
}
.gold--ba-59 {
  border: 59px #fdd600 solid !important;
}
.gold--bt-59 {
  border-top: 59px #fdd600 solid !important;
}
.gold--br-59 {
  border-right: 59px #fdd600 solid !important;
}
.gold--bl-59 {
  border-left: 59px #fdd600 solid !important;
}
.gold--bb-59 {
  border-bottom: 59px #fdd600 solid !important;
}
.gold--by-59 {
  border-top: 59px #fdd600 solid !important;
  border-bottom: 59px #fdd600 solid !important;
}
.gold--bx-59 {
  border-right: 59px #fdd600 solid !important;
  border-left: 59px #fdd600 solid !important;
}
.gold--ba-60 {
  border: 60px #fdd600 solid !important;
}
.gold--bt-60 {
  border-top: 60px #fdd600 solid !important;
}
.gold--br-60 {
  border-right: 60px #fdd600 solid !important;
}
.gold--bl-60 {
  border-left: 60px #fdd600 solid !important;
}
.gold--bb-60 {
  border-bottom: 60px #fdd600 solid !important;
}
.gold--by-60 {
  border-top: 60px #fdd600 solid !important;
  border-bottom: 60px #fdd600 solid !important;
}
.gold--bx-60 {
  border-right: 60px #fdd600 solid !important;
  border-left: 60px #fdd600 solid !important;
}
.gold--ba-61 {
  border: 61px #fdd600 solid !important;
}
.gold--bt-61 {
  border-top: 61px #fdd600 solid !important;
}
.gold--br-61 {
  border-right: 61px #fdd600 solid !important;
}
.gold--bl-61 {
  border-left: 61px #fdd600 solid !important;
}
.gold--bb-61 {
  border-bottom: 61px #fdd600 solid !important;
}
.gold--by-61 {
  border-top: 61px #fdd600 solid !important;
  border-bottom: 61px #fdd600 solid !important;
}
.gold--bx-61 {
  border-right: 61px #fdd600 solid !important;
  border-left: 61px #fdd600 solid !important;
}
.gold--ba-62 {
  border: 62px #fdd600 solid !important;
}
.gold--bt-62 {
  border-top: 62px #fdd600 solid !important;
}
.gold--br-62 {
  border-right: 62px #fdd600 solid !important;
}
.gold--bl-62 {
  border-left: 62px #fdd600 solid !important;
}
.gold--bb-62 {
  border-bottom: 62px #fdd600 solid !important;
}
.gold--by-62 {
  border-top: 62px #fdd600 solid !important;
  border-bottom: 62px #fdd600 solid !important;
}
.gold--bx-62 {
  border-right: 62px #fdd600 solid !important;
  border-left: 62px #fdd600 solid !important;
}
.gold--ba-63 {
  border: 63px #fdd600 solid !important;
}
.gold--bt-63 {
  border-top: 63px #fdd600 solid !important;
}
.gold--br-63 {
  border-right: 63px #fdd600 solid !important;
}
.gold--bl-63 {
  border-left: 63px #fdd600 solid !important;
}
.gold--bb-63 {
  border-bottom: 63px #fdd600 solid !important;
}
.gold--by-63 {
  border-top: 63px #fdd600 solid !important;
  border-bottom: 63px #fdd600 solid !important;
}
.gold--bx-63 {
  border-right: 63px #fdd600 solid !important;
  border-left: 63px #fdd600 solid !important;
}
.gold--ba-64 {
  border: 64px #fdd600 solid !important;
}
.gold--bt-64 {
  border-top: 64px #fdd600 solid !important;
}
.gold--br-64 {
  border-right: 64px #fdd600 solid !important;
}
.gold--bl-64 {
  border-left: 64px #fdd600 solid !important;
}
.gold--bb-64 {
  border-bottom: 64px #fdd600 solid !important;
}
.gold--by-64 {
  border-top: 64px #fdd600 solid !important;
  border-bottom: 64px #fdd600 solid !important;
}
.gold--bx-64 {
  border-right: 64px #fdd600 solid !important;
  border-left: 64px #fdd600 solid !important;
}
.gold--ba-65 {
  border: 65px #fdd600 solid !important;
}
.gold--bt-65 {
  border-top: 65px #fdd600 solid !important;
}
.gold--br-65 {
  border-right: 65px #fdd600 solid !important;
}
.gold--bl-65 {
  border-left: 65px #fdd600 solid !important;
}
.gold--bb-65 {
  border-bottom: 65px #fdd600 solid !important;
}
.gold--by-65 {
  border-top: 65px #fdd600 solid !important;
  border-bottom: 65px #fdd600 solid !important;
}
.gold--bx-65 {
  border-right: 65px #fdd600 solid !important;
  border-left: 65px #fdd600 solid !important;
}
.gold--ba-66 {
  border: 66px #fdd600 solid !important;
}
.gold--bt-66 {
  border-top: 66px #fdd600 solid !important;
}
.gold--br-66 {
  border-right: 66px #fdd600 solid !important;
}
.gold--bl-66 {
  border-left: 66px #fdd600 solid !important;
}
.gold--bb-66 {
  border-bottom: 66px #fdd600 solid !important;
}
.gold--by-66 {
  border-top: 66px #fdd600 solid !important;
  border-bottom: 66px #fdd600 solid !important;
}
.gold--bx-66 {
  border-right: 66px #fdd600 solid !important;
  border-left: 66px #fdd600 solid !important;
}
.gold--ba-67 {
  border: 67px #fdd600 solid !important;
}
.gold--bt-67 {
  border-top: 67px #fdd600 solid !important;
}
.gold--br-67 {
  border-right: 67px #fdd600 solid !important;
}
.gold--bl-67 {
  border-left: 67px #fdd600 solid !important;
}
.gold--bb-67 {
  border-bottom: 67px #fdd600 solid !important;
}
.gold--by-67 {
  border-top: 67px #fdd600 solid !important;
  border-bottom: 67px #fdd600 solid !important;
}
.gold--bx-67 {
  border-right: 67px #fdd600 solid !important;
  border-left: 67px #fdd600 solid !important;
}
.gold--ba-68 {
  border: 68px #fdd600 solid !important;
}
.gold--bt-68 {
  border-top: 68px #fdd600 solid !important;
}
.gold--br-68 {
  border-right: 68px #fdd600 solid !important;
}
.gold--bl-68 {
  border-left: 68px #fdd600 solid !important;
}
.gold--bb-68 {
  border-bottom: 68px #fdd600 solid !important;
}
.gold--by-68 {
  border-top: 68px #fdd600 solid !important;
  border-bottom: 68px #fdd600 solid !important;
}
.gold--bx-68 {
  border-right: 68px #fdd600 solid !important;
  border-left: 68px #fdd600 solid !important;
}
.gold--ba-69 {
  border: 69px #fdd600 solid !important;
}
.gold--bt-69 {
  border-top: 69px #fdd600 solid !important;
}
.gold--br-69 {
  border-right: 69px #fdd600 solid !important;
}
.gold--bl-69 {
  border-left: 69px #fdd600 solid !important;
}
.gold--bb-69 {
  border-bottom: 69px #fdd600 solid !important;
}
.gold--by-69 {
  border-top: 69px #fdd600 solid !important;
  border-bottom: 69px #fdd600 solid !important;
}
.gold--bx-69 {
  border-right: 69px #fdd600 solid !important;
  border-left: 69px #fdd600 solid !important;
}
.gold--ba-70 {
  border: 70px #fdd600 solid !important;
}
.gold--bt-70 {
  border-top: 70px #fdd600 solid !important;
}
.gold--br-70 {
  border-right: 70px #fdd600 solid !important;
}
.gold--bl-70 {
  border-left: 70px #fdd600 solid !important;
}
.gold--bb-70 {
  border-bottom: 70px #fdd600 solid !important;
}
.gold--by-70 {
  border-top: 70px #fdd600 solid !important;
  border-bottom: 70px #fdd600 solid !important;
}
.gold--bx-70 {
  border-right: 70px #fdd600 solid !important;
  border-left: 70px #fdd600 solid !important;
}
.gold--ba-71 {
  border: 71px #fdd600 solid !important;
}
.gold--bt-71 {
  border-top: 71px #fdd600 solid !important;
}
.gold--br-71 {
  border-right: 71px #fdd600 solid !important;
}
.gold--bl-71 {
  border-left: 71px #fdd600 solid !important;
}
.gold--bb-71 {
  border-bottom: 71px #fdd600 solid !important;
}
.gold--by-71 {
  border-top: 71px #fdd600 solid !important;
  border-bottom: 71px #fdd600 solid !important;
}
.gold--bx-71 {
  border-right: 71px #fdd600 solid !important;
  border-left: 71px #fdd600 solid !important;
}
.gold--ba-72 {
  border: 72px #fdd600 solid !important;
}
.gold--bt-72 {
  border-top: 72px #fdd600 solid !important;
}
.gold--br-72 {
  border-right: 72px #fdd600 solid !important;
}
.gold--bl-72 {
  border-left: 72px #fdd600 solid !important;
}
.gold--bb-72 {
  border-bottom: 72px #fdd600 solid !important;
}
.gold--by-72 {
  border-top: 72px #fdd600 solid !important;
  border-bottom: 72px #fdd600 solid !important;
}
.gold--bx-72 {
  border-right: 72px #fdd600 solid !important;
  border-left: 72px #fdd600 solid !important;
}
.gold--ba-73 {
  border: 73px #fdd600 solid !important;
}
.gold--bt-73 {
  border-top: 73px #fdd600 solid !important;
}
.gold--br-73 {
  border-right: 73px #fdd600 solid !important;
}
.gold--bl-73 {
  border-left: 73px #fdd600 solid !important;
}
.gold--bb-73 {
  border-bottom: 73px #fdd600 solid !important;
}
.gold--by-73 {
  border-top: 73px #fdd600 solid !important;
  border-bottom: 73px #fdd600 solid !important;
}
.gold--bx-73 {
  border-right: 73px #fdd600 solid !important;
  border-left: 73px #fdd600 solid !important;
}
.gold--ba-74 {
  border: 74px #fdd600 solid !important;
}
.gold--bt-74 {
  border-top: 74px #fdd600 solid !important;
}
.gold--br-74 {
  border-right: 74px #fdd600 solid !important;
}
.gold--bl-74 {
  border-left: 74px #fdd600 solid !important;
}
.gold--bb-74 {
  border-bottom: 74px #fdd600 solid !important;
}
.gold--by-74 {
  border-top: 74px #fdd600 solid !important;
  border-bottom: 74px #fdd600 solid !important;
}
.gold--bx-74 {
  border-right: 74px #fdd600 solid !important;
  border-left: 74px #fdd600 solid !important;
}
.gold--ba-75 {
  border: 75px #fdd600 solid !important;
}
.gold--bt-75 {
  border-top: 75px #fdd600 solid !important;
}
.gold--br-75 {
  border-right: 75px #fdd600 solid !important;
}
.gold--bl-75 {
  border-left: 75px #fdd600 solid !important;
}
.gold--bb-75 {
  border-bottom: 75px #fdd600 solid !important;
}
.gold--by-75 {
  border-top: 75px #fdd600 solid !important;
  border-bottom: 75px #fdd600 solid !important;
}
.gold--bx-75 {
  border-right: 75px #fdd600 solid !important;
  border-left: 75px #fdd600 solid !important;
}
.gold--ba-76 {
  border: 76px #fdd600 solid !important;
}
.gold--bt-76 {
  border-top: 76px #fdd600 solid !important;
}
.gold--br-76 {
  border-right: 76px #fdd600 solid !important;
}
.gold--bl-76 {
  border-left: 76px #fdd600 solid !important;
}
.gold--bb-76 {
  border-bottom: 76px #fdd600 solid !important;
}
.gold--by-76 {
  border-top: 76px #fdd600 solid !important;
  border-bottom: 76px #fdd600 solid !important;
}
.gold--bx-76 {
  border-right: 76px #fdd600 solid !important;
  border-left: 76px #fdd600 solid !important;
}
.gold--ba-77 {
  border: 77px #fdd600 solid !important;
}
.gold--bt-77 {
  border-top: 77px #fdd600 solid !important;
}
.gold--br-77 {
  border-right: 77px #fdd600 solid !important;
}
.gold--bl-77 {
  border-left: 77px #fdd600 solid !important;
}
.gold--bb-77 {
  border-bottom: 77px #fdd600 solid !important;
}
.gold--by-77 {
  border-top: 77px #fdd600 solid !important;
  border-bottom: 77px #fdd600 solid !important;
}
.gold--bx-77 {
  border-right: 77px #fdd600 solid !important;
  border-left: 77px #fdd600 solid !important;
}
.gold--ba-78 {
  border: 78px #fdd600 solid !important;
}
.gold--bt-78 {
  border-top: 78px #fdd600 solid !important;
}
.gold--br-78 {
  border-right: 78px #fdd600 solid !important;
}
.gold--bl-78 {
  border-left: 78px #fdd600 solid !important;
}
.gold--bb-78 {
  border-bottom: 78px #fdd600 solid !important;
}
.gold--by-78 {
  border-top: 78px #fdd600 solid !important;
  border-bottom: 78px #fdd600 solid !important;
}
.gold--bx-78 {
  border-right: 78px #fdd600 solid !important;
  border-left: 78px #fdd600 solid !important;
}
.gold--ba-79 {
  border: 79px #fdd600 solid !important;
}
.gold--bt-79 {
  border-top: 79px #fdd600 solid !important;
}
.gold--br-79 {
  border-right: 79px #fdd600 solid !important;
}
.gold--bl-79 {
  border-left: 79px #fdd600 solid !important;
}
.gold--bb-79 {
  border-bottom: 79px #fdd600 solid !important;
}
.gold--by-79 {
  border-top: 79px #fdd600 solid !important;
  border-bottom: 79px #fdd600 solid !important;
}
.gold--bx-79 {
  border-right: 79px #fdd600 solid !important;
  border-left: 79px #fdd600 solid !important;
}
.gold--ba-80 {
  border: 80px #fdd600 solid !important;
}
.gold--bt-80 {
  border-top: 80px #fdd600 solid !important;
}
.gold--br-80 {
  border-right: 80px #fdd600 solid !important;
}
.gold--bl-80 {
  border-left: 80px #fdd600 solid !important;
}
.gold--bb-80 {
  border-bottom: 80px #fdd600 solid !important;
}
.gold--by-80 {
  border-top: 80px #fdd600 solid !important;
  border-bottom: 80px #fdd600 solid !important;
}
.gold--bx-80 {
  border-right: 80px #fdd600 solid !important;
  border-left: 80px #fdd600 solid !important;
}
.gold--ba-81 {
  border: 81px #fdd600 solid !important;
}
.gold--bt-81 {
  border-top: 81px #fdd600 solid !important;
}
.gold--br-81 {
  border-right: 81px #fdd600 solid !important;
}
.gold--bl-81 {
  border-left: 81px #fdd600 solid !important;
}
.gold--bb-81 {
  border-bottom: 81px #fdd600 solid !important;
}
.gold--by-81 {
  border-top: 81px #fdd600 solid !important;
  border-bottom: 81px #fdd600 solid !important;
}
.gold--bx-81 {
  border-right: 81px #fdd600 solid !important;
  border-left: 81px #fdd600 solid !important;
}
.gold--ba-82 {
  border: 82px #fdd600 solid !important;
}
.gold--bt-82 {
  border-top: 82px #fdd600 solid !important;
}
.gold--br-82 {
  border-right: 82px #fdd600 solid !important;
}
.gold--bl-82 {
  border-left: 82px #fdd600 solid !important;
}
.gold--bb-82 {
  border-bottom: 82px #fdd600 solid !important;
}
.gold--by-82 {
  border-top: 82px #fdd600 solid !important;
  border-bottom: 82px #fdd600 solid !important;
}
.gold--bx-82 {
  border-right: 82px #fdd600 solid !important;
  border-left: 82px #fdd600 solid !important;
}
.gold--ba-83 {
  border: 83px #fdd600 solid !important;
}
.gold--bt-83 {
  border-top: 83px #fdd600 solid !important;
}
.gold--br-83 {
  border-right: 83px #fdd600 solid !important;
}
.gold--bl-83 {
  border-left: 83px #fdd600 solid !important;
}
.gold--bb-83 {
  border-bottom: 83px #fdd600 solid !important;
}
.gold--by-83 {
  border-top: 83px #fdd600 solid !important;
  border-bottom: 83px #fdd600 solid !important;
}
.gold--bx-83 {
  border-right: 83px #fdd600 solid !important;
  border-left: 83px #fdd600 solid !important;
}
.gold--ba-84 {
  border: 84px #fdd600 solid !important;
}
.gold--bt-84 {
  border-top: 84px #fdd600 solid !important;
}
.gold--br-84 {
  border-right: 84px #fdd600 solid !important;
}
.gold--bl-84 {
  border-left: 84px #fdd600 solid !important;
}
.gold--bb-84 {
  border-bottom: 84px #fdd600 solid !important;
}
.gold--by-84 {
  border-top: 84px #fdd600 solid !important;
  border-bottom: 84px #fdd600 solid !important;
}
.gold--bx-84 {
  border-right: 84px #fdd600 solid !important;
  border-left: 84px #fdd600 solid !important;
}
.gold--ba-85 {
  border: 85px #fdd600 solid !important;
}
.gold--bt-85 {
  border-top: 85px #fdd600 solid !important;
}
.gold--br-85 {
  border-right: 85px #fdd600 solid !important;
}
.gold--bl-85 {
  border-left: 85px #fdd600 solid !important;
}
.gold--bb-85 {
  border-bottom: 85px #fdd600 solid !important;
}
.gold--by-85 {
  border-top: 85px #fdd600 solid !important;
  border-bottom: 85px #fdd600 solid !important;
}
.gold--bx-85 {
  border-right: 85px #fdd600 solid !important;
  border-left: 85px #fdd600 solid !important;
}
.gold--ba-86 {
  border: 86px #fdd600 solid !important;
}
.gold--bt-86 {
  border-top: 86px #fdd600 solid !important;
}
.gold--br-86 {
  border-right: 86px #fdd600 solid !important;
}
.gold--bl-86 {
  border-left: 86px #fdd600 solid !important;
}
.gold--bb-86 {
  border-bottom: 86px #fdd600 solid !important;
}
.gold--by-86 {
  border-top: 86px #fdd600 solid !important;
  border-bottom: 86px #fdd600 solid !important;
}
.gold--bx-86 {
  border-right: 86px #fdd600 solid !important;
  border-left: 86px #fdd600 solid !important;
}
.gold--ba-87 {
  border: 87px #fdd600 solid !important;
}
.gold--bt-87 {
  border-top: 87px #fdd600 solid !important;
}
.gold--br-87 {
  border-right: 87px #fdd600 solid !important;
}
.gold--bl-87 {
  border-left: 87px #fdd600 solid !important;
}
.gold--bb-87 {
  border-bottom: 87px #fdd600 solid !important;
}
.gold--by-87 {
  border-top: 87px #fdd600 solid !important;
  border-bottom: 87px #fdd600 solid !important;
}
.gold--bx-87 {
  border-right: 87px #fdd600 solid !important;
  border-left: 87px #fdd600 solid !important;
}
.gold--ba-88 {
  border: 88px #fdd600 solid !important;
}
.gold--bt-88 {
  border-top: 88px #fdd600 solid !important;
}
.gold--br-88 {
  border-right: 88px #fdd600 solid !important;
}
.gold--bl-88 {
  border-left: 88px #fdd600 solid !important;
}
.gold--bb-88 {
  border-bottom: 88px #fdd600 solid !important;
}
.gold--by-88 {
  border-top: 88px #fdd600 solid !important;
  border-bottom: 88px #fdd600 solid !important;
}
.gold--bx-88 {
  border-right: 88px #fdd600 solid !important;
  border-left: 88px #fdd600 solid !important;
}
.gold--ba-89 {
  border: 89px #fdd600 solid !important;
}
.gold--bt-89 {
  border-top: 89px #fdd600 solid !important;
}
.gold--br-89 {
  border-right: 89px #fdd600 solid !important;
}
.gold--bl-89 {
  border-left: 89px #fdd600 solid !important;
}
.gold--bb-89 {
  border-bottom: 89px #fdd600 solid !important;
}
.gold--by-89 {
  border-top: 89px #fdd600 solid !important;
  border-bottom: 89px #fdd600 solid !important;
}
.gold--bx-89 {
  border-right: 89px #fdd600 solid !important;
  border-left: 89px #fdd600 solid !important;
}
.gold--ba-90 {
  border: 90px #fdd600 solid !important;
}
.gold--bt-90 {
  border-top: 90px #fdd600 solid !important;
}
.gold--br-90 {
  border-right: 90px #fdd600 solid !important;
}
.gold--bl-90 {
  border-left: 90px #fdd600 solid !important;
}
.gold--bb-90 {
  border-bottom: 90px #fdd600 solid !important;
}
.gold--by-90 {
  border-top: 90px #fdd600 solid !important;
  border-bottom: 90px #fdd600 solid !important;
}
.gold--bx-90 {
  border-right: 90px #fdd600 solid !important;
  border-left: 90px #fdd600 solid !important;
}
.gold--ba-91 {
  border: 91px #fdd600 solid !important;
}
.gold--bt-91 {
  border-top: 91px #fdd600 solid !important;
}
.gold--br-91 {
  border-right: 91px #fdd600 solid !important;
}
.gold--bl-91 {
  border-left: 91px #fdd600 solid !important;
}
.gold--bb-91 {
  border-bottom: 91px #fdd600 solid !important;
}
.gold--by-91 {
  border-top: 91px #fdd600 solid !important;
  border-bottom: 91px #fdd600 solid !important;
}
.gold--bx-91 {
  border-right: 91px #fdd600 solid !important;
  border-left: 91px #fdd600 solid !important;
}
.gold--ba-92 {
  border: 92px #fdd600 solid !important;
}
.gold--bt-92 {
  border-top: 92px #fdd600 solid !important;
}
.gold--br-92 {
  border-right: 92px #fdd600 solid !important;
}
.gold--bl-92 {
  border-left: 92px #fdd600 solid !important;
}
.gold--bb-92 {
  border-bottom: 92px #fdd600 solid !important;
}
.gold--by-92 {
  border-top: 92px #fdd600 solid !important;
  border-bottom: 92px #fdd600 solid !important;
}
.gold--bx-92 {
  border-right: 92px #fdd600 solid !important;
  border-left: 92px #fdd600 solid !important;
}
.gold--ba-93 {
  border: 93px #fdd600 solid !important;
}
.gold--bt-93 {
  border-top: 93px #fdd600 solid !important;
}
.gold--br-93 {
  border-right: 93px #fdd600 solid !important;
}
.gold--bl-93 {
  border-left: 93px #fdd600 solid !important;
}
.gold--bb-93 {
  border-bottom: 93px #fdd600 solid !important;
}
.gold--by-93 {
  border-top: 93px #fdd600 solid !important;
  border-bottom: 93px #fdd600 solid !important;
}
.gold--bx-93 {
  border-right: 93px #fdd600 solid !important;
  border-left: 93px #fdd600 solid !important;
}
.gold--ba-94 {
  border: 94px #fdd600 solid !important;
}
.gold--bt-94 {
  border-top: 94px #fdd600 solid !important;
}
.gold--br-94 {
  border-right: 94px #fdd600 solid !important;
}
.gold--bl-94 {
  border-left: 94px #fdd600 solid !important;
}
.gold--bb-94 {
  border-bottom: 94px #fdd600 solid !important;
}
.gold--by-94 {
  border-top: 94px #fdd600 solid !important;
  border-bottom: 94px #fdd600 solid !important;
}
.gold--bx-94 {
  border-right: 94px #fdd600 solid !important;
  border-left: 94px #fdd600 solid !important;
}
.gold--ba-95 {
  border: 95px #fdd600 solid !important;
}
.gold--bt-95 {
  border-top: 95px #fdd600 solid !important;
}
.gold--br-95 {
  border-right: 95px #fdd600 solid !important;
}
.gold--bl-95 {
  border-left: 95px #fdd600 solid !important;
}
.gold--bb-95 {
  border-bottom: 95px #fdd600 solid !important;
}
.gold--by-95 {
  border-top: 95px #fdd600 solid !important;
  border-bottom: 95px #fdd600 solid !important;
}
.gold--bx-95 {
  border-right: 95px #fdd600 solid !important;
  border-left: 95px #fdd600 solid !important;
}
.gold--ba-96 {
  border: 96px #fdd600 solid !important;
}
.gold--bt-96 {
  border-top: 96px #fdd600 solid !important;
}
.gold--br-96 {
  border-right: 96px #fdd600 solid !important;
}
.gold--bl-96 {
  border-left: 96px #fdd600 solid !important;
}
.gold--bb-96 {
  border-bottom: 96px #fdd600 solid !important;
}
.gold--by-96 {
  border-top: 96px #fdd600 solid !important;
  border-bottom: 96px #fdd600 solid !important;
}
.gold--bx-96 {
  border-right: 96px #fdd600 solid !important;
  border-left: 96px #fdd600 solid !important;
}
.gold--ba-97 {
  border: 97px #fdd600 solid !important;
}
.gold--bt-97 {
  border-top: 97px #fdd600 solid !important;
}
.gold--br-97 {
  border-right: 97px #fdd600 solid !important;
}
.gold--bl-97 {
  border-left: 97px #fdd600 solid !important;
}
.gold--bb-97 {
  border-bottom: 97px #fdd600 solid !important;
}
.gold--by-97 {
  border-top: 97px #fdd600 solid !important;
  border-bottom: 97px #fdd600 solid !important;
}
.gold--bx-97 {
  border-right: 97px #fdd600 solid !important;
  border-left: 97px #fdd600 solid !important;
}
.gold--ba-98 {
  border: 98px #fdd600 solid !important;
}
.gold--bt-98 {
  border-top: 98px #fdd600 solid !important;
}
.gold--br-98 {
  border-right: 98px #fdd600 solid !important;
}
.gold--bl-98 {
  border-left: 98px #fdd600 solid !important;
}
.gold--bb-98 {
  border-bottom: 98px #fdd600 solid !important;
}
.gold--by-98 {
  border-top: 98px #fdd600 solid !important;
  border-bottom: 98px #fdd600 solid !important;
}
.gold--bx-98 {
  border-right: 98px #fdd600 solid !important;
  border-left: 98px #fdd600 solid !important;
}
.gold--ba-99 {
  border: 99px #fdd600 solid !important;
}
.gold--bt-99 {
  border-top: 99px #fdd600 solid !important;
}
.gold--br-99 {
  border-right: 99px #fdd600 solid !important;
}
.gold--bl-99 {
  border-left: 99px #fdd600 solid !important;
}
.gold--bb-99 {
  border-bottom: 99px #fdd600 solid !important;
}
.gold--by-99 {
  border-top: 99px #fdd600 solid !important;
  border-bottom: 99px #fdd600 solid !important;
}
.gold--bx-99 {
  border-right: 99px #fdd600 solid !important;
  border-left: 99px #fdd600 solid !important;
}
.gold--ba-100 {
  border: 100px #fdd600 solid !important;
}
.gold--bt-100 {
  border-top: 100px #fdd600 solid !important;
}
.gold--br-100 {
  border-right: 100px #fdd600 solid !important;
}
.gold--bl-100 {
  border-left: 100px #fdd600 solid !important;
}
.gold--bb-100 {
  border-bottom: 100px #fdd600 solid !important;
}
.gold--by-100 {
  border-top: 100px #fdd600 solid !important;
  border-bottom: 100px #fdd600 solid !important;
}
.gold--bx-100 {
  border-right: 100px #fdd600 solid !important;
  border-left: 100px #fdd600 solid !important;
}
.pattens-blue--ba-1 {
  border: 1px #d8e3ff solid !important;
}
.pattens-blue--bt-1 {
  border-top: 1px #d8e3ff solid !important;
}
.pattens-blue--br-1 {
  border-right: 1px #d8e3ff solid !important;
}
.pattens-blue--bl-1 {
  border-left: 1px #d8e3ff solid !important;
}
.pattens-blue--bb-1 {
  border-bottom: 1px #d8e3ff solid !important;
}
.pattens-blue--by-1 {
  border-top: 1px #d8e3ff solid !important;
  border-bottom: 1px #d8e3ff solid !important;
}
.pattens-blue--bx-1 {
  border-right: 1px #d8e3ff solid !important;
  border-left: 1px #d8e3ff solid !important;
}
.pattens-blue--ba-2 {
  border: 2px #d8e3ff solid !important;
}
.pattens-blue--bt-2 {
  border-top: 2px #d8e3ff solid !important;
}
.pattens-blue--br-2 {
  border-right: 2px #d8e3ff solid !important;
}
.pattens-blue--bl-2 {
  border-left: 2px #d8e3ff solid !important;
}
.pattens-blue--bb-2 {
  border-bottom: 2px #d8e3ff solid !important;
}
.pattens-blue--by-2 {
  border-top: 2px #d8e3ff solid !important;
  border-bottom: 2px #d8e3ff solid !important;
}
.pattens-blue--bx-2 {
  border-right: 2px #d8e3ff solid !important;
  border-left: 2px #d8e3ff solid !important;
}
.pattens-blue--ba-3 {
  border: 3px #d8e3ff solid !important;
}
.pattens-blue--bt-3 {
  border-top: 3px #d8e3ff solid !important;
}
.pattens-blue--br-3 {
  border-right: 3px #d8e3ff solid !important;
}
.pattens-blue--bl-3 {
  border-left: 3px #d8e3ff solid !important;
}
.pattens-blue--bb-3 {
  border-bottom: 3px #d8e3ff solid !important;
}
.pattens-blue--by-3 {
  border-top: 3px #d8e3ff solid !important;
  border-bottom: 3px #d8e3ff solid !important;
}
.pattens-blue--bx-3 {
  border-right: 3px #d8e3ff solid !important;
  border-left: 3px #d8e3ff solid !important;
}
.pattens-blue--ba-4 {
  border: 4px #d8e3ff solid !important;
}
.pattens-blue--bt-4 {
  border-top: 4px #d8e3ff solid !important;
}
.pattens-blue--br-4 {
  border-right: 4px #d8e3ff solid !important;
}
.pattens-blue--bl-4 {
  border-left: 4px #d8e3ff solid !important;
}
.pattens-blue--bb-4 {
  border-bottom: 4px #d8e3ff solid !important;
}
.pattens-blue--by-4 {
  border-top: 4px #d8e3ff solid !important;
  border-bottom: 4px #d8e3ff solid !important;
}
.pattens-blue--bx-4 {
  border-right: 4px #d8e3ff solid !important;
  border-left: 4px #d8e3ff solid !important;
}
.pattens-blue--ba-5 {
  border: 5px #d8e3ff solid !important;
}
.pattens-blue--bt-5 {
  border-top: 5px #d8e3ff solid !important;
}
.pattens-blue--br-5 {
  border-right: 5px #d8e3ff solid !important;
}
.pattens-blue--bl-5 {
  border-left: 5px #d8e3ff solid !important;
}
.pattens-blue--bb-5 {
  border-bottom: 5px #d8e3ff solid !important;
}
.pattens-blue--by-5 {
  border-top: 5px #d8e3ff solid !important;
  border-bottom: 5px #d8e3ff solid !important;
}
.pattens-blue--bx-5 {
  border-right: 5px #d8e3ff solid !important;
  border-left: 5px #d8e3ff solid !important;
}
.pattens-blue--ba-6 {
  border: 6px #d8e3ff solid !important;
}
.pattens-blue--bt-6 {
  border-top: 6px #d8e3ff solid !important;
}
.pattens-blue--br-6 {
  border-right: 6px #d8e3ff solid !important;
}
.pattens-blue--bl-6 {
  border-left: 6px #d8e3ff solid !important;
}
.pattens-blue--bb-6 {
  border-bottom: 6px #d8e3ff solid !important;
}
.pattens-blue--by-6 {
  border-top: 6px #d8e3ff solid !important;
  border-bottom: 6px #d8e3ff solid !important;
}
.pattens-blue--bx-6 {
  border-right: 6px #d8e3ff solid !important;
  border-left: 6px #d8e3ff solid !important;
}
.pattens-blue--ba-7 {
  border: 7px #d8e3ff solid !important;
}
.pattens-blue--bt-7 {
  border-top: 7px #d8e3ff solid !important;
}
.pattens-blue--br-7 {
  border-right: 7px #d8e3ff solid !important;
}
.pattens-blue--bl-7 {
  border-left: 7px #d8e3ff solid !important;
}
.pattens-blue--bb-7 {
  border-bottom: 7px #d8e3ff solid !important;
}
.pattens-blue--by-7 {
  border-top: 7px #d8e3ff solid !important;
  border-bottom: 7px #d8e3ff solid !important;
}
.pattens-blue--bx-7 {
  border-right: 7px #d8e3ff solid !important;
  border-left: 7px #d8e3ff solid !important;
}
.pattens-blue--ba-8 {
  border: 8px #d8e3ff solid !important;
}
.pattens-blue--bt-8 {
  border-top: 8px #d8e3ff solid !important;
}
.pattens-blue--br-8 {
  border-right: 8px #d8e3ff solid !important;
}
.pattens-blue--bl-8 {
  border-left: 8px #d8e3ff solid !important;
}
.pattens-blue--bb-8 {
  border-bottom: 8px #d8e3ff solid !important;
}
.pattens-blue--by-8 {
  border-top: 8px #d8e3ff solid !important;
  border-bottom: 8px #d8e3ff solid !important;
}
.pattens-blue--bx-8 {
  border-right: 8px #d8e3ff solid !important;
  border-left: 8px #d8e3ff solid !important;
}
.pattens-blue--ba-9 {
  border: 9px #d8e3ff solid !important;
}
.pattens-blue--bt-9 {
  border-top: 9px #d8e3ff solid !important;
}
.pattens-blue--br-9 {
  border-right: 9px #d8e3ff solid !important;
}
.pattens-blue--bl-9 {
  border-left: 9px #d8e3ff solid !important;
}
.pattens-blue--bb-9 {
  border-bottom: 9px #d8e3ff solid !important;
}
.pattens-blue--by-9 {
  border-top: 9px #d8e3ff solid !important;
  border-bottom: 9px #d8e3ff solid !important;
}
.pattens-blue--bx-9 {
  border-right: 9px #d8e3ff solid !important;
  border-left: 9px #d8e3ff solid !important;
}
.pattens-blue--ba-10 {
  border: 10px #d8e3ff solid !important;
}
.pattens-blue--bt-10 {
  border-top: 10px #d8e3ff solid !important;
}
.pattens-blue--br-10 {
  border-right: 10px #d8e3ff solid !important;
}
.pattens-blue--bl-10 {
  border-left: 10px #d8e3ff solid !important;
}
.pattens-blue--bb-10 {
  border-bottom: 10px #d8e3ff solid !important;
}
.pattens-blue--by-10 {
  border-top: 10px #d8e3ff solid !important;
  border-bottom: 10px #d8e3ff solid !important;
}
.pattens-blue--bx-10 {
  border-right: 10px #d8e3ff solid !important;
  border-left: 10px #d8e3ff solid !important;
}
.pattens-blue--ba-11 {
  border: 11px #d8e3ff solid !important;
}
.pattens-blue--bt-11 {
  border-top: 11px #d8e3ff solid !important;
}
.pattens-blue--br-11 {
  border-right: 11px #d8e3ff solid !important;
}
.pattens-blue--bl-11 {
  border-left: 11px #d8e3ff solid !important;
}
.pattens-blue--bb-11 {
  border-bottom: 11px #d8e3ff solid !important;
}
.pattens-blue--by-11 {
  border-top: 11px #d8e3ff solid !important;
  border-bottom: 11px #d8e3ff solid !important;
}
.pattens-blue--bx-11 {
  border-right: 11px #d8e3ff solid !important;
  border-left: 11px #d8e3ff solid !important;
}
.pattens-blue--ba-12 {
  border: 12px #d8e3ff solid !important;
}
.pattens-blue--bt-12 {
  border-top: 12px #d8e3ff solid !important;
}
.pattens-blue--br-12 {
  border-right: 12px #d8e3ff solid !important;
}
.pattens-blue--bl-12 {
  border-left: 12px #d8e3ff solid !important;
}
.pattens-blue--bb-12 {
  border-bottom: 12px #d8e3ff solid !important;
}
.pattens-blue--by-12 {
  border-top: 12px #d8e3ff solid !important;
  border-bottom: 12px #d8e3ff solid !important;
}
.pattens-blue--bx-12 {
  border-right: 12px #d8e3ff solid !important;
  border-left: 12px #d8e3ff solid !important;
}
.pattens-blue--ba-13 {
  border: 13px #d8e3ff solid !important;
}
.pattens-blue--bt-13 {
  border-top: 13px #d8e3ff solid !important;
}
.pattens-blue--br-13 {
  border-right: 13px #d8e3ff solid !important;
}
.pattens-blue--bl-13 {
  border-left: 13px #d8e3ff solid !important;
}
.pattens-blue--bb-13 {
  border-bottom: 13px #d8e3ff solid !important;
}
.pattens-blue--by-13 {
  border-top: 13px #d8e3ff solid !important;
  border-bottom: 13px #d8e3ff solid !important;
}
.pattens-blue--bx-13 {
  border-right: 13px #d8e3ff solid !important;
  border-left: 13px #d8e3ff solid !important;
}
.pattens-blue--ba-14 {
  border: 14px #d8e3ff solid !important;
}
.pattens-blue--bt-14 {
  border-top: 14px #d8e3ff solid !important;
}
.pattens-blue--br-14 {
  border-right: 14px #d8e3ff solid !important;
}
.pattens-blue--bl-14 {
  border-left: 14px #d8e3ff solid !important;
}
.pattens-blue--bb-14 {
  border-bottom: 14px #d8e3ff solid !important;
}
.pattens-blue--by-14 {
  border-top: 14px #d8e3ff solid !important;
  border-bottom: 14px #d8e3ff solid !important;
}
.pattens-blue--bx-14 {
  border-right: 14px #d8e3ff solid !important;
  border-left: 14px #d8e3ff solid !important;
}
.pattens-blue--ba-15 {
  border: 15px #d8e3ff solid !important;
}
.pattens-blue--bt-15 {
  border-top: 15px #d8e3ff solid !important;
}
.pattens-blue--br-15 {
  border-right: 15px #d8e3ff solid !important;
}
.pattens-blue--bl-15 {
  border-left: 15px #d8e3ff solid !important;
}
.pattens-blue--bb-15 {
  border-bottom: 15px #d8e3ff solid !important;
}
.pattens-blue--by-15 {
  border-top: 15px #d8e3ff solid !important;
  border-bottom: 15px #d8e3ff solid !important;
}
.pattens-blue--bx-15 {
  border-right: 15px #d8e3ff solid !important;
  border-left: 15px #d8e3ff solid !important;
}
.pattens-blue--ba-16 {
  border: 16px #d8e3ff solid !important;
}
.pattens-blue--bt-16 {
  border-top: 16px #d8e3ff solid !important;
}
.pattens-blue--br-16 {
  border-right: 16px #d8e3ff solid !important;
}
.pattens-blue--bl-16 {
  border-left: 16px #d8e3ff solid !important;
}
.pattens-blue--bb-16 {
  border-bottom: 16px #d8e3ff solid !important;
}
.pattens-blue--by-16 {
  border-top: 16px #d8e3ff solid !important;
  border-bottom: 16px #d8e3ff solid !important;
}
.pattens-blue--bx-16 {
  border-right: 16px #d8e3ff solid !important;
  border-left: 16px #d8e3ff solid !important;
}
.pattens-blue--ba-17 {
  border: 17px #d8e3ff solid !important;
}
.pattens-blue--bt-17 {
  border-top: 17px #d8e3ff solid !important;
}
.pattens-blue--br-17 {
  border-right: 17px #d8e3ff solid !important;
}
.pattens-blue--bl-17 {
  border-left: 17px #d8e3ff solid !important;
}
.pattens-blue--bb-17 {
  border-bottom: 17px #d8e3ff solid !important;
}
.pattens-blue--by-17 {
  border-top: 17px #d8e3ff solid !important;
  border-bottom: 17px #d8e3ff solid !important;
}
.pattens-blue--bx-17 {
  border-right: 17px #d8e3ff solid !important;
  border-left: 17px #d8e3ff solid !important;
}
.pattens-blue--ba-18 {
  border: 18px #d8e3ff solid !important;
}
.pattens-blue--bt-18 {
  border-top: 18px #d8e3ff solid !important;
}
.pattens-blue--br-18 {
  border-right: 18px #d8e3ff solid !important;
}
.pattens-blue--bl-18 {
  border-left: 18px #d8e3ff solid !important;
}
.pattens-blue--bb-18 {
  border-bottom: 18px #d8e3ff solid !important;
}
.pattens-blue--by-18 {
  border-top: 18px #d8e3ff solid !important;
  border-bottom: 18px #d8e3ff solid !important;
}
.pattens-blue--bx-18 {
  border-right: 18px #d8e3ff solid !important;
  border-left: 18px #d8e3ff solid !important;
}
.pattens-blue--ba-19 {
  border: 19px #d8e3ff solid !important;
}
.pattens-blue--bt-19 {
  border-top: 19px #d8e3ff solid !important;
}
.pattens-blue--br-19 {
  border-right: 19px #d8e3ff solid !important;
}
.pattens-blue--bl-19 {
  border-left: 19px #d8e3ff solid !important;
}
.pattens-blue--bb-19 {
  border-bottom: 19px #d8e3ff solid !important;
}
.pattens-blue--by-19 {
  border-top: 19px #d8e3ff solid !important;
  border-bottom: 19px #d8e3ff solid !important;
}
.pattens-blue--bx-19 {
  border-right: 19px #d8e3ff solid !important;
  border-left: 19px #d8e3ff solid !important;
}
.pattens-blue--ba-20 {
  border: 20px #d8e3ff solid !important;
}
.pattens-blue--bt-20 {
  border-top: 20px #d8e3ff solid !important;
}
.pattens-blue--br-20 {
  border-right: 20px #d8e3ff solid !important;
}
.pattens-blue--bl-20 {
  border-left: 20px #d8e3ff solid !important;
}
.pattens-blue--bb-20 {
  border-bottom: 20px #d8e3ff solid !important;
}
.pattens-blue--by-20 {
  border-top: 20px #d8e3ff solid !important;
  border-bottom: 20px #d8e3ff solid !important;
}
.pattens-blue--bx-20 {
  border-right: 20px #d8e3ff solid !important;
  border-left: 20px #d8e3ff solid !important;
}
.pattens-blue--ba-21 {
  border: 21px #d8e3ff solid !important;
}
.pattens-blue--bt-21 {
  border-top: 21px #d8e3ff solid !important;
}
.pattens-blue--br-21 {
  border-right: 21px #d8e3ff solid !important;
}
.pattens-blue--bl-21 {
  border-left: 21px #d8e3ff solid !important;
}
.pattens-blue--bb-21 {
  border-bottom: 21px #d8e3ff solid !important;
}
.pattens-blue--by-21 {
  border-top: 21px #d8e3ff solid !important;
  border-bottom: 21px #d8e3ff solid !important;
}
.pattens-blue--bx-21 {
  border-right: 21px #d8e3ff solid !important;
  border-left: 21px #d8e3ff solid !important;
}
.pattens-blue--ba-22 {
  border: 22px #d8e3ff solid !important;
}
.pattens-blue--bt-22 {
  border-top: 22px #d8e3ff solid !important;
}
.pattens-blue--br-22 {
  border-right: 22px #d8e3ff solid !important;
}
.pattens-blue--bl-22 {
  border-left: 22px #d8e3ff solid !important;
}
.pattens-blue--bb-22 {
  border-bottom: 22px #d8e3ff solid !important;
}
.pattens-blue--by-22 {
  border-top: 22px #d8e3ff solid !important;
  border-bottom: 22px #d8e3ff solid !important;
}
.pattens-blue--bx-22 {
  border-right: 22px #d8e3ff solid !important;
  border-left: 22px #d8e3ff solid !important;
}
.pattens-blue--ba-23 {
  border: 23px #d8e3ff solid !important;
}
.pattens-blue--bt-23 {
  border-top: 23px #d8e3ff solid !important;
}
.pattens-blue--br-23 {
  border-right: 23px #d8e3ff solid !important;
}
.pattens-blue--bl-23 {
  border-left: 23px #d8e3ff solid !important;
}
.pattens-blue--bb-23 {
  border-bottom: 23px #d8e3ff solid !important;
}
.pattens-blue--by-23 {
  border-top: 23px #d8e3ff solid !important;
  border-bottom: 23px #d8e3ff solid !important;
}
.pattens-blue--bx-23 {
  border-right: 23px #d8e3ff solid !important;
  border-left: 23px #d8e3ff solid !important;
}
.pattens-blue--ba-24 {
  border: 24px #d8e3ff solid !important;
}
.pattens-blue--bt-24 {
  border-top: 24px #d8e3ff solid !important;
}
.pattens-blue--br-24 {
  border-right: 24px #d8e3ff solid !important;
}
.pattens-blue--bl-24 {
  border-left: 24px #d8e3ff solid !important;
}
.pattens-blue--bb-24 {
  border-bottom: 24px #d8e3ff solid !important;
}
.pattens-blue--by-24 {
  border-top: 24px #d8e3ff solid !important;
  border-bottom: 24px #d8e3ff solid !important;
}
.pattens-blue--bx-24 {
  border-right: 24px #d8e3ff solid !important;
  border-left: 24px #d8e3ff solid !important;
}
.pattens-blue--ba-25 {
  border: 25px #d8e3ff solid !important;
}
.pattens-blue--bt-25 {
  border-top: 25px #d8e3ff solid !important;
}
.pattens-blue--br-25 {
  border-right: 25px #d8e3ff solid !important;
}
.pattens-blue--bl-25 {
  border-left: 25px #d8e3ff solid !important;
}
.pattens-blue--bb-25 {
  border-bottom: 25px #d8e3ff solid !important;
}
.pattens-blue--by-25 {
  border-top: 25px #d8e3ff solid !important;
  border-bottom: 25px #d8e3ff solid !important;
}
.pattens-blue--bx-25 {
  border-right: 25px #d8e3ff solid !important;
  border-left: 25px #d8e3ff solid !important;
}
.pattens-blue--ba-26 {
  border: 26px #d8e3ff solid !important;
}
.pattens-blue--bt-26 {
  border-top: 26px #d8e3ff solid !important;
}
.pattens-blue--br-26 {
  border-right: 26px #d8e3ff solid !important;
}
.pattens-blue--bl-26 {
  border-left: 26px #d8e3ff solid !important;
}
.pattens-blue--bb-26 {
  border-bottom: 26px #d8e3ff solid !important;
}
.pattens-blue--by-26 {
  border-top: 26px #d8e3ff solid !important;
  border-bottom: 26px #d8e3ff solid !important;
}
.pattens-blue--bx-26 {
  border-right: 26px #d8e3ff solid !important;
  border-left: 26px #d8e3ff solid !important;
}
.pattens-blue--ba-27 {
  border: 27px #d8e3ff solid !important;
}
.pattens-blue--bt-27 {
  border-top: 27px #d8e3ff solid !important;
}
.pattens-blue--br-27 {
  border-right: 27px #d8e3ff solid !important;
}
.pattens-blue--bl-27 {
  border-left: 27px #d8e3ff solid !important;
}
.pattens-blue--bb-27 {
  border-bottom: 27px #d8e3ff solid !important;
}
.pattens-blue--by-27 {
  border-top: 27px #d8e3ff solid !important;
  border-bottom: 27px #d8e3ff solid !important;
}
.pattens-blue--bx-27 {
  border-right: 27px #d8e3ff solid !important;
  border-left: 27px #d8e3ff solid !important;
}
.pattens-blue--ba-28 {
  border: 28px #d8e3ff solid !important;
}
.pattens-blue--bt-28 {
  border-top: 28px #d8e3ff solid !important;
}
.pattens-blue--br-28 {
  border-right: 28px #d8e3ff solid !important;
}
.pattens-blue--bl-28 {
  border-left: 28px #d8e3ff solid !important;
}
.pattens-blue--bb-28 {
  border-bottom: 28px #d8e3ff solid !important;
}
.pattens-blue--by-28 {
  border-top: 28px #d8e3ff solid !important;
  border-bottom: 28px #d8e3ff solid !important;
}
.pattens-blue--bx-28 {
  border-right: 28px #d8e3ff solid !important;
  border-left: 28px #d8e3ff solid !important;
}
.pattens-blue--ba-29 {
  border: 29px #d8e3ff solid !important;
}
.pattens-blue--bt-29 {
  border-top: 29px #d8e3ff solid !important;
}
.pattens-blue--br-29 {
  border-right: 29px #d8e3ff solid !important;
}
.pattens-blue--bl-29 {
  border-left: 29px #d8e3ff solid !important;
}
.pattens-blue--bb-29 {
  border-bottom: 29px #d8e3ff solid !important;
}
.pattens-blue--by-29 {
  border-top: 29px #d8e3ff solid !important;
  border-bottom: 29px #d8e3ff solid !important;
}
.pattens-blue--bx-29 {
  border-right: 29px #d8e3ff solid !important;
  border-left: 29px #d8e3ff solid !important;
}
.pattens-blue--ba-30 {
  border: 30px #d8e3ff solid !important;
}
.pattens-blue--bt-30 {
  border-top: 30px #d8e3ff solid !important;
}
.pattens-blue--br-30 {
  border-right: 30px #d8e3ff solid !important;
}
.pattens-blue--bl-30 {
  border-left: 30px #d8e3ff solid !important;
}
.pattens-blue--bb-30 {
  border-bottom: 30px #d8e3ff solid !important;
}
.pattens-blue--by-30 {
  border-top: 30px #d8e3ff solid !important;
  border-bottom: 30px #d8e3ff solid !important;
}
.pattens-blue--bx-30 {
  border-right: 30px #d8e3ff solid !important;
  border-left: 30px #d8e3ff solid !important;
}
.pattens-blue--ba-31 {
  border: 31px #d8e3ff solid !important;
}
.pattens-blue--bt-31 {
  border-top: 31px #d8e3ff solid !important;
}
.pattens-blue--br-31 {
  border-right: 31px #d8e3ff solid !important;
}
.pattens-blue--bl-31 {
  border-left: 31px #d8e3ff solid !important;
}
.pattens-blue--bb-31 {
  border-bottom: 31px #d8e3ff solid !important;
}
.pattens-blue--by-31 {
  border-top: 31px #d8e3ff solid !important;
  border-bottom: 31px #d8e3ff solid !important;
}
.pattens-blue--bx-31 {
  border-right: 31px #d8e3ff solid !important;
  border-left: 31px #d8e3ff solid !important;
}
.pattens-blue--ba-32 {
  border: 32px #d8e3ff solid !important;
}
.pattens-blue--bt-32 {
  border-top: 32px #d8e3ff solid !important;
}
.pattens-blue--br-32 {
  border-right: 32px #d8e3ff solid !important;
}
.pattens-blue--bl-32 {
  border-left: 32px #d8e3ff solid !important;
}
.pattens-blue--bb-32 {
  border-bottom: 32px #d8e3ff solid !important;
}
.pattens-blue--by-32 {
  border-top: 32px #d8e3ff solid !important;
  border-bottom: 32px #d8e3ff solid !important;
}
.pattens-blue--bx-32 {
  border-right: 32px #d8e3ff solid !important;
  border-left: 32px #d8e3ff solid !important;
}
.pattens-blue--ba-33 {
  border: 33px #d8e3ff solid !important;
}
.pattens-blue--bt-33 {
  border-top: 33px #d8e3ff solid !important;
}
.pattens-blue--br-33 {
  border-right: 33px #d8e3ff solid !important;
}
.pattens-blue--bl-33 {
  border-left: 33px #d8e3ff solid !important;
}
.pattens-blue--bb-33 {
  border-bottom: 33px #d8e3ff solid !important;
}
.pattens-blue--by-33 {
  border-top: 33px #d8e3ff solid !important;
  border-bottom: 33px #d8e3ff solid !important;
}
.pattens-blue--bx-33 {
  border-right: 33px #d8e3ff solid !important;
  border-left: 33px #d8e3ff solid !important;
}
.pattens-blue--ba-34 {
  border: 34px #d8e3ff solid !important;
}
.pattens-blue--bt-34 {
  border-top: 34px #d8e3ff solid !important;
}
.pattens-blue--br-34 {
  border-right: 34px #d8e3ff solid !important;
}
.pattens-blue--bl-34 {
  border-left: 34px #d8e3ff solid !important;
}
.pattens-blue--bb-34 {
  border-bottom: 34px #d8e3ff solid !important;
}
.pattens-blue--by-34 {
  border-top: 34px #d8e3ff solid !important;
  border-bottom: 34px #d8e3ff solid !important;
}
.pattens-blue--bx-34 {
  border-right: 34px #d8e3ff solid !important;
  border-left: 34px #d8e3ff solid !important;
}
.pattens-blue--ba-35 {
  border: 35px #d8e3ff solid !important;
}
.pattens-blue--bt-35 {
  border-top: 35px #d8e3ff solid !important;
}
.pattens-blue--br-35 {
  border-right: 35px #d8e3ff solid !important;
}
.pattens-blue--bl-35 {
  border-left: 35px #d8e3ff solid !important;
}
.pattens-blue--bb-35 {
  border-bottom: 35px #d8e3ff solid !important;
}
.pattens-blue--by-35 {
  border-top: 35px #d8e3ff solid !important;
  border-bottom: 35px #d8e3ff solid !important;
}
.pattens-blue--bx-35 {
  border-right: 35px #d8e3ff solid !important;
  border-left: 35px #d8e3ff solid !important;
}
.pattens-blue--ba-36 {
  border: 36px #d8e3ff solid !important;
}
.pattens-blue--bt-36 {
  border-top: 36px #d8e3ff solid !important;
}
.pattens-blue--br-36 {
  border-right: 36px #d8e3ff solid !important;
}
.pattens-blue--bl-36 {
  border-left: 36px #d8e3ff solid !important;
}
.pattens-blue--bb-36 {
  border-bottom: 36px #d8e3ff solid !important;
}
.pattens-blue--by-36 {
  border-top: 36px #d8e3ff solid !important;
  border-bottom: 36px #d8e3ff solid !important;
}
.pattens-blue--bx-36 {
  border-right: 36px #d8e3ff solid !important;
  border-left: 36px #d8e3ff solid !important;
}
.pattens-blue--ba-37 {
  border: 37px #d8e3ff solid !important;
}
.pattens-blue--bt-37 {
  border-top: 37px #d8e3ff solid !important;
}
.pattens-blue--br-37 {
  border-right: 37px #d8e3ff solid !important;
}
.pattens-blue--bl-37 {
  border-left: 37px #d8e3ff solid !important;
}
.pattens-blue--bb-37 {
  border-bottom: 37px #d8e3ff solid !important;
}
.pattens-blue--by-37 {
  border-top: 37px #d8e3ff solid !important;
  border-bottom: 37px #d8e3ff solid !important;
}
.pattens-blue--bx-37 {
  border-right: 37px #d8e3ff solid !important;
  border-left: 37px #d8e3ff solid !important;
}
.pattens-blue--ba-38 {
  border: 38px #d8e3ff solid !important;
}
.pattens-blue--bt-38 {
  border-top: 38px #d8e3ff solid !important;
}
.pattens-blue--br-38 {
  border-right: 38px #d8e3ff solid !important;
}
.pattens-blue--bl-38 {
  border-left: 38px #d8e3ff solid !important;
}
.pattens-blue--bb-38 {
  border-bottom: 38px #d8e3ff solid !important;
}
.pattens-blue--by-38 {
  border-top: 38px #d8e3ff solid !important;
  border-bottom: 38px #d8e3ff solid !important;
}
.pattens-blue--bx-38 {
  border-right: 38px #d8e3ff solid !important;
  border-left: 38px #d8e3ff solid !important;
}
.pattens-blue--ba-39 {
  border: 39px #d8e3ff solid !important;
}
.pattens-blue--bt-39 {
  border-top: 39px #d8e3ff solid !important;
}
.pattens-blue--br-39 {
  border-right: 39px #d8e3ff solid !important;
}
.pattens-blue--bl-39 {
  border-left: 39px #d8e3ff solid !important;
}
.pattens-blue--bb-39 {
  border-bottom: 39px #d8e3ff solid !important;
}
.pattens-blue--by-39 {
  border-top: 39px #d8e3ff solid !important;
  border-bottom: 39px #d8e3ff solid !important;
}
.pattens-blue--bx-39 {
  border-right: 39px #d8e3ff solid !important;
  border-left: 39px #d8e3ff solid !important;
}
.pattens-blue--ba-40 {
  border: 40px #d8e3ff solid !important;
}
.pattens-blue--bt-40 {
  border-top: 40px #d8e3ff solid !important;
}
.pattens-blue--br-40 {
  border-right: 40px #d8e3ff solid !important;
}
.pattens-blue--bl-40 {
  border-left: 40px #d8e3ff solid !important;
}
.pattens-blue--bb-40 {
  border-bottom: 40px #d8e3ff solid !important;
}
.pattens-blue--by-40 {
  border-top: 40px #d8e3ff solid !important;
  border-bottom: 40px #d8e3ff solid !important;
}
.pattens-blue--bx-40 {
  border-right: 40px #d8e3ff solid !important;
  border-left: 40px #d8e3ff solid !important;
}
.pattens-blue--ba-41 {
  border: 41px #d8e3ff solid !important;
}
.pattens-blue--bt-41 {
  border-top: 41px #d8e3ff solid !important;
}
.pattens-blue--br-41 {
  border-right: 41px #d8e3ff solid !important;
}
.pattens-blue--bl-41 {
  border-left: 41px #d8e3ff solid !important;
}
.pattens-blue--bb-41 {
  border-bottom: 41px #d8e3ff solid !important;
}
.pattens-blue--by-41 {
  border-top: 41px #d8e3ff solid !important;
  border-bottom: 41px #d8e3ff solid !important;
}
.pattens-blue--bx-41 {
  border-right: 41px #d8e3ff solid !important;
  border-left: 41px #d8e3ff solid !important;
}
.pattens-blue--ba-42 {
  border: 42px #d8e3ff solid !important;
}
.pattens-blue--bt-42 {
  border-top: 42px #d8e3ff solid !important;
}
.pattens-blue--br-42 {
  border-right: 42px #d8e3ff solid !important;
}
.pattens-blue--bl-42 {
  border-left: 42px #d8e3ff solid !important;
}
.pattens-blue--bb-42 {
  border-bottom: 42px #d8e3ff solid !important;
}
.pattens-blue--by-42 {
  border-top: 42px #d8e3ff solid !important;
  border-bottom: 42px #d8e3ff solid !important;
}
.pattens-blue--bx-42 {
  border-right: 42px #d8e3ff solid !important;
  border-left: 42px #d8e3ff solid !important;
}
.pattens-blue--ba-43 {
  border: 43px #d8e3ff solid !important;
}
.pattens-blue--bt-43 {
  border-top: 43px #d8e3ff solid !important;
}
.pattens-blue--br-43 {
  border-right: 43px #d8e3ff solid !important;
}
.pattens-blue--bl-43 {
  border-left: 43px #d8e3ff solid !important;
}
.pattens-blue--bb-43 {
  border-bottom: 43px #d8e3ff solid !important;
}
.pattens-blue--by-43 {
  border-top: 43px #d8e3ff solid !important;
  border-bottom: 43px #d8e3ff solid !important;
}
.pattens-blue--bx-43 {
  border-right: 43px #d8e3ff solid !important;
  border-left: 43px #d8e3ff solid !important;
}
.pattens-blue--ba-44 {
  border: 44px #d8e3ff solid !important;
}
.pattens-blue--bt-44 {
  border-top: 44px #d8e3ff solid !important;
}
.pattens-blue--br-44 {
  border-right: 44px #d8e3ff solid !important;
}
.pattens-blue--bl-44 {
  border-left: 44px #d8e3ff solid !important;
}
.pattens-blue--bb-44 {
  border-bottom: 44px #d8e3ff solid !important;
}
.pattens-blue--by-44 {
  border-top: 44px #d8e3ff solid !important;
  border-bottom: 44px #d8e3ff solid !important;
}
.pattens-blue--bx-44 {
  border-right: 44px #d8e3ff solid !important;
  border-left: 44px #d8e3ff solid !important;
}
.pattens-blue--ba-45 {
  border: 45px #d8e3ff solid !important;
}
.pattens-blue--bt-45 {
  border-top: 45px #d8e3ff solid !important;
}
.pattens-blue--br-45 {
  border-right: 45px #d8e3ff solid !important;
}
.pattens-blue--bl-45 {
  border-left: 45px #d8e3ff solid !important;
}
.pattens-blue--bb-45 {
  border-bottom: 45px #d8e3ff solid !important;
}
.pattens-blue--by-45 {
  border-top: 45px #d8e3ff solid !important;
  border-bottom: 45px #d8e3ff solid !important;
}
.pattens-blue--bx-45 {
  border-right: 45px #d8e3ff solid !important;
  border-left: 45px #d8e3ff solid !important;
}
.pattens-blue--ba-46 {
  border: 46px #d8e3ff solid !important;
}
.pattens-blue--bt-46 {
  border-top: 46px #d8e3ff solid !important;
}
.pattens-blue--br-46 {
  border-right: 46px #d8e3ff solid !important;
}
.pattens-blue--bl-46 {
  border-left: 46px #d8e3ff solid !important;
}
.pattens-blue--bb-46 {
  border-bottom: 46px #d8e3ff solid !important;
}
.pattens-blue--by-46 {
  border-top: 46px #d8e3ff solid !important;
  border-bottom: 46px #d8e3ff solid !important;
}
.pattens-blue--bx-46 {
  border-right: 46px #d8e3ff solid !important;
  border-left: 46px #d8e3ff solid !important;
}
.pattens-blue--ba-47 {
  border: 47px #d8e3ff solid !important;
}
.pattens-blue--bt-47 {
  border-top: 47px #d8e3ff solid !important;
}
.pattens-blue--br-47 {
  border-right: 47px #d8e3ff solid !important;
}
.pattens-blue--bl-47 {
  border-left: 47px #d8e3ff solid !important;
}
.pattens-blue--bb-47 {
  border-bottom: 47px #d8e3ff solid !important;
}
.pattens-blue--by-47 {
  border-top: 47px #d8e3ff solid !important;
  border-bottom: 47px #d8e3ff solid !important;
}
.pattens-blue--bx-47 {
  border-right: 47px #d8e3ff solid !important;
  border-left: 47px #d8e3ff solid !important;
}
.pattens-blue--ba-48 {
  border: 48px #d8e3ff solid !important;
}
.pattens-blue--bt-48 {
  border-top: 48px #d8e3ff solid !important;
}
.pattens-blue--br-48 {
  border-right: 48px #d8e3ff solid !important;
}
.pattens-blue--bl-48 {
  border-left: 48px #d8e3ff solid !important;
}
.pattens-blue--bb-48 {
  border-bottom: 48px #d8e3ff solid !important;
}
.pattens-blue--by-48 {
  border-top: 48px #d8e3ff solid !important;
  border-bottom: 48px #d8e3ff solid !important;
}
.pattens-blue--bx-48 {
  border-right: 48px #d8e3ff solid !important;
  border-left: 48px #d8e3ff solid !important;
}
.pattens-blue--ba-49 {
  border: 49px #d8e3ff solid !important;
}
.pattens-blue--bt-49 {
  border-top: 49px #d8e3ff solid !important;
}
.pattens-blue--br-49 {
  border-right: 49px #d8e3ff solid !important;
}
.pattens-blue--bl-49 {
  border-left: 49px #d8e3ff solid !important;
}
.pattens-blue--bb-49 {
  border-bottom: 49px #d8e3ff solid !important;
}
.pattens-blue--by-49 {
  border-top: 49px #d8e3ff solid !important;
  border-bottom: 49px #d8e3ff solid !important;
}
.pattens-blue--bx-49 {
  border-right: 49px #d8e3ff solid !important;
  border-left: 49px #d8e3ff solid !important;
}
.pattens-blue--ba-50 {
  border: 50px #d8e3ff solid !important;
}
.pattens-blue--bt-50 {
  border-top: 50px #d8e3ff solid !important;
}
.pattens-blue--br-50 {
  border-right: 50px #d8e3ff solid !important;
}
.pattens-blue--bl-50 {
  border-left: 50px #d8e3ff solid !important;
}
.pattens-blue--bb-50 {
  border-bottom: 50px #d8e3ff solid !important;
}
.pattens-blue--by-50 {
  border-top: 50px #d8e3ff solid !important;
  border-bottom: 50px #d8e3ff solid !important;
}
.pattens-blue--bx-50 {
  border-right: 50px #d8e3ff solid !important;
  border-left: 50px #d8e3ff solid !important;
}
.pattens-blue--ba-51 {
  border: 51px #d8e3ff solid !important;
}
.pattens-blue--bt-51 {
  border-top: 51px #d8e3ff solid !important;
}
.pattens-blue--br-51 {
  border-right: 51px #d8e3ff solid !important;
}
.pattens-blue--bl-51 {
  border-left: 51px #d8e3ff solid !important;
}
.pattens-blue--bb-51 {
  border-bottom: 51px #d8e3ff solid !important;
}
.pattens-blue--by-51 {
  border-top: 51px #d8e3ff solid !important;
  border-bottom: 51px #d8e3ff solid !important;
}
.pattens-blue--bx-51 {
  border-right: 51px #d8e3ff solid !important;
  border-left: 51px #d8e3ff solid !important;
}
.pattens-blue--ba-52 {
  border: 52px #d8e3ff solid !important;
}
.pattens-blue--bt-52 {
  border-top: 52px #d8e3ff solid !important;
}
.pattens-blue--br-52 {
  border-right: 52px #d8e3ff solid !important;
}
.pattens-blue--bl-52 {
  border-left: 52px #d8e3ff solid !important;
}
.pattens-blue--bb-52 {
  border-bottom: 52px #d8e3ff solid !important;
}
.pattens-blue--by-52 {
  border-top: 52px #d8e3ff solid !important;
  border-bottom: 52px #d8e3ff solid !important;
}
.pattens-blue--bx-52 {
  border-right: 52px #d8e3ff solid !important;
  border-left: 52px #d8e3ff solid !important;
}
.pattens-blue--ba-53 {
  border: 53px #d8e3ff solid !important;
}
.pattens-blue--bt-53 {
  border-top: 53px #d8e3ff solid !important;
}
.pattens-blue--br-53 {
  border-right: 53px #d8e3ff solid !important;
}
.pattens-blue--bl-53 {
  border-left: 53px #d8e3ff solid !important;
}
.pattens-blue--bb-53 {
  border-bottom: 53px #d8e3ff solid !important;
}
.pattens-blue--by-53 {
  border-top: 53px #d8e3ff solid !important;
  border-bottom: 53px #d8e3ff solid !important;
}
.pattens-blue--bx-53 {
  border-right: 53px #d8e3ff solid !important;
  border-left: 53px #d8e3ff solid !important;
}
.pattens-blue--ba-54 {
  border: 54px #d8e3ff solid !important;
}
.pattens-blue--bt-54 {
  border-top: 54px #d8e3ff solid !important;
}
.pattens-blue--br-54 {
  border-right: 54px #d8e3ff solid !important;
}
.pattens-blue--bl-54 {
  border-left: 54px #d8e3ff solid !important;
}
.pattens-blue--bb-54 {
  border-bottom: 54px #d8e3ff solid !important;
}
.pattens-blue--by-54 {
  border-top: 54px #d8e3ff solid !important;
  border-bottom: 54px #d8e3ff solid !important;
}
.pattens-blue--bx-54 {
  border-right: 54px #d8e3ff solid !important;
  border-left: 54px #d8e3ff solid !important;
}
.pattens-blue--ba-55 {
  border: 55px #d8e3ff solid !important;
}
.pattens-blue--bt-55 {
  border-top: 55px #d8e3ff solid !important;
}
.pattens-blue--br-55 {
  border-right: 55px #d8e3ff solid !important;
}
.pattens-blue--bl-55 {
  border-left: 55px #d8e3ff solid !important;
}
.pattens-blue--bb-55 {
  border-bottom: 55px #d8e3ff solid !important;
}
.pattens-blue--by-55 {
  border-top: 55px #d8e3ff solid !important;
  border-bottom: 55px #d8e3ff solid !important;
}
.pattens-blue--bx-55 {
  border-right: 55px #d8e3ff solid !important;
  border-left: 55px #d8e3ff solid !important;
}
.pattens-blue--ba-56 {
  border: 56px #d8e3ff solid !important;
}
.pattens-blue--bt-56 {
  border-top: 56px #d8e3ff solid !important;
}
.pattens-blue--br-56 {
  border-right: 56px #d8e3ff solid !important;
}
.pattens-blue--bl-56 {
  border-left: 56px #d8e3ff solid !important;
}
.pattens-blue--bb-56 {
  border-bottom: 56px #d8e3ff solid !important;
}
.pattens-blue--by-56 {
  border-top: 56px #d8e3ff solid !important;
  border-bottom: 56px #d8e3ff solid !important;
}
.pattens-blue--bx-56 {
  border-right: 56px #d8e3ff solid !important;
  border-left: 56px #d8e3ff solid !important;
}
.pattens-blue--ba-57 {
  border: 57px #d8e3ff solid !important;
}
.pattens-blue--bt-57 {
  border-top: 57px #d8e3ff solid !important;
}
.pattens-blue--br-57 {
  border-right: 57px #d8e3ff solid !important;
}
.pattens-blue--bl-57 {
  border-left: 57px #d8e3ff solid !important;
}
.pattens-blue--bb-57 {
  border-bottom: 57px #d8e3ff solid !important;
}
.pattens-blue--by-57 {
  border-top: 57px #d8e3ff solid !important;
  border-bottom: 57px #d8e3ff solid !important;
}
.pattens-blue--bx-57 {
  border-right: 57px #d8e3ff solid !important;
  border-left: 57px #d8e3ff solid !important;
}
.pattens-blue--ba-58 {
  border: 58px #d8e3ff solid !important;
}
.pattens-blue--bt-58 {
  border-top: 58px #d8e3ff solid !important;
}
.pattens-blue--br-58 {
  border-right: 58px #d8e3ff solid !important;
}
.pattens-blue--bl-58 {
  border-left: 58px #d8e3ff solid !important;
}
.pattens-blue--bb-58 {
  border-bottom: 58px #d8e3ff solid !important;
}
.pattens-blue--by-58 {
  border-top: 58px #d8e3ff solid !important;
  border-bottom: 58px #d8e3ff solid !important;
}
.pattens-blue--bx-58 {
  border-right: 58px #d8e3ff solid !important;
  border-left: 58px #d8e3ff solid !important;
}
.pattens-blue--ba-59 {
  border: 59px #d8e3ff solid !important;
}
.pattens-blue--bt-59 {
  border-top: 59px #d8e3ff solid !important;
}
.pattens-blue--br-59 {
  border-right: 59px #d8e3ff solid !important;
}
.pattens-blue--bl-59 {
  border-left: 59px #d8e3ff solid !important;
}
.pattens-blue--bb-59 {
  border-bottom: 59px #d8e3ff solid !important;
}
.pattens-blue--by-59 {
  border-top: 59px #d8e3ff solid !important;
  border-bottom: 59px #d8e3ff solid !important;
}
.pattens-blue--bx-59 {
  border-right: 59px #d8e3ff solid !important;
  border-left: 59px #d8e3ff solid !important;
}
.pattens-blue--ba-60 {
  border: 60px #d8e3ff solid !important;
}
.pattens-blue--bt-60 {
  border-top: 60px #d8e3ff solid !important;
}
.pattens-blue--br-60 {
  border-right: 60px #d8e3ff solid !important;
}
.pattens-blue--bl-60 {
  border-left: 60px #d8e3ff solid !important;
}
.pattens-blue--bb-60 {
  border-bottom: 60px #d8e3ff solid !important;
}
.pattens-blue--by-60 {
  border-top: 60px #d8e3ff solid !important;
  border-bottom: 60px #d8e3ff solid !important;
}
.pattens-blue--bx-60 {
  border-right: 60px #d8e3ff solid !important;
  border-left: 60px #d8e3ff solid !important;
}
.pattens-blue--ba-61 {
  border: 61px #d8e3ff solid !important;
}
.pattens-blue--bt-61 {
  border-top: 61px #d8e3ff solid !important;
}
.pattens-blue--br-61 {
  border-right: 61px #d8e3ff solid !important;
}
.pattens-blue--bl-61 {
  border-left: 61px #d8e3ff solid !important;
}
.pattens-blue--bb-61 {
  border-bottom: 61px #d8e3ff solid !important;
}
.pattens-blue--by-61 {
  border-top: 61px #d8e3ff solid !important;
  border-bottom: 61px #d8e3ff solid !important;
}
.pattens-blue--bx-61 {
  border-right: 61px #d8e3ff solid !important;
  border-left: 61px #d8e3ff solid !important;
}
.pattens-blue--ba-62 {
  border: 62px #d8e3ff solid !important;
}
.pattens-blue--bt-62 {
  border-top: 62px #d8e3ff solid !important;
}
.pattens-blue--br-62 {
  border-right: 62px #d8e3ff solid !important;
}
.pattens-blue--bl-62 {
  border-left: 62px #d8e3ff solid !important;
}
.pattens-blue--bb-62 {
  border-bottom: 62px #d8e3ff solid !important;
}
.pattens-blue--by-62 {
  border-top: 62px #d8e3ff solid !important;
  border-bottom: 62px #d8e3ff solid !important;
}
.pattens-blue--bx-62 {
  border-right: 62px #d8e3ff solid !important;
  border-left: 62px #d8e3ff solid !important;
}
.pattens-blue--ba-63 {
  border: 63px #d8e3ff solid !important;
}
.pattens-blue--bt-63 {
  border-top: 63px #d8e3ff solid !important;
}
.pattens-blue--br-63 {
  border-right: 63px #d8e3ff solid !important;
}
.pattens-blue--bl-63 {
  border-left: 63px #d8e3ff solid !important;
}
.pattens-blue--bb-63 {
  border-bottom: 63px #d8e3ff solid !important;
}
.pattens-blue--by-63 {
  border-top: 63px #d8e3ff solid !important;
  border-bottom: 63px #d8e3ff solid !important;
}
.pattens-blue--bx-63 {
  border-right: 63px #d8e3ff solid !important;
  border-left: 63px #d8e3ff solid !important;
}
.pattens-blue--ba-64 {
  border: 64px #d8e3ff solid !important;
}
.pattens-blue--bt-64 {
  border-top: 64px #d8e3ff solid !important;
}
.pattens-blue--br-64 {
  border-right: 64px #d8e3ff solid !important;
}
.pattens-blue--bl-64 {
  border-left: 64px #d8e3ff solid !important;
}
.pattens-blue--bb-64 {
  border-bottom: 64px #d8e3ff solid !important;
}
.pattens-blue--by-64 {
  border-top: 64px #d8e3ff solid !important;
  border-bottom: 64px #d8e3ff solid !important;
}
.pattens-blue--bx-64 {
  border-right: 64px #d8e3ff solid !important;
  border-left: 64px #d8e3ff solid !important;
}
.pattens-blue--ba-65 {
  border: 65px #d8e3ff solid !important;
}
.pattens-blue--bt-65 {
  border-top: 65px #d8e3ff solid !important;
}
.pattens-blue--br-65 {
  border-right: 65px #d8e3ff solid !important;
}
.pattens-blue--bl-65 {
  border-left: 65px #d8e3ff solid !important;
}
.pattens-blue--bb-65 {
  border-bottom: 65px #d8e3ff solid !important;
}
.pattens-blue--by-65 {
  border-top: 65px #d8e3ff solid !important;
  border-bottom: 65px #d8e3ff solid !important;
}
.pattens-blue--bx-65 {
  border-right: 65px #d8e3ff solid !important;
  border-left: 65px #d8e3ff solid !important;
}
.pattens-blue--ba-66 {
  border: 66px #d8e3ff solid !important;
}
.pattens-blue--bt-66 {
  border-top: 66px #d8e3ff solid !important;
}
.pattens-blue--br-66 {
  border-right: 66px #d8e3ff solid !important;
}
.pattens-blue--bl-66 {
  border-left: 66px #d8e3ff solid !important;
}
.pattens-blue--bb-66 {
  border-bottom: 66px #d8e3ff solid !important;
}
.pattens-blue--by-66 {
  border-top: 66px #d8e3ff solid !important;
  border-bottom: 66px #d8e3ff solid !important;
}
.pattens-blue--bx-66 {
  border-right: 66px #d8e3ff solid !important;
  border-left: 66px #d8e3ff solid !important;
}
.pattens-blue--ba-67 {
  border: 67px #d8e3ff solid !important;
}
.pattens-blue--bt-67 {
  border-top: 67px #d8e3ff solid !important;
}
.pattens-blue--br-67 {
  border-right: 67px #d8e3ff solid !important;
}
.pattens-blue--bl-67 {
  border-left: 67px #d8e3ff solid !important;
}
.pattens-blue--bb-67 {
  border-bottom: 67px #d8e3ff solid !important;
}
.pattens-blue--by-67 {
  border-top: 67px #d8e3ff solid !important;
  border-bottom: 67px #d8e3ff solid !important;
}
.pattens-blue--bx-67 {
  border-right: 67px #d8e3ff solid !important;
  border-left: 67px #d8e3ff solid !important;
}
.pattens-blue--ba-68 {
  border: 68px #d8e3ff solid !important;
}
.pattens-blue--bt-68 {
  border-top: 68px #d8e3ff solid !important;
}
.pattens-blue--br-68 {
  border-right: 68px #d8e3ff solid !important;
}
.pattens-blue--bl-68 {
  border-left: 68px #d8e3ff solid !important;
}
.pattens-blue--bb-68 {
  border-bottom: 68px #d8e3ff solid !important;
}
.pattens-blue--by-68 {
  border-top: 68px #d8e3ff solid !important;
  border-bottom: 68px #d8e3ff solid !important;
}
.pattens-blue--bx-68 {
  border-right: 68px #d8e3ff solid !important;
  border-left: 68px #d8e3ff solid !important;
}
.pattens-blue--ba-69 {
  border: 69px #d8e3ff solid !important;
}
.pattens-blue--bt-69 {
  border-top: 69px #d8e3ff solid !important;
}
.pattens-blue--br-69 {
  border-right: 69px #d8e3ff solid !important;
}
.pattens-blue--bl-69 {
  border-left: 69px #d8e3ff solid !important;
}
.pattens-blue--bb-69 {
  border-bottom: 69px #d8e3ff solid !important;
}
.pattens-blue--by-69 {
  border-top: 69px #d8e3ff solid !important;
  border-bottom: 69px #d8e3ff solid !important;
}
.pattens-blue--bx-69 {
  border-right: 69px #d8e3ff solid !important;
  border-left: 69px #d8e3ff solid !important;
}
.pattens-blue--ba-70 {
  border: 70px #d8e3ff solid !important;
}
.pattens-blue--bt-70 {
  border-top: 70px #d8e3ff solid !important;
}
.pattens-blue--br-70 {
  border-right: 70px #d8e3ff solid !important;
}
.pattens-blue--bl-70 {
  border-left: 70px #d8e3ff solid !important;
}
.pattens-blue--bb-70 {
  border-bottom: 70px #d8e3ff solid !important;
}
.pattens-blue--by-70 {
  border-top: 70px #d8e3ff solid !important;
  border-bottom: 70px #d8e3ff solid !important;
}
.pattens-blue--bx-70 {
  border-right: 70px #d8e3ff solid !important;
  border-left: 70px #d8e3ff solid !important;
}
.pattens-blue--ba-71 {
  border: 71px #d8e3ff solid !important;
}
.pattens-blue--bt-71 {
  border-top: 71px #d8e3ff solid !important;
}
.pattens-blue--br-71 {
  border-right: 71px #d8e3ff solid !important;
}
.pattens-blue--bl-71 {
  border-left: 71px #d8e3ff solid !important;
}
.pattens-blue--bb-71 {
  border-bottom: 71px #d8e3ff solid !important;
}
.pattens-blue--by-71 {
  border-top: 71px #d8e3ff solid !important;
  border-bottom: 71px #d8e3ff solid !important;
}
.pattens-blue--bx-71 {
  border-right: 71px #d8e3ff solid !important;
  border-left: 71px #d8e3ff solid !important;
}
.pattens-blue--ba-72 {
  border: 72px #d8e3ff solid !important;
}
.pattens-blue--bt-72 {
  border-top: 72px #d8e3ff solid !important;
}
.pattens-blue--br-72 {
  border-right: 72px #d8e3ff solid !important;
}
.pattens-blue--bl-72 {
  border-left: 72px #d8e3ff solid !important;
}
.pattens-blue--bb-72 {
  border-bottom: 72px #d8e3ff solid !important;
}
.pattens-blue--by-72 {
  border-top: 72px #d8e3ff solid !important;
  border-bottom: 72px #d8e3ff solid !important;
}
.pattens-blue--bx-72 {
  border-right: 72px #d8e3ff solid !important;
  border-left: 72px #d8e3ff solid !important;
}
.pattens-blue--ba-73 {
  border: 73px #d8e3ff solid !important;
}
.pattens-blue--bt-73 {
  border-top: 73px #d8e3ff solid !important;
}
.pattens-blue--br-73 {
  border-right: 73px #d8e3ff solid !important;
}
.pattens-blue--bl-73 {
  border-left: 73px #d8e3ff solid !important;
}
.pattens-blue--bb-73 {
  border-bottom: 73px #d8e3ff solid !important;
}
.pattens-blue--by-73 {
  border-top: 73px #d8e3ff solid !important;
  border-bottom: 73px #d8e3ff solid !important;
}
.pattens-blue--bx-73 {
  border-right: 73px #d8e3ff solid !important;
  border-left: 73px #d8e3ff solid !important;
}
.pattens-blue--ba-74 {
  border: 74px #d8e3ff solid !important;
}
.pattens-blue--bt-74 {
  border-top: 74px #d8e3ff solid !important;
}
.pattens-blue--br-74 {
  border-right: 74px #d8e3ff solid !important;
}
.pattens-blue--bl-74 {
  border-left: 74px #d8e3ff solid !important;
}
.pattens-blue--bb-74 {
  border-bottom: 74px #d8e3ff solid !important;
}
.pattens-blue--by-74 {
  border-top: 74px #d8e3ff solid !important;
  border-bottom: 74px #d8e3ff solid !important;
}
.pattens-blue--bx-74 {
  border-right: 74px #d8e3ff solid !important;
  border-left: 74px #d8e3ff solid !important;
}
.pattens-blue--ba-75 {
  border: 75px #d8e3ff solid !important;
}
.pattens-blue--bt-75 {
  border-top: 75px #d8e3ff solid !important;
}
.pattens-blue--br-75 {
  border-right: 75px #d8e3ff solid !important;
}
.pattens-blue--bl-75 {
  border-left: 75px #d8e3ff solid !important;
}
.pattens-blue--bb-75 {
  border-bottom: 75px #d8e3ff solid !important;
}
.pattens-blue--by-75 {
  border-top: 75px #d8e3ff solid !important;
  border-bottom: 75px #d8e3ff solid !important;
}
.pattens-blue--bx-75 {
  border-right: 75px #d8e3ff solid !important;
  border-left: 75px #d8e3ff solid !important;
}
.pattens-blue--ba-76 {
  border: 76px #d8e3ff solid !important;
}
.pattens-blue--bt-76 {
  border-top: 76px #d8e3ff solid !important;
}
.pattens-blue--br-76 {
  border-right: 76px #d8e3ff solid !important;
}
.pattens-blue--bl-76 {
  border-left: 76px #d8e3ff solid !important;
}
.pattens-blue--bb-76 {
  border-bottom: 76px #d8e3ff solid !important;
}
.pattens-blue--by-76 {
  border-top: 76px #d8e3ff solid !important;
  border-bottom: 76px #d8e3ff solid !important;
}
.pattens-blue--bx-76 {
  border-right: 76px #d8e3ff solid !important;
  border-left: 76px #d8e3ff solid !important;
}
.pattens-blue--ba-77 {
  border: 77px #d8e3ff solid !important;
}
.pattens-blue--bt-77 {
  border-top: 77px #d8e3ff solid !important;
}
.pattens-blue--br-77 {
  border-right: 77px #d8e3ff solid !important;
}
.pattens-blue--bl-77 {
  border-left: 77px #d8e3ff solid !important;
}
.pattens-blue--bb-77 {
  border-bottom: 77px #d8e3ff solid !important;
}
.pattens-blue--by-77 {
  border-top: 77px #d8e3ff solid !important;
  border-bottom: 77px #d8e3ff solid !important;
}
.pattens-blue--bx-77 {
  border-right: 77px #d8e3ff solid !important;
  border-left: 77px #d8e3ff solid !important;
}
.pattens-blue--ba-78 {
  border: 78px #d8e3ff solid !important;
}
.pattens-blue--bt-78 {
  border-top: 78px #d8e3ff solid !important;
}
.pattens-blue--br-78 {
  border-right: 78px #d8e3ff solid !important;
}
.pattens-blue--bl-78 {
  border-left: 78px #d8e3ff solid !important;
}
.pattens-blue--bb-78 {
  border-bottom: 78px #d8e3ff solid !important;
}
.pattens-blue--by-78 {
  border-top: 78px #d8e3ff solid !important;
  border-bottom: 78px #d8e3ff solid !important;
}
.pattens-blue--bx-78 {
  border-right: 78px #d8e3ff solid !important;
  border-left: 78px #d8e3ff solid !important;
}
.pattens-blue--ba-79 {
  border: 79px #d8e3ff solid !important;
}
.pattens-blue--bt-79 {
  border-top: 79px #d8e3ff solid !important;
}
.pattens-blue--br-79 {
  border-right: 79px #d8e3ff solid !important;
}
.pattens-blue--bl-79 {
  border-left: 79px #d8e3ff solid !important;
}
.pattens-blue--bb-79 {
  border-bottom: 79px #d8e3ff solid !important;
}
.pattens-blue--by-79 {
  border-top: 79px #d8e3ff solid !important;
  border-bottom: 79px #d8e3ff solid !important;
}
.pattens-blue--bx-79 {
  border-right: 79px #d8e3ff solid !important;
  border-left: 79px #d8e3ff solid !important;
}
.pattens-blue--ba-80 {
  border: 80px #d8e3ff solid !important;
}
.pattens-blue--bt-80 {
  border-top: 80px #d8e3ff solid !important;
}
.pattens-blue--br-80 {
  border-right: 80px #d8e3ff solid !important;
}
.pattens-blue--bl-80 {
  border-left: 80px #d8e3ff solid !important;
}
.pattens-blue--bb-80 {
  border-bottom: 80px #d8e3ff solid !important;
}
.pattens-blue--by-80 {
  border-top: 80px #d8e3ff solid !important;
  border-bottom: 80px #d8e3ff solid !important;
}
.pattens-blue--bx-80 {
  border-right: 80px #d8e3ff solid !important;
  border-left: 80px #d8e3ff solid !important;
}
.pattens-blue--ba-81 {
  border: 81px #d8e3ff solid !important;
}
.pattens-blue--bt-81 {
  border-top: 81px #d8e3ff solid !important;
}
.pattens-blue--br-81 {
  border-right: 81px #d8e3ff solid !important;
}
.pattens-blue--bl-81 {
  border-left: 81px #d8e3ff solid !important;
}
.pattens-blue--bb-81 {
  border-bottom: 81px #d8e3ff solid !important;
}
.pattens-blue--by-81 {
  border-top: 81px #d8e3ff solid !important;
  border-bottom: 81px #d8e3ff solid !important;
}
.pattens-blue--bx-81 {
  border-right: 81px #d8e3ff solid !important;
  border-left: 81px #d8e3ff solid !important;
}
.pattens-blue--ba-82 {
  border: 82px #d8e3ff solid !important;
}
.pattens-blue--bt-82 {
  border-top: 82px #d8e3ff solid !important;
}
.pattens-blue--br-82 {
  border-right: 82px #d8e3ff solid !important;
}
.pattens-blue--bl-82 {
  border-left: 82px #d8e3ff solid !important;
}
.pattens-blue--bb-82 {
  border-bottom: 82px #d8e3ff solid !important;
}
.pattens-blue--by-82 {
  border-top: 82px #d8e3ff solid !important;
  border-bottom: 82px #d8e3ff solid !important;
}
.pattens-blue--bx-82 {
  border-right: 82px #d8e3ff solid !important;
  border-left: 82px #d8e3ff solid !important;
}
.pattens-blue--ba-83 {
  border: 83px #d8e3ff solid !important;
}
.pattens-blue--bt-83 {
  border-top: 83px #d8e3ff solid !important;
}
.pattens-blue--br-83 {
  border-right: 83px #d8e3ff solid !important;
}
.pattens-blue--bl-83 {
  border-left: 83px #d8e3ff solid !important;
}
.pattens-blue--bb-83 {
  border-bottom: 83px #d8e3ff solid !important;
}
.pattens-blue--by-83 {
  border-top: 83px #d8e3ff solid !important;
  border-bottom: 83px #d8e3ff solid !important;
}
.pattens-blue--bx-83 {
  border-right: 83px #d8e3ff solid !important;
  border-left: 83px #d8e3ff solid !important;
}
.pattens-blue--ba-84 {
  border: 84px #d8e3ff solid !important;
}
.pattens-blue--bt-84 {
  border-top: 84px #d8e3ff solid !important;
}
.pattens-blue--br-84 {
  border-right: 84px #d8e3ff solid !important;
}
.pattens-blue--bl-84 {
  border-left: 84px #d8e3ff solid !important;
}
.pattens-blue--bb-84 {
  border-bottom: 84px #d8e3ff solid !important;
}
.pattens-blue--by-84 {
  border-top: 84px #d8e3ff solid !important;
  border-bottom: 84px #d8e3ff solid !important;
}
.pattens-blue--bx-84 {
  border-right: 84px #d8e3ff solid !important;
  border-left: 84px #d8e3ff solid !important;
}
.pattens-blue--ba-85 {
  border: 85px #d8e3ff solid !important;
}
.pattens-blue--bt-85 {
  border-top: 85px #d8e3ff solid !important;
}
.pattens-blue--br-85 {
  border-right: 85px #d8e3ff solid !important;
}
.pattens-blue--bl-85 {
  border-left: 85px #d8e3ff solid !important;
}
.pattens-blue--bb-85 {
  border-bottom: 85px #d8e3ff solid !important;
}
.pattens-blue--by-85 {
  border-top: 85px #d8e3ff solid !important;
  border-bottom: 85px #d8e3ff solid !important;
}
.pattens-blue--bx-85 {
  border-right: 85px #d8e3ff solid !important;
  border-left: 85px #d8e3ff solid !important;
}
.pattens-blue--ba-86 {
  border: 86px #d8e3ff solid !important;
}
.pattens-blue--bt-86 {
  border-top: 86px #d8e3ff solid !important;
}
.pattens-blue--br-86 {
  border-right: 86px #d8e3ff solid !important;
}
.pattens-blue--bl-86 {
  border-left: 86px #d8e3ff solid !important;
}
.pattens-blue--bb-86 {
  border-bottom: 86px #d8e3ff solid !important;
}
.pattens-blue--by-86 {
  border-top: 86px #d8e3ff solid !important;
  border-bottom: 86px #d8e3ff solid !important;
}
.pattens-blue--bx-86 {
  border-right: 86px #d8e3ff solid !important;
  border-left: 86px #d8e3ff solid !important;
}
.pattens-blue--ba-87 {
  border: 87px #d8e3ff solid !important;
}
.pattens-blue--bt-87 {
  border-top: 87px #d8e3ff solid !important;
}
.pattens-blue--br-87 {
  border-right: 87px #d8e3ff solid !important;
}
.pattens-blue--bl-87 {
  border-left: 87px #d8e3ff solid !important;
}
.pattens-blue--bb-87 {
  border-bottom: 87px #d8e3ff solid !important;
}
.pattens-blue--by-87 {
  border-top: 87px #d8e3ff solid !important;
  border-bottom: 87px #d8e3ff solid !important;
}
.pattens-blue--bx-87 {
  border-right: 87px #d8e3ff solid !important;
  border-left: 87px #d8e3ff solid !important;
}
.pattens-blue--ba-88 {
  border: 88px #d8e3ff solid !important;
}
.pattens-blue--bt-88 {
  border-top: 88px #d8e3ff solid !important;
}
.pattens-blue--br-88 {
  border-right: 88px #d8e3ff solid !important;
}
.pattens-blue--bl-88 {
  border-left: 88px #d8e3ff solid !important;
}
.pattens-blue--bb-88 {
  border-bottom: 88px #d8e3ff solid !important;
}
.pattens-blue--by-88 {
  border-top: 88px #d8e3ff solid !important;
  border-bottom: 88px #d8e3ff solid !important;
}
.pattens-blue--bx-88 {
  border-right: 88px #d8e3ff solid !important;
  border-left: 88px #d8e3ff solid !important;
}
.pattens-blue--ba-89 {
  border: 89px #d8e3ff solid !important;
}
.pattens-blue--bt-89 {
  border-top: 89px #d8e3ff solid !important;
}
.pattens-blue--br-89 {
  border-right: 89px #d8e3ff solid !important;
}
.pattens-blue--bl-89 {
  border-left: 89px #d8e3ff solid !important;
}
.pattens-blue--bb-89 {
  border-bottom: 89px #d8e3ff solid !important;
}
.pattens-blue--by-89 {
  border-top: 89px #d8e3ff solid !important;
  border-bottom: 89px #d8e3ff solid !important;
}
.pattens-blue--bx-89 {
  border-right: 89px #d8e3ff solid !important;
  border-left: 89px #d8e3ff solid !important;
}
.pattens-blue--ba-90 {
  border: 90px #d8e3ff solid !important;
}
.pattens-blue--bt-90 {
  border-top: 90px #d8e3ff solid !important;
}
.pattens-blue--br-90 {
  border-right: 90px #d8e3ff solid !important;
}
.pattens-blue--bl-90 {
  border-left: 90px #d8e3ff solid !important;
}
.pattens-blue--bb-90 {
  border-bottom: 90px #d8e3ff solid !important;
}
.pattens-blue--by-90 {
  border-top: 90px #d8e3ff solid !important;
  border-bottom: 90px #d8e3ff solid !important;
}
.pattens-blue--bx-90 {
  border-right: 90px #d8e3ff solid !important;
  border-left: 90px #d8e3ff solid !important;
}
.pattens-blue--ba-91 {
  border: 91px #d8e3ff solid !important;
}
.pattens-blue--bt-91 {
  border-top: 91px #d8e3ff solid !important;
}
.pattens-blue--br-91 {
  border-right: 91px #d8e3ff solid !important;
}
.pattens-blue--bl-91 {
  border-left: 91px #d8e3ff solid !important;
}
.pattens-blue--bb-91 {
  border-bottom: 91px #d8e3ff solid !important;
}
.pattens-blue--by-91 {
  border-top: 91px #d8e3ff solid !important;
  border-bottom: 91px #d8e3ff solid !important;
}
.pattens-blue--bx-91 {
  border-right: 91px #d8e3ff solid !important;
  border-left: 91px #d8e3ff solid !important;
}
.pattens-blue--ba-92 {
  border: 92px #d8e3ff solid !important;
}
.pattens-blue--bt-92 {
  border-top: 92px #d8e3ff solid !important;
}
.pattens-blue--br-92 {
  border-right: 92px #d8e3ff solid !important;
}
.pattens-blue--bl-92 {
  border-left: 92px #d8e3ff solid !important;
}
.pattens-blue--bb-92 {
  border-bottom: 92px #d8e3ff solid !important;
}
.pattens-blue--by-92 {
  border-top: 92px #d8e3ff solid !important;
  border-bottom: 92px #d8e3ff solid !important;
}
.pattens-blue--bx-92 {
  border-right: 92px #d8e3ff solid !important;
  border-left: 92px #d8e3ff solid !important;
}
.pattens-blue--ba-93 {
  border: 93px #d8e3ff solid !important;
}
.pattens-blue--bt-93 {
  border-top: 93px #d8e3ff solid !important;
}
.pattens-blue--br-93 {
  border-right: 93px #d8e3ff solid !important;
}
.pattens-blue--bl-93 {
  border-left: 93px #d8e3ff solid !important;
}
.pattens-blue--bb-93 {
  border-bottom: 93px #d8e3ff solid !important;
}
.pattens-blue--by-93 {
  border-top: 93px #d8e3ff solid !important;
  border-bottom: 93px #d8e3ff solid !important;
}
.pattens-blue--bx-93 {
  border-right: 93px #d8e3ff solid !important;
  border-left: 93px #d8e3ff solid !important;
}
.pattens-blue--ba-94 {
  border: 94px #d8e3ff solid !important;
}
.pattens-blue--bt-94 {
  border-top: 94px #d8e3ff solid !important;
}
.pattens-blue--br-94 {
  border-right: 94px #d8e3ff solid !important;
}
.pattens-blue--bl-94 {
  border-left: 94px #d8e3ff solid !important;
}
.pattens-blue--bb-94 {
  border-bottom: 94px #d8e3ff solid !important;
}
.pattens-blue--by-94 {
  border-top: 94px #d8e3ff solid !important;
  border-bottom: 94px #d8e3ff solid !important;
}
.pattens-blue--bx-94 {
  border-right: 94px #d8e3ff solid !important;
  border-left: 94px #d8e3ff solid !important;
}
.pattens-blue--ba-95 {
  border: 95px #d8e3ff solid !important;
}
.pattens-blue--bt-95 {
  border-top: 95px #d8e3ff solid !important;
}
.pattens-blue--br-95 {
  border-right: 95px #d8e3ff solid !important;
}
.pattens-blue--bl-95 {
  border-left: 95px #d8e3ff solid !important;
}
.pattens-blue--bb-95 {
  border-bottom: 95px #d8e3ff solid !important;
}
.pattens-blue--by-95 {
  border-top: 95px #d8e3ff solid !important;
  border-bottom: 95px #d8e3ff solid !important;
}
.pattens-blue--bx-95 {
  border-right: 95px #d8e3ff solid !important;
  border-left: 95px #d8e3ff solid !important;
}
.pattens-blue--ba-96 {
  border: 96px #d8e3ff solid !important;
}
.pattens-blue--bt-96 {
  border-top: 96px #d8e3ff solid !important;
}
.pattens-blue--br-96 {
  border-right: 96px #d8e3ff solid !important;
}
.pattens-blue--bl-96 {
  border-left: 96px #d8e3ff solid !important;
}
.pattens-blue--bb-96 {
  border-bottom: 96px #d8e3ff solid !important;
}
.pattens-blue--by-96 {
  border-top: 96px #d8e3ff solid !important;
  border-bottom: 96px #d8e3ff solid !important;
}
.pattens-blue--bx-96 {
  border-right: 96px #d8e3ff solid !important;
  border-left: 96px #d8e3ff solid !important;
}
.pattens-blue--ba-97 {
  border: 97px #d8e3ff solid !important;
}
.pattens-blue--bt-97 {
  border-top: 97px #d8e3ff solid !important;
}
.pattens-blue--br-97 {
  border-right: 97px #d8e3ff solid !important;
}
.pattens-blue--bl-97 {
  border-left: 97px #d8e3ff solid !important;
}
.pattens-blue--bb-97 {
  border-bottom: 97px #d8e3ff solid !important;
}
.pattens-blue--by-97 {
  border-top: 97px #d8e3ff solid !important;
  border-bottom: 97px #d8e3ff solid !important;
}
.pattens-blue--bx-97 {
  border-right: 97px #d8e3ff solid !important;
  border-left: 97px #d8e3ff solid !important;
}
.pattens-blue--ba-98 {
  border: 98px #d8e3ff solid !important;
}
.pattens-blue--bt-98 {
  border-top: 98px #d8e3ff solid !important;
}
.pattens-blue--br-98 {
  border-right: 98px #d8e3ff solid !important;
}
.pattens-blue--bl-98 {
  border-left: 98px #d8e3ff solid !important;
}
.pattens-blue--bb-98 {
  border-bottom: 98px #d8e3ff solid !important;
}
.pattens-blue--by-98 {
  border-top: 98px #d8e3ff solid !important;
  border-bottom: 98px #d8e3ff solid !important;
}
.pattens-blue--bx-98 {
  border-right: 98px #d8e3ff solid !important;
  border-left: 98px #d8e3ff solid !important;
}
.pattens-blue--ba-99 {
  border: 99px #d8e3ff solid !important;
}
.pattens-blue--bt-99 {
  border-top: 99px #d8e3ff solid !important;
}
.pattens-blue--br-99 {
  border-right: 99px #d8e3ff solid !important;
}
.pattens-blue--bl-99 {
  border-left: 99px #d8e3ff solid !important;
}
.pattens-blue--bb-99 {
  border-bottom: 99px #d8e3ff solid !important;
}
.pattens-blue--by-99 {
  border-top: 99px #d8e3ff solid !important;
  border-bottom: 99px #d8e3ff solid !important;
}
.pattens-blue--bx-99 {
  border-right: 99px #d8e3ff solid !important;
  border-left: 99px #d8e3ff solid !important;
}
.pattens-blue--ba-100 {
  border: 100px #d8e3ff solid !important;
}
.pattens-blue--bt-100 {
  border-top: 100px #d8e3ff solid !important;
}
.pattens-blue--br-100 {
  border-right: 100px #d8e3ff solid !important;
}
.pattens-blue--bl-100 {
  border-left: 100px #d8e3ff solid !important;
}
.pattens-blue--bb-100 {
  border-bottom: 100px #d8e3ff solid !important;
}
.pattens-blue--by-100 {
  border-top: 100px #d8e3ff solid !important;
  border-bottom: 100px #d8e3ff solid !important;
}
.pattens-blue--bx-100 {
  border-right: 100px #d8e3ff solid !important;
  border-left: 100px #d8e3ff solid !important;
}
.emperor--ba-1 {
  border: 1px #514649 solid !important;
}
.emperor--bt-1 {
  border-top: 1px #514649 solid !important;
}
.emperor--br-1 {
  border-right: 1px #514649 solid !important;
}
.emperor--bl-1 {
  border-left: 1px #514649 solid !important;
}
.emperor--bb-1 {
  border-bottom: 1px #514649 solid !important;
}
.emperor--by-1 {
  border-top: 1px #514649 solid !important;
  border-bottom: 1px #514649 solid !important;
}
.emperor--bx-1 {
  border-right: 1px #514649 solid !important;
  border-left: 1px #514649 solid !important;
}
.emperor--ba-2 {
  border: 2px #514649 solid !important;
}
.emperor--bt-2 {
  border-top: 2px #514649 solid !important;
}
.emperor--br-2 {
  border-right: 2px #514649 solid !important;
}
.emperor--bl-2 {
  border-left: 2px #514649 solid !important;
}
.emperor--bb-2 {
  border-bottom: 2px #514649 solid !important;
}
.emperor--by-2 {
  border-top: 2px #514649 solid !important;
  border-bottom: 2px #514649 solid !important;
}
.emperor--bx-2 {
  border-right: 2px #514649 solid !important;
  border-left: 2px #514649 solid !important;
}
.emperor--ba-3 {
  border: 3px #514649 solid !important;
}
.emperor--bt-3 {
  border-top: 3px #514649 solid !important;
}
.emperor--br-3 {
  border-right: 3px #514649 solid !important;
}
.emperor--bl-3 {
  border-left: 3px #514649 solid !important;
}
.emperor--bb-3 {
  border-bottom: 3px #514649 solid !important;
}
.emperor--by-3 {
  border-top: 3px #514649 solid !important;
  border-bottom: 3px #514649 solid !important;
}
.emperor--bx-3 {
  border-right: 3px #514649 solid !important;
  border-left: 3px #514649 solid !important;
}
.emperor--ba-4 {
  border: 4px #514649 solid !important;
}
.emperor--bt-4 {
  border-top: 4px #514649 solid !important;
}
.emperor--br-4 {
  border-right: 4px #514649 solid !important;
}
.emperor--bl-4 {
  border-left: 4px #514649 solid !important;
}
.emperor--bb-4 {
  border-bottom: 4px #514649 solid !important;
}
.emperor--by-4 {
  border-top: 4px #514649 solid !important;
  border-bottom: 4px #514649 solid !important;
}
.emperor--bx-4 {
  border-right: 4px #514649 solid !important;
  border-left: 4px #514649 solid !important;
}
.emperor--ba-5 {
  border: 5px #514649 solid !important;
}
.emperor--bt-5 {
  border-top: 5px #514649 solid !important;
}
.emperor--br-5 {
  border-right: 5px #514649 solid !important;
}
.emperor--bl-5 {
  border-left: 5px #514649 solid !important;
}
.emperor--bb-5 {
  border-bottom: 5px #514649 solid !important;
}
.emperor--by-5 {
  border-top: 5px #514649 solid !important;
  border-bottom: 5px #514649 solid !important;
}
.emperor--bx-5 {
  border-right: 5px #514649 solid !important;
  border-left: 5px #514649 solid !important;
}
.emperor--ba-6 {
  border: 6px #514649 solid !important;
}
.emperor--bt-6 {
  border-top: 6px #514649 solid !important;
}
.emperor--br-6 {
  border-right: 6px #514649 solid !important;
}
.emperor--bl-6 {
  border-left: 6px #514649 solid !important;
}
.emperor--bb-6 {
  border-bottom: 6px #514649 solid !important;
}
.emperor--by-6 {
  border-top: 6px #514649 solid !important;
  border-bottom: 6px #514649 solid !important;
}
.emperor--bx-6 {
  border-right: 6px #514649 solid !important;
  border-left: 6px #514649 solid !important;
}
.emperor--ba-7 {
  border: 7px #514649 solid !important;
}
.emperor--bt-7 {
  border-top: 7px #514649 solid !important;
}
.emperor--br-7 {
  border-right: 7px #514649 solid !important;
}
.emperor--bl-7 {
  border-left: 7px #514649 solid !important;
}
.emperor--bb-7 {
  border-bottom: 7px #514649 solid !important;
}
.emperor--by-7 {
  border-top: 7px #514649 solid !important;
  border-bottom: 7px #514649 solid !important;
}
.emperor--bx-7 {
  border-right: 7px #514649 solid !important;
  border-left: 7px #514649 solid !important;
}
.emperor--ba-8 {
  border: 8px #514649 solid !important;
}
.emperor--bt-8 {
  border-top: 8px #514649 solid !important;
}
.emperor--br-8 {
  border-right: 8px #514649 solid !important;
}
.emperor--bl-8 {
  border-left: 8px #514649 solid !important;
}
.emperor--bb-8 {
  border-bottom: 8px #514649 solid !important;
}
.emperor--by-8 {
  border-top: 8px #514649 solid !important;
  border-bottom: 8px #514649 solid !important;
}
.emperor--bx-8 {
  border-right: 8px #514649 solid !important;
  border-left: 8px #514649 solid !important;
}
.emperor--ba-9 {
  border: 9px #514649 solid !important;
}
.emperor--bt-9 {
  border-top: 9px #514649 solid !important;
}
.emperor--br-9 {
  border-right: 9px #514649 solid !important;
}
.emperor--bl-9 {
  border-left: 9px #514649 solid !important;
}
.emperor--bb-9 {
  border-bottom: 9px #514649 solid !important;
}
.emperor--by-9 {
  border-top: 9px #514649 solid !important;
  border-bottom: 9px #514649 solid !important;
}
.emperor--bx-9 {
  border-right: 9px #514649 solid !important;
  border-left: 9px #514649 solid !important;
}
.emperor--ba-10 {
  border: 10px #514649 solid !important;
}
.emperor--bt-10 {
  border-top: 10px #514649 solid !important;
}
.emperor--br-10 {
  border-right: 10px #514649 solid !important;
}
.emperor--bl-10 {
  border-left: 10px #514649 solid !important;
}
.emperor--bb-10 {
  border-bottom: 10px #514649 solid !important;
}
.emperor--by-10 {
  border-top: 10px #514649 solid !important;
  border-bottom: 10px #514649 solid !important;
}
.emperor--bx-10 {
  border-right: 10px #514649 solid !important;
  border-left: 10px #514649 solid !important;
}
.emperor--ba-11 {
  border: 11px #514649 solid !important;
}
.emperor--bt-11 {
  border-top: 11px #514649 solid !important;
}
.emperor--br-11 {
  border-right: 11px #514649 solid !important;
}
.emperor--bl-11 {
  border-left: 11px #514649 solid !important;
}
.emperor--bb-11 {
  border-bottom: 11px #514649 solid !important;
}
.emperor--by-11 {
  border-top: 11px #514649 solid !important;
  border-bottom: 11px #514649 solid !important;
}
.emperor--bx-11 {
  border-right: 11px #514649 solid !important;
  border-left: 11px #514649 solid !important;
}
.emperor--ba-12 {
  border: 12px #514649 solid !important;
}
.emperor--bt-12 {
  border-top: 12px #514649 solid !important;
}
.emperor--br-12 {
  border-right: 12px #514649 solid !important;
}
.emperor--bl-12 {
  border-left: 12px #514649 solid !important;
}
.emperor--bb-12 {
  border-bottom: 12px #514649 solid !important;
}
.emperor--by-12 {
  border-top: 12px #514649 solid !important;
  border-bottom: 12px #514649 solid !important;
}
.emperor--bx-12 {
  border-right: 12px #514649 solid !important;
  border-left: 12px #514649 solid !important;
}
.emperor--ba-13 {
  border: 13px #514649 solid !important;
}
.emperor--bt-13 {
  border-top: 13px #514649 solid !important;
}
.emperor--br-13 {
  border-right: 13px #514649 solid !important;
}
.emperor--bl-13 {
  border-left: 13px #514649 solid !important;
}
.emperor--bb-13 {
  border-bottom: 13px #514649 solid !important;
}
.emperor--by-13 {
  border-top: 13px #514649 solid !important;
  border-bottom: 13px #514649 solid !important;
}
.emperor--bx-13 {
  border-right: 13px #514649 solid !important;
  border-left: 13px #514649 solid !important;
}
.emperor--ba-14 {
  border: 14px #514649 solid !important;
}
.emperor--bt-14 {
  border-top: 14px #514649 solid !important;
}
.emperor--br-14 {
  border-right: 14px #514649 solid !important;
}
.emperor--bl-14 {
  border-left: 14px #514649 solid !important;
}
.emperor--bb-14 {
  border-bottom: 14px #514649 solid !important;
}
.emperor--by-14 {
  border-top: 14px #514649 solid !important;
  border-bottom: 14px #514649 solid !important;
}
.emperor--bx-14 {
  border-right: 14px #514649 solid !important;
  border-left: 14px #514649 solid !important;
}
.emperor--ba-15 {
  border: 15px #514649 solid !important;
}
.emperor--bt-15 {
  border-top: 15px #514649 solid !important;
}
.emperor--br-15 {
  border-right: 15px #514649 solid !important;
}
.emperor--bl-15 {
  border-left: 15px #514649 solid !important;
}
.emperor--bb-15 {
  border-bottom: 15px #514649 solid !important;
}
.emperor--by-15 {
  border-top: 15px #514649 solid !important;
  border-bottom: 15px #514649 solid !important;
}
.emperor--bx-15 {
  border-right: 15px #514649 solid !important;
  border-left: 15px #514649 solid !important;
}
.emperor--ba-16 {
  border: 16px #514649 solid !important;
}
.emperor--bt-16 {
  border-top: 16px #514649 solid !important;
}
.emperor--br-16 {
  border-right: 16px #514649 solid !important;
}
.emperor--bl-16 {
  border-left: 16px #514649 solid !important;
}
.emperor--bb-16 {
  border-bottom: 16px #514649 solid !important;
}
.emperor--by-16 {
  border-top: 16px #514649 solid !important;
  border-bottom: 16px #514649 solid !important;
}
.emperor--bx-16 {
  border-right: 16px #514649 solid !important;
  border-left: 16px #514649 solid !important;
}
.emperor--ba-17 {
  border: 17px #514649 solid !important;
}
.emperor--bt-17 {
  border-top: 17px #514649 solid !important;
}
.emperor--br-17 {
  border-right: 17px #514649 solid !important;
}
.emperor--bl-17 {
  border-left: 17px #514649 solid !important;
}
.emperor--bb-17 {
  border-bottom: 17px #514649 solid !important;
}
.emperor--by-17 {
  border-top: 17px #514649 solid !important;
  border-bottom: 17px #514649 solid !important;
}
.emperor--bx-17 {
  border-right: 17px #514649 solid !important;
  border-left: 17px #514649 solid !important;
}
.emperor--ba-18 {
  border: 18px #514649 solid !important;
}
.emperor--bt-18 {
  border-top: 18px #514649 solid !important;
}
.emperor--br-18 {
  border-right: 18px #514649 solid !important;
}
.emperor--bl-18 {
  border-left: 18px #514649 solid !important;
}
.emperor--bb-18 {
  border-bottom: 18px #514649 solid !important;
}
.emperor--by-18 {
  border-top: 18px #514649 solid !important;
  border-bottom: 18px #514649 solid !important;
}
.emperor--bx-18 {
  border-right: 18px #514649 solid !important;
  border-left: 18px #514649 solid !important;
}
.emperor--ba-19 {
  border: 19px #514649 solid !important;
}
.emperor--bt-19 {
  border-top: 19px #514649 solid !important;
}
.emperor--br-19 {
  border-right: 19px #514649 solid !important;
}
.emperor--bl-19 {
  border-left: 19px #514649 solid !important;
}
.emperor--bb-19 {
  border-bottom: 19px #514649 solid !important;
}
.emperor--by-19 {
  border-top: 19px #514649 solid !important;
  border-bottom: 19px #514649 solid !important;
}
.emperor--bx-19 {
  border-right: 19px #514649 solid !important;
  border-left: 19px #514649 solid !important;
}
.emperor--ba-20 {
  border: 20px #514649 solid !important;
}
.emperor--bt-20 {
  border-top: 20px #514649 solid !important;
}
.emperor--br-20 {
  border-right: 20px #514649 solid !important;
}
.emperor--bl-20 {
  border-left: 20px #514649 solid !important;
}
.emperor--bb-20 {
  border-bottom: 20px #514649 solid !important;
}
.emperor--by-20 {
  border-top: 20px #514649 solid !important;
  border-bottom: 20px #514649 solid !important;
}
.emperor--bx-20 {
  border-right: 20px #514649 solid !important;
  border-left: 20px #514649 solid !important;
}
.emperor--ba-21 {
  border: 21px #514649 solid !important;
}
.emperor--bt-21 {
  border-top: 21px #514649 solid !important;
}
.emperor--br-21 {
  border-right: 21px #514649 solid !important;
}
.emperor--bl-21 {
  border-left: 21px #514649 solid !important;
}
.emperor--bb-21 {
  border-bottom: 21px #514649 solid !important;
}
.emperor--by-21 {
  border-top: 21px #514649 solid !important;
  border-bottom: 21px #514649 solid !important;
}
.emperor--bx-21 {
  border-right: 21px #514649 solid !important;
  border-left: 21px #514649 solid !important;
}
.emperor--ba-22 {
  border: 22px #514649 solid !important;
}
.emperor--bt-22 {
  border-top: 22px #514649 solid !important;
}
.emperor--br-22 {
  border-right: 22px #514649 solid !important;
}
.emperor--bl-22 {
  border-left: 22px #514649 solid !important;
}
.emperor--bb-22 {
  border-bottom: 22px #514649 solid !important;
}
.emperor--by-22 {
  border-top: 22px #514649 solid !important;
  border-bottom: 22px #514649 solid !important;
}
.emperor--bx-22 {
  border-right: 22px #514649 solid !important;
  border-left: 22px #514649 solid !important;
}
.emperor--ba-23 {
  border: 23px #514649 solid !important;
}
.emperor--bt-23 {
  border-top: 23px #514649 solid !important;
}
.emperor--br-23 {
  border-right: 23px #514649 solid !important;
}
.emperor--bl-23 {
  border-left: 23px #514649 solid !important;
}
.emperor--bb-23 {
  border-bottom: 23px #514649 solid !important;
}
.emperor--by-23 {
  border-top: 23px #514649 solid !important;
  border-bottom: 23px #514649 solid !important;
}
.emperor--bx-23 {
  border-right: 23px #514649 solid !important;
  border-left: 23px #514649 solid !important;
}
.emperor--ba-24 {
  border: 24px #514649 solid !important;
}
.emperor--bt-24 {
  border-top: 24px #514649 solid !important;
}
.emperor--br-24 {
  border-right: 24px #514649 solid !important;
}
.emperor--bl-24 {
  border-left: 24px #514649 solid !important;
}
.emperor--bb-24 {
  border-bottom: 24px #514649 solid !important;
}
.emperor--by-24 {
  border-top: 24px #514649 solid !important;
  border-bottom: 24px #514649 solid !important;
}
.emperor--bx-24 {
  border-right: 24px #514649 solid !important;
  border-left: 24px #514649 solid !important;
}
.emperor--ba-25 {
  border: 25px #514649 solid !important;
}
.emperor--bt-25 {
  border-top: 25px #514649 solid !important;
}
.emperor--br-25 {
  border-right: 25px #514649 solid !important;
}
.emperor--bl-25 {
  border-left: 25px #514649 solid !important;
}
.emperor--bb-25 {
  border-bottom: 25px #514649 solid !important;
}
.emperor--by-25 {
  border-top: 25px #514649 solid !important;
  border-bottom: 25px #514649 solid !important;
}
.emperor--bx-25 {
  border-right: 25px #514649 solid !important;
  border-left: 25px #514649 solid !important;
}
.emperor--ba-26 {
  border: 26px #514649 solid !important;
}
.emperor--bt-26 {
  border-top: 26px #514649 solid !important;
}
.emperor--br-26 {
  border-right: 26px #514649 solid !important;
}
.emperor--bl-26 {
  border-left: 26px #514649 solid !important;
}
.emperor--bb-26 {
  border-bottom: 26px #514649 solid !important;
}
.emperor--by-26 {
  border-top: 26px #514649 solid !important;
  border-bottom: 26px #514649 solid !important;
}
.emperor--bx-26 {
  border-right: 26px #514649 solid !important;
  border-left: 26px #514649 solid !important;
}
.emperor--ba-27 {
  border: 27px #514649 solid !important;
}
.emperor--bt-27 {
  border-top: 27px #514649 solid !important;
}
.emperor--br-27 {
  border-right: 27px #514649 solid !important;
}
.emperor--bl-27 {
  border-left: 27px #514649 solid !important;
}
.emperor--bb-27 {
  border-bottom: 27px #514649 solid !important;
}
.emperor--by-27 {
  border-top: 27px #514649 solid !important;
  border-bottom: 27px #514649 solid !important;
}
.emperor--bx-27 {
  border-right: 27px #514649 solid !important;
  border-left: 27px #514649 solid !important;
}
.emperor--ba-28 {
  border: 28px #514649 solid !important;
}
.emperor--bt-28 {
  border-top: 28px #514649 solid !important;
}
.emperor--br-28 {
  border-right: 28px #514649 solid !important;
}
.emperor--bl-28 {
  border-left: 28px #514649 solid !important;
}
.emperor--bb-28 {
  border-bottom: 28px #514649 solid !important;
}
.emperor--by-28 {
  border-top: 28px #514649 solid !important;
  border-bottom: 28px #514649 solid !important;
}
.emperor--bx-28 {
  border-right: 28px #514649 solid !important;
  border-left: 28px #514649 solid !important;
}
.emperor--ba-29 {
  border: 29px #514649 solid !important;
}
.emperor--bt-29 {
  border-top: 29px #514649 solid !important;
}
.emperor--br-29 {
  border-right: 29px #514649 solid !important;
}
.emperor--bl-29 {
  border-left: 29px #514649 solid !important;
}
.emperor--bb-29 {
  border-bottom: 29px #514649 solid !important;
}
.emperor--by-29 {
  border-top: 29px #514649 solid !important;
  border-bottom: 29px #514649 solid !important;
}
.emperor--bx-29 {
  border-right: 29px #514649 solid !important;
  border-left: 29px #514649 solid !important;
}
.emperor--ba-30 {
  border: 30px #514649 solid !important;
}
.emperor--bt-30 {
  border-top: 30px #514649 solid !important;
}
.emperor--br-30 {
  border-right: 30px #514649 solid !important;
}
.emperor--bl-30 {
  border-left: 30px #514649 solid !important;
}
.emperor--bb-30 {
  border-bottom: 30px #514649 solid !important;
}
.emperor--by-30 {
  border-top: 30px #514649 solid !important;
  border-bottom: 30px #514649 solid !important;
}
.emperor--bx-30 {
  border-right: 30px #514649 solid !important;
  border-left: 30px #514649 solid !important;
}
.emperor--ba-31 {
  border: 31px #514649 solid !important;
}
.emperor--bt-31 {
  border-top: 31px #514649 solid !important;
}
.emperor--br-31 {
  border-right: 31px #514649 solid !important;
}
.emperor--bl-31 {
  border-left: 31px #514649 solid !important;
}
.emperor--bb-31 {
  border-bottom: 31px #514649 solid !important;
}
.emperor--by-31 {
  border-top: 31px #514649 solid !important;
  border-bottom: 31px #514649 solid !important;
}
.emperor--bx-31 {
  border-right: 31px #514649 solid !important;
  border-left: 31px #514649 solid !important;
}
.emperor--ba-32 {
  border: 32px #514649 solid !important;
}
.emperor--bt-32 {
  border-top: 32px #514649 solid !important;
}
.emperor--br-32 {
  border-right: 32px #514649 solid !important;
}
.emperor--bl-32 {
  border-left: 32px #514649 solid !important;
}
.emperor--bb-32 {
  border-bottom: 32px #514649 solid !important;
}
.emperor--by-32 {
  border-top: 32px #514649 solid !important;
  border-bottom: 32px #514649 solid !important;
}
.emperor--bx-32 {
  border-right: 32px #514649 solid !important;
  border-left: 32px #514649 solid !important;
}
.emperor--ba-33 {
  border: 33px #514649 solid !important;
}
.emperor--bt-33 {
  border-top: 33px #514649 solid !important;
}
.emperor--br-33 {
  border-right: 33px #514649 solid !important;
}
.emperor--bl-33 {
  border-left: 33px #514649 solid !important;
}
.emperor--bb-33 {
  border-bottom: 33px #514649 solid !important;
}
.emperor--by-33 {
  border-top: 33px #514649 solid !important;
  border-bottom: 33px #514649 solid !important;
}
.emperor--bx-33 {
  border-right: 33px #514649 solid !important;
  border-left: 33px #514649 solid !important;
}
.emperor--ba-34 {
  border: 34px #514649 solid !important;
}
.emperor--bt-34 {
  border-top: 34px #514649 solid !important;
}
.emperor--br-34 {
  border-right: 34px #514649 solid !important;
}
.emperor--bl-34 {
  border-left: 34px #514649 solid !important;
}
.emperor--bb-34 {
  border-bottom: 34px #514649 solid !important;
}
.emperor--by-34 {
  border-top: 34px #514649 solid !important;
  border-bottom: 34px #514649 solid !important;
}
.emperor--bx-34 {
  border-right: 34px #514649 solid !important;
  border-left: 34px #514649 solid !important;
}
.emperor--ba-35 {
  border: 35px #514649 solid !important;
}
.emperor--bt-35 {
  border-top: 35px #514649 solid !important;
}
.emperor--br-35 {
  border-right: 35px #514649 solid !important;
}
.emperor--bl-35 {
  border-left: 35px #514649 solid !important;
}
.emperor--bb-35 {
  border-bottom: 35px #514649 solid !important;
}
.emperor--by-35 {
  border-top: 35px #514649 solid !important;
  border-bottom: 35px #514649 solid !important;
}
.emperor--bx-35 {
  border-right: 35px #514649 solid !important;
  border-left: 35px #514649 solid !important;
}
.emperor--ba-36 {
  border: 36px #514649 solid !important;
}
.emperor--bt-36 {
  border-top: 36px #514649 solid !important;
}
.emperor--br-36 {
  border-right: 36px #514649 solid !important;
}
.emperor--bl-36 {
  border-left: 36px #514649 solid !important;
}
.emperor--bb-36 {
  border-bottom: 36px #514649 solid !important;
}
.emperor--by-36 {
  border-top: 36px #514649 solid !important;
  border-bottom: 36px #514649 solid !important;
}
.emperor--bx-36 {
  border-right: 36px #514649 solid !important;
  border-left: 36px #514649 solid !important;
}
.emperor--ba-37 {
  border: 37px #514649 solid !important;
}
.emperor--bt-37 {
  border-top: 37px #514649 solid !important;
}
.emperor--br-37 {
  border-right: 37px #514649 solid !important;
}
.emperor--bl-37 {
  border-left: 37px #514649 solid !important;
}
.emperor--bb-37 {
  border-bottom: 37px #514649 solid !important;
}
.emperor--by-37 {
  border-top: 37px #514649 solid !important;
  border-bottom: 37px #514649 solid !important;
}
.emperor--bx-37 {
  border-right: 37px #514649 solid !important;
  border-left: 37px #514649 solid !important;
}
.emperor--ba-38 {
  border: 38px #514649 solid !important;
}
.emperor--bt-38 {
  border-top: 38px #514649 solid !important;
}
.emperor--br-38 {
  border-right: 38px #514649 solid !important;
}
.emperor--bl-38 {
  border-left: 38px #514649 solid !important;
}
.emperor--bb-38 {
  border-bottom: 38px #514649 solid !important;
}
.emperor--by-38 {
  border-top: 38px #514649 solid !important;
  border-bottom: 38px #514649 solid !important;
}
.emperor--bx-38 {
  border-right: 38px #514649 solid !important;
  border-left: 38px #514649 solid !important;
}
.emperor--ba-39 {
  border: 39px #514649 solid !important;
}
.emperor--bt-39 {
  border-top: 39px #514649 solid !important;
}
.emperor--br-39 {
  border-right: 39px #514649 solid !important;
}
.emperor--bl-39 {
  border-left: 39px #514649 solid !important;
}
.emperor--bb-39 {
  border-bottom: 39px #514649 solid !important;
}
.emperor--by-39 {
  border-top: 39px #514649 solid !important;
  border-bottom: 39px #514649 solid !important;
}
.emperor--bx-39 {
  border-right: 39px #514649 solid !important;
  border-left: 39px #514649 solid !important;
}
.emperor--ba-40 {
  border: 40px #514649 solid !important;
}
.emperor--bt-40 {
  border-top: 40px #514649 solid !important;
}
.emperor--br-40 {
  border-right: 40px #514649 solid !important;
}
.emperor--bl-40 {
  border-left: 40px #514649 solid !important;
}
.emperor--bb-40 {
  border-bottom: 40px #514649 solid !important;
}
.emperor--by-40 {
  border-top: 40px #514649 solid !important;
  border-bottom: 40px #514649 solid !important;
}
.emperor--bx-40 {
  border-right: 40px #514649 solid !important;
  border-left: 40px #514649 solid !important;
}
.emperor--ba-41 {
  border: 41px #514649 solid !important;
}
.emperor--bt-41 {
  border-top: 41px #514649 solid !important;
}
.emperor--br-41 {
  border-right: 41px #514649 solid !important;
}
.emperor--bl-41 {
  border-left: 41px #514649 solid !important;
}
.emperor--bb-41 {
  border-bottom: 41px #514649 solid !important;
}
.emperor--by-41 {
  border-top: 41px #514649 solid !important;
  border-bottom: 41px #514649 solid !important;
}
.emperor--bx-41 {
  border-right: 41px #514649 solid !important;
  border-left: 41px #514649 solid !important;
}
.emperor--ba-42 {
  border: 42px #514649 solid !important;
}
.emperor--bt-42 {
  border-top: 42px #514649 solid !important;
}
.emperor--br-42 {
  border-right: 42px #514649 solid !important;
}
.emperor--bl-42 {
  border-left: 42px #514649 solid !important;
}
.emperor--bb-42 {
  border-bottom: 42px #514649 solid !important;
}
.emperor--by-42 {
  border-top: 42px #514649 solid !important;
  border-bottom: 42px #514649 solid !important;
}
.emperor--bx-42 {
  border-right: 42px #514649 solid !important;
  border-left: 42px #514649 solid !important;
}
.emperor--ba-43 {
  border: 43px #514649 solid !important;
}
.emperor--bt-43 {
  border-top: 43px #514649 solid !important;
}
.emperor--br-43 {
  border-right: 43px #514649 solid !important;
}
.emperor--bl-43 {
  border-left: 43px #514649 solid !important;
}
.emperor--bb-43 {
  border-bottom: 43px #514649 solid !important;
}
.emperor--by-43 {
  border-top: 43px #514649 solid !important;
  border-bottom: 43px #514649 solid !important;
}
.emperor--bx-43 {
  border-right: 43px #514649 solid !important;
  border-left: 43px #514649 solid !important;
}
.emperor--ba-44 {
  border: 44px #514649 solid !important;
}
.emperor--bt-44 {
  border-top: 44px #514649 solid !important;
}
.emperor--br-44 {
  border-right: 44px #514649 solid !important;
}
.emperor--bl-44 {
  border-left: 44px #514649 solid !important;
}
.emperor--bb-44 {
  border-bottom: 44px #514649 solid !important;
}
.emperor--by-44 {
  border-top: 44px #514649 solid !important;
  border-bottom: 44px #514649 solid !important;
}
.emperor--bx-44 {
  border-right: 44px #514649 solid !important;
  border-left: 44px #514649 solid !important;
}
.emperor--ba-45 {
  border: 45px #514649 solid !important;
}
.emperor--bt-45 {
  border-top: 45px #514649 solid !important;
}
.emperor--br-45 {
  border-right: 45px #514649 solid !important;
}
.emperor--bl-45 {
  border-left: 45px #514649 solid !important;
}
.emperor--bb-45 {
  border-bottom: 45px #514649 solid !important;
}
.emperor--by-45 {
  border-top: 45px #514649 solid !important;
  border-bottom: 45px #514649 solid !important;
}
.emperor--bx-45 {
  border-right: 45px #514649 solid !important;
  border-left: 45px #514649 solid !important;
}
.emperor--ba-46 {
  border: 46px #514649 solid !important;
}
.emperor--bt-46 {
  border-top: 46px #514649 solid !important;
}
.emperor--br-46 {
  border-right: 46px #514649 solid !important;
}
.emperor--bl-46 {
  border-left: 46px #514649 solid !important;
}
.emperor--bb-46 {
  border-bottom: 46px #514649 solid !important;
}
.emperor--by-46 {
  border-top: 46px #514649 solid !important;
  border-bottom: 46px #514649 solid !important;
}
.emperor--bx-46 {
  border-right: 46px #514649 solid !important;
  border-left: 46px #514649 solid !important;
}
.emperor--ba-47 {
  border: 47px #514649 solid !important;
}
.emperor--bt-47 {
  border-top: 47px #514649 solid !important;
}
.emperor--br-47 {
  border-right: 47px #514649 solid !important;
}
.emperor--bl-47 {
  border-left: 47px #514649 solid !important;
}
.emperor--bb-47 {
  border-bottom: 47px #514649 solid !important;
}
.emperor--by-47 {
  border-top: 47px #514649 solid !important;
  border-bottom: 47px #514649 solid !important;
}
.emperor--bx-47 {
  border-right: 47px #514649 solid !important;
  border-left: 47px #514649 solid !important;
}
.emperor--ba-48 {
  border: 48px #514649 solid !important;
}
.emperor--bt-48 {
  border-top: 48px #514649 solid !important;
}
.emperor--br-48 {
  border-right: 48px #514649 solid !important;
}
.emperor--bl-48 {
  border-left: 48px #514649 solid !important;
}
.emperor--bb-48 {
  border-bottom: 48px #514649 solid !important;
}
.emperor--by-48 {
  border-top: 48px #514649 solid !important;
  border-bottom: 48px #514649 solid !important;
}
.emperor--bx-48 {
  border-right: 48px #514649 solid !important;
  border-left: 48px #514649 solid !important;
}
.emperor--ba-49 {
  border: 49px #514649 solid !important;
}
.emperor--bt-49 {
  border-top: 49px #514649 solid !important;
}
.emperor--br-49 {
  border-right: 49px #514649 solid !important;
}
.emperor--bl-49 {
  border-left: 49px #514649 solid !important;
}
.emperor--bb-49 {
  border-bottom: 49px #514649 solid !important;
}
.emperor--by-49 {
  border-top: 49px #514649 solid !important;
  border-bottom: 49px #514649 solid !important;
}
.emperor--bx-49 {
  border-right: 49px #514649 solid !important;
  border-left: 49px #514649 solid !important;
}
.emperor--ba-50 {
  border: 50px #514649 solid !important;
}
.emperor--bt-50 {
  border-top: 50px #514649 solid !important;
}
.emperor--br-50 {
  border-right: 50px #514649 solid !important;
}
.emperor--bl-50 {
  border-left: 50px #514649 solid !important;
}
.emperor--bb-50 {
  border-bottom: 50px #514649 solid !important;
}
.emperor--by-50 {
  border-top: 50px #514649 solid !important;
  border-bottom: 50px #514649 solid !important;
}
.emperor--bx-50 {
  border-right: 50px #514649 solid !important;
  border-left: 50px #514649 solid !important;
}
.emperor--ba-51 {
  border: 51px #514649 solid !important;
}
.emperor--bt-51 {
  border-top: 51px #514649 solid !important;
}
.emperor--br-51 {
  border-right: 51px #514649 solid !important;
}
.emperor--bl-51 {
  border-left: 51px #514649 solid !important;
}
.emperor--bb-51 {
  border-bottom: 51px #514649 solid !important;
}
.emperor--by-51 {
  border-top: 51px #514649 solid !important;
  border-bottom: 51px #514649 solid !important;
}
.emperor--bx-51 {
  border-right: 51px #514649 solid !important;
  border-left: 51px #514649 solid !important;
}
.emperor--ba-52 {
  border: 52px #514649 solid !important;
}
.emperor--bt-52 {
  border-top: 52px #514649 solid !important;
}
.emperor--br-52 {
  border-right: 52px #514649 solid !important;
}
.emperor--bl-52 {
  border-left: 52px #514649 solid !important;
}
.emperor--bb-52 {
  border-bottom: 52px #514649 solid !important;
}
.emperor--by-52 {
  border-top: 52px #514649 solid !important;
  border-bottom: 52px #514649 solid !important;
}
.emperor--bx-52 {
  border-right: 52px #514649 solid !important;
  border-left: 52px #514649 solid !important;
}
.emperor--ba-53 {
  border: 53px #514649 solid !important;
}
.emperor--bt-53 {
  border-top: 53px #514649 solid !important;
}
.emperor--br-53 {
  border-right: 53px #514649 solid !important;
}
.emperor--bl-53 {
  border-left: 53px #514649 solid !important;
}
.emperor--bb-53 {
  border-bottom: 53px #514649 solid !important;
}
.emperor--by-53 {
  border-top: 53px #514649 solid !important;
  border-bottom: 53px #514649 solid !important;
}
.emperor--bx-53 {
  border-right: 53px #514649 solid !important;
  border-left: 53px #514649 solid !important;
}
.emperor--ba-54 {
  border: 54px #514649 solid !important;
}
.emperor--bt-54 {
  border-top: 54px #514649 solid !important;
}
.emperor--br-54 {
  border-right: 54px #514649 solid !important;
}
.emperor--bl-54 {
  border-left: 54px #514649 solid !important;
}
.emperor--bb-54 {
  border-bottom: 54px #514649 solid !important;
}
.emperor--by-54 {
  border-top: 54px #514649 solid !important;
  border-bottom: 54px #514649 solid !important;
}
.emperor--bx-54 {
  border-right: 54px #514649 solid !important;
  border-left: 54px #514649 solid !important;
}
.emperor--ba-55 {
  border: 55px #514649 solid !important;
}
.emperor--bt-55 {
  border-top: 55px #514649 solid !important;
}
.emperor--br-55 {
  border-right: 55px #514649 solid !important;
}
.emperor--bl-55 {
  border-left: 55px #514649 solid !important;
}
.emperor--bb-55 {
  border-bottom: 55px #514649 solid !important;
}
.emperor--by-55 {
  border-top: 55px #514649 solid !important;
  border-bottom: 55px #514649 solid !important;
}
.emperor--bx-55 {
  border-right: 55px #514649 solid !important;
  border-left: 55px #514649 solid !important;
}
.emperor--ba-56 {
  border: 56px #514649 solid !important;
}
.emperor--bt-56 {
  border-top: 56px #514649 solid !important;
}
.emperor--br-56 {
  border-right: 56px #514649 solid !important;
}
.emperor--bl-56 {
  border-left: 56px #514649 solid !important;
}
.emperor--bb-56 {
  border-bottom: 56px #514649 solid !important;
}
.emperor--by-56 {
  border-top: 56px #514649 solid !important;
  border-bottom: 56px #514649 solid !important;
}
.emperor--bx-56 {
  border-right: 56px #514649 solid !important;
  border-left: 56px #514649 solid !important;
}
.emperor--ba-57 {
  border: 57px #514649 solid !important;
}
.emperor--bt-57 {
  border-top: 57px #514649 solid !important;
}
.emperor--br-57 {
  border-right: 57px #514649 solid !important;
}
.emperor--bl-57 {
  border-left: 57px #514649 solid !important;
}
.emperor--bb-57 {
  border-bottom: 57px #514649 solid !important;
}
.emperor--by-57 {
  border-top: 57px #514649 solid !important;
  border-bottom: 57px #514649 solid !important;
}
.emperor--bx-57 {
  border-right: 57px #514649 solid !important;
  border-left: 57px #514649 solid !important;
}
.emperor--ba-58 {
  border: 58px #514649 solid !important;
}
.emperor--bt-58 {
  border-top: 58px #514649 solid !important;
}
.emperor--br-58 {
  border-right: 58px #514649 solid !important;
}
.emperor--bl-58 {
  border-left: 58px #514649 solid !important;
}
.emperor--bb-58 {
  border-bottom: 58px #514649 solid !important;
}
.emperor--by-58 {
  border-top: 58px #514649 solid !important;
  border-bottom: 58px #514649 solid !important;
}
.emperor--bx-58 {
  border-right: 58px #514649 solid !important;
  border-left: 58px #514649 solid !important;
}
.emperor--ba-59 {
  border: 59px #514649 solid !important;
}
.emperor--bt-59 {
  border-top: 59px #514649 solid !important;
}
.emperor--br-59 {
  border-right: 59px #514649 solid !important;
}
.emperor--bl-59 {
  border-left: 59px #514649 solid !important;
}
.emperor--bb-59 {
  border-bottom: 59px #514649 solid !important;
}
.emperor--by-59 {
  border-top: 59px #514649 solid !important;
  border-bottom: 59px #514649 solid !important;
}
.emperor--bx-59 {
  border-right: 59px #514649 solid !important;
  border-left: 59px #514649 solid !important;
}
.emperor--ba-60 {
  border: 60px #514649 solid !important;
}
.emperor--bt-60 {
  border-top: 60px #514649 solid !important;
}
.emperor--br-60 {
  border-right: 60px #514649 solid !important;
}
.emperor--bl-60 {
  border-left: 60px #514649 solid !important;
}
.emperor--bb-60 {
  border-bottom: 60px #514649 solid !important;
}
.emperor--by-60 {
  border-top: 60px #514649 solid !important;
  border-bottom: 60px #514649 solid !important;
}
.emperor--bx-60 {
  border-right: 60px #514649 solid !important;
  border-left: 60px #514649 solid !important;
}
.emperor--ba-61 {
  border: 61px #514649 solid !important;
}
.emperor--bt-61 {
  border-top: 61px #514649 solid !important;
}
.emperor--br-61 {
  border-right: 61px #514649 solid !important;
}
.emperor--bl-61 {
  border-left: 61px #514649 solid !important;
}
.emperor--bb-61 {
  border-bottom: 61px #514649 solid !important;
}
.emperor--by-61 {
  border-top: 61px #514649 solid !important;
  border-bottom: 61px #514649 solid !important;
}
.emperor--bx-61 {
  border-right: 61px #514649 solid !important;
  border-left: 61px #514649 solid !important;
}
.emperor--ba-62 {
  border: 62px #514649 solid !important;
}
.emperor--bt-62 {
  border-top: 62px #514649 solid !important;
}
.emperor--br-62 {
  border-right: 62px #514649 solid !important;
}
.emperor--bl-62 {
  border-left: 62px #514649 solid !important;
}
.emperor--bb-62 {
  border-bottom: 62px #514649 solid !important;
}
.emperor--by-62 {
  border-top: 62px #514649 solid !important;
  border-bottom: 62px #514649 solid !important;
}
.emperor--bx-62 {
  border-right: 62px #514649 solid !important;
  border-left: 62px #514649 solid !important;
}
.emperor--ba-63 {
  border: 63px #514649 solid !important;
}
.emperor--bt-63 {
  border-top: 63px #514649 solid !important;
}
.emperor--br-63 {
  border-right: 63px #514649 solid !important;
}
.emperor--bl-63 {
  border-left: 63px #514649 solid !important;
}
.emperor--bb-63 {
  border-bottom: 63px #514649 solid !important;
}
.emperor--by-63 {
  border-top: 63px #514649 solid !important;
  border-bottom: 63px #514649 solid !important;
}
.emperor--bx-63 {
  border-right: 63px #514649 solid !important;
  border-left: 63px #514649 solid !important;
}
.emperor--ba-64 {
  border: 64px #514649 solid !important;
}
.emperor--bt-64 {
  border-top: 64px #514649 solid !important;
}
.emperor--br-64 {
  border-right: 64px #514649 solid !important;
}
.emperor--bl-64 {
  border-left: 64px #514649 solid !important;
}
.emperor--bb-64 {
  border-bottom: 64px #514649 solid !important;
}
.emperor--by-64 {
  border-top: 64px #514649 solid !important;
  border-bottom: 64px #514649 solid !important;
}
.emperor--bx-64 {
  border-right: 64px #514649 solid !important;
  border-left: 64px #514649 solid !important;
}
.emperor--ba-65 {
  border: 65px #514649 solid !important;
}
.emperor--bt-65 {
  border-top: 65px #514649 solid !important;
}
.emperor--br-65 {
  border-right: 65px #514649 solid !important;
}
.emperor--bl-65 {
  border-left: 65px #514649 solid !important;
}
.emperor--bb-65 {
  border-bottom: 65px #514649 solid !important;
}
.emperor--by-65 {
  border-top: 65px #514649 solid !important;
  border-bottom: 65px #514649 solid !important;
}
.emperor--bx-65 {
  border-right: 65px #514649 solid !important;
  border-left: 65px #514649 solid !important;
}
.emperor--ba-66 {
  border: 66px #514649 solid !important;
}
.emperor--bt-66 {
  border-top: 66px #514649 solid !important;
}
.emperor--br-66 {
  border-right: 66px #514649 solid !important;
}
.emperor--bl-66 {
  border-left: 66px #514649 solid !important;
}
.emperor--bb-66 {
  border-bottom: 66px #514649 solid !important;
}
.emperor--by-66 {
  border-top: 66px #514649 solid !important;
  border-bottom: 66px #514649 solid !important;
}
.emperor--bx-66 {
  border-right: 66px #514649 solid !important;
  border-left: 66px #514649 solid !important;
}
.emperor--ba-67 {
  border: 67px #514649 solid !important;
}
.emperor--bt-67 {
  border-top: 67px #514649 solid !important;
}
.emperor--br-67 {
  border-right: 67px #514649 solid !important;
}
.emperor--bl-67 {
  border-left: 67px #514649 solid !important;
}
.emperor--bb-67 {
  border-bottom: 67px #514649 solid !important;
}
.emperor--by-67 {
  border-top: 67px #514649 solid !important;
  border-bottom: 67px #514649 solid !important;
}
.emperor--bx-67 {
  border-right: 67px #514649 solid !important;
  border-left: 67px #514649 solid !important;
}
.emperor--ba-68 {
  border: 68px #514649 solid !important;
}
.emperor--bt-68 {
  border-top: 68px #514649 solid !important;
}
.emperor--br-68 {
  border-right: 68px #514649 solid !important;
}
.emperor--bl-68 {
  border-left: 68px #514649 solid !important;
}
.emperor--bb-68 {
  border-bottom: 68px #514649 solid !important;
}
.emperor--by-68 {
  border-top: 68px #514649 solid !important;
  border-bottom: 68px #514649 solid !important;
}
.emperor--bx-68 {
  border-right: 68px #514649 solid !important;
  border-left: 68px #514649 solid !important;
}
.emperor--ba-69 {
  border: 69px #514649 solid !important;
}
.emperor--bt-69 {
  border-top: 69px #514649 solid !important;
}
.emperor--br-69 {
  border-right: 69px #514649 solid !important;
}
.emperor--bl-69 {
  border-left: 69px #514649 solid !important;
}
.emperor--bb-69 {
  border-bottom: 69px #514649 solid !important;
}
.emperor--by-69 {
  border-top: 69px #514649 solid !important;
  border-bottom: 69px #514649 solid !important;
}
.emperor--bx-69 {
  border-right: 69px #514649 solid !important;
  border-left: 69px #514649 solid !important;
}
.emperor--ba-70 {
  border: 70px #514649 solid !important;
}
.emperor--bt-70 {
  border-top: 70px #514649 solid !important;
}
.emperor--br-70 {
  border-right: 70px #514649 solid !important;
}
.emperor--bl-70 {
  border-left: 70px #514649 solid !important;
}
.emperor--bb-70 {
  border-bottom: 70px #514649 solid !important;
}
.emperor--by-70 {
  border-top: 70px #514649 solid !important;
  border-bottom: 70px #514649 solid !important;
}
.emperor--bx-70 {
  border-right: 70px #514649 solid !important;
  border-left: 70px #514649 solid !important;
}
.emperor--ba-71 {
  border: 71px #514649 solid !important;
}
.emperor--bt-71 {
  border-top: 71px #514649 solid !important;
}
.emperor--br-71 {
  border-right: 71px #514649 solid !important;
}
.emperor--bl-71 {
  border-left: 71px #514649 solid !important;
}
.emperor--bb-71 {
  border-bottom: 71px #514649 solid !important;
}
.emperor--by-71 {
  border-top: 71px #514649 solid !important;
  border-bottom: 71px #514649 solid !important;
}
.emperor--bx-71 {
  border-right: 71px #514649 solid !important;
  border-left: 71px #514649 solid !important;
}
.emperor--ba-72 {
  border: 72px #514649 solid !important;
}
.emperor--bt-72 {
  border-top: 72px #514649 solid !important;
}
.emperor--br-72 {
  border-right: 72px #514649 solid !important;
}
.emperor--bl-72 {
  border-left: 72px #514649 solid !important;
}
.emperor--bb-72 {
  border-bottom: 72px #514649 solid !important;
}
.emperor--by-72 {
  border-top: 72px #514649 solid !important;
  border-bottom: 72px #514649 solid !important;
}
.emperor--bx-72 {
  border-right: 72px #514649 solid !important;
  border-left: 72px #514649 solid !important;
}
.emperor--ba-73 {
  border: 73px #514649 solid !important;
}
.emperor--bt-73 {
  border-top: 73px #514649 solid !important;
}
.emperor--br-73 {
  border-right: 73px #514649 solid !important;
}
.emperor--bl-73 {
  border-left: 73px #514649 solid !important;
}
.emperor--bb-73 {
  border-bottom: 73px #514649 solid !important;
}
.emperor--by-73 {
  border-top: 73px #514649 solid !important;
  border-bottom: 73px #514649 solid !important;
}
.emperor--bx-73 {
  border-right: 73px #514649 solid !important;
  border-left: 73px #514649 solid !important;
}
.emperor--ba-74 {
  border: 74px #514649 solid !important;
}
.emperor--bt-74 {
  border-top: 74px #514649 solid !important;
}
.emperor--br-74 {
  border-right: 74px #514649 solid !important;
}
.emperor--bl-74 {
  border-left: 74px #514649 solid !important;
}
.emperor--bb-74 {
  border-bottom: 74px #514649 solid !important;
}
.emperor--by-74 {
  border-top: 74px #514649 solid !important;
  border-bottom: 74px #514649 solid !important;
}
.emperor--bx-74 {
  border-right: 74px #514649 solid !important;
  border-left: 74px #514649 solid !important;
}
.emperor--ba-75 {
  border: 75px #514649 solid !important;
}
.emperor--bt-75 {
  border-top: 75px #514649 solid !important;
}
.emperor--br-75 {
  border-right: 75px #514649 solid !important;
}
.emperor--bl-75 {
  border-left: 75px #514649 solid !important;
}
.emperor--bb-75 {
  border-bottom: 75px #514649 solid !important;
}
.emperor--by-75 {
  border-top: 75px #514649 solid !important;
  border-bottom: 75px #514649 solid !important;
}
.emperor--bx-75 {
  border-right: 75px #514649 solid !important;
  border-left: 75px #514649 solid !important;
}
.emperor--ba-76 {
  border: 76px #514649 solid !important;
}
.emperor--bt-76 {
  border-top: 76px #514649 solid !important;
}
.emperor--br-76 {
  border-right: 76px #514649 solid !important;
}
.emperor--bl-76 {
  border-left: 76px #514649 solid !important;
}
.emperor--bb-76 {
  border-bottom: 76px #514649 solid !important;
}
.emperor--by-76 {
  border-top: 76px #514649 solid !important;
  border-bottom: 76px #514649 solid !important;
}
.emperor--bx-76 {
  border-right: 76px #514649 solid !important;
  border-left: 76px #514649 solid !important;
}
.emperor--ba-77 {
  border: 77px #514649 solid !important;
}
.emperor--bt-77 {
  border-top: 77px #514649 solid !important;
}
.emperor--br-77 {
  border-right: 77px #514649 solid !important;
}
.emperor--bl-77 {
  border-left: 77px #514649 solid !important;
}
.emperor--bb-77 {
  border-bottom: 77px #514649 solid !important;
}
.emperor--by-77 {
  border-top: 77px #514649 solid !important;
  border-bottom: 77px #514649 solid !important;
}
.emperor--bx-77 {
  border-right: 77px #514649 solid !important;
  border-left: 77px #514649 solid !important;
}
.emperor--ba-78 {
  border: 78px #514649 solid !important;
}
.emperor--bt-78 {
  border-top: 78px #514649 solid !important;
}
.emperor--br-78 {
  border-right: 78px #514649 solid !important;
}
.emperor--bl-78 {
  border-left: 78px #514649 solid !important;
}
.emperor--bb-78 {
  border-bottom: 78px #514649 solid !important;
}
.emperor--by-78 {
  border-top: 78px #514649 solid !important;
  border-bottom: 78px #514649 solid !important;
}
.emperor--bx-78 {
  border-right: 78px #514649 solid !important;
  border-left: 78px #514649 solid !important;
}
.emperor--ba-79 {
  border: 79px #514649 solid !important;
}
.emperor--bt-79 {
  border-top: 79px #514649 solid !important;
}
.emperor--br-79 {
  border-right: 79px #514649 solid !important;
}
.emperor--bl-79 {
  border-left: 79px #514649 solid !important;
}
.emperor--bb-79 {
  border-bottom: 79px #514649 solid !important;
}
.emperor--by-79 {
  border-top: 79px #514649 solid !important;
  border-bottom: 79px #514649 solid !important;
}
.emperor--bx-79 {
  border-right: 79px #514649 solid !important;
  border-left: 79px #514649 solid !important;
}
.emperor--ba-80 {
  border: 80px #514649 solid !important;
}
.emperor--bt-80 {
  border-top: 80px #514649 solid !important;
}
.emperor--br-80 {
  border-right: 80px #514649 solid !important;
}
.emperor--bl-80 {
  border-left: 80px #514649 solid !important;
}
.emperor--bb-80 {
  border-bottom: 80px #514649 solid !important;
}
.emperor--by-80 {
  border-top: 80px #514649 solid !important;
  border-bottom: 80px #514649 solid !important;
}
.emperor--bx-80 {
  border-right: 80px #514649 solid !important;
  border-left: 80px #514649 solid !important;
}
.emperor--ba-81 {
  border: 81px #514649 solid !important;
}
.emperor--bt-81 {
  border-top: 81px #514649 solid !important;
}
.emperor--br-81 {
  border-right: 81px #514649 solid !important;
}
.emperor--bl-81 {
  border-left: 81px #514649 solid !important;
}
.emperor--bb-81 {
  border-bottom: 81px #514649 solid !important;
}
.emperor--by-81 {
  border-top: 81px #514649 solid !important;
  border-bottom: 81px #514649 solid !important;
}
.emperor--bx-81 {
  border-right: 81px #514649 solid !important;
  border-left: 81px #514649 solid !important;
}
.emperor--ba-82 {
  border: 82px #514649 solid !important;
}
.emperor--bt-82 {
  border-top: 82px #514649 solid !important;
}
.emperor--br-82 {
  border-right: 82px #514649 solid !important;
}
.emperor--bl-82 {
  border-left: 82px #514649 solid !important;
}
.emperor--bb-82 {
  border-bottom: 82px #514649 solid !important;
}
.emperor--by-82 {
  border-top: 82px #514649 solid !important;
  border-bottom: 82px #514649 solid !important;
}
.emperor--bx-82 {
  border-right: 82px #514649 solid !important;
  border-left: 82px #514649 solid !important;
}
.emperor--ba-83 {
  border: 83px #514649 solid !important;
}
.emperor--bt-83 {
  border-top: 83px #514649 solid !important;
}
.emperor--br-83 {
  border-right: 83px #514649 solid !important;
}
.emperor--bl-83 {
  border-left: 83px #514649 solid !important;
}
.emperor--bb-83 {
  border-bottom: 83px #514649 solid !important;
}
.emperor--by-83 {
  border-top: 83px #514649 solid !important;
  border-bottom: 83px #514649 solid !important;
}
.emperor--bx-83 {
  border-right: 83px #514649 solid !important;
  border-left: 83px #514649 solid !important;
}
.emperor--ba-84 {
  border: 84px #514649 solid !important;
}
.emperor--bt-84 {
  border-top: 84px #514649 solid !important;
}
.emperor--br-84 {
  border-right: 84px #514649 solid !important;
}
.emperor--bl-84 {
  border-left: 84px #514649 solid !important;
}
.emperor--bb-84 {
  border-bottom: 84px #514649 solid !important;
}
.emperor--by-84 {
  border-top: 84px #514649 solid !important;
  border-bottom: 84px #514649 solid !important;
}
.emperor--bx-84 {
  border-right: 84px #514649 solid !important;
  border-left: 84px #514649 solid !important;
}
.emperor--ba-85 {
  border: 85px #514649 solid !important;
}
.emperor--bt-85 {
  border-top: 85px #514649 solid !important;
}
.emperor--br-85 {
  border-right: 85px #514649 solid !important;
}
.emperor--bl-85 {
  border-left: 85px #514649 solid !important;
}
.emperor--bb-85 {
  border-bottom: 85px #514649 solid !important;
}
.emperor--by-85 {
  border-top: 85px #514649 solid !important;
  border-bottom: 85px #514649 solid !important;
}
.emperor--bx-85 {
  border-right: 85px #514649 solid !important;
  border-left: 85px #514649 solid !important;
}
.emperor--ba-86 {
  border: 86px #514649 solid !important;
}
.emperor--bt-86 {
  border-top: 86px #514649 solid !important;
}
.emperor--br-86 {
  border-right: 86px #514649 solid !important;
}
.emperor--bl-86 {
  border-left: 86px #514649 solid !important;
}
.emperor--bb-86 {
  border-bottom: 86px #514649 solid !important;
}
.emperor--by-86 {
  border-top: 86px #514649 solid !important;
  border-bottom: 86px #514649 solid !important;
}
.emperor--bx-86 {
  border-right: 86px #514649 solid !important;
  border-left: 86px #514649 solid !important;
}
.emperor--ba-87 {
  border: 87px #514649 solid !important;
}
.emperor--bt-87 {
  border-top: 87px #514649 solid !important;
}
.emperor--br-87 {
  border-right: 87px #514649 solid !important;
}
.emperor--bl-87 {
  border-left: 87px #514649 solid !important;
}
.emperor--bb-87 {
  border-bottom: 87px #514649 solid !important;
}
.emperor--by-87 {
  border-top: 87px #514649 solid !important;
  border-bottom: 87px #514649 solid !important;
}
.emperor--bx-87 {
  border-right: 87px #514649 solid !important;
  border-left: 87px #514649 solid !important;
}
.emperor--ba-88 {
  border: 88px #514649 solid !important;
}
.emperor--bt-88 {
  border-top: 88px #514649 solid !important;
}
.emperor--br-88 {
  border-right: 88px #514649 solid !important;
}
.emperor--bl-88 {
  border-left: 88px #514649 solid !important;
}
.emperor--bb-88 {
  border-bottom: 88px #514649 solid !important;
}
.emperor--by-88 {
  border-top: 88px #514649 solid !important;
  border-bottom: 88px #514649 solid !important;
}
.emperor--bx-88 {
  border-right: 88px #514649 solid !important;
  border-left: 88px #514649 solid !important;
}
.emperor--ba-89 {
  border: 89px #514649 solid !important;
}
.emperor--bt-89 {
  border-top: 89px #514649 solid !important;
}
.emperor--br-89 {
  border-right: 89px #514649 solid !important;
}
.emperor--bl-89 {
  border-left: 89px #514649 solid !important;
}
.emperor--bb-89 {
  border-bottom: 89px #514649 solid !important;
}
.emperor--by-89 {
  border-top: 89px #514649 solid !important;
  border-bottom: 89px #514649 solid !important;
}
.emperor--bx-89 {
  border-right: 89px #514649 solid !important;
  border-left: 89px #514649 solid !important;
}
.emperor--ba-90 {
  border: 90px #514649 solid !important;
}
.emperor--bt-90 {
  border-top: 90px #514649 solid !important;
}
.emperor--br-90 {
  border-right: 90px #514649 solid !important;
}
.emperor--bl-90 {
  border-left: 90px #514649 solid !important;
}
.emperor--bb-90 {
  border-bottom: 90px #514649 solid !important;
}
.emperor--by-90 {
  border-top: 90px #514649 solid !important;
  border-bottom: 90px #514649 solid !important;
}
.emperor--bx-90 {
  border-right: 90px #514649 solid !important;
  border-left: 90px #514649 solid !important;
}
.emperor--ba-91 {
  border: 91px #514649 solid !important;
}
.emperor--bt-91 {
  border-top: 91px #514649 solid !important;
}
.emperor--br-91 {
  border-right: 91px #514649 solid !important;
}
.emperor--bl-91 {
  border-left: 91px #514649 solid !important;
}
.emperor--bb-91 {
  border-bottom: 91px #514649 solid !important;
}
.emperor--by-91 {
  border-top: 91px #514649 solid !important;
  border-bottom: 91px #514649 solid !important;
}
.emperor--bx-91 {
  border-right: 91px #514649 solid !important;
  border-left: 91px #514649 solid !important;
}
.emperor--ba-92 {
  border: 92px #514649 solid !important;
}
.emperor--bt-92 {
  border-top: 92px #514649 solid !important;
}
.emperor--br-92 {
  border-right: 92px #514649 solid !important;
}
.emperor--bl-92 {
  border-left: 92px #514649 solid !important;
}
.emperor--bb-92 {
  border-bottom: 92px #514649 solid !important;
}
.emperor--by-92 {
  border-top: 92px #514649 solid !important;
  border-bottom: 92px #514649 solid !important;
}
.emperor--bx-92 {
  border-right: 92px #514649 solid !important;
  border-left: 92px #514649 solid !important;
}
.emperor--ba-93 {
  border: 93px #514649 solid !important;
}
.emperor--bt-93 {
  border-top: 93px #514649 solid !important;
}
.emperor--br-93 {
  border-right: 93px #514649 solid !important;
}
.emperor--bl-93 {
  border-left: 93px #514649 solid !important;
}
.emperor--bb-93 {
  border-bottom: 93px #514649 solid !important;
}
.emperor--by-93 {
  border-top: 93px #514649 solid !important;
  border-bottom: 93px #514649 solid !important;
}
.emperor--bx-93 {
  border-right: 93px #514649 solid !important;
  border-left: 93px #514649 solid !important;
}
.emperor--ba-94 {
  border: 94px #514649 solid !important;
}
.emperor--bt-94 {
  border-top: 94px #514649 solid !important;
}
.emperor--br-94 {
  border-right: 94px #514649 solid !important;
}
.emperor--bl-94 {
  border-left: 94px #514649 solid !important;
}
.emperor--bb-94 {
  border-bottom: 94px #514649 solid !important;
}
.emperor--by-94 {
  border-top: 94px #514649 solid !important;
  border-bottom: 94px #514649 solid !important;
}
.emperor--bx-94 {
  border-right: 94px #514649 solid !important;
  border-left: 94px #514649 solid !important;
}
.emperor--ba-95 {
  border: 95px #514649 solid !important;
}
.emperor--bt-95 {
  border-top: 95px #514649 solid !important;
}
.emperor--br-95 {
  border-right: 95px #514649 solid !important;
}
.emperor--bl-95 {
  border-left: 95px #514649 solid !important;
}
.emperor--bb-95 {
  border-bottom: 95px #514649 solid !important;
}
.emperor--by-95 {
  border-top: 95px #514649 solid !important;
  border-bottom: 95px #514649 solid !important;
}
.emperor--bx-95 {
  border-right: 95px #514649 solid !important;
  border-left: 95px #514649 solid !important;
}
.emperor--ba-96 {
  border: 96px #514649 solid !important;
}
.emperor--bt-96 {
  border-top: 96px #514649 solid !important;
}
.emperor--br-96 {
  border-right: 96px #514649 solid !important;
}
.emperor--bl-96 {
  border-left: 96px #514649 solid !important;
}
.emperor--bb-96 {
  border-bottom: 96px #514649 solid !important;
}
.emperor--by-96 {
  border-top: 96px #514649 solid !important;
  border-bottom: 96px #514649 solid !important;
}
.emperor--bx-96 {
  border-right: 96px #514649 solid !important;
  border-left: 96px #514649 solid !important;
}
.emperor--ba-97 {
  border: 97px #514649 solid !important;
}
.emperor--bt-97 {
  border-top: 97px #514649 solid !important;
}
.emperor--br-97 {
  border-right: 97px #514649 solid !important;
}
.emperor--bl-97 {
  border-left: 97px #514649 solid !important;
}
.emperor--bb-97 {
  border-bottom: 97px #514649 solid !important;
}
.emperor--by-97 {
  border-top: 97px #514649 solid !important;
  border-bottom: 97px #514649 solid !important;
}
.emperor--bx-97 {
  border-right: 97px #514649 solid !important;
  border-left: 97px #514649 solid !important;
}
.emperor--ba-98 {
  border: 98px #514649 solid !important;
}
.emperor--bt-98 {
  border-top: 98px #514649 solid !important;
}
.emperor--br-98 {
  border-right: 98px #514649 solid !important;
}
.emperor--bl-98 {
  border-left: 98px #514649 solid !important;
}
.emperor--bb-98 {
  border-bottom: 98px #514649 solid !important;
}
.emperor--by-98 {
  border-top: 98px #514649 solid !important;
  border-bottom: 98px #514649 solid !important;
}
.emperor--bx-98 {
  border-right: 98px #514649 solid !important;
  border-left: 98px #514649 solid !important;
}
.emperor--ba-99 {
  border: 99px #514649 solid !important;
}
.emperor--bt-99 {
  border-top: 99px #514649 solid !important;
}
.emperor--br-99 {
  border-right: 99px #514649 solid !important;
}
.emperor--bl-99 {
  border-left: 99px #514649 solid !important;
}
.emperor--bb-99 {
  border-bottom: 99px #514649 solid !important;
}
.emperor--by-99 {
  border-top: 99px #514649 solid !important;
  border-bottom: 99px #514649 solid !important;
}
.emperor--bx-99 {
  border-right: 99px #514649 solid !important;
  border-left: 99px #514649 solid !important;
}
.emperor--ba-100 {
  border: 100px #514649 solid !important;
}
.emperor--bt-100 {
  border-top: 100px #514649 solid !important;
}
.emperor--br-100 {
  border-right: 100px #514649 solid !important;
}
.emperor--bl-100 {
  border-left: 100px #514649 solid !important;
}
.emperor--bb-100 {
  border-bottom: 100px #514649 solid !important;
}
.emperor--by-100 {
  border-top: 100px #514649 solid !important;
  border-bottom: 100px #514649 solid !important;
}
.emperor--bx-100 {
  border-right: 100px #514649 solid !important;
  border-left: 100px #514649 solid !important;
}
.tundora--ba-1 {
  border: 1px #474747 solid !important;
}
.tundora--bt-1 {
  border-top: 1px #474747 solid !important;
}
.tundora--br-1 {
  border-right: 1px #474747 solid !important;
}
.tundora--bl-1 {
  border-left: 1px #474747 solid !important;
}
.tundora--bb-1 {
  border-bottom: 1px #474747 solid !important;
}
.tundora--by-1 {
  border-top: 1px #474747 solid !important;
  border-bottom: 1px #474747 solid !important;
}
.tundora--bx-1 {
  border-right: 1px #474747 solid !important;
  border-left: 1px #474747 solid !important;
}
.tundora--ba-2 {
  border: 2px #474747 solid !important;
}
.tundora--bt-2 {
  border-top: 2px #474747 solid !important;
}
.tundora--br-2 {
  border-right: 2px #474747 solid !important;
}
.tundora--bl-2 {
  border-left: 2px #474747 solid !important;
}
.tundora--bb-2 {
  border-bottom: 2px #474747 solid !important;
}
.tundora--by-2 {
  border-top: 2px #474747 solid !important;
  border-bottom: 2px #474747 solid !important;
}
.tundora--bx-2 {
  border-right: 2px #474747 solid !important;
  border-left: 2px #474747 solid !important;
}
.tundora--ba-3 {
  border: 3px #474747 solid !important;
}
.tundora--bt-3 {
  border-top: 3px #474747 solid !important;
}
.tundora--br-3 {
  border-right: 3px #474747 solid !important;
}
.tundora--bl-3 {
  border-left: 3px #474747 solid !important;
}
.tundora--bb-3 {
  border-bottom: 3px #474747 solid !important;
}
.tundora--by-3 {
  border-top: 3px #474747 solid !important;
  border-bottom: 3px #474747 solid !important;
}
.tundora--bx-3 {
  border-right: 3px #474747 solid !important;
  border-left: 3px #474747 solid !important;
}
.tundora--ba-4 {
  border: 4px #474747 solid !important;
}
.tundora--bt-4 {
  border-top: 4px #474747 solid !important;
}
.tundora--br-4 {
  border-right: 4px #474747 solid !important;
}
.tundora--bl-4 {
  border-left: 4px #474747 solid !important;
}
.tundora--bb-4 {
  border-bottom: 4px #474747 solid !important;
}
.tundora--by-4 {
  border-top: 4px #474747 solid !important;
  border-bottom: 4px #474747 solid !important;
}
.tundora--bx-4 {
  border-right: 4px #474747 solid !important;
  border-left: 4px #474747 solid !important;
}
.tundora--ba-5 {
  border: 5px #474747 solid !important;
}
.tundora--bt-5 {
  border-top: 5px #474747 solid !important;
}
.tundora--br-5 {
  border-right: 5px #474747 solid !important;
}
.tundora--bl-5 {
  border-left: 5px #474747 solid !important;
}
.tundora--bb-5 {
  border-bottom: 5px #474747 solid !important;
}
.tundora--by-5 {
  border-top: 5px #474747 solid !important;
  border-bottom: 5px #474747 solid !important;
}
.tundora--bx-5 {
  border-right: 5px #474747 solid !important;
  border-left: 5px #474747 solid !important;
}
.tundora--ba-6 {
  border: 6px #474747 solid !important;
}
.tundora--bt-6 {
  border-top: 6px #474747 solid !important;
}
.tundora--br-6 {
  border-right: 6px #474747 solid !important;
}
.tundora--bl-6 {
  border-left: 6px #474747 solid !important;
}
.tundora--bb-6 {
  border-bottom: 6px #474747 solid !important;
}
.tundora--by-6 {
  border-top: 6px #474747 solid !important;
  border-bottom: 6px #474747 solid !important;
}
.tundora--bx-6 {
  border-right: 6px #474747 solid !important;
  border-left: 6px #474747 solid !important;
}
.tundora--ba-7 {
  border: 7px #474747 solid !important;
}
.tundora--bt-7 {
  border-top: 7px #474747 solid !important;
}
.tundora--br-7 {
  border-right: 7px #474747 solid !important;
}
.tundora--bl-7 {
  border-left: 7px #474747 solid !important;
}
.tundora--bb-7 {
  border-bottom: 7px #474747 solid !important;
}
.tundora--by-7 {
  border-top: 7px #474747 solid !important;
  border-bottom: 7px #474747 solid !important;
}
.tundora--bx-7 {
  border-right: 7px #474747 solid !important;
  border-left: 7px #474747 solid !important;
}
.tundora--ba-8 {
  border: 8px #474747 solid !important;
}
.tundora--bt-8 {
  border-top: 8px #474747 solid !important;
}
.tundora--br-8 {
  border-right: 8px #474747 solid !important;
}
.tundora--bl-8 {
  border-left: 8px #474747 solid !important;
}
.tundora--bb-8 {
  border-bottom: 8px #474747 solid !important;
}
.tundora--by-8 {
  border-top: 8px #474747 solid !important;
  border-bottom: 8px #474747 solid !important;
}
.tundora--bx-8 {
  border-right: 8px #474747 solid !important;
  border-left: 8px #474747 solid !important;
}
.tundora--ba-9 {
  border: 9px #474747 solid !important;
}
.tundora--bt-9 {
  border-top: 9px #474747 solid !important;
}
.tundora--br-9 {
  border-right: 9px #474747 solid !important;
}
.tundora--bl-9 {
  border-left: 9px #474747 solid !important;
}
.tundora--bb-9 {
  border-bottom: 9px #474747 solid !important;
}
.tundora--by-9 {
  border-top: 9px #474747 solid !important;
  border-bottom: 9px #474747 solid !important;
}
.tundora--bx-9 {
  border-right: 9px #474747 solid !important;
  border-left: 9px #474747 solid !important;
}
.tundora--ba-10 {
  border: 10px #474747 solid !important;
}
.tundora--bt-10 {
  border-top: 10px #474747 solid !important;
}
.tundora--br-10 {
  border-right: 10px #474747 solid !important;
}
.tundora--bl-10 {
  border-left: 10px #474747 solid !important;
}
.tundora--bb-10 {
  border-bottom: 10px #474747 solid !important;
}
.tundora--by-10 {
  border-top: 10px #474747 solid !important;
  border-bottom: 10px #474747 solid !important;
}
.tundora--bx-10 {
  border-right: 10px #474747 solid !important;
  border-left: 10px #474747 solid !important;
}
.tundora--ba-11 {
  border: 11px #474747 solid !important;
}
.tundora--bt-11 {
  border-top: 11px #474747 solid !important;
}
.tundora--br-11 {
  border-right: 11px #474747 solid !important;
}
.tundora--bl-11 {
  border-left: 11px #474747 solid !important;
}
.tundora--bb-11 {
  border-bottom: 11px #474747 solid !important;
}
.tundora--by-11 {
  border-top: 11px #474747 solid !important;
  border-bottom: 11px #474747 solid !important;
}
.tundora--bx-11 {
  border-right: 11px #474747 solid !important;
  border-left: 11px #474747 solid !important;
}
.tundora--ba-12 {
  border: 12px #474747 solid !important;
}
.tundora--bt-12 {
  border-top: 12px #474747 solid !important;
}
.tundora--br-12 {
  border-right: 12px #474747 solid !important;
}
.tundora--bl-12 {
  border-left: 12px #474747 solid !important;
}
.tundora--bb-12 {
  border-bottom: 12px #474747 solid !important;
}
.tundora--by-12 {
  border-top: 12px #474747 solid !important;
  border-bottom: 12px #474747 solid !important;
}
.tundora--bx-12 {
  border-right: 12px #474747 solid !important;
  border-left: 12px #474747 solid !important;
}
.tundora--ba-13 {
  border: 13px #474747 solid !important;
}
.tundora--bt-13 {
  border-top: 13px #474747 solid !important;
}
.tundora--br-13 {
  border-right: 13px #474747 solid !important;
}
.tundora--bl-13 {
  border-left: 13px #474747 solid !important;
}
.tundora--bb-13 {
  border-bottom: 13px #474747 solid !important;
}
.tundora--by-13 {
  border-top: 13px #474747 solid !important;
  border-bottom: 13px #474747 solid !important;
}
.tundora--bx-13 {
  border-right: 13px #474747 solid !important;
  border-left: 13px #474747 solid !important;
}
.tundora--ba-14 {
  border: 14px #474747 solid !important;
}
.tundora--bt-14 {
  border-top: 14px #474747 solid !important;
}
.tundora--br-14 {
  border-right: 14px #474747 solid !important;
}
.tundora--bl-14 {
  border-left: 14px #474747 solid !important;
}
.tundora--bb-14 {
  border-bottom: 14px #474747 solid !important;
}
.tundora--by-14 {
  border-top: 14px #474747 solid !important;
  border-bottom: 14px #474747 solid !important;
}
.tundora--bx-14 {
  border-right: 14px #474747 solid !important;
  border-left: 14px #474747 solid !important;
}
.tundora--ba-15 {
  border: 15px #474747 solid !important;
}
.tundora--bt-15 {
  border-top: 15px #474747 solid !important;
}
.tundora--br-15 {
  border-right: 15px #474747 solid !important;
}
.tundora--bl-15 {
  border-left: 15px #474747 solid !important;
}
.tundora--bb-15 {
  border-bottom: 15px #474747 solid !important;
}
.tundora--by-15 {
  border-top: 15px #474747 solid !important;
  border-bottom: 15px #474747 solid !important;
}
.tundora--bx-15 {
  border-right: 15px #474747 solid !important;
  border-left: 15px #474747 solid !important;
}
.tundora--ba-16 {
  border: 16px #474747 solid !important;
}
.tundora--bt-16 {
  border-top: 16px #474747 solid !important;
}
.tundora--br-16 {
  border-right: 16px #474747 solid !important;
}
.tundora--bl-16 {
  border-left: 16px #474747 solid !important;
}
.tundora--bb-16 {
  border-bottom: 16px #474747 solid !important;
}
.tundora--by-16 {
  border-top: 16px #474747 solid !important;
  border-bottom: 16px #474747 solid !important;
}
.tundora--bx-16 {
  border-right: 16px #474747 solid !important;
  border-left: 16px #474747 solid !important;
}
.tundora--ba-17 {
  border: 17px #474747 solid !important;
}
.tundora--bt-17 {
  border-top: 17px #474747 solid !important;
}
.tundora--br-17 {
  border-right: 17px #474747 solid !important;
}
.tundora--bl-17 {
  border-left: 17px #474747 solid !important;
}
.tundora--bb-17 {
  border-bottom: 17px #474747 solid !important;
}
.tundora--by-17 {
  border-top: 17px #474747 solid !important;
  border-bottom: 17px #474747 solid !important;
}
.tundora--bx-17 {
  border-right: 17px #474747 solid !important;
  border-left: 17px #474747 solid !important;
}
.tundora--ba-18 {
  border: 18px #474747 solid !important;
}
.tundora--bt-18 {
  border-top: 18px #474747 solid !important;
}
.tundora--br-18 {
  border-right: 18px #474747 solid !important;
}
.tundora--bl-18 {
  border-left: 18px #474747 solid !important;
}
.tundora--bb-18 {
  border-bottom: 18px #474747 solid !important;
}
.tundora--by-18 {
  border-top: 18px #474747 solid !important;
  border-bottom: 18px #474747 solid !important;
}
.tundora--bx-18 {
  border-right: 18px #474747 solid !important;
  border-left: 18px #474747 solid !important;
}
.tundora--ba-19 {
  border: 19px #474747 solid !important;
}
.tundora--bt-19 {
  border-top: 19px #474747 solid !important;
}
.tundora--br-19 {
  border-right: 19px #474747 solid !important;
}
.tundora--bl-19 {
  border-left: 19px #474747 solid !important;
}
.tundora--bb-19 {
  border-bottom: 19px #474747 solid !important;
}
.tundora--by-19 {
  border-top: 19px #474747 solid !important;
  border-bottom: 19px #474747 solid !important;
}
.tundora--bx-19 {
  border-right: 19px #474747 solid !important;
  border-left: 19px #474747 solid !important;
}
.tundora--ba-20 {
  border: 20px #474747 solid !important;
}
.tundora--bt-20 {
  border-top: 20px #474747 solid !important;
}
.tundora--br-20 {
  border-right: 20px #474747 solid !important;
}
.tundora--bl-20 {
  border-left: 20px #474747 solid !important;
}
.tundora--bb-20 {
  border-bottom: 20px #474747 solid !important;
}
.tundora--by-20 {
  border-top: 20px #474747 solid !important;
  border-bottom: 20px #474747 solid !important;
}
.tundora--bx-20 {
  border-right: 20px #474747 solid !important;
  border-left: 20px #474747 solid !important;
}
.tundora--ba-21 {
  border: 21px #474747 solid !important;
}
.tundora--bt-21 {
  border-top: 21px #474747 solid !important;
}
.tundora--br-21 {
  border-right: 21px #474747 solid !important;
}
.tundora--bl-21 {
  border-left: 21px #474747 solid !important;
}
.tundora--bb-21 {
  border-bottom: 21px #474747 solid !important;
}
.tundora--by-21 {
  border-top: 21px #474747 solid !important;
  border-bottom: 21px #474747 solid !important;
}
.tundora--bx-21 {
  border-right: 21px #474747 solid !important;
  border-left: 21px #474747 solid !important;
}
.tundora--ba-22 {
  border: 22px #474747 solid !important;
}
.tundora--bt-22 {
  border-top: 22px #474747 solid !important;
}
.tundora--br-22 {
  border-right: 22px #474747 solid !important;
}
.tundora--bl-22 {
  border-left: 22px #474747 solid !important;
}
.tundora--bb-22 {
  border-bottom: 22px #474747 solid !important;
}
.tundora--by-22 {
  border-top: 22px #474747 solid !important;
  border-bottom: 22px #474747 solid !important;
}
.tundora--bx-22 {
  border-right: 22px #474747 solid !important;
  border-left: 22px #474747 solid !important;
}
.tundora--ba-23 {
  border: 23px #474747 solid !important;
}
.tundora--bt-23 {
  border-top: 23px #474747 solid !important;
}
.tundora--br-23 {
  border-right: 23px #474747 solid !important;
}
.tundora--bl-23 {
  border-left: 23px #474747 solid !important;
}
.tundora--bb-23 {
  border-bottom: 23px #474747 solid !important;
}
.tundora--by-23 {
  border-top: 23px #474747 solid !important;
  border-bottom: 23px #474747 solid !important;
}
.tundora--bx-23 {
  border-right: 23px #474747 solid !important;
  border-left: 23px #474747 solid !important;
}
.tundora--ba-24 {
  border: 24px #474747 solid !important;
}
.tundora--bt-24 {
  border-top: 24px #474747 solid !important;
}
.tundora--br-24 {
  border-right: 24px #474747 solid !important;
}
.tundora--bl-24 {
  border-left: 24px #474747 solid !important;
}
.tundora--bb-24 {
  border-bottom: 24px #474747 solid !important;
}
.tundora--by-24 {
  border-top: 24px #474747 solid !important;
  border-bottom: 24px #474747 solid !important;
}
.tundora--bx-24 {
  border-right: 24px #474747 solid !important;
  border-left: 24px #474747 solid !important;
}
.tundora--ba-25 {
  border: 25px #474747 solid !important;
}
.tundora--bt-25 {
  border-top: 25px #474747 solid !important;
}
.tundora--br-25 {
  border-right: 25px #474747 solid !important;
}
.tundora--bl-25 {
  border-left: 25px #474747 solid !important;
}
.tundora--bb-25 {
  border-bottom: 25px #474747 solid !important;
}
.tundora--by-25 {
  border-top: 25px #474747 solid !important;
  border-bottom: 25px #474747 solid !important;
}
.tundora--bx-25 {
  border-right: 25px #474747 solid !important;
  border-left: 25px #474747 solid !important;
}
.tundora--ba-26 {
  border: 26px #474747 solid !important;
}
.tundora--bt-26 {
  border-top: 26px #474747 solid !important;
}
.tundora--br-26 {
  border-right: 26px #474747 solid !important;
}
.tundora--bl-26 {
  border-left: 26px #474747 solid !important;
}
.tundora--bb-26 {
  border-bottom: 26px #474747 solid !important;
}
.tundora--by-26 {
  border-top: 26px #474747 solid !important;
  border-bottom: 26px #474747 solid !important;
}
.tundora--bx-26 {
  border-right: 26px #474747 solid !important;
  border-left: 26px #474747 solid !important;
}
.tundora--ba-27 {
  border: 27px #474747 solid !important;
}
.tundora--bt-27 {
  border-top: 27px #474747 solid !important;
}
.tundora--br-27 {
  border-right: 27px #474747 solid !important;
}
.tundora--bl-27 {
  border-left: 27px #474747 solid !important;
}
.tundora--bb-27 {
  border-bottom: 27px #474747 solid !important;
}
.tundora--by-27 {
  border-top: 27px #474747 solid !important;
  border-bottom: 27px #474747 solid !important;
}
.tundora--bx-27 {
  border-right: 27px #474747 solid !important;
  border-left: 27px #474747 solid !important;
}
.tundora--ba-28 {
  border: 28px #474747 solid !important;
}
.tundora--bt-28 {
  border-top: 28px #474747 solid !important;
}
.tundora--br-28 {
  border-right: 28px #474747 solid !important;
}
.tundora--bl-28 {
  border-left: 28px #474747 solid !important;
}
.tundora--bb-28 {
  border-bottom: 28px #474747 solid !important;
}
.tundora--by-28 {
  border-top: 28px #474747 solid !important;
  border-bottom: 28px #474747 solid !important;
}
.tundora--bx-28 {
  border-right: 28px #474747 solid !important;
  border-left: 28px #474747 solid !important;
}
.tundora--ba-29 {
  border: 29px #474747 solid !important;
}
.tundora--bt-29 {
  border-top: 29px #474747 solid !important;
}
.tundora--br-29 {
  border-right: 29px #474747 solid !important;
}
.tundora--bl-29 {
  border-left: 29px #474747 solid !important;
}
.tundora--bb-29 {
  border-bottom: 29px #474747 solid !important;
}
.tundora--by-29 {
  border-top: 29px #474747 solid !important;
  border-bottom: 29px #474747 solid !important;
}
.tundora--bx-29 {
  border-right: 29px #474747 solid !important;
  border-left: 29px #474747 solid !important;
}
.tundora--ba-30 {
  border: 30px #474747 solid !important;
}
.tundora--bt-30 {
  border-top: 30px #474747 solid !important;
}
.tundora--br-30 {
  border-right: 30px #474747 solid !important;
}
.tundora--bl-30 {
  border-left: 30px #474747 solid !important;
}
.tundora--bb-30 {
  border-bottom: 30px #474747 solid !important;
}
.tundora--by-30 {
  border-top: 30px #474747 solid !important;
  border-bottom: 30px #474747 solid !important;
}
.tundora--bx-30 {
  border-right: 30px #474747 solid !important;
  border-left: 30px #474747 solid !important;
}
.tundora--ba-31 {
  border: 31px #474747 solid !important;
}
.tundora--bt-31 {
  border-top: 31px #474747 solid !important;
}
.tundora--br-31 {
  border-right: 31px #474747 solid !important;
}
.tundora--bl-31 {
  border-left: 31px #474747 solid !important;
}
.tundora--bb-31 {
  border-bottom: 31px #474747 solid !important;
}
.tundora--by-31 {
  border-top: 31px #474747 solid !important;
  border-bottom: 31px #474747 solid !important;
}
.tundora--bx-31 {
  border-right: 31px #474747 solid !important;
  border-left: 31px #474747 solid !important;
}
.tundora--ba-32 {
  border: 32px #474747 solid !important;
}
.tundora--bt-32 {
  border-top: 32px #474747 solid !important;
}
.tundora--br-32 {
  border-right: 32px #474747 solid !important;
}
.tundora--bl-32 {
  border-left: 32px #474747 solid !important;
}
.tundora--bb-32 {
  border-bottom: 32px #474747 solid !important;
}
.tundora--by-32 {
  border-top: 32px #474747 solid !important;
  border-bottom: 32px #474747 solid !important;
}
.tundora--bx-32 {
  border-right: 32px #474747 solid !important;
  border-left: 32px #474747 solid !important;
}
.tundora--ba-33 {
  border: 33px #474747 solid !important;
}
.tundora--bt-33 {
  border-top: 33px #474747 solid !important;
}
.tundora--br-33 {
  border-right: 33px #474747 solid !important;
}
.tundora--bl-33 {
  border-left: 33px #474747 solid !important;
}
.tundora--bb-33 {
  border-bottom: 33px #474747 solid !important;
}
.tundora--by-33 {
  border-top: 33px #474747 solid !important;
  border-bottom: 33px #474747 solid !important;
}
.tundora--bx-33 {
  border-right: 33px #474747 solid !important;
  border-left: 33px #474747 solid !important;
}
.tundora--ba-34 {
  border: 34px #474747 solid !important;
}
.tundora--bt-34 {
  border-top: 34px #474747 solid !important;
}
.tundora--br-34 {
  border-right: 34px #474747 solid !important;
}
.tundora--bl-34 {
  border-left: 34px #474747 solid !important;
}
.tundora--bb-34 {
  border-bottom: 34px #474747 solid !important;
}
.tundora--by-34 {
  border-top: 34px #474747 solid !important;
  border-bottom: 34px #474747 solid !important;
}
.tundora--bx-34 {
  border-right: 34px #474747 solid !important;
  border-left: 34px #474747 solid !important;
}
.tundora--ba-35 {
  border: 35px #474747 solid !important;
}
.tundora--bt-35 {
  border-top: 35px #474747 solid !important;
}
.tundora--br-35 {
  border-right: 35px #474747 solid !important;
}
.tundora--bl-35 {
  border-left: 35px #474747 solid !important;
}
.tundora--bb-35 {
  border-bottom: 35px #474747 solid !important;
}
.tundora--by-35 {
  border-top: 35px #474747 solid !important;
  border-bottom: 35px #474747 solid !important;
}
.tundora--bx-35 {
  border-right: 35px #474747 solid !important;
  border-left: 35px #474747 solid !important;
}
.tundora--ba-36 {
  border: 36px #474747 solid !important;
}
.tundora--bt-36 {
  border-top: 36px #474747 solid !important;
}
.tundora--br-36 {
  border-right: 36px #474747 solid !important;
}
.tundora--bl-36 {
  border-left: 36px #474747 solid !important;
}
.tundora--bb-36 {
  border-bottom: 36px #474747 solid !important;
}
.tundora--by-36 {
  border-top: 36px #474747 solid !important;
  border-bottom: 36px #474747 solid !important;
}
.tundora--bx-36 {
  border-right: 36px #474747 solid !important;
  border-left: 36px #474747 solid !important;
}
.tundora--ba-37 {
  border: 37px #474747 solid !important;
}
.tundora--bt-37 {
  border-top: 37px #474747 solid !important;
}
.tundora--br-37 {
  border-right: 37px #474747 solid !important;
}
.tundora--bl-37 {
  border-left: 37px #474747 solid !important;
}
.tundora--bb-37 {
  border-bottom: 37px #474747 solid !important;
}
.tundora--by-37 {
  border-top: 37px #474747 solid !important;
  border-bottom: 37px #474747 solid !important;
}
.tundora--bx-37 {
  border-right: 37px #474747 solid !important;
  border-left: 37px #474747 solid !important;
}
.tundora--ba-38 {
  border: 38px #474747 solid !important;
}
.tundora--bt-38 {
  border-top: 38px #474747 solid !important;
}
.tundora--br-38 {
  border-right: 38px #474747 solid !important;
}
.tundora--bl-38 {
  border-left: 38px #474747 solid !important;
}
.tundora--bb-38 {
  border-bottom: 38px #474747 solid !important;
}
.tundora--by-38 {
  border-top: 38px #474747 solid !important;
  border-bottom: 38px #474747 solid !important;
}
.tundora--bx-38 {
  border-right: 38px #474747 solid !important;
  border-left: 38px #474747 solid !important;
}
.tundora--ba-39 {
  border: 39px #474747 solid !important;
}
.tundora--bt-39 {
  border-top: 39px #474747 solid !important;
}
.tundora--br-39 {
  border-right: 39px #474747 solid !important;
}
.tundora--bl-39 {
  border-left: 39px #474747 solid !important;
}
.tundora--bb-39 {
  border-bottom: 39px #474747 solid !important;
}
.tundora--by-39 {
  border-top: 39px #474747 solid !important;
  border-bottom: 39px #474747 solid !important;
}
.tundora--bx-39 {
  border-right: 39px #474747 solid !important;
  border-left: 39px #474747 solid !important;
}
.tundora--ba-40 {
  border: 40px #474747 solid !important;
}
.tundora--bt-40 {
  border-top: 40px #474747 solid !important;
}
.tundora--br-40 {
  border-right: 40px #474747 solid !important;
}
.tundora--bl-40 {
  border-left: 40px #474747 solid !important;
}
.tundora--bb-40 {
  border-bottom: 40px #474747 solid !important;
}
.tundora--by-40 {
  border-top: 40px #474747 solid !important;
  border-bottom: 40px #474747 solid !important;
}
.tundora--bx-40 {
  border-right: 40px #474747 solid !important;
  border-left: 40px #474747 solid !important;
}
.tundora--ba-41 {
  border: 41px #474747 solid !important;
}
.tundora--bt-41 {
  border-top: 41px #474747 solid !important;
}
.tundora--br-41 {
  border-right: 41px #474747 solid !important;
}
.tundora--bl-41 {
  border-left: 41px #474747 solid !important;
}
.tundora--bb-41 {
  border-bottom: 41px #474747 solid !important;
}
.tundora--by-41 {
  border-top: 41px #474747 solid !important;
  border-bottom: 41px #474747 solid !important;
}
.tundora--bx-41 {
  border-right: 41px #474747 solid !important;
  border-left: 41px #474747 solid !important;
}
.tundora--ba-42 {
  border: 42px #474747 solid !important;
}
.tundora--bt-42 {
  border-top: 42px #474747 solid !important;
}
.tundora--br-42 {
  border-right: 42px #474747 solid !important;
}
.tundora--bl-42 {
  border-left: 42px #474747 solid !important;
}
.tundora--bb-42 {
  border-bottom: 42px #474747 solid !important;
}
.tundora--by-42 {
  border-top: 42px #474747 solid !important;
  border-bottom: 42px #474747 solid !important;
}
.tundora--bx-42 {
  border-right: 42px #474747 solid !important;
  border-left: 42px #474747 solid !important;
}
.tundora--ba-43 {
  border: 43px #474747 solid !important;
}
.tundora--bt-43 {
  border-top: 43px #474747 solid !important;
}
.tundora--br-43 {
  border-right: 43px #474747 solid !important;
}
.tundora--bl-43 {
  border-left: 43px #474747 solid !important;
}
.tundora--bb-43 {
  border-bottom: 43px #474747 solid !important;
}
.tundora--by-43 {
  border-top: 43px #474747 solid !important;
  border-bottom: 43px #474747 solid !important;
}
.tundora--bx-43 {
  border-right: 43px #474747 solid !important;
  border-left: 43px #474747 solid !important;
}
.tundora--ba-44 {
  border: 44px #474747 solid !important;
}
.tundora--bt-44 {
  border-top: 44px #474747 solid !important;
}
.tundora--br-44 {
  border-right: 44px #474747 solid !important;
}
.tundora--bl-44 {
  border-left: 44px #474747 solid !important;
}
.tundora--bb-44 {
  border-bottom: 44px #474747 solid !important;
}
.tundora--by-44 {
  border-top: 44px #474747 solid !important;
  border-bottom: 44px #474747 solid !important;
}
.tundora--bx-44 {
  border-right: 44px #474747 solid !important;
  border-left: 44px #474747 solid !important;
}
.tundora--ba-45 {
  border: 45px #474747 solid !important;
}
.tundora--bt-45 {
  border-top: 45px #474747 solid !important;
}
.tundora--br-45 {
  border-right: 45px #474747 solid !important;
}
.tundora--bl-45 {
  border-left: 45px #474747 solid !important;
}
.tundora--bb-45 {
  border-bottom: 45px #474747 solid !important;
}
.tundora--by-45 {
  border-top: 45px #474747 solid !important;
  border-bottom: 45px #474747 solid !important;
}
.tundora--bx-45 {
  border-right: 45px #474747 solid !important;
  border-left: 45px #474747 solid !important;
}
.tundora--ba-46 {
  border: 46px #474747 solid !important;
}
.tundora--bt-46 {
  border-top: 46px #474747 solid !important;
}
.tundora--br-46 {
  border-right: 46px #474747 solid !important;
}
.tundora--bl-46 {
  border-left: 46px #474747 solid !important;
}
.tundora--bb-46 {
  border-bottom: 46px #474747 solid !important;
}
.tundora--by-46 {
  border-top: 46px #474747 solid !important;
  border-bottom: 46px #474747 solid !important;
}
.tundora--bx-46 {
  border-right: 46px #474747 solid !important;
  border-left: 46px #474747 solid !important;
}
.tundora--ba-47 {
  border: 47px #474747 solid !important;
}
.tundora--bt-47 {
  border-top: 47px #474747 solid !important;
}
.tundora--br-47 {
  border-right: 47px #474747 solid !important;
}
.tundora--bl-47 {
  border-left: 47px #474747 solid !important;
}
.tundora--bb-47 {
  border-bottom: 47px #474747 solid !important;
}
.tundora--by-47 {
  border-top: 47px #474747 solid !important;
  border-bottom: 47px #474747 solid !important;
}
.tundora--bx-47 {
  border-right: 47px #474747 solid !important;
  border-left: 47px #474747 solid !important;
}
.tundora--ba-48 {
  border: 48px #474747 solid !important;
}
.tundora--bt-48 {
  border-top: 48px #474747 solid !important;
}
.tundora--br-48 {
  border-right: 48px #474747 solid !important;
}
.tundora--bl-48 {
  border-left: 48px #474747 solid !important;
}
.tundora--bb-48 {
  border-bottom: 48px #474747 solid !important;
}
.tundora--by-48 {
  border-top: 48px #474747 solid !important;
  border-bottom: 48px #474747 solid !important;
}
.tundora--bx-48 {
  border-right: 48px #474747 solid !important;
  border-left: 48px #474747 solid !important;
}
.tundora--ba-49 {
  border: 49px #474747 solid !important;
}
.tundora--bt-49 {
  border-top: 49px #474747 solid !important;
}
.tundora--br-49 {
  border-right: 49px #474747 solid !important;
}
.tundora--bl-49 {
  border-left: 49px #474747 solid !important;
}
.tundora--bb-49 {
  border-bottom: 49px #474747 solid !important;
}
.tundora--by-49 {
  border-top: 49px #474747 solid !important;
  border-bottom: 49px #474747 solid !important;
}
.tundora--bx-49 {
  border-right: 49px #474747 solid !important;
  border-left: 49px #474747 solid !important;
}
.tundora--ba-50 {
  border: 50px #474747 solid !important;
}
.tundora--bt-50 {
  border-top: 50px #474747 solid !important;
}
.tundora--br-50 {
  border-right: 50px #474747 solid !important;
}
.tundora--bl-50 {
  border-left: 50px #474747 solid !important;
}
.tundora--bb-50 {
  border-bottom: 50px #474747 solid !important;
}
.tundora--by-50 {
  border-top: 50px #474747 solid !important;
  border-bottom: 50px #474747 solid !important;
}
.tundora--bx-50 {
  border-right: 50px #474747 solid !important;
  border-left: 50px #474747 solid !important;
}
.tundora--ba-51 {
  border: 51px #474747 solid !important;
}
.tundora--bt-51 {
  border-top: 51px #474747 solid !important;
}
.tundora--br-51 {
  border-right: 51px #474747 solid !important;
}
.tundora--bl-51 {
  border-left: 51px #474747 solid !important;
}
.tundora--bb-51 {
  border-bottom: 51px #474747 solid !important;
}
.tundora--by-51 {
  border-top: 51px #474747 solid !important;
  border-bottom: 51px #474747 solid !important;
}
.tundora--bx-51 {
  border-right: 51px #474747 solid !important;
  border-left: 51px #474747 solid !important;
}
.tundora--ba-52 {
  border: 52px #474747 solid !important;
}
.tundora--bt-52 {
  border-top: 52px #474747 solid !important;
}
.tundora--br-52 {
  border-right: 52px #474747 solid !important;
}
.tundora--bl-52 {
  border-left: 52px #474747 solid !important;
}
.tundora--bb-52 {
  border-bottom: 52px #474747 solid !important;
}
.tundora--by-52 {
  border-top: 52px #474747 solid !important;
  border-bottom: 52px #474747 solid !important;
}
.tundora--bx-52 {
  border-right: 52px #474747 solid !important;
  border-left: 52px #474747 solid !important;
}
.tundora--ba-53 {
  border: 53px #474747 solid !important;
}
.tundora--bt-53 {
  border-top: 53px #474747 solid !important;
}
.tundora--br-53 {
  border-right: 53px #474747 solid !important;
}
.tundora--bl-53 {
  border-left: 53px #474747 solid !important;
}
.tundora--bb-53 {
  border-bottom: 53px #474747 solid !important;
}
.tundora--by-53 {
  border-top: 53px #474747 solid !important;
  border-bottom: 53px #474747 solid !important;
}
.tundora--bx-53 {
  border-right: 53px #474747 solid !important;
  border-left: 53px #474747 solid !important;
}
.tundora--ba-54 {
  border: 54px #474747 solid !important;
}
.tundora--bt-54 {
  border-top: 54px #474747 solid !important;
}
.tundora--br-54 {
  border-right: 54px #474747 solid !important;
}
.tundora--bl-54 {
  border-left: 54px #474747 solid !important;
}
.tundora--bb-54 {
  border-bottom: 54px #474747 solid !important;
}
.tundora--by-54 {
  border-top: 54px #474747 solid !important;
  border-bottom: 54px #474747 solid !important;
}
.tundora--bx-54 {
  border-right: 54px #474747 solid !important;
  border-left: 54px #474747 solid !important;
}
.tundora--ba-55 {
  border: 55px #474747 solid !important;
}
.tundora--bt-55 {
  border-top: 55px #474747 solid !important;
}
.tundora--br-55 {
  border-right: 55px #474747 solid !important;
}
.tundora--bl-55 {
  border-left: 55px #474747 solid !important;
}
.tundora--bb-55 {
  border-bottom: 55px #474747 solid !important;
}
.tundora--by-55 {
  border-top: 55px #474747 solid !important;
  border-bottom: 55px #474747 solid !important;
}
.tundora--bx-55 {
  border-right: 55px #474747 solid !important;
  border-left: 55px #474747 solid !important;
}
.tundora--ba-56 {
  border: 56px #474747 solid !important;
}
.tundora--bt-56 {
  border-top: 56px #474747 solid !important;
}
.tundora--br-56 {
  border-right: 56px #474747 solid !important;
}
.tundora--bl-56 {
  border-left: 56px #474747 solid !important;
}
.tundora--bb-56 {
  border-bottom: 56px #474747 solid !important;
}
.tundora--by-56 {
  border-top: 56px #474747 solid !important;
  border-bottom: 56px #474747 solid !important;
}
.tundora--bx-56 {
  border-right: 56px #474747 solid !important;
  border-left: 56px #474747 solid !important;
}
.tundora--ba-57 {
  border: 57px #474747 solid !important;
}
.tundora--bt-57 {
  border-top: 57px #474747 solid !important;
}
.tundora--br-57 {
  border-right: 57px #474747 solid !important;
}
.tundora--bl-57 {
  border-left: 57px #474747 solid !important;
}
.tundora--bb-57 {
  border-bottom: 57px #474747 solid !important;
}
.tundora--by-57 {
  border-top: 57px #474747 solid !important;
  border-bottom: 57px #474747 solid !important;
}
.tundora--bx-57 {
  border-right: 57px #474747 solid !important;
  border-left: 57px #474747 solid !important;
}
.tundora--ba-58 {
  border: 58px #474747 solid !important;
}
.tundora--bt-58 {
  border-top: 58px #474747 solid !important;
}
.tundora--br-58 {
  border-right: 58px #474747 solid !important;
}
.tundora--bl-58 {
  border-left: 58px #474747 solid !important;
}
.tundora--bb-58 {
  border-bottom: 58px #474747 solid !important;
}
.tundora--by-58 {
  border-top: 58px #474747 solid !important;
  border-bottom: 58px #474747 solid !important;
}
.tundora--bx-58 {
  border-right: 58px #474747 solid !important;
  border-left: 58px #474747 solid !important;
}
.tundora--ba-59 {
  border: 59px #474747 solid !important;
}
.tundora--bt-59 {
  border-top: 59px #474747 solid !important;
}
.tundora--br-59 {
  border-right: 59px #474747 solid !important;
}
.tundora--bl-59 {
  border-left: 59px #474747 solid !important;
}
.tundora--bb-59 {
  border-bottom: 59px #474747 solid !important;
}
.tundora--by-59 {
  border-top: 59px #474747 solid !important;
  border-bottom: 59px #474747 solid !important;
}
.tundora--bx-59 {
  border-right: 59px #474747 solid !important;
  border-left: 59px #474747 solid !important;
}
.tundora--ba-60 {
  border: 60px #474747 solid !important;
}
.tundora--bt-60 {
  border-top: 60px #474747 solid !important;
}
.tundora--br-60 {
  border-right: 60px #474747 solid !important;
}
.tundora--bl-60 {
  border-left: 60px #474747 solid !important;
}
.tundora--bb-60 {
  border-bottom: 60px #474747 solid !important;
}
.tundora--by-60 {
  border-top: 60px #474747 solid !important;
  border-bottom: 60px #474747 solid !important;
}
.tundora--bx-60 {
  border-right: 60px #474747 solid !important;
  border-left: 60px #474747 solid !important;
}
.tundora--ba-61 {
  border: 61px #474747 solid !important;
}
.tundora--bt-61 {
  border-top: 61px #474747 solid !important;
}
.tundora--br-61 {
  border-right: 61px #474747 solid !important;
}
.tundora--bl-61 {
  border-left: 61px #474747 solid !important;
}
.tundora--bb-61 {
  border-bottom: 61px #474747 solid !important;
}
.tundora--by-61 {
  border-top: 61px #474747 solid !important;
  border-bottom: 61px #474747 solid !important;
}
.tundora--bx-61 {
  border-right: 61px #474747 solid !important;
  border-left: 61px #474747 solid !important;
}
.tundora--ba-62 {
  border: 62px #474747 solid !important;
}
.tundora--bt-62 {
  border-top: 62px #474747 solid !important;
}
.tundora--br-62 {
  border-right: 62px #474747 solid !important;
}
.tundora--bl-62 {
  border-left: 62px #474747 solid !important;
}
.tundora--bb-62 {
  border-bottom: 62px #474747 solid !important;
}
.tundora--by-62 {
  border-top: 62px #474747 solid !important;
  border-bottom: 62px #474747 solid !important;
}
.tundora--bx-62 {
  border-right: 62px #474747 solid !important;
  border-left: 62px #474747 solid !important;
}
.tundora--ba-63 {
  border: 63px #474747 solid !important;
}
.tundora--bt-63 {
  border-top: 63px #474747 solid !important;
}
.tundora--br-63 {
  border-right: 63px #474747 solid !important;
}
.tundora--bl-63 {
  border-left: 63px #474747 solid !important;
}
.tundora--bb-63 {
  border-bottom: 63px #474747 solid !important;
}
.tundora--by-63 {
  border-top: 63px #474747 solid !important;
  border-bottom: 63px #474747 solid !important;
}
.tundora--bx-63 {
  border-right: 63px #474747 solid !important;
  border-left: 63px #474747 solid !important;
}
.tundora--ba-64 {
  border: 64px #474747 solid !important;
}
.tundora--bt-64 {
  border-top: 64px #474747 solid !important;
}
.tundora--br-64 {
  border-right: 64px #474747 solid !important;
}
.tundora--bl-64 {
  border-left: 64px #474747 solid !important;
}
.tundora--bb-64 {
  border-bottom: 64px #474747 solid !important;
}
.tundora--by-64 {
  border-top: 64px #474747 solid !important;
  border-bottom: 64px #474747 solid !important;
}
.tundora--bx-64 {
  border-right: 64px #474747 solid !important;
  border-left: 64px #474747 solid !important;
}
.tundora--ba-65 {
  border: 65px #474747 solid !important;
}
.tundora--bt-65 {
  border-top: 65px #474747 solid !important;
}
.tundora--br-65 {
  border-right: 65px #474747 solid !important;
}
.tundora--bl-65 {
  border-left: 65px #474747 solid !important;
}
.tundora--bb-65 {
  border-bottom: 65px #474747 solid !important;
}
.tundora--by-65 {
  border-top: 65px #474747 solid !important;
  border-bottom: 65px #474747 solid !important;
}
.tundora--bx-65 {
  border-right: 65px #474747 solid !important;
  border-left: 65px #474747 solid !important;
}
.tundora--ba-66 {
  border: 66px #474747 solid !important;
}
.tundora--bt-66 {
  border-top: 66px #474747 solid !important;
}
.tundora--br-66 {
  border-right: 66px #474747 solid !important;
}
.tundora--bl-66 {
  border-left: 66px #474747 solid !important;
}
.tundora--bb-66 {
  border-bottom: 66px #474747 solid !important;
}
.tundora--by-66 {
  border-top: 66px #474747 solid !important;
  border-bottom: 66px #474747 solid !important;
}
.tundora--bx-66 {
  border-right: 66px #474747 solid !important;
  border-left: 66px #474747 solid !important;
}
.tundora--ba-67 {
  border: 67px #474747 solid !important;
}
.tundora--bt-67 {
  border-top: 67px #474747 solid !important;
}
.tundora--br-67 {
  border-right: 67px #474747 solid !important;
}
.tundora--bl-67 {
  border-left: 67px #474747 solid !important;
}
.tundora--bb-67 {
  border-bottom: 67px #474747 solid !important;
}
.tundora--by-67 {
  border-top: 67px #474747 solid !important;
  border-bottom: 67px #474747 solid !important;
}
.tundora--bx-67 {
  border-right: 67px #474747 solid !important;
  border-left: 67px #474747 solid !important;
}
.tundora--ba-68 {
  border: 68px #474747 solid !important;
}
.tundora--bt-68 {
  border-top: 68px #474747 solid !important;
}
.tundora--br-68 {
  border-right: 68px #474747 solid !important;
}
.tundora--bl-68 {
  border-left: 68px #474747 solid !important;
}
.tundora--bb-68 {
  border-bottom: 68px #474747 solid !important;
}
.tundora--by-68 {
  border-top: 68px #474747 solid !important;
  border-bottom: 68px #474747 solid !important;
}
.tundora--bx-68 {
  border-right: 68px #474747 solid !important;
  border-left: 68px #474747 solid !important;
}
.tundora--ba-69 {
  border: 69px #474747 solid !important;
}
.tundora--bt-69 {
  border-top: 69px #474747 solid !important;
}
.tundora--br-69 {
  border-right: 69px #474747 solid !important;
}
.tundora--bl-69 {
  border-left: 69px #474747 solid !important;
}
.tundora--bb-69 {
  border-bottom: 69px #474747 solid !important;
}
.tundora--by-69 {
  border-top: 69px #474747 solid !important;
  border-bottom: 69px #474747 solid !important;
}
.tundora--bx-69 {
  border-right: 69px #474747 solid !important;
  border-left: 69px #474747 solid !important;
}
.tundora--ba-70 {
  border: 70px #474747 solid !important;
}
.tundora--bt-70 {
  border-top: 70px #474747 solid !important;
}
.tundora--br-70 {
  border-right: 70px #474747 solid !important;
}
.tundora--bl-70 {
  border-left: 70px #474747 solid !important;
}
.tundora--bb-70 {
  border-bottom: 70px #474747 solid !important;
}
.tundora--by-70 {
  border-top: 70px #474747 solid !important;
  border-bottom: 70px #474747 solid !important;
}
.tundora--bx-70 {
  border-right: 70px #474747 solid !important;
  border-left: 70px #474747 solid !important;
}
.tundora--ba-71 {
  border: 71px #474747 solid !important;
}
.tundora--bt-71 {
  border-top: 71px #474747 solid !important;
}
.tundora--br-71 {
  border-right: 71px #474747 solid !important;
}
.tundora--bl-71 {
  border-left: 71px #474747 solid !important;
}
.tundora--bb-71 {
  border-bottom: 71px #474747 solid !important;
}
.tundora--by-71 {
  border-top: 71px #474747 solid !important;
  border-bottom: 71px #474747 solid !important;
}
.tundora--bx-71 {
  border-right: 71px #474747 solid !important;
  border-left: 71px #474747 solid !important;
}
.tundora--ba-72 {
  border: 72px #474747 solid !important;
}
.tundora--bt-72 {
  border-top: 72px #474747 solid !important;
}
.tundora--br-72 {
  border-right: 72px #474747 solid !important;
}
.tundora--bl-72 {
  border-left: 72px #474747 solid !important;
}
.tundora--bb-72 {
  border-bottom: 72px #474747 solid !important;
}
.tundora--by-72 {
  border-top: 72px #474747 solid !important;
  border-bottom: 72px #474747 solid !important;
}
.tundora--bx-72 {
  border-right: 72px #474747 solid !important;
  border-left: 72px #474747 solid !important;
}
.tundora--ba-73 {
  border: 73px #474747 solid !important;
}
.tundora--bt-73 {
  border-top: 73px #474747 solid !important;
}
.tundora--br-73 {
  border-right: 73px #474747 solid !important;
}
.tundora--bl-73 {
  border-left: 73px #474747 solid !important;
}
.tundora--bb-73 {
  border-bottom: 73px #474747 solid !important;
}
.tundora--by-73 {
  border-top: 73px #474747 solid !important;
  border-bottom: 73px #474747 solid !important;
}
.tundora--bx-73 {
  border-right: 73px #474747 solid !important;
  border-left: 73px #474747 solid !important;
}
.tundora--ba-74 {
  border: 74px #474747 solid !important;
}
.tundora--bt-74 {
  border-top: 74px #474747 solid !important;
}
.tundora--br-74 {
  border-right: 74px #474747 solid !important;
}
.tundora--bl-74 {
  border-left: 74px #474747 solid !important;
}
.tundora--bb-74 {
  border-bottom: 74px #474747 solid !important;
}
.tundora--by-74 {
  border-top: 74px #474747 solid !important;
  border-bottom: 74px #474747 solid !important;
}
.tundora--bx-74 {
  border-right: 74px #474747 solid !important;
  border-left: 74px #474747 solid !important;
}
.tundora--ba-75 {
  border: 75px #474747 solid !important;
}
.tundora--bt-75 {
  border-top: 75px #474747 solid !important;
}
.tundora--br-75 {
  border-right: 75px #474747 solid !important;
}
.tundora--bl-75 {
  border-left: 75px #474747 solid !important;
}
.tundora--bb-75 {
  border-bottom: 75px #474747 solid !important;
}
.tundora--by-75 {
  border-top: 75px #474747 solid !important;
  border-bottom: 75px #474747 solid !important;
}
.tundora--bx-75 {
  border-right: 75px #474747 solid !important;
  border-left: 75px #474747 solid !important;
}
.tundora--ba-76 {
  border: 76px #474747 solid !important;
}
.tundora--bt-76 {
  border-top: 76px #474747 solid !important;
}
.tundora--br-76 {
  border-right: 76px #474747 solid !important;
}
.tundora--bl-76 {
  border-left: 76px #474747 solid !important;
}
.tundora--bb-76 {
  border-bottom: 76px #474747 solid !important;
}
.tundora--by-76 {
  border-top: 76px #474747 solid !important;
  border-bottom: 76px #474747 solid !important;
}
.tundora--bx-76 {
  border-right: 76px #474747 solid !important;
  border-left: 76px #474747 solid !important;
}
.tundora--ba-77 {
  border: 77px #474747 solid !important;
}
.tundora--bt-77 {
  border-top: 77px #474747 solid !important;
}
.tundora--br-77 {
  border-right: 77px #474747 solid !important;
}
.tundora--bl-77 {
  border-left: 77px #474747 solid !important;
}
.tundora--bb-77 {
  border-bottom: 77px #474747 solid !important;
}
.tundora--by-77 {
  border-top: 77px #474747 solid !important;
  border-bottom: 77px #474747 solid !important;
}
.tundora--bx-77 {
  border-right: 77px #474747 solid !important;
  border-left: 77px #474747 solid !important;
}
.tundora--ba-78 {
  border: 78px #474747 solid !important;
}
.tundora--bt-78 {
  border-top: 78px #474747 solid !important;
}
.tundora--br-78 {
  border-right: 78px #474747 solid !important;
}
.tundora--bl-78 {
  border-left: 78px #474747 solid !important;
}
.tundora--bb-78 {
  border-bottom: 78px #474747 solid !important;
}
.tundora--by-78 {
  border-top: 78px #474747 solid !important;
  border-bottom: 78px #474747 solid !important;
}
.tundora--bx-78 {
  border-right: 78px #474747 solid !important;
  border-left: 78px #474747 solid !important;
}
.tundora--ba-79 {
  border: 79px #474747 solid !important;
}
.tundora--bt-79 {
  border-top: 79px #474747 solid !important;
}
.tundora--br-79 {
  border-right: 79px #474747 solid !important;
}
.tundora--bl-79 {
  border-left: 79px #474747 solid !important;
}
.tundora--bb-79 {
  border-bottom: 79px #474747 solid !important;
}
.tundora--by-79 {
  border-top: 79px #474747 solid !important;
  border-bottom: 79px #474747 solid !important;
}
.tundora--bx-79 {
  border-right: 79px #474747 solid !important;
  border-left: 79px #474747 solid !important;
}
.tundora--ba-80 {
  border: 80px #474747 solid !important;
}
.tundora--bt-80 {
  border-top: 80px #474747 solid !important;
}
.tundora--br-80 {
  border-right: 80px #474747 solid !important;
}
.tundora--bl-80 {
  border-left: 80px #474747 solid !important;
}
.tundora--bb-80 {
  border-bottom: 80px #474747 solid !important;
}
.tundora--by-80 {
  border-top: 80px #474747 solid !important;
  border-bottom: 80px #474747 solid !important;
}
.tundora--bx-80 {
  border-right: 80px #474747 solid !important;
  border-left: 80px #474747 solid !important;
}
.tundora--ba-81 {
  border: 81px #474747 solid !important;
}
.tundora--bt-81 {
  border-top: 81px #474747 solid !important;
}
.tundora--br-81 {
  border-right: 81px #474747 solid !important;
}
.tundora--bl-81 {
  border-left: 81px #474747 solid !important;
}
.tundora--bb-81 {
  border-bottom: 81px #474747 solid !important;
}
.tundora--by-81 {
  border-top: 81px #474747 solid !important;
  border-bottom: 81px #474747 solid !important;
}
.tundora--bx-81 {
  border-right: 81px #474747 solid !important;
  border-left: 81px #474747 solid !important;
}
.tundora--ba-82 {
  border: 82px #474747 solid !important;
}
.tundora--bt-82 {
  border-top: 82px #474747 solid !important;
}
.tundora--br-82 {
  border-right: 82px #474747 solid !important;
}
.tundora--bl-82 {
  border-left: 82px #474747 solid !important;
}
.tundora--bb-82 {
  border-bottom: 82px #474747 solid !important;
}
.tundora--by-82 {
  border-top: 82px #474747 solid !important;
  border-bottom: 82px #474747 solid !important;
}
.tundora--bx-82 {
  border-right: 82px #474747 solid !important;
  border-left: 82px #474747 solid !important;
}
.tundora--ba-83 {
  border: 83px #474747 solid !important;
}
.tundora--bt-83 {
  border-top: 83px #474747 solid !important;
}
.tundora--br-83 {
  border-right: 83px #474747 solid !important;
}
.tundora--bl-83 {
  border-left: 83px #474747 solid !important;
}
.tundora--bb-83 {
  border-bottom: 83px #474747 solid !important;
}
.tundora--by-83 {
  border-top: 83px #474747 solid !important;
  border-bottom: 83px #474747 solid !important;
}
.tundora--bx-83 {
  border-right: 83px #474747 solid !important;
  border-left: 83px #474747 solid !important;
}
.tundora--ba-84 {
  border: 84px #474747 solid !important;
}
.tundora--bt-84 {
  border-top: 84px #474747 solid !important;
}
.tundora--br-84 {
  border-right: 84px #474747 solid !important;
}
.tundora--bl-84 {
  border-left: 84px #474747 solid !important;
}
.tundora--bb-84 {
  border-bottom: 84px #474747 solid !important;
}
.tundora--by-84 {
  border-top: 84px #474747 solid !important;
  border-bottom: 84px #474747 solid !important;
}
.tundora--bx-84 {
  border-right: 84px #474747 solid !important;
  border-left: 84px #474747 solid !important;
}
.tundora--ba-85 {
  border: 85px #474747 solid !important;
}
.tundora--bt-85 {
  border-top: 85px #474747 solid !important;
}
.tundora--br-85 {
  border-right: 85px #474747 solid !important;
}
.tundora--bl-85 {
  border-left: 85px #474747 solid !important;
}
.tundora--bb-85 {
  border-bottom: 85px #474747 solid !important;
}
.tundora--by-85 {
  border-top: 85px #474747 solid !important;
  border-bottom: 85px #474747 solid !important;
}
.tundora--bx-85 {
  border-right: 85px #474747 solid !important;
  border-left: 85px #474747 solid !important;
}
.tundora--ba-86 {
  border: 86px #474747 solid !important;
}
.tundora--bt-86 {
  border-top: 86px #474747 solid !important;
}
.tundora--br-86 {
  border-right: 86px #474747 solid !important;
}
.tundora--bl-86 {
  border-left: 86px #474747 solid !important;
}
.tundora--bb-86 {
  border-bottom: 86px #474747 solid !important;
}
.tundora--by-86 {
  border-top: 86px #474747 solid !important;
  border-bottom: 86px #474747 solid !important;
}
.tundora--bx-86 {
  border-right: 86px #474747 solid !important;
  border-left: 86px #474747 solid !important;
}
.tundora--ba-87 {
  border: 87px #474747 solid !important;
}
.tundora--bt-87 {
  border-top: 87px #474747 solid !important;
}
.tundora--br-87 {
  border-right: 87px #474747 solid !important;
}
.tundora--bl-87 {
  border-left: 87px #474747 solid !important;
}
.tundora--bb-87 {
  border-bottom: 87px #474747 solid !important;
}
.tundora--by-87 {
  border-top: 87px #474747 solid !important;
  border-bottom: 87px #474747 solid !important;
}
.tundora--bx-87 {
  border-right: 87px #474747 solid !important;
  border-left: 87px #474747 solid !important;
}
.tundora--ba-88 {
  border: 88px #474747 solid !important;
}
.tundora--bt-88 {
  border-top: 88px #474747 solid !important;
}
.tundora--br-88 {
  border-right: 88px #474747 solid !important;
}
.tundora--bl-88 {
  border-left: 88px #474747 solid !important;
}
.tundora--bb-88 {
  border-bottom: 88px #474747 solid !important;
}
.tundora--by-88 {
  border-top: 88px #474747 solid !important;
  border-bottom: 88px #474747 solid !important;
}
.tundora--bx-88 {
  border-right: 88px #474747 solid !important;
  border-left: 88px #474747 solid !important;
}
.tundora--ba-89 {
  border: 89px #474747 solid !important;
}
.tundora--bt-89 {
  border-top: 89px #474747 solid !important;
}
.tundora--br-89 {
  border-right: 89px #474747 solid !important;
}
.tundora--bl-89 {
  border-left: 89px #474747 solid !important;
}
.tundora--bb-89 {
  border-bottom: 89px #474747 solid !important;
}
.tundora--by-89 {
  border-top: 89px #474747 solid !important;
  border-bottom: 89px #474747 solid !important;
}
.tundora--bx-89 {
  border-right: 89px #474747 solid !important;
  border-left: 89px #474747 solid !important;
}
.tundora--ba-90 {
  border: 90px #474747 solid !important;
}
.tundora--bt-90 {
  border-top: 90px #474747 solid !important;
}
.tundora--br-90 {
  border-right: 90px #474747 solid !important;
}
.tundora--bl-90 {
  border-left: 90px #474747 solid !important;
}
.tundora--bb-90 {
  border-bottom: 90px #474747 solid !important;
}
.tundora--by-90 {
  border-top: 90px #474747 solid !important;
  border-bottom: 90px #474747 solid !important;
}
.tundora--bx-90 {
  border-right: 90px #474747 solid !important;
  border-left: 90px #474747 solid !important;
}
.tundora--ba-91 {
  border: 91px #474747 solid !important;
}
.tundora--bt-91 {
  border-top: 91px #474747 solid !important;
}
.tundora--br-91 {
  border-right: 91px #474747 solid !important;
}
.tundora--bl-91 {
  border-left: 91px #474747 solid !important;
}
.tundora--bb-91 {
  border-bottom: 91px #474747 solid !important;
}
.tundora--by-91 {
  border-top: 91px #474747 solid !important;
  border-bottom: 91px #474747 solid !important;
}
.tundora--bx-91 {
  border-right: 91px #474747 solid !important;
  border-left: 91px #474747 solid !important;
}
.tundora--ba-92 {
  border: 92px #474747 solid !important;
}
.tundora--bt-92 {
  border-top: 92px #474747 solid !important;
}
.tundora--br-92 {
  border-right: 92px #474747 solid !important;
}
.tundora--bl-92 {
  border-left: 92px #474747 solid !important;
}
.tundora--bb-92 {
  border-bottom: 92px #474747 solid !important;
}
.tundora--by-92 {
  border-top: 92px #474747 solid !important;
  border-bottom: 92px #474747 solid !important;
}
.tundora--bx-92 {
  border-right: 92px #474747 solid !important;
  border-left: 92px #474747 solid !important;
}
.tundora--ba-93 {
  border: 93px #474747 solid !important;
}
.tundora--bt-93 {
  border-top: 93px #474747 solid !important;
}
.tundora--br-93 {
  border-right: 93px #474747 solid !important;
}
.tundora--bl-93 {
  border-left: 93px #474747 solid !important;
}
.tundora--bb-93 {
  border-bottom: 93px #474747 solid !important;
}
.tundora--by-93 {
  border-top: 93px #474747 solid !important;
  border-bottom: 93px #474747 solid !important;
}
.tundora--bx-93 {
  border-right: 93px #474747 solid !important;
  border-left: 93px #474747 solid !important;
}
.tundora--ba-94 {
  border: 94px #474747 solid !important;
}
.tundora--bt-94 {
  border-top: 94px #474747 solid !important;
}
.tundora--br-94 {
  border-right: 94px #474747 solid !important;
}
.tundora--bl-94 {
  border-left: 94px #474747 solid !important;
}
.tundora--bb-94 {
  border-bottom: 94px #474747 solid !important;
}
.tundora--by-94 {
  border-top: 94px #474747 solid !important;
  border-bottom: 94px #474747 solid !important;
}
.tundora--bx-94 {
  border-right: 94px #474747 solid !important;
  border-left: 94px #474747 solid !important;
}
.tundora--ba-95 {
  border: 95px #474747 solid !important;
}
.tundora--bt-95 {
  border-top: 95px #474747 solid !important;
}
.tundora--br-95 {
  border-right: 95px #474747 solid !important;
}
.tundora--bl-95 {
  border-left: 95px #474747 solid !important;
}
.tundora--bb-95 {
  border-bottom: 95px #474747 solid !important;
}
.tundora--by-95 {
  border-top: 95px #474747 solid !important;
  border-bottom: 95px #474747 solid !important;
}
.tundora--bx-95 {
  border-right: 95px #474747 solid !important;
  border-left: 95px #474747 solid !important;
}
.tundora--ba-96 {
  border: 96px #474747 solid !important;
}
.tundora--bt-96 {
  border-top: 96px #474747 solid !important;
}
.tundora--br-96 {
  border-right: 96px #474747 solid !important;
}
.tundora--bl-96 {
  border-left: 96px #474747 solid !important;
}
.tundora--bb-96 {
  border-bottom: 96px #474747 solid !important;
}
.tundora--by-96 {
  border-top: 96px #474747 solid !important;
  border-bottom: 96px #474747 solid !important;
}
.tundora--bx-96 {
  border-right: 96px #474747 solid !important;
  border-left: 96px #474747 solid !important;
}
.tundora--ba-97 {
  border: 97px #474747 solid !important;
}
.tundora--bt-97 {
  border-top: 97px #474747 solid !important;
}
.tundora--br-97 {
  border-right: 97px #474747 solid !important;
}
.tundora--bl-97 {
  border-left: 97px #474747 solid !important;
}
.tundora--bb-97 {
  border-bottom: 97px #474747 solid !important;
}
.tundora--by-97 {
  border-top: 97px #474747 solid !important;
  border-bottom: 97px #474747 solid !important;
}
.tundora--bx-97 {
  border-right: 97px #474747 solid !important;
  border-left: 97px #474747 solid !important;
}
.tundora--ba-98 {
  border: 98px #474747 solid !important;
}
.tundora--bt-98 {
  border-top: 98px #474747 solid !important;
}
.tundora--br-98 {
  border-right: 98px #474747 solid !important;
}
.tundora--bl-98 {
  border-left: 98px #474747 solid !important;
}
.tundora--bb-98 {
  border-bottom: 98px #474747 solid !important;
}
.tundora--by-98 {
  border-top: 98px #474747 solid !important;
  border-bottom: 98px #474747 solid !important;
}
.tundora--bx-98 {
  border-right: 98px #474747 solid !important;
  border-left: 98px #474747 solid !important;
}
.tundora--ba-99 {
  border: 99px #474747 solid !important;
}
.tundora--bt-99 {
  border-top: 99px #474747 solid !important;
}
.tundora--br-99 {
  border-right: 99px #474747 solid !important;
}
.tundora--bl-99 {
  border-left: 99px #474747 solid !important;
}
.tundora--bb-99 {
  border-bottom: 99px #474747 solid !important;
}
.tundora--by-99 {
  border-top: 99px #474747 solid !important;
  border-bottom: 99px #474747 solid !important;
}
.tundora--bx-99 {
  border-right: 99px #474747 solid !important;
  border-left: 99px #474747 solid !important;
}
.tundora--ba-100 {
  border: 100px #474747 solid !important;
}
.tundora--bt-100 {
  border-top: 100px #474747 solid !important;
}
.tundora--br-100 {
  border-right: 100px #474747 solid !important;
}
.tundora--bl-100 {
  border-left: 100px #474747 solid !important;
}
.tundora--bb-100 {
  border-bottom: 100px #474747 solid !important;
}
.tundora--by-100 {
  border-top: 100px #474747 solid !important;
  border-bottom: 100px #474747 solid !important;
}
.tundora--bx-100 {
  border-right: 100px #474747 solid !important;
  border-left: 100px #474747 solid !important;
}
.white-lilac--ba-1 {
  border: 1px #f7f7fc solid !important;
}
.white-lilac--bt-1 {
  border-top: 1px #f7f7fc solid !important;
}
.white-lilac--br-1 {
  border-right: 1px #f7f7fc solid !important;
}
.white-lilac--bl-1 {
  border-left: 1px #f7f7fc solid !important;
}
.white-lilac--bb-1 {
  border-bottom: 1px #f7f7fc solid !important;
}
.white-lilac--by-1 {
  border-top: 1px #f7f7fc solid !important;
  border-bottom: 1px #f7f7fc solid !important;
}
.white-lilac--bx-1 {
  border-right: 1px #f7f7fc solid !important;
  border-left: 1px #f7f7fc solid !important;
}
.white-lilac--ba-2 {
  border: 2px #f7f7fc solid !important;
}
.white-lilac--bt-2 {
  border-top: 2px #f7f7fc solid !important;
}
.white-lilac--br-2 {
  border-right: 2px #f7f7fc solid !important;
}
.white-lilac--bl-2 {
  border-left: 2px #f7f7fc solid !important;
}
.white-lilac--bb-2 {
  border-bottom: 2px #f7f7fc solid !important;
}
.white-lilac--by-2 {
  border-top: 2px #f7f7fc solid !important;
  border-bottom: 2px #f7f7fc solid !important;
}
.white-lilac--bx-2 {
  border-right: 2px #f7f7fc solid !important;
  border-left: 2px #f7f7fc solid !important;
}
.white-lilac--ba-3 {
  border: 3px #f7f7fc solid !important;
}
.white-lilac--bt-3 {
  border-top: 3px #f7f7fc solid !important;
}
.white-lilac--br-3 {
  border-right: 3px #f7f7fc solid !important;
}
.white-lilac--bl-3 {
  border-left: 3px #f7f7fc solid !important;
}
.white-lilac--bb-3 {
  border-bottom: 3px #f7f7fc solid !important;
}
.white-lilac--by-3 {
  border-top: 3px #f7f7fc solid !important;
  border-bottom: 3px #f7f7fc solid !important;
}
.white-lilac--bx-3 {
  border-right: 3px #f7f7fc solid !important;
  border-left: 3px #f7f7fc solid !important;
}
.white-lilac--ba-4 {
  border: 4px #f7f7fc solid !important;
}
.white-lilac--bt-4 {
  border-top: 4px #f7f7fc solid !important;
}
.white-lilac--br-4 {
  border-right: 4px #f7f7fc solid !important;
}
.white-lilac--bl-4 {
  border-left: 4px #f7f7fc solid !important;
}
.white-lilac--bb-4 {
  border-bottom: 4px #f7f7fc solid !important;
}
.white-lilac--by-4 {
  border-top: 4px #f7f7fc solid !important;
  border-bottom: 4px #f7f7fc solid !important;
}
.white-lilac--bx-4 {
  border-right: 4px #f7f7fc solid !important;
  border-left: 4px #f7f7fc solid !important;
}
.white-lilac--ba-5 {
  border: 5px #f7f7fc solid !important;
}
.white-lilac--bt-5 {
  border-top: 5px #f7f7fc solid !important;
}
.white-lilac--br-5 {
  border-right: 5px #f7f7fc solid !important;
}
.white-lilac--bl-5 {
  border-left: 5px #f7f7fc solid !important;
}
.white-lilac--bb-5 {
  border-bottom: 5px #f7f7fc solid !important;
}
.white-lilac--by-5 {
  border-top: 5px #f7f7fc solid !important;
  border-bottom: 5px #f7f7fc solid !important;
}
.white-lilac--bx-5 {
  border-right: 5px #f7f7fc solid !important;
  border-left: 5px #f7f7fc solid !important;
}
.white-lilac--ba-6 {
  border: 6px #f7f7fc solid !important;
}
.white-lilac--bt-6 {
  border-top: 6px #f7f7fc solid !important;
}
.white-lilac--br-6 {
  border-right: 6px #f7f7fc solid !important;
}
.white-lilac--bl-6 {
  border-left: 6px #f7f7fc solid !important;
}
.white-lilac--bb-6 {
  border-bottom: 6px #f7f7fc solid !important;
}
.white-lilac--by-6 {
  border-top: 6px #f7f7fc solid !important;
  border-bottom: 6px #f7f7fc solid !important;
}
.white-lilac--bx-6 {
  border-right: 6px #f7f7fc solid !important;
  border-left: 6px #f7f7fc solid !important;
}
.white-lilac--ba-7 {
  border: 7px #f7f7fc solid !important;
}
.white-lilac--bt-7 {
  border-top: 7px #f7f7fc solid !important;
}
.white-lilac--br-7 {
  border-right: 7px #f7f7fc solid !important;
}
.white-lilac--bl-7 {
  border-left: 7px #f7f7fc solid !important;
}
.white-lilac--bb-7 {
  border-bottom: 7px #f7f7fc solid !important;
}
.white-lilac--by-7 {
  border-top: 7px #f7f7fc solid !important;
  border-bottom: 7px #f7f7fc solid !important;
}
.white-lilac--bx-7 {
  border-right: 7px #f7f7fc solid !important;
  border-left: 7px #f7f7fc solid !important;
}
.white-lilac--ba-8 {
  border: 8px #f7f7fc solid !important;
}
.white-lilac--bt-8 {
  border-top: 8px #f7f7fc solid !important;
}
.white-lilac--br-8 {
  border-right: 8px #f7f7fc solid !important;
}
.white-lilac--bl-8 {
  border-left: 8px #f7f7fc solid !important;
}
.white-lilac--bb-8 {
  border-bottom: 8px #f7f7fc solid !important;
}
.white-lilac--by-8 {
  border-top: 8px #f7f7fc solid !important;
  border-bottom: 8px #f7f7fc solid !important;
}
.white-lilac--bx-8 {
  border-right: 8px #f7f7fc solid !important;
  border-left: 8px #f7f7fc solid !important;
}
.white-lilac--ba-9 {
  border: 9px #f7f7fc solid !important;
}
.white-lilac--bt-9 {
  border-top: 9px #f7f7fc solid !important;
}
.white-lilac--br-9 {
  border-right: 9px #f7f7fc solid !important;
}
.white-lilac--bl-9 {
  border-left: 9px #f7f7fc solid !important;
}
.white-lilac--bb-9 {
  border-bottom: 9px #f7f7fc solid !important;
}
.white-lilac--by-9 {
  border-top: 9px #f7f7fc solid !important;
  border-bottom: 9px #f7f7fc solid !important;
}
.white-lilac--bx-9 {
  border-right: 9px #f7f7fc solid !important;
  border-left: 9px #f7f7fc solid !important;
}
.white-lilac--ba-10 {
  border: 10px #f7f7fc solid !important;
}
.white-lilac--bt-10 {
  border-top: 10px #f7f7fc solid !important;
}
.white-lilac--br-10 {
  border-right: 10px #f7f7fc solid !important;
}
.white-lilac--bl-10 {
  border-left: 10px #f7f7fc solid !important;
}
.white-lilac--bb-10 {
  border-bottom: 10px #f7f7fc solid !important;
}
.white-lilac--by-10 {
  border-top: 10px #f7f7fc solid !important;
  border-bottom: 10px #f7f7fc solid !important;
}
.white-lilac--bx-10 {
  border-right: 10px #f7f7fc solid !important;
  border-left: 10px #f7f7fc solid !important;
}
.white-lilac--ba-11 {
  border: 11px #f7f7fc solid !important;
}
.white-lilac--bt-11 {
  border-top: 11px #f7f7fc solid !important;
}
.white-lilac--br-11 {
  border-right: 11px #f7f7fc solid !important;
}
.white-lilac--bl-11 {
  border-left: 11px #f7f7fc solid !important;
}
.white-lilac--bb-11 {
  border-bottom: 11px #f7f7fc solid !important;
}
.white-lilac--by-11 {
  border-top: 11px #f7f7fc solid !important;
  border-bottom: 11px #f7f7fc solid !important;
}
.white-lilac--bx-11 {
  border-right: 11px #f7f7fc solid !important;
  border-left: 11px #f7f7fc solid !important;
}
.white-lilac--ba-12 {
  border: 12px #f7f7fc solid !important;
}
.white-lilac--bt-12 {
  border-top: 12px #f7f7fc solid !important;
}
.white-lilac--br-12 {
  border-right: 12px #f7f7fc solid !important;
}
.white-lilac--bl-12 {
  border-left: 12px #f7f7fc solid !important;
}
.white-lilac--bb-12 {
  border-bottom: 12px #f7f7fc solid !important;
}
.white-lilac--by-12 {
  border-top: 12px #f7f7fc solid !important;
  border-bottom: 12px #f7f7fc solid !important;
}
.white-lilac--bx-12 {
  border-right: 12px #f7f7fc solid !important;
  border-left: 12px #f7f7fc solid !important;
}
.white-lilac--ba-13 {
  border: 13px #f7f7fc solid !important;
}
.white-lilac--bt-13 {
  border-top: 13px #f7f7fc solid !important;
}
.white-lilac--br-13 {
  border-right: 13px #f7f7fc solid !important;
}
.white-lilac--bl-13 {
  border-left: 13px #f7f7fc solid !important;
}
.white-lilac--bb-13 {
  border-bottom: 13px #f7f7fc solid !important;
}
.white-lilac--by-13 {
  border-top: 13px #f7f7fc solid !important;
  border-bottom: 13px #f7f7fc solid !important;
}
.white-lilac--bx-13 {
  border-right: 13px #f7f7fc solid !important;
  border-left: 13px #f7f7fc solid !important;
}
.white-lilac--ba-14 {
  border: 14px #f7f7fc solid !important;
}
.white-lilac--bt-14 {
  border-top: 14px #f7f7fc solid !important;
}
.white-lilac--br-14 {
  border-right: 14px #f7f7fc solid !important;
}
.white-lilac--bl-14 {
  border-left: 14px #f7f7fc solid !important;
}
.white-lilac--bb-14 {
  border-bottom: 14px #f7f7fc solid !important;
}
.white-lilac--by-14 {
  border-top: 14px #f7f7fc solid !important;
  border-bottom: 14px #f7f7fc solid !important;
}
.white-lilac--bx-14 {
  border-right: 14px #f7f7fc solid !important;
  border-left: 14px #f7f7fc solid !important;
}
.white-lilac--ba-15 {
  border: 15px #f7f7fc solid !important;
}
.white-lilac--bt-15 {
  border-top: 15px #f7f7fc solid !important;
}
.white-lilac--br-15 {
  border-right: 15px #f7f7fc solid !important;
}
.white-lilac--bl-15 {
  border-left: 15px #f7f7fc solid !important;
}
.white-lilac--bb-15 {
  border-bottom: 15px #f7f7fc solid !important;
}
.white-lilac--by-15 {
  border-top: 15px #f7f7fc solid !important;
  border-bottom: 15px #f7f7fc solid !important;
}
.white-lilac--bx-15 {
  border-right: 15px #f7f7fc solid !important;
  border-left: 15px #f7f7fc solid !important;
}
.white-lilac--ba-16 {
  border: 16px #f7f7fc solid !important;
}
.white-lilac--bt-16 {
  border-top: 16px #f7f7fc solid !important;
}
.white-lilac--br-16 {
  border-right: 16px #f7f7fc solid !important;
}
.white-lilac--bl-16 {
  border-left: 16px #f7f7fc solid !important;
}
.white-lilac--bb-16 {
  border-bottom: 16px #f7f7fc solid !important;
}
.white-lilac--by-16 {
  border-top: 16px #f7f7fc solid !important;
  border-bottom: 16px #f7f7fc solid !important;
}
.white-lilac--bx-16 {
  border-right: 16px #f7f7fc solid !important;
  border-left: 16px #f7f7fc solid !important;
}
.white-lilac--ba-17 {
  border: 17px #f7f7fc solid !important;
}
.white-lilac--bt-17 {
  border-top: 17px #f7f7fc solid !important;
}
.white-lilac--br-17 {
  border-right: 17px #f7f7fc solid !important;
}
.white-lilac--bl-17 {
  border-left: 17px #f7f7fc solid !important;
}
.white-lilac--bb-17 {
  border-bottom: 17px #f7f7fc solid !important;
}
.white-lilac--by-17 {
  border-top: 17px #f7f7fc solid !important;
  border-bottom: 17px #f7f7fc solid !important;
}
.white-lilac--bx-17 {
  border-right: 17px #f7f7fc solid !important;
  border-left: 17px #f7f7fc solid !important;
}
.white-lilac--ba-18 {
  border: 18px #f7f7fc solid !important;
}
.white-lilac--bt-18 {
  border-top: 18px #f7f7fc solid !important;
}
.white-lilac--br-18 {
  border-right: 18px #f7f7fc solid !important;
}
.white-lilac--bl-18 {
  border-left: 18px #f7f7fc solid !important;
}
.white-lilac--bb-18 {
  border-bottom: 18px #f7f7fc solid !important;
}
.white-lilac--by-18 {
  border-top: 18px #f7f7fc solid !important;
  border-bottom: 18px #f7f7fc solid !important;
}
.white-lilac--bx-18 {
  border-right: 18px #f7f7fc solid !important;
  border-left: 18px #f7f7fc solid !important;
}
.white-lilac--ba-19 {
  border: 19px #f7f7fc solid !important;
}
.white-lilac--bt-19 {
  border-top: 19px #f7f7fc solid !important;
}
.white-lilac--br-19 {
  border-right: 19px #f7f7fc solid !important;
}
.white-lilac--bl-19 {
  border-left: 19px #f7f7fc solid !important;
}
.white-lilac--bb-19 {
  border-bottom: 19px #f7f7fc solid !important;
}
.white-lilac--by-19 {
  border-top: 19px #f7f7fc solid !important;
  border-bottom: 19px #f7f7fc solid !important;
}
.white-lilac--bx-19 {
  border-right: 19px #f7f7fc solid !important;
  border-left: 19px #f7f7fc solid !important;
}
.white-lilac--ba-20 {
  border: 20px #f7f7fc solid !important;
}
.white-lilac--bt-20 {
  border-top: 20px #f7f7fc solid !important;
}
.white-lilac--br-20 {
  border-right: 20px #f7f7fc solid !important;
}
.white-lilac--bl-20 {
  border-left: 20px #f7f7fc solid !important;
}
.white-lilac--bb-20 {
  border-bottom: 20px #f7f7fc solid !important;
}
.white-lilac--by-20 {
  border-top: 20px #f7f7fc solid !important;
  border-bottom: 20px #f7f7fc solid !important;
}
.white-lilac--bx-20 {
  border-right: 20px #f7f7fc solid !important;
  border-left: 20px #f7f7fc solid !important;
}
.white-lilac--ba-21 {
  border: 21px #f7f7fc solid !important;
}
.white-lilac--bt-21 {
  border-top: 21px #f7f7fc solid !important;
}
.white-lilac--br-21 {
  border-right: 21px #f7f7fc solid !important;
}
.white-lilac--bl-21 {
  border-left: 21px #f7f7fc solid !important;
}
.white-lilac--bb-21 {
  border-bottom: 21px #f7f7fc solid !important;
}
.white-lilac--by-21 {
  border-top: 21px #f7f7fc solid !important;
  border-bottom: 21px #f7f7fc solid !important;
}
.white-lilac--bx-21 {
  border-right: 21px #f7f7fc solid !important;
  border-left: 21px #f7f7fc solid !important;
}
.white-lilac--ba-22 {
  border: 22px #f7f7fc solid !important;
}
.white-lilac--bt-22 {
  border-top: 22px #f7f7fc solid !important;
}
.white-lilac--br-22 {
  border-right: 22px #f7f7fc solid !important;
}
.white-lilac--bl-22 {
  border-left: 22px #f7f7fc solid !important;
}
.white-lilac--bb-22 {
  border-bottom: 22px #f7f7fc solid !important;
}
.white-lilac--by-22 {
  border-top: 22px #f7f7fc solid !important;
  border-bottom: 22px #f7f7fc solid !important;
}
.white-lilac--bx-22 {
  border-right: 22px #f7f7fc solid !important;
  border-left: 22px #f7f7fc solid !important;
}
.white-lilac--ba-23 {
  border: 23px #f7f7fc solid !important;
}
.white-lilac--bt-23 {
  border-top: 23px #f7f7fc solid !important;
}
.white-lilac--br-23 {
  border-right: 23px #f7f7fc solid !important;
}
.white-lilac--bl-23 {
  border-left: 23px #f7f7fc solid !important;
}
.white-lilac--bb-23 {
  border-bottom: 23px #f7f7fc solid !important;
}
.white-lilac--by-23 {
  border-top: 23px #f7f7fc solid !important;
  border-bottom: 23px #f7f7fc solid !important;
}
.white-lilac--bx-23 {
  border-right: 23px #f7f7fc solid !important;
  border-left: 23px #f7f7fc solid !important;
}
.white-lilac--ba-24 {
  border: 24px #f7f7fc solid !important;
}
.white-lilac--bt-24 {
  border-top: 24px #f7f7fc solid !important;
}
.white-lilac--br-24 {
  border-right: 24px #f7f7fc solid !important;
}
.white-lilac--bl-24 {
  border-left: 24px #f7f7fc solid !important;
}
.white-lilac--bb-24 {
  border-bottom: 24px #f7f7fc solid !important;
}
.white-lilac--by-24 {
  border-top: 24px #f7f7fc solid !important;
  border-bottom: 24px #f7f7fc solid !important;
}
.white-lilac--bx-24 {
  border-right: 24px #f7f7fc solid !important;
  border-left: 24px #f7f7fc solid !important;
}
.white-lilac--ba-25 {
  border: 25px #f7f7fc solid !important;
}
.white-lilac--bt-25 {
  border-top: 25px #f7f7fc solid !important;
}
.white-lilac--br-25 {
  border-right: 25px #f7f7fc solid !important;
}
.white-lilac--bl-25 {
  border-left: 25px #f7f7fc solid !important;
}
.white-lilac--bb-25 {
  border-bottom: 25px #f7f7fc solid !important;
}
.white-lilac--by-25 {
  border-top: 25px #f7f7fc solid !important;
  border-bottom: 25px #f7f7fc solid !important;
}
.white-lilac--bx-25 {
  border-right: 25px #f7f7fc solid !important;
  border-left: 25px #f7f7fc solid !important;
}
.white-lilac--ba-26 {
  border: 26px #f7f7fc solid !important;
}
.white-lilac--bt-26 {
  border-top: 26px #f7f7fc solid !important;
}
.white-lilac--br-26 {
  border-right: 26px #f7f7fc solid !important;
}
.white-lilac--bl-26 {
  border-left: 26px #f7f7fc solid !important;
}
.white-lilac--bb-26 {
  border-bottom: 26px #f7f7fc solid !important;
}
.white-lilac--by-26 {
  border-top: 26px #f7f7fc solid !important;
  border-bottom: 26px #f7f7fc solid !important;
}
.white-lilac--bx-26 {
  border-right: 26px #f7f7fc solid !important;
  border-left: 26px #f7f7fc solid !important;
}
.white-lilac--ba-27 {
  border: 27px #f7f7fc solid !important;
}
.white-lilac--bt-27 {
  border-top: 27px #f7f7fc solid !important;
}
.white-lilac--br-27 {
  border-right: 27px #f7f7fc solid !important;
}
.white-lilac--bl-27 {
  border-left: 27px #f7f7fc solid !important;
}
.white-lilac--bb-27 {
  border-bottom: 27px #f7f7fc solid !important;
}
.white-lilac--by-27 {
  border-top: 27px #f7f7fc solid !important;
  border-bottom: 27px #f7f7fc solid !important;
}
.white-lilac--bx-27 {
  border-right: 27px #f7f7fc solid !important;
  border-left: 27px #f7f7fc solid !important;
}
.white-lilac--ba-28 {
  border: 28px #f7f7fc solid !important;
}
.white-lilac--bt-28 {
  border-top: 28px #f7f7fc solid !important;
}
.white-lilac--br-28 {
  border-right: 28px #f7f7fc solid !important;
}
.white-lilac--bl-28 {
  border-left: 28px #f7f7fc solid !important;
}
.white-lilac--bb-28 {
  border-bottom: 28px #f7f7fc solid !important;
}
.white-lilac--by-28 {
  border-top: 28px #f7f7fc solid !important;
  border-bottom: 28px #f7f7fc solid !important;
}
.white-lilac--bx-28 {
  border-right: 28px #f7f7fc solid !important;
  border-left: 28px #f7f7fc solid !important;
}
.white-lilac--ba-29 {
  border: 29px #f7f7fc solid !important;
}
.white-lilac--bt-29 {
  border-top: 29px #f7f7fc solid !important;
}
.white-lilac--br-29 {
  border-right: 29px #f7f7fc solid !important;
}
.white-lilac--bl-29 {
  border-left: 29px #f7f7fc solid !important;
}
.white-lilac--bb-29 {
  border-bottom: 29px #f7f7fc solid !important;
}
.white-lilac--by-29 {
  border-top: 29px #f7f7fc solid !important;
  border-bottom: 29px #f7f7fc solid !important;
}
.white-lilac--bx-29 {
  border-right: 29px #f7f7fc solid !important;
  border-left: 29px #f7f7fc solid !important;
}
.white-lilac--ba-30 {
  border: 30px #f7f7fc solid !important;
}
.white-lilac--bt-30 {
  border-top: 30px #f7f7fc solid !important;
}
.white-lilac--br-30 {
  border-right: 30px #f7f7fc solid !important;
}
.white-lilac--bl-30 {
  border-left: 30px #f7f7fc solid !important;
}
.white-lilac--bb-30 {
  border-bottom: 30px #f7f7fc solid !important;
}
.white-lilac--by-30 {
  border-top: 30px #f7f7fc solid !important;
  border-bottom: 30px #f7f7fc solid !important;
}
.white-lilac--bx-30 {
  border-right: 30px #f7f7fc solid !important;
  border-left: 30px #f7f7fc solid !important;
}
.white-lilac--ba-31 {
  border: 31px #f7f7fc solid !important;
}
.white-lilac--bt-31 {
  border-top: 31px #f7f7fc solid !important;
}
.white-lilac--br-31 {
  border-right: 31px #f7f7fc solid !important;
}
.white-lilac--bl-31 {
  border-left: 31px #f7f7fc solid !important;
}
.white-lilac--bb-31 {
  border-bottom: 31px #f7f7fc solid !important;
}
.white-lilac--by-31 {
  border-top: 31px #f7f7fc solid !important;
  border-bottom: 31px #f7f7fc solid !important;
}
.white-lilac--bx-31 {
  border-right: 31px #f7f7fc solid !important;
  border-left: 31px #f7f7fc solid !important;
}
.white-lilac--ba-32 {
  border: 32px #f7f7fc solid !important;
}
.white-lilac--bt-32 {
  border-top: 32px #f7f7fc solid !important;
}
.white-lilac--br-32 {
  border-right: 32px #f7f7fc solid !important;
}
.white-lilac--bl-32 {
  border-left: 32px #f7f7fc solid !important;
}
.white-lilac--bb-32 {
  border-bottom: 32px #f7f7fc solid !important;
}
.white-lilac--by-32 {
  border-top: 32px #f7f7fc solid !important;
  border-bottom: 32px #f7f7fc solid !important;
}
.white-lilac--bx-32 {
  border-right: 32px #f7f7fc solid !important;
  border-left: 32px #f7f7fc solid !important;
}
.white-lilac--ba-33 {
  border: 33px #f7f7fc solid !important;
}
.white-lilac--bt-33 {
  border-top: 33px #f7f7fc solid !important;
}
.white-lilac--br-33 {
  border-right: 33px #f7f7fc solid !important;
}
.white-lilac--bl-33 {
  border-left: 33px #f7f7fc solid !important;
}
.white-lilac--bb-33 {
  border-bottom: 33px #f7f7fc solid !important;
}
.white-lilac--by-33 {
  border-top: 33px #f7f7fc solid !important;
  border-bottom: 33px #f7f7fc solid !important;
}
.white-lilac--bx-33 {
  border-right: 33px #f7f7fc solid !important;
  border-left: 33px #f7f7fc solid !important;
}
.white-lilac--ba-34 {
  border: 34px #f7f7fc solid !important;
}
.white-lilac--bt-34 {
  border-top: 34px #f7f7fc solid !important;
}
.white-lilac--br-34 {
  border-right: 34px #f7f7fc solid !important;
}
.white-lilac--bl-34 {
  border-left: 34px #f7f7fc solid !important;
}
.white-lilac--bb-34 {
  border-bottom: 34px #f7f7fc solid !important;
}
.white-lilac--by-34 {
  border-top: 34px #f7f7fc solid !important;
  border-bottom: 34px #f7f7fc solid !important;
}
.white-lilac--bx-34 {
  border-right: 34px #f7f7fc solid !important;
  border-left: 34px #f7f7fc solid !important;
}
.white-lilac--ba-35 {
  border: 35px #f7f7fc solid !important;
}
.white-lilac--bt-35 {
  border-top: 35px #f7f7fc solid !important;
}
.white-lilac--br-35 {
  border-right: 35px #f7f7fc solid !important;
}
.white-lilac--bl-35 {
  border-left: 35px #f7f7fc solid !important;
}
.white-lilac--bb-35 {
  border-bottom: 35px #f7f7fc solid !important;
}
.white-lilac--by-35 {
  border-top: 35px #f7f7fc solid !important;
  border-bottom: 35px #f7f7fc solid !important;
}
.white-lilac--bx-35 {
  border-right: 35px #f7f7fc solid !important;
  border-left: 35px #f7f7fc solid !important;
}
.white-lilac--ba-36 {
  border: 36px #f7f7fc solid !important;
}
.white-lilac--bt-36 {
  border-top: 36px #f7f7fc solid !important;
}
.white-lilac--br-36 {
  border-right: 36px #f7f7fc solid !important;
}
.white-lilac--bl-36 {
  border-left: 36px #f7f7fc solid !important;
}
.white-lilac--bb-36 {
  border-bottom: 36px #f7f7fc solid !important;
}
.white-lilac--by-36 {
  border-top: 36px #f7f7fc solid !important;
  border-bottom: 36px #f7f7fc solid !important;
}
.white-lilac--bx-36 {
  border-right: 36px #f7f7fc solid !important;
  border-left: 36px #f7f7fc solid !important;
}
.white-lilac--ba-37 {
  border: 37px #f7f7fc solid !important;
}
.white-lilac--bt-37 {
  border-top: 37px #f7f7fc solid !important;
}
.white-lilac--br-37 {
  border-right: 37px #f7f7fc solid !important;
}
.white-lilac--bl-37 {
  border-left: 37px #f7f7fc solid !important;
}
.white-lilac--bb-37 {
  border-bottom: 37px #f7f7fc solid !important;
}
.white-lilac--by-37 {
  border-top: 37px #f7f7fc solid !important;
  border-bottom: 37px #f7f7fc solid !important;
}
.white-lilac--bx-37 {
  border-right: 37px #f7f7fc solid !important;
  border-left: 37px #f7f7fc solid !important;
}
.white-lilac--ba-38 {
  border: 38px #f7f7fc solid !important;
}
.white-lilac--bt-38 {
  border-top: 38px #f7f7fc solid !important;
}
.white-lilac--br-38 {
  border-right: 38px #f7f7fc solid !important;
}
.white-lilac--bl-38 {
  border-left: 38px #f7f7fc solid !important;
}
.white-lilac--bb-38 {
  border-bottom: 38px #f7f7fc solid !important;
}
.white-lilac--by-38 {
  border-top: 38px #f7f7fc solid !important;
  border-bottom: 38px #f7f7fc solid !important;
}
.white-lilac--bx-38 {
  border-right: 38px #f7f7fc solid !important;
  border-left: 38px #f7f7fc solid !important;
}
.white-lilac--ba-39 {
  border: 39px #f7f7fc solid !important;
}
.white-lilac--bt-39 {
  border-top: 39px #f7f7fc solid !important;
}
.white-lilac--br-39 {
  border-right: 39px #f7f7fc solid !important;
}
.white-lilac--bl-39 {
  border-left: 39px #f7f7fc solid !important;
}
.white-lilac--bb-39 {
  border-bottom: 39px #f7f7fc solid !important;
}
.white-lilac--by-39 {
  border-top: 39px #f7f7fc solid !important;
  border-bottom: 39px #f7f7fc solid !important;
}
.white-lilac--bx-39 {
  border-right: 39px #f7f7fc solid !important;
  border-left: 39px #f7f7fc solid !important;
}
.white-lilac--ba-40 {
  border: 40px #f7f7fc solid !important;
}
.white-lilac--bt-40 {
  border-top: 40px #f7f7fc solid !important;
}
.white-lilac--br-40 {
  border-right: 40px #f7f7fc solid !important;
}
.white-lilac--bl-40 {
  border-left: 40px #f7f7fc solid !important;
}
.white-lilac--bb-40 {
  border-bottom: 40px #f7f7fc solid !important;
}
.white-lilac--by-40 {
  border-top: 40px #f7f7fc solid !important;
  border-bottom: 40px #f7f7fc solid !important;
}
.white-lilac--bx-40 {
  border-right: 40px #f7f7fc solid !important;
  border-left: 40px #f7f7fc solid !important;
}
.white-lilac--ba-41 {
  border: 41px #f7f7fc solid !important;
}
.white-lilac--bt-41 {
  border-top: 41px #f7f7fc solid !important;
}
.white-lilac--br-41 {
  border-right: 41px #f7f7fc solid !important;
}
.white-lilac--bl-41 {
  border-left: 41px #f7f7fc solid !important;
}
.white-lilac--bb-41 {
  border-bottom: 41px #f7f7fc solid !important;
}
.white-lilac--by-41 {
  border-top: 41px #f7f7fc solid !important;
  border-bottom: 41px #f7f7fc solid !important;
}
.white-lilac--bx-41 {
  border-right: 41px #f7f7fc solid !important;
  border-left: 41px #f7f7fc solid !important;
}
.white-lilac--ba-42 {
  border: 42px #f7f7fc solid !important;
}
.white-lilac--bt-42 {
  border-top: 42px #f7f7fc solid !important;
}
.white-lilac--br-42 {
  border-right: 42px #f7f7fc solid !important;
}
.white-lilac--bl-42 {
  border-left: 42px #f7f7fc solid !important;
}
.white-lilac--bb-42 {
  border-bottom: 42px #f7f7fc solid !important;
}
.white-lilac--by-42 {
  border-top: 42px #f7f7fc solid !important;
  border-bottom: 42px #f7f7fc solid !important;
}
.white-lilac--bx-42 {
  border-right: 42px #f7f7fc solid !important;
  border-left: 42px #f7f7fc solid !important;
}
.white-lilac--ba-43 {
  border: 43px #f7f7fc solid !important;
}
.white-lilac--bt-43 {
  border-top: 43px #f7f7fc solid !important;
}
.white-lilac--br-43 {
  border-right: 43px #f7f7fc solid !important;
}
.white-lilac--bl-43 {
  border-left: 43px #f7f7fc solid !important;
}
.white-lilac--bb-43 {
  border-bottom: 43px #f7f7fc solid !important;
}
.white-lilac--by-43 {
  border-top: 43px #f7f7fc solid !important;
  border-bottom: 43px #f7f7fc solid !important;
}
.white-lilac--bx-43 {
  border-right: 43px #f7f7fc solid !important;
  border-left: 43px #f7f7fc solid !important;
}
.white-lilac--ba-44 {
  border: 44px #f7f7fc solid !important;
}
.white-lilac--bt-44 {
  border-top: 44px #f7f7fc solid !important;
}
.white-lilac--br-44 {
  border-right: 44px #f7f7fc solid !important;
}
.white-lilac--bl-44 {
  border-left: 44px #f7f7fc solid !important;
}
.white-lilac--bb-44 {
  border-bottom: 44px #f7f7fc solid !important;
}
.white-lilac--by-44 {
  border-top: 44px #f7f7fc solid !important;
  border-bottom: 44px #f7f7fc solid !important;
}
.white-lilac--bx-44 {
  border-right: 44px #f7f7fc solid !important;
  border-left: 44px #f7f7fc solid !important;
}
.white-lilac--ba-45 {
  border: 45px #f7f7fc solid !important;
}
.white-lilac--bt-45 {
  border-top: 45px #f7f7fc solid !important;
}
.white-lilac--br-45 {
  border-right: 45px #f7f7fc solid !important;
}
.white-lilac--bl-45 {
  border-left: 45px #f7f7fc solid !important;
}
.white-lilac--bb-45 {
  border-bottom: 45px #f7f7fc solid !important;
}
.white-lilac--by-45 {
  border-top: 45px #f7f7fc solid !important;
  border-bottom: 45px #f7f7fc solid !important;
}
.white-lilac--bx-45 {
  border-right: 45px #f7f7fc solid !important;
  border-left: 45px #f7f7fc solid !important;
}
.white-lilac--ba-46 {
  border: 46px #f7f7fc solid !important;
}
.white-lilac--bt-46 {
  border-top: 46px #f7f7fc solid !important;
}
.white-lilac--br-46 {
  border-right: 46px #f7f7fc solid !important;
}
.white-lilac--bl-46 {
  border-left: 46px #f7f7fc solid !important;
}
.white-lilac--bb-46 {
  border-bottom: 46px #f7f7fc solid !important;
}
.white-lilac--by-46 {
  border-top: 46px #f7f7fc solid !important;
  border-bottom: 46px #f7f7fc solid !important;
}
.white-lilac--bx-46 {
  border-right: 46px #f7f7fc solid !important;
  border-left: 46px #f7f7fc solid !important;
}
.white-lilac--ba-47 {
  border: 47px #f7f7fc solid !important;
}
.white-lilac--bt-47 {
  border-top: 47px #f7f7fc solid !important;
}
.white-lilac--br-47 {
  border-right: 47px #f7f7fc solid !important;
}
.white-lilac--bl-47 {
  border-left: 47px #f7f7fc solid !important;
}
.white-lilac--bb-47 {
  border-bottom: 47px #f7f7fc solid !important;
}
.white-lilac--by-47 {
  border-top: 47px #f7f7fc solid !important;
  border-bottom: 47px #f7f7fc solid !important;
}
.white-lilac--bx-47 {
  border-right: 47px #f7f7fc solid !important;
  border-left: 47px #f7f7fc solid !important;
}
.white-lilac--ba-48 {
  border: 48px #f7f7fc solid !important;
}
.white-lilac--bt-48 {
  border-top: 48px #f7f7fc solid !important;
}
.white-lilac--br-48 {
  border-right: 48px #f7f7fc solid !important;
}
.white-lilac--bl-48 {
  border-left: 48px #f7f7fc solid !important;
}
.white-lilac--bb-48 {
  border-bottom: 48px #f7f7fc solid !important;
}
.white-lilac--by-48 {
  border-top: 48px #f7f7fc solid !important;
  border-bottom: 48px #f7f7fc solid !important;
}
.white-lilac--bx-48 {
  border-right: 48px #f7f7fc solid !important;
  border-left: 48px #f7f7fc solid !important;
}
.white-lilac--ba-49 {
  border: 49px #f7f7fc solid !important;
}
.white-lilac--bt-49 {
  border-top: 49px #f7f7fc solid !important;
}
.white-lilac--br-49 {
  border-right: 49px #f7f7fc solid !important;
}
.white-lilac--bl-49 {
  border-left: 49px #f7f7fc solid !important;
}
.white-lilac--bb-49 {
  border-bottom: 49px #f7f7fc solid !important;
}
.white-lilac--by-49 {
  border-top: 49px #f7f7fc solid !important;
  border-bottom: 49px #f7f7fc solid !important;
}
.white-lilac--bx-49 {
  border-right: 49px #f7f7fc solid !important;
  border-left: 49px #f7f7fc solid !important;
}
.white-lilac--ba-50 {
  border: 50px #f7f7fc solid !important;
}
.white-lilac--bt-50 {
  border-top: 50px #f7f7fc solid !important;
}
.white-lilac--br-50 {
  border-right: 50px #f7f7fc solid !important;
}
.white-lilac--bl-50 {
  border-left: 50px #f7f7fc solid !important;
}
.white-lilac--bb-50 {
  border-bottom: 50px #f7f7fc solid !important;
}
.white-lilac--by-50 {
  border-top: 50px #f7f7fc solid !important;
  border-bottom: 50px #f7f7fc solid !important;
}
.white-lilac--bx-50 {
  border-right: 50px #f7f7fc solid !important;
  border-left: 50px #f7f7fc solid !important;
}
.white-lilac--ba-51 {
  border: 51px #f7f7fc solid !important;
}
.white-lilac--bt-51 {
  border-top: 51px #f7f7fc solid !important;
}
.white-lilac--br-51 {
  border-right: 51px #f7f7fc solid !important;
}
.white-lilac--bl-51 {
  border-left: 51px #f7f7fc solid !important;
}
.white-lilac--bb-51 {
  border-bottom: 51px #f7f7fc solid !important;
}
.white-lilac--by-51 {
  border-top: 51px #f7f7fc solid !important;
  border-bottom: 51px #f7f7fc solid !important;
}
.white-lilac--bx-51 {
  border-right: 51px #f7f7fc solid !important;
  border-left: 51px #f7f7fc solid !important;
}
.white-lilac--ba-52 {
  border: 52px #f7f7fc solid !important;
}
.white-lilac--bt-52 {
  border-top: 52px #f7f7fc solid !important;
}
.white-lilac--br-52 {
  border-right: 52px #f7f7fc solid !important;
}
.white-lilac--bl-52 {
  border-left: 52px #f7f7fc solid !important;
}
.white-lilac--bb-52 {
  border-bottom: 52px #f7f7fc solid !important;
}
.white-lilac--by-52 {
  border-top: 52px #f7f7fc solid !important;
  border-bottom: 52px #f7f7fc solid !important;
}
.white-lilac--bx-52 {
  border-right: 52px #f7f7fc solid !important;
  border-left: 52px #f7f7fc solid !important;
}
.white-lilac--ba-53 {
  border: 53px #f7f7fc solid !important;
}
.white-lilac--bt-53 {
  border-top: 53px #f7f7fc solid !important;
}
.white-lilac--br-53 {
  border-right: 53px #f7f7fc solid !important;
}
.white-lilac--bl-53 {
  border-left: 53px #f7f7fc solid !important;
}
.white-lilac--bb-53 {
  border-bottom: 53px #f7f7fc solid !important;
}
.white-lilac--by-53 {
  border-top: 53px #f7f7fc solid !important;
  border-bottom: 53px #f7f7fc solid !important;
}
.white-lilac--bx-53 {
  border-right: 53px #f7f7fc solid !important;
  border-left: 53px #f7f7fc solid !important;
}
.white-lilac--ba-54 {
  border: 54px #f7f7fc solid !important;
}
.white-lilac--bt-54 {
  border-top: 54px #f7f7fc solid !important;
}
.white-lilac--br-54 {
  border-right: 54px #f7f7fc solid !important;
}
.white-lilac--bl-54 {
  border-left: 54px #f7f7fc solid !important;
}
.white-lilac--bb-54 {
  border-bottom: 54px #f7f7fc solid !important;
}
.white-lilac--by-54 {
  border-top: 54px #f7f7fc solid !important;
  border-bottom: 54px #f7f7fc solid !important;
}
.white-lilac--bx-54 {
  border-right: 54px #f7f7fc solid !important;
  border-left: 54px #f7f7fc solid !important;
}
.white-lilac--ba-55 {
  border: 55px #f7f7fc solid !important;
}
.white-lilac--bt-55 {
  border-top: 55px #f7f7fc solid !important;
}
.white-lilac--br-55 {
  border-right: 55px #f7f7fc solid !important;
}
.white-lilac--bl-55 {
  border-left: 55px #f7f7fc solid !important;
}
.white-lilac--bb-55 {
  border-bottom: 55px #f7f7fc solid !important;
}
.white-lilac--by-55 {
  border-top: 55px #f7f7fc solid !important;
  border-bottom: 55px #f7f7fc solid !important;
}
.white-lilac--bx-55 {
  border-right: 55px #f7f7fc solid !important;
  border-left: 55px #f7f7fc solid !important;
}
.white-lilac--ba-56 {
  border: 56px #f7f7fc solid !important;
}
.white-lilac--bt-56 {
  border-top: 56px #f7f7fc solid !important;
}
.white-lilac--br-56 {
  border-right: 56px #f7f7fc solid !important;
}
.white-lilac--bl-56 {
  border-left: 56px #f7f7fc solid !important;
}
.white-lilac--bb-56 {
  border-bottom: 56px #f7f7fc solid !important;
}
.white-lilac--by-56 {
  border-top: 56px #f7f7fc solid !important;
  border-bottom: 56px #f7f7fc solid !important;
}
.white-lilac--bx-56 {
  border-right: 56px #f7f7fc solid !important;
  border-left: 56px #f7f7fc solid !important;
}
.white-lilac--ba-57 {
  border: 57px #f7f7fc solid !important;
}
.white-lilac--bt-57 {
  border-top: 57px #f7f7fc solid !important;
}
.white-lilac--br-57 {
  border-right: 57px #f7f7fc solid !important;
}
.white-lilac--bl-57 {
  border-left: 57px #f7f7fc solid !important;
}
.white-lilac--bb-57 {
  border-bottom: 57px #f7f7fc solid !important;
}
.white-lilac--by-57 {
  border-top: 57px #f7f7fc solid !important;
  border-bottom: 57px #f7f7fc solid !important;
}
.white-lilac--bx-57 {
  border-right: 57px #f7f7fc solid !important;
  border-left: 57px #f7f7fc solid !important;
}
.white-lilac--ba-58 {
  border: 58px #f7f7fc solid !important;
}
.white-lilac--bt-58 {
  border-top: 58px #f7f7fc solid !important;
}
.white-lilac--br-58 {
  border-right: 58px #f7f7fc solid !important;
}
.white-lilac--bl-58 {
  border-left: 58px #f7f7fc solid !important;
}
.white-lilac--bb-58 {
  border-bottom: 58px #f7f7fc solid !important;
}
.white-lilac--by-58 {
  border-top: 58px #f7f7fc solid !important;
  border-bottom: 58px #f7f7fc solid !important;
}
.white-lilac--bx-58 {
  border-right: 58px #f7f7fc solid !important;
  border-left: 58px #f7f7fc solid !important;
}
.white-lilac--ba-59 {
  border: 59px #f7f7fc solid !important;
}
.white-lilac--bt-59 {
  border-top: 59px #f7f7fc solid !important;
}
.white-lilac--br-59 {
  border-right: 59px #f7f7fc solid !important;
}
.white-lilac--bl-59 {
  border-left: 59px #f7f7fc solid !important;
}
.white-lilac--bb-59 {
  border-bottom: 59px #f7f7fc solid !important;
}
.white-lilac--by-59 {
  border-top: 59px #f7f7fc solid !important;
  border-bottom: 59px #f7f7fc solid !important;
}
.white-lilac--bx-59 {
  border-right: 59px #f7f7fc solid !important;
  border-left: 59px #f7f7fc solid !important;
}
.white-lilac--ba-60 {
  border: 60px #f7f7fc solid !important;
}
.white-lilac--bt-60 {
  border-top: 60px #f7f7fc solid !important;
}
.white-lilac--br-60 {
  border-right: 60px #f7f7fc solid !important;
}
.white-lilac--bl-60 {
  border-left: 60px #f7f7fc solid !important;
}
.white-lilac--bb-60 {
  border-bottom: 60px #f7f7fc solid !important;
}
.white-lilac--by-60 {
  border-top: 60px #f7f7fc solid !important;
  border-bottom: 60px #f7f7fc solid !important;
}
.white-lilac--bx-60 {
  border-right: 60px #f7f7fc solid !important;
  border-left: 60px #f7f7fc solid !important;
}
.white-lilac--ba-61 {
  border: 61px #f7f7fc solid !important;
}
.white-lilac--bt-61 {
  border-top: 61px #f7f7fc solid !important;
}
.white-lilac--br-61 {
  border-right: 61px #f7f7fc solid !important;
}
.white-lilac--bl-61 {
  border-left: 61px #f7f7fc solid !important;
}
.white-lilac--bb-61 {
  border-bottom: 61px #f7f7fc solid !important;
}
.white-lilac--by-61 {
  border-top: 61px #f7f7fc solid !important;
  border-bottom: 61px #f7f7fc solid !important;
}
.white-lilac--bx-61 {
  border-right: 61px #f7f7fc solid !important;
  border-left: 61px #f7f7fc solid !important;
}
.white-lilac--ba-62 {
  border: 62px #f7f7fc solid !important;
}
.white-lilac--bt-62 {
  border-top: 62px #f7f7fc solid !important;
}
.white-lilac--br-62 {
  border-right: 62px #f7f7fc solid !important;
}
.white-lilac--bl-62 {
  border-left: 62px #f7f7fc solid !important;
}
.white-lilac--bb-62 {
  border-bottom: 62px #f7f7fc solid !important;
}
.white-lilac--by-62 {
  border-top: 62px #f7f7fc solid !important;
  border-bottom: 62px #f7f7fc solid !important;
}
.white-lilac--bx-62 {
  border-right: 62px #f7f7fc solid !important;
  border-left: 62px #f7f7fc solid !important;
}
.white-lilac--ba-63 {
  border: 63px #f7f7fc solid !important;
}
.white-lilac--bt-63 {
  border-top: 63px #f7f7fc solid !important;
}
.white-lilac--br-63 {
  border-right: 63px #f7f7fc solid !important;
}
.white-lilac--bl-63 {
  border-left: 63px #f7f7fc solid !important;
}
.white-lilac--bb-63 {
  border-bottom: 63px #f7f7fc solid !important;
}
.white-lilac--by-63 {
  border-top: 63px #f7f7fc solid !important;
  border-bottom: 63px #f7f7fc solid !important;
}
.white-lilac--bx-63 {
  border-right: 63px #f7f7fc solid !important;
  border-left: 63px #f7f7fc solid !important;
}
.white-lilac--ba-64 {
  border: 64px #f7f7fc solid !important;
}
.white-lilac--bt-64 {
  border-top: 64px #f7f7fc solid !important;
}
.white-lilac--br-64 {
  border-right: 64px #f7f7fc solid !important;
}
.white-lilac--bl-64 {
  border-left: 64px #f7f7fc solid !important;
}
.white-lilac--bb-64 {
  border-bottom: 64px #f7f7fc solid !important;
}
.white-lilac--by-64 {
  border-top: 64px #f7f7fc solid !important;
  border-bottom: 64px #f7f7fc solid !important;
}
.white-lilac--bx-64 {
  border-right: 64px #f7f7fc solid !important;
  border-left: 64px #f7f7fc solid !important;
}
.white-lilac--ba-65 {
  border: 65px #f7f7fc solid !important;
}
.white-lilac--bt-65 {
  border-top: 65px #f7f7fc solid !important;
}
.white-lilac--br-65 {
  border-right: 65px #f7f7fc solid !important;
}
.white-lilac--bl-65 {
  border-left: 65px #f7f7fc solid !important;
}
.white-lilac--bb-65 {
  border-bottom: 65px #f7f7fc solid !important;
}
.white-lilac--by-65 {
  border-top: 65px #f7f7fc solid !important;
  border-bottom: 65px #f7f7fc solid !important;
}
.white-lilac--bx-65 {
  border-right: 65px #f7f7fc solid !important;
  border-left: 65px #f7f7fc solid !important;
}
.white-lilac--ba-66 {
  border: 66px #f7f7fc solid !important;
}
.white-lilac--bt-66 {
  border-top: 66px #f7f7fc solid !important;
}
.white-lilac--br-66 {
  border-right: 66px #f7f7fc solid !important;
}
.white-lilac--bl-66 {
  border-left: 66px #f7f7fc solid !important;
}
.white-lilac--bb-66 {
  border-bottom: 66px #f7f7fc solid !important;
}
.white-lilac--by-66 {
  border-top: 66px #f7f7fc solid !important;
  border-bottom: 66px #f7f7fc solid !important;
}
.white-lilac--bx-66 {
  border-right: 66px #f7f7fc solid !important;
  border-left: 66px #f7f7fc solid !important;
}
.white-lilac--ba-67 {
  border: 67px #f7f7fc solid !important;
}
.white-lilac--bt-67 {
  border-top: 67px #f7f7fc solid !important;
}
.white-lilac--br-67 {
  border-right: 67px #f7f7fc solid !important;
}
.white-lilac--bl-67 {
  border-left: 67px #f7f7fc solid !important;
}
.white-lilac--bb-67 {
  border-bottom: 67px #f7f7fc solid !important;
}
.white-lilac--by-67 {
  border-top: 67px #f7f7fc solid !important;
  border-bottom: 67px #f7f7fc solid !important;
}
.white-lilac--bx-67 {
  border-right: 67px #f7f7fc solid !important;
  border-left: 67px #f7f7fc solid !important;
}
.white-lilac--ba-68 {
  border: 68px #f7f7fc solid !important;
}
.white-lilac--bt-68 {
  border-top: 68px #f7f7fc solid !important;
}
.white-lilac--br-68 {
  border-right: 68px #f7f7fc solid !important;
}
.white-lilac--bl-68 {
  border-left: 68px #f7f7fc solid !important;
}
.white-lilac--bb-68 {
  border-bottom: 68px #f7f7fc solid !important;
}
.white-lilac--by-68 {
  border-top: 68px #f7f7fc solid !important;
  border-bottom: 68px #f7f7fc solid !important;
}
.white-lilac--bx-68 {
  border-right: 68px #f7f7fc solid !important;
  border-left: 68px #f7f7fc solid !important;
}
.white-lilac--ba-69 {
  border: 69px #f7f7fc solid !important;
}
.white-lilac--bt-69 {
  border-top: 69px #f7f7fc solid !important;
}
.white-lilac--br-69 {
  border-right: 69px #f7f7fc solid !important;
}
.white-lilac--bl-69 {
  border-left: 69px #f7f7fc solid !important;
}
.white-lilac--bb-69 {
  border-bottom: 69px #f7f7fc solid !important;
}
.white-lilac--by-69 {
  border-top: 69px #f7f7fc solid !important;
  border-bottom: 69px #f7f7fc solid !important;
}
.white-lilac--bx-69 {
  border-right: 69px #f7f7fc solid !important;
  border-left: 69px #f7f7fc solid !important;
}
.white-lilac--ba-70 {
  border: 70px #f7f7fc solid !important;
}
.white-lilac--bt-70 {
  border-top: 70px #f7f7fc solid !important;
}
.white-lilac--br-70 {
  border-right: 70px #f7f7fc solid !important;
}
.white-lilac--bl-70 {
  border-left: 70px #f7f7fc solid !important;
}
.white-lilac--bb-70 {
  border-bottom: 70px #f7f7fc solid !important;
}
.white-lilac--by-70 {
  border-top: 70px #f7f7fc solid !important;
  border-bottom: 70px #f7f7fc solid !important;
}
.white-lilac--bx-70 {
  border-right: 70px #f7f7fc solid !important;
  border-left: 70px #f7f7fc solid !important;
}
.white-lilac--ba-71 {
  border: 71px #f7f7fc solid !important;
}
.white-lilac--bt-71 {
  border-top: 71px #f7f7fc solid !important;
}
.white-lilac--br-71 {
  border-right: 71px #f7f7fc solid !important;
}
.white-lilac--bl-71 {
  border-left: 71px #f7f7fc solid !important;
}
.white-lilac--bb-71 {
  border-bottom: 71px #f7f7fc solid !important;
}
.white-lilac--by-71 {
  border-top: 71px #f7f7fc solid !important;
  border-bottom: 71px #f7f7fc solid !important;
}
.white-lilac--bx-71 {
  border-right: 71px #f7f7fc solid !important;
  border-left: 71px #f7f7fc solid !important;
}
.white-lilac--ba-72 {
  border: 72px #f7f7fc solid !important;
}
.white-lilac--bt-72 {
  border-top: 72px #f7f7fc solid !important;
}
.white-lilac--br-72 {
  border-right: 72px #f7f7fc solid !important;
}
.white-lilac--bl-72 {
  border-left: 72px #f7f7fc solid !important;
}
.white-lilac--bb-72 {
  border-bottom: 72px #f7f7fc solid !important;
}
.white-lilac--by-72 {
  border-top: 72px #f7f7fc solid !important;
  border-bottom: 72px #f7f7fc solid !important;
}
.white-lilac--bx-72 {
  border-right: 72px #f7f7fc solid !important;
  border-left: 72px #f7f7fc solid !important;
}
.white-lilac--ba-73 {
  border: 73px #f7f7fc solid !important;
}
.white-lilac--bt-73 {
  border-top: 73px #f7f7fc solid !important;
}
.white-lilac--br-73 {
  border-right: 73px #f7f7fc solid !important;
}
.white-lilac--bl-73 {
  border-left: 73px #f7f7fc solid !important;
}
.white-lilac--bb-73 {
  border-bottom: 73px #f7f7fc solid !important;
}
.white-lilac--by-73 {
  border-top: 73px #f7f7fc solid !important;
  border-bottom: 73px #f7f7fc solid !important;
}
.white-lilac--bx-73 {
  border-right: 73px #f7f7fc solid !important;
  border-left: 73px #f7f7fc solid !important;
}
.white-lilac--ba-74 {
  border: 74px #f7f7fc solid !important;
}
.white-lilac--bt-74 {
  border-top: 74px #f7f7fc solid !important;
}
.white-lilac--br-74 {
  border-right: 74px #f7f7fc solid !important;
}
.white-lilac--bl-74 {
  border-left: 74px #f7f7fc solid !important;
}
.white-lilac--bb-74 {
  border-bottom: 74px #f7f7fc solid !important;
}
.white-lilac--by-74 {
  border-top: 74px #f7f7fc solid !important;
  border-bottom: 74px #f7f7fc solid !important;
}
.white-lilac--bx-74 {
  border-right: 74px #f7f7fc solid !important;
  border-left: 74px #f7f7fc solid !important;
}
.white-lilac--ba-75 {
  border: 75px #f7f7fc solid !important;
}
.white-lilac--bt-75 {
  border-top: 75px #f7f7fc solid !important;
}
.white-lilac--br-75 {
  border-right: 75px #f7f7fc solid !important;
}
.white-lilac--bl-75 {
  border-left: 75px #f7f7fc solid !important;
}
.white-lilac--bb-75 {
  border-bottom: 75px #f7f7fc solid !important;
}
.white-lilac--by-75 {
  border-top: 75px #f7f7fc solid !important;
  border-bottom: 75px #f7f7fc solid !important;
}
.white-lilac--bx-75 {
  border-right: 75px #f7f7fc solid !important;
  border-left: 75px #f7f7fc solid !important;
}
.white-lilac--ba-76 {
  border: 76px #f7f7fc solid !important;
}
.white-lilac--bt-76 {
  border-top: 76px #f7f7fc solid !important;
}
.white-lilac--br-76 {
  border-right: 76px #f7f7fc solid !important;
}
.white-lilac--bl-76 {
  border-left: 76px #f7f7fc solid !important;
}
.white-lilac--bb-76 {
  border-bottom: 76px #f7f7fc solid !important;
}
.white-lilac--by-76 {
  border-top: 76px #f7f7fc solid !important;
  border-bottom: 76px #f7f7fc solid !important;
}
.white-lilac--bx-76 {
  border-right: 76px #f7f7fc solid !important;
  border-left: 76px #f7f7fc solid !important;
}
.white-lilac--ba-77 {
  border: 77px #f7f7fc solid !important;
}
.white-lilac--bt-77 {
  border-top: 77px #f7f7fc solid !important;
}
.white-lilac--br-77 {
  border-right: 77px #f7f7fc solid !important;
}
.white-lilac--bl-77 {
  border-left: 77px #f7f7fc solid !important;
}
.white-lilac--bb-77 {
  border-bottom: 77px #f7f7fc solid !important;
}
.white-lilac--by-77 {
  border-top: 77px #f7f7fc solid !important;
  border-bottom: 77px #f7f7fc solid !important;
}
.white-lilac--bx-77 {
  border-right: 77px #f7f7fc solid !important;
  border-left: 77px #f7f7fc solid !important;
}
.white-lilac--ba-78 {
  border: 78px #f7f7fc solid !important;
}
.white-lilac--bt-78 {
  border-top: 78px #f7f7fc solid !important;
}
.white-lilac--br-78 {
  border-right: 78px #f7f7fc solid !important;
}
.white-lilac--bl-78 {
  border-left: 78px #f7f7fc solid !important;
}
.white-lilac--bb-78 {
  border-bottom: 78px #f7f7fc solid !important;
}
.white-lilac--by-78 {
  border-top: 78px #f7f7fc solid !important;
  border-bottom: 78px #f7f7fc solid !important;
}
.white-lilac--bx-78 {
  border-right: 78px #f7f7fc solid !important;
  border-left: 78px #f7f7fc solid !important;
}
.white-lilac--ba-79 {
  border: 79px #f7f7fc solid !important;
}
.white-lilac--bt-79 {
  border-top: 79px #f7f7fc solid !important;
}
.white-lilac--br-79 {
  border-right: 79px #f7f7fc solid !important;
}
.white-lilac--bl-79 {
  border-left: 79px #f7f7fc solid !important;
}
.white-lilac--bb-79 {
  border-bottom: 79px #f7f7fc solid !important;
}
.white-lilac--by-79 {
  border-top: 79px #f7f7fc solid !important;
  border-bottom: 79px #f7f7fc solid !important;
}
.white-lilac--bx-79 {
  border-right: 79px #f7f7fc solid !important;
  border-left: 79px #f7f7fc solid !important;
}
.white-lilac--ba-80 {
  border: 80px #f7f7fc solid !important;
}
.white-lilac--bt-80 {
  border-top: 80px #f7f7fc solid !important;
}
.white-lilac--br-80 {
  border-right: 80px #f7f7fc solid !important;
}
.white-lilac--bl-80 {
  border-left: 80px #f7f7fc solid !important;
}
.white-lilac--bb-80 {
  border-bottom: 80px #f7f7fc solid !important;
}
.white-lilac--by-80 {
  border-top: 80px #f7f7fc solid !important;
  border-bottom: 80px #f7f7fc solid !important;
}
.white-lilac--bx-80 {
  border-right: 80px #f7f7fc solid !important;
  border-left: 80px #f7f7fc solid !important;
}
.white-lilac--ba-81 {
  border: 81px #f7f7fc solid !important;
}
.white-lilac--bt-81 {
  border-top: 81px #f7f7fc solid !important;
}
.white-lilac--br-81 {
  border-right: 81px #f7f7fc solid !important;
}
.white-lilac--bl-81 {
  border-left: 81px #f7f7fc solid !important;
}
.white-lilac--bb-81 {
  border-bottom: 81px #f7f7fc solid !important;
}
.white-lilac--by-81 {
  border-top: 81px #f7f7fc solid !important;
  border-bottom: 81px #f7f7fc solid !important;
}
.white-lilac--bx-81 {
  border-right: 81px #f7f7fc solid !important;
  border-left: 81px #f7f7fc solid !important;
}
.white-lilac--ba-82 {
  border: 82px #f7f7fc solid !important;
}
.white-lilac--bt-82 {
  border-top: 82px #f7f7fc solid !important;
}
.white-lilac--br-82 {
  border-right: 82px #f7f7fc solid !important;
}
.white-lilac--bl-82 {
  border-left: 82px #f7f7fc solid !important;
}
.white-lilac--bb-82 {
  border-bottom: 82px #f7f7fc solid !important;
}
.white-lilac--by-82 {
  border-top: 82px #f7f7fc solid !important;
  border-bottom: 82px #f7f7fc solid !important;
}
.white-lilac--bx-82 {
  border-right: 82px #f7f7fc solid !important;
  border-left: 82px #f7f7fc solid !important;
}
.white-lilac--ba-83 {
  border: 83px #f7f7fc solid !important;
}
.white-lilac--bt-83 {
  border-top: 83px #f7f7fc solid !important;
}
.white-lilac--br-83 {
  border-right: 83px #f7f7fc solid !important;
}
.white-lilac--bl-83 {
  border-left: 83px #f7f7fc solid !important;
}
.white-lilac--bb-83 {
  border-bottom: 83px #f7f7fc solid !important;
}
.white-lilac--by-83 {
  border-top: 83px #f7f7fc solid !important;
  border-bottom: 83px #f7f7fc solid !important;
}
.white-lilac--bx-83 {
  border-right: 83px #f7f7fc solid !important;
  border-left: 83px #f7f7fc solid !important;
}
.white-lilac--ba-84 {
  border: 84px #f7f7fc solid !important;
}
.white-lilac--bt-84 {
  border-top: 84px #f7f7fc solid !important;
}
.white-lilac--br-84 {
  border-right: 84px #f7f7fc solid !important;
}
.white-lilac--bl-84 {
  border-left: 84px #f7f7fc solid !important;
}
.white-lilac--bb-84 {
  border-bottom: 84px #f7f7fc solid !important;
}
.white-lilac--by-84 {
  border-top: 84px #f7f7fc solid !important;
  border-bottom: 84px #f7f7fc solid !important;
}
.white-lilac--bx-84 {
  border-right: 84px #f7f7fc solid !important;
  border-left: 84px #f7f7fc solid !important;
}
.white-lilac--ba-85 {
  border: 85px #f7f7fc solid !important;
}
.white-lilac--bt-85 {
  border-top: 85px #f7f7fc solid !important;
}
.white-lilac--br-85 {
  border-right: 85px #f7f7fc solid !important;
}
.white-lilac--bl-85 {
  border-left: 85px #f7f7fc solid !important;
}
.white-lilac--bb-85 {
  border-bottom: 85px #f7f7fc solid !important;
}
.white-lilac--by-85 {
  border-top: 85px #f7f7fc solid !important;
  border-bottom: 85px #f7f7fc solid !important;
}
.white-lilac--bx-85 {
  border-right: 85px #f7f7fc solid !important;
  border-left: 85px #f7f7fc solid !important;
}
.white-lilac--ba-86 {
  border: 86px #f7f7fc solid !important;
}
.white-lilac--bt-86 {
  border-top: 86px #f7f7fc solid !important;
}
.white-lilac--br-86 {
  border-right: 86px #f7f7fc solid !important;
}
.white-lilac--bl-86 {
  border-left: 86px #f7f7fc solid !important;
}
.white-lilac--bb-86 {
  border-bottom: 86px #f7f7fc solid !important;
}
.white-lilac--by-86 {
  border-top: 86px #f7f7fc solid !important;
  border-bottom: 86px #f7f7fc solid !important;
}
.white-lilac--bx-86 {
  border-right: 86px #f7f7fc solid !important;
  border-left: 86px #f7f7fc solid !important;
}
.white-lilac--ba-87 {
  border: 87px #f7f7fc solid !important;
}
.white-lilac--bt-87 {
  border-top: 87px #f7f7fc solid !important;
}
.white-lilac--br-87 {
  border-right: 87px #f7f7fc solid !important;
}
.white-lilac--bl-87 {
  border-left: 87px #f7f7fc solid !important;
}
.white-lilac--bb-87 {
  border-bottom: 87px #f7f7fc solid !important;
}
.white-lilac--by-87 {
  border-top: 87px #f7f7fc solid !important;
  border-bottom: 87px #f7f7fc solid !important;
}
.white-lilac--bx-87 {
  border-right: 87px #f7f7fc solid !important;
  border-left: 87px #f7f7fc solid !important;
}
.white-lilac--ba-88 {
  border: 88px #f7f7fc solid !important;
}
.white-lilac--bt-88 {
  border-top: 88px #f7f7fc solid !important;
}
.white-lilac--br-88 {
  border-right: 88px #f7f7fc solid !important;
}
.white-lilac--bl-88 {
  border-left: 88px #f7f7fc solid !important;
}
.white-lilac--bb-88 {
  border-bottom: 88px #f7f7fc solid !important;
}
.white-lilac--by-88 {
  border-top: 88px #f7f7fc solid !important;
  border-bottom: 88px #f7f7fc solid !important;
}
.white-lilac--bx-88 {
  border-right: 88px #f7f7fc solid !important;
  border-left: 88px #f7f7fc solid !important;
}
.white-lilac--ba-89 {
  border: 89px #f7f7fc solid !important;
}
.white-lilac--bt-89 {
  border-top: 89px #f7f7fc solid !important;
}
.white-lilac--br-89 {
  border-right: 89px #f7f7fc solid !important;
}
.white-lilac--bl-89 {
  border-left: 89px #f7f7fc solid !important;
}
.white-lilac--bb-89 {
  border-bottom: 89px #f7f7fc solid !important;
}
.white-lilac--by-89 {
  border-top: 89px #f7f7fc solid !important;
  border-bottom: 89px #f7f7fc solid !important;
}
.white-lilac--bx-89 {
  border-right: 89px #f7f7fc solid !important;
  border-left: 89px #f7f7fc solid !important;
}
.white-lilac--ba-90 {
  border: 90px #f7f7fc solid !important;
}
.white-lilac--bt-90 {
  border-top: 90px #f7f7fc solid !important;
}
.white-lilac--br-90 {
  border-right: 90px #f7f7fc solid !important;
}
.white-lilac--bl-90 {
  border-left: 90px #f7f7fc solid !important;
}
.white-lilac--bb-90 {
  border-bottom: 90px #f7f7fc solid !important;
}
.white-lilac--by-90 {
  border-top: 90px #f7f7fc solid !important;
  border-bottom: 90px #f7f7fc solid !important;
}
.white-lilac--bx-90 {
  border-right: 90px #f7f7fc solid !important;
  border-left: 90px #f7f7fc solid !important;
}
.white-lilac--ba-91 {
  border: 91px #f7f7fc solid !important;
}
.white-lilac--bt-91 {
  border-top: 91px #f7f7fc solid !important;
}
.white-lilac--br-91 {
  border-right: 91px #f7f7fc solid !important;
}
.white-lilac--bl-91 {
  border-left: 91px #f7f7fc solid !important;
}
.white-lilac--bb-91 {
  border-bottom: 91px #f7f7fc solid !important;
}
.white-lilac--by-91 {
  border-top: 91px #f7f7fc solid !important;
  border-bottom: 91px #f7f7fc solid !important;
}
.white-lilac--bx-91 {
  border-right: 91px #f7f7fc solid !important;
  border-left: 91px #f7f7fc solid !important;
}
.white-lilac--ba-92 {
  border: 92px #f7f7fc solid !important;
}
.white-lilac--bt-92 {
  border-top: 92px #f7f7fc solid !important;
}
.white-lilac--br-92 {
  border-right: 92px #f7f7fc solid !important;
}
.white-lilac--bl-92 {
  border-left: 92px #f7f7fc solid !important;
}
.white-lilac--bb-92 {
  border-bottom: 92px #f7f7fc solid !important;
}
.white-lilac--by-92 {
  border-top: 92px #f7f7fc solid !important;
  border-bottom: 92px #f7f7fc solid !important;
}
.white-lilac--bx-92 {
  border-right: 92px #f7f7fc solid !important;
  border-left: 92px #f7f7fc solid !important;
}
.white-lilac--ba-93 {
  border: 93px #f7f7fc solid !important;
}
.white-lilac--bt-93 {
  border-top: 93px #f7f7fc solid !important;
}
.white-lilac--br-93 {
  border-right: 93px #f7f7fc solid !important;
}
.white-lilac--bl-93 {
  border-left: 93px #f7f7fc solid !important;
}
.white-lilac--bb-93 {
  border-bottom: 93px #f7f7fc solid !important;
}
.white-lilac--by-93 {
  border-top: 93px #f7f7fc solid !important;
  border-bottom: 93px #f7f7fc solid !important;
}
.white-lilac--bx-93 {
  border-right: 93px #f7f7fc solid !important;
  border-left: 93px #f7f7fc solid !important;
}
.white-lilac--ba-94 {
  border: 94px #f7f7fc solid !important;
}
.white-lilac--bt-94 {
  border-top: 94px #f7f7fc solid !important;
}
.white-lilac--br-94 {
  border-right: 94px #f7f7fc solid !important;
}
.white-lilac--bl-94 {
  border-left: 94px #f7f7fc solid !important;
}
.white-lilac--bb-94 {
  border-bottom: 94px #f7f7fc solid !important;
}
.white-lilac--by-94 {
  border-top: 94px #f7f7fc solid !important;
  border-bottom: 94px #f7f7fc solid !important;
}
.white-lilac--bx-94 {
  border-right: 94px #f7f7fc solid !important;
  border-left: 94px #f7f7fc solid !important;
}
.white-lilac--ba-95 {
  border: 95px #f7f7fc solid !important;
}
.white-lilac--bt-95 {
  border-top: 95px #f7f7fc solid !important;
}
.white-lilac--br-95 {
  border-right: 95px #f7f7fc solid !important;
}
.white-lilac--bl-95 {
  border-left: 95px #f7f7fc solid !important;
}
.white-lilac--bb-95 {
  border-bottom: 95px #f7f7fc solid !important;
}
.white-lilac--by-95 {
  border-top: 95px #f7f7fc solid !important;
  border-bottom: 95px #f7f7fc solid !important;
}
.white-lilac--bx-95 {
  border-right: 95px #f7f7fc solid !important;
  border-left: 95px #f7f7fc solid !important;
}
.white-lilac--ba-96 {
  border: 96px #f7f7fc solid !important;
}
.white-lilac--bt-96 {
  border-top: 96px #f7f7fc solid !important;
}
.white-lilac--br-96 {
  border-right: 96px #f7f7fc solid !important;
}
.white-lilac--bl-96 {
  border-left: 96px #f7f7fc solid !important;
}
.white-lilac--bb-96 {
  border-bottom: 96px #f7f7fc solid !important;
}
.white-lilac--by-96 {
  border-top: 96px #f7f7fc solid !important;
  border-bottom: 96px #f7f7fc solid !important;
}
.white-lilac--bx-96 {
  border-right: 96px #f7f7fc solid !important;
  border-left: 96px #f7f7fc solid !important;
}
.white-lilac--ba-97 {
  border: 97px #f7f7fc solid !important;
}
.white-lilac--bt-97 {
  border-top: 97px #f7f7fc solid !important;
}
.white-lilac--br-97 {
  border-right: 97px #f7f7fc solid !important;
}
.white-lilac--bl-97 {
  border-left: 97px #f7f7fc solid !important;
}
.white-lilac--bb-97 {
  border-bottom: 97px #f7f7fc solid !important;
}
.white-lilac--by-97 {
  border-top: 97px #f7f7fc solid !important;
  border-bottom: 97px #f7f7fc solid !important;
}
.white-lilac--bx-97 {
  border-right: 97px #f7f7fc solid !important;
  border-left: 97px #f7f7fc solid !important;
}
.white-lilac--ba-98 {
  border: 98px #f7f7fc solid !important;
}
.white-lilac--bt-98 {
  border-top: 98px #f7f7fc solid !important;
}
.white-lilac--br-98 {
  border-right: 98px #f7f7fc solid !important;
}
.white-lilac--bl-98 {
  border-left: 98px #f7f7fc solid !important;
}
.white-lilac--bb-98 {
  border-bottom: 98px #f7f7fc solid !important;
}
.white-lilac--by-98 {
  border-top: 98px #f7f7fc solid !important;
  border-bottom: 98px #f7f7fc solid !important;
}
.white-lilac--bx-98 {
  border-right: 98px #f7f7fc solid !important;
  border-left: 98px #f7f7fc solid !important;
}
.white-lilac--ba-99 {
  border: 99px #f7f7fc solid !important;
}
.white-lilac--bt-99 {
  border-top: 99px #f7f7fc solid !important;
}
.white-lilac--br-99 {
  border-right: 99px #f7f7fc solid !important;
}
.white-lilac--bl-99 {
  border-left: 99px #f7f7fc solid !important;
}
.white-lilac--bb-99 {
  border-bottom: 99px #f7f7fc solid !important;
}
.white-lilac--by-99 {
  border-top: 99px #f7f7fc solid !important;
  border-bottom: 99px #f7f7fc solid !important;
}
.white-lilac--bx-99 {
  border-right: 99px #f7f7fc solid !important;
  border-left: 99px #f7f7fc solid !important;
}
.white-lilac--ba-100 {
  border: 100px #f7f7fc solid !important;
}
.white-lilac--bt-100 {
  border-top: 100px #f7f7fc solid !important;
}
.white-lilac--br-100 {
  border-right: 100px #f7f7fc solid !important;
}
.white-lilac--bl-100 {
  border-left: 100px #f7f7fc solid !important;
}
.white-lilac--bb-100 {
  border-bottom: 100px #f7f7fc solid !important;
}
.white-lilac--by-100 {
  border-top: 100px #f7f7fc solid !important;
  border-bottom: 100px #f7f7fc solid !important;
}
.white-lilac--bx-100 {
  border-right: 100px #f7f7fc solid !important;
  border-left: 100px #f7f7fc solid !important;
}
.santas-gray--ba-1 {
  border: 1px #9a9ab0 solid !important;
}
.santas-gray--bt-1 {
  border-top: 1px #9a9ab0 solid !important;
}
.santas-gray--br-1 {
  border-right: 1px #9a9ab0 solid !important;
}
.santas-gray--bl-1 {
  border-left: 1px #9a9ab0 solid !important;
}
.santas-gray--bb-1 {
  border-bottom: 1px #9a9ab0 solid !important;
}
.santas-gray--by-1 {
  border-top: 1px #9a9ab0 solid !important;
  border-bottom: 1px #9a9ab0 solid !important;
}
.santas-gray--bx-1 {
  border-right: 1px #9a9ab0 solid !important;
  border-left: 1px #9a9ab0 solid !important;
}
.santas-gray--ba-2 {
  border: 2px #9a9ab0 solid !important;
}
.santas-gray--bt-2 {
  border-top: 2px #9a9ab0 solid !important;
}
.santas-gray--br-2 {
  border-right: 2px #9a9ab0 solid !important;
}
.santas-gray--bl-2 {
  border-left: 2px #9a9ab0 solid !important;
}
.santas-gray--bb-2 {
  border-bottom: 2px #9a9ab0 solid !important;
}
.santas-gray--by-2 {
  border-top: 2px #9a9ab0 solid !important;
  border-bottom: 2px #9a9ab0 solid !important;
}
.santas-gray--bx-2 {
  border-right: 2px #9a9ab0 solid !important;
  border-left: 2px #9a9ab0 solid !important;
}
.santas-gray--ba-3 {
  border: 3px #9a9ab0 solid !important;
}
.santas-gray--bt-3 {
  border-top: 3px #9a9ab0 solid !important;
}
.santas-gray--br-3 {
  border-right: 3px #9a9ab0 solid !important;
}
.santas-gray--bl-3 {
  border-left: 3px #9a9ab0 solid !important;
}
.santas-gray--bb-3 {
  border-bottom: 3px #9a9ab0 solid !important;
}
.santas-gray--by-3 {
  border-top: 3px #9a9ab0 solid !important;
  border-bottom: 3px #9a9ab0 solid !important;
}
.santas-gray--bx-3 {
  border-right: 3px #9a9ab0 solid !important;
  border-left: 3px #9a9ab0 solid !important;
}
.santas-gray--ba-4 {
  border: 4px #9a9ab0 solid !important;
}
.santas-gray--bt-4 {
  border-top: 4px #9a9ab0 solid !important;
}
.santas-gray--br-4 {
  border-right: 4px #9a9ab0 solid !important;
}
.santas-gray--bl-4 {
  border-left: 4px #9a9ab0 solid !important;
}
.santas-gray--bb-4 {
  border-bottom: 4px #9a9ab0 solid !important;
}
.santas-gray--by-4 {
  border-top: 4px #9a9ab0 solid !important;
  border-bottom: 4px #9a9ab0 solid !important;
}
.santas-gray--bx-4 {
  border-right: 4px #9a9ab0 solid !important;
  border-left: 4px #9a9ab0 solid !important;
}
.santas-gray--ba-5 {
  border: 5px #9a9ab0 solid !important;
}
.santas-gray--bt-5 {
  border-top: 5px #9a9ab0 solid !important;
}
.santas-gray--br-5 {
  border-right: 5px #9a9ab0 solid !important;
}
.santas-gray--bl-5 {
  border-left: 5px #9a9ab0 solid !important;
}
.santas-gray--bb-5 {
  border-bottom: 5px #9a9ab0 solid !important;
}
.santas-gray--by-5 {
  border-top: 5px #9a9ab0 solid !important;
  border-bottom: 5px #9a9ab0 solid !important;
}
.santas-gray--bx-5 {
  border-right: 5px #9a9ab0 solid !important;
  border-left: 5px #9a9ab0 solid !important;
}
.santas-gray--ba-6 {
  border: 6px #9a9ab0 solid !important;
}
.santas-gray--bt-6 {
  border-top: 6px #9a9ab0 solid !important;
}
.santas-gray--br-6 {
  border-right: 6px #9a9ab0 solid !important;
}
.santas-gray--bl-6 {
  border-left: 6px #9a9ab0 solid !important;
}
.santas-gray--bb-6 {
  border-bottom: 6px #9a9ab0 solid !important;
}
.santas-gray--by-6 {
  border-top: 6px #9a9ab0 solid !important;
  border-bottom: 6px #9a9ab0 solid !important;
}
.santas-gray--bx-6 {
  border-right: 6px #9a9ab0 solid !important;
  border-left: 6px #9a9ab0 solid !important;
}
.santas-gray--ba-7 {
  border: 7px #9a9ab0 solid !important;
}
.santas-gray--bt-7 {
  border-top: 7px #9a9ab0 solid !important;
}
.santas-gray--br-7 {
  border-right: 7px #9a9ab0 solid !important;
}
.santas-gray--bl-7 {
  border-left: 7px #9a9ab0 solid !important;
}
.santas-gray--bb-7 {
  border-bottom: 7px #9a9ab0 solid !important;
}
.santas-gray--by-7 {
  border-top: 7px #9a9ab0 solid !important;
  border-bottom: 7px #9a9ab0 solid !important;
}
.santas-gray--bx-7 {
  border-right: 7px #9a9ab0 solid !important;
  border-left: 7px #9a9ab0 solid !important;
}
.santas-gray--ba-8 {
  border: 8px #9a9ab0 solid !important;
}
.santas-gray--bt-8 {
  border-top: 8px #9a9ab0 solid !important;
}
.santas-gray--br-8 {
  border-right: 8px #9a9ab0 solid !important;
}
.santas-gray--bl-8 {
  border-left: 8px #9a9ab0 solid !important;
}
.santas-gray--bb-8 {
  border-bottom: 8px #9a9ab0 solid !important;
}
.santas-gray--by-8 {
  border-top: 8px #9a9ab0 solid !important;
  border-bottom: 8px #9a9ab0 solid !important;
}
.santas-gray--bx-8 {
  border-right: 8px #9a9ab0 solid !important;
  border-left: 8px #9a9ab0 solid !important;
}
.santas-gray--ba-9 {
  border: 9px #9a9ab0 solid !important;
}
.santas-gray--bt-9 {
  border-top: 9px #9a9ab0 solid !important;
}
.santas-gray--br-9 {
  border-right: 9px #9a9ab0 solid !important;
}
.santas-gray--bl-9 {
  border-left: 9px #9a9ab0 solid !important;
}
.santas-gray--bb-9 {
  border-bottom: 9px #9a9ab0 solid !important;
}
.santas-gray--by-9 {
  border-top: 9px #9a9ab0 solid !important;
  border-bottom: 9px #9a9ab0 solid !important;
}
.santas-gray--bx-9 {
  border-right: 9px #9a9ab0 solid !important;
  border-left: 9px #9a9ab0 solid !important;
}
.santas-gray--ba-10 {
  border: 10px #9a9ab0 solid !important;
}
.santas-gray--bt-10 {
  border-top: 10px #9a9ab0 solid !important;
}
.santas-gray--br-10 {
  border-right: 10px #9a9ab0 solid !important;
}
.santas-gray--bl-10 {
  border-left: 10px #9a9ab0 solid !important;
}
.santas-gray--bb-10 {
  border-bottom: 10px #9a9ab0 solid !important;
}
.santas-gray--by-10 {
  border-top: 10px #9a9ab0 solid !important;
  border-bottom: 10px #9a9ab0 solid !important;
}
.santas-gray--bx-10 {
  border-right: 10px #9a9ab0 solid !important;
  border-left: 10px #9a9ab0 solid !important;
}
.santas-gray--ba-11 {
  border: 11px #9a9ab0 solid !important;
}
.santas-gray--bt-11 {
  border-top: 11px #9a9ab0 solid !important;
}
.santas-gray--br-11 {
  border-right: 11px #9a9ab0 solid !important;
}
.santas-gray--bl-11 {
  border-left: 11px #9a9ab0 solid !important;
}
.santas-gray--bb-11 {
  border-bottom: 11px #9a9ab0 solid !important;
}
.santas-gray--by-11 {
  border-top: 11px #9a9ab0 solid !important;
  border-bottom: 11px #9a9ab0 solid !important;
}
.santas-gray--bx-11 {
  border-right: 11px #9a9ab0 solid !important;
  border-left: 11px #9a9ab0 solid !important;
}
.santas-gray--ba-12 {
  border: 12px #9a9ab0 solid !important;
}
.santas-gray--bt-12 {
  border-top: 12px #9a9ab0 solid !important;
}
.santas-gray--br-12 {
  border-right: 12px #9a9ab0 solid !important;
}
.santas-gray--bl-12 {
  border-left: 12px #9a9ab0 solid !important;
}
.santas-gray--bb-12 {
  border-bottom: 12px #9a9ab0 solid !important;
}
.santas-gray--by-12 {
  border-top: 12px #9a9ab0 solid !important;
  border-bottom: 12px #9a9ab0 solid !important;
}
.santas-gray--bx-12 {
  border-right: 12px #9a9ab0 solid !important;
  border-left: 12px #9a9ab0 solid !important;
}
.santas-gray--ba-13 {
  border: 13px #9a9ab0 solid !important;
}
.santas-gray--bt-13 {
  border-top: 13px #9a9ab0 solid !important;
}
.santas-gray--br-13 {
  border-right: 13px #9a9ab0 solid !important;
}
.santas-gray--bl-13 {
  border-left: 13px #9a9ab0 solid !important;
}
.santas-gray--bb-13 {
  border-bottom: 13px #9a9ab0 solid !important;
}
.santas-gray--by-13 {
  border-top: 13px #9a9ab0 solid !important;
  border-bottom: 13px #9a9ab0 solid !important;
}
.santas-gray--bx-13 {
  border-right: 13px #9a9ab0 solid !important;
  border-left: 13px #9a9ab0 solid !important;
}
.santas-gray--ba-14 {
  border: 14px #9a9ab0 solid !important;
}
.santas-gray--bt-14 {
  border-top: 14px #9a9ab0 solid !important;
}
.santas-gray--br-14 {
  border-right: 14px #9a9ab0 solid !important;
}
.santas-gray--bl-14 {
  border-left: 14px #9a9ab0 solid !important;
}
.santas-gray--bb-14 {
  border-bottom: 14px #9a9ab0 solid !important;
}
.santas-gray--by-14 {
  border-top: 14px #9a9ab0 solid !important;
  border-bottom: 14px #9a9ab0 solid !important;
}
.santas-gray--bx-14 {
  border-right: 14px #9a9ab0 solid !important;
  border-left: 14px #9a9ab0 solid !important;
}
.santas-gray--ba-15 {
  border: 15px #9a9ab0 solid !important;
}
.santas-gray--bt-15 {
  border-top: 15px #9a9ab0 solid !important;
}
.santas-gray--br-15 {
  border-right: 15px #9a9ab0 solid !important;
}
.santas-gray--bl-15 {
  border-left: 15px #9a9ab0 solid !important;
}
.santas-gray--bb-15 {
  border-bottom: 15px #9a9ab0 solid !important;
}
.santas-gray--by-15 {
  border-top: 15px #9a9ab0 solid !important;
  border-bottom: 15px #9a9ab0 solid !important;
}
.santas-gray--bx-15 {
  border-right: 15px #9a9ab0 solid !important;
  border-left: 15px #9a9ab0 solid !important;
}
.santas-gray--ba-16 {
  border: 16px #9a9ab0 solid !important;
}
.santas-gray--bt-16 {
  border-top: 16px #9a9ab0 solid !important;
}
.santas-gray--br-16 {
  border-right: 16px #9a9ab0 solid !important;
}
.santas-gray--bl-16 {
  border-left: 16px #9a9ab0 solid !important;
}
.santas-gray--bb-16 {
  border-bottom: 16px #9a9ab0 solid !important;
}
.santas-gray--by-16 {
  border-top: 16px #9a9ab0 solid !important;
  border-bottom: 16px #9a9ab0 solid !important;
}
.santas-gray--bx-16 {
  border-right: 16px #9a9ab0 solid !important;
  border-left: 16px #9a9ab0 solid !important;
}
.santas-gray--ba-17 {
  border: 17px #9a9ab0 solid !important;
}
.santas-gray--bt-17 {
  border-top: 17px #9a9ab0 solid !important;
}
.santas-gray--br-17 {
  border-right: 17px #9a9ab0 solid !important;
}
.santas-gray--bl-17 {
  border-left: 17px #9a9ab0 solid !important;
}
.santas-gray--bb-17 {
  border-bottom: 17px #9a9ab0 solid !important;
}
.santas-gray--by-17 {
  border-top: 17px #9a9ab0 solid !important;
  border-bottom: 17px #9a9ab0 solid !important;
}
.santas-gray--bx-17 {
  border-right: 17px #9a9ab0 solid !important;
  border-left: 17px #9a9ab0 solid !important;
}
.santas-gray--ba-18 {
  border: 18px #9a9ab0 solid !important;
}
.santas-gray--bt-18 {
  border-top: 18px #9a9ab0 solid !important;
}
.santas-gray--br-18 {
  border-right: 18px #9a9ab0 solid !important;
}
.santas-gray--bl-18 {
  border-left: 18px #9a9ab0 solid !important;
}
.santas-gray--bb-18 {
  border-bottom: 18px #9a9ab0 solid !important;
}
.santas-gray--by-18 {
  border-top: 18px #9a9ab0 solid !important;
  border-bottom: 18px #9a9ab0 solid !important;
}
.santas-gray--bx-18 {
  border-right: 18px #9a9ab0 solid !important;
  border-left: 18px #9a9ab0 solid !important;
}
.santas-gray--ba-19 {
  border: 19px #9a9ab0 solid !important;
}
.santas-gray--bt-19 {
  border-top: 19px #9a9ab0 solid !important;
}
.santas-gray--br-19 {
  border-right: 19px #9a9ab0 solid !important;
}
.santas-gray--bl-19 {
  border-left: 19px #9a9ab0 solid !important;
}
.santas-gray--bb-19 {
  border-bottom: 19px #9a9ab0 solid !important;
}
.santas-gray--by-19 {
  border-top: 19px #9a9ab0 solid !important;
  border-bottom: 19px #9a9ab0 solid !important;
}
.santas-gray--bx-19 {
  border-right: 19px #9a9ab0 solid !important;
  border-left: 19px #9a9ab0 solid !important;
}
.santas-gray--ba-20 {
  border: 20px #9a9ab0 solid !important;
}
.santas-gray--bt-20 {
  border-top: 20px #9a9ab0 solid !important;
}
.santas-gray--br-20 {
  border-right: 20px #9a9ab0 solid !important;
}
.santas-gray--bl-20 {
  border-left: 20px #9a9ab0 solid !important;
}
.santas-gray--bb-20 {
  border-bottom: 20px #9a9ab0 solid !important;
}
.santas-gray--by-20 {
  border-top: 20px #9a9ab0 solid !important;
  border-bottom: 20px #9a9ab0 solid !important;
}
.santas-gray--bx-20 {
  border-right: 20px #9a9ab0 solid !important;
  border-left: 20px #9a9ab0 solid !important;
}
.santas-gray--ba-21 {
  border: 21px #9a9ab0 solid !important;
}
.santas-gray--bt-21 {
  border-top: 21px #9a9ab0 solid !important;
}
.santas-gray--br-21 {
  border-right: 21px #9a9ab0 solid !important;
}
.santas-gray--bl-21 {
  border-left: 21px #9a9ab0 solid !important;
}
.santas-gray--bb-21 {
  border-bottom: 21px #9a9ab0 solid !important;
}
.santas-gray--by-21 {
  border-top: 21px #9a9ab0 solid !important;
  border-bottom: 21px #9a9ab0 solid !important;
}
.santas-gray--bx-21 {
  border-right: 21px #9a9ab0 solid !important;
  border-left: 21px #9a9ab0 solid !important;
}
.santas-gray--ba-22 {
  border: 22px #9a9ab0 solid !important;
}
.santas-gray--bt-22 {
  border-top: 22px #9a9ab0 solid !important;
}
.santas-gray--br-22 {
  border-right: 22px #9a9ab0 solid !important;
}
.santas-gray--bl-22 {
  border-left: 22px #9a9ab0 solid !important;
}
.santas-gray--bb-22 {
  border-bottom: 22px #9a9ab0 solid !important;
}
.santas-gray--by-22 {
  border-top: 22px #9a9ab0 solid !important;
  border-bottom: 22px #9a9ab0 solid !important;
}
.santas-gray--bx-22 {
  border-right: 22px #9a9ab0 solid !important;
  border-left: 22px #9a9ab0 solid !important;
}
.santas-gray--ba-23 {
  border: 23px #9a9ab0 solid !important;
}
.santas-gray--bt-23 {
  border-top: 23px #9a9ab0 solid !important;
}
.santas-gray--br-23 {
  border-right: 23px #9a9ab0 solid !important;
}
.santas-gray--bl-23 {
  border-left: 23px #9a9ab0 solid !important;
}
.santas-gray--bb-23 {
  border-bottom: 23px #9a9ab0 solid !important;
}
.santas-gray--by-23 {
  border-top: 23px #9a9ab0 solid !important;
  border-bottom: 23px #9a9ab0 solid !important;
}
.santas-gray--bx-23 {
  border-right: 23px #9a9ab0 solid !important;
  border-left: 23px #9a9ab0 solid !important;
}
.santas-gray--ba-24 {
  border: 24px #9a9ab0 solid !important;
}
.santas-gray--bt-24 {
  border-top: 24px #9a9ab0 solid !important;
}
.santas-gray--br-24 {
  border-right: 24px #9a9ab0 solid !important;
}
.santas-gray--bl-24 {
  border-left: 24px #9a9ab0 solid !important;
}
.santas-gray--bb-24 {
  border-bottom: 24px #9a9ab0 solid !important;
}
.santas-gray--by-24 {
  border-top: 24px #9a9ab0 solid !important;
  border-bottom: 24px #9a9ab0 solid !important;
}
.santas-gray--bx-24 {
  border-right: 24px #9a9ab0 solid !important;
  border-left: 24px #9a9ab0 solid !important;
}
.santas-gray--ba-25 {
  border: 25px #9a9ab0 solid !important;
}
.santas-gray--bt-25 {
  border-top: 25px #9a9ab0 solid !important;
}
.santas-gray--br-25 {
  border-right: 25px #9a9ab0 solid !important;
}
.santas-gray--bl-25 {
  border-left: 25px #9a9ab0 solid !important;
}
.santas-gray--bb-25 {
  border-bottom: 25px #9a9ab0 solid !important;
}
.santas-gray--by-25 {
  border-top: 25px #9a9ab0 solid !important;
  border-bottom: 25px #9a9ab0 solid !important;
}
.santas-gray--bx-25 {
  border-right: 25px #9a9ab0 solid !important;
  border-left: 25px #9a9ab0 solid !important;
}
.santas-gray--ba-26 {
  border: 26px #9a9ab0 solid !important;
}
.santas-gray--bt-26 {
  border-top: 26px #9a9ab0 solid !important;
}
.santas-gray--br-26 {
  border-right: 26px #9a9ab0 solid !important;
}
.santas-gray--bl-26 {
  border-left: 26px #9a9ab0 solid !important;
}
.santas-gray--bb-26 {
  border-bottom: 26px #9a9ab0 solid !important;
}
.santas-gray--by-26 {
  border-top: 26px #9a9ab0 solid !important;
  border-bottom: 26px #9a9ab0 solid !important;
}
.santas-gray--bx-26 {
  border-right: 26px #9a9ab0 solid !important;
  border-left: 26px #9a9ab0 solid !important;
}
.santas-gray--ba-27 {
  border: 27px #9a9ab0 solid !important;
}
.santas-gray--bt-27 {
  border-top: 27px #9a9ab0 solid !important;
}
.santas-gray--br-27 {
  border-right: 27px #9a9ab0 solid !important;
}
.santas-gray--bl-27 {
  border-left: 27px #9a9ab0 solid !important;
}
.santas-gray--bb-27 {
  border-bottom: 27px #9a9ab0 solid !important;
}
.santas-gray--by-27 {
  border-top: 27px #9a9ab0 solid !important;
  border-bottom: 27px #9a9ab0 solid !important;
}
.santas-gray--bx-27 {
  border-right: 27px #9a9ab0 solid !important;
  border-left: 27px #9a9ab0 solid !important;
}
.santas-gray--ba-28 {
  border: 28px #9a9ab0 solid !important;
}
.santas-gray--bt-28 {
  border-top: 28px #9a9ab0 solid !important;
}
.santas-gray--br-28 {
  border-right: 28px #9a9ab0 solid !important;
}
.santas-gray--bl-28 {
  border-left: 28px #9a9ab0 solid !important;
}
.santas-gray--bb-28 {
  border-bottom: 28px #9a9ab0 solid !important;
}
.santas-gray--by-28 {
  border-top: 28px #9a9ab0 solid !important;
  border-bottom: 28px #9a9ab0 solid !important;
}
.santas-gray--bx-28 {
  border-right: 28px #9a9ab0 solid !important;
  border-left: 28px #9a9ab0 solid !important;
}
.santas-gray--ba-29 {
  border: 29px #9a9ab0 solid !important;
}
.santas-gray--bt-29 {
  border-top: 29px #9a9ab0 solid !important;
}
.santas-gray--br-29 {
  border-right: 29px #9a9ab0 solid !important;
}
.santas-gray--bl-29 {
  border-left: 29px #9a9ab0 solid !important;
}
.santas-gray--bb-29 {
  border-bottom: 29px #9a9ab0 solid !important;
}
.santas-gray--by-29 {
  border-top: 29px #9a9ab0 solid !important;
  border-bottom: 29px #9a9ab0 solid !important;
}
.santas-gray--bx-29 {
  border-right: 29px #9a9ab0 solid !important;
  border-left: 29px #9a9ab0 solid !important;
}
.santas-gray--ba-30 {
  border: 30px #9a9ab0 solid !important;
}
.santas-gray--bt-30 {
  border-top: 30px #9a9ab0 solid !important;
}
.santas-gray--br-30 {
  border-right: 30px #9a9ab0 solid !important;
}
.santas-gray--bl-30 {
  border-left: 30px #9a9ab0 solid !important;
}
.santas-gray--bb-30 {
  border-bottom: 30px #9a9ab0 solid !important;
}
.santas-gray--by-30 {
  border-top: 30px #9a9ab0 solid !important;
  border-bottom: 30px #9a9ab0 solid !important;
}
.santas-gray--bx-30 {
  border-right: 30px #9a9ab0 solid !important;
  border-left: 30px #9a9ab0 solid !important;
}
.santas-gray--ba-31 {
  border: 31px #9a9ab0 solid !important;
}
.santas-gray--bt-31 {
  border-top: 31px #9a9ab0 solid !important;
}
.santas-gray--br-31 {
  border-right: 31px #9a9ab0 solid !important;
}
.santas-gray--bl-31 {
  border-left: 31px #9a9ab0 solid !important;
}
.santas-gray--bb-31 {
  border-bottom: 31px #9a9ab0 solid !important;
}
.santas-gray--by-31 {
  border-top: 31px #9a9ab0 solid !important;
  border-bottom: 31px #9a9ab0 solid !important;
}
.santas-gray--bx-31 {
  border-right: 31px #9a9ab0 solid !important;
  border-left: 31px #9a9ab0 solid !important;
}
.santas-gray--ba-32 {
  border: 32px #9a9ab0 solid !important;
}
.santas-gray--bt-32 {
  border-top: 32px #9a9ab0 solid !important;
}
.santas-gray--br-32 {
  border-right: 32px #9a9ab0 solid !important;
}
.santas-gray--bl-32 {
  border-left: 32px #9a9ab0 solid !important;
}
.santas-gray--bb-32 {
  border-bottom: 32px #9a9ab0 solid !important;
}
.santas-gray--by-32 {
  border-top: 32px #9a9ab0 solid !important;
  border-bottom: 32px #9a9ab0 solid !important;
}
.santas-gray--bx-32 {
  border-right: 32px #9a9ab0 solid !important;
  border-left: 32px #9a9ab0 solid !important;
}
.santas-gray--ba-33 {
  border: 33px #9a9ab0 solid !important;
}
.santas-gray--bt-33 {
  border-top: 33px #9a9ab0 solid !important;
}
.santas-gray--br-33 {
  border-right: 33px #9a9ab0 solid !important;
}
.santas-gray--bl-33 {
  border-left: 33px #9a9ab0 solid !important;
}
.santas-gray--bb-33 {
  border-bottom: 33px #9a9ab0 solid !important;
}
.santas-gray--by-33 {
  border-top: 33px #9a9ab0 solid !important;
  border-bottom: 33px #9a9ab0 solid !important;
}
.santas-gray--bx-33 {
  border-right: 33px #9a9ab0 solid !important;
  border-left: 33px #9a9ab0 solid !important;
}
.santas-gray--ba-34 {
  border: 34px #9a9ab0 solid !important;
}
.santas-gray--bt-34 {
  border-top: 34px #9a9ab0 solid !important;
}
.santas-gray--br-34 {
  border-right: 34px #9a9ab0 solid !important;
}
.santas-gray--bl-34 {
  border-left: 34px #9a9ab0 solid !important;
}
.santas-gray--bb-34 {
  border-bottom: 34px #9a9ab0 solid !important;
}
.santas-gray--by-34 {
  border-top: 34px #9a9ab0 solid !important;
  border-bottom: 34px #9a9ab0 solid !important;
}
.santas-gray--bx-34 {
  border-right: 34px #9a9ab0 solid !important;
  border-left: 34px #9a9ab0 solid !important;
}
.santas-gray--ba-35 {
  border: 35px #9a9ab0 solid !important;
}
.santas-gray--bt-35 {
  border-top: 35px #9a9ab0 solid !important;
}
.santas-gray--br-35 {
  border-right: 35px #9a9ab0 solid !important;
}
.santas-gray--bl-35 {
  border-left: 35px #9a9ab0 solid !important;
}
.santas-gray--bb-35 {
  border-bottom: 35px #9a9ab0 solid !important;
}
.santas-gray--by-35 {
  border-top: 35px #9a9ab0 solid !important;
  border-bottom: 35px #9a9ab0 solid !important;
}
.santas-gray--bx-35 {
  border-right: 35px #9a9ab0 solid !important;
  border-left: 35px #9a9ab0 solid !important;
}
.santas-gray--ba-36 {
  border: 36px #9a9ab0 solid !important;
}
.santas-gray--bt-36 {
  border-top: 36px #9a9ab0 solid !important;
}
.santas-gray--br-36 {
  border-right: 36px #9a9ab0 solid !important;
}
.santas-gray--bl-36 {
  border-left: 36px #9a9ab0 solid !important;
}
.santas-gray--bb-36 {
  border-bottom: 36px #9a9ab0 solid !important;
}
.santas-gray--by-36 {
  border-top: 36px #9a9ab0 solid !important;
  border-bottom: 36px #9a9ab0 solid !important;
}
.santas-gray--bx-36 {
  border-right: 36px #9a9ab0 solid !important;
  border-left: 36px #9a9ab0 solid !important;
}
.santas-gray--ba-37 {
  border: 37px #9a9ab0 solid !important;
}
.santas-gray--bt-37 {
  border-top: 37px #9a9ab0 solid !important;
}
.santas-gray--br-37 {
  border-right: 37px #9a9ab0 solid !important;
}
.santas-gray--bl-37 {
  border-left: 37px #9a9ab0 solid !important;
}
.santas-gray--bb-37 {
  border-bottom: 37px #9a9ab0 solid !important;
}
.santas-gray--by-37 {
  border-top: 37px #9a9ab0 solid !important;
  border-bottom: 37px #9a9ab0 solid !important;
}
.santas-gray--bx-37 {
  border-right: 37px #9a9ab0 solid !important;
  border-left: 37px #9a9ab0 solid !important;
}
.santas-gray--ba-38 {
  border: 38px #9a9ab0 solid !important;
}
.santas-gray--bt-38 {
  border-top: 38px #9a9ab0 solid !important;
}
.santas-gray--br-38 {
  border-right: 38px #9a9ab0 solid !important;
}
.santas-gray--bl-38 {
  border-left: 38px #9a9ab0 solid !important;
}
.santas-gray--bb-38 {
  border-bottom: 38px #9a9ab0 solid !important;
}
.santas-gray--by-38 {
  border-top: 38px #9a9ab0 solid !important;
  border-bottom: 38px #9a9ab0 solid !important;
}
.santas-gray--bx-38 {
  border-right: 38px #9a9ab0 solid !important;
  border-left: 38px #9a9ab0 solid !important;
}
.santas-gray--ba-39 {
  border: 39px #9a9ab0 solid !important;
}
.santas-gray--bt-39 {
  border-top: 39px #9a9ab0 solid !important;
}
.santas-gray--br-39 {
  border-right: 39px #9a9ab0 solid !important;
}
.santas-gray--bl-39 {
  border-left: 39px #9a9ab0 solid !important;
}
.santas-gray--bb-39 {
  border-bottom: 39px #9a9ab0 solid !important;
}
.santas-gray--by-39 {
  border-top: 39px #9a9ab0 solid !important;
  border-bottom: 39px #9a9ab0 solid !important;
}
.santas-gray--bx-39 {
  border-right: 39px #9a9ab0 solid !important;
  border-left: 39px #9a9ab0 solid !important;
}
.santas-gray--ba-40 {
  border: 40px #9a9ab0 solid !important;
}
.santas-gray--bt-40 {
  border-top: 40px #9a9ab0 solid !important;
}
.santas-gray--br-40 {
  border-right: 40px #9a9ab0 solid !important;
}
.santas-gray--bl-40 {
  border-left: 40px #9a9ab0 solid !important;
}
.santas-gray--bb-40 {
  border-bottom: 40px #9a9ab0 solid !important;
}
.santas-gray--by-40 {
  border-top: 40px #9a9ab0 solid !important;
  border-bottom: 40px #9a9ab0 solid !important;
}
.santas-gray--bx-40 {
  border-right: 40px #9a9ab0 solid !important;
  border-left: 40px #9a9ab0 solid !important;
}
.santas-gray--ba-41 {
  border: 41px #9a9ab0 solid !important;
}
.santas-gray--bt-41 {
  border-top: 41px #9a9ab0 solid !important;
}
.santas-gray--br-41 {
  border-right: 41px #9a9ab0 solid !important;
}
.santas-gray--bl-41 {
  border-left: 41px #9a9ab0 solid !important;
}
.santas-gray--bb-41 {
  border-bottom: 41px #9a9ab0 solid !important;
}
.santas-gray--by-41 {
  border-top: 41px #9a9ab0 solid !important;
  border-bottom: 41px #9a9ab0 solid !important;
}
.santas-gray--bx-41 {
  border-right: 41px #9a9ab0 solid !important;
  border-left: 41px #9a9ab0 solid !important;
}
.santas-gray--ba-42 {
  border: 42px #9a9ab0 solid !important;
}
.santas-gray--bt-42 {
  border-top: 42px #9a9ab0 solid !important;
}
.santas-gray--br-42 {
  border-right: 42px #9a9ab0 solid !important;
}
.santas-gray--bl-42 {
  border-left: 42px #9a9ab0 solid !important;
}
.santas-gray--bb-42 {
  border-bottom: 42px #9a9ab0 solid !important;
}
.santas-gray--by-42 {
  border-top: 42px #9a9ab0 solid !important;
  border-bottom: 42px #9a9ab0 solid !important;
}
.santas-gray--bx-42 {
  border-right: 42px #9a9ab0 solid !important;
  border-left: 42px #9a9ab0 solid !important;
}
.santas-gray--ba-43 {
  border: 43px #9a9ab0 solid !important;
}
.santas-gray--bt-43 {
  border-top: 43px #9a9ab0 solid !important;
}
.santas-gray--br-43 {
  border-right: 43px #9a9ab0 solid !important;
}
.santas-gray--bl-43 {
  border-left: 43px #9a9ab0 solid !important;
}
.santas-gray--bb-43 {
  border-bottom: 43px #9a9ab0 solid !important;
}
.santas-gray--by-43 {
  border-top: 43px #9a9ab0 solid !important;
  border-bottom: 43px #9a9ab0 solid !important;
}
.santas-gray--bx-43 {
  border-right: 43px #9a9ab0 solid !important;
  border-left: 43px #9a9ab0 solid !important;
}
.santas-gray--ba-44 {
  border: 44px #9a9ab0 solid !important;
}
.santas-gray--bt-44 {
  border-top: 44px #9a9ab0 solid !important;
}
.santas-gray--br-44 {
  border-right: 44px #9a9ab0 solid !important;
}
.santas-gray--bl-44 {
  border-left: 44px #9a9ab0 solid !important;
}
.santas-gray--bb-44 {
  border-bottom: 44px #9a9ab0 solid !important;
}
.santas-gray--by-44 {
  border-top: 44px #9a9ab0 solid !important;
  border-bottom: 44px #9a9ab0 solid !important;
}
.santas-gray--bx-44 {
  border-right: 44px #9a9ab0 solid !important;
  border-left: 44px #9a9ab0 solid !important;
}
.santas-gray--ba-45 {
  border: 45px #9a9ab0 solid !important;
}
.santas-gray--bt-45 {
  border-top: 45px #9a9ab0 solid !important;
}
.santas-gray--br-45 {
  border-right: 45px #9a9ab0 solid !important;
}
.santas-gray--bl-45 {
  border-left: 45px #9a9ab0 solid !important;
}
.santas-gray--bb-45 {
  border-bottom: 45px #9a9ab0 solid !important;
}
.santas-gray--by-45 {
  border-top: 45px #9a9ab0 solid !important;
  border-bottom: 45px #9a9ab0 solid !important;
}
.santas-gray--bx-45 {
  border-right: 45px #9a9ab0 solid !important;
  border-left: 45px #9a9ab0 solid !important;
}
.santas-gray--ba-46 {
  border: 46px #9a9ab0 solid !important;
}
.santas-gray--bt-46 {
  border-top: 46px #9a9ab0 solid !important;
}
.santas-gray--br-46 {
  border-right: 46px #9a9ab0 solid !important;
}
.santas-gray--bl-46 {
  border-left: 46px #9a9ab0 solid !important;
}
.santas-gray--bb-46 {
  border-bottom: 46px #9a9ab0 solid !important;
}
.santas-gray--by-46 {
  border-top: 46px #9a9ab0 solid !important;
  border-bottom: 46px #9a9ab0 solid !important;
}
.santas-gray--bx-46 {
  border-right: 46px #9a9ab0 solid !important;
  border-left: 46px #9a9ab0 solid !important;
}
.santas-gray--ba-47 {
  border: 47px #9a9ab0 solid !important;
}
.santas-gray--bt-47 {
  border-top: 47px #9a9ab0 solid !important;
}
.santas-gray--br-47 {
  border-right: 47px #9a9ab0 solid !important;
}
.santas-gray--bl-47 {
  border-left: 47px #9a9ab0 solid !important;
}
.santas-gray--bb-47 {
  border-bottom: 47px #9a9ab0 solid !important;
}
.santas-gray--by-47 {
  border-top: 47px #9a9ab0 solid !important;
  border-bottom: 47px #9a9ab0 solid !important;
}
.santas-gray--bx-47 {
  border-right: 47px #9a9ab0 solid !important;
  border-left: 47px #9a9ab0 solid !important;
}
.santas-gray--ba-48 {
  border: 48px #9a9ab0 solid !important;
}
.santas-gray--bt-48 {
  border-top: 48px #9a9ab0 solid !important;
}
.santas-gray--br-48 {
  border-right: 48px #9a9ab0 solid !important;
}
.santas-gray--bl-48 {
  border-left: 48px #9a9ab0 solid !important;
}
.santas-gray--bb-48 {
  border-bottom: 48px #9a9ab0 solid !important;
}
.santas-gray--by-48 {
  border-top: 48px #9a9ab0 solid !important;
  border-bottom: 48px #9a9ab0 solid !important;
}
.santas-gray--bx-48 {
  border-right: 48px #9a9ab0 solid !important;
  border-left: 48px #9a9ab0 solid !important;
}
.santas-gray--ba-49 {
  border: 49px #9a9ab0 solid !important;
}
.santas-gray--bt-49 {
  border-top: 49px #9a9ab0 solid !important;
}
.santas-gray--br-49 {
  border-right: 49px #9a9ab0 solid !important;
}
.santas-gray--bl-49 {
  border-left: 49px #9a9ab0 solid !important;
}
.santas-gray--bb-49 {
  border-bottom: 49px #9a9ab0 solid !important;
}
.santas-gray--by-49 {
  border-top: 49px #9a9ab0 solid !important;
  border-bottom: 49px #9a9ab0 solid !important;
}
.santas-gray--bx-49 {
  border-right: 49px #9a9ab0 solid !important;
  border-left: 49px #9a9ab0 solid !important;
}
.santas-gray--ba-50 {
  border: 50px #9a9ab0 solid !important;
}
.santas-gray--bt-50 {
  border-top: 50px #9a9ab0 solid !important;
}
.santas-gray--br-50 {
  border-right: 50px #9a9ab0 solid !important;
}
.santas-gray--bl-50 {
  border-left: 50px #9a9ab0 solid !important;
}
.santas-gray--bb-50 {
  border-bottom: 50px #9a9ab0 solid !important;
}
.santas-gray--by-50 {
  border-top: 50px #9a9ab0 solid !important;
  border-bottom: 50px #9a9ab0 solid !important;
}
.santas-gray--bx-50 {
  border-right: 50px #9a9ab0 solid !important;
  border-left: 50px #9a9ab0 solid !important;
}
.santas-gray--ba-51 {
  border: 51px #9a9ab0 solid !important;
}
.santas-gray--bt-51 {
  border-top: 51px #9a9ab0 solid !important;
}
.santas-gray--br-51 {
  border-right: 51px #9a9ab0 solid !important;
}
.santas-gray--bl-51 {
  border-left: 51px #9a9ab0 solid !important;
}
.santas-gray--bb-51 {
  border-bottom: 51px #9a9ab0 solid !important;
}
.santas-gray--by-51 {
  border-top: 51px #9a9ab0 solid !important;
  border-bottom: 51px #9a9ab0 solid !important;
}
.santas-gray--bx-51 {
  border-right: 51px #9a9ab0 solid !important;
  border-left: 51px #9a9ab0 solid !important;
}
.santas-gray--ba-52 {
  border: 52px #9a9ab0 solid !important;
}
.santas-gray--bt-52 {
  border-top: 52px #9a9ab0 solid !important;
}
.santas-gray--br-52 {
  border-right: 52px #9a9ab0 solid !important;
}
.santas-gray--bl-52 {
  border-left: 52px #9a9ab0 solid !important;
}
.santas-gray--bb-52 {
  border-bottom: 52px #9a9ab0 solid !important;
}
.santas-gray--by-52 {
  border-top: 52px #9a9ab0 solid !important;
  border-bottom: 52px #9a9ab0 solid !important;
}
.santas-gray--bx-52 {
  border-right: 52px #9a9ab0 solid !important;
  border-left: 52px #9a9ab0 solid !important;
}
.santas-gray--ba-53 {
  border: 53px #9a9ab0 solid !important;
}
.santas-gray--bt-53 {
  border-top: 53px #9a9ab0 solid !important;
}
.santas-gray--br-53 {
  border-right: 53px #9a9ab0 solid !important;
}
.santas-gray--bl-53 {
  border-left: 53px #9a9ab0 solid !important;
}
.santas-gray--bb-53 {
  border-bottom: 53px #9a9ab0 solid !important;
}
.santas-gray--by-53 {
  border-top: 53px #9a9ab0 solid !important;
  border-bottom: 53px #9a9ab0 solid !important;
}
.santas-gray--bx-53 {
  border-right: 53px #9a9ab0 solid !important;
  border-left: 53px #9a9ab0 solid !important;
}
.santas-gray--ba-54 {
  border: 54px #9a9ab0 solid !important;
}
.santas-gray--bt-54 {
  border-top: 54px #9a9ab0 solid !important;
}
.santas-gray--br-54 {
  border-right: 54px #9a9ab0 solid !important;
}
.santas-gray--bl-54 {
  border-left: 54px #9a9ab0 solid !important;
}
.santas-gray--bb-54 {
  border-bottom: 54px #9a9ab0 solid !important;
}
.santas-gray--by-54 {
  border-top: 54px #9a9ab0 solid !important;
  border-bottom: 54px #9a9ab0 solid !important;
}
.santas-gray--bx-54 {
  border-right: 54px #9a9ab0 solid !important;
  border-left: 54px #9a9ab0 solid !important;
}
.santas-gray--ba-55 {
  border: 55px #9a9ab0 solid !important;
}
.santas-gray--bt-55 {
  border-top: 55px #9a9ab0 solid !important;
}
.santas-gray--br-55 {
  border-right: 55px #9a9ab0 solid !important;
}
.santas-gray--bl-55 {
  border-left: 55px #9a9ab0 solid !important;
}
.santas-gray--bb-55 {
  border-bottom: 55px #9a9ab0 solid !important;
}
.santas-gray--by-55 {
  border-top: 55px #9a9ab0 solid !important;
  border-bottom: 55px #9a9ab0 solid !important;
}
.santas-gray--bx-55 {
  border-right: 55px #9a9ab0 solid !important;
  border-left: 55px #9a9ab0 solid !important;
}
.santas-gray--ba-56 {
  border: 56px #9a9ab0 solid !important;
}
.santas-gray--bt-56 {
  border-top: 56px #9a9ab0 solid !important;
}
.santas-gray--br-56 {
  border-right: 56px #9a9ab0 solid !important;
}
.santas-gray--bl-56 {
  border-left: 56px #9a9ab0 solid !important;
}
.santas-gray--bb-56 {
  border-bottom: 56px #9a9ab0 solid !important;
}
.santas-gray--by-56 {
  border-top: 56px #9a9ab0 solid !important;
  border-bottom: 56px #9a9ab0 solid !important;
}
.santas-gray--bx-56 {
  border-right: 56px #9a9ab0 solid !important;
  border-left: 56px #9a9ab0 solid !important;
}
.santas-gray--ba-57 {
  border: 57px #9a9ab0 solid !important;
}
.santas-gray--bt-57 {
  border-top: 57px #9a9ab0 solid !important;
}
.santas-gray--br-57 {
  border-right: 57px #9a9ab0 solid !important;
}
.santas-gray--bl-57 {
  border-left: 57px #9a9ab0 solid !important;
}
.santas-gray--bb-57 {
  border-bottom: 57px #9a9ab0 solid !important;
}
.santas-gray--by-57 {
  border-top: 57px #9a9ab0 solid !important;
  border-bottom: 57px #9a9ab0 solid !important;
}
.santas-gray--bx-57 {
  border-right: 57px #9a9ab0 solid !important;
  border-left: 57px #9a9ab0 solid !important;
}
.santas-gray--ba-58 {
  border: 58px #9a9ab0 solid !important;
}
.santas-gray--bt-58 {
  border-top: 58px #9a9ab0 solid !important;
}
.santas-gray--br-58 {
  border-right: 58px #9a9ab0 solid !important;
}
.santas-gray--bl-58 {
  border-left: 58px #9a9ab0 solid !important;
}
.santas-gray--bb-58 {
  border-bottom: 58px #9a9ab0 solid !important;
}
.santas-gray--by-58 {
  border-top: 58px #9a9ab0 solid !important;
  border-bottom: 58px #9a9ab0 solid !important;
}
.santas-gray--bx-58 {
  border-right: 58px #9a9ab0 solid !important;
  border-left: 58px #9a9ab0 solid !important;
}
.santas-gray--ba-59 {
  border: 59px #9a9ab0 solid !important;
}
.santas-gray--bt-59 {
  border-top: 59px #9a9ab0 solid !important;
}
.santas-gray--br-59 {
  border-right: 59px #9a9ab0 solid !important;
}
.santas-gray--bl-59 {
  border-left: 59px #9a9ab0 solid !important;
}
.santas-gray--bb-59 {
  border-bottom: 59px #9a9ab0 solid !important;
}
.santas-gray--by-59 {
  border-top: 59px #9a9ab0 solid !important;
  border-bottom: 59px #9a9ab0 solid !important;
}
.santas-gray--bx-59 {
  border-right: 59px #9a9ab0 solid !important;
  border-left: 59px #9a9ab0 solid !important;
}
.santas-gray--ba-60 {
  border: 60px #9a9ab0 solid !important;
}
.santas-gray--bt-60 {
  border-top: 60px #9a9ab0 solid !important;
}
.santas-gray--br-60 {
  border-right: 60px #9a9ab0 solid !important;
}
.santas-gray--bl-60 {
  border-left: 60px #9a9ab0 solid !important;
}
.santas-gray--bb-60 {
  border-bottom: 60px #9a9ab0 solid !important;
}
.santas-gray--by-60 {
  border-top: 60px #9a9ab0 solid !important;
  border-bottom: 60px #9a9ab0 solid !important;
}
.santas-gray--bx-60 {
  border-right: 60px #9a9ab0 solid !important;
  border-left: 60px #9a9ab0 solid !important;
}
.santas-gray--ba-61 {
  border: 61px #9a9ab0 solid !important;
}
.santas-gray--bt-61 {
  border-top: 61px #9a9ab0 solid !important;
}
.santas-gray--br-61 {
  border-right: 61px #9a9ab0 solid !important;
}
.santas-gray--bl-61 {
  border-left: 61px #9a9ab0 solid !important;
}
.santas-gray--bb-61 {
  border-bottom: 61px #9a9ab0 solid !important;
}
.santas-gray--by-61 {
  border-top: 61px #9a9ab0 solid !important;
  border-bottom: 61px #9a9ab0 solid !important;
}
.santas-gray--bx-61 {
  border-right: 61px #9a9ab0 solid !important;
  border-left: 61px #9a9ab0 solid !important;
}
.santas-gray--ba-62 {
  border: 62px #9a9ab0 solid !important;
}
.santas-gray--bt-62 {
  border-top: 62px #9a9ab0 solid !important;
}
.santas-gray--br-62 {
  border-right: 62px #9a9ab0 solid !important;
}
.santas-gray--bl-62 {
  border-left: 62px #9a9ab0 solid !important;
}
.santas-gray--bb-62 {
  border-bottom: 62px #9a9ab0 solid !important;
}
.santas-gray--by-62 {
  border-top: 62px #9a9ab0 solid !important;
  border-bottom: 62px #9a9ab0 solid !important;
}
.santas-gray--bx-62 {
  border-right: 62px #9a9ab0 solid !important;
  border-left: 62px #9a9ab0 solid !important;
}
.santas-gray--ba-63 {
  border: 63px #9a9ab0 solid !important;
}
.santas-gray--bt-63 {
  border-top: 63px #9a9ab0 solid !important;
}
.santas-gray--br-63 {
  border-right: 63px #9a9ab0 solid !important;
}
.santas-gray--bl-63 {
  border-left: 63px #9a9ab0 solid !important;
}
.santas-gray--bb-63 {
  border-bottom: 63px #9a9ab0 solid !important;
}
.santas-gray--by-63 {
  border-top: 63px #9a9ab0 solid !important;
  border-bottom: 63px #9a9ab0 solid !important;
}
.santas-gray--bx-63 {
  border-right: 63px #9a9ab0 solid !important;
  border-left: 63px #9a9ab0 solid !important;
}
.santas-gray--ba-64 {
  border: 64px #9a9ab0 solid !important;
}
.santas-gray--bt-64 {
  border-top: 64px #9a9ab0 solid !important;
}
.santas-gray--br-64 {
  border-right: 64px #9a9ab0 solid !important;
}
.santas-gray--bl-64 {
  border-left: 64px #9a9ab0 solid !important;
}
.santas-gray--bb-64 {
  border-bottom: 64px #9a9ab0 solid !important;
}
.santas-gray--by-64 {
  border-top: 64px #9a9ab0 solid !important;
  border-bottom: 64px #9a9ab0 solid !important;
}
.santas-gray--bx-64 {
  border-right: 64px #9a9ab0 solid !important;
  border-left: 64px #9a9ab0 solid !important;
}
.santas-gray--ba-65 {
  border: 65px #9a9ab0 solid !important;
}
.santas-gray--bt-65 {
  border-top: 65px #9a9ab0 solid !important;
}
.santas-gray--br-65 {
  border-right: 65px #9a9ab0 solid !important;
}
.santas-gray--bl-65 {
  border-left: 65px #9a9ab0 solid !important;
}
.santas-gray--bb-65 {
  border-bottom: 65px #9a9ab0 solid !important;
}
.santas-gray--by-65 {
  border-top: 65px #9a9ab0 solid !important;
  border-bottom: 65px #9a9ab0 solid !important;
}
.santas-gray--bx-65 {
  border-right: 65px #9a9ab0 solid !important;
  border-left: 65px #9a9ab0 solid !important;
}
.santas-gray--ba-66 {
  border: 66px #9a9ab0 solid !important;
}
.santas-gray--bt-66 {
  border-top: 66px #9a9ab0 solid !important;
}
.santas-gray--br-66 {
  border-right: 66px #9a9ab0 solid !important;
}
.santas-gray--bl-66 {
  border-left: 66px #9a9ab0 solid !important;
}
.santas-gray--bb-66 {
  border-bottom: 66px #9a9ab0 solid !important;
}
.santas-gray--by-66 {
  border-top: 66px #9a9ab0 solid !important;
  border-bottom: 66px #9a9ab0 solid !important;
}
.santas-gray--bx-66 {
  border-right: 66px #9a9ab0 solid !important;
  border-left: 66px #9a9ab0 solid !important;
}
.santas-gray--ba-67 {
  border: 67px #9a9ab0 solid !important;
}
.santas-gray--bt-67 {
  border-top: 67px #9a9ab0 solid !important;
}
.santas-gray--br-67 {
  border-right: 67px #9a9ab0 solid !important;
}
.santas-gray--bl-67 {
  border-left: 67px #9a9ab0 solid !important;
}
.santas-gray--bb-67 {
  border-bottom: 67px #9a9ab0 solid !important;
}
.santas-gray--by-67 {
  border-top: 67px #9a9ab0 solid !important;
  border-bottom: 67px #9a9ab0 solid !important;
}
.santas-gray--bx-67 {
  border-right: 67px #9a9ab0 solid !important;
  border-left: 67px #9a9ab0 solid !important;
}
.santas-gray--ba-68 {
  border: 68px #9a9ab0 solid !important;
}
.santas-gray--bt-68 {
  border-top: 68px #9a9ab0 solid !important;
}
.santas-gray--br-68 {
  border-right: 68px #9a9ab0 solid !important;
}
.santas-gray--bl-68 {
  border-left: 68px #9a9ab0 solid !important;
}
.santas-gray--bb-68 {
  border-bottom: 68px #9a9ab0 solid !important;
}
.santas-gray--by-68 {
  border-top: 68px #9a9ab0 solid !important;
  border-bottom: 68px #9a9ab0 solid !important;
}
.santas-gray--bx-68 {
  border-right: 68px #9a9ab0 solid !important;
  border-left: 68px #9a9ab0 solid !important;
}
.santas-gray--ba-69 {
  border: 69px #9a9ab0 solid !important;
}
.santas-gray--bt-69 {
  border-top: 69px #9a9ab0 solid !important;
}
.santas-gray--br-69 {
  border-right: 69px #9a9ab0 solid !important;
}
.santas-gray--bl-69 {
  border-left: 69px #9a9ab0 solid !important;
}
.santas-gray--bb-69 {
  border-bottom: 69px #9a9ab0 solid !important;
}
.santas-gray--by-69 {
  border-top: 69px #9a9ab0 solid !important;
  border-bottom: 69px #9a9ab0 solid !important;
}
.santas-gray--bx-69 {
  border-right: 69px #9a9ab0 solid !important;
  border-left: 69px #9a9ab0 solid !important;
}
.santas-gray--ba-70 {
  border: 70px #9a9ab0 solid !important;
}
.santas-gray--bt-70 {
  border-top: 70px #9a9ab0 solid !important;
}
.santas-gray--br-70 {
  border-right: 70px #9a9ab0 solid !important;
}
.santas-gray--bl-70 {
  border-left: 70px #9a9ab0 solid !important;
}
.santas-gray--bb-70 {
  border-bottom: 70px #9a9ab0 solid !important;
}
.santas-gray--by-70 {
  border-top: 70px #9a9ab0 solid !important;
  border-bottom: 70px #9a9ab0 solid !important;
}
.santas-gray--bx-70 {
  border-right: 70px #9a9ab0 solid !important;
  border-left: 70px #9a9ab0 solid !important;
}
.santas-gray--ba-71 {
  border: 71px #9a9ab0 solid !important;
}
.santas-gray--bt-71 {
  border-top: 71px #9a9ab0 solid !important;
}
.santas-gray--br-71 {
  border-right: 71px #9a9ab0 solid !important;
}
.santas-gray--bl-71 {
  border-left: 71px #9a9ab0 solid !important;
}
.santas-gray--bb-71 {
  border-bottom: 71px #9a9ab0 solid !important;
}
.santas-gray--by-71 {
  border-top: 71px #9a9ab0 solid !important;
  border-bottom: 71px #9a9ab0 solid !important;
}
.santas-gray--bx-71 {
  border-right: 71px #9a9ab0 solid !important;
  border-left: 71px #9a9ab0 solid !important;
}
.santas-gray--ba-72 {
  border: 72px #9a9ab0 solid !important;
}
.santas-gray--bt-72 {
  border-top: 72px #9a9ab0 solid !important;
}
.santas-gray--br-72 {
  border-right: 72px #9a9ab0 solid !important;
}
.santas-gray--bl-72 {
  border-left: 72px #9a9ab0 solid !important;
}
.santas-gray--bb-72 {
  border-bottom: 72px #9a9ab0 solid !important;
}
.santas-gray--by-72 {
  border-top: 72px #9a9ab0 solid !important;
  border-bottom: 72px #9a9ab0 solid !important;
}
.santas-gray--bx-72 {
  border-right: 72px #9a9ab0 solid !important;
  border-left: 72px #9a9ab0 solid !important;
}
.santas-gray--ba-73 {
  border: 73px #9a9ab0 solid !important;
}
.santas-gray--bt-73 {
  border-top: 73px #9a9ab0 solid !important;
}
.santas-gray--br-73 {
  border-right: 73px #9a9ab0 solid !important;
}
.santas-gray--bl-73 {
  border-left: 73px #9a9ab0 solid !important;
}
.santas-gray--bb-73 {
  border-bottom: 73px #9a9ab0 solid !important;
}
.santas-gray--by-73 {
  border-top: 73px #9a9ab0 solid !important;
  border-bottom: 73px #9a9ab0 solid !important;
}
.santas-gray--bx-73 {
  border-right: 73px #9a9ab0 solid !important;
  border-left: 73px #9a9ab0 solid !important;
}
.santas-gray--ba-74 {
  border: 74px #9a9ab0 solid !important;
}
.santas-gray--bt-74 {
  border-top: 74px #9a9ab0 solid !important;
}
.santas-gray--br-74 {
  border-right: 74px #9a9ab0 solid !important;
}
.santas-gray--bl-74 {
  border-left: 74px #9a9ab0 solid !important;
}
.santas-gray--bb-74 {
  border-bottom: 74px #9a9ab0 solid !important;
}
.santas-gray--by-74 {
  border-top: 74px #9a9ab0 solid !important;
  border-bottom: 74px #9a9ab0 solid !important;
}
.santas-gray--bx-74 {
  border-right: 74px #9a9ab0 solid !important;
  border-left: 74px #9a9ab0 solid !important;
}
.santas-gray--ba-75 {
  border: 75px #9a9ab0 solid !important;
}
.santas-gray--bt-75 {
  border-top: 75px #9a9ab0 solid !important;
}
.santas-gray--br-75 {
  border-right: 75px #9a9ab0 solid !important;
}
.santas-gray--bl-75 {
  border-left: 75px #9a9ab0 solid !important;
}
.santas-gray--bb-75 {
  border-bottom: 75px #9a9ab0 solid !important;
}
.santas-gray--by-75 {
  border-top: 75px #9a9ab0 solid !important;
  border-bottom: 75px #9a9ab0 solid !important;
}
.santas-gray--bx-75 {
  border-right: 75px #9a9ab0 solid !important;
  border-left: 75px #9a9ab0 solid !important;
}
.santas-gray--ba-76 {
  border: 76px #9a9ab0 solid !important;
}
.santas-gray--bt-76 {
  border-top: 76px #9a9ab0 solid !important;
}
.santas-gray--br-76 {
  border-right: 76px #9a9ab0 solid !important;
}
.santas-gray--bl-76 {
  border-left: 76px #9a9ab0 solid !important;
}
.santas-gray--bb-76 {
  border-bottom: 76px #9a9ab0 solid !important;
}
.santas-gray--by-76 {
  border-top: 76px #9a9ab0 solid !important;
  border-bottom: 76px #9a9ab0 solid !important;
}
.santas-gray--bx-76 {
  border-right: 76px #9a9ab0 solid !important;
  border-left: 76px #9a9ab0 solid !important;
}
.santas-gray--ba-77 {
  border: 77px #9a9ab0 solid !important;
}
.santas-gray--bt-77 {
  border-top: 77px #9a9ab0 solid !important;
}
.santas-gray--br-77 {
  border-right: 77px #9a9ab0 solid !important;
}
.santas-gray--bl-77 {
  border-left: 77px #9a9ab0 solid !important;
}
.santas-gray--bb-77 {
  border-bottom: 77px #9a9ab0 solid !important;
}
.santas-gray--by-77 {
  border-top: 77px #9a9ab0 solid !important;
  border-bottom: 77px #9a9ab0 solid !important;
}
.santas-gray--bx-77 {
  border-right: 77px #9a9ab0 solid !important;
  border-left: 77px #9a9ab0 solid !important;
}
.santas-gray--ba-78 {
  border: 78px #9a9ab0 solid !important;
}
.santas-gray--bt-78 {
  border-top: 78px #9a9ab0 solid !important;
}
.santas-gray--br-78 {
  border-right: 78px #9a9ab0 solid !important;
}
.santas-gray--bl-78 {
  border-left: 78px #9a9ab0 solid !important;
}
.santas-gray--bb-78 {
  border-bottom: 78px #9a9ab0 solid !important;
}
.santas-gray--by-78 {
  border-top: 78px #9a9ab0 solid !important;
  border-bottom: 78px #9a9ab0 solid !important;
}
.santas-gray--bx-78 {
  border-right: 78px #9a9ab0 solid !important;
  border-left: 78px #9a9ab0 solid !important;
}
.santas-gray--ba-79 {
  border: 79px #9a9ab0 solid !important;
}
.santas-gray--bt-79 {
  border-top: 79px #9a9ab0 solid !important;
}
.santas-gray--br-79 {
  border-right: 79px #9a9ab0 solid !important;
}
.santas-gray--bl-79 {
  border-left: 79px #9a9ab0 solid !important;
}
.santas-gray--bb-79 {
  border-bottom: 79px #9a9ab0 solid !important;
}
.santas-gray--by-79 {
  border-top: 79px #9a9ab0 solid !important;
  border-bottom: 79px #9a9ab0 solid !important;
}
.santas-gray--bx-79 {
  border-right: 79px #9a9ab0 solid !important;
  border-left: 79px #9a9ab0 solid !important;
}
.santas-gray--ba-80 {
  border: 80px #9a9ab0 solid !important;
}
.santas-gray--bt-80 {
  border-top: 80px #9a9ab0 solid !important;
}
.santas-gray--br-80 {
  border-right: 80px #9a9ab0 solid !important;
}
.santas-gray--bl-80 {
  border-left: 80px #9a9ab0 solid !important;
}
.santas-gray--bb-80 {
  border-bottom: 80px #9a9ab0 solid !important;
}
.santas-gray--by-80 {
  border-top: 80px #9a9ab0 solid !important;
  border-bottom: 80px #9a9ab0 solid !important;
}
.santas-gray--bx-80 {
  border-right: 80px #9a9ab0 solid !important;
  border-left: 80px #9a9ab0 solid !important;
}
.santas-gray--ba-81 {
  border: 81px #9a9ab0 solid !important;
}
.santas-gray--bt-81 {
  border-top: 81px #9a9ab0 solid !important;
}
.santas-gray--br-81 {
  border-right: 81px #9a9ab0 solid !important;
}
.santas-gray--bl-81 {
  border-left: 81px #9a9ab0 solid !important;
}
.santas-gray--bb-81 {
  border-bottom: 81px #9a9ab0 solid !important;
}
.santas-gray--by-81 {
  border-top: 81px #9a9ab0 solid !important;
  border-bottom: 81px #9a9ab0 solid !important;
}
.santas-gray--bx-81 {
  border-right: 81px #9a9ab0 solid !important;
  border-left: 81px #9a9ab0 solid !important;
}
.santas-gray--ba-82 {
  border: 82px #9a9ab0 solid !important;
}
.santas-gray--bt-82 {
  border-top: 82px #9a9ab0 solid !important;
}
.santas-gray--br-82 {
  border-right: 82px #9a9ab0 solid !important;
}
.santas-gray--bl-82 {
  border-left: 82px #9a9ab0 solid !important;
}
.santas-gray--bb-82 {
  border-bottom: 82px #9a9ab0 solid !important;
}
.santas-gray--by-82 {
  border-top: 82px #9a9ab0 solid !important;
  border-bottom: 82px #9a9ab0 solid !important;
}
.santas-gray--bx-82 {
  border-right: 82px #9a9ab0 solid !important;
  border-left: 82px #9a9ab0 solid !important;
}
.santas-gray--ba-83 {
  border: 83px #9a9ab0 solid !important;
}
.santas-gray--bt-83 {
  border-top: 83px #9a9ab0 solid !important;
}
.santas-gray--br-83 {
  border-right: 83px #9a9ab0 solid !important;
}
.santas-gray--bl-83 {
  border-left: 83px #9a9ab0 solid !important;
}
.santas-gray--bb-83 {
  border-bottom: 83px #9a9ab0 solid !important;
}
.santas-gray--by-83 {
  border-top: 83px #9a9ab0 solid !important;
  border-bottom: 83px #9a9ab0 solid !important;
}
.santas-gray--bx-83 {
  border-right: 83px #9a9ab0 solid !important;
  border-left: 83px #9a9ab0 solid !important;
}
.santas-gray--ba-84 {
  border: 84px #9a9ab0 solid !important;
}
.santas-gray--bt-84 {
  border-top: 84px #9a9ab0 solid !important;
}
.santas-gray--br-84 {
  border-right: 84px #9a9ab0 solid !important;
}
.santas-gray--bl-84 {
  border-left: 84px #9a9ab0 solid !important;
}
.santas-gray--bb-84 {
  border-bottom: 84px #9a9ab0 solid !important;
}
.santas-gray--by-84 {
  border-top: 84px #9a9ab0 solid !important;
  border-bottom: 84px #9a9ab0 solid !important;
}
.santas-gray--bx-84 {
  border-right: 84px #9a9ab0 solid !important;
  border-left: 84px #9a9ab0 solid !important;
}
.santas-gray--ba-85 {
  border: 85px #9a9ab0 solid !important;
}
.santas-gray--bt-85 {
  border-top: 85px #9a9ab0 solid !important;
}
.santas-gray--br-85 {
  border-right: 85px #9a9ab0 solid !important;
}
.santas-gray--bl-85 {
  border-left: 85px #9a9ab0 solid !important;
}
.santas-gray--bb-85 {
  border-bottom: 85px #9a9ab0 solid !important;
}
.santas-gray--by-85 {
  border-top: 85px #9a9ab0 solid !important;
  border-bottom: 85px #9a9ab0 solid !important;
}
.santas-gray--bx-85 {
  border-right: 85px #9a9ab0 solid !important;
  border-left: 85px #9a9ab0 solid !important;
}
.santas-gray--ba-86 {
  border: 86px #9a9ab0 solid !important;
}
.santas-gray--bt-86 {
  border-top: 86px #9a9ab0 solid !important;
}
.santas-gray--br-86 {
  border-right: 86px #9a9ab0 solid !important;
}
.santas-gray--bl-86 {
  border-left: 86px #9a9ab0 solid !important;
}
.santas-gray--bb-86 {
  border-bottom: 86px #9a9ab0 solid !important;
}
.santas-gray--by-86 {
  border-top: 86px #9a9ab0 solid !important;
  border-bottom: 86px #9a9ab0 solid !important;
}
.santas-gray--bx-86 {
  border-right: 86px #9a9ab0 solid !important;
  border-left: 86px #9a9ab0 solid !important;
}
.santas-gray--ba-87 {
  border: 87px #9a9ab0 solid !important;
}
.santas-gray--bt-87 {
  border-top: 87px #9a9ab0 solid !important;
}
.santas-gray--br-87 {
  border-right: 87px #9a9ab0 solid !important;
}
.santas-gray--bl-87 {
  border-left: 87px #9a9ab0 solid !important;
}
.santas-gray--bb-87 {
  border-bottom: 87px #9a9ab0 solid !important;
}
.santas-gray--by-87 {
  border-top: 87px #9a9ab0 solid !important;
  border-bottom: 87px #9a9ab0 solid !important;
}
.santas-gray--bx-87 {
  border-right: 87px #9a9ab0 solid !important;
  border-left: 87px #9a9ab0 solid !important;
}
.santas-gray--ba-88 {
  border: 88px #9a9ab0 solid !important;
}
.santas-gray--bt-88 {
  border-top: 88px #9a9ab0 solid !important;
}
.santas-gray--br-88 {
  border-right: 88px #9a9ab0 solid !important;
}
.santas-gray--bl-88 {
  border-left: 88px #9a9ab0 solid !important;
}
.santas-gray--bb-88 {
  border-bottom: 88px #9a9ab0 solid !important;
}
.santas-gray--by-88 {
  border-top: 88px #9a9ab0 solid !important;
  border-bottom: 88px #9a9ab0 solid !important;
}
.santas-gray--bx-88 {
  border-right: 88px #9a9ab0 solid !important;
  border-left: 88px #9a9ab0 solid !important;
}
.santas-gray--ba-89 {
  border: 89px #9a9ab0 solid !important;
}
.santas-gray--bt-89 {
  border-top: 89px #9a9ab0 solid !important;
}
.santas-gray--br-89 {
  border-right: 89px #9a9ab0 solid !important;
}
.santas-gray--bl-89 {
  border-left: 89px #9a9ab0 solid !important;
}
.santas-gray--bb-89 {
  border-bottom: 89px #9a9ab0 solid !important;
}
.santas-gray--by-89 {
  border-top: 89px #9a9ab0 solid !important;
  border-bottom: 89px #9a9ab0 solid !important;
}
.santas-gray--bx-89 {
  border-right: 89px #9a9ab0 solid !important;
  border-left: 89px #9a9ab0 solid !important;
}
.santas-gray--ba-90 {
  border: 90px #9a9ab0 solid !important;
}
.santas-gray--bt-90 {
  border-top: 90px #9a9ab0 solid !important;
}
.santas-gray--br-90 {
  border-right: 90px #9a9ab0 solid !important;
}
.santas-gray--bl-90 {
  border-left: 90px #9a9ab0 solid !important;
}
.santas-gray--bb-90 {
  border-bottom: 90px #9a9ab0 solid !important;
}
.santas-gray--by-90 {
  border-top: 90px #9a9ab0 solid !important;
  border-bottom: 90px #9a9ab0 solid !important;
}
.santas-gray--bx-90 {
  border-right: 90px #9a9ab0 solid !important;
  border-left: 90px #9a9ab0 solid !important;
}
.santas-gray--ba-91 {
  border: 91px #9a9ab0 solid !important;
}
.santas-gray--bt-91 {
  border-top: 91px #9a9ab0 solid !important;
}
.santas-gray--br-91 {
  border-right: 91px #9a9ab0 solid !important;
}
.santas-gray--bl-91 {
  border-left: 91px #9a9ab0 solid !important;
}
.santas-gray--bb-91 {
  border-bottom: 91px #9a9ab0 solid !important;
}
.santas-gray--by-91 {
  border-top: 91px #9a9ab0 solid !important;
  border-bottom: 91px #9a9ab0 solid !important;
}
.santas-gray--bx-91 {
  border-right: 91px #9a9ab0 solid !important;
  border-left: 91px #9a9ab0 solid !important;
}
.santas-gray--ba-92 {
  border: 92px #9a9ab0 solid !important;
}
.santas-gray--bt-92 {
  border-top: 92px #9a9ab0 solid !important;
}
.santas-gray--br-92 {
  border-right: 92px #9a9ab0 solid !important;
}
.santas-gray--bl-92 {
  border-left: 92px #9a9ab0 solid !important;
}
.santas-gray--bb-92 {
  border-bottom: 92px #9a9ab0 solid !important;
}
.santas-gray--by-92 {
  border-top: 92px #9a9ab0 solid !important;
  border-bottom: 92px #9a9ab0 solid !important;
}
.santas-gray--bx-92 {
  border-right: 92px #9a9ab0 solid !important;
  border-left: 92px #9a9ab0 solid !important;
}
.santas-gray--ba-93 {
  border: 93px #9a9ab0 solid !important;
}
.santas-gray--bt-93 {
  border-top: 93px #9a9ab0 solid !important;
}
.santas-gray--br-93 {
  border-right: 93px #9a9ab0 solid !important;
}
.santas-gray--bl-93 {
  border-left: 93px #9a9ab0 solid !important;
}
.santas-gray--bb-93 {
  border-bottom: 93px #9a9ab0 solid !important;
}
.santas-gray--by-93 {
  border-top: 93px #9a9ab0 solid !important;
  border-bottom: 93px #9a9ab0 solid !important;
}
.santas-gray--bx-93 {
  border-right: 93px #9a9ab0 solid !important;
  border-left: 93px #9a9ab0 solid !important;
}
.santas-gray--ba-94 {
  border: 94px #9a9ab0 solid !important;
}
.santas-gray--bt-94 {
  border-top: 94px #9a9ab0 solid !important;
}
.santas-gray--br-94 {
  border-right: 94px #9a9ab0 solid !important;
}
.santas-gray--bl-94 {
  border-left: 94px #9a9ab0 solid !important;
}
.santas-gray--bb-94 {
  border-bottom: 94px #9a9ab0 solid !important;
}
.santas-gray--by-94 {
  border-top: 94px #9a9ab0 solid !important;
  border-bottom: 94px #9a9ab0 solid !important;
}
.santas-gray--bx-94 {
  border-right: 94px #9a9ab0 solid !important;
  border-left: 94px #9a9ab0 solid !important;
}
.santas-gray--ba-95 {
  border: 95px #9a9ab0 solid !important;
}
.santas-gray--bt-95 {
  border-top: 95px #9a9ab0 solid !important;
}
.santas-gray--br-95 {
  border-right: 95px #9a9ab0 solid !important;
}
.santas-gray--bl-95 {
  border-left: 95px #9a9ab0 solid !important;
}
.santas-gray--bb-95 {
  border-bottom: 95px #9a9ab0 solid !important;
}
.santas-gray--by-95 {
  border-top: 95px #9a9ab0 solid !important;
  border-bottom: 95px #9a9ab0 solid !important;
}
.santas-gray--bx-95 {
  border-right: 95px #9a9ab0 solid !important;
  border-left: 95px #9a9ab0 solid !important;
}
.santas-gray--ba-96 {
  border: 96px #9a9ab0 solid !important;
}
.santas-gray--bt-96 {
  border-top: 96px #9a9ab0 solid !important;
}
.santas-gray--br-96 {
  border-right: 96px #9a9ab0 solid !important;
}
.santas-gray--bl-96 {
  border-left: 96px #9a9ab0 solid !important;
}
.santas-gray--bb-96 {
  border-bottom: 96px #9a9ab0 solid !important;
}
.santas-gray--by-96 {
  border-top: 96px #9a9ab0 solid !important;
  border-bottom: 96px #9a9ab0 solid !important;
}
.santas-gray--bx-96 {
  border-right: 96px #9a9ab0 solid !important;
  border-left: 96px #9a9ab0 solid !important;
}
.santas-gray--ba-97 {
  border: 97px #9a9ab0 solid !important;
}
.santas-gray--bt-97 {
  border-top: 97px #9a9ab0 solid !important;
}
.santas-gray--br-97 {
  border-right: 97px #9a9ab0 solid !important;
}
.santas-gray--bl-97 {
  border-left: 97px #9a9ab0 solid !important;
}
.santas-gray--bb-97 {
  border-bottom: 97px #9a9ab0 solid !important;
}
.santas-gray--by-97 {
  border-top: 97px #9a9ab0 solid !important;
  border-bottom: 97px #9a9ab0 solid !important;
}
.santas-gray--bx-97 {
  border-right: 97px #9a9ab0 solid !important;
  border-left: 97px #9a9ab0 solid !important;
}
.santas-gray--ba-98 {
  border: 98px #9a9ab0 solid !important;
}
.santas-gray--bt-98 {
  border-top: 98px #9a9ab0 solid !important;
}
.santas-gray--br-98 {
  border-right: 98px #9a9ab0 solid !important;
}
.santas-gray--bl-98 {
  border-left: 98px #9a9ab0 solid !important;
}
.santas-gray--bb-98 {
  border-bottom: 98px #9a9ab0 solid !important;
}
.santas-gray--by-98 {
  border-top: 98px #9a9ab0 solid !important;
  border-bottom: 98px #9a9ab0 solid !important;
}
.santas-gray--bx-98 {
  border-right: 98px #9a9ab0 solid !important;
  border-left: 98px #9a9ab0 solid !important;
}
.santas-gray--ba-99 {
  border: 99px #9a9ab0 solid !important;
}
.santas-gray--bt-99 {
  border-top: 99px #9a9ab0 solid !important;
}
.santas-gray--br-99 {
  border-right: 99px #9a9ab0 solid !important;
}
.santas-gray--bl-99 {
  border-left: 99px #9a9ab0 solid !important;
}
.santas-gray--bb-99 {
  border-bottom: 99px #9a9ab0 solid !important;
}
.santas-gray--by-99 {
  border-top: 99px #9a9ab0 solid !important;
  border-bottom: 99px #9a9ab0 solid !important;
}
.santas-gray--bx-99 {
  border-right: 99px #9a9ab0 solid !important;
  border-left: 99px #9a9ab0 solid !important;
}
.santas-gray--ba-100 {
  border: 100px #9a9ab0 solid !important;
}
.santas-gray--bt-100 {
  border-top: 100px #9a9ab0 solid !important;
}
.santas-gray--br-100 {
  border-right: 100px #9a9ab0 solid !important;
}
.santas-gray--bl-100 {
  border-left: 100px #9a9ab0 solid !important;
}
.santas-gray--bb-100 {
  border-bottom: 100px #9a9ab0 solid !important;
}
.santas-gray--by-100 {
  border-top: 100px #9a9ab0 solid !important;
  border-bottom: 100px #9a9ab0 solid !important;
}
.santas-gray--bx-100 {
  border-right: 100px #9a9ab0 solid !important;
  border-left: 100px #9a9ab0 solid !important;
}
.ebony--ba-1 {
  border: 1px #11142d solid !important;
}
.ebony--bt-1 {
  border-top: 1px #11142d solid !important;
}
.ebony--br-1 {
  border-right: 1px #11142d solid !important;
}
.ebony--bl-1 {
  border-left: 1px #11142d solid !important;
}
.ebony--bb-1 {
  border-bottom: 1px #11142d solid !important;
}
.ebony--by-1 {
  border-top: 1px #11142d solid !important;
  border-bottom: 1px #11142d solid !important;
}
.ebony--bx-1 {
  border-right: 1px #11142d solid !important;
  border-left: 1px #11142d solid !important;
}
.ebony--ba-2 {
  border: 2px #11142d solid !important;
}
.ebony--bt-2 {
  border-top: 2px #11142d solid !important;
}
.ebony--br-2 {
  border-right: 2px #11142d solid !important;
}
.ebony--bl-2 {
  border-left: 2px #11142d solid !important;
}
.ebony--bb-2 {
  border-bottom: 2px #11142d solid !important;
}
.ebony--by-2 {
  border-top: 2px #11142d solid !important;
  border-bottom: 2px #11142d solid !important;
}
.ebony--bx-2 {
  border-right: 2px #11142d solid !important;
  border-left: 2px #11142d solid !important;
}
.ebony--ba-3 {
  border: 3px #11142d solid !important;
}
.ebony--bt-3 {
  border-top: 3px #11142d solid !important;
}
.ebony--br-3 {
  border-right: 3px #11142d solid !important;
}
.ebony--bl-3 {
  border-left: 3px #11142d solid !important;
}
.ebony--bb-3 {
  border-bottom: 3px #11142d solid !important;
}
.ebony--by-3 {
  border-top: 3px #11142d solid !important;
  border-bottom: 3px #11142d solid !important;
}
.ebony--bx-3 {
  border-right: 3px #11142d solid !important;
  border-left: 3px #11142d solid !important;
}
.ebony--ba-4 {
  border: 4px #11142d solid !important;
}
.ebony--bt-4 {
  border-top: 4px #11142d solid !important;
}
.ebony--br-4 {
  border-right: 4px #11142d solid !important;
}
.ebony--bl-4 {
  border-left: 4px #11142d solid !important;
}
.ebony--bb-4 {
  border-bottom: 4px #11142d solid !important;
}
.ebony--by-4 {
  border-top: 4px #11142d solid !important;
  border-bottom: 4px #11142d solid !important;
}
.ebony--bx-4 {
  border-right: 4px #11142d solid !important;
  border-left: 4px #11142d solid !important;
}
.ebony--ba-5 {
  border: 5px #11142d solid !important;
}
.ebony--bt-5 {
  border-top: 5px #11142d solid !important;
}
.ebony--br-5 {
  border-right: 5px #11142d solid !important;
}
.ebony--bl-5 {
  border-left: 5px #11142d solid !important;
}
.ebony--bb-5 {
  border-bottom: 5px #11142d solid !important;
}
.ebony--by-5 {
  border-top: 5px #11142d solid !important;
  border-bottom: 5px #11142d solid !important;
}
.ebony--bx-5 {
  border-right: 5px #11142d solid !important;
  border-left: 5px #11142d solid !important;
}
.ebony--ba-6 {
  border: 6px #11142d solid !important;
}
.ebony--bt-6 {
  border-top: 6px #11142d solid !important;
}
.ebony--br-6 {
  border-right: 6px #11142d solid !important;
}
.ebony--bl-6 {
  border-left: 6px #11142d solid !important;
}
.ebony--bb-6 {
  border-bottom: 6px #11142d solid !important;
}
.ebony--by-6 {
  border-top: 6px #11142d solid !important;
  border-bottom: 6px #11142d solid !important;
}
.ebony--bx-6 {
  border-right: 6px #11142d solid !important;
  border-left: 6px #11142d solid !important;
}
.ebony--ba-7 {
  border: 7px #11142d solid !important;
}
.ebony--bt-7 {
  border-top: 7px #11142d solid !important;
}
.ebony--br-7 {
  border-right: 7px #11142d solid !important;
}
.ebony--bl-7 {
  border-left: 7px #11142d solid !important;
}
.ebony--bb-7 {
  border-bottom: 7px #11142d solid !important;
}
.ebony--by-7 {
  border-top: 7px #11142d solid !important;
  border-bottom: 7px #11142d solid !important;
}
.ebony--bx-7 {
  border-right: 7px #11142d solid !important;
  border-left: 7px #11142d solid !important;
}
.ebony--ba-8 {
  border: 8px #11142d solid !important;
}
.ebony--bt-8 {
  border-top: 8px #11142d solid !important;
}
.ebony--br-8 {
  border-right: 8px #11142d solid !important;
}
.ebony--bl-8 {
  border-left: 8px #11142d solid !important;
}
.ebony--bb-8 {
  border-bottom: 8px #11142d solid !important;
}
.ebony--by-8 {
  border-top: 8px #11142d solid !important;
  border-bottom: 8px #11142d solid !important;
}
.ebony--bx-8 {
  border-right: 8px #11142d solid !important;
  border-left: 8px #11142d solid !important;
}
.ebony--ba-9 {
  border: 9px #11142d solid !important;
}
.ebony--bt-9 {
  border-top: 9px #11142d solid !important;
}
.ebony--br-9 {
  border-right: 9px #11142d solid !important;
}
.ebony--bl-9 {
  border-left: 9px #11142d solid !important;
}
.ebony--bb-9 {
  border-bottom: 9px #11142d solid !important;
}
.ebony--by-9 {
  border-top: 9px #11142d solid !important;
  border-bottom: 9px #11142d solid !important;
}
.ebony--bx-9 {
  border-right: 9px #11142d solid !important;
  border-left: 9px #11142d solid !important;
}
.ebony--ba-10 {
  border: 10px #11142d solid !important;
}
.ebony--bt-10 {
  border-top: 10px #11142d solid !important;
}
.ebony--br-10 {
  border-right: 10px #11142d solid !important;
}
.ebony--bl-10 {
  border-left: 10px #11142d solid !important;
}
.ebony--bb-10 {
  border-bottom: 10px #11142d solid !important;
}
.ebony--by-10 {
  border-top: 10px #11142d solid !important;
  border-bottom: 10px #11142d solid !important;
}
.ebony--bx-10 {
  border-right: 10px #11142d solid !important;
  border-left: 10px #11142d solid !important;
}
.ebony--ba-11 {
  border: 11px #11142d solid !important;
}
.ebony--bt-11 {
  border-top: 11px #11142d solid !important;
}
.ebony--br-11 {
  border-right: 11px #11142d solid !important;
}
.ebony--bl-11 {
  border-left: 11px #11142d solid !important;
}
.ebony--bb-11 {
  border-bottom: 11px #11142d solid !important;
}
.ebony--by-11 {
  border-top: 11px #11142d solid !important;
  border-bottom: 11px #11142d solid !important;
}
.ebony--bx-11 {
  border-right: 11px #11142d solid !important;
  border-left: 11px #11142d solid !important;
}
.ebony--ba-12 {
  border: 12px #11142d solid !important;
}
.ebony--bt-12 {
  border-top: 12px #11142d solid !important;
}
.ebony--br-12 {
  border-right: 12px #11142d solid !important;
}
.ebony--bl-12 {
  border-left: 12px #11142d solid !important;
}
.ebony--bb-12 {
  border-bottom: 12px #11142d solid !important;
}
.ebony--by-12 {
  border-top: 12px #11142d solid !important;
  border-bottom: 12px #11142d solid !important;
}
.ebony--bx-12 {
  border-right: 12px #11142d solid !important;
  border-left: 12px #11142d solid !important;
}
.ebony--ba-13 {
  border: 13px #11142d solid !important;
}
.ebony--bt-13 {
  border-top: 13px #11142d solid !important;
}
.ebony--br-13 {
  border-right: 13px #11142d solid !important;
}
.ebony--bl-13 {
  border-left: 13px #11142d solid !important;
}
.ebony--bb-13 {
  border-bottom: 13px #11142d solid !important;
}
.ebony--by-13 {
  border-top: 13px #11142d solid !important;
  border-bottom: 13px #11142d solid !important;
}
.ebony--bx-13 {
  border-right: 13px #11142d solid !important;
  border-left: 13px #11142d solid !important;
}
.ebony--ba-14 {
  border: 14px #11142d solid !important;
}
.ebony--bt-14 {
  border-top: 14px #11142d solid !important;
}
.ebony--br-14 {
  border-right: 14px #11142d solid !important;
}
.ebony--bl-14 {
  border-left: 14px #11142d solid !important;
}
.ebony--bb-14 {
  border-bottom: 14px #11142d solid !important;
}
.ebony--by-14 {
  border-top: 14px #11142d solid !important;
  border-bottom: 14px #11142d solid !important;
}
.ebony--bx-14 {
  border-right: 14px #11142d solid !important;
  border-left: 14px #11142d solid !important;
}
.ebony--ba-15 {
  border: 15px #11142d solid !important;
}
.ebony--bt-15 {
  border-top: 15px #11142d solid !important;
}
.ebony--br-15 {
  border-right: 15px #11142d solid !important;
}
.ebony--bl-15 {
  border-left: 15px #11142d solid !important;
}
.ebony--bb-15 {
  border-bottom: 15px #11142d solid !important;
}
.ebony--by-15 {
  border-top: 15px #11142d solid !important;
  border-bottom: 15px #11142d solid !important;
}
.ebony--bx-15 {
  border-right: 15px #11142d solid !important;
  border-left: 15px #11142d solid !important;
}
.ebony--ba-16 {
  border: 16px #11142d solid !important;
}
.ebony--bt-16 {
  border-top: 16px #11142d solid !important;
}
.ebony--br-16 {
  border-right: 16px #11142d solid !important;
}
.ebony--bl-16 {
  border-left: 16px #11142d solid !important;
}
.ebony--bb-16 {
  border-bottom: 16px #11142d solid !important;
}
.ebony--by-16 {
  border-top: 16px #11142d solid !important;
  border-bottom: 16px #11142d solid !important;
}
.ebony--bx-16 {
  border-right: 16px #11142d solid !important;
  border-left: 16px #11142d solid !important;
}
.ebony--ba-17 {
  border: 17px #11142d solid !important;
}
.ebony--bt-17 {
  border-top: 17px #11142d solid !important;
}
.ebony--br-17 {
  border-right: 17px #11142d solid !important;
}
.ebony--bl-17 {
  border-left: 17px #11142d solid !important;
}
.ebony--bb-17 {
  border-bottom: 17px #11142d solid !important;
}
.ebony--by-17 {
  border-top: 17px #11142d solid !important;
  border-bottom: 17px #11142d solid !important;
}
.ebony--bx-17 {
  border-right: 17px #11142d solid !important;
  border-left: 17px #11142d solid !important;
}
.ebony--ba-18 {
  border: 18px #11142d solid !important;
}
.ebony--bt-18 {
  border-top: 18px #11142d solid !important;
}
.ebony--br-18 {
  border-right: 18px #11142d solid !important;
}
.ebony--bl-18 {
  border-left: 18px #11142d solid !important;
}
.ebony--bb-18 {
  border-bottom: 18px #11142d solid !important;
}
.ebony--by-18 {
  border-top: 18px #11142d solid !important;
  border-bottom: 18px #11142d solid !important;
}
.ebony--bx-18 {
  border-right: 18px #11142d solid !important;
  border-left: 18px #11142d solid !important;
}
.ebony--ba-19 {
  border: 19px #11142d solid !important;
}
.ebony--bt-19 {
  border-top: 19px #11142d solid !important;
}
.ebony--br-19 {
  border-right: 19px #11142d solid !important;
}
.ebony--bl-19 {
  border-left: 19px #11142d solid !important;
}
.ebony--bb-19 {
  border-bottom: 19px #11142d solid !important;
}
.ebony--by-19 {
  border-top: 19px #11142d solid !important;
  border-bottom: 19px #11142d solid !important;
}
.ebony--bx-19 {
  border-right: 19px #11142d solid !important;
  border-left: 19px #11142d solid !important;
}
.ebony--ba-20 {
  border: 20px #11142d solid !important;
}
.ebony--bt-20 {
  border-top: 20px #11142d solid !important;
}
.ebony--br-20 {
  border-right: 20px #11142d solid !important;
}
.ebony--bl-20 {
  border-left: 20px #11142d solid !important;
}
.ebony--bb-20 {
  border-bottom: 20px #11142d solid !important;
}
.ebony--by-20 {
  border-top: 20px #11142d solid !important;
  border-bottom: 20px #11142d solid !important;
}
.ebony--bx-20 {
  border-right: 20px #11142d solid !important;
  border-left: 20px #11142d solid !important;
}
.ebony--ba-21 {
  border: 21px #11142d solid !important;
}
.ebony--bt-21 {
  border-top: 21px #11142d solid !important;
}
.ebony--br-21 {
  border-right: 21px #11142d solid !important;
}
.ebony--bl-21 {
  border-left: 21px #11142d solid !important;
}
.ebony--bb-21 {
  border-bottom: 21px #11142d solid !important;
}
.ebony--by-21 {
  border-top: 21px #11142d solid !important;
  border-bottom: 21px #11142d solid !important;
}
.ebony--bx-21 {
  border-right: 21px #11142d solid !important;
  border-left: 21px #11142d solid !important;
}
.ebony--ba-22 {
  border: 22px #11142d solid !important;
}
.ebony--bt-22 {
  border-top: 22px #11142d solid !important;
}
.ebony--br-22 {
  border-right: 22px #11142d solid !important;
}
.ebony--bl-22 {
  border-left: 22px #11142d solid !important;
}
.ebony--bb-22 {
  border-bottom: 22px #11142d solid !important;
}
.ebony--by-22 {
  border-top: 22px #11142d solid !important;
  border-bottom: 22px #11142d solid !important;
}
.ebony--bx-22 {
  border-right: 22px #11142d solid !important;
  border-left: 22px #11142d solid !important;
}
.ebony--ba-23 {
  border: 23px #11142d solid !important;
}
.ebony--bt-23 {
  border-top: 23px #11142d solid !important;
}
.ebony--br-23 {
  border-right: 23px #11142d solid !important;
}
.ebony--bl-23 {
  border-left: 23px #11142d solid !important;
}
.ebony--bb-23 {
  border-bottom: 23px #11142d solid !important;
}
.ebony--by-23 {
  border-top: 23px #11142d solid !important;
  border-bottom: 23px #11142d solid !important;
}
.ebony--bx-23 {
  border-right: 23px #11142d solid !important;
  border-left: 23px #11142d solid !important;
}
.ebony--ba-24 {
  border: 24px #11142d solid !important;
}
.ebony--bt-24 {
  border-top: 24px #11142d solid !important;
}
.ebony--br-24 {
  border-right: 24px #11142d solid !important;
}
.ebony--bl-24 {
  border-left: 24px #11142d solid !important;
}
.ebony--bb-24 {
  border-bottom: 24px #11142d solid !important;
}
.ebony--by-24 {
  border-top: 24px #11142d solid !important;
  border-bottom: 24px #11142d solid !important;
}
.ebony--bx-24 {
  border-right: 24px #11142d solid !important;
  border-left: 24px #11142d solid !important;
}
.ebony--ba-25 {
  border: 25px #11142d solid !important;
}
.ebony--bt-25 {
  border-top: 25px #11142d solid !important;
}
.ebony--br-25 {
  border-right: 25px #11142d solid !important;
}
.ebony--bl-25 {
  border-left: 25px #11142d solid !important;
}
.ebony--bb-25 {
  border-bottom: 25px #11142d solid !important;
}
.ebony--by-25 {
  border-top: 25px #11142d solid !important;
  border-bottom: 25px #11142d solid !important;
}
.ebony--bx-25 {
  border-right: 25px #11142d solid !important;
  border-left: 25px #11142d solid !important;
}
.ebony--ba-26 {
  border: 26px #11142d solid !important;
}
.ebony--bt-26 {
  border-top: 26px #11142d solid !important;
}
.ebony--br-26 {
  border-right: 26px #11142d solid !important;
}
.ebony--bl-26 {
  border-left: 26px #11142d solid !important;
}
.ebony--bb-26 {
  border-bottom: 26px #11142d solid !important;
}
.ebony--by-26 {
  border-top: 26px #11142d solid !important;
  border-bottom: 26px #11142d solid !important;
}
.ebony--bx-26 {
  border-right: 26px #11142d solid !important;
  border-left: 26px #11142d solid !important;
}
.ebony--ba-27 {
  border: 27px #11142d solid !important;
}
.ebony--bt-27 {
  border-top: 27px #11142d solid !important;
}
.ebony--br-27 {
  border-right: 27px #11142d solid !important;
}
.ebony--bl-27 {
  border-left: 27px #11142d solid !important;
}
.ebony--bb-27 {
  border-bottom: 27px #11142d solid !important;
}
.ebony--by-27 {
  border-top: 27px #11142d solid !important;
  border-bottom: 27px #11142d solid !important;
}
.ebony--bx-27 {
  border-right: 27px #11142d solid !important;
  border-left: 27px #11142d solid !important;
}
.ebony--ba-28 {
  border: 28px #11142d solid !important;
}
.ebony--bt-28 {
  border-top: 28px #11142d solid !important;
}
.ebony--br-28 {
  border-right: 28px #11142d solid !important;
}
.ebony--bl-28 {
  border-left: 28px #11142d solid !important;
}
.ebony--bb-28 {
  border-bottom: 28px #11142d solid !important;
}
.ebony--by-28 {
  border-top: 28px #11142d solid !important;
  border-bottom: 28px #11142d solid !important;
}
.ebony--bx-28 {
  border-right: 28px #11142d solid !important;
  border-left: 28px #11142d solid !important;
}
.ebony--ba-29 {
  border: 29px #11142d solid !important;
}
.ebony--bt-29 {
  border-top: 29px #11142d solid !important;
}
.ebony--br-29 {
  border-right: 29px #11142d solid !important;
}
.ebony--bl-29 {
  border-left: 29px #11142d solid !important;
}
.ebony--bb-29 {
  border-bottom: 29px #11142d solid !important;
}
.ebony--by-29 {
  border-top: 29px #11142d solid !important;
  border-bottom: 29px #11142d solid !important;
}
.ebony--bx-29 {
  border-right: 29px #11142d solid !important;
  border-left: 29px #11142d solid !important;
}
.ebony--ba-30 {
  border: 30px #11142d solid !important;
}
.ebony--bt-30 {
  border-top: 30px #11142d solid !important;
}
.ebony--br-30 {
  border-right: 30px #11142d solid !important;
}
.ebony--bl-30 {
  border-left: 30px #11142d solid !important;
}
.ebony--bb-30 {
  border-bottom: 30px #11142d solid !important;
}
.ebony--by-30 {
  border-top: 30px #11142d solid !important;
  border-bottom: 30px #11142d solid !important;
}
.ebony--bx-30 {
  border-right: 30px #11142d solid !important;
  border-left: 30px #11142d solid !important;
}
.ebony--ba-31 {
  border: 31px #11142d solid !important;
}
.ebony--bt-31 {
  border-top: 31px #11142d solid !important;
}
.ebony--br-31 {
  border-right: 31px #11142d solid !important;
}
.ebony--bl-31 {
  border-left: 31px #11142d solid !important;
}
.ebony--bb-31 {
  border-bottom: 31px #11142d solid !important;
}
.ebony--by-31 {
  border-top: 31px #11142d solid !important;
  border-bottom: 31px #11142d solid !important;
}
.ebony--bx-31 {
  border-right: 31px #11142d solid !important;
  border-left: 31px #11142d solid !important;
}
.ebony--ba-32 {
  border: 32px #11142d solid !important;
}
.ebony--bt-32 {
  border-top: 32px #11142d solid !important;
}
.ebony--br-32 {
  border-right: 32px #11142d solid !important;
}
.ebony--bl-32 {
  border-left: 32px #11142d solid !important;
}
.ebony--bb-32 {
  border-bottom: 32px #11142d solid !important;
}
.ebony--by-32 {
  border-top: 32px #11142d solid !important;
  border-bottom: 32px #11142d solid !important;
}
.ebony--bx-32 {
  border-right: 32px #11142d solid !important;
  border-left: 32px #11142d solid !important;
}
.ebony--ba-33 {
  border: 33px #11142d solid !important;
}
.ebony--bt-33 {
  border-top: 33px #11142d solid !important;
}
.ebony--br-33 {
  border-right: 33px #11142d solid !important;
}
.ebony--bl-33 {
  border-left: 33px #11142d solid !important;
}
.ebony--bb-33 {
  border-bottom: 33px #11142d solid !important;
}
.ebony--by-33 {
  border-top: 33px #11142d solid !important;
  border-bottom: 33px #11142d solid !important;
}
.ebony--bx-33 {
  border-right: 33px #11142d solid !important;
  border-left: 33px #11142d solid !important;
}
.ebony--ba-34 {
  border: 34px #11142d solid !important;
}
.ebony--bt-34 {
  border-top: 34px #11142d solid !important;
}
.ebony--br-34 {
  border-right: 34px #11142d solid !important;
}
.ebony--bl-34 {
  border-left: 34px #11142d solid !important;
}
.ebony--bb-34 {
  border-bottom: 34px #11142d solid !important;
}
.ebony--by-34 {
  border-top: 34px #11142d solid !important;
  border-bottom: 34px #11142d solid !important;
}
.ebony--bx-34 {
  border-right: 34px #11142d solid !important;
  border-left: 34px #11142d solid !important;
}
.ebony--ba-35 {
  border: 35px #11142d solid !important;
}
.ebony--bt-35 {
  border-top: 35px #11142d solid !important;
}
.ebony--br-35 {
  border-right: 35px #11142d solid !important;
}
.ebony--bl-35 {
  border-left: 35px #11142d solid !important;
}
.ebony--bb-35 {
  border-bottom: 35px #11142d solid !important;
}
.ebony--by-35 {
  border-top: 35px #11142d solid !important;
  border-bottom: 35px #11142d solid !important;
}
.ebony--bx-35 {
  border-right: 35px #11142d solid !important;
  border-left: 35px #11142d solid !important;
}
.ebony--ba-36 {
  border: 36px #11142d solid !important;
}
.ebony--bt-36 {
  border-top: 36px #11142d solid !important;
}
.ebony--br-36 {
  border-right: 36px #11142d solid !important;
}
.ebony--bl-36 {
  border-left: 36px #11142d solid !important;
}
.ebony--bb-36 {
  border-bottom: 36px #11142d solid !important;
}
.ebony--by-36 {
  border-top: 36px #11142d solid !important;
  border-bottom: 36px #11142d solid !important;
}
.ebony--bx-36 {
  border-right: 36px #11142d solid !important;
  border-left: 36px #11142d solid !important;
}
.ebony--ba-37 {
  border: 37px #11142d solid !important;
}
.ebony--bt-37 {
  border-top: 37px #11142d solid !important;
}
.ebony--br-37 {
  border-right: 37px #11142d solid !important;
}
.ebony--bl-37 {
  border-left: 37px #11142d solid !important;
}
.ebony--bb-37 {
  border-bottom: 37px #11142d solid !important;
}
.ebony--by-37 {
  border-top: 37px #11142d solid !important;
  border-bottom: 37px #11142d solid !important;
}
.ebony--bx-37 {
  border-right: 37px #11142d solid !important;
  border-left: 37px #11142d solid !important;
}
.ebony--ba-38 {
  border: 38px #11142d solid !important;
}
.ebony--bt-38 {
  border-top: 38px #11142d solid !important;
}
.ebony--br-38 {
  border-right: 38px #11142d solid !important;
}
.ebony--bl-38 {
  border-left: 38px #11142d solid !important;
}
.ebony--bb-38 {
  border-bottom: 38px #11142d solid !important;
}
.ebony--by-38 {
  border-top: 38px #11142d solid !important;
  border-bottom: 38px #11142d solid !important;
}
.ebony--bx-38 {
  border-right: 38px #11142d solid !important;
  border-left: 38px #11142d solid !important;
}
.ebony--ba-39 {
  border: 39px #11142d solid !important;
}
.ebony--bt-39 {
  border-top: 39px #11142d solid !important;
}
.ebony--br-39 {
  border-right: 39px #11142d solid !important;
}
.ebony--bl-39 {
  border-left: 39px #11142d solid !important;
}
.ebony--bb-39 {
  border-bottom: 39px #11142d solid !important;
}
.ebony--by-39 {
  border-top: 39px #11142d solid !important;
  border-bottom: 39px #11142d solid !important;
}
.ebony--bx-39 {
  border-right: 39px #11142d solid !important;
  border-left: 39px #11142d solid !important;
}
.ebony--ba-40 {
  border: 40px #11142d solid !important;
}
.ebony--bt-40 {
  border-top: 40px #11142d solid !important;
}
.ebony--br-40 {
  border-right: 40px #11142d solid !important;
}
.ebony--bl-40 {
  border-left: 40px #11142d solid !important;
}
.ebony--bb-40 {
  border-bottom: 40px #11142d solid !important;
}
.ebony--by-40 {
  border-top: 40px #11142d solid !important;
  border-bottom: 40px #11142d solid !important;
}
.ebony--bx-40 {
  border-right: 40px #11142d solid !important;
  border-left: 40px #11142d solid !important;
}
.ebony--ba-41 {
  border: 41px #11142d solid !important;
}
.ebony--bt-41 {
  border-top: 41px #11142d solid !important;
}
.ebony--br-41 {
  border-right: 41px #11142d solid !important;
}
.ebony--bl-41 {
  border-left: 41px #11142d solid !important;
}
.ebony--bb-41 {
  border-bottom: 41px #11142d solid !important;
}
.ebony--by-41 {
  border-top: 41px #11142d solid !important;
  border-bottom: 41px #11142d solid !important;
}
.ebony--bx-41 {
  border-right: 41px #11142d solid !important;
  border-left: 41px #11142d solid !important;
}
.ebony--ba-42 {
  border: 42px #11142d solid !important;
}
.ebony--bt-42 {
  border-top: 42px #11142d solid !important;
}
.ebony--br-42 {
  border-right: 42px #11142d solid !important;
}
.ebony--bl-42 {
  border-left: 42px #11142d solid !important;
}
.ebony--bb-42 {
  border-bottom: 42px #11142d solid !important;
}
.ebony--by-42 {
  border-top: 42px #11142d solid !important;
  border-bottom: 42px #11142d solid !important;
}
.ebony--bx-42 {
  border-right: 42px #11142d solid !important;
  border-left: 42px #11142d solid !important;
}
.ebony--ba-43 {
  border: 43px #11142d solid !important;
}
.ebony--bt-43 {
  border-top: 43px #11142d solid !important;
}
.ebony--br-43 {
  border-right: 43px #11142d solid !important;
}
.ebony--bl-43 {
  border-left: 43px #11142d solid !important;
}
.ebony--bb-43 {
  border-bottom: 43px #11142d solid !important;
}
.ebony--by-43 {
  border-top: 43px #11142d solid !important;
  border-bottom: 43px #11142d solid !important;
}
.ebony--bx-43 {
  border-right: 43px #11142d solid !important;
  border-left: 43px #11142d solid !important;
}
.ebony--ba-44 {
  border: 44px #11142d solid !important;
}
.ebony--bt-44 {
  border-top: 44px #11142d solid !important;
}
.ebony--br-44 {
  border-right: 44px #11142d solid !important;
}
.ebony--bl-44 {
  border-left: 44px #11142d solid !important;
}
.ebony--bb-44 {
  border-bottom: 44px #11142d solid !important;
}
.ebony--by-44 {
  border-top: 44px #11142d solid !important;
  border-bottom: 44px #11142d solid !important;
}
.ebony--bx-44 {
  border-right: 44px #11142d solid !important;
  border-left: 44px #11142d solid !important;
}
.ebony--ba-45 {
  border: 45px #11142d solid !important;
}
.ebony--bt-45 {
  border-top: 45px #11142d solid !important;
}
.ebony--br-45 {
  border-right: 45px #11142d solid !important;
}
.ebony--bl-45 {
  border-left: 45px #11142d solid !important;
}
.ebony--bb-45 {
  border-bottom: 45px #11142d solid !important;
}
.ebony--by-45 {
  border-top: 45px #11142d solid !important;
  border-bottom: 45px #11142d solid !important;
}
.ebony--bx-45 {
  border-right: 45px #11142d solid !important;
  border-left: 45px #11142d solid !important;
}
.ebony--ba-46 {
  border: 46px #11142d solid !important;
}
.ebony--bt-46 {
  border-top: 46px #11142d solid !important;
}
.ebony--br-46 {
  border-right: 46px #11142d solid !important;
}
.ebony--bl-46 {
  border-left: 46px #11142d solid !important;
}
.ebony--bb-46 {
  border-bottom: 46px #11142d solid !important;
}
.ebony--by-46 {
  border-top: 46px #11142d solid !important;
  border-bottom: 46px #11142d solid !important;
}
.ebony--bx-46 {
  border-right: 46px #11142d solid !important;
  border-left: 46px #11142d solid !important;
}
.ebony--ba-47 {
  border: 47px #11142d solid !important;
}
.ebony--bt-47 {
  border-top: 47px #11142d solid !important;
}
.ebony--br-47 {
  border-right: 47px #11142d solid !important;
}
.ebony--bl-47 {
  border-left: 47px #11142d solid !important;
}
.ebony--bb-47 {
  border-bottom: 47px #11142d solid !important;
}
.ebony--by-47 {
  border-top: 47px #11142d solid !important;
  border-bottom: 47px #11142d solid !important;
}
.ebony--bx-47 {
  border-right: 47px #11142d solid !important;
  border-left: 47px #11142d solid !important;
}
.ebony--ba-48 {
  border: 48px #11142d solid !important;
}
.ebony--bt-48 {
  border-top: 48px #11142d solid !important;
}
.ebony--br-48 {
  border-right: 48px #11142d solid !important;
}
.ebony--bl-48 {
  border-left: 48px #11142d solid !important;
}
.ebony--bb-48 {
  border-bottom: 48px #11142d solid !important;
}
.ebony--by-48 {
  border-top: 48px #11142d solid !important;
  border-bottom: 48px #11142d solid !important;
}
.ebony--bx-48 {
  border-right: 48px #11142d solid !important;
  border-left: 48px #11142d solid !important;
}
.ebony--ba-49 {
  border: 49px #11142d solid !important;
}
.ebony--bt-49 {
  border-top: 49px #11142d solid !important;
}
.ebony--br-49 {
  border-right: 49px #11142d solid !important;
}
.ebony--bl-49 {
  border-left: 49px #11142d solid !important;
}
.ebony--bb-49 {
  border-bottom: 49px #11142d solid !important;
}
.ebony--by-49 {
  border-top: 49px #11142d solid !important;
  border-bottom: 49px #11142d solid !important;
}
.ebony--bx-49 {
  border-right: 49px #11142d solid !important;
  border-left: 49px #11142d solid !important;
}
.ebony--ba-50 {
  border: 50px #11142d solid !important;
}
.ebony--bt-50 {
  border-top: 50px #11142d solid !important;
}
.ebony--br-50 {
  border-right: 50px #11142d solid !important;
}
.ebony--bl-50 {
  border-left: 50px #11142d solid !important;
}
.ebony--bb-50 {
  border-bottom: 50px #11142d solid !important;
}
.ebony--by-50 {
  border-top: 50px #11142d solid !important;
  border-bottom: 50px #11142d solid !important;
}
.ebony--bx-50 {
  border-right: 50px #11142d solid !important;
  border-left: 50px #11142d solid !important;
}
.ebony--ba-51 {
  border: 51px #11142d solid !important;
}
.ebony--bt-51 {
  border-top: 51px #11142d solid !important;
}
.ebony--br-51 {
  border-right: 51px #11142d solid !important;
}
.ebony--bl-51 {
  border-left: 51px #11142d solid !important;
}
.ebony--bb-51 {
  border-bottom: 51px #11142d solid !important;
}
.ebony--by-51 {
  border-top: 51px #11142d solid !important;
  border-bottom: 51px #11142d solid !important;
}
.ebony--bx-51 {
  border-right: 51px #11142d solid !important;
  border-left: 51px #11142d solid !important;
}
.ebony--ba-52 {
  border: 52px #11142d solid !important;
}
.ebony--bt-52 {
  border-top: 52px #11142d solid !important;
}
.ebony--br-52 {
  border-right: 52px #11142d solid !important;
}
.ebony--bl-52 {
  border-left: 52px #11142d solid !important;
}
.ebony--bb-52 {
  border-bottom: 52px #11142d solid !important;
}
.ebony--by-52 {
  border-top: 52px #11142d solid !important;
  border-bottom: 52px #11142d solid !important;
}
.ebony--bx-52 {
  border-right: 52px #11142d solid !important;
  border-left: 52px #11142d solid !important;
}
.ebony--ba-53 {
  border: 53px #11142d solid !important;
}
.ebony--bt-53 {
  border-top: 53px #11142d solid !important;
}
.ebony--br-53 {
  border-right: 53px #11142d solid !important;
}
.ebony--bl-53 {
  border-left: 53px #11142d solid !important;
}
.ebony--bb-53 {
  border-bottom: 53px #11142d solid !important;
}
.ebony--by-53 {
  border-top: 53px #11142d solid !important;
  border-bottom: 53px #11142d solid !important;
}
.ebony--bx-53 {
  border-right: 53px #11142d solid !important;
  border-left: 53px #11142d solid !important;
}
.ebony--ba-54 {
  border: 54px #11142d solid !important;
}
.ebony--bt-54 {
  border-top: 54px #11142d solid !important;
}
.ebony--br-54 {
  border-right: 54px #11142d solid !important;
}
.ebony--bl-54 {
  border-left: 54px #11142d solid !important;
}
.ebony--bb-54 {
  border-bottom: 54px #11142d solid !important;
}
.ebony--by-54 {
  border-top: 54px #11142d solid !important;
  border-bottom: 54px #11142d solid !important;
}
.ebony--bx-54 {
  border-right: 54px #11142d solid !important;
  border-left: 54px #11142d solid !important;
}
.ebony--ba-55 {
  border: 55px #11142d solid !important;
}
.ebony--bt-55 {
  border-top: 55px #11142d solid !important;
}
.ebony--br-55 {
  border-right: 55px #11142d solid !important;
}
.ebony--bl-55 {
  border-left: 55px #11142d solid !important;
}
.ebony--bb-55 {
  border-bottom: 55px #11142d solid !important;
}
.ebony--by-55 {
  border-top: 55px #11142d solid !important;
  border-bottom: 55px #11142d solid !important;
}
.ebony--bx-55 {
  border-right: 55px #11142d solid !important;
  border-left: 55px #11142d solid !important;
}
.ebony--ba-56 {
  border: 56px #11142d solid !important;
}
.ebony--bt-56 {
  border-top: 56px #11142d solid !important;
}
.ebony--br-56 {
  border-right: 56px #11142d solid !important;
}
.ebony--bl-56 {
  border-left: 56px #11142d solid !important;
}
.ebony--bb-56 {
  border-bottom: 56px #11142d solid !important;
}
.ebony--by-56 {
  border-top: 56px #11142d solid !important;
  border-bottom: 56px #11142d solid !important;
}
.ebony--bx-56 {
  border-right: 56px #11142d solid !important;
  border-left: 56px #11142d solid !important;
}
.ebony--ba-57 {
  border: 57px #11142d solid !important;
}
.ebony--bt-57 {
  border-top: 57px #11142d solid !important;
}
.ebony--br-57 {
  border-right: 57px #11142d solid !important;
}
.ebony--bl-57 {
  border-left: 57px #11142d solid !important;
}
.ebony--bb-57 {
  border-bottom: 57px #11142d solid !important;
}
.ebony--by-57 {
  border-top: 57px #11142d solid !important;
  border-bottom: 57px #11142d solid !important;
}
.ebony--bx-57 {
  border-right: 57px #11142d solid !important;
  border-left: 57px #11142d solid !important;
}
.ebony--ba-58 {
  border: 58px #11142d solid !important;
}
.ebony--bt-58 {
  border-top: 58px #11142d solid !important;
}
.ebony--br-58 {
  border-right: 58px #11142d solid !important;
}
.ebony--bl-58 {
  border-left: 58px #11142d solid !important;
}
.ebony--bb-58 {
  border-bottom: 58px #11142d solid !important;
}
.ebony--by-58 {
  border-top: 58px #11142d solid !important;
  border-bottom: 58px #11142d solid !important;
}
.ebony--bx-58 {
  border-right: 58px #11142d solid !important;
  border-left: 58px #11142d solid !important;
}
.ebony--ba-59 {
  border: 59px #11142d solid !important;
}
.ebony--bt-59 {
  border-top: 59px #11142d solid !important;
}
.ebony--br-59 {
  border-right: 59px #11142d solid !important;
}
.ebony--bl-59 {
  border-left: 59px #11142d solid !important;
}
.ebony--bb-59 {
  border-bottom: 59px #11142d solid !important;
}
.ebony--by-59 {
  border-top: 59px #11142d solid !important;
  border-bottom: 59px #11142d solid !important;
}
.ebony--bx-59 {
  border-right: 59px #11142d solid !important;
  border-left: 59px #11142d solid !important;
}
.ebony--ba-60 {
  border: 60px #11142d solid !important;
}
.ebony--bt-60 {
  border-top: 60px #11142d solid !important;
}
.ebony--br-60 {
  border-right: 60px #11142d solid !important;
}
.ebony--bl-60 {
  border-left: 60px #11142d solid !important;
}
.ebony--bb-60 {
  border-bottom: 60px #11142d solid !important;
}
.ebony--by-60 {
  border-top: 60px #11142d solid !important;
  border-bottom: 60px #11142d solid !important;
}
.ebony--bx-60 {
  border-right: 60px #11142d solid !important;
  border-left: 60px #11142d solid !important;
}
.ebony--ba-61 {
  border: 61px #11142d solid !important;
}
.ebony--bt-61 {
  border-top: 61px #11142d solid !important;
}
.ebony--br-61 {
  border-right: 61px #11142d solid !important;
}
.ebony--bl-61 {
  border-left: 61px #11142d solid !important;
}
.ebony--bb-61 {
  border-bottom: 61px #11142d solid !important;
}
.ebony--by-61 {
  border-top: 61px #11142d solid !important;
  border-bottom: 61px #11142d solid !important;
}
.ebony--bx-61 {
  border-right: 61px #11142d solid !important;
  border-left: 61px #11142d solid !important;
}
.ebony--ba-62 {
  border: 62px #11142d solid !important;
}
.ebony--bt-62 {
  border-top: 62px #11142d solid !important;
}
.ebony--br-62 {
  border-right: 62px #11142d solid !important;
}
.ebony--bl-62 {
  border-left: 62px #11142d solid !important;
}
.ebony--bb-62 {
  border-bottom: 62px #11142d solid !important;
}
.ebony--by-62 {
  border-top: 62px #11142d solid !important;
  border-bottom: 62px #11142d solid !important;
}
.ebony--bx-62 {
  border-right: 62px #11142d solid !important;
  border-left: 62px #11142d solid !important;
}
.ebony--ba-63 {
  border: 63px #11142d solid !important;
}
.ebony--bt-63 {
  border-top: 63px #11142d solid !important;
}
.ebony--br-63 {
  border-right: 63px #11142d solid !important;
}
.ebony--bl-63 {
  border-left: 63px #11142d solid !important;
}
.ebony--bb-63 {
  border-bottom: 63px #11142d solid !important;
}
.ebony--by-63 {
  border-top: 63px #11142d solid !important;
  border-bottom: 63px #11142d solid !important;
}
.ebony--bx-63 {
  border-right: 63px #11142d solid !important;
  border-left: 63px #11142d solid !important;
}
.ebony--ba-64 {
  border: 64px #11142d solid !important;
}
.ebony--bt-64 {
  border-top: 64px #11142d solid !important;
}
.ebony--br-64 {
  border-right: 64px #11142d solid !important;
}
.ebony--bl-64 {
  border-left: 64px #11142d solid !important;
}
.ebony--bb-64 {
  border-bottom: 64px #11142d solid !important;
}
.ebony--by-64 {
  border-top: 64px #11142d solid !important;
  border-bottom: 64px #11142d solid !important;
}
.ebony--bx-64 {
  border-right: 64px #11142d solid !important;
  border-left: 64px #11142d solid !important;
}
.ebony--ba-65 {
  border: 65px #11142d solid !important;
}
.ebony--bt-65 {
  border-top: 65px #11142d solid !important;
}
.ebony--br-65 {
  border-right: 65px #11142d solid !important;
}
.ebony--bl-65 {
  border-left: 65px #11142d solid !important;
}
.ebony--bb-65 {
  border-bottom: 65px #11142d solid !important;
}
.ebony--by-65 {
  border-top: 65px #11142d solid !important;
  border-bottom: 65px #11142d solid !important;
}
.ebony--bx-65 {
  border-right: 65px #11142d solid !important;
  border-left: 65px #11142d solid !important;
}
.ebony--ba-66 {
  border: 66px #11142d solid !important;
}
.ebony--bt-66 {
  border-top: 66px #11142d solid !important;
}
.ebony--br-66 {
  border-right: 66px #11142d solid !important;
}
.ebony--bl-66 {
  border-left: 66px #11142d solid !important;
}
.ebony--bb-66 {
  border-bottom: 66px #11142d solid !important;
}
.ebony--by-66 {
  border-top: 66px #11142d solid !important;
  border-bottom: 66px #11142d solid !important;
}
.ebony--bx-66 {
  border-right: 66px #11142d solid !important;
  border-left: 66px #11142d solid !important;
}
.ebony--ba-67 {
  border: 67px #11142d solid !important;
}
.ebony--bt-67 {
  border-top: 67px #11142d solid !important;
}
.ebony--br-67 {
  border-right: 67px #11142d solid !important;
}
.ebony--bl-67 {
  border-left: 67px #11142d solid !important;
}
.ebony--bb-67 {
  border-bottom: 67px #11142d solid !important;
}
.ebony--by-67 {
  border-top: 67px #11142d solid !important;
  border-bottom: 67px #11142d solid !important;
}
.ebony--bx-67 {
  border-right: 67px #11142d solid !important;
  border-left: 67px #11142d solid !important;
}
.ebony--ba-68 {
  border: 68px #11142d solid !important;
}
.ebony--bt-68 {
  border-top: 68px #11142d solid !important;
}
.ebony--br-68 {
  border-right: 68px #11142d solid !important;
}
.ebony--bl-68 {
  border-left: 68px #11142d solid !important;
}
.ebony--bb-68 {
  border-bottom: 68px #11142d solid !important;
}
.ebony--by-68 {
  border-top: 68px #11142d solid !important;
  border-bottom: 68px #11142d solid !important;
}
.ebony--bx-68 {
  border-right: 68px #11142d solid !important;
  border-left: 68px #11142d solid !important;
}
.ebony--ba-69 {
  border: 69px #11142d solid !important;
}
.ebony--bt-69 {
  border-top: 69px #11142d solid !important;
}
.ebony--br-69 {
  border-right: 69px #11142d solid !important;
}
.ebony--bl-69 {
  border-left: 69px #11142d solid !important;
}
.ebony--bb-69 {
  border-bottom: 69px #11142d solid !important;
}
.ebony--by-69 {
  border-top: 69px #11142d solid !important;
  border-bottom: 69px #11142d solid !important;
}
.ebony--bx-69 {
  border-right: 69px #11142d solid !important;
  border-left: 69px #11142d solid !important;
}
.ebony--ba-70 {
  border: 70px #11142d solid !important;
}
.ebony--bt-70 {
  border-top: 70px #11142d solid !important;
}
.ebony--br-70 {
  border-right: 70px #11142d solid !important;
}
.ebony--bl-70 {
  border-left: 70px #11142d solid !important;
}
.ebony--bb-70 {
  border-bottom: 70px #11142d solid !important;
}
.ebony--by-70 {
  border-top: 70px #11142d solid !important;
  border-bottom: 70px #11142d solid !important;
}
.ebony--bx-70 {
  border-right: 70px #11142d solid !important;
  border-left: 70px #11142d solid !important;
}
.ebony--ba-71 {
  border: 71px #11142d solid !important;
}
.ebony--bt-71 {
  border-top: 71px #11142d solid !important;
}
.ebony--br-71 {
  border-right: 71px #11142d solid !important;
}
.ebony--bl-71 {
  border-left: 71px #11142d solid !important;
}
.ebony--bb-71 {
  border-bottom: 71px #11142d solid !important;
}
.ebony--by-71 {
  border-top: 71px #11142d solid !important;
  border-bottom: 71px #11142d solid !important;
}
.ebony--bx-71 {
  border-right: 71px #11142d solid !important;
  border-left: 71px #11142d solid !important;
}
.ebony--ba-72 {
  border: 72px #11142d solid !important;
}
.ebony--bt-72 {
  border-top: 72px #11142d solid !important;
}
.ebony--br-72 {
  border-right: 72px #11142d solid !important;
}
.ebony--bl-72 {
  border-left: 72px #11142d solid !important;
}
.ebony--bb-72 {
  border-bottom: 72px #11142d solid !important;
}
.ebony--by-72 {
  border-top: 72px #11142d solid !important;
  border-bottom: 72px #11142d solid !important;
}
.ebony--bx-72 {
  border-right: 72px #11142d solid !important;
  border-left: 72px #11142d solid !important;
}
.ebony--ba-73 {
  border: 73px #11142d solid !important;
}
.ebony--bt-73 {
  border-top: 73px #11142d solid !important;
}
.ebony--br-73 {
  border-right: 73px #11142d solid !important;
}
.ebony--bl-73 {
  border-left: 73px #11142d solid !important;
}
.ebony--bb-73 {
  border-bottom: 73px #11142d solid !important;
}
.ebony--by-73 {
  border-top: 73px #11142d solid !important;
  border-bottom: 73px #11142d solid !important;
}
.ebony--bx-73 {
  border-right: 73px #11142d solid !important;
  border-left: 73px #11142d solid !important;
}
.ebony--ba-74 {
  border: 74px #11142d solid !important;
}
.ebony--bt-74 {
  border-top: 74px #11142d solid !important;
}
.ebony--br-74 {
  border-right: 74px #11142d solid !important;
}
.ebony--bl-74 {
  border-left: 74px #11142d solid !important;
}
.ebony--bb-74 {
  border-bottom: 74px #11142d solid !important;
}
.ebony--by-74 {
  border-top: 74px #11142d solid !important;
  border-bottom: 74px #11142d solid !important;
}
.ebony--bx-74 {
  border-right: 74px #11142d solid !important;
  border-left: 74px #11142d solid !important;
}
.ebony--ba-75 {
  border: 75px #11142d solid !important;
}
.ebony--bt-75 {
  border-top: 75px #11142d solid !important;
}
.ebony--br-75 {
  border-right: 75px #11142d solid !important;
}
.ebony--bl-75 {
  border-left: 75px #11142d solid !important;
}
.ebony--bb-75 {
  border-bottom: 75px #11142d solid !important;
}
.ebony--by-75 {
  border-top: 75px #11142d solid !important;
  border-bottom: 75px #11142d solid !important;
}
.ebony--bx-75 {
  border-right: 75px #11142d solid !important;
  border-left: 75px #11142d solid !important;
}
.ebony--ba-76 {
  border: 76px #11142d solid !important;
}
.ebony--bt-76 {
  border-top: 76px #11142d solid !important;
}
.ebony--br-76 {
  border-right: 76px #11142d solid !important;
}
.ebony--bl-76 {
  border-left: 76px #11142d solid !important;
}
.ebony--bb-76 {
  border-bottom: 76px #11142d solid !important;
}
.ebony--by-76 {
  border-top: 76px #11142d solid !important;
  border-bottom: 76px #11142d solid !important;
}
.ebony--bx-76 {
  border-right: 76px #11142d solid !important;
  border-left: 76px #11142d solid !important;
}
.ebony--ba-77 {
  border: 77px #11142d solid !important;
}
.ebony--bt-77 {
  border-top: 77px #11142d solid !important;
}
.ebony--br-77 {
  border-right: 77px #11142d solid !important;
}
.ebony--bl-77 {
  border-left: 77px #11142d solid !important;
}
.ebony--bb-77 {
  border-bottom: 77px #11142d solid !important;
}
.ebony--by-77 {
  border-top: 77px #11142d solid !important;
  border-bottom: 77px #11142d solid !important;
}
.ebony--bx-77 {
  border-right: 77px #11142d solid !important;
  border-left: 77px #11142d solid !important;
}
.ebony--ba-78 {
  border: 78px #11142d solid !important;
}
.ebony--bt-78 {
  border-top: 78px #11142d solid !important;
}
.ebony--br-78 {
  border-right: 78px #11142d solid !important;
}
.ebony--bl-78 {
  border-left: 78px #11142d solid !important;
}
.ebony--bb-78 {
  border-bottom: 78px #11142d solid !important;
}
.ebony--by-78 {
  border-top: 78px #11142d solid !important;
  border-bottom: 78px #11142d solid !important;
}
.ebony--bx-78 {
  border-right: 78px #11142d solid !important;
  border-left: 78px #11142d solid !important;
}
.ebony--ba-79 {
  border: 79px #11142d solid !important;
}
.ebony--bt-79 {
  border-top: 79px #11142d solid !important;
}
.ebony--br-79 {
  border-right: 79px #11142d solid !important;
}
.ebony--bl-79 {
  border-left: 79px #11142d solid !important;
}
.ebony--bb-79 {
  border-bottom: 79px #11142d solid !important;
}
.ebony--by-79 {
  border-top: 79px #11142d solid !important;
  border-bottom: 79px #11142d solid !important;
}
.ebony--bx-79 {
  border-right: 79px #11142d solid !important;
  border-left: 79px #11142d solid !important;
}
.ebony--ba-80 {
  border: 80px #11142d solid !important;
}
.ebony--bt-80 {
  border-top: 80px #11142d solid !important;
}
.ebony--br-80 {
  border-right: 80px #11142d solid !important;
}
.ebony--bl-80 {
  border-left: 80px #11142d solid !important;
}
.ebony--bb-80 {
  border-bottom: 80px #11142d solid !important;
}
.ebony--by-80 {
  border-top: 80px #11142d solid !important;
  border-bottom: 80px #11142d solid !important;
}
.ebony--bx-80 {
  border-right: 80px #11142d solid !important;
  border-left: 80px #11142d solid !important;
}
.ebony--ba-81 {
  border: 81px #11142d solid !important;
}
.ebony--bt-81 {
  border-top: 81px #11142d solid !important;
}
.ebony--br-81 {
  border-right: 81px #11142d solid !important;
}
.ebony--bl-81 {
  border-left: 81px #11142d solid !important;
}
.ebony--bb-81 {
  border-bottom: 81px #11142d solid !important;
}
.ebony--by-81 {
  border-top: 81px #11142d solid !important;
  border-bottom: 81px #11142d solid !important;
}
.ebony--bx-81 {
  border-right: 81px #11142d solid !important;
  border-left: 81px #11142d solid !important;
}
.ebony--ba-82 {
  border: 82px #11142d solid !important;
}
.ebony--bt-82 {
  border-top: 82px #11142d solid !important;
}
.ebony--br-82 {
  border-right: 82px #11142d solid !important;
}
.ebony--bl-82 {
  border-left: 82px #11142d solid !important;
}
.ebony--bb-82 {
  border-bottom: 82px #11142d solid !important;
}
.ebony--by-82 {
  border-top: 82px #11142d solid !important;
  border-bottom: 82px #11142d solid !important;
}
.ebony--bx-82 {
  border-right: 82px #11142d solid !important;
  border-left: 82px #11142d solid !important;
}
.ebony--ba-83 {
  border: 83px #11142d solid !important;
}
.ebony--bt-83 {
  border-top: 83px #11142d solid !important;
}
.ebony--br-83 {
  border-right: 83px #11142d solid !important;
}
.ebony--bl-83 {
  border-left: 83px #11142d solid !important;
}
.ebony--bb-83 {
  border-bottom: 83px #11142d solid !important;
}
.ebony--by-83 {
  border-top: 83px #11142d solid !important;
  border-bottom: 83px #11142d solid !important;
}
.ebony--bx-83 {
  border-right: 83px #11142d solid !important;
  border-left: 83px #11142d solid !important;
}
.ebony--ba-84 {
  border: 84px #11142d solid !important;
}
.ebony--bt-84 {
  border-top: 84px #11142d solid !important;
}
.ebony--br-84 {
  border-right: 84px #11142d solid !important;
}
.ebony--bl-84 {
  border-left: 84px #11142d solid !important;
}
.ebony--bb-84 {
  border-bottom: 84px #11142d solid !important;
}
.ebony--by-84 {
  border-top: 84px #11142d solid !important;
  border-bottom: 84px #11142d solid !important;
}
.ebony--bx-84 {
  border-right: 84px #11142d solid !important;
  border-left: 84px #11142d solid !important;
}
.ebony--ba-85 {
  border: 85px #11142d solid !important;
}
.ebony--bt-85 {
  border-top: 85px #11142d solid !important;
}
.ebony--br-85 {
  border-right: 85px #11142d solid !important;
}
.ebony--bl-85 {
  border-left: 85px #11142d solid !important;
}
.ebony--bb-85 {
  border-bottom: 85px #11142d solid !important;
}
.ebony--by-85 {
  border-top: 85px #11142d solid !important;
  border-bottom: 85px #11142d solid !important;
}
.ebony--bx-85 {
  border-right: 85px #11142d solid !important;
  border-left: 85px #11142d solid !important;
}
.ebony--ba-86 {
  border: 86px #11142d solid !important;
}
.ebony--bt-86 {
  border-top: 86px #11142d solid !important;
}
.ebony--br-86 {
  border-right: 86px #11142d solid !important;
}
.ebony--bl-86 {
  border-left: 86px #11142d solid !important;
}
.ebony--bb-86 {
  border-bottom: 86px #11142d solid !important;
}
.ebony--by-86 {
  border-top: 86px #11142d solid !important;
  border-bottom: 86px #11142d solid !important;
}
.ebony--bx-86 {
  border-right: 86px #11142d solid !important;
  border-left: 86px #11142d solid !important;
}
.ebony--ba-87 {
  border: 87px #11142d solid !important;
}
.ebony--bt-87 {
  border-top: 87px #11142d solid !important;
}
.ebony--br-87 {
  border-right: 87px #11142d solid !important;
}
.ebony--bl-87 {
  border-left: 87px #11142d solid !important;
}
.ebony--bb-87 {
  border-bottom: 87px #11142d solid !important;
}
.ebony--by-87 {
  border-top: 87px #11142d solid !important;
  border-bottom: 87px #11142d solid !important;
}
.ebony--bx-87 {
  border-right: 87px #11142d solid !important;
  border-left: 87px #11142d solid !important;
}
.ebony--ba-88 {
  border: 88px #11142d solid !important;
}
.ebony--bt-88 {
  border-top: 88px #11142d solid !important;
}
.ebony--br-88 {
  border-right: 88px #11142d solid !important;
}
.ebony--bl-88 {
  border-left: 88px #11142d solid !important;
}
.ebony--bb-88 {
  border-bottom: 88px #11142d solid !important;
}
.ebony--by-88 {
  border-top: 88px #11142d solid !important;
  border-bottom: 88px #11142d solid !important;
}
.ebony--bx-88 {
  border-right: 88px #11142d solid !important;
  border-left: 88px #11142d solid !important;
}
.ebony--ba-89 {
  border: 89px #11142d solid !important;
}
.ebony--bt-89 {
  border-top: 89px #11142d solid !important;
}
.ebony--br-89 {
  border-right: 89px #11142d solid !important;
}
.ebony--bl-89 {
  border-left: 89px #11142d solid !important;
}
.ebony--bb-89 {
  border-bottom: 89px #11142d solid !important;
}
.ebony--by-89 {
  border-top: 89px #11142d solid !important;
  border-bottom: 89px #11142d solid !important;
}
.ebony--bx-89 {
  border-right: 89px #11142d solid !important;
  border-left: 89px #11142d solid !important;
}
.ebony--ba-90 {
  border: 90px #11142d solid !important;
}
.ebony--bt-90 {
  border-top: 90px #11142d solid !important;
}
.ebony--br-90 {
  border-right: 90px #11142d solid !important;
}
.ebony--bl-90 {
  border-left: 90px #11142d solid !important;
}
.ebony--bb-90 {
  border-bottom: 90px #11142d solid !important;
}
.ebony--by-90 {
  border-top: 90px #11142d solid !important;
  border-bottom: 90px #11142d solid !important;
}
.ebony--bx-90 {
  border-right: 90px #11142d solid !important;
  border-left: 90px #11142d solid !important;
}
.ebony--ba-91 {
  border: 91px #11142d solid !important;
}
.ebony--bt-91 {
  border-top: 91px #11142d solid !important;
}
.ebony--br-91 {
  border-right: 91px #11142d solid !important;
}
.ebony--bl-91 {
  border-left: 91px #11142d solid !important;
}
.ebony--bb-91 {
  border-bottom: 91px #11142d solid !important;
}
.ebony--by-91 {
  border-top: 91px #11142d solid !important;
  border-bottom: 91px #11142d solid !important;
}
.ebony--bx-91 {
  border-right: 91px #11142d solid !important;
  border-left: 91px #11142d solid !important;
}
.ebony--ba-92 {
  border: 92px #11142d solid !important;
}
.ebony--bt-92 {
  border-top: 92px #11142d solid !important;
}
.ebony--br-92 {
  border-right: 92px #11142d solid !important;
}
.ebony--bl-92 {
  border-left: 92px #11142d solid !important;
}
.ebony--bb-92 {
  border-bottom: 92px #11142d solid !important;
}
.ebony--by-92 {
  border-top: 92px #11142d solid !important;
  border-bottom: 92px #11142d solid !important;
}
.ebony--bx-92 {
  border-right: 92px #11142d solid !important;
  border-left: 92px #11142d solid !important;
}
.ebony--ba-93 {
  border: 93px #11142d solid !important;
}
.ebony--bt-93 {
  border-top: 93px #11142d solid !important;
}
.ebony--br-93 {
  border-right: 93px #11142d solid !important;
}
.ebony--bl-93 {
  border-left: 93px #11142d solid !important;
}
.ebony--bb-93 {
  border-bottom: 93px #11142d solid !important;
}
.ebony--by-93 {
  border-top: 93px #11142d solid !important;
  border-bottom: 93px #11142d solid !important;
}
.ebony--bx-93 {
  border-right: 93px #11142d solid !important;
  border-left: 93px #11142d solid !important;
}
.ebony--ba-94 {
  border: 94px #11142d solid !important;
}
.ebony--bt-94 {
  border-top: 94px #11142d solid !important;
}
.ebony--br-94 {
  border-right: 94px #11142d solid !important;
}
.ebony--bl-94 {
  border-left: 94px #11142d solid !important;
}
.ebony--bb-94 {
  border-bottom: 94px #11142d solid !important;
}
.ebony--by-94 {
  border-top: 94px #11142d solid !important;
  border-bottom: 94px #11142d solid !important;
}
.ebony--bx-94 {
  border-right: 94px #11142d solid !important;
  border-left: 94px #11142d solid !important;
}
.ebony--ba-95 {
  border: 95px #11142d solid !important;
}
.ebony--bt-95 {
  border-top: 95px #11142d solid !important;
}
.ebony--br-95 {
  border-right: 95px #11142d solid !important;
}
.ebony--bl-95 {
  border-left: 95px #11142d solid !important;
}
.ebony--bb-95 {
  border-bottom: 95px #11142d solid !important;
}
.ebony--by-95 {
  border-top: 95px #11142d solid !important;
  border-bottom: 95px #11142d solid !important;
}
.ebony--bx-95 {
  border-right: 95px #11142d solid !important;
  border-left: 95px #11142d solid !important;
}
.ebony--ba-96 {
  border: 96px #11142d solid !important;
}
.ebony--bt-96 {
  border-top: 96px #11142d solid !important;
}
.ebony--br-96 {
  border-right: 96px #11142d solid !important;
}
.ebony--bl-96 {
  border-left: 96px #11142d solid !important;
}
.ebony--bb-96 {
  border-bottom: 96px #11142d solid !important;
}
.ebony--by-96 {
  border-top: 96px #11142d solid !important;
  border-bottom: 96px #11142d solid !important;
}
.ebony--bx-96 {
  border-right: 96px #11142d solid !important;
  border-left: 96px #11142d solid !important;
}
.ebony--ba-97 {
  border: 97px #11142d solid !important;
}
.ebony--bt-97 {
  border-top: 97px #11142d solid !important;
}
.ebony--br-97 {
  border-right: 97px #11142d solid !important;
}
.ebony--bl-97 {
  border-left: 97px #11142d solid !important;
}
.ebony--bb-97 {
  border-bottom: 97px #11142d solid !important;
}
.ebony--by-97 {
  border-top: 97px #11142d solid !important;
  border-bottom: 97px #11142d solid !important;
}
.ebony--bx-97 {
  border-right: 97px #11142d solid !important;
  border-left: 97px #11142d solid !important;
}
.ebony--ba-98 {
  border: 98px #11142d solid !important;
}
.ebony--bt-98 {
  border-top: 98px #11142d solid !important;
}
.ebony--br-98 {
  border-right: 98px #11142d solid !important;
}
.ebony--bl-98 {
  border-left: 98px #11142d solid !important;
}
.ebony--bb-98 {
  border-bottom: 98px #11142d solid !important;
}
.ebony--by-98 {
  border-top: 98px #11142d solid !important;
  border-bottom: 98px #11142d solid !important;
}
.ebony--bx-98 {
  border-right: 98px #11142d solid !important;
  border-left: 98px #11142d solid !important;
}
.ebony--ba-99 {
  border: 99px #11142d solid !important;
}
.ebony--bt-99 {
  border-top: 99px #11142d solid !important;
}
.ebony--br-99 {
  border-right: 99px #11142d solid !important;
}
.ebony--bl-99 {
  border-left: 99px #11142d solid !important;
}
.ebony--bb-99 {
  border-bottom: 99px #11142d solid !important;
}
.ebony--by-99 {
  border-top: 99px #11142d solid !important;
  border-bottom: 99px #11142d solid !important;
}
.ebony--bx-99 {
  border-right: 99px #11142d solid !important;
  border-left: 99px #11142d solid !important;
}
.ebony--ba-100 {
  border: 100px #11142d solid !important;
}
.ebony--bt-100 {
  border-top: 100px #11142d solid !important;
}
.ebony--br-100 {
  border-right: 100px #11142d solid !important;
}
.ebony--bl-100 {
  border-left: 100px #11142d solid !important;
}
.ebony--bb-100 {
  border-bottom: 100px #11142d solid !important;
}
.ebony--by-100 {
  border-top: 100px #11142d solid !important;
  border-bottom: 100px #11142d solid !important;
}
.ebony--bx-100 {
  border-right: 100px #11142d solid !important;
  border-left: 100px #11142d solid !important;
}
.carnation-pink--ba-1 {
  border: 1px #ffadc8 solid !important;
}
.carnation-pink--bt-1 {
  border-top: 1px #ffadc8 solid !important;
}
.carnation-pink--br-1 {
  border-right: 1px #ffadc8 solid !important;
}
.carnation-pink--bl-1 {
  border-left: 1px #ffadc8 solid !important;
}
.carnation-pink--bb-1 {
  border-bottom: 1px #ffadc8 solid !important;
}
.carnation-pink--by-1 {
  border-top: 1px #ffadc8 solid !important;
  border-bottom: 1px #ffadc8 solid !important;
}
.carnation-pink--bx-1 {
  border-right: 1px #ffadc8 solid !important;
  border-left: 1px #ffadc8 solid !important;
}
.carnation-pink--ba-2 {
  border: 2px #ffadc8 solid !important;
}
.carnation-pink--bt-2 {
  border-top: 2px #ffadc8 solid !important;
}
.carnation-pink--br-2 {
  border-right: 2px #ffadc8 solid !important;
}
.carnation-pink--bl-2 {
  border-left: 2px #ffadc8 solid !important;
}
.carnation-pink--bb-2 {
  border-bottom: 2px #ffadc8 solid !important;
}
.carnation-pink--by-2 {
  border-top: 2px #ffadc8 solid !important;
  border-bottom: 2px #ffadc8 solid !important;
}
.carnation-pink--bx-2 {
  border-right: 2px #ffadc8 solid !important;
  border-left: 2px #ffadc8 solid !important;
}
.carnation-pink--ba-3 {
  border: 3px #ffadc8 solid !important;
}
.carnation-pink--bt-3 {
  border-top: 3px #ffadc8 solid !important;
}
.carnation-pink--br-3 {
  border-right: 3px #ffadc8 solid !important;
}
.carnation-pink--bl-3 {
  border-left: 3px #ffadc8 solid !important;
}
.carnation-pink--bb-3 {
  border-bottom: 3px #ffadc8 solid !important;
}
.carnation-pink--by-3 {
  border-top: 3px #ffadc8 solid !important;
  border-bottom: 3px #ffadc8 solid !important;
}
.carnation-pink--bx-3 {
  border-right: 3px #ffadc8 solid !important;
  border-left: 3px #ffadc8 solid !important;
}
.carnation-pink--ba-4 {
  border: 4px #ffadc8 solid !important;
}
.carnation-pink--bt-4 {
  border-top: 4px #ffadc8 solid !important;
}
.carnation-pink--br-4 {
  border-right: 4px #ffadc8 solid !important;
}
.carnation-pink--bl-4 {
  border-left: 4px #ffadc8 solid !important;
}
.carnation-pink--bb-4 {
  border-bottom: 4px #ffadc8 solid !important;
}
.carnation-pink--by-4 {
  border-top: 4px #ffadc8 solid !important;
  border-bottom: 4px #ffadc8 solid !important;
}
.carnation-pink--bx-4 {
  border-right: 4px #ffadc8 solid !important;
  border-left: 4px #ffadc8 solid !important;
}
.carnation-pink--ba-5 {
  border: 5px #ffadc8 solid !important;
}
.carnation-pink--bt-5 {
  border-top: 5px #ffadc8 solid !important;
}
.carnation-pink--br-5 {
  border-right: 5px #ffadc8 solid !important;
}
.carnation-pink--bl-5 {
  border-left: 5px #ffadc8 solid !important;
}
.carnation-pink--bb-5 {
  border-bottom: 5px #ffadc8 solid !important;
}
.carnation-pink--by-5 {
  border-top: 5px #ffadc8 solid !important;
  border-bottom: 5px #ffadc8 solid !important;
}
.carnation-pink--bx-5 {
  border-right: 5px #ffadc8 solid !important;
  border-left: 5px #ffadc8 solid !important;
}
.carnation-pink--ba-6 {
  border: 6px #ffadc8 solid !important;
}
.carnation-pink--bt-6 {
  border-top: 6px #ffadc8 solid !important;
}
.carnation-pink--br-6 {
  border-right: 6px #ffadc8 solid !important;
}
.carnation-pink--bl-6 {
  border-left: 6px #ffadc8 solid !important;
}
.carnation-pink--bb-6 {
  border-bottom: 6px #ffadc8 solid !important;
}
.carnation-pink--by-6 {
  border-top: 6px #ffadc8 solid !important;
  border-bottom: 6px #ffadc8 solid !important;
}
.carnation-pink--bx-6 {
  border-right: 6px #ffadc8 solid !important;
  border-left: 6px #ffadc8 solid !important;
}
.carnation-pink--ba-7 {
  border: 7px #ffadc8 solid !important;
}
.carnation-pink--bt-7 {
  border-top: 7px #ffadc8 solid !important;
}
.carnation-pink--br-7 {
  border-right: 7px #ffadc8 solid !important;
}
.carnation-pink--bl-7 {
  border-left: 7px #ffadc8 solid !important;
}
.carnation-pink--bb-7 {
  border-bottom: 7px #ffadc8 solid !important;
}
.carnation-pink--by-7 {
  border-top: 7px #ffadc8 solid !important;
  border-bottom: 7px #ffadc8 solid !important;
}
.carnation-pink--bx-7 {
  border-right: 7px #ffadc8 solid !important;
  border-left: 7px #ffadc8 solid !important;
}
.carnation-pink--ba-8 {
  border: 8px #ffadc8 solid !important;
}
.carnation-pink--bt-8 {
  border-top: 8px #ffadc8 solid !important;
}
.carnation-pink--br-8 {
  border-right: 8px #ffadc8 solid !important;
}
.carnation-pink--bl-8 {
  border-left: 8px #ffadc8 solid !important;
}
.carnation-pink--bb-8 {
  border-bottom: 8px #ffadc8 solid !important;
}
.carnation-pink--by-8 {
  border-top: 8px #ffadc8 solid !important;
  border-bottom: 8px #ffadc8 solid !important;
}
.carnation-pink--bx-8 {
  border-right: 8px #ffadc8 solid !important;
  border-left: 8px #ffadc8 solid !important;
}
.carnation-pink--ba-9 {
  border: 9px #ffadc8 solid !important;
}
.carnation-pink--bt-9 {
  border-top: 9px #ffadc8 solid !important;
}
.carnation-pink--br-9 {
  border-right: 9px #ffadc8 solid !important;
}
.carnation-pink--bl-9 {
  border-left: 9px #ffadc8 solid !important;
}
.carnation-pink--bb-9 {
  border-bottom: 9px #ffadc8 solid !important;
}
.carnation-pink--by-9 {
  border-top: 9px #ffadc8 solid !important;
  border-bottom: 9px #ffadc8 solid !important;
}
.carnation-pink--bx-9 {
  border-right: 9px #ffadc8 solid !important;
  border-left: 9px #ffadc8 solid !important;
}
.carnation-pink--ba-10 {
  border: 10px #ffadc8 solid !important;
}
.carnation-pink--bt-10 {
  border-top: 10px #ffadc8 solid !important;
}
.carnation-pink--br-10 {
  border-right: 10px #ffadc8 solid !important;
}
.carnation-pink--bl-10 {
  border-left: 10px #ffadc8 solid !important;
}
.carnation-pink--bb-10 {
  border-bottom: 10px #ffadc8 solid !important;
}
.carnation-pink--by-10 {
  border-top: 10px #ffadc8 solid !important;
  border-bottom: 10px #ffadc8 solid !important;
}
.carnation-pink--bx-10 {
  border-right: 10px #ffadc8 solid !important;
  border-left: 10px #ffadc8 solid !important;
}
.carnation-pink--ba-11 {
  border: 11px #ffadc8 solid !important;
}
.carnation-pink--bt-11 {
  border-top: 11px #ffadc8 solid !important;
}
.carnation-pink--br-11 {
  border-right: 11px #ffadc8 solid !important;
}
.carnation-pink--bl-11 {
  border-left: 11px #ffadc8 solid !important;
}
.carnation-pink--bb-11 {
  border-bottom: 11px #ffadc8 solid !important;
}
.carnation-pink--by-11 {
  border-top: 11px #ffadc8 solid !important;
  border-bottom: 11px #ffadc8 solid !important;
}
.carnation-pink--bx-11 {
  border-right: 11px #ffadc8 solid !important;
  border-left: 11px #ffadc8 solid !important;
}
.carnation-pink--ba-12 {
  border: 12px #ffadc8 solid !important;
}
.carnation-pink--bt-12 {
  border-top: 12px #ffadc8 solid !important;
}
.carnation-pink--br-12 {
  border-right: 12px #ffadc8 solid !important;
}
.carnation-pink--bl-12 {
  border-left: 12px #ffadc8 solid !important;
}
.carnation-pink--bb-12 {
  border-bottom: 12px #ffadc8 solid !important;
}
.carnation-pink--by-12 {
  border-top: 12px #ffadc8 solid !important;
  border-bottom: 12px #ffadc8 solid !important;
}
.carnation-pink--bx-12 {
  border-right: 12px #ffadc8 solid !important;
  border-left: 12px #ffadc8 solid !important;
}
.carnation-pink--ba-13 {
  border: 13px #ffadc8 solid !important;
}
.carnation-pink--bt-13 {
  border-top: 13px #ffadc8 solid !important;
}
.carnation-pink--br-13 {
  border-right: 13px #ffadc8 solid !important;
}
.carnation-pink--bl-13 {
  border-left: 13px #ffadc8 solid !important;
}
.carnation-pink--bb-13 {
  border-bottom: 13px #ffadc8 solid !important;
}
.carnation-pink--by-13 {
  border-top: 13px #ffadc8 solid !important;
  border-bottom: 13px #ffadc8 solid !important;
}
.carnation-pink--bx-13 {
  border-right: 13px #ffadc8 solid !important;
  border-left: 13px #ffadc8 solid !important;
}
.carnation-pink--ba-14 {
  border: 14px #ffadc8 solid !important;
}
.carnation-pink--bt-14 {
  border-top: 14px #ffadc8 solid !important;
}
.carnation-pink--br-14 {
  border-right: 14px #ffadc8 solid !important;
}
.carnation-pink--bl-14 {
  border-left: 14px #ffadc8 solid !important;
}
.carnation-pink--bb-14 {
  border-bottom: 14px #ffadc8 solid !important;
}
.carnation-pink--by-14 {
  border-top: 14px #ffadc8 solid !important;
  border-bottom: 14px #ffadc8 solid !important;
}
.carnation-pink--bx-14 {
  border-right: 14px #ffadc8 solid !important;
  border-left: 14px #ffadc8 solid !important;
}
.carnation-pink--ba-15 {
  border: 15px #ffadc8 solid !important;
}
.carnation-pink--bt-15 {
  border-top: 15px #ffadc8 solid !important;
}
.carnation-pink--br-15 {
  border-right: 15px #ffadc8 solid !important;
}
.carnation-pink--bl-15 {
  border-left: 15px #ffadc8 solid !important;
}
.carnation-pink--bb-15 {
  border-bottom: 15px #ffadc8 solid !important;
}
.carnation-pink--by-15 {
  border-top: 15px #ffadc8 solid !important;
  border-bottom: 15px #ffadc8 solid !important;
}
.carnation-pink--bx-15 {
  border-right: 15px #ffadc8 solid !important;
  border-left: 15px #ffadc8 solid !important;
}
.carnation-pink--ba-16 {
  border: 16px #ffadc8 solid !important;
}
.carnation-pink--bt-16 {
  border-top: 16px #ffadc8 solid !important;
}
.carnation-pink--br-16 {
  border-right: 16px #ffadc8 solid !important;
}
.carnation-pink--bl-16 {
  border-left: 16px #ffadc8 solid !important;
}
.carnation-pink--bb-16 {
  border-bottom: 16px #ffadc8 solid !important;
}
.carnation-pink--by-16 {
  border-top: 16px #ffadc8 solid !important;
  border-bottom: 16px #ffadc8 solid !important;
}
.carnation-pink--bx-16 {
  border-right: 16px #ffadc8 solid !important;
  border-left: 16px #ffadc8 solid !important;
}
.carnation-pink--ba-17 {
  border: 17px #ffadc8 solid !important;
}
.carnation-pink--bt-17 {
  border-top: 17px #ffadc8 solid !important;
}
.carnation-pink--br-17 {
  border-right: 17px #ffadc8 solid !important;
}
.carnation-pink--bl-17 {
  border-left: 17px #ffadc8 solid !important;
}
.carnation-pink--bb-17 {
  border-bottom: 17px #ffadc8 solid !important;
}
.carnation-pink--by-17 {
  border-top: 17px #ffadc8 solid !important;
  border-bottom: 17px #ffadc8 solid !important;
}
.carnation-pink--bx-17 {
  border-right: 17px #ffadc8 solid !important;
  border-left: 17px #ffadc8 solid !important;
}
.carnation-pink--ba-18 {
  border: 18px #ffadc8 solid !important;
}
.carnation-pink--bt-18 {
  border-top: 18px #ffadc8 solid !important;
}
.carnation-pink--br-18 {
  border-right: 18px #ffadc8 solid !important;
}
.carnation-pink--bl-18 {
  border-left: 18px #ffadc8 solid !important;
}
.carnation-pink--bb-18 {
  border-bottom: 18px #ffadc8 solid !important;
}
.carnation-pink--by-18 {
  border-top: 18px #ffadc8 solid !important;
  border-bottom: 18px #ffadc8 solid !important;
}
.carnation-pink--bx-18 {
  border-right: 18px #ffadc8 solid !important;
  border-left: 18px #ffadc8 solid !important;
}
.carnation-pink--ba-19 {
  border: 19px #ffadc8 solid !important;
}
.carnation-pink--bt-19 {
  border-top: 19px #ffadc8 solid !important;
}
.carnation-pink--br-19 {
  border-right: 19px #ffadc8 solid !important;
}
.carnation-pink--bl-19 {
  border-left: 19px #ffadc8 solid !important;
}
.carnation-pink--bb-19 {
  border-bottom: 19px #ffadc8 solid !important;
}
.carnation-pink--by-19 {
  border-top: 19px #ffadc8 solid !important;
  border-bottom: 19px #ffadc8 solid !important;
}
.carnation-pink--bx-19 {
  border-right: 19px #ffadc8 solid !important;
  border-left: 19px #ffadc8 solid !important;
}
.carnation-pink--ba-20 {
  border: 20px #ffadc8 solid !important;
}
.carnation-pink--bt-20 {
  border-top: 20px #ffadc8 solid !important;
}
.carnation-pink--br-20 {
  border-right: 20px #ffadc8 solid !important;
}
.carnation-pink--bl-20 {
  border-left: 20px #ffadc8 solid !important;
}
.carnation-pink--bb-20 {
  border-bottom: 20px #ffadc8 solid !important;
}
.carnation-pink--by-20 {
  border-top: 20px #ffadc8 solid !important;
  border-bottom: 20px #ffadc8 solid !important;
}
.carnation-pink--bx-20 {
  border-right: 20px #ffadc8 solid !important;
  border-left: 20px #ffadc8 solid !important;
}
.carnation-pink--ba-21 {
  border: 21px #ffadc8 solid !important;
}
.carnation-pink--bt-21 {
  border-top: 21px #ffadc8 solid !important;
}
.carnation-pink--br-21 {
  border-right: 21px #ffadc8 solid !important;
}
.carnation-pink--bl-21 {
  border-left: 21px #ffadc8 solid !important;
}
.carnation-pink--bb-21 {
  border-bottom: 21px #ffadc8 solid !important;
}
.carnation-pink--by-21 {
  border-top: 21px #ffadc8 solid !important;
  border-bottom: 21px #ffadc8 solid !important;
}
.carnation-pink--bx-21 {
  border-right: 21px #ffadc8 solid !important;
  border-left: 21px #ffadc8 solid !important;
}
.carnation-pink--ba-22 {
  border: 22px #ffadc8 solid !important;
}
.carnation-pink--bt-22 {
  border-top: 22px #ffadc8 solid !important;
}
.carnation-pink--br-22 {
  border-right: 22px #ffadc8 solid !important;
}
.carnation-pink--bl-22 {
  border-left: 22px #ffadc8 solid !important;
}
.carnation-pink--bb-22 {
  border-bottom: 22px #ffadc8 solid !important;
}
.carnation-pink--by-22 {
  border-top: 22px #ffadc8 solid !important;
  border-bottom: 22px #ffadc8 solid !important;
}
.carnation-pink--bx-22 {
  border-right: 22px #ffadc8 solid !important;
  border-left: 22px #ffadc8 solid !important;
}
.carnation-pink--ba-23 {
  border: 23px #ffadc8 solid !important;
}
.carnation-pink--bt-23 {
  border-top: 23px #ffadc8 solid !important;
}
.carnation-pink--br-23 {
  border-right: 23px #ffadc8 solid !important;
}
.carnation-pink--bl-23 {
  border-left: 23px #ffadc8 solid !important;
}
.carnation-pink--bb-23 {
  border-bottom: 23px #ffadc8 solid !important;
}
.carnation-pink--by-23 {
  border-top: 23px #ffadc8 solid !important;
  border-bottom: 23px #ffadc8 solid !important;
}
.carnation-pink--bx-23 {
  border-right: 23px #ffadc8 solid !important;
  border-left: 23px #ffadc8 solid !important;
}
.carnation-pink--ba-24 {
  border: 24px #ffadc8 solid !important;
}
.carnation-pink--bt-24 {
  border-top: 24px #ffadc8 solid !important;
}
.carnation-pink--br-24 {
  border-right: 24px #ffadc8 solid !important;
}
.carnation-pink--bl-24 {
  border-left: 24px #ffadc8 solid !important;
}
.carnation-pink--bb-24 {
  border-bottom: 24px #ffadc8 solid !important;
}
.carnation-pink--by-24 {
  border-top: 24px #ffadc8 solid !important;
  border-bottom: 24px #ffadc8 solid !important;
}
.carnation-pink--bx-24 {
  border-right: 24px #ffadc8 solid !important;
  border-left: 24px #ffadc8 solid !important;
}
.carnation-pink--ba-25 {
  border: 25px #ffadc8 solid !important;
}
.carnation-pink--bt-25 {
  border-top: 25px #ffadc8 solid !important;
}
.carnation-pink--br-25 {
  border-right: 25px #ffadc8 solid !important;
}
.carnation-pink--bl-25 {
  border-left: 25px #ffadc8 solid !important;
}
.carnation-pink--bb-25 {
  border-bottom: 25px #ffadc8 solid !important;
}
.carnation-pink--by-25 {
  border-top: 25px #ffadc8 solid !important;
  border-bottom: 25px #ffadc8 solid !important;
}
.carnation-pink--bx-25 {
  border-right: 25px #ffadc8 solid !important;
  border-left: 25px #ffadc8 solid !important;
}
.carnation-pink--ba-26 {
  border: 26px #ffadc8 solid !important;
}
.carnation-pink--bt-26 {
  border-top: 26px #ffadc8 solid !important;
}
.carnation-pink--br-26 {
  border-right: 26px #ffadc8 solid !important;
}
.carnation-pink--bl-26 {
  border-left: 26px #ffadc8 solid !important;
}
.carnation-pink--bb-26 {
  border-bottom: 26px #ffadc8 solid !important;
}
.carnation-pink--by-26 {
  border-top: 26px #ffadc8 solid !important;
  border-bottom: 26px #ffadc8 solid !important;
}
.carnation-pink--bx-26 {
  border-right: 26px #ffadc8 solid !important;
  border-left: 26px #ffadc8 solid !important;
}
.carnation-pink--ba-27 {
  border: 27px #ffadc8 solid !important;
}
.carnation-pink--bt-27 {
  border-top: 27px #ffadc8 solid !important;
}
.carnation-pink--br-27 {
  border-right: 27px #ffadc8 solid !important;
}
.carnation-pink--bl-27 {
  border-left: 27px #ffadc8 solid !important;
}
.carnation-pink--bb-27 {
  border-bottom: 27px #ffadc8 solid !important;
}
.carnation-pink--by-27 {
  border-top: 27px #ffadc8 solid !important;
  border-bottom: 27px #ffadc8 solid !important;
}
.carnation-pink--bx-27 {
  border-right: 27px #ffadc8 solid !important;
  border-left: 27px #ffadc8 solid !important;
}
.carnation-pink--ba-28 {
  border: 28px #ffadc8 solid !important;
}
.carnation-pink--bt-28 {
  border-top: 28px #ffadc8 solid !important;
}
.carnation-pink--br-28 {
  border-right: 28px #ffadc8 solid !important;
}
.carnation-pink--bl-28 {
  border-left: 28px #ffadc8 solid !important;
}
.carnation-pink--bb-28 {
  border-bottom: 28px #ffadc8 solid !important;
}
.carnation-pink--by-28 {
  border-top: 28px #ffadc8 solid !important;
  border-bottom: 28px #ffadc8 solid !important;
}
.carnation-pink--bx-28 {
  border-right: 28px #ffadc8 solid !important;
  border-left: 28px #ffadc8 solid !important;
}
.carnation-pink--ba-29 {
  border: 29px #ffadc8 solid !important;
}
.carnation-pink--bt-29 {
  border-top: 29px #ffadc8 solid !important;
}
.carnation-pink--br-29 {
  border-right: 29px #ffadc8 solid !important;
}
.carnation-pink--bl-29 {
  border-left: 29px #ffadc8 solid !important;
}
.carnation-pink--bb-29 {
  border-bottom: 29px #ffadc8 solid !important;
}
.carnation-pink--by-29 {
  border-top: 29px #ffadc8 solid !important;
  border-bottom: 29px #ffadc8 solid !important;
}
.carnation-pink--bx-29 {
  border-right: 29px #ffadc8 solid !important;
  border-left: 29px #ffadc8 solid !important;
}
.carnation-pink--ba-30 {
  border: 30px #ffadc8 solid !important;
}
.carnation-pink--bt-30 {
  border-top: 30px #ffadc8 solid !important;
}
.carnation-pink--br-30 {
  border-right: 30px #ffadc8 solid !important;
}
.carnation-pink--bl-30 {
  border-left: 30px #ffadc8 solid !important;
}
.carnation-pink--bb-30 {
  border-bottom: 30px #ffadc8 solid !important;
}
.carnation-pink--by-30 {
  border-top: 30px #ffadc8 solid !important;
  border-bottom: 30px #ffadc8 solid !important;
}
.carnation-pink--bx-30 {
  border-right: 30px #ffadc8 solid !important;
  border-left: 30px #ffadc8 solid !important;
}
.carnation-pink--ba-31 {
  border: 31px #ffadc8 solid !important;
}
.carnation-pink--bt-31 {
  border-top: 31px #ffadc8 solid !important;
}
.carnation-pink--br-31 {
  border-right: 31px #ffadc8 solid !important;
}
.carnation-pink--bl-31 {
  border-left: 31px #ffadc8 solid !important;
}
.carnation-pink--bb-31 {
  border-bottom: 31px #ffadc8 solid !important;
}
.carnation-pink--by-31 {
  border-top: 31px #ffadc8 solid !important;
  border-bottom: 31px #ffadc8 solid !important;
}
.carnation-pink--bx-31 {
  border-right: 31px #ffadc8 solid !important;
  border-left: 31px #ffadc8 solid !important;
}
.carnation-pink--ba-32 {
  border: 32px #ffadc8 solid !important;
}
.carnation-pink--bt-32 {
  border-top: 32px #ffadc8 solid !important;
}
.carnation-pink--br-32 {
  border-right: 32px #ffadc8 solid !important;
}
.carnation-pink--bl-32 {
  border-left: 32px #ffadc8 solid !important;
}
.carnation-pink--bb-32 {
  border-bottom: 32px #ffadc8 solid !important;
}
.carnation-pink--by-32 {
  border-top: 32px #ffadc8 solid !important;
  border-bottom: 32px #ffadc8 solid !important;
}
.carnation-pink--bx-32 {
  border-right: 32px #ffadc8 solid !important;
  border-left: 32px #ffadc8 solid !important;
}
.carnation-pink--ba-33 {
  border: 33px #ffadc8 solid !important;
}
.carnation-pink--bt-33 {
  border-top: 33px #ffadc8 solid !important;
}
.carnation-pink--br-33 {
  border-right: 33px #ffadc8 solid !important;
}
.carnation-pink--bl-33 {
  border-left: 33px #ffadc8 solid !important;
}
.carnation-pink--bb-33 {
  border-bottom: 33px #ffadc8 solid !important;
}
.carnation-pink--by-33 {
  border-top: 33px #ffadc8 solid !important;
  border-bottom: 33px #ffadc8 solid !important;
}
.carnation-pink--bx-33 {
  border-right: 33px #ffadc8 solid !important;
  border-left: 33px #ffadc8 solid !important;
}
.carnation-pink--ba-34 {
  border: 34px #ffadc8 solid !important;
}
.carnation-pink--bt-34 {
  border-top: 34px #ffadc8 solid !important;
}
.carnation-pink--br-34 {
  border-right: 34px #ffadc8 solid !important;
}
.carnation-pink--bl-34 {
  border-left: 34px #ffadc8 solid !important;
}
.carnation-pink--bb-34 {
  border-bottom: 34px #ffadc8 solid !important;
}
.carnation-pink--by-34 {
  border-top: 34px #ffadc8 solid !important;
  border-bottom: 34px #ffadc8 solid !important;
}
.carnation-pink--bx-34 {
  border-right: 34px #ffadc8 solid !important;
  border-left: 34px #ffadc8 solid !important;
}
.carnation-pink--ba-35 {
  border: 35px #ffadc8 solid !important;
}
.carnation-pink--bt-35 {
  border-top: 35px #ffadc8 solid !important;
}
.carnation-pink--br-35 {
  border-right: 35px #ffadc8 solid !important;
}
.carnation-pink--bl-35 {
  border-left: 35px #ffadc8 solid !important;
}
.carnation-pink--bb-35 {
  border-bottom: 35px #ffadc8 solid !important;
}
.carnation-pink--by-35 {
  border-top: 35px #ffadc8 solid !important;
  border-bottom: 35px #ffadc8 solid !important;
}
.carnation-pink--bx-35 {
  border-right: 35px #ffadc8 solid !important;
  border-left: 35px #ffadc8 solid !important;
}
.carnation-pink--ba-36 {
  border: 36px #ffadc8 solid !important;
}
.carnation-pink--bt-36 {
  border-top: 36px #ffadc8 solid !important;
}
.carnation-pink--br-36 {
  border-right: 36px #ffadc8 solid !important;
}
.carnation-pink--bl-36 {
  border-left: 36px #ffadc8 solid !important;
}
.carnation-pink--bb-36 {
  border-bottom: 36px #ffadc8 solid !important;
}
.carnation-pink--by-36 {
  border-top: 36px #ffadc8 solid !important;
  border-bottom: 36px #ffadc8 solid !important;
}
.carnation-pink--bx-36 {
  border-right: 36px #ffadc8 solid !important;
  border-left: 36px #ffadc8 solid !important;
}
.carnation-pink--ba-37 {
  border: 37px #ffadc8 solid !important;
}
.carnation-pink--bt-37 {
  border-top: 37px #ffadc8 solid !important;
}
.carnation-pink--br-37 {
  border-right: 37px #ffadc8 solid !important;
}
.carnation-pink--bl-37 {
  border-left: 37px #ffadc8 solid !important;
}
.carnation-pink--bb-37 {
  border-bottom: 37px #ffadc8 solid !important;
}
.carnation-pink--by-37 {
  border-top: 37px #ffadc8 solid !important;
  border-bottom: 37px #ffadc8 solid !important;
}
.carnation-pink--bx-37 {
  border-right: 37px #ffadc8 solid !important;
  border-left: 37px #ffadc8 solid !important;
}
.carnation-pink--ba-38 {
  border: 38px #ffadc8 solid !important;
}
.carnation-pink--bt-38 {
  border-top: 38px #ffadc8 solid !important;
}
.carnation-pink--br-38 {
  border-right: 38px #ffadc8 solid !important;
}
.carnation-pink--bl-38 {
  border-left: 38px #ffadc8 solid !important;
}
.carnation-pink--bb-38 {
  border-bottom: 38px #ffadc8 solid !important;
}
.carnation-pink--by-38 {
  border-top: 38px #ffadc8 solid !important;
  border-bottom: 38px #ffadc8 solid !important;
}
.carnation-pink--bx-38 {
  border-right: 38px #ffadc8 solid !important;
  border-left: 38px #ffadc8 solid !important;
}
.carnation-pink--ba-39 {
  border: 39px #ffadc8 solid !important;
}
.carnation-pink--bt-39 {
  border-top: 39px #ffadc8 solid !important;
}
.carnation-pink--br-39 {
  border-right: 39px #ffadc8 solid !important;
}
.carnation-pink--bl-39 {
  border-left: 39px #ffadc8 solid !important;
}
.carnation-pink--bb-39 {
  border-bottom: 39px #ffadc8 solid !important;
}
.carnation-pink--by-39 {
  border-top: 39px #ffadc8 solid !important;
  border-bottom: 39px #ffadc8 solid !important;
}
.carnation-pink--bx-39 {
  border-right: 39px #ffadc8 solid !important;
  border-left: 39px #ffadc8 solid !important;
}
.carnation-pink--ba-40 {
  border: 40px #ffadc8 solid !important;
}
.carnation-pink--bt-40 {
  border-top: 40px #ffadc8 solid !important;
}
.carnation-pink--br-40 {
  border-right: 40px #ffadc8 solid !important;
}
.carnation-pink--bl-40 {
  border-left: 40px #ffadc8 solid !important;
}
.carnation-pink--bb-40 {
  border-bottom: 40px #ffadc8 solid !important;
}
.carnation-pink--by-40 {
  border-top: 40px #ffadc8 solid !important;
  border-bottom: 40px #ffadc8 solid !important;
}
.carnation-pink--bx-40 {
  border-right: 40px #ffadc8 solid !important;
  border-left: 40px #ffadc8 solid !important;
}
.carnation-pink--ba-41 {
  border: 41px #ffadc8 solid !important;
}
.carnation-pink--bt-41 {
  border-top: 41px #ffadc8 solid !important;
}
.carnation-pink--br-41 {
  border-right: 41px #ffadc8 solid !important;
}
.carnation-pink--bl-41 {
  border-left: 41px #ffadc8 solid !important;
}
.carnation-pink--bb-41 {
  border-bottom: 41px #ffadc8 solid !important;
}
.carnation-pink--by-41 {
  border-top: 41px #ffadc8 solid !important;
  border-bottom: 41px #ffadc8 solid !important;
}
.carnation-pink--bx-41 {
  border-right: 41px #ffadc8 solid !important;
  border-left: 41px #ffadc8 solid !important;
}
.carnation-pink--ba-42 {
  border: 42px #ffadc8 solid !important;
}
.carnation-pink--bt-42 {
  border-top: 42px #ffadc8 solid !important;
}
.carnation-pink--br-42 {
  border-right: 42px #ffadc8 solid !important;
}
.carnation-pink--bl-42 {
  border-left: 42px #ffadc8 solid !important;
}
.carnation-pink--bb-42 {
  border-bottom: 42px #ffadc8 solid !important;
}
.carnation-pink--by-42 {
  border-top: 42px #ffadc8 solid !important;
  border-bottom: 42px #ffadc8 solid !important;
}
.carnation-pink--bx-42 {
  border-right: 42px #ffadc8 solid !important;
  border-left: 42px #ffadc8 solid !important;
}
.carnation-pink--ba-43 {
  border: 43px #ffadc8 solid !important;
}
.carnation-pink--bt-43 {
  border-top: 43px #ffadc8 solid !important;
}
.carnation-pink--br-43 {
  border-right: 43px #ffadc8 solid !important;
}
.carnation-pink--bl-43 {
  border-left: 43px #ffadc8 solid !important;
}
.carnation-pink--bb-43 {
  border-bottom: 43px #ffadc8 solid !important;
}
.carnation-pink--by-43 {
  border-top: 43px #ffadc8 solid !important;
  border-bottom: 43px #ffadc8 solid !important;
}
.carnation-pink--bx-43 {
  border-right: 43px #ffadc8 solid !important;
  border-left: 43px #ffadc8 solid !important;
}
.carnation-pink--ba-44 {
  border: 44px #ffadc8 solid !important;
}
.carnation-pink--bt-44 {
  border-top: 44px #ffadc8 solid !important;
}
.carnation-pink--br-44 {
  border-right: 44px #ffadc8 solid !important;
}
.carnation-pink--bl-44 {
  border-left: 44px #ffadc8 solid !important;
}
.carnation-pink--bb-44 {
  border-bottom: 44px #ffadc8 solid !important;
}
.carnation-pink--by-44 {
  border-top: 44px #ffadc8 solid !important;
  border-bottom: 44px #ffadc8 solid !important;
}
.carnation-pink--bx-44 {
  border-right: 44px #ffadc8 solid !important;
  border-left: 44px #ffadc8 solid !important;
}
.carnation-pink--ba-45 {
  border: 45px #ffadc8 solid !important;
}
.carnation-pink--bt-45 {
  border-top: 45px #ffadc8 solid !important;
}
.carnation-pink--br-45 {
  border-right: 45px #ffadc8 solid !important;
}
.carnation-pink--bl-45 {
  border-left: 45px #ffadc8 solid !important;
}
.carnation-pink--bb-45 {
  border-bottom: 45px #ffadc8 solid !important;
}
.carnation-pink--by-45 {
  border-top: 45px #ffadc8 solid !important;
  border-bottom: 45px #ffadc8 solid !important;
}
.carnation-pink--bx-45 {
  border-right: 45px #ffadc8 solid !important;
  border-left: 45px #ffadc8 solid !important;
}
.carnation-pink--ba-46 {
  border: 46px #ffadc8 solid !important;
}
.carnation-pink--bt-46 {
  border-top: 46px #ffadc8 solid !important;
}
.carnation-pink--br-46 {
  border-right: 46px #ffadc8 solid !important;
}
.carnation-pink--bl-46 {
  border-left: 46px #ffadc8 solid !important;
}
.carnation-pink--bb-46 {
  border-bottom: 46px #ffadc8 solid !important;
}
.carnation-pink--by-46 {
  border-top: 46px #ffadc8 solid !important;
  border-bottom: 46px #ffadc8 solid !important;
}
.carnation-pink--bx-46 {
  border-right: 46px #ffadc8 solid !important;
  border-left: 46px #ffadc8 solid !important;
}
.carnation-pink--ba-47 {
  border: 47px #ffadc8 solid !important;
}
.carnation-pink--bt-47 {
  border-top: 47px #ffadc8 solid !important;
}
.carnation-pink--br-47 {
  border-right: 47px #ffadc8 solid !important;
}
.carnation-pink--bl-47 {
  border-left: 47px #ffadc8 solid !important;
}
.carnation-pink--bb-47 {
  border-bottom: 47px #ffadc8 solid !important;
}
.carnation-pink--by-47 {
  border-top: 47px #ffadc8 solid !important;
  border-bottom: 47px #ffadc8 solid !important;
}
.carnation-pink--bx-47 {
  border-right: 47px #ffadc8 solid !important;
  border-left: 47px #ffadc8 solid !important;
}
.carnation-pink--ba-48 {
  border: 48px #ffadc8 solid !important;
}
.carnation-pink--bt-48 {
  border-top: 48px #ffadc8 solid !important;
}
.carnation-pink--br-48 {
  border-right: 48px #ffadc8 solid !important;
}
.carnation-pink--bl-48 {
  border-left: 48px #ffadc8 solid !important;
}
.carnation-pink--bb-48 {
  border-bottom: 48px #ffadc8 solid !important;
}
.carnation-pink--by-48 {
  border-top: 48px #ffadc8 solid !important;
  border-bottom: 48px #ffadc8 solid !important;
}
.carnation-pink--bx-48 {
  border-right: 48px #ffadc8 solid !important;
  border-left: 48px #ffadc8 solid !important;
}
.carnation-pink--ba-49 {
  border: 49px #ffadc8 solid !important;
}
.carnation-pink--bt-49 {
  border-top: 49px #ffadc8 solid !important;
}
.carnation-pink--br-49 {
  border-right: 49px #ffadc8 solid !important;
}
.carnation-pink--bl-49 {
  border-left: 49px #ffadc8 solid !important;
}
.carnation-pink--bb-49 {
  border-bottom: 49px #ffadc8 solid !important;
}
.carnation-pink--by-49 {
  border-top: 49px #ffadc8 solid !important;
  border-bottom: 49px #ffadc8 solid !important;
}
.carnation-pink--bx-49 {
  border-right: 49px #ffadc8 solid !important;
  border-left: 49px #ffadc8 solid !important;
}
.carnation-pink--ba-50 {
  border: 50px #ffadc8 solid !important;
}
.carnation-pink--bt-50 {
  border-top: 50px #ffadc8 solid !important;
}
.carnation-pink--br-50 {
  border-right: 50px #ffadc8 solid !important;
}
.carnation-pink--bl-50 {
  border-left: 50px #ffadc8 solid !important;
}
.carnation-pink--bb-50 {
  border-bottom: 50px #ffadc8 solid !important;
}
.carnation-pink--by-50 {
  border-top: 50px #ffadc8 solid !important;
  border-bottom: 50px #ffadc8 solid !important;
}
.carnation-pink--bx-50 {
  border-right: 50px #ffadc8 solid !important;
  border-left: 50px #ffadc8 solid !important;
}
.carnation-pink--ba-51 {
  border: 51px #ffadc8 solid !important;
}
.carnation-pink--bt-51 {
  border-top: 51px #ffadc8 solid !important;
}
.carnation-pink--br-51 {
  border-right: 51px #ffadc8 solid !important;
}
.carnation-pink--bl-51 {
  border-left: 51px #ffadc8 solid !important;
}
.carnation-pink--bb-51 {
  border-bottom: 51px #ffadc8 solid !important;
}
.carnation-pink--by-51 {
  border-top: 51px #ffadc8 solid !important;
  border-bottom: 51px #ffadc8 solid !important;
}
.carnation-pink--bx-51 {
  border-right: 51px #ffadc8 solid !important;
  border-left: 51px #ffadc8 solid !important;
}
.carnation-pink--ba-52 {
  border: 52px #ffadc8 solid !important;
}
.carnation-pink--bt-52 {
  border-top: 52px #ffadc8 solid !important;
}
.carnation-pink--br-52 {
  border-right: 52px #ffadc8 solid !important;
}
.carnation-pink--bl-52 {
  border-left: 52px #ffadc8 solid !important;
}
.carnation-pink--bb-52 {
  border-bottom: 52px #ffadc8 solid !important;
}
.carnation-pink--by-52 {
  border-top: 52px #ffadc8 solid !important;
  border-bottom: 52px #ffadc8 solid !important;
}
.carnation-pink--bx-52 {
  border-right: 52px #ffadc8 solid !important;
  border-left: 52px #ffadc8 solid !important;
}
.carnation-pink--ba-53 {
  border: 53px #ffadc8 solid !important;
}
.carnation-pink--bt-53 {
  border-top: 53px #ffadc8 solid !important;
}
.carnation-pink--br-53 {
  border-right: 53px #ffadc8 solid !important;
}
.carnation-pink--bl-53 {
  border-left: 53px #ffadc8 solid !important;
}
.carnation-pink--bb-53 {
  border-bottom: 53px #ffadc8 solid !important;
}
.carnation-pink--by-53 {
  border-top: 53px #ffadc8 solid !important;
  border-bottom: 53px #ffadc8 solid !important;
}
.carnation-pink--bx-53 {
  border-right: 53px #ffadc8 solid !important;
  border-left: 53px #ffadc8 solid !important;
}
.carnation-pink--ba-54 {
  border: 54px #ffadc8 solid !important;
}
.carnation-pink--bt-54 {
  border-top: 54px #ffadc8 solid !important;
}
.carnation-pink--br-54 {
  border-right: 54px #ffadc8 solid !important;
}
.carnation-pink--bl-54 {
  border-left: 54px #ffadc8 solid !important;
}
.carnation-pink--bb-54 {
  border-bottom: 54px #ffadc8 solid !important;
}
.carnation-pink--by-54 {
  border-top: 54px #ffadc8 solid !important;
  border-bottom: 54px #ffadc8 solid !important;
}
.carnation-pink--bx-54 {
  border-right: 54px #ffadc8 solid !important;
  border-left: 54px #ffadc8 solid !important;
}
.carnation-pink--ba-55 {
  border: 55px #ffadc8 solid !important;
}
.carnation-pink--bt-55 {
  border-top: 55px #ffadc8 solid !important;
}
.carnation-pink--br-55 {
  border-right: 55px #ffadc8 solid !important;
}
.carnation-pink--bl-55 {
  border-left: 55px #ffadc8 solid !important;
}
.carnation-pink--bb-55 {
  border-bottom: 55px #ffadc8 solid !important;
}
.carnation-pink--by-55 {
  border-top: 55px #ffadc8 solid !important;
  border-bottom: 55px #ffadc8 solid !important;
}
.carnation-pink--bx-55 {
  border-right: 55px #ffadc8 solid !important;
  border-left: 55px #ffadc8 solid !important;
}
.carnation-pink--ba-56 {
  border: 56px #ffadc8 solid !important;
}
.carnation-pink--bt-56 {
  border-top: 56px #ffadc8 solid !important;
}
.carnation-pink--br-56 {
  border-right: 56px #ffadc8 solid !important;
}
.carnation-pink--bl-56 {
  border-left: 56px #ffadc8 solid !important;
}
.carnation-pink--bb-56 {
  border-bottom: 56px #ffadc8 solid !important;
}
.carnation-pink--by-56 {
  border-top: 56px #ffadc8 solid !important;
  border-bottom: 56px #ffadc8 solid !important;
}
.carnation-pink--bx-56 {
  border-right: 56px #ffadc8 solid !important;
  border-left: 56px #ffadc8 solid !important;
}
.carnation-pink--ba-57 {
  border: 57px #ffadc8 solid !important;
}
.carnation-pink--bt-57 {
  border-top: 57px #ffadc8 solid !important;
}
.carnation-pink--br-57 {
  border-right: 57px #ffadc8 solid !important;
}
.carnation-pink--bl-57 {
  border-left: 57px #ffadc8 solid !important;
}
.carnation-pink--bb-57 {
  border-bottom: 57px #ffadc8 solid !important;
}
.carnation-pink--by-57 {
  border-top: 57px #ffadc8 solid !important;
  border-bottom: 57px #ffadc8 solid !important;
}
.carnation-pink--bx-57 {
  border-right: 57px #ffadc8 solid !important;
  border-left: 57px #ffadc8 solid !important;
}
.carnation-pink--ba-58 {
  border: 58px #ffadc8 solid !important;
}
.carnation-pink--bt-58 {
  border-top: 58px #ffadc8 solid !important;
}
.carnation-pink--br-58 {
  border-right: 58px #ffadc8 solid !important;
}
.carnation-pink--bl-58 {
  border-left: 58px #ffadc8 solid !important;
}
.carnation-pink--bb-58 {
  border-bottom: 58px #ffadc8 solid !important;
}
.carnation-pink--by-58 {
  border-top: 58px #ffadc8 solid !important;
  border-bottom: 58px #ffadc8 solid !important;
}
.carnation-pink--bx-58 {
  border-right: 58px #ffadc8 solid !important;
  border-left: 58px #ffadc8 solid !important;
}
.carnation-pink--ba-59 {
  border: 59px #ffadc8 solid !important;
}
.carnation-pink--bt-59 {
  border-top: 59px #ffadc8 solid !important;
}
.carnation-pink--br-59 {
  border-right: 59px #ffadc8 solid !important;
}
.carnation-pink--bl-59 {
  border-left: 59px #ffadc8 solid !important;
}
.carnation-pink--bb-59 {
  border-bottom: 59px #ffadc8 solid !important;
}
.carnation-pink--by-59 {
  border-top: 59px #ffadc8 solid !important;
  border-bottom: 59px #ffadc8 solid !important;
}
.carnation-pink--bx-59 {
  border-right: 59px #ffadc8 solid !important;
  border-left: 59px #ffadc8 solid !important;
}
.carnation-pink--ba-60 {
  border: 60px #ffadc8 solid !important;
}
.carnation-pink--bt-60 {
  border-top: 60px #ffadc8 solid !important;
}
.carnation-pink--br-60 {
  border-right: 60px #ffadc8 solid !important;
}
.carnation-pink--bl-60 {
  border-left: 60px #ffadc8 solid !important;
}
.carnation-pink--bb-60 {
  border-bottom: 60px #ffadc8 solid !important;
}
.carnation-pink--by-60 {
  border-top: 60px #ffadc8 solid !important;
  border-bottom: 60px #ffadc8 solid !important;
}
.carnation-pink--bx-60 {
  border-right: 60px #ffadc8 solid !important;
  border-left: 60px #ffadc8 solid !important;
}
.carnation-pink--ba-61 {
  border: 61px #ffadc8 solid !important;
}
.carnation-pink--bt-61 {
  border-top: 61px #ffadc8 solid !important;
}
.carnation-pink--br-61 {
  border-right: 61px #ffadc8 solid !important;
}
.carnation-pink--bl-61 {
  border-left: 61px #ffadc8 solid !important;
}
.carnation-pink--bb-61 {
  border-bottom: 61px #ffadc8 solid !important;
}
.carnation-pink--by-61 {
  border-top: 61px #ffadc8 solid !important;
  border-bottom: 61px #ffadc8 solid !important;
}
.carnation-pink--bx-61 {
  border-right: 61px #ffadc8 solid !important;
  border-left: 61px #ffadc8 solid !important;
}
.carnation-pink--ba-62 {
  border: 62px #ffadc8 solid !important;
}
.carnation-pink--bt-62 {
  border-top: 62px #ffadc8 solid !important;
}
.carnation-pink--br-62 {
  border-right: 62px #ffadc8 solid !important;
}
.carnation-pink--bl-62 {
  border-left: 62px #ffadc8 solid !important;
}
.carnation-pink--bb-62 {
  border-bottom: 62px #ffadc8 solid !important;
}
.carnation-pink--by-62 {
  border-top: 62px #ffadc8 solid !important;
  border-bottom: 62px #ffadc8 solid !important;
}
.carnation-pink--bx-62 {
  border-right: 62px #ffadc8 solid !important;
  border-left: 62px #ffadc8 solid !important;
}
.carnation-pink--ba-63 {
  border: 63px #ffadc8 solid !important;
}
.carnation-pink--bt-63 {
  border-top: 63px #ffadc8 solid !important;
}
.carnation-pink--br-63 {
  border-right: 63px #ffadc8 solid !important;
}
.carnation-pink--bl-63 {
  border-left: 63px #ffadc8 solid !important;
}
.carnation-pink--bb-63 {
  border-bottom: 63px #ffadc8 solid !important;
}
.carnation-pink--by-63 {
  border-top: 63px #ffadc8 solid !important;
  border-bottom: 63px #ffadc8 solid !important;
}
.carnation-pink--bx-63 {
  border-right: 63px #ffadc8 solid !important;
  border-left: 63px #ffadc8 solid !important;
}
.carnation-pink--ba-64 {
  border: 64px #ffadc8 solid !important;
}
.carnation-pink--bt-64 {
  border-top: 64px #ffadc8 solid !important;
}
.carnation-pink--br-64 {
  border-right: 64px #ffadc8 solid !important;
}
.carnation-pink--bl-64 {
  border-left: 64px #ffadc8 solid !important;
}
.carnation-pink--bb-64 {
  border-bottom: 64px #ffadc8 solid !important;
}
.carnation-pink--by-64 {
  border-top: 64px #ffadc8 solid !important;
  border-bottom: 64px #ffadc8 solid !important;
}
.carnation-pink--bx-64 {
  border-right: 64px #ffadc8 solid !important;
  border-left: 64px #ffadc8 solid !important;
}
.carnation-pink--ba-65 {
  border: 65px #ffadc8 solid !important;
}
.carnation-pink--bt-65 {
  border-top: 65px #ffadc8 solid !important;
}
.carnation-pink--br-65 {
  border-right: 65px #ffadc8 solid !important;
}
.carnation-pink--bl-65 {
  border-left: 65px #ffadc8 solid !important;
}
.carnation-pink--bb-65 {
  border-bottom: 65px #ffadc8 solid !important;
}
.carnation-pink--by-65 {
  border-top: 65px #ffadc8 solid !important;
  border-bottom: 65px #ffadc8 solid !important;
}
.carnation-pink--bx-65 {
  border-right: 65px #ffadc8 solid !important;
  border-left: 65px #ffadc8 solid !important;
}
.carnation-pink--ba-66 {
  border: 66px #ffadc8 solid !important;
}
.carnation-pink--bt-66 {
  border-top: 66px #ffadc8 solid !important;
}
.carnation-pink--br-66 {
  border-right: 66px #ffadc8 solid !important;
}
.carnation-pink--bl-66 {
  border-left: 66px #ffadc8 solid !important;
}
.carnation-pink--bb-66 {
  border-bottom: 66px #ffadc8 solid !important;
}
.carnation-pink--by-66 {
  border-top: 66px #ffadc8 solid !important;
  border-bottom: 66px #ffadc8 solid !important;
}
.carnation-pink--bx-66 {
  border-right: 66px #ffadc8 solid !important;
  border-left: 66px #ffadc8 solid !important;
}
.carnation-pink--ba-67 {
  border: 67px #ffadc8 solid !important;
}
.carnation-pink--bt-67 {
  border-top: 67px #ffadc8 solid !important;
}
.carnation-pink--br-67 {
  border-right: 67px #ffadc8 solid !important;
}
.carnation-pink--bl-67 {
  border-left: 67px #ffadc8 solid !important;
}
.carnation-pink--bb-67 {
  border-bottom: 67px #ffadc8 solid !important;
}
.carnation-pink--by-67 {
  border-top: 67px #ffadc8 solid !important;
  border-bottom: 67px #ffadc8 solid !important;
}
.carnation-pink--bx-67 {
  border-right: 67px #ffadc8 solid !important;
  border-left: 67px #ffadc8 solid !important;
}
.carnation-pink--ba-68 {
  border: 68px #ffadc8 solid !important;
}
.carnation-pink--bt-68 {
  border-top: 68px #ffadc8 solid !important;
}
.carnation-pink--br-68 {
  border-right: 68px #ffadc8 solid !important;
}
.carnation-pink--bl-68 {
  border-left: 68px #ffadc8 solid !important;
}
.carnation-pink--bb-68 {
  border-bottom: 68px #ffadc8 solid !important;
}
.carnation-pink--by-68 {
  border-top: 68px #ffadc8 solid !important;
  border-bottom: 68px #ffadc8 solid !important;
}
.carnation-pink--bx-68 {
  border-right: 68px #ffadc8 solid !important;
  border-left: 68px #ffadc8 solid !important;
}
.carnation-pink--ba-69 {
  border: 69px #ffadc8 solid !important;
}
.carnation-pink--bt-69 {
  border-top: 69px #ffadc8 solid !important;
}
.carnation-pink--br-69 {
  border-right: 69px #ffadc8 solid !important;
}
.carnation-pink--bl-69 {
  border-left: 69px #ffadc8 solid !important;
}
.carnation-pink--bb-69 {
  border-bottom: 69px #ffadc8 solid !important;
}
.carnation-pink--by-69 {
  border-top: 69px #ffadc8 solid !important;
  border-bottom: 69px #ffadc8 solid !important;
}
.carnation-pink--bx-69 {
  border-right: 69px #ffadc8 solid !important;
  border-left: 69px #ffadc8 solid !important;
}
.carnation-pink--ba-70 {
  border: 70px #ffadc8 solid !important;
}
.carnation-pink--bt-70 {
  border-top: 70px #ffadc8 solid !important;
}
.carnation-pink--br-70 {
  border-right: 70px #ffadc8 solid !important;
}
.carnation-pink--bl-70 {
  border-left: 70px #ffadc8 solid !important;
}
.carnation-pink--bb-70 {
  border-bottom: 70px #ffadc8 solid !important;
}
.carnation-pink--by-70 {
  border-top: 70px #ffadc8 solid !important;
  border-bottom: 70px #ffadc8 solid !important;
}
.carnation-pink--bx-70 {
  border-right: 70px #ffadc8 solid !important;
  border-left: 70px #ffadc8 solid !important;
}
.carnation-pink--ba-71 {
  border: 71px #ffadc8 solid !important;
}
.carnation-pink--bt-71 {
  border-top: 71px #ffadc8 solid !important;
}
.carnation-pink--br-71 {
  border-right: 71px #ffadc8 solid !important;
}
.carnation-pink--bl-71 {
  border-left: 71px #ffadc8 solid !important;
}
.carnation-pink--bb-71 {
  border-bottom: 71px #ffadc8 solid !important;
}
.carnation-pink--by-71 {
  border-top: 71px #ffadc8 solid !important;
  border-bottom: 71px #ffadc8 solid !important;
}
.carnation-pink--bx-71 {
  border-right: 71px #ffadc8 solid !important;
  border-left: 71px #ffadc8 solid !important;
}
.carnation-pink--ba-72 {
  border: 72px #ffadc8 solid !important;
}
.carnation-pink--bt-72 {
  border-top: 72px #ffadc8 solid !important;
}
.carnation-pink--br-72 {
  border-right: 72px #ffadc8 solid !important;
}
.carnation-pink--bl-72 {
  border-left: 72px #ffadc8 solid !important;
}
.carnation-pink--bb-72 {
  border-bottom: 72px #ffadc8 solid !important;
}
.carnation-pink--by-72 {
  border-top: 72px #ffadc8 solid !important;
  border-bottom: 72px #ffadc8 solid !important;
}
.carnation-pink--bx-72 {
  border-right: 72px #ffadc8 solid !important;
  border-left: 72px #ffadc8 solid !important;
}
.carnation-pink--ba-73 {
  border: 73px #ffadc8 solid !important;
}
.carnation-pink--bt-73 {
  border-top: 73px #ffadc8 solid !important;
}
.carnation-pink--br-73 {
  border-right: 73px #ffadc8 solid !important;
}
.carnation-pink--bl-73 {
  border-left: 73px #ffadc8 solid !important;
}
.carnation-pink--bb-73 {
  border-bottom: 73px #ffadc8 solid !important;
}
.carnation-pink--by-73 {
  border-top: 73px #ffadc8 solid !important;
  border-bottom: 73px #ffadc8 solid !important;
}
.carnation-pink--bx-73 {
  border-right: 73px #ffadc8 solid !important;
  border-left: 73px #ffadc8 solid !important;
}
.carnation-pink--ba-74 {
  border: 74px #ffadc8 solid !important;
}
.carnation-pink--bt-74 {
  border-top: 74px #ffadc8 solid !important;
}
.carnation-pink--br-74 {
  border-right: 74px #ffadc8 solid !important;
}
.carnation-pink--bl-74 {
  border-left: 74px #ffadc8 solid !important;
}
.carnation-pink--bb-74 {
  border-bottom: 74px #ffadc8 solid !important;
}
.carnation-pink--by-74 {
  border-top: 74px #ffadc8 solid !important;
  border-bottom: 74px #ffadc8 solid !important;
}
.carnation-pink--bx-74 {
  border-right: 74px #ffadc8 solid !important;
  border-left: 74px #ffadc8 solid !important;
}
.carnation-pink--ba-75 {
  border: 75px #ffadc8 solid !important;
}
.carnation-pink--bt-75 {
  border-top: 75px #ffadc8 solid !important;
}
.carnation-pink--br-75 {
  border-right: 75px #ffadc8 solid !important;
}
.carnation-pink--bl-75 {
  border-left: 75px #ffadc8 solid !important;
}
.carnation-pink--bb-75 {
  border-bottom: 75px #ffadc8 solid !important;
}
.carnation-pink--by-75 {
  border-top: 75px #ffadc8 solid !important;
  border-bottom: 75px #ffadc8 solid !important;
}
.carnation-pink--bx-75 {
  border-right: 75px #ffadc8 solid !important;
  border-left: 75px #ffadc8 solid !important;
}
.carnation-pink--ba-76 {
  border: 76px #ffadc8 solid !important;
}
.carnation-pink--bt-76 {
  border-top: 76px #ffadc8 solid !important;
}
.carnation-pink--br-76 {
  border-right: 76px #ffadc8 solid !important;
}
.carnation-pink--bl-76 {
  border-left: 76px #ffadc8 solid !important;
}
.carnation-pink--bb-76 {
  border-bottom: 76px #ffadc8 solid !important;
}
.carnation-pink--by-76 {
  border-top: 76px #ffadc8 solid !important;
  border-bottom: 76px #ffadc8 solid !important;
}
.carnation-pink--bx-76 {
  border-right: 76px #ffadc8 solid !important;
  border-left: 76px #ffadc8 solid !important;
}
.carnation-pink--ba-77 {
  border: 77px #ffadc8 solid !important;
}
.carnation-pink--bt-77 {
  border-top: 77px #ffadc8 solid !important;
}
.carnation-pink--br-77 {
  border-right: 77px #ffadc8 solid !important;
}
.carnation-pink--bl-77 {
  border-left: 77px #ffadc8 solid !important;
}
.carnation-pink--bb-77 {
  border-bottom: 77px #ffadc8 solid !important;
}
.carnation-pink--by-77 {
  border-top: 77px #ffadc8 solid !important;
  border-bottom: 77px #ffadc8 solid !important;
}
.carnation-pink--bx-77 {
  border-right: 77px #ffadc8 solid !important;
  border-left: 77px #ffadc8 solid !important;
}
.carnation-pink--ba-78 {
  border: 78px #ffadc8 solid !important;
}
.carnation-pink--bt-78 {
  border-top: 78px #ffadc8 solid !important;
}
.carnation-pink--br-78 {
  border-right: 78px #ffadc8 solid !important;
}
.carnation-pink--bl-78 {
  border-left: 78px #ffadc8 solid !important;
}
.carnation-pink--bb-78 {
  border-bottom: 78px #ffadc8 solid !important;
}
.carnation-pink--by-78 {
  border-top: 78px #ffadc8 solid !important;
  border-bottom: 78px #ffadc8 solid !important;
}
.carnation-pink--bx-78 {
  border-right: 78px #ffadc8 solid !important;
  border-left: 78px #ffadc8 solid !important;
}
.carnation-pink--ba-79 {
  border: 79px #ffadc8 solid !important;
}
.carnation-pink--bt-79 {
  border-top: 79px #ffadc8 solid !important;
}
.carnation-pink--br-79 {
  border-right: 79px #ffadc8 solid !important;
}
.carnation-pink--bl-79 {
  border-left: 79px #ffadc8 solid !important;
}
.carnation-pink--bb-79 {
  border-bottom: 79px #ffadc8 solid !important;
}
.carnation-pink--by-79 {
  border-top: 79px #ffadc8 solid !important;
  border-bottom: 79px #ffadc8 solid !important;
}
.carnation-pink--bx-79 {
  border-right: 79px #ffadc8 solid !important;
  border-left: 79px #ffadc8 solid !important;
}
.carnation-pink--ba-80 {
  border: 80px #ffadc8 solid !important;
}
.carnation-pink--bt-80 {
  border-top: 80px #ffadc8 solid !important;
}
.carnation-pink--br-80 {
  border-right: 80px #ffadc8 solid !important;
}
.carnation-pink--bl-80 {
  border-left: 80px #ffadc8 solid !important;
}
.carnation-pink--bb-80 {
  border-bottom: 80px #ffadc8 solid !important;
}
.carnation-pink--by-80 {
  border-top: 80px #ffadc8 solid !important;
  border-bottom: 80px #ffadc8 solid !important;
}
.carnation-pink--bx-80 {
  border-right: 80px #ffadc8 solid !important;
  border-left: 80px #ffadc8 solid !important;
}
.carnation-pink--ba-81 {
  border: 81px #ffadc8 solid !important;
}
.carnation-pink--bt-81 {
  border-top: 81px #ffadc8 solid !important;
}
.carnation-pink--br-81 {
  border-right: 81px #ffadc8 solid !important;
}
.carnation-pink--bl-81 {
  border-left: 81px #ffadc8 solid !important;
}
.carnation-pink--bb-81 {
  border-bottom: 81px #ffadc8 solid !important;
}
.carnation-pink--by-81 {
  border-top: 81px #ffadc8 solid !important;
  border-bottom: 81px #ffadc8 solid !important;
}
.carnation-pink--bx-81 {
  border-right: 81px #ffadc8 solid !important;
  border-left: 81px #ffadc8 solid !important;
}
.carnation-pink--ba-82 {
  border: 82px #ffadc8 solid !important;
}
.carnation-pink--bt-82 {
  border-top: 82px #ffadc8 solid !important;
}
.carnation-pink--br-82 {
  border-right: 82px #ffadc8 solid !important;
}
.carnation-pink--bl-82 {
  border-left: 82px #ffadc8 solid !important;
}
.carnation-pink--bb-82 {
  border-bottom: 82px #ffadc8 solid !important;
}
.carnation-pink--by-82 {
  border-top: 82px #ffadc8 solid !important;
  border-bottom: 82px #ffadc8 solid !important;
}
.carnation-pink--bx-82 {
  border-right: 82px #ffadc8 solid !important;
  border-left: 82px #ffadc8 solid !important;
}
.carnation-pink--ba-83 {
  border: 83px #ffadc8 solid !important;
}
.carnation-pink--bt-83 {
  border-top: 83px #ffadc8 solid !important;
}
.carnation-pink--br-83 {
  border-right: 83px #ffadc8 solid !important;
}
.carnation-pink--bl-83 {
  border-left: 83px #ffadc8 solid !important;
}
.carnation-pink--bb-83 {
  border-bottom: 83px #ffadc8 solid !important;
}
.carnation-pink--by-83 {
  border-top: 83px #ffadc8 solid !important;
  border-bottom: 83px #ffadc8 solid !important;
}
.carnation-pink--bx-83 {
  border-right: 83px #ffadc8 solid !important;
  border-left: 83px #ffadc8 solid !important;
}
.carnation-pink--ba-84 {
  border: 84px #ffadc8 solid !important;
}
.carnation-pink--bt-84 {
  border-top: 84px #ffadc8 solid !important;
}
.carnation-pink--br-84 {
  border-right: 84px #ffadc8 solid !important;
}
.carnation-pink--bl-84 {
  border-left: 84px #ffadc8 solid !important;
}
.carnation-pink--bb-84 {
  border-bottom: 84px #ffadc8 solid !important;
}
.carnation-pink--by-84 {
  border-top: 84px #ffadc8 solid !important;
  border-bottom: 84px #ffadc8 solid !important;
}
.carnation-pink--bx-84 {
  border-right: 84px #ffadc8 solid !important;
  border-left: 84px #ffadc8 solid !important;
}
.carnation-pink--ba-85 {
  border: 85px #ffadc8 solid !important;
}
.carnation-pink--bt-85 {
  border-top: 85px #ffadc8 solid !important;
}
.carnation-pink--br-85 {
  border-right: 85px #ffadc8 solid !important;
}
.carnation-pink--bl-85 {
  border-left: 85px #ffadc8 solid !important;
}
.carnation-pink--bb-85 {
  border-bottom: 85px #ffadc8 solid !important;
}
.carnation-pink--by-85 {
  border-top: 85px #ffadc8 solid !important;
  border-bottom: 85px #ffadc8 solid !important;
}
.carnation-pink--bx-85 {
  border-right: 85px #ffadc8 solid !important;
  border-left: 85px #ffadc8 solid !important;
}
.carnation-pink--ba-86 {
  border: 86px #ffadc8 solid !important;
}
.carnation-pink--bt-86 {
  border-top: 86px #ffadc8 solid !important;
}
.carnation-pink--br-86 {
  border-right: 86px #ffadc8 solid !important;
}
.carnation-pink--bl-86 {
  border-left: 86px #ffadc8 solid !important;
}
.carnation-pink--bb-86 {
  border-bottom: 86px #ffadc8 solid !important;
}
.carnation-pink--by-86 {
  border-top: 86px #ffadc8 solid !important;
  border-bottom: 86px #ffadc8 solid !important;
}
.carnation-pink--bx-86 {
  border-right: 86px #ffadc8 solid !important;
  border-left: 86px #ffadc8 solid !important;
}
.carnation-pink--ba-87 {
  border: 87px #ffadc8 solid !important;
}
.carnation-pink--bt-87 {
  border-top: 87px #ffadc8 solid !important;
}
.carnation-pink--br-87 {
  border-right: 87px #ffadc8 solid !important;
}
.carnation-pink--bl-87 {
  border-left: 87px #ffadc8 solid !important;
}
.carnation-pink--bb-87 {
  border-bottom: 87px #ffadc8 solid !important;
}
.carnation-pink--by-87 {
  border-top: 87px #ffadc8 solid !important;
  border-bottom: 87px #ffadc8 solid !important;
}
.carnation-pink--bx-87 {
  border-right: 87px #ffadc8 solid !important;
  border-left: 87px #ffadc8 solid !important;
}
.carnation-pink--ba-88 {
  border: 88px #ffadc8 solid !important;
}
.carnation-pink--bt-88 {
  border-top: 88px #ffadc8 solid !important;
}
.carnation-pink--br-88 {
  border-right: 88px #ffadc8 solid !important;
}
.carnation-pink--bl-88 {
  border-left: 88px #ffadc8 solid !important;
}
.carnation-pink--bb-88 {
  border-bottom: 88px #ffadc8 solid !important;
}
.carnation-pink--by-88 {
  border-top: 88px #ffadc8 solid !important;
  border-bottom: 88px #ffadc8 solid !important;
}
.carnation-pink--bx-88 {
  border-right: 88px #ffadc8 solid !important;
  border-left: 88px #ffadc8 solid !important;
}
.carnation-pink--ba-89 {
  border: 89px #ffadc8 solid !important;
}
.carnation-pink--bt-89 {
  border-top: 89px #ffadc8 solid !important;
}
.carnation-pink--br-89 {
  border-right: 89px #ffadc8 solid !important;
}
.carnation-pink--bl-89 {
  border-left: 89px #ffadc8 solid !important;
}
.carnation-pink--bb-89 {
  border-bottom: 89px #ffadc8 solid !important;
}
.carnation-pink--by-89 {
  border-top: 89px #ffadc8 solid !important;
  border-bottom: 89px #ffadc8 solid !important;
}
.carnation-pink--bx-89 {
  border-right: 89px #ffadc8 solid !important;
  border-left: 89px #ffadc8 solid !important;
}
.carnation-pink--ba-90 {
  border: 90px #ffadc8 solid !important;
}
.carnation-pink--bt-90 {
  border-top: 90px #ffadc8 solid !important;
}
.carnation-pink--br-90 {
  border-right: 90px #ffadc8 solid !important;
}
.carnation-pink--bl-90 {
  border-left: 90px #ffadc8 solid !important;
}
.carnation-pink--bb-90 {
  border-bottom: 90px #ffadc8 solid !important;
}
.carnation-pink--by-90 {
  border-top: 90px #ffadc8 solid !important;
  border-bottom: 90px #ffadc8 solid !important;
}
.carnation-pink--bx-90 {
  border-right: 90px #ffadc8 solid !important;
  border-left: 90px #ffadc8 solid !important;
}
.carnation-pink--ba-91 {
  border: 91px #ffadc8 solid !important;
}
.carnation-pink--bt-91 {
  border-top: 91px #ffadc8 solid !important;
}
.carnation-pink--br-91 {
  border-right: 91px #ffadc8 solid !important;
}
.carnation-pink--bl-91 {
  border-left: 91px #ffadc8 solid !important;
}
.carnation-pink--bb-91 {
  border-bottom: 91px #ffadc8 solid !important;
}
.carnation-pink--by-91 {
  border-top: 91px #ffadc8 solid !important;
  border-bottom: 91px #ffadc8 solid !important;
}
.carnation-pink--bx-91 {
  border-right: 91px #ffadc8 solid !important;
  border-left: 91px #ffadc8 solid !important;
}
.carnation-pink--ba-92 {
  border: 92px #ffadc8 solid !important;
}
.carnation-pink--bt-92 {
  border-top: 92px #ffadc8 solid !important;
}
.carnation-pink--br-92 {
  border-right: 92px #ffadc8 solid !important;
}
.carnation-pink--bl-92 {
  border-left: 92px #ffadc8 solid !important;
}
.carnation-pink--bb-92 {
  border-bottom: 92px #ffadc8 solid !important;
}
.carnation-pink--by-92 {
  border-top: 92px #ffadc8 solid !important;
  border-bottom: 92px #ffadc8 solid !important;
}
.carnation-pink--bx-92 {
  border-right: 92px #ffadc8 solid !important;
  border-left: 92px #ffadc8 solid !important;
}
.carnation-pink--ba-93 {
  border: 93px #ffadc8 solid !important;
}
.carnation-pink--bt-93 {
  border-top: 93px #ffadc8 solid !important;
}
.carnation-pink--br-93 {
  border-right: 93px #ffadc8 solid !important;
}
.carnation-pink--bl-93 {
  border-left: 93px #ffadc8 solid !important;
}
.carnation-pink--bb-93 {
  border-bottom: 93px #ffadc8 solid !important;
}
.carnation-pink--by-93 {
  border-top: 93px #ffadc8 solid !important;
  border-bottom: 93px #ffadc8 solid !important;
}
.carnation-pink--bx-93 {
  border-right: 93px #ffadc8 solid !important;
  border-left: 93px #ffadc8 solid !important;
}
.carnation-pink--ba-94 {
  border: 94px #ffadc8 solid !important;
}
.carnation-pink--bt-94 {
  border-top: 94px #ffadc8 solid !important;
}
.carnation-pink--br-94 {
  border-right: 94px #ffadc8 solid !important;
}
.carnation-pink--bl-94 {
  border-left: 94px #ffadc8 solid !important;
}
.carnation-pink--bb-94 {
  border-bottom: 94px #ffadc8 solid !important;
}
.carnation-pink--by-94 {
  border-top: 94px #ffadc8 solid !important;
  border-bottom: 94px #ffadc8 solid !important;
}
.carnation-pink--bx-94 {
  border-right: 94px #ffadc8 solid !important;
  border-left: 94px #ffadc8 solid !important;
}
.carnation-pink--ba-95 {
  border: 95px #ffadc8 solid !important;
}
.carnation-pink--bt-95 {
  border-top: 95px #ffadc8 solid !important;
}
.carnation-pink--br-95 {
  border-right: 95px #ffadc8 solid !important;
}
.carnation-pink--bl-95 {
  border-left: 95px #ffadc8 solid !important;
}
.carnation-pink--bb-95 {
  border-bottom: 95px #ffadc8 solid !important;
}
.carnation-pink--by-95 {
  border-top: 95px #ffadc8 solid !important;
  border-bottom: 95px #ffadc8 solid !important;
}
.carnation-pink--bx-95 {
  border-right: 95px #ffadc8 solid !important;
  border-left: 95px #ffadc8 solid !important;
}
.carnation-pink--ba-96 {
  border: 96px #ffadc8 solid !important;
}
.carnation-pink--bt-96 {
  border-top: 96px #ffadc8 solid !important;
}
.carnation-pink--br-96 {
  border-right: 96px #ffadc8 solid !important;
}
.carnation-pink--bl-96 {
  border-left: 96px #ffadc8 solid !important;
}
.carnation-pink--bb-96 {
  border-bottom: 96px #ffadc8 solid !important;
}
.carnation-pink--by-96 {
  border-top: 96px #ffadc8 solid !important;
  border-bottom: 96px #ffadc8 solid !important;
}
.carnation-pink--bx-96 {
  border-right: 96px #ffadc8 solid !important;
  border-left: 96px #ffadc8 solid !important;
}
.carnation-pink--ba-97 {
  border: 97px #ffadc8 solid !important;
}
.carnation-pink--bt-97 {
  border-top: 97px #ffadc8 solid !important;
}
.carnation-pink--br-97 {
  border-right: 97px #ffadc8 solid !important;
}
.carnation-pink--bl-97 {
  border-left: 97px #ffadc8 solid !important;
}
.carnation-pink--bb-97 {
  border-bottom: 97px #ffadc8 solid !important;
}
.carnation-pink--by-97 {
  border-top: 97px #ffadc8 solid !important;
  border-bottom: 97px #ffadc8 solid !important;
}
.carnation-pink--bx-97 {
  border-right: 97px #ffadc8 solid !important;
  border-left: 97px #ffadc8 solid !important;
}
.carnation-pink--ba-98 {
  border: 98px #ffadc8 solid !important;
}
.carnation-pink--bt-98 {
  border-top: 98px #ffadc8 solid !important;
}
.carnation-pink--br-98 {
  border-right: 98px #ffadc8 solid !important;
}
.carnation-pink--bl-98 {
  border-left: 98px #ffadc8 solid !important;
}
.carnation-pink--bb-98 {
  border-bottom: 98px #ffadc8 solid !important;
}
.carnation-pink--by-98 {
  border-top: 98px #ffadc8 solid !important;
  border-bottom: 98px #ffadc8 solid !important;
}
.carnation-pink--bx-98 {
  border-right: 98px #ffadc8 solid !important;
  border-left: 98px #ffadc8 solid !important;
}
.carnation-pink--ba-99 {
  border: 99px #ffadc8 solid !important;
}
.carnation-pink--bt-99 {
  border-top: 99px #ffadc8 solid !important;
}
.carnation-pink--br-99 {
  border-right: 99px #ffadc8 solid !important;
}
.carnation-pink--bl-99 {
  border-left: 99px #ffadc8 solid !important;
}
.carnation-pink--bb-99 {
  border-bottom: 99px #ffadc8 solid !important;
}
.carnation-pink--by-99 {
  border-top: 99px #ffadc8 solid !important;
  border-bottom: 99px #ffadc8 solid !important;
}
.carnation-pink--bx-99 {
  border-right: 99px #ffadc8 solid !important;
  border-left: 99px #ffadc8 solid !important;
}
.carnation-pink--ba-100 {
  border: 100px #ffadc8 solid !important;
}
.carnation-pink--bt-100 {
  border-top: 100px #ffadc8 solid !important;
}
.carnation-pink--br-100 {
  border-right: 100px #ffadc8 solid !important;
}
.carnation-pink--bl-100 {
  border-left: 100px #ffadc8 solid !important;
}
.carnation-pink--bb-100 {
  border-bottom: 100px #ffadc8 solid !important;
}
.carnation-pink--by-100 {
  border-top: 100px #ffadc8 solid !important;
  border-bottom: 100px #ffadc8 solid !important;
}
.carnation-pink--bx-100 {
  border-right: 100px #ffadc8 solid !important;
  border-left: 100px #ffadc8 solid !important;
}
.corn--ba-1 {
  border: 1px #f0c40b solid !important;
}
.corn--bt-1 {
  border-top: 1px #f0c40b solid !important;
}
.corn--br-1 {
  border-right: 1px #f0c40b solid !important;
}
.corn--bl-1 {
  border-left: 1px #f0c40b solid !important;
}
.corn--bb-1 {
  border-bottom: 1px #f0c40b solid !important;
}
.corn--by-1 {
  border-top: 1px #f0c40b solid !important;
  border-bottom: 1px #f0c40b solid !important;
}
.corn--bx-1 {
  border-right: 1px #f0c40b solid !important;
  border-left: 1px #f0c40b solid !important;
}
.corn--ba-2 {
  border: 2px #f0c40b solid !important;
}
.corn--bt-2 {
  border-top: 2px #f0c40b solid !important;
}
.corn--br-2 {
  border-right: 2px #f0c40b solid !important;
}
.corn--bl-2 {
  border-left: 2px #f0c40b solid !important;
}
.corn--bb-2 {
  border-bottom: 2px #f0c40b solid !important;
}
.corn--by-2 {
  border-top: 2px #f0c40b solid !important;
  border-bottom: 2px #f0c40b solid !important;
}
.corn--bx-2 {
  border-right: 2px #f0c40b solid !important;
  border-left: 2px #f0c40b solid !important;
}
.corn--ba-3 {
  border: 3px #f0c40b solid !important;
}
.corn--bt-3 {
  border-top: 3px #f0c40b solid !important;
}
.corn--br-3 {
  border-right: 3px #f0c40b solid !important;
}
.corn--bl-3 {
  border-left: 3px #f0c40b solid !important;
}
.corn--bb-3 {
  border-bottom: 3px #f0c40b solid !important;
}
.corn--by-3 {
  border-top: 3px #f0c40b solid !important;
  border-bottom: 3px #f0c40b solid !important;
}
.corn--bx-3 {
  border-right: 3px #f0c40b solid !important;
  border-left: 3px #f0c40b solid !important;
}
.corn--ba-4 {
  border: 4px #f0c40b solid !important;
}
.corn--bt-4 {
  border-top: 4px #f0c40b solid !important;
}
.corn--br-4 {
  border-right: 4px #f0c40b solid !important;
}
.corn--bl-4 {
  border-left: 4px #f0c40b solid !important;
}
.corn--bb-4 {
  border-bottom: 4px #f0c40b solid !important;
}
.corn--by-4 {
  border-top: 4px #f0c40b solid !important;
  border-bottom: 4px #f0c40b solid !important;
}
.corn--bx-4 {
  border-right: 4px #f0c40b solid !important;
  border-left: 4px #f0c40b solid !important;
}
.corn--ba-5 {
  border: 5px #f0c40b solid !important;
}
.corn--bt-5 {
  border-top: 5px #f0c40b solid !important;
}
.corn--br-5 {
  border-right: 5px #f0c40b solid !important;
}
.corn--bl-5 {
  border-left: 5px #f0c40b solid !important;
}
.corn--bb-5 {
  border-bottom: 5px #f0c40b solid !important;
}
.corn--by-5 {
  border-top: 5px #f0c40b solid !important;
  border-bottom: 5px #f0c40b solid !important;
}
.corn--bx-5 {
  border-right: 5px #f0c40b solid !important;
  border-left: 5px #f0c40b solid !important;
}
.corn--ba-6 {
  border: 6px #f0c40b solid !important;
}
.corn--bt-6 {
  border-top: 6px #f0c40b solid !important;
}
.corn--br-6 {
  border-right: 6px #f0c40b solid !important;
}
.corn--bl-6 {
  border-left: 6px #f0c40b solid !important;
}
.corn--bb-6 {
  border-bottom: 6px #f0c40b solid !important;
}
.corn--by-6 {
  border-top: 6px #f0c40b solid !important;
  border-bottom: 6px #f0c40b solid !important;
}
.corn--bx-6 {
  border-right: 6px #f0c40b solid !important;
  border-left: 6px #f0c40b solid !important;
}
.corn--ba-7 {
  border: 7px #f0c40b solid !important;
}
.corn--bt-7 {
  border-top: 7px #f0c40b solid !important;
}
.corn--br-7 {
  border-right: 7px #f0c40b solid !important;
}
.corn--bl-7 {
  border-left: 7px #f0c40b solid !important;
}
.corn--bb-7 {
  border-bottom: 7px #f0c40b solid !important;
}
.corn--by-7 {
  border-top: 7px #f0c40b solid !important;
  border-bottom: 7px #f0c40b solid !important;
}
.corn--bx-7 {
  border-right: 7px #f0c40b solid !important;
  border-left: 7px #f0c40b solid !important;
}
.corn--ba-8 {
  border: 8px #f0c40b solid !important;
}
.corn--bt-8 {
  border-top: 8px #f0c40b solid !important;
}
.corn--br-8 {
  border-right: 8px #f0c40b solid !important;
}
.corn--bl-8 {
  border-left: 8px #f0c40b solid !important;
}
.corn--bb-8 {
  border-bottom: 8px #f0c40b solid !important;
}
.corn--by-8 {
  border-top: 8px #f0c40b solid !important;
  border-bottom: 8px #f0c40b solid !important;
}
.corn--bx-8 {
  border-right: 8px #f0c40b solid !important;
  border-left: 8px #f0c40b solid !important;
}
.corn--ba-9 {
  border: 9px #f0c40b solid !important;
}
.corn--bt-9 {
  border-top: 9px #f0c40b solid !important;
}
.corn--br-9 {
  border-right: 9px #f0c40b solid !important;
}
.corn--bl-9 {
  border-left: 9px #f0c40b solid !important;
}
.corn--bb-9 {
  border-bottom: 9px #f0c40b solid !important;
}
.corn--by-9 {
  border-top: 9px #f0c40b solid !important;
  border-bottom: 9px #f0c40b solid !important;
}
.corn--bx-9 {
  border-right: 9px #f0c40b solid !important;
  border-left: 9px #f0c40b solid !important;
}
.corn--ba-10 {
  border: 10px #f0c40b solid !important;
}
.corn--bt-10 {
  border-top: 10px #f0c40b solid !important;
}
.corn--br-10 {
  border-right: 10px #f0c40b solid !important;
}
.corn--bl-10 {
  border-left: 10px #f0c40b solid !important;
}
.corn--bb-10 {
  border-bottom: 10px #f0c40b solid !important;
}
.corn--by-10 {
  border-top: 10px #f0c40b solid !important;
  border-bottom: 10px #f0c40b solid !important;
}
.corn--bx-10 {
  border-right: 10px #f0c40b solid !important;
  border-left: 10px #f0c40b solid !important;
}
.corn--ba-11 {
  border: 11px #f0c40b solid !important;
}
.corn--bt-11 {
  border-top: 11px #f0c40b solid !important;
}
.corn--br-11 {
  border-right: 11px #f0c40b solid !important;
}
.corn--bl-11 {
  border-left: 11px #f0c40b solid !important;
}
.corn--bb-11 {
  border-bottom: 11px #f0c40b solid !important;
}
.corn--by-11 {
  border-top: 11px #f0c40b solid !important;
  border-bottom: 11px #f0c40b solid !important;
}
.corn--bx-11 {
  border-right: 11px #f0c40b solid !important;
  border-left: 11px #f0c40b solid !important;
}
.corn--ba-12 {
  border: 12px #f0c40b solid !important;
}
.corn--bt-12 {
  border-top: 12px #f0c40b solid !important;
}
.corn--br-12 {
  border-right: 12px #f0c40b solid !important;
}
.corn--bl-12 {
  border-left: 12px #f0c40b solid !important;
}
.corn--bb-12 {
  border-bottom: 12px #f0c40b solid !important;
}
.corn--by-12 {
  border-top: 12px #f0c40b solid !important;
  border-bottom: 12px #f0c40b solid !important;
}
.corn--bx-12 {
  border-right: 12px #f0c40b solid !important;
  border-left: 12px #f0c40b solid !important;
}
.corn--ba-13 {
  border: 13px #f0c40b solid !important;
}
.corn--bt-13 {
  border-top: 13px #f0c40b solid !important;
}
.corn--br-13 {
  border-right: 13px #f0c40b solid !important;
}
.corn--bl-13 {
  border-left: 13px #f0c40b solid !important;
}
.corn--bb-13 {
  border-bottom: 13px #f0c40b solid !important;
}
.corn--by-13 {
  border-top: 13px #f0c40b solid !important;
  border-bottom: 13px #f0c40b solid !important;
}
.corn--bx-13 {
  border-right: 13px #f0c40b solid !important;
  border-left: 13px #f0c40b solid !important;
}
.corn--ba-14 {
  border: 14px #f0c40b solid !important;
}
.corn--bt-14 {
  border-top: 14px #f0c40b solid !important;
}
.corn--br-14 {
  border-right: 14px #f0c40b solid !important;
}
.corn--bl-14 {
  border-left: 14px #f0c40b solid !important;
}
.corn--bb-14 {
  border-bottom: 14px #f0c40b solid !important;
}
.corn--by-14 {
  border-top: 14px #f0c40b solid !important;
  border-bottom: 14px #f0c40b solid !important;
}
.corn--bx-14 {
  border-right: 14px #f0c40b solid !important;
  border-left: 14px #f0c40b solid !important;
}
.corn--ba-15 {
  border: 15px #f0c40b solid !important;
}
.corn--bt-15 {
  border-top: 15px #f0c40b solid !important;
}
.corn--br-15 {
  border-right: 15px #f0c40b solid !important;
}
.corn--bl-15 {
  border-left: 15px #f0c40b solid !important;
}
.corn--bb-15 {
  border-bottom: 15px #f0c40b solid !important;
}
.corn--by-15 {
  border-top: 15px #f0c40b solid !important;
  border-bottom: 15px #f0c40b solid !important;
}
.corn--bx-15 {
  border-right: 15px #f0c40b solid !important;
  border-left: 15px #f0c40b solid !important;
}
.corn--ba-16 {
  border: 16px #f0c40b solid !important;
}
.corn--bt-16 {
  border-top: 16px #f0c40b solid !important;
}
.corn--br-16 {
  border-right: 16px #f0c40b solid !important;
}
.corn--bl-16 {
  border-left: 16px #f0c40b solid !important;
}
.corn--bb-16 {
  border-bottom: 16px #f0c40b solid !important;
}
.corn--by-16 {
  border-top: 16px #f0c40b solid !important;
  border-bottom: 16px #f0c40b solid !important;
}
.corn--bx-16 {
  border-right: 16px #f0c40b solid !important;
  border-left: 16px #f0c40b solid !important;
}
.corn--ba-17 {
  border: 17px #f0c40b solid !important;
}
.corn--bt-17 {
  border-top: 17px #f0c40b solid !important;
}
.corn--br-17 {
  border-right: 17px #f0c40b solid !important;
}
.corn--bl-17 {
  border-left: 17px #f0c40b solid !important;
}
.corn--bb-17 {
  border-bottom: 17px #f0c40b solid !important;
}
.corn--by-17 {
  border-top: 17px #f0c40b solid !important;
  border-bottom: 17px #f0c40b solid !important;
}
.corn--bx-17 {
  border-right: 17px #f0c40b solid !important;
  border-left: 17px #f0c40b solid !important;
}
.corn--ba-18 {
  border: 18px #f0c40b solid !important;
}
.corn--bt-18 {
  border-top: 18px #f0c40b solid !important;
}
.corn--br-18 {
  border-right: 18px #f0c40b solid !important;
}
.corn--bl-18 {
  border-left: 18px #f0c40b solid !important;
}
.corn--bb-18 {
  border-bottom: 18px #f0c40b solid !important;
}
.corn--by-18 {
  border-top: 18px #f0c40b solid !important;
  border-bottom: 18px #f0c40b solid !important;
}
.corn--bx-18 {
  border-right: 18px #f0c40b solid !important;
  border-left: 18px #f0c40b solid !important;
}
.corn--ba-19 {
  border: 19px #f0c40b solid !important;
}
.corn--bt-19 {
  border-top: 19px #f0c40b solid !important;
}
.corn--br-19 {
  border-right: 19px #f0c40b solid !important;
}
.corn--bl-19 {
  border-left: 19px #f0c40b solid !important;
}
.corn--bb-19 {
  border-bottom: 19px #f0c40b solid !important;
}
.corn--by-19 {
  border-top: 19px #f0c40b solid !important;
  border-bottom: 19px #f0c40b solid !important;
}
.corn--bx-19 {
  border-right: 19px #f0c40b solid !important;
  border-left: 19px #f0c40b solid !important;
}
.corn--ba-20 {
  border: 20px #f0c40b solid !important;
}
.corn--bt-20 {
  border-top: 20px #f0c40b solid !important;
}
.corn--br-20 {
  border-right: 20px #f0c40b solid !important;
}
.corn--bl-20 {
  border-left: 20px #f0c40b solid !important;
}
.corn--bb-20 {
  border-bottom: 20px #f0c40b solid !important;
}
.corn--by-20 {
  border-top: 20px #f0c40b solid !important;
  border-bottom: 20px #f0c40b solid !important;
}
.corn--bx-20 {
  border-right: 20px #f0c40b solid !important;
  border-left: 20px #f0c40b solid !important;
}
.corn--ba-21 {
  border: 21px #f0c40b solid !important;
}
.corn--bt-21 {
  border-top: 21px #f0c40b solid !important;
}
.corn--br-21 {
  border-right: 21px #f0c40b solid !important;
}
.corn--bl-21 {
  border-left: 21px #f0c40b solid !important;
}
.corn--bb-21 {
  border-bottom: 21px #f0c40b solid !important;
}
.corn--by-21 {
  border-top: 21px #f0c40b solid !important;
  border-bottom: 21px #f0c40b solid !important;
}
.corn--bx-21 {
  border-right: 21px #f0c40b solid !important;
  border-left: 21px #f0c40b solid !important;
}
.corn--ba-22 {
  border: 22px #f0c40b solid !important;
}
.corn--bt-22 {
  border-top: 22px #f0c40b solid !important;
}
.corn--br-22 {
  border-right: 22px #f0c40b solid !important;
}
.corn--bl-22 {
  border-left: 22px #f0c40b solid !important;
}
.corn--bb-22 {
  border-bottom: 22px #f0c40b solid !important;
}
.corn--by-22 {
  border-top: 22px #f0c40b solid !important;
  border-bottom: 22px #f0c40b solid !important;
}
.corn--bx-22 {
  border-right: 22px #f0c40b solid !important;
  border-left: 22px #f0c40b solid !important;
}
.corn--ba-23 {
  border: 23px #f0c40b solid !important;
}
.corn--bt-23 {
  border-top: 23px #f0c40b solid !important;
}
.corn--br-23 {
  border-right: 23px #f0c40b solid !important;
}
.corn--bl-23 {
  border-left: 23px #f0c40b solid !important;
}
.corn--bb-23 {
  border-bottom: 23px #f0c40b solid !important;
}
.corn--by-23 {
  border-top: 23px #f0c40b solid !important;
  border-bottom: 23px #f0c40b solid !important;
}
.corn--bx-23 {
  border-right: 23px #f0c40b solid !important;
  border-left: 23px #f0c40b solid !important;
}
.corn--ba-24 {
  border: 24px #f0c40b solid !important;
}
.corn--bt-24 {
  border-top: 24px #f0c40b solid !important;
}
.corn--br-24 {
  border-right: 24px #f0c40b solid !important;
}
.corn--bl-24 {
  border-left: 24px #f0c40b solid !important;
}
.corn--bb-24 {
  border-bottom: 24px #f0c40b solid !important;
}
.corn--by-24 {
  border-top: 24px #f0c40b solid !important;
  border-bottom: 24px #f0c40b solid !important;
}
.corn--bx-24 {
  border-right: 24px #f0c40b solid !important;
  border-left: 24px #f0c40b solid !important;
}
.corn--ba-25 {
  border: 25px #f0c40b solid !important;
}
.corn--bt-25 {
  border-top: 25px #f0c40b solid !important;
}
.corn--br-25 {
  border-right: 25px #f0c40b solid !important;
}
.corn--bl-25 {
  border-left: 25px #f0c40b solid !important;
}
.corn--bb-25 {
  border-bottom: 25px #f0c40b solid !important;
}
.corn--by-25 {
  border-top: 25px #f0c40b solid !important;
  border-bottom: 25px #f0c40b solid !important;
}
.corn--bx-25 {
  border-right: 25px #f0c40b solid !important;
  border-left: 25px #f0c40b solid !important;
}
.corn--ba-26 {
  border: 26px #f0c40b solid !important;
}
.corn--bt-26 {
  border-top: 26px #f0c40b solid !important;
}
.corn--br-26 {
  border-right: 26px #f0c40b solid !important;
}
.corn--bl-26 {
  border-left: 26px #f0c40b solid !important;
}
.corn--bb-26 {
  border-bottom: 26px #f0c40b solid !important;
}
.corn--by-26 {
  border-top: 26px #f0c40b solid !important;
  border-bottom: 26px #f0c40b solid !important;
}
.corn--bx-26 {
  border-right: 26px #f0c40b solid !important;
  border-left: 26px #f0c40b solid !important;
}
.corn--ba-27 {
  border: 27px #f0c40b solid !important;
}
.corn--bt-27 {
  border-top: 27px #f0c40b solid !important;
}
.corn--br-27 {
  border-right: 27px #f0c40b solid !important;
}
.corn--bl-27 {
  border-left: 27px #f0c40b solid !important;
}
.corn--bb-27 {
  border-bottom: 27px #f0c40b solid !important;
}
.corn--by-27 {
  border-top: 27px #f0c40b solid !important;
  border-bottom: 27px #f0c40b solid !important;
}
.corn--bx-27 {
  border-right: 27px #f0c40b solid !important;
  border-left: 27px #f0c40b solid !important;
}
.corn--ba-28 {
  border: 28px #f0c40b solid !important;
}
.corn--bt-28 {
  border-top: 28px #f0c40b solid !important;
}
.corn--br-28 {
  border-right: 28px #f0c40b solid !important;
}
.corn--bl-28 {
  border-left: 28px #f0c40b solid !important;
}
.corn--bb-28 {
  border-bottom: 28px #f0c40b solid !important;
}
.corn--by-28 {
  border-top: 28px #f0c40b solid !important;
  border-bottom: 28px #f0c40b solid !important;
}
.corn--bx-28 {
  border-right: 28px #f0c40b solid !important;
  border-left: 28px #f0c40b solid !important;
}
.corn--ba-29 {
  border: 29px #f0c40b solid !important;
}
.corn--bt-29 {
  border-top: 29px #f0c40b solid !important;
}
.corn--br-29 {
  border-right: 29px #f0c40b solid !important;
}
.corn--bl-29 {
  border-left: 29px #f0c40b solid !important;
}
.corn--bb-29 {
  border-bottom: 29px #f0c40b solid !important;
}
.corn--by-29 {
  border-top: 29px #f0c40b solid !important;
  border-bottom: 29px #f0c40b solid !important;
}
.corn--bx-29 {
  border-right: 29px #f0c40b solid !important;
  border-left: 29px #f0c40b solid !important;
}
.corn--ba-30 {
  border: 30px #f0c40b solid !important;
}
.corn--bt-30 {
  border-top: 30px #f0c40b solid !important;
}
.corn--br-30 {
  border-right: 30px #f0c40b solid !important;
}
.corn--bl-30 {
  border-left: 30px #f0c40b solid !important;
}
.corn--bb-30 {
  border-bottom: 30px #f0c40b solid !important;
}
.corn--by-30 {
  border-top: 30px #f0c40b solid !important;
  border-bottom: 30px #f0c40b solid !important;
}
.corn--bx-30 {
  border-right: 30px #f0c40b solid !important;
  border-left: 30px #f0c40b solid !important;
}
.corn--ba-31 {
  border: 31px #f0c40b solid !important;
}
.corn--bt-31 {
  border-top: 31px #f0c40b solid !important;
}
.corn--br-31 {
  border-right: 31px #f0c40b solid !important;
}
.corn--bl-31 {
  border-left: 31px #f0c40b solid !important;
}
.corn--bb-31 {
  border-bottom: 31px #f0c40b solid !important;
}
.corn--by-31 {
  border-top: 31px #f0c40b solid !important;
  border-bottom: 31px #f0c40b solid !important;
}
.corn--bx-31 {
  border-right: 31px #f0c40b solid !important;
  border-left: 31px #f0c40b solid !important;
}
.corn--ba-32 {
  border: 32px #f0c40b solid !important;
}
.corn--bt-32 {
  border-top: 32px #f0c40b solid !important;
}
.corn--br-32 {
  border-right: 32px #f0c40b solid !important;
}
.corn--bl-32 {
  border-left: 32px #f0c40b solid !important;
}
.corn--bb-32 {
  border-bottom: 32px #f0c40b solid !important;
}
.corn--by-32 {
  border-top: 32px #f0c40b solid !important;
  border-bottom: 32px #f0c40b solid !important;
}
.corn--bx-32 {
  border-right: 32px #f0c40b solid !important;
  border-left: 32px #f0c40b solid !important;
}
.corn--ba-33 {
  border: 33px #f0c40b solid !important;
}
.corn--bt-33 {
  border-top: 33px #f0c40b solid !important;
}
.corn--br-33 {
  border-right: 33px #f0c40b solid !important;
}
.corn--bl-33 {
  border-left: 33px #f0c40b solid !important;
}
.corn--bb-33 {
  border-bottom: 33px #f0c40b solid !important;
}
.corn--by-33 {
  border-top: 33px #f0c40b solid !important;
  border-bottom: 33px #f0c40b solid !important;
}
.corn--bx-33 {
  border-right: 33px #f0c40b solid !important;
  border-left: 33px #f0c40b solid !important;
}
.corn--ba-34 {
  border: 34px #f0c40b solid !important;
}
.corn--bt-34 {
  border-top: 34px #f0c40b solid !important;
}
.corn--br-34 {
  border-right: 34px #f0c40b solid !important;
}
.corn--bl-34 {
  border-left: 34px #f0c40b solid !important;
}
.corn--bb-34 {
  border-bottom: 34px #f0c40b solid !important;
}
.corn--by-34 {
  border-top: 34px #f0c40b solid !important;
  border-bottom: 34px #f0c40b solid !important;
}
.corn--bx-34 {
  border-right: 34px #f0c40b solid !important;
  border-left: 34px #f0c40b solid !important;
}
.corn--ba-35 {
  border: 35px #f0c40b solid !important;
}
.corn--bt-35 {
  border-top: 35px #f0c40b solid !important;
}
.corn--br-35 {
  border-right: 35px #f0c40b solid !important;
}
.corn--bl-35 {
  border-left: 35px #f0c40b solid !important;
}
.corn--bb-35 {
  border-bottom: 35px #f0c40b solid !important;
}
.corn--by-35 {
  border-top: 35px #f0c40b solid !important;
  border-bottom: 35px #f0c40b solid !important;
}
.corn--bx-35 {
  border-right: 35px #f0c40b solid !important;
  border-left: 35px #f0c40b solid !important;
}
.corn--ba-36 {
  border: 36px #f0c40b solid !important;
}
.corn--bt-36 {
  border-top: 36px #f0c40b solid !important;
}
.corn--br-36 {
  border-right: 36px #f0c40b solid !important;
}
.corn--bl-36 {
  border-left: 36px #f0c40b solid !important;
}
.corn--bb-36 {
  border-bottom: 36px #f0c40b solid !important;
}
.corn--by-36 {
  border-top: 36px #f0c40b solid !important;
  border-bottom: 36px #f0c40b solid !important;
}
.corn--bx-36 {
  border-right: 36px #f0c40b solid !important;
  border-left: 36px #f0c40b solid !important;
}
.corn--ba-37 {
  border: 37px #f0c40b solid !important;
}
.corn--bt-37 {
  border-top: 37px #f0c40b solid !important;
}
.corn--br-37 {
  border-right: 37px #f0c40b solid !important;
}
.corn--bl-37 {
  border-left: 37px #f0c40b solid !important;
}
.corn--bb-37 {
  border-bottom: 37px #f0c40b solid !important;
}
.corn--by-37 {
  border-top: 37px #f0c40b solid !important;
  border-bottom: 37px #f0c40b solid !important;
}
.corn--bx-37 {
  border-right: 37px #f0c40b solid !important;
  border-left: 37px #f0c40b solid !important;
}
.corn--ba-38 {
  border: 38px #f0c40b solid !important;
}
.corn--bt-38 {
  border-top: 38px #f0c40b solid !important;
}
.corn--br-38 {
  border-right: 38px #f0c40b solid !important;
}
.corn--bl-38 {
  border-left: 38px #f0c40b solid !important;
}
.corn--bb-38 {
  border-bottom: 38px #f0c40b solid !important;
}
.corn--by-38 {
  border-top: 38px #f0c40b solid !important;
  border-bottom: 38px #f0c40b solid !important;
}
.corn--bx-38 {
  border-right: 38px #f0c40b solid !important;
  border-left: 38px #f0c40b solid !important;
}
.corn--ba-39 {
  border: 39px #f0c40b solid !important;
}
.corn--bt-39 {
  border-top: 39px #f0c40b solid !important;
}
.corn--br-39 {
  border-right: 39px #f0c40b solid !important;
}
.corn--bl-39 {
  border-left: 39px #f0c40b solid !important;
}
.corn--bb-39 {
  border-bottom: 39px #f0c40b solid !important;
}
.corn--by-39 {
  border-top: 39px #f0c40b solid !important;
  border-bottom: 39px #f0c40b solid !important;
}
.corn--bx-39 {
  border-right: 39px #f0c40b solid !important;
  border-left: 39px #f0c40b solid !important;
}
.corn--ba-40 {
  border: 40px #f0c40b solid !important;
}
.corn--bt-40 {
  border-top: 40px #f0c40b solid !important;
}
.corn--br-40 {
  border-right: 40px #f0c40b solid !important;
}
.corn--bl-40 {
  border-left: 40px #f0c40b solid !important;
}
.corn--bb-40 {
  border-bottom: 40px #f0c40b solid !important;
}
.corn--by-40 {
  border-top: 40px #f0c40b solid !important;
  border-bottom: 40px #f0c40b solid !important;
}
.corn--bx-40 {
  border-right: 40px #f0c40b solid !important;
  border-left: 40px #f0c40b solid !important;
}
.corn--ba-41 {
  border: 41px #f0c40b solid !important;
}
.corn--bt-41 {
  border-top: 41px #f0c40b solid !important;
}
.corn--br-41 {
  border-right: 41px #f0c40b solid !important;
}
.corn--bl-41 {
  border-left: 41px #f0c40b solid !important;
}
.corn--bb-41 {
  border-bottom: 41px #f0c40b solid !important;
}
.corn--by-41 {
  border-top: 41px #f0c40b solid !important;
  border-bottom: 41px #f0c40b solid !important;
}
.corn--bx-41 {
  border-right: 41px #f0c40b solid !important;
  border-left: 41px #f0c40b solid !important;
}
.corn--ba-42 {
  border: 42px #f0c40b solid !important;
}
.corn--bt-42 {
  border-top: 42px #f0c40b solid !important;
}
.corn--br-42 {
  border-right: 42px #f0c40b solid !important;
}
.corn--bl-42 {
  border-left: 42px #f0c40b solid !important;
}
.corn--bb-42 {
  border-bottom: 42px #f0c40b solid !important;
}
.corn--by-42 {
  border-top: 42px #f0c40b solid !important;
  border-bottom: 42px #f0c40b solid !important;
}
.corn--bx-42 {
  border-right: 42px #f0c40b solid !important;
  border-left: 42px #f0c40b solid !important;
}
.corn--ba-43 {
  border: 43px #f0c40b solid !important;
}
.corn--bt-43 {
  border-top: 43px #f0c40b solid !important;
}
.corn--br-43 {
  border-right: 43px #f0c40b solid !important;
}
.corn--bl-43 {
  border-left: 43px #f0c40b solid !important;
}
.corn--bb-43 {
  border-bottom: 43px #f0c40b solid !important;
}
.corn--by-43 {
  border-top: 43px #f0c40b solid !important;
  border-bottom: 43px #f0c40b solid !important;
}
.corn--bx-43 {
  border-right: 43px #f0c40b solid !important;
  border-left: 43px #f0c40b solid !important;
}
.corn--ba-44 {
  border: 44px #f0c40b solid !important;
}
.corn--bt-44 {
  border-top: 44px #f0c40b solid !important;
}
.corn--br-44 {
  border-right: 44px #f0c40b solid !important;
}
.corn--bl-44 {
  border-left: 44px #f0c40b solid !important;
}
.corn--bb-44 {
  border-bottom: 44px #f0c40b solid !important;
}
.corn--by-44 {
  border-top: 44px #f0c40b solid !important;
  border-bottom: 44px #f0c40b solid !important;
}
.corn--bx-44 {
  border-right: 44px #f0c40b solid !important;
  border-left: 44px #f0c40b solid !important;
}
.corn--ba-45 {
  border: 45px #f0c40b solid !important;
}
.corn--bt-45 {
  border-top: 45px #f0c40b solid !important;
}
.corn--br-45 {
  border-right: 45px #f0c40b solid !important;
}
.corn--bl-45 {
  border-left: 45px #f0c40b solid !important;
}
.corn--bb-45 {
  border-bottom: 45px #f0c40b solid !important;
}
.corn--by-45 {
  border-top: 45px #f0c40b solid !important;
  border-bottom: 45px #f0c40b solid !important;
}
.corn--bx-45 {
  border-right: 45px #f0c40b solid !important;
  border-left: 45px #f0c40b solid !important;
}
.corn--ba-46 {
  border: 46px #f0c40b solid !important;
}
.corn--bt-46 {
  border-top: 46px #f0c40b solid !important;
}
.corn--br-46 {
  border-right: 46px #f0c40b solid !important;
}
.corn--bl-46 {
  border-left: 46px #f0c40b solid !important;
}
.corn--bb-46 {
  border-bottom: 46px #f0c40b solid !important;
}
.corn--by-46 {
  border-top: 46px #f0c40b solid !important;
  border-bottom: 46px #f0c40b solid !important;
}
.corn--bx-46 {
  border-right: 46px #f0c40b solid !important;
  border-left: 46px #f0c40b solid !important;
}
.corn--ba-47 {
  border: 47px #f0c40b solid !important;
}
.corn--bt-47 {
  border-top: 47px #f0c40b solid !important;
}
.corn--br-47 {
  border-right: 47px #f0c40b solid !important;
}
.corn--bl-47 {
  border-left: 47px #f0c40b solid !important;
}
.corn--bb-47 {
  border-bottom: 47px #f0c40b solid !important;
}
.corn--by-47 {
  border-top: 47px #f0c40b solid !important;
  border-bottom: 47px #f0c40b solid !important;
}
.corn--bx-47 {
  border-right: 47px #f0c40b solid !important;
  border-left: 47px #f0c40b solid !important;
}
.corn--ba-48 {
  border: 48px #f0c40b solid !important;
}
.corn--bt-48 {
  border-top: 48px #f0c40b solid !important;
}
.corn--br-48 {
  border-right: 48px #f0c40b solid !important;
}
.corn--bl-48 {
  border-left: 48px #f0c40b solid !important;
}
.corn--bb-48 {
  border-bottom: 48px #f0c40b solid !important;
}
.corn--by-48 {
  border-top: 48px #f0c40b solid !important;
  border-bottom: 48px #f0c40b solid !important;
}
.corn--bx-48 {
  border-right: 48px #f0c40b solid !important;
  border-left: 48px #f0c40b solid !important;
}
.corn--ba-49 {
  border: 49px #f0c40b solid !important;
}
.corn--bt-49 {
  border-top: 49px #f0c40b solid !important;
}
.corn--br-49 {
  border-right: 49px #f0c40b solid !important;
}
.corn--bl-49 {
  border-left: 49px #f0c40b solid !important;
}
.corn--bb-49 {
  border-bottom: 49px #f0c40b solid !important;
}
.corn--by-49 {
  border-top: 49px #f0c40b solid !important;
  border-bottom: 49px #f0c40b solid !important;
}
.corn--bx-49 {
  border-right: 49px #f0c40b solid !important;
  border-left: 49px #f0c40b solid !important;
}
.corn--ba-50 {
  border: 50px #f0c40b solid !important;
}
.corn--bt-50 {
  border-top: 50px #f0c40b solid !important;
}
.corn--br-50 {
  border-right: 50px #f0c40b solid !important;
}
.corn--bl-50 {
  border-left: 50px #f0c40b solid !important;
}
.corn--bb-50 {
  border-bottom: 50px #f0c40b solid !important;
}
.corn--by-50 {
  border-top: 50px #f0c40b solid !important;
  border-bottom: 50px #f0c40b solid !important;
}
.corn--bx-50 {
  border-right: 50px #f0c40b solid !important;
  border-left: 50px #f0c40b solid !important;
}
.corn--ba-51 {
  border: 51px #f0c40b solid !important;
}
.corn--bt-51 {
  border-top: 51px #f0c40b solid !important;
}
.corn--br-51 {
  border-right: 51px #f0c40b solid !important;
}
.corn--bl-51 {
  border-left: 51px #f0c40b solid !important;
}
.corn--bb-51 {
  border-bottom: 51px #f0c40b solid !important;
}
.corn--by-51 {
  border-top: 51px #f0c40b solid !important;
  border-bottom: 51px #f0c40b solid !important;
}
.corn--bx-51 {
  border-right: 51px #f0c40b solid !important;
  border-left: 51px #f0c40b solid !important;
}
.corn--ba-52 {
  border: 52px #f0c40b solid !important;
}
.corn--bt-52 {
  border-top: 52px #f0c40b solid !important;
}
.corn--br-52 {
  border-right: 52px #f0c40b solid !important;
}
.corn--bl-52 {
  border-left: 52px #f0c40b solid !important;
}
.corn--bb-52 {
  border-bottom: 52px #f0c40b solid !important;
}
.corn--by-52 {
  border-top: 52px #f0c40b solid !important;
  border-bottom: 52px #f0c40b solid !important;
}
.corn--bx-52 {
  border-right: 52px #f0c40b solid !important;
  border-left: 52px #f0c40b solid !important;
}
.corn--ba-53 {
  border: 53px #f0c40b solid !important;
}
.corn--bt-53 {
  border-top: 53px #f0c40b solid !important;
}
.corn--br-53 {
  border-right: 53px #f0c40b solid !important;
}
.corn--bl-53 {
  border-left: 53px #f0c40b solid !important;
}
.corn--bb-53 {
  border-bottom: 53px #f0c40b solid !important;
}
.corn--by-53 {
  border-top: 53px #f0c40b solid !important;
  border-bottom: 53px #f0c40b solid !important;
}
.corn--bx-53 {
  border-right: 53px #f0c40b solid !important;
  border-left: 53px #f0c40b solid !important;
}
.corn--ba-54 {
  border: 54px #f0c40b solid !important;
}
.corn--bt-54 {
  border-top: 54px #f0c40b solid !important;
}
.corn--br-54 {
  border-right: 54px #f0c40b solid !important;
}
.corn--bl-54 {
  border-left: 54px #f0c40b solid !important;
}
.corn--bb-54 {
  border-bottom: 54px #f0c40b solid !important;
}
.corn--by-54 {
  border-top: 54px #f0c40b solid !important;
  border-bottom: 54px #f0c40b solid !important;
}
.corn--bx-54 {
  border-right: 54px #f0c40b solid !important;
  border-left: 54px #f0c40b solid !important;
}
.corn--ba-55 {
  border: 55px #f0c40b solid !important;
}
.corn--bt-55 {
  border-top: 55px #f0c40b solid !important;
}
.corn--br-55 {
  border-right: 55px #f0c40b solid !important;
}
.corn--bl-55 {
  border-left: 55px #f0c40b solid !important;
}
.corn--bb-55 {
  border-bottom: 55px #f0c40b solid !important;
}
.corn--by-55 {
  border-top: 55px #f0c40b solid !important;
  border-bottom: 55px #f0c40b solid !important;
}
.corn--bx-55 {
  border-right: 55px #f0c40b solid !important;
  border-left: 55px #f0c40b solid !important;
}
.corn--ba-56 {
  border: 56px #f0c40b solid !important;
}
.corn--bt-56 {
  border-top: 56px #f0c40b solid !important;
}
.corn--br-56 {
  border-right: 56px #f0c40b solid !important;
}
.corn--bl-56 {
  border-left: 56px #f0c40b solid !important;
}
.corn--bb-56 {
  border-bottom: 56px #f0c40b solid !important;
}
.corn--by-56 {
  border-top: 56px #f0c40b solid !important;
  border-bottom: 56px #f0c40b solid !important;
}
.corn--bx-56 {
  border-right: 56px #f0c40b solid !important;
  border-left: 56px #f0c40b solid !important;
}
.corn--ba-57 {
  border: 57px #f0c40b solid !important;
}
.corn--bt-57 {
  border-top: 57px #f0c40b solid !important;
}
.corn--br-57 {
  border-right: 57px #f0c40b solid !important;
}
.corn--bl-57 {
  border-left: 57px #f0c40b solid !important;
}
.corn--bb-57 {
  border-bottom: 57px #f0c40b solid !important;
}
.corn--by-57 {
  border-top: 57px #f0c40b solid !important;
  border-bottom: 57px #f0c40b solid !important;
}
.corn--bx-57 {
  border-right: 57px #f0c40b solid !important;
  border-left: 57px #f0c40b solid !important;
}
.corn--ba-58 {
  border: 58px #f0c40b solid !important;
}
.corn--bt-58 {
  border-top: 58px #f0c40b solid !important;
}
.corn--br-58 {
  border-right: 58px #f0c40b solid !important;
}
.corn--bl-58 {
  border-left: 58px #f0c40b solid !important;
}
.corn--bb-58 {
  border-bottom: 58px #f0c40b solid !important;
}
.corn--by-58 {
  border-top: 58px #f0c40b solid !important;
  border-bottom: 58px #f0c40b solid !important;
}
.corn--bx-58 {
  border-right: 58px #f0c40b solid !important;
  border-left: 58px #f0c40b solid !important;
}
.corn--ba-59 {
  border: 59px #f0c40b solid !important;
}
.corn--bt-59 {
  border-top: 59px #f0c40b solid !important;
}
.corn--br-59 {
  border-right: 59px #f0c40b solid !important;
}
.corn--bl-59 {
  border-left: 59px #f0c40b solid !important;
}
.corn--bb-59 {
  border-bottom: 59px #f0c40b solid !important;
}
.corn--by-59 {
  border-top: 59px #f0c40b solid !important;
  border-bottom: 59px #f0c40b solid !important;
}
.corn--bx-59 {
  border-right: 59px #f0c40b solid !important;
  border-left: 59px #f0c40b solid !important;
}
.corn--ba-60 {
  border: 60px #f0c40b solid !important;
}
.corn--bt-60 {
  border-top: 60px #f0c40b solid !important;
}
.corn--br-60 {
  border-right: 60px #f0c40b solid !important;
}
.corn--bl-60 {
  border-left: 60px #f0c40b solid !important;
}
.corn--bb-60 {
  border-bottom: 60px #f0c40b solid !important;
}
.corn--by-60 {
  border-top: 60px #f0c40b solid !important;
  border-bottom: 60px #f0c40b solid !important;
}
.corn--bx-60 {
  border-right: 60px #f0c40b solid !important;
  border-left: 60px #f0c40b solid !important;
}
.corn--ba-61 {
  border: 61px #f0c40b solid !important;
}
.corn--bt-61 {
  border-top: 61px #f0c40b solid !important;
}
.corn--br-61 {
  border-right: 61px #f0c40b solid !important;
}
.corn--bl-61 {
  border-left: 61px #f0c40b solid !important;
}
.corn--bb-61 {
  border-bottom: 61px #f0c40b solid !important;
}
.corn--by-61 {
  border-top: 61px #f0c40b solid !important;
  border-bottom: 61px #f0c40b solid !important;
}
.corn--bx-61 {
  border-right: 61px #f0c40b solid !important;
  border-left: 61px #f0c40b solid !important;
}
.corn--ba-62 {
  border: 62px #f0c40b solid !important;
}
.corn--bt-62 {
  border-top: 62px #f0c40b solid !important;
}
.corn--br-62 {
  border-right: 62px #f0c40b solid !important;
}
.corn--bl-62 {
  border-left: 62px #f0c40b solid !important;
}
.corn--bb-62 {
  border-bottom: 62px #f0c40b solid !important;
}
.corn--by-62 {
  border-top: 62px #f0c40b solid !important;
  border-bottom: 62px #f0c40b solid !important;
}
.corn--bx-62 {
  border-right: 62px #f0c40b solid !important;
  border-left: 62px #f0c40b solid !important;
}
.corn--ba-63 {
  border: 63px #f0c40b solid !important;
}
.corn--bt-63 {
  border-top: 63px #f0c40b solid !important;
}
.corn--br-63 {
  border-right: 63px #f0c40b solid !important;
}
.corn--bl-63 {
  border-left: 63px #f0c40b solid !important;
}
.corn--bb-63 {
  border-bottom: 63px #f0c40b solid !important;
}
.corn--by-63 {
  border-top: 63px #f0c40b solid !important;
  border-bottom: 63px #f0c40b solid !important;
}
.corn--bx-63 {
  border-right: 63px #f0c40b solid !important;
  border-left: 63px #f0c40b solid !important;
}
.corn--ba-64 {
  border: 64px #f0c40b solid !important;
}
.corn--bt-64 {
  border-top: 64px #f0c40b solid !important;
}
.corn--br-64 {
  border-right: 64px #f0c40b solid !important;
}
.corn--bl-64 {
  border-left: 64px #f0c40b solid !important;
}
.corn--bb-64 {
  border-bottom: 64px #f0c40b solid !important;
}
.corn--by-64 {
  border-top: 64px #f0c40b solid !important;
  border-bottom: 64px #f0c40b solid !important;
}
.corn--bx-64 {
  border-right: 64px #f0c40b solid !important;
  border-left: 64px #f0c40b solid !important;
}
.corn--ba-65 {
  border: 65px #f0c40b solid !important;
}
.corn--bt-65 {
  border-top: 65px #f0c40b solid !important;
}
.corn--br-65 {
  border-right: 65px #f0c40b solid !important;
}
.corn--bl-65 {
  border-left: 65px #f0c40b solid !important;
}
.corn--bb-65 {
  border-bottom: 65px #f0c40b solid !important;
}
.corn--by-65 {
  border-top: 65px #f0c40b solid !important;
  border-bottom: 65px #f0c40b solid !important;
}
.corn--bx-65 {
  border-right: 65px #f0c40b solid !important;
  border-left: 65px #f0c40b solid !important;
}
.corn--ba-66 {
  border: 66px #f0c40b solid !important;
}
.corn--bt-66 {
  border-top: 66px #f0c40b solid !important;
}
.corn--br-66 {
  border-right: 66px #f0c40b solid !important;
}
.corn--bl-66 {
  border-left: 66px #f0c40b solid !important;
}
.corn--bb-66 {
  border-bottom: 66px #f0c40b solid !important;
}
.corn--by-66 {
  border-top: 66px #f0c40b solid !important;
  border-bottom: 66px #f0c40b solid !important;
}
.corn--bx-66 {
  border-right: 66px #f0c40b solid !important;
  border-left: 66px #f0c40b solid !important;
}
.corn--ba-67 {
  border: 67px #f0c40b solid !important;
}
.corn--bt-67 {
  border-top: 67px #f0c40b solid !important;
}
.corn--br-67 {
  border-right: 67px #f0c40b solid !important;
}
.corn--bl-67 {
  border-left: 67px #f0c40b solid !important;
}
.corn--bb-67 {
  border-bottom: 67px #f0c40b solid !important;
}
.corn--by-67 {
  border-top: 67px #f0c40b solid !important;
  border-bottom: 67px #f0c40b solid !important;
}
.corn--bx-67 {
  border-right: 67px #f0c40b solid !important;
  border-left: 67px #f0c40b solid !important;
}
.corn--ba-68 {
  border: 68px #f0c40b solid !important;
}
.corn--bt-68 {
  border-top: 68px #f0c40b solid !important;
}
.corn--br-68 {
  border-right: 68px #f0c40b solid !important;
}
.corn--bl-68 {
  border-left: 68px #f0c40b solid !important;
}
.corn--bb-68 {
  border-bottom: 68px #f0c40b solid !important;
}
.corn--by-68 {
  border-top: 68px #f0c40b solid !important;
  border-bottom: 68px #f0c40b solid !important;
}
.corn--bx-68 {
  border-right: 68px #f0c40b solid !important;
  border-left: 68px #f0c40b solid !important;
}
.corn--ba-69 {
  border: 69px #f0c40b solid !important;
}
.corn--bt-69 {
  border-top: 69px #f0c40b solid !important;
}
.corn--br-69 {
  border-right: 69px #f0c40b solid !important;
}
.corn--bl-69 {
  border-left: 69px #f0c40b solid !important;
}
.corn--bb-69 {
  border-bottom: 69px #f0c40b solid !important;
}
.corn--by-69 {
  border-top: 69px #f0c40b solid !important;
  border-bottom: 69px #f0c40b solid !important;
}
.corn--bx-69 {
  border-right: 69px #f0c40b solid !important;
  border-left: 69px #f0c40b solid !important;
}
.corn--ba-70 {
  border: 70px #f0c40b solid !important;
}
.corn--bt-70 {
  border-top: 70px #f0c40b solid !important;
}
.corn--br-70 {
  border-right: 70px #f0c40b solid !important;
}
.corn--bl-70 {
  border-left: 70px #f0c40b solid !important;
}
.corn--bb-70 {
  border-bottom: 70px #f0c40b solid !important;
}
.corn--by-70 {
  border-top: 70px #f0c40b solid !important;
  border-bottom: 70px #f0c40b solid !important;
}
.corn--bx-70 {
  border-right: 70px #f0c40b solid !important;
  border-left: 70px #f0c40b solid !important;
}
.corn--ba-71 {
  border: 71px #f0c40b solid !important;
}
.corn--bt-71 {
  border-top: 71px #f0c40b solid !important;
}
.corn--br-71 {
  border-right: 71px #f0c40b solid !important;
}
.corn--bl-71 {
  border-left: 71px #f0c40b solid !important;
}
.corn--bb-71 {
  border-bottom: 71px #f0c40b solid !important;
}
.corn--by-71 {
  border-top: 71px #f0c40b solid !important;
  border-bottom: 71px #f0c40b solid !important;
}
.corn--bx-71 {
  border-right: 71px #f0c40b solid !important;
  border-left: 71px #f0c40b solid !important;
}
.corn--ba-72 {
  border: 72px #f0c40b solid !important;
}
.corn--bt-72 {
  border-top: 72px #f0c40b solid !important;
}
.corn--br-72 {
  border-right: 72px #f0c40b solid !important;
}
.corn--bl-72 {
  border-left: 72px #f0c40b solid !important;
}
.corn--bb-72 {
  border-bottom: 72px #f0c40b solid !important;
}
.corn--by-72 {
  border-top: 72px #f0c40b solid !important;
  border-bottom: 72px #f0c40b solid !important;
}
.corn--bx-72 {
  border-right: 72px #f0c40b solid !important;
  border-left: 72px #f0c40b solid !important;
}
.corn--ba-73 {
  border: 73px #f0c40b solid !important;
}
.corn--bt-73 {
  border-top: 73px #f0c40b solid !important;
}
.corn--br-73 {
  border-right: 73px #f0c40b solid !important;
}
.corn--bl-73 {
  border-left: 73px #f0c40b solid !important;
}
.corn--bb-73 {
  border-bottom: 73px #f0c40b solid !important;
}
.corn--by-73 {
  border-top: 73px #f0c40b solid !important;
  border-bottom: 73px #f0c40b solid !important;
}
.corn--bx-73 {
  border-right: 73px #f0c40b solid !important;
  border-left: 73px #f0c40b solid !important;
}
.corn--ba-74 {
  border: 74px #f0c40b solid !important;
}
.corn--bt-74 {
  border-top: 74px #f0c40b solid !important;
}
.corn--br-74 {
  border-right: 74px #f0c40b solid !important;
}
.corn--bl-74 {
  border-left: 74px #f0c40b solid !important;
}
.corn--bb-74 {
  border-bottom: 74px #f0c40b solid !important;
}
.corn--by-74 {
  border-top: 74px #f0c40b solid !important;
  border-bottom: 74px #f0c40b solid !important;
}
.corn--bx-74 {
  border-right: 74px #f0c40b solid !important;
  border-left: 74px #f0c40b solid !important;
}
.corn--ba-75 {
  border: 75px #f0c40b solid !important;
}
.corn--bt-75 {
  border-top: 75px #f0c40b solid !important;
}
.corn--br-75 {
  border-right: 75px #f0c40b solid !important;
}
.corn--bl-75 {
  border-left: 75px #f0c40b solid !important;
}
.corn--bb-75 {
  border-bottom: 75px #f0c40b solid !important;
}
.corn--by-75 {
  border-top: 75px #f0c40b solid !important;
  border-bottom: 75px #f0c40b solid !important;
}
.corn--bx-75 {
  border-right: 75px #f0c40b solid !important;
  border-left: 75px #f0c40b solid !important;
}
.corn--ba-76 {
  border: 76px #f0c40b solid !important;
}
.corn--bt-76 {
  border-top: 76px #f0c40b solid !important;
}
.corn--br-76 {
  border-right: 76px #f0c40b solid !important;
}
.corn--bl-76 {
  border-left: 76px #f0c40b solid !important;
}
.corn--bb-76 {
  border-bottom: 76px #f0c40b solid !important;
}
.corn--by-76 {
  border-top: 76px #f0c40b solid !important;
  border-bottom: 76px #f0c40b solid !important;
}
.corn--bx-76 {
  border-right: 76px #f0c40b solid !important;
  border-left: 76px #f0c40b solid !important;
}
.corn--ba-77 {
  border: 77px #f0c40b solid !important;
}
.corn--bt-77 {
  border-top: 77px #f0c40b solid !important;
}
.corn--br-77 {
  border-right: 77px #f0c40b solid !important;
}
.corn--bl-77 {
  border-left: 77px #f0c40b solid !important;
}
.corn--bb-77 {
  border-bottom: 77px #f0c40b solid !important;
}
.corn--by-77 {
  border-top: 77px #f0c40b solid !important;
  border-bottom: 77px #f0c40b solid !important;
}
.corn--bx-77 {
  border-right: 77px #f0c40b solid !important;
  border-left: 77px #f0c40b solid !important;
}
.corn--ba-78 {
  border: 78px #f0c40b solid !important;
}
.corn--bt-78 {
  border-top: 78px #f0c40b solid !important;
}
.corn--br-78 {
  border-right: 78px #f0c40b solid !important;
}
.corn--bl-78 {
  border-left: 78px #f0c40b solid !important;
}
.corn--bb-78 {
  border-bottom: 78px #f0c40b solid !important;
}
.corn--by-78 {
  border-top: 78px #f0c40b solid !important;
  border-bottom: 78px #f0c40b solid !important;
}
.corn--bx-78 {
  border-right: 78px #f0c40b solid !important;
  border-left: 78px #f0c40b solid !important;
}
.corn--ba-79 {
  border: 79px #f0c40b solid !important;
}
.corn--bt-79 {
  border-top: 79px #f0c40b solid !important;
}
.corn--br-79 {
  border-right: 79px #f0c40b solid !important;
}
.corn--bl-79 {
  border-left: 79px #f0c40b solid !important;
}
.corn--bb-79 {
  border-bottom: 79px #f0c40b solid !important;
}
.corn--by-79 {
  border-top: 79px #f0c40b solid !important;
  border-bottom: 79px #f0c40b solid !important;
}
.corn--bx-79 {
  border-right: 79px #f0c40b solid !important;
  border-left: 79px #f0c40b solid !important;
}
.corn--ba-80 {
  border: 80px #f0c40b solid !important;
}
.corn--bt-80 {
  border-top: 80px #f0c40b solid !important;
}
.corn--br-80 {
  border-right: 80px #f0c40b solid !important;
}
.corn--bl-80 {
  border-left: 80px #f0c40b solid !important;
}
.corn--bb-80 {
  border-bottom: 80px #f0c40b solid !important;
}
.corn--by-80 {
  border-top: 80px #f0c40b solid !important;
  border-bottom: 80px #f0c40b solid !important;
}
.corn--bx-80 {
  border-right: 80px #f0c40b solid !important;
  border-left: 80px #f0c40b solid !important;
}
.corn--ba-81 {
  border: 81px #f0c40b solid !important;
}
.corn--bt-81 {
  border-top: 81px #f0c40b solid !important;
}
.corn--br-81 {
  border-right: 81px #f0c40b solid !important;
}
.corn--bl-81 {
  border-left: 81px #f0c40b solid !important;
}
.corn--bb-81 {
  border-bottom: 81px #f0c40b solid !important;
}
.corn--by-81 {
  border-top: 81px #f0c40b solid !important;
  border-bottom: 81px #f0c40b solid !important;
}
.corn--bx-81 {
  border-right: 81px #f0c40b solid !important;
  border-left: 81px #f0c40b solid !important;
}
.corn--ba-82 {
  border: 82px #f0c40b solid !important;
}
.corn--bt-82 {
  border-top: 82px #f0c40b solid !important;
}
.corn--br-82 {
  border-right: 82px #f0c40b solid !important;
}
.corn--bl-82 {
  border-left: 82px #f0c40b solid !important;
}
.corn--bb-82 {
  border-bottom: 82px #f0c40b solid !important;
}
.corn--by-82 {
  border-top: 82px #f0c40b solid !important;
  border-bottom: 82px #f0c40b solid !important;
}
.corn--bx-82 {
  border-right: 82px #f0c40b solid !important;
  border-left: 82px #f0c40b solid !important;
}
.corn--ba-83 {
  border: 83px #f0c40b solid !important;
}
.corn--bt-83 {
  border-top: 83px #f0c40b solid !important;
}
.corn--br-83 {
  border-right: 83px #f0c40b solid !important;
}
.corn--bl-83 {
  border-left: 83px #f0c40b solid !important;
}
.corn--bb-83 {
  border-bottom: 83px #f0c40b solid !important;
}
.corn--by-83 {
  border-top: 83px #f0c40b solid !important;
  border-bottom: 83px #f0c40b solid !important;
}
.corn--bx-83 {
  border-right: 83px #f0c40b solid !important;
  border-left: 83px #f0c40b solid !important;
}
.corn--ba-84 {
  border: 84px #f0c40b solid !important;
}
.corn--bt-84 {
  border-top: 84px #f0c40b solid !important;
}
.corn--br-84 {
  border-right: 84px #f0c40b solid !important;
}
.corn--bl-84 {
  border-left: 84px #f0c40b solid !important;
}
.corn--bb-84 {
  border-bottom: 84px #f0c40b solid !important;
}
.corn--by-84 {
  border-top: 84px #f0c40b solid !important;
  border-bottom: 84px #f0c40b solid !important;
}
.corn--bx-84 {
  border-right: 84px #f0c40b solid !important;
  border-left: 84px #f0c40b solid !important;
}
.corn--ba-85 {
  border: 85px #f0c40b solid !important;
}
.corn--bt-85 {
  border-top: 85px #f0c40b solid !important;
}
.corn--br-85 {
  border-right: 85px #f0c40b solid !important;
}
.corn--bl-85 {
  border-left: 85px #f0c40b solid !important;
}
.corn--bb-85 {
  border-bottom: 85px #f0c40b solid !important;
}
.corn--by-85 {
  border-top: 85px #f0c40b solid !important;
  border-bottom: 85px #f0c40b solid !important;
}
.corn--bx-85 {
  border-right: 85px #f0c40b solid !important;
  border-left: 85px #f0c40b solid !important;
}
.corn--ba-86 {
  border: 86px #f0c40b solid !important;
}
.corn--bt-86 {
  border-top: 86px #f0c40b solid !important;
}
.corn--br-86 {
  border-right: 86px #f0c40b solid !important;
}
.corn--bl-86 {
  border-left: 86px #f0c40b solid !important;
}
.corn--bb-86 {
  border-bottom: 86px #f0c40b solid !important;
}
.corn--by-86 {
  border-top: 86px #f0c40b solid !important;
  border-bottom: 86px #f0c40b solid !important;
}
.corn--bx-86 {
  border-right: 86px #f0c40b solid !important;
  border-left: 86px #f0c40b solid !important;
}
.corn--ba-87 {
  border: 87px #f0c40b solid !important;
}
.corn--bt-87 {
  border-top: 87px #f0c40b solid !important;
}
.corn--br-87 {
  border-right: 87px #f0c40b solid !important;
}
.corn--bl-87 {
  border-left: 87px #f0c40b solid !important;
}
.corn--bb-87 {
  border-bottom: 87px #f0c40b solid !important;
}
.corn--by-87 {
  border-top: 87px #f0c40b solid !important;
  border-bottom: 87px #f0c40b solid !important;
}
.corn--bx-87 {
  border-right: 87px #f0c40b solid !important;
  border-left: 87px #f0c40b solid !important;
}
.corn--ba-88 {
  border: 88px #f0c40b solid !important;
}
.corn--bt-88 {
  border-top: 88px #f0c40b solid !important;
}
.corn--br-88 {
  border-right: 88px #f0c40b solid !important;
}
.corn--bl-88 {
  border-left: 88px #f0c40b solid !important;
}
.corn--bb-88 {
  border-bottom: 88px #f0c40b solid !important;
}
.corn--by-88 {
  border-top: 88px #f0c40b solid !important;
  border-bottom: 88px #f0c40b solid !important;
}
.corn--bx-88 {
  border-right: 88px #f0c40b solid !important;
  border-left: 88px #f0c40b solid !important;
}
.corn--ba-89 {
  border: 89px #f0c40b solid !important;
}
.corn--bt-89 {
  border-top: 89px #f0c40b solid !important;
}
.corn--br-89 {
  border-right: 89px #f0c40b solid !important;
}
.corn--bl-89 {
  border-left: 89px #f0c40b solid !important;
}
.corn--bb-89 {
  border-bottom: 89px #f0c40b solid !important;
}
.corn--by-89 {
  border-top: 89px #f0c40b solid !important;
  border-bottom: 89px #f0c40b solid !important;
}
.corn--bx-89 {
  border-right: 89px #f0c40b solid !important;
  border-left: 89px #f0c40b solid !important;
}
.corn--ba-90 {
  border: 90px #f0c40b solid !important;
}
.corn--bt-90 {
  border-top: 90px #f0c40b solid !important;
}
.corn--br-90 {
  border-right: 90px #f0c40b solid !important;
}
.corn--bl-90 {
  border-left: 90px #f0c40b solid !important;
}
.corn--bb-90 {
  border-bottom: 90px #f0c40b solid !important;
}
.corn--by-90 {
  border-top: 90px #f0c40b solid !important;
  border-bottom: 90px #f0c40b solid !important;
}
.corn--bx-90 {
  border-right: 90px #f0c40b solid !important;
  border-left: 90px #f0c40b solid !important;
}
.corn--ba-91 {
  border: 91px #f0c40b solid !important;
}
.corn--bt-91 {
  border-top: 91px #f0c40b solid !important;
}
.corn--br-91 {
  border-right: 91px #f0c40b solid !important;
}
.corn--bl-91 {
  border-left: 91px #f0c40b solid !important;
}
.corn--bb-91 {
  border-bottom: 91px #f0c40b solid !important;
}
.corn--by-91 {
  border-top: 91px #f0c40b solid !important;
  border-bottom: 91px #f0c40b solid !important;
}
.corn--bx-91 {
  border-right: 91px #f0c40b solid !important;
  border-left: 91px #f0c40b solid !important;
}
.corn--ba-92 {
  border: 92px #f0c40b solid !important;
}
.corn--bt-92 {
  border-top: 92px #f0c40b solid !important;
}
.corn--br-92 {
  border-right: 92px #f0c40b solid !important;
}
.corn--bl-92 {
  border-left: 92px #f0c40b solid !important;
}
.corn--bb-92 {
  border-bottom: 92px #f0c40b solid !important;
}
.corn--by-92 {
  border-top: 92px #f0c40b solid !important;
  border-bottom: 92px #f0c40b solid !important;
}
.corn--bx-92 {
  border-right: 92px #f0c40b solid !important;
  border-left: 92px #f0c40b solid !important;
}
.corn--ba-93 {
  border: 93px #f0c40b solid !important;
}
.corn--bt-93 {
  border-top: 93px #f0c40b solid !important;
}
.corn--br-93 {
  border-right: 93px #f0c40b solid !important;
}
.corn--bl-93 {
  border-left: 93px #f0c40b solid !important;
}
.corn--bb-93 {
  border-bottom: 93px #f0c40b solid !important;
}
.corn--by-93 {
  border-top: 93px #f0c40b solid !important;
  border-bottom: 93px #f0c40b solid !important;
}
.corn--bx-93 {
  border-right: 93px #f0c40b solid !important;
  border-left: 93px #f0c40b solid !important;
}
.corn--ba-94 {
  border: 94px #f0c40b solid !important;
}
.corn--bt-94 {
  border-top: 94px #f0c40b solid !important;
}
.corn--br-94 {
  border-right: 94px #f0c40b solid !important;
}
.corn--bl-94 {
  border-left: 94px #f0c40b solid !important;
}
.corn--bb-94 {
  border-bottom: 94px #f0c40b solid !important;
}
.corn--by-94 {
  border-top: 94px #f0c40b solid !important;
  border-bottom: 94px #f0c40b solid !important;
}
.corn--bx-94 {
  border-right: 94px #f0c40b solid !important;
  border-left: 94px #f0c40b solid !important;
}
.corn--ba-95 {
  border: 95px #f0c40b solid !important;
}
.corn--bt-95 {
  border-top: 95px #f0c40b solid !important;
}
.corn--br-95 {
  border-right: 95px #f0c40b solid !important;
}
.corn--bl-95 {
  border-left: 95px #f0c40b solid !important;
}
.corn--bb-95 {
  border-bottom: 95px #f0c40b solid !important;
}
.corn--by-95 {
  border-top: 95px #f0c40b solid !important;
  border-bottom: 95px #f0c40b solid !important;
}
.corn--bx-95 {
  border-right: 95px #f0c40b solid !important;
  border-left: 95px #f0c40b solid !important;
}
.corn--ba-96 {
  border: 96px #f0c40b solid !important;
}
.corn--bt-96 {
  border-top: 96px #f0c40b solid !important;
}
.corn--br-96 {
  border-right: 96px #f0c40b solid !important;
}
.corn--bl-96 {
  border-left: 96px #f0c40b solid !important;
}
.corn--bb-96 {
  border-bottom: 96px #f0c40b solid !important;
}
.corn--by-96 {
  border-top: 96px #f0c40b solid !important;
  border-bottom: 96px #f0c40b solid !important;
}
.corn--bx-96 {
  border-right: 96px #f0c40b solid !important;
  border-left: 96px #f0c40b solid !important;
}
.corn--ba-97 {
  border: 97px #f0c40b solid !important;
}
.corn--bt-97 {
  border-top: 97px #f0c40b solid !important;
}
.corn--br-97 {
  border-right: 97px #f0c40b solid !important;
}
.corn--bl-97 {
  border-left: 97px #f0c40b solid !important;
}
.corn--bb-97 {
  border-bottom: 97px #f0c40b solid !important;
}
.corn--by-97 {
  border-top: 97px #f0c40b solid !important;
  border-bottom: 97px #f0c40b solid !important;
}
.corn--bx-97 {
  border-right: 97px #f0c40b solid !important;
  border-left: 97px #f0c40b solid !important;
}
.corn--ba-98 {
  border: 98px #f0c40b solid !important;
}
.corn--bt-98 {
  border-top: 98px #f0c40b solid !important;
}
.corn--br-98 {
  border-right: 98px #f0c40b solid !important;
}
.corn--bl-98 {
  border-left: 98px #f0c40b solid !important;
}
.corn--bb-98 {
  border-bottom: 98px #f0c40b solid !important;
}
.corn--by-98 {
  border-top: 98px #f0c40b solid !important;
  border-bottom: 98px #f0c40b solid !important;
}
.corn--bx-98 {
  border-right: 98px #f0c40b solid !important;
  border-left: 98px #f0c40b solid !important;
}
.corn--ba-99 {
  border: 99px #f0c40b solid !important;
}
.corn--bt-99 {
  border-top: 99px #f0c40b solid !important;
}
.corn--br-99 {
  border-right: 99px #f0c40b solid !important;
}
.corn--bl-99 {
  border-left: 99px #f0c40b solid !important;
}
.corn--bb-99 {
  border-bottom: 99px #f0c40b solid !important;
}
.corn--by-99 {
  border-top: 99px #f0c40b solid !important;
  border-bottom: 99px #f0c40b solid !important;
}
.corn--bx-99 {
  border-right: 99px #f0c40b solid !important;
  border-left: 99px #f0c40b solid !important;
}
.corn--ba-100 {
  border: 100px #f0c40b solid !important;
}
.corn--bt-100 {
  border-top: 100px #f0c40b solid !important;
}
.corn--br-100 {
  border-right: 100px #f0c40b solid !important;
}
.corn--bl-100 {
  border-left: 100px #f0c40b solid !important;
}
.corn--bb-100 {
  border-bottom: 100px #f0c40b solid !important;
}
.corn--by-100 {
  border-top: 100px #f0c40b solid !important;
  border-bottom: 100px #f0c40b solid !important;
}
.corn--bx-100 {
  border-right: 100px #f0c40b solid !important;
  border-left: 100px #f0c40b solid !important;
}
.pomegranate--ba-1 {
  border: 1px #f24822 solid !important;
}
.pomegranate--bt-1 {
  border-top: 1px #f24822 solid !important;
}
.pomegranate--br-1 {
  border-right: 1px #f24822 solid !important;
}
.pomegranate--bl-1 {
  border-left: 1px #f24822 solid !important;
}
.pomegranate--bb-1 {
  border-bottom: 1px #f24822 solid !important;
}
.pomegranate--by-1 {
  border-top: 1px #f24822 solid !important;
  border-bottom: 1px #f24822 solid !important;
}
.pomegranate--bx-1 {
  border-right: 1px #f24822 solid !important;
  border-left: 1px #f24822 solid !important;
}
.pomegranate--ba-2 {
  border: 2px #f24822 solid !important;
}
.pomegranate--bt-2 {
  border-top: 2px #f24822 solid !important;
}
.pomegranate--br-2 {
  border-right: 2px #f24822 solid !important;
}
.pomegranate--bl-2 {
  border-left: 2px #f24822 solid !important;
}
.pomegranate--bb-2 {
  border-bottom: 2px #f24822 solid !important;
}
.pomegranate--by-2 {
  border-top: 2px #f24822 solid !important;
  border-bottom: 2px #f24822 solid !important;
}
.pomegranate--bx-2 {
  border-right: 2px #f24822 solid !important;
  border-left: 2px #f24822 solid !important;
}
.pomegranate--ba-3 {
  border: 3px #f24822 solid !important;
}
.pomegranate--bt-3 {
  border-top: 3px #f24822 solid !important;
}
.pomegranate--br-3 {
  border-right: 3px #f24822 solid !important;
}
.pomegranate--bl-3 {
  border-left: 3px #f24822 solid !important;
}
.pomegranate--bb-3 {
  border-bottom: 3px #f24822 solid !important;
}
.pomegranate--by-3 {
  border-top: 3px #f24822 solid !important;
  border-bottom: 3px #f24822 solid !important;
}
.pomegranate--bx-3 {
  border-right: 3px #f24822 solid !important;
  border-left: 3px #f24822 solid !important;
}
.pomegranate--ba-4 {
  border: 4px #f24822 solid !important;
}
.pomegranate--bt-4 {
  border-top: 4px #f24822 solid !important;
}
.pomegranate--br-4 {
  border-right: 4px #f24822 solid !important;
}
.pomegranate--bl-4 {
  border-left: 4px #f24822 solid !important;
}
.pomegranate--bb-4 {
  border-bottom: 4px #f24822 solid !important;
}
.pomegranate--by-4 {
  border-top: 4px #f24822 solid !important;
  border-bottom: 4px #f24822 solid !important;
}
.pomegranate--bx-4 {
  border-right: 4px #f24822 solid !important;
  border-left: 4px #f24822 solid !important;
}
.pomegranate--ba-5 {
  border: 5px #f24822 solid !important;
}
.pomegranate--bt-5 {
  border-top: 5px #f24822 solid !important;
}
.pomegranate--br-5 {
  border-right: 5px #f24822 solid !important;
}
.pomegranate--bl-5 {
  border-left: 5px #f24822 solid !important;
}
.pomegranate--bb-5 {
  border-bottom: 5px #f24822 solid !important;
}
.pomegranate--by-5 {
  border-top: 5px #f24822 solid !important;
  border-bottom: 5px #f24822 solid !important;
}
.pomegranate--bx-5 {
  border-right: 5px #f24822 solid !important;
  border-left: 5px #f24822 solid !important;
}
.pomegranate--ba-6 {
  border: 6px #f24822 solid !important;
}
.pomegranate--bt-6 {
  border-top: 6px #f24822 solid !important;
}
.pomegranate--br-6 {
  border-right: 6px #f24822 solid !important;
}
.pomegranate--bl-6 {
  border-left: 6px #f24822 solid !important;
}
.pomegranate--bb-6 {
  border-bottom: 6px #f24822 solid !important;
}
.pomegranate--by-6 {
  border-top: 6px #f24822 solid !important;
  border-bottom: 6px #f24822 solid !important;
}
.pomegranate--bx-6 {
  border-right: 6px #f24822 solid !important;
  border-left: 6px #f24822 solid !important;
}
.pomegranate--ba-7 {
  border: 7px #f24822 solid !important;
}
.pomegranate--bt-7 {
  border-top: 7px #f24822 solid !important;
}
.pomegranate--br-7 {
  border-right: 7px #f24822 solid !important;
}
.pomegranate--bl-7 {
  border-left: 7px #f24822 solid !important;
}
.pomegranate--bb-7 {
  border-bottom: 7px #f24822 solid !important;
}
.pomegranate--by-7 {
  border-top: 7px #f24822 solid !important;
  border-bottom: 7px #f24822 solid !important;
}
.pomegranate--bx-7 {
  border-right: 7px #f24822 solid !important;
  border-left: 7px #f24822 solid !important;
}
.pomegranate--ba-8 {
  border: 8px #f24822 solid !important;
}
.pomegranate--bt-8 {
  border-top: 8px #f24822 solid !important;
}
.pomegranate--br-8 {
  border-right: 8px #f24822 solid !important;
}
.pomegranate--bl-8 {
  border-left: 8px #f24822 solid !important;
}
.pomegranate--bb-8 {
  border-bottom: 8px #f24822 solid !important;
}
.pomegranate--by-8 {
  border-top: 8px #f24822 solid !important;
  border-bottom: 8px #f24822 solid !important;
}
.pomegranate--bx-8 {
  border-right: 8px #f24822 solid !important;
  border-left: 8px #f24822 solid !important;
}
.pomegranate--ba-9 {
  border: 9px #f24822 solid !important;
}
.pomegranate--bt-9 {
  border-top: 9px #f24822 solid !important;
}
.pomegranate--br-9 {
  border-right: 9px #f24822 solid !important;
}
.pomegranate--bl-9 {
  border-left: 9px #f24822 solid !important;
}
.pomegranate--bb-9 {
  border-bottom: 9px #f24822 solid !important;
}
.pomegranate--by-9 {
  border-top: 9px #f24822 solid !important;
  border-bottom: 9px #f24822 solid !important;
}
.pomegranate--bx-9 {
  border-right: 9px #f24822 solid !important;
  border-left: 9px #f24822 solid !important;
}
.pomegranate--ba-10 {
  border: 10px #f24822 solid !important;
}
.pomegranate--bt-10 {
  border-top: 10px #f24822 solid !important;
}
.pomegranate--br-10 {
  border-right: 10px #f24822 solid !important;
}
.pomegranate--bl-10 {
  border-left: 10px #f24822 solid !important;
}
.pomegranate--bb-10 {
  border-bottom: 10px #f24822 solid !important;
}
.pomegranate--by-10 {
  border-top: 10px #f24822 solid !important;
  border-bottom: 10px #f24822 solid !important;
}
.pomegranate--bx-10 {
  border-right: 10px #f24822 solid !important;
  border-left: 10px #f24822 solid !important;
}
.pomegranate--ba-11 {
  border: 11px #f24822 solid !important;
}
.pomegranate--bt-11 {
  border-top: 11px #f24822 solid !important;
}
.pomegranate--br-11 {
  border-right: 11px #f24822 solid !important;
}
.pomegranate--bl-11 {
  border-left: 11px #f24822 solid !important;
}
.pomegranate--bb-11 {
  border-bottom: 11px #f24822 solid !important;
}
.pomegranate--by-11 {
  border-top: 11px #f24822 solid !important;
  border-bottom: 11px #f24822 solid !important;
}
.pomegranate--bx-11 {
  border-right: 11px #f24822 solid !important;
  border-left: 11px #f24822 solid !important;
}
.pomegranate--ba-12 {
  border: 12px #f24822 solid !important;
}
.pomegranate--bt-12 {
  border-top: 12px #f24822 solid !important;
}
.pomegranate--br-12 {
  border-right: 12px #f24822 solid !important;
}
.pomegranate--bl-12 {
  border-left: 12px #f24822 solid !important;
}
.pomegranate--bb-12 {
  border-bottom: 12px #f24822 solid !important;
}
.pomegranate--by-12 {
  border-top: 12px #f24822 solid !important;
  border-bottom: 12px #f24822 solid !important;
}
.pomegranate--bx-12 {
  border-right: 12px #f24822 solid !important;
  border-left: 12px #f24822 solid !important;
}
.pomegranate--ba-13 {
  border: 13px #f24822 solid !important;
}
.pomegranate--bt-13 {
  border-top: 13px #f24822 solid !important;
}
.pomegranate--br-13 {
  border-right: 13px #f24822 solid !important;
}
.pomegranate--bl-13 {
  border-left: 13px #f24822 solid !important;
}
.pomegranate--bb-13 {
  border-bottom: 13px #f24822 solid !important;
}
.pomegranate--by-13 {
  border-top: 13px #f24822 solid !important;
  border-bottom: 13px #f24822 solid !important;
}
.pomegranate--bx-13 {
  border-right: 13px #f24822 solid !important;
  border-left: 13px #f24822 solid !important;
}
.pomegranate--ba-14 {
  border: 14px #f24822 solid !important;
}
.pomegranate--bt-14 {
  border-top: 14px #f24822 solid !important;
}
.pomegranate--br-14 {
  border-right: 14px #f24822 solid !important;
}
.pomegranate--bl-14 {
  border-left: 14px #f24822 solid !important;
}
.pomegranate--bb-14 {
  border-bottom: 14px #f24822 solid !important;
}
.pomegranate--by-14 {
  border-top: 14px #f24822 solid !important;
  border-bottom: 14px #f24822 solid !important;
}
.pomegranate--bx-14 {
  border-right: 14px #f24822 solid !important;
  border-left: 14px #f24822 solid !important;
}
.pomegranate--ba-15 {
  border: 15px #f24822 solid !important;
}
.pomegranate--bt-15 {
  border-top: 15px #f24822 solid !important;
}
.pomegranate--br-15 {
  border-right: 15px #f24822 solid !important;
}
.pomegranate--bl-15 {
  border-left: 15px #f24822 solid !important;
}
.pomegranate--bb-15 {
  border-bottom: 15px #f24822 solid !important;
}
.pomegranate--by-15 {
  border-top: 15px #f24822 solid !important;
  border-bottom: 15px #f24822 solid !important;
}
.pomegranate--bx-15 {
  border-right: 15px #f24822 solid !important;
  border-left: 15px #f24822 solid !important;
}
.pomegranate--ba-16 {
  border: 16px #f24822 solid !important;
}
.pomegranate--bt-16 {
  border-top: 16px #f24822 solid !important;
}
.pomegranate--br-16 {
  border-right: 16px #f24822 solid !important;
}
.pomegranate--bl-16 {
  border-left: 16px #f24822 solid !important;
}
.pomegranate--bb-16 {
  border-bottom: 16px #f24822 solid !important;
}
.pomegranate--by-16 {
  border-top: 16px #f24822 solid !important;
  border-bottom: 16px #f24822 solid !important;
}
.pomegranate--bx-16 {
  border-right: 16px #f24822 solid !important;
  border-left: 16px #f24822 solid !important;
}
.pomegranate--ba-17 {
  border: 17px #f24822 solid !important;
}
.pomegranate--bt-17 {
  border-top: 17px #f24822 solid !important;
}
.pomegranate--br-17 {
  border-right: 17px #f24822 solid !important;
}
.pomegranate--bl-17 {
  border-left: 17px #f24822 solid !important;
}
.pomegranate--bb-17 {
  border-bottom: 17px #f24822 solid !important;
}
.pomegranate--by-17 {
  border-top: 17px #f24822 solid !important;
  border-bottom: 17px #f24822 solid !important;
}
.pomegranate--bx-17 {
  border-right: 17px #f24822 solid !important;
  border-left: 17px #f24822 solid !important;
}
.pomegranate--ba-18 {
  border: 18px #f24822 solid !important;
}
.pomegranate--bt-18 {
  border-top: 18px #f24822 solid !important;
}
.pomegranate--br-18 {
  border-right: 18px #f24822 solid !important;
}
.pomegranate--bl-18 {
  border-left: 18px #f24822 solid !important;
}
.pomegranate--bb-18 {
  border-bottom: 18px #f24822 solid !important;
}
.pomegranate--by-18 {
  border-top: 18px #f24822 solid !important;
  border-bottom: 18px #f24822 solid !important;
}
.pomegranate--bx-18 {
  border-right: 18px #f24822 solid !important;
  border-left: 18px #f24822 solid !important;
}
.pomegranate--ba-19 {
  border: 19px #f24822 solid !important;
}
.pomegranate--bt-19 {
  border-top: 19px #f24822 solid !important;
}
.pomegranate--br-19 {
  border-right: 19px #f24822 solid !important;
}
.pomegranate--bl-19 {
  border-left: 19px #f24822 solid !important;
}
.pomegranate--bb-19 {
  border-bottom: 19px #f24822 solid !important;
}
.pomegranate--by-19 {
  border-top: 19px #f24822 solid !important;
  border-bottom: 19px #f24822 solid !important;
}
.pomegranate--bx-19 {
  border-right: 19px #f24822 solid !important;
  border-left: 19px #f24822 solid !important;
}
.pomegranate--ba-20 {
  border: 20px #f24822 solid !important;
}
.pomegranate--bt-20 {
  border-top: 20px #f24822 solid !important;
}
.pomegranate--br-20 {
  border-right: 20px #f24822 solid !important;
}
.pomegranate--bl-20 {
  border-left: 20px #f24822 solid !important;
}
.pomegranate--bb-20 {
  border-bottom: 20px #f24822 solid !important;
}
.pomegranate--by-20 {
  border-top: 20px #f24822 solid !important;
  border-bottom: 20px #f24822 solid !important;
}
.pomegranate--bx-20 {
  border-right: 20px #f24822 solid !important;
  border-left: 20px #f24822 solid !important;
}
.pomegranate--ba-21 {
  border: 21px #f24822 solid !important;
}
.pomegranate--bt-21 {
  border-top: 21px #f24822 solid !important;
}
.pomegranate--br-21 {
  border-right: 21px #f24822 solid !important;
}
.pomegranate--bl-21 {
  border-left: 21px #f24822 solid !important;
}
.pomegranate--bb-21 {
  border-bottom: 21px #f24822 solid !important;
}
.pomegranate--by-21 {
  border-top: 21px #f24822 solid !important;
  border-bottom: 21px #f24822 solid !important;
}
.pomegranate--bx-21 {
  border-right: 21px #f24822 solid !important;
  border-left: 21px #f24822 solid !important;
}
.pomegranate--ba-22 {
  border: 22px #f24822 solid !important;
}
.pomegranate--bt-22 {
  border-top: 22px #f24822 solid !important;
}
.pomegranate--br-22 {
  border-right: 22px #f24822 solid !important;
}
.pomegranate--bl-22 {
  border-left: 22px #f24822 solid !important;
}
.pomegranate--bb-22 {
  border-bottom: 22px #f24822 solid !important;
}
.pomegranate--by-22 {
  border-top: 22px #f24822 solid !important;
  border-bottom: 22px #f24822 solid !important;
}
.pomegranate--bx-22 {
  border-right: 22px #f24822 solid !important;
  border-left: 22px #f24822 solid !important;
}
.pomegranate--ba-23 {
  border: 23px #f24822 solid !important;
}
.pomegranate--bt-23 {
  border-top: 23px #f24822 solid !important;
}
.pomegranate--br-23 {
  border-right: 23px #f24822 solid !important;
}
.pomegranate--bl-23 {
  border-left: 23px #f24822 solid !important;
}
.pomegranate--bb-23 {
  border-bottom: 23px #f24822 solid !important;
}
.pomegranate--by-23 {
  border-top: 23px #f24822 solid !important;
  border-bottom: 23px #f24822 solid !important;
}
.pomegranate--bx-23 {
  border-right: 23px #f24822 solid !important;
  border-left: 23px #f24822 solid !important;
}
.pomegranate--ba-24 {
  border: 24px #f24822 solid !important;
}
.pomegranate--bt-24 {
  border-top: 24px #f24822 solid !important;
}
.pomegranate--br-24 {
  border-right: 24px #f24822 solid !important;
}
.pomegranate--bl-24 {
  border-left: 24px #f24822 solid !important;
}
.pomegranate--bb-24 {
  border-bottom: 24px #f24822 solid !important;
}
.pomegranate--by-24 {
  border-top: 24px #f24822 solid !important;
  border-bottom: 24px #f24822 solid !important;
}
.pomegranate--bx-24 {
  border-right: 24px #f24822 solid !important;
  border-left: 24px #f24822 solid !important;
}
.pomegranate--ba-25 {
  border: 25px #f24822 solid !important;
}
.pomegranate--bt-25 {
  border-top: 25px #f24822 solid !important;
}
.pomegranate--br-25 {
  border-right: 25px #f24822 solid !important;
}
.pomegranate--bl-25 {
  border-left: 25px #f24822 solid !important;
}
.pomegranate--bb-25 {
  border-bottom: 25px #f24822 solid !important;
}
.pomegranate--by-25 {
  border-top: 25px #f24822 solid !important;
  border-bottom: 25px #f24822 solid !important;
}
.pomegranate--bx-25 {
  border-right: 25px #f24822 solid !important;
  border-left: 25px #f24822 solid !important;
}
.pomegranate--ba-26 {
  border: 26px #f24822 solid !important;
}
.pomegranate--bt-26 {
  border-top: 26px #f24822 solid !important;
}
.pomegranate--br-26 {
  border-right: 26px #f24822 solid !important;
}
.pomegranate--bl-26 {
  border-left: 26px #f24822 solid !important;
}
.pomegranate--bb-26 {
  border-bottom: 26px #f24822 solid !important;
}
.pomegranate--by-26 {
  border-top: 26px #f24822 solid !important;
  border-bottom: 26px #f24822 solid !important;
}
.pomegranate--bx-26 {
  border-right: 26px #f24822 solid !important;
  border-left: 26px #f24822 solid !important;
}
.pomegranate--ba-27 {
  border: 27px #f24822 solid !important;
}
.pomegranate--bt-27 {
  border-top: 27px #f24822 solid !important;
}
.pomegranate--br-27 {
  border-right: 27px #f24822 solid !important;
}
.pomegranate--bl-27 {
  border-left: 27px #f24822 solid !important;
}
.pomegranate--bb-27 {
  border-bottom: 27px #f24822 solid !important;
}
.pomegranate--by-27 {
  border-top: 27px #f24822 solid !important;
  border-bottom: 27px #f24822 solid !important;
}
.pomegranate--bx-27 {
  border-right: 27px #f24822 solid !important;
  border-left: 27px #f24822 solid !important;
}
.pomegranate--ba-28 {
  border: 28px #f24822 solid !important;
}
.pomegranate--bt-28 {
  border-top: 28px #f24822 solid !important;
}
.pomegranate--br-28 {
  border-right: 28px #f24822 solid !important;
}
.pomegranate--bl-28 {
  border-left: 28px #f24822 solid !important;
}
.pomegranate--bb-28 {
  border-bottom: 28px #f24822 solid !important;
}
.pomegranate--by-28 {
  border-top: 28px #f24822 solid !important;
  border-bottom: 28px #f24822 solid !important;
}
.pomegranate--bx-28 {
  border-right: 28px #f24822 solid !important;
  border-left: 28px #f24822 solid !important;
}
.pomegranate--ba-29 {
  border: 29px #f24822 solid !important;
}
.pomegranate--bt-29 {
  border-top: 29px #f24822 solid !important;
}
.pomegranate--br-29 {
  border-right: 29px #f24822 solid !important;
}
.pomegranate--bl-29 {
  border-left: 29px #f24822 solid !important;
}
.pomegranate--bb-29 {
  border-bottom: 29px #f24822 solid !important;
}
.pomegranate--by-29 {
  border-top: 29px #f24822 solid !important;
  border-bottom: 29px #f24822 solid !important;
}
.pomegranate--bx-29 {
  border-right: 29px #f24822 solid !important;
  border-left: 29px #f24822 solid !important;
}
.pomegranate--ba-30 {
  border: 30px #f24822 solid !important;
}
.pomegranate--bt-30 {
  border-top: 30px #f24822 solid !important;
}
.pomegranate--br-30 {
  border-right: 30px #f24822 solid !important;
}
.pomegranate--bl-30 {
  border-left: 30px #f24822 solid !important;
}
.pomegranate--bb-30 {
  border-bottom: 30px #f24822 solid !important;
}
.pomegranate--by-30 {
  border-top: 30px #f24822 solid !important;
  border-bottom: 30px #f24822 solid !important;
}
.pomegranate--bx-30 {
  border-right: 30px #f24822 solid !important;
  border-left: 30px #f24822 solid !important;
}
.pomegranate--ba-31 {
  border: 31px #f24822 solid !important;
}
.pomegranate--bt-31 {
  border-top: 31px #f24822 solid !important;
}
.pomegranate--br-31 {
  border-right: 31px #f24822 solid !important;
}
.pomegranate--bl-31 {
  border-left: 31px #f24822 solid !important;
}
.pomegranate--bb-31 {
  border-bottom: 31px #f24822 solid !important;
}
.pomegranate--by-31 {
  border-top: 31px #f24822 solid !important;
  border-bottom: 31px #f24822 solid !important;
}
.pomegranate--bx-31 {
  border-right: 31px #f24822 solid !important;
  border-left: 31px #f24822 solid !important;
}
.pomegranate--ba-32 {
  border: 32px #f24822 solid !important;
}
.pomegranate--bt-32 {
  border-top: 32px #f24822 solid !important;
}
.pomegranate--br-32 {
  border-right: 32px #f24822 solid !important;
}
.pomegranate--bl-32 {
  border-left: 32px #f24822 solid !important;
}
.pomegranate--bb-32 {
  border-bottom: 32px #f24822 solid !important;
}
.pomegranate--by-32 {
  border-top: 32px #f24822 solid !important;
  border-bottom: 32px #f24822 solid !important;
}
.pomegranate--bx-32 {
  border-right: 32px #f24822 solid !important;
  border-left: 32px #f24822 solid !important;
}
.pomegranate--ba-33 {
  border: 33px #f24822 solid !important;
}
.pomegranate--bt-33 {
  border-top: 33px #f24822 solid !important;
}
.pomegranate--br-33 {
  border-right: 33px #f24822 solid !important;
}
.pomegranate--bl-33 {
  border-left: 33px #f24822 solid !important;
}
.pomegranate--bb-33 {
  border-bottom: 33px #f24822 solid !important;
}
.pomegranate--by-33 {
  border-top: 33px #f24822 solid !important;
  border-bottom: 33px #f24822 solid !important;
}
.pomegranate--bx-33 {
  border-right: 33px #f24822 solid !important;
  border-left: 33px #f24822 solid !important;
}
.pomegranate--ba-34 {
  border: 34px #f24822 solid !important;
}
.pomegranate--bt-34 {
  border-top: 34px #f24822 solid !important;
}
.pomegranate--br-34 {
  border-right: 34px #f24822 solid !important;
}
.pomegranate--bl-34 {
  border-left: 34px #f24822 solid !important;
}
.pomegranate--bb-34 {
  border-bottom: 34px #f24822 solid !important;
}
.pomegranate--by-34 {
  border-top: 34px #f24822 solid !important;
  border-bottom: 34px #f24822 solid !important;
}
.pomegranate--bx-34 {
  border-right: 34px #f24822 solid !important;
  border-left: 34px #f24822 solid !important;
}
.pomegranate--ba-35 {
  border: 35px #f24822 solid !important;
}
.pomegranate--bt-35 {
  border-top: 35px #f24822 solid !important;
}
.pomegranate--br-35 {
  border-right: 35px #f24822 solid !important;
}
.pomegranate--bl-35 {
  border-left: 35px #f24822 solid !important;
}
.pomegranate--bb-35 {
  border-bottom: 35px #f24822 solid !important;
}
.pomegranate--by-35 {
  border-top: 35px #f24822 solid !important;
  border-bottom: 35px #f24822 solid !important;
}
.pomegranate--bx-35 {
  border-right: 35px #f24822 solid !important;
  border-left: 35px #f24822 solid !important;
}
.pomegranate--ba-36 {
  border: 36px #f24822 solid !important;
}
.pomegranate--bt-36 {
  border-top: 36px #f24822 solid !important;
}
.pomegranate--br-36 {
  border-right: 36px #f24822 solid !important;
}
.pomegranate--bl-36 {
  border-left: 36px #f24822 solid !important;
}
.pomegranate--bb-36 {
  border-bottom: 36px #f24822 solid !important;
}
.pomegranate--by-36 {
  border-top: 36px #f24822 solid !important;
  border-bottom: 36px #f24822 solid !important;
}
.pomegranate--bx-36 {
  border-right: 36px #f24822 solid !important;
  border-left: 36px #f24822 solid !important;
}
.pomegranate--ba-37 {
  border: 37px #f24822 solid !important;
}
.pomegranate--bt-37 {
  border-top: 37px #f24822 solid !important;
}
.pomegranate--br-37 {
  border-right: 37px #f24822 solid !important;
}
.pomegranate--bl-37 {
  border-left: 37px #f24822 solid !important;
}
.pomegranate--bb-37 {
  border-bottom: 37px #f24822 solid !important;
}
.pomegranate--by-37 {
  border-top: 37px #f24822 solid !important;
  border-bottom: 37px #f24822 solid !important;
}
.pomegranate--bx-37 {
  border-right: 37px #f24822 solid !important;
  border-left: 37px #f24822 solid !important;
}
.pomegranate--ba-38 {
  border: 38px #f24822 solid !important;
}
.pomegranate--bt-38 {
  border-top: 38px #f24822 solid !important;
}
.pomegranate--br-38 {
  border-right: 38px #f24822 solid !important;
}
.pomegranate--bl-38 {
  border-left: 38px #f24822 solid !important;
}
.pomegranate--bb-38 {
  border-bottom: 38px #f24822 solid !important;
}
.pomegranate--by-38 {
  border-top: 38px #f24822 solid !important;
  border-bottom: 38px #f24822 solid !important;
}
.pomegranate--bx-38 {
  border-right: 38px #f24822 solid !important;
  border-left: 38px #f24822 solid !important;
}
.pomegranate--ba-39 {
  border: 39px #f24822 solid !important;
}
.pomegranate--bt-39 {
  border-top: 39px #f24822 solid !important;
}
.pomegranate--br-39 {
  border-right: 39px #f24822 solid !important;
}
.pomegranate--bl-39 {
  border-left: 39px #f24822 solid !important;
}
.pomegranate--bb-39 {
  border-bottom: 39px #f24822 solid !important;
}
.pomegranate--by-39 {
  border-top: 39px #f24822 solid !important;
  border-bottom: 39px #f24822 solid !important;
}
.pomegranate--bx-39 {
  border-right: 39px #f24822 solid !important;
  border-left: 39px #f24822 solid !important;
}
.pomegranate--ba-40 {
  border: 40px #f24822 solid !important;
}
.pomegranate--bt-40 {
  border-top: 40px #f24822 solid !important;
}
.pomegranate--br-40 {
  border-right: 40px #f24822 solid !important;
}
.pomegranate--bl-40 {
  border-left: 40px #f24822 solid !important;
}
.pomegranate--bb-40 {
  border-bottom: 40px #f24822 solid !important;
}
.pomegranate--by-40 {
  border-top: 40px #f24822 solid !important;
  border-bottom: 40px #f24822 solid !important;
}
.pomegranate--bx-40 {
  border-right: 40px #f24822 solid !important;
  border-left: 40px #f24822 solid !important;
}
.pomegranate--ba-41 {
  border: 41px #f24822 solid !important;
}
.pomegranate--bt-41 {
  border-top: 41px #f24822 solid !important;
}
.pomegranate--br-41 {
  border-right: 41px #f24822 solid !important;
}
.pomegranate--bl-41 {
  border-left: 41px #f24822 solid !important;
}
.pomegranate--bb-41 {
  border-bottom: 41px #f24822 solid !important;
}
.pomegranate--by-41 {
  border-top: 41px #f24822 solid !important;
  border-bottom: 41px #f24822 solid !important;
}
.pomegranate--bx-41 {
  border-right: 41px #f24822 solid !important;
  border-left: 41px #f24822 solid !important;
}
.pomegranate--ba-42 {
  border: 42px #f24822 solid !important;
}
.pomegranate--bt-42 {
  border-top: 42px #f24822 solid !important;
}
.pomegranate--br-42 {
  border-right: 42px #f24822 solid !important;
}
.pomegranate--bl-42 {
  border-left: 42px #f24822 solid !important;
}
.pomegranate--bb-42 {
  border-bottom: 42px #f24822 solid !important;
}
.pomegranate--by-42 {
  border-top: 42px #f24822 solid !important;
  border-bottom: 42px #f24822 solid !important;
}
.pomegranate--bx-42 {
  border-right: 42px #f24822 solid !important;
  border-left: 42px #f24822 solid !important;
}
.pomegranate--ba-43 {
  border: 43px #f24822 solid !important;
}
.pomegranate--bt-43 {
  border-top: 43px #f24822 solid !important;
}
.pomegranate--br-43 {
  border-right: 43px #f24822 solid !important;
}
.pomegranate--bl-43 {
  border-left: 43px #f24822 solid !important;
}
.pomegranate--bb-43 {
  border-bottom: 43px #f24822 solid !important;
}
.pomegranate--by-43 {
  border-top: 43px #f24822 solid !important;
  border-bottom: 43px #f24822 solid !important;
}
.pomegranate--bx-43 {
  border-right: 43px #f24822 solid !important;
  border-left: 43px #f24822 solid !important;
}
.pomegranate--ba-44 {
  border: 44px #f24822 solid !important;
}
.pomegranate--bt-44 {
  border-top: 44px #f24822 solid !important;
}
.pomegranate--br-44 {
  border-right: 44px #f24822 solid !important;
}
.pomegranate--bl-44 {
  border-left: 44px #f24822 solid !important;
}
.pomegranate--bb-44 {
  border-bottom: 44px #f24822 solid !important;
}
.pomegranate--by-44 {
  border-top: 44px #f24822 solid !important;
  border-bottom: 44px #f24822 solid !important;
}
.pomegranate--bx-44 {
  border-right: 44px #f24822 solid !important;
  border-left: 44px #f24822 solid !important;
}
.pomegranate--ba-45 {
  border: 45px #f24822 solid !important;
}
.pomegranate--bt-45 {
  border-top: 45px #f24822 solid !important;
}
.pomegranate--br-45 {
  border-right: 45px #f24822 solid !important;
}
.pomegranate--bl-45 {
  border-left: 45px #f24822 solid !important;
}
.pomegranate--bb-45 {
  border-bottom: 45px #f24822 solid !important;
}
.pomegranate--by-45 {
  border-top: 45px #f24822 solid !important;
  border-bottom: 45px #f24822 solid !important;
}
.pomegranate--bx-45 {
  border-right: 45px #f24822 solid !important;
  border-left: 45px #f24822 solid !important;
}
.pomegranate--ba-46 {
  border: 46px #f24822 solid !important;
}
.pomegranate--bt-46 {
  border-top: 46px #f24822 solid !important;
}
.pomegranate--br-46 {
  border-right: 46px #f24822 solid !important;
}
.pomegranate--bl-46 {
  border-left: 46px #f24822 solid !important;
}
.pomegranate--bb-46 {
  border-bottom: 46px #f24822 solid !important;
}
.pomegranate--by-46 {
  border-top: 46px #f24822 solid !important;
  border-bottom: 46px #f24822 solid !important;
}
.pomegranate--bx-46 {
  border-right: 46px #f24822 solid !important;
  border-left: 46px #f24822 solid !important;
}
.pomegranate--ba-47 {
  border: 47px #f24822 solid !important;
}
.pomegranate--bt-47 {
  border-top: 47px #f24822 solid !important;
}
.pomegranate--br-47 {
  border-right: 47px #f24822 solid !important;
}
.pomegranate--bl-47 {
  border-left: 47px #f24822 solid !important;
}
.pomegranate--bb-47 {
  border-bottom: 47px #f24822 solid !important;
}
.pomegranate--by-47 {
  border-top: 47px #f24822 solid !important;
  border-bottom: 47px #f24822 solid !important;
}
.pomegranate--bx-47 {
  border-right: 47px #f24822 solid !important;
  border-left: 47px #f24822 solid !important;
}
.pomegranate--ba-48 {
  border: 48px #f24822 solid !important;
}
.pomegranate--bt-48 {
  border-top: 48px #f24822 solid !important;
}
.pomegranate--br-48 {
  border-right: 48px #f24822 solid !important;
}
.pomegranate--bl-48 {
  border-left: 48px #f24822 solid !important;
}
.pomegranate--bb-48 {
  border-bottom: 48px #f24822 solid !important;
}
.pomegranate--by-48 {
  border-top: 48px #f24822 solid !important;
  border-bottom: 48px #f24822 solid !important;
}
.pomegranate--bx-48 {
  border-right: 48px #f24822 solid !important;
  border-left: 48px #f24822 solid !important;
}
.pomegranate--ba-49 {
  border: 49px #f24822 solid !important;
}
.pomegranate--bt-49 {
  border-top: 49px #f24822 solid !important;
}
.pomegranate--br-49 {
  border-right: 49px #f24822 solid !important;
}
.pomegranate--bl-49 {
  border-left: 49px #f24822 solid !important;
}
.pomegranate--bb-49 {
  border-bottom: 49px #f24822 solid !important;
}
.pomegranate--by-49 {
  border-top: 49px #f24822 solid !important;
  border-bottom: 49px #f24822 solid !important;
}
.pomegranate--bx-49 {
  border-right: 49px #f24822 solid !important;
  border-left: 49px #f24822 solid !important;
}
.pomegranate--ba-50 {
  border: 50px #f24822 solid !important;
}
.pomegranate--bt-50 {
  border-top: 50px #f24822 solid !important;
}
.pomegranate--br-50 {
  border-right: 50px #f24822 solid !important;
}
.pomegranate--bl-50 {
  border-left: 50px #f24822 solid !important;
}
.pomegranate--bb-50 {
  border-bottom: 50px #f24822 solid !important;
}
.pomegranate--by-50 {
  border-top: 50px #f24822 solid !important;
  border-bottom: 50px #f24822 solid !important;
}
.pomegranate--bx-50 {
  border-right: 50px #f24822 solid !important;
  border-left: 50px #f24822 solid !important;
}
.pomegranate--ba-51 {
  border: 51px #f24822 solid !important;
}
.pomegranate--bt-51 {
  border-top: 51px #f24822 solid !important;
}
.pomegranate--br-51 {
  border-right: 51px #f24822 solid !important;
}
.pomegranate--bl-51 {
  border-left: 51px #f24822 solid !important;
}
.pomegranate--bb-51 {
  border-bottom: 51px #f24822 solid !important;
}
.pomegranate--by-51 {
  border-top: 51px #f24822 solid !important;
  border-bottom: 51px #f24822 solid !important;
}
.pomegranate--bx-51 {
  border-right: 51px #f24822 solid !important;
  border-left: 51px #f24822 solid !important;
}
.pomegranate--ba-52 {
  border: 52px #f24822 solid !important;
}
.pomegranate--bt-52 {
  border-top: 52px #f24822 solid !important;
}
.pomegranate--br-52 {
  border-right: 52px #f24822 solid !important;
}
.pomegranate--bl-52 {
  border-left: 52px #f24822 solid !important;
}
.pomegranate--bb-52 {
  border-bottom: 52px #f24822 solid !important;
}
.pomegranate--by-52 {
  border-top: 52px #f24822 solid !important;
  border-bottom: 52px #f24822 solid !important;
}
.pomegranate--bx-52 {
  border-right: 52px #f24822 solid !important;
  border-left: 52px #f24822 solid !important;
}
.pomegranate--ba-53 {
  border: 53px #f24822 solid !important;
}
.pomegranate--bt-53 {
  border-top: 53px #f24822 solid !important;
}
.pomegranate--br-53 {
  border-right: 53px #f24822 solid !important;
}
.pomegranate--bl-53 {
  border-left: 53px #f24822 solid !important;
}
.pomegranate--bb-53 {
  border-bottom: 53px #f24822 solid !important;
}
.pomegranate--by-53 {
  border-top: 53px #f24822 solid !important;
  border-bottom: 53px #f24822 solid !important;
}
.pomegranate--bx-53 {
  border-right: 53px #f24822 solid !important;
  border-left: 53px #f24822 solid !important;
}
.pomegranate--ba-54 {
  border: 54px #f24822 solid !important;
}
.pomegranate--bt-54 {
  border-top: 54px #f24822 solid !important;
}
.pomegranate--br-54 {
  border-right: 54px #f24822 solid !important;
}
.pomegranate--bl-54 {
  border-left: 54px #f24822 solid !important;
}
.pomegranate--bb-54 {
  border-bottom: 54px #f24822 solid !important;
}
.pomegranate--by-54 {
  border-top: 54px #f24822 solid !important;
  border-bottom: 54px #f24822 solid !important;
}
.pomegranate--bx-54 {
  border-right: 54px #f24822 solid !important;
  border-left: 54px #f24822 solid !important;
}
.pomegranate--ba-55 {
  border: 55px #f24822 solid !important;
}
.pomegranate--bt-55 {
  border-top: 55px #f24822 solid !important;
}
.pomegranate--br-55 {
  border-right: 55px #f24822 solid !important;
}
.pomegranate--bl-55 {
  border-left: 55px #f24822 solid !important;
}
.pomegranate--bb-55 {
  border-bottom: 55px #f24822 solid !important;
}
.pomegranate--by-55 {
  border-top: 55px #f24822 solid !important;
  border-bottom: 55px #f24822 solid !important;
}
.pomegranate--bx-55 {
  border-right: 55px #f24822 solid !important;
  border-left: 55px #f24822 solid !important;
}
.pomegranate--ba-56 {
  border: 56px #f24822 solid !important;
}
.pomegranate--bt-56 {
  border-top: 56px #f24822 solid !important;
}
.pomegranate--br-56 {
  border-right: 56px #f24822 solid !important;
}
.pomegranate--bl-56 {
  border-left: 56px #f24822 solid !important;
}
.pomegranate--bb-56 {
  border-bottom: 56px #f24822 solid !important;
}
.pomegranate--by-56 {
  border-top: 56px #f24822 solid !important;
  border-bottom: 56px #f24822 solid !important;
}
.pomegranate--bx-56 {
  border-right: 56px #f24822 solid !important;
  border-left: 56px #f24822 solid !important;
}
.pomegranate--ba-57 {
  border: 57px #f24822 solid !important;
}
.pomegranate--bt-57 {
  border-top: 57px #f24822 solid !important;
}
.pomegranate--br-57 {
  border-right: 57px #f24822 solid !important;
}
.pomegranate--bl-57 {
  border-left: 57px #f24822 solid !important;
}
.pomegranate--bb-57 {
  border-bottom: 57px #f24822 solid !important;
}
.pomegranate--by-57 {
  border-top: 57px #f24822 solid !important;
  border-bottom: 57px #f24822 solid !important;
}
.pomegranate--bx-57 {
  border-right: 57px #f24822 solid !important;
  border-left: 57px #f24822 solid !important;
}
.pomegranate--ba-58 {
  border: 58px #f24822 solid !important;
}
.pomegranate--bt-58 {
  border-top: 58px #f24822 solid !important;
}
.pomegranate--br-58 {
  border-right: 58px #f24822 solid !important;
}
.pomegranate--bl-58 {
  border-left: 58px #f24822 solid !important;
}
.pomegranate--bb-58 {
  border-bottom: 58px #f24822 solid !important;
}
.pomegranate--by-58 {
  border-top: 58px #f24822 solid !important;
  border-bottom: 58px #f24822 solid !important;
}
.pomegranate--bx-58 {
  border-right: 58px #f24822 solid !important;
  border-left: 58px #f24822 solid !important;
}
.pomegranate--ba-59 {
  border: 59px #f24822 solid !important;
}
.pomegranate--bt-59 {
  border-top: 59px #f24822 solid !important;
}
.pomegranate--br-59 {
  border-right: 59px #f24822 solid !important;
}
.pomegranate--bl-59 {
  border-left: 59px #f24822 solid !important;
}
.pomegranate--bb-59 {
  border-bottom: 59px #f24822 solid !important;
}
.pomegranate--by-59 {
  border-top: 59px #f24822 solid !important;
  border-bottom: 59px #f24822 solid !important;
}
.pomegranate--bx-59 {
  border-right: 59px #f24822 solid !important;
  border-left: 59px #f24822 solid !important;
}
.pomegranate--ba-60 {
  border: 60px #f24822 solid !important;
}
.pomegranate--bt-60 {
  border-top: 60px #f24822 solid !important;
}
.pomegranate--br-60 {
  border-right: 60px #f24822 solid !important;
}
.pomegranate--bl-60 {
  border-left: 60px #f24822 solid !important;
}
.pomegranate--bb-60 {
  border-bottom: 60px #f24822 solid !important;
}
.pomegranate--by-60 {
  border-top: 60px #f24822 solid !important;
  border-bottom: 60px #f24822 solid !important;
}
.pomegranate--bx-60 {
  border-right: 60px #f24822 solid !important;
  border-left: 60px #f24822 solid !important;
}
.pomegranate--ba-61 {
  border: 61px #f24822 solid !important;
}
.pomegranate--bt-61 {
  border-top: 61px #f24822 solid !important;
}
.pomegranate--br-61 {
  border-right: 61px #f24822 solid !important;
}
.pomegranate--bl-61 {
  border-left: 61px #f24822 solid !important;
}
.pomegranate--bb-61 {
  border-bottom: 61px #f24822 solid !important;
}
.pomegranate--by-61 {
  border-top: 61px #f24822 solid !important;
  border-bottom: 61px #f24822 solid !important;
}
.pomegranate--bx-61 {
  border-right: 61px #f24822 solid !important;
  border-left: 61px #f24822 solid !important;
}
.pomegranate--ba-62 {
  border: 62px #f24822 solid !important;
}
.pomegranate--bt-62 {
  border-top: 62px #f24822 solid !important;
}
.pomegranate--br-62 {
  border-right: 62px #f24822 solid !important;
}
.pomegranate--bl-62 {
  border-left: 62px #f24822 solid !important;
}
.pomegranate--bb-62 {
  border-bottom: 62px #f24822 solid !important;
}
.pomegranate--by-62 {
  border-top: 62px #f24822 solid !important;
  border-bottom: 62px #f24822 solid !important;
}
.pomegranate--bx-62 {
  border-right: 62px #f24822 solid !important;
  border-left: 62px #f24822 solid !important;
}
.pomegranate--ba-63 {
  border: 63px #f24822 solid !important;
}
.pomegranate--bt-63 {
  border-top: 63px #f24822 solid !important;
}
.pomegranate--br-63 {
  border-right: 63px #f24822 solid !important;
}
.pomegranate--bl-63 {
  border-left: 63px #f24822 solid !important;
}
.pomegranate--bb-63 {
  border-bottom: 63px #f24822 solid !important;
}
.pomegranate--by-63 {
  border-top: 63px #f24822 solid !important;
  border-bottom: 63px #f24822 solid !important;
}
.pomegranate--bx-63 {
  border-right: 63px #f24822 solid !important;
  border-left: 63px #f24822 solid !important;
}
.pomegranate--ba-64 {
  border: 64px #f24822 solid !important;
}
.pomegranate--bt-64 {
  border-top: 64px #f24822 solid !important;
}
.pomegranate--br-64 {
  border-right: 64px #f24822 solid !important;
}
.pomegranate--bl-64 {
  border-left: 64px #f24822 solid !important;
}
.pomegranate--bb-64 {
  border-bottom: 64px #f24822 solid !important;
}
.pomegranate--by-64 {
  border-top: 64px #f24822 solid !important;
  border-bottom: 64px #f24822 solid !important;
}
.pomegranate--bx-64 {
  border-right: 64px #f24822 solid !important;
  border-left: 64px #f24822 solid !important;
}
.pomegranate--ba-65 {
  border: 65px #f24822 solid !important;
}
.pomegranate--bt-65 {
  border-top: 65px #f24822 solid !important;
}
.pomegranate--br-65 {
  border-right: 65px #f24822 solid !important;
}
.pomegranate--bl-65 {
  border-left: 65px #f24822 solid !important;
}
.pomegranate--bb-65 {
  border-bottom: 65px #f24822 solid !important;
}
.pomegranate--by-65 {
  border-top: 65px #f24822 solid !important;
  border-bottom: 65px #f24822 solid !important;
}
.pomegranate--bx-65 {
  border-right: 65px #f24822 solid !important;
  border-left: 65px #f24822 solid !important;
}
.pomegranate--ba-66 {
  border: 66px #f24822 solid !important;
}
.pomegranate--bt-66 {
  border-top: 66px #f24822 solid !important;
}
.pomegranate--br-66 {
  border-right: 66px #f24822 solid !important;
}
.pomegranate--bl-66 {
  border-left: 66px #f24822 solid !important;
}
.pomegranate--bb-66 {
  border-bottom: 66px #f24822 solid !important;
}
.pomegranate--by-66 {
  border-top: 66px #f24822 solid !important;
  border-bottom: 66px #f24822 solid !important;
}
.pomegranate--bx-66 {
  border-right: 66px #f24822 solid !important;
  border-left: 66px #f24822 solid !important;
}
.pomegranate--ba-67 {
  border: 67px #f24822 solid !important;
}
.pomegranate--bt-67 {
  border-top: 67px #f24822 solid !important;
}
.pomegranate--br-67 {
  border-right: 67px #f24822 solid !important;
}
.pomegranate--bl-67 {
  border-left: 67px #f24822 solid !important;
}
.pomegranate--bb-67 {
  border-bottom: 67px #f24822 solid !important;
}
.pomegranate--by-67 {
  border-top: 67px #f24822 solid !important;
  border-bottom: 67px #f24822 solid !important;
}
.pomegranate--bx-67 {
  border-right: 67px #f24822 solid !important;
  border-left: 67px #f24822 solid !important;
}
.pomegranate--ba-68 {
  border: 68px #f24822 solid !important;
}
.pomegranate--bt-68 {
  border-top: 68px #f24822 solid !important;
}
.pomegranate--br-68 {
  border-right: 68px #f24822 solid !important;
}
.pomegranate--bl-68 {
  border-left: 68px #f24822 solid !important;
}
.pomegranate--bb-68 {
  border-bottom: 68px #f24822 solid !important;
}
.pomegranate--by-68 {
  border-top: 68px #f24822 solid !important;
  border-bottom: 68px #f24822 solid !important;
}
.pomegranate--bx-68 {
  border-right: 68px #f24822 solid !important;
  border-left: 68px #f24822 solid !important;
}
.pomegranate--ba-69 {
  border: 69px #f24822 solid !important;
}
.pomegranate--bt-69 {
  border-top: 69px #f24822 solid !important;
}
.pomegranate--br-69 {
  border-right: 69px #f24822 solid !important;
}
.pomegranate--bl-69 {
  border-left: 69px #f24822 solid !important;
}
.pomegranate--bb-69 {
  border-bottom: 69px #f24822 solid !important;
}
.pomegranate--by-69 {
  border-top: 69px #f24822 solid !important;
  border-bottom: 69px #f24822 solid !important;
}
.pomegranate--bx-69 {
  border-right: 69px #f24822 solid !important;
  border-left: 69px #f24822 solid !important;
}
.pomegranate--ba-70 {
  border: 70px #f24822 solid !important;
}
.pomegranate--bt-70 {
  border-top: 70px #f24822 solid !important;
}
.pomegranate--br-70 {
  border-right: 70px #f24822 solid !important;
}
.pomegranate--bl-70 {
  border-left: 70px #f24822 solid !important;
}
.pomegranate--bb-70 {
  border-bottom: 70px #f24822 solid !important;
}
.pomegranate--by-70 {
  border-top: 70px #f24822 solid !important;
  border-bottom: 70px #f24822 solid !important;
}
.pomegranate--bx-70 {
  border-right: 70px #f24822 solid !important;
  border-left: 70px #f24822 solid !important;
}
.pomegranate--ba-71 {
  border: 71px #f24822 solid !important;
}
.pomegranate--bt-71 {
  border-top: 71px #f24822 solid !important;
}
.pomegranate--br-71 {
  border-right: 71px #f24822 solid !important;
}
.pomegranate--bl-71 {
  border-left: 71px #f24822 solid !important;
}
.pomegranate--bb-71 {
  border-bottom: 71px #f24822 solid !important;
}
.pomegranate--by-71 {
  border-top: 71px #f24822 solid !important;
  border-bottom: 71px #f24822 solid !important;
}
.pomegranate--bx-71 {
  border-right: 71px #f24822 solid !important;
  border-left: 71px #f24822 solid !important;
}
.pomegranate--ba-72 {
  border: 72px #f24822 solid !important;
}
.pomegranate--bt-72 {
  border-top: 72px #f24822 solid !important;
}
.pomegranate--br-72 {
  border-right: 72px #f24822 solid !important;
}
.pomegranate--bl-72 {
  border-left: 72px #f24822 solid !important;
}
.pomegranate--bb-72 {
  border-bottom: 72px #f24822 solid !important;
}
.pomegranate--by-72 {
  border-top: 72px #f24822 solid !important;
  border-bottom: 72px #f24822 solid !important;
}
.pomegranate--bx-72 {
  border-right: 72px #f24822 solid !important;
  border-left: 72px #f24822 solid !important;
}
.pomegranate--ba-73 {
  border: 73px #f24822 solid !important;
}
.pomegranate--bt-73 {
  border-top: 73px #f24822 solid !important;
}
.pomegranate--br-73 {
  border-right: 73px #f24822 solid !important;
}
.pomegranate--bl-73 {
  border-left: 73px #f24822 solid !important;
}
.pomegranate--bb-73 {
  border-bottom: 73px #f24822 solid !important;
}
.pomegranate--by-73 {
  border-top: 73px #f24822 solid !important;
  border-bottom: 73px #f24822 solid !important;
}
.pomegranate--bx-73 {
  border-right: 73px #f24822 solid !important;
  border-left: 73px #f24822 solid !important;
}
.pomegranate--ba-74 {
  border: 74px #f24822 solid !important;
}
.pomegranate--bt-74 {
  border-top: 74px #f24822 solid !important;
}
.pomegranate--br-74 {
  border-right: 74px #f24822 solid !important;
}
.pomegranate--bl-74 {
  border-left: 74px #f24822 solid !important;
}
.pomegranate--bb-74 {
  border-bottom: 74px #f24822 solid !important;
}
.pomegranate--by-74 {
  border-top: 74px #f24822 solid !important;
  border-bottom: 74px #f24822 solid !important;
}
.pomegranate--bx-74 {
  border-right: 74px #f24822 solid !important;
  border-left: 74px #f24822 solid !important;
}
.pomegranate--ba-75 {
  border: 75px #f24822 solid !important;
}
.pomegranate--bt-75 {
  border-top: 75px #f24822 solid !important;
}
.pomegranate--br-75 {
  border-right: 75px #f24822 solid !important;
}
.pomegranate--bl-75 {
  border-left: 75px #f24822 solid !important;
}
.pomegranate--bb-75 {
  border-bottom: 75px #f24822 solid !important;
}
.pomegranate--by-75 {
  border-top: 75px #f24822 solid !important;
  border-bottom: 75px #f24822 solid !important;
}
.pomegranate--bx-75 {
  border-right: 75px #f24822 solid !important;
  border-left: 75px #f24822 solid !important;
}
.pomegranate--ba-76 {
  border: 76px #f24822 solid !important;
}
.pomegranate--bt-76 {
  border-top: 76px #f24822 solid !important;
}
.pomegranate--br-76 {
  border-right: 76px #f24822 solid !important;
}
.pomegranate--bl-76 {
  border-left: 76px #f24822 solid !important;
}
.pomegranate--bb-76 {
  border-bottom: 76px #f24822 solid !important;
}
.pomegranate--by-76 {
  border-top: 76px #f24822 solid !important;
  border-bottom: 76px #f24822 solid !important;
}
.pomegranate--bx-76 {
  border-right: 76px #f24822 solid !important;
  border-left: 76px #f24822 solid !important;
}
.pomegranate--ba-77 {
  border: 77px #f24822 solid !important;
}
.pomegranate--bt-77 {
  border-top: 77px #f24822 solid !important;
}
.pomegranate--br-77 {
  border-right: 77px #f24822 solid !important;
}
.pomegranate--bl-77 {
  border-left: 77px #f24822 solid !important;
}
.pomegranate--bb-77 {
  border-bottom: 77px #f24822 solid !important;
}
.pomegranate--by-77 {
  border-top: 77px #f24822 solid !important;
  border-bottom: 77px #f24822 solid !important;
}
.pomegranate--bx-77 {
  border-right: 77px #f24822 solid !important;
  border-left: 77px #f24822 solid !important;
}
.pomegranate--ba-78 {
  border: 78px #f24822 solid !important;
}
.pomegranate--bt-78 {
  border-top: 78px #f24822 solid !important;
}
.pomegranate--br-78 {
  border-right: 78px #f24822 solid !important;
}
.pomegranate--bl-78 {
  border-left: 78px #f24822 solid !important;
}
.pomegranate--bb-78 {
  border-bottom: 78px #f24822 solid !important;
}
.pomegranate--by-78 {
  border-top: 78px #f24822 solid !important;
  border-bottom: 78px #f24822 solid !important;
}
.pomegranate--bx-78 {
  border-right: 78px #f24822 solid !important;
  border-left: 78px #f24822 solid !important;
}
.pomegranate--ba-79 {
  border: 79px #f24822 solid !important;
}
.pomegranate--bt-79 {
  border-top: 79px #f24822 solid !important;
}
.pomegranate--br-79 {
  border-right: 79px #f24822 solid !important;
}
.pomegranate--bl-79 {
  border-left: 79px #f24822 solid !important;
}
.pomegranate--bb-79 {
  border-bottom: 79px #f24822 solid !important;
}
.pomegranate--by-79 {
  border-top: 79px #f24822 solid !important;
  border-bottom: 79px #f24822 solid !important;
}
.pomegranate--bx-79 {
  border-right: 79px #f24822 solid !important;
  border-left: 79px #f24822 solid !important;
}
.pomegranate--ba-80 {
  border: 80px #f24822 solid !important;
}
.pomegranate--bt-80 {
  border-top: 80px #f24822 solid !important;
}
.pomegranate--br-80 {
  border-right: 80px #f24822 solid !important;
}
.pomegranate--bl-80 {
  border-left: 80px #f24822 solid !important;
}
.pomegranate--bb-80 {
  border-bottom: 80px #f24822 solid !important;
}
.pomegranate--by-80 {
  border-top: 80px #f24822 solid !important;
  border-bottom: 80px #f24822 solid !important;
}
.pomegranate--bx-80 {
  border-right: 80px #f24822 solid !important;
  border-left: 80px #f24822 solid !important;
}
.pomegranate--ba-81 {
  border: 81px #f24822 solid !important;
}
.pomegranate--bt-81 {
  border-top: 81px #f24822 solid !important;
}
.pomegranate--br-81 {
  border-right: 81px #f24822 solid !important;
}
.pomegranate--bl-81 {
  border-left: 81px #f24822 solid !important;
}
.pomegranate--bb-81 {
  border-bottom: 81px #f24822 solid !important;
}
.pomegranate--by-81 {
  border-top: 81px #f24822 solid !important;
  border-bottom: 81px #f24822 solid !important;
}
.pomegranate--bx-81 {
  border-right: 81px #f24822 solid !important;
  border-left: 81px #f24822 solid !important;
}
.pomegranate--ba-82 {
  border: 82px #f24822 solid !important;
}
.pomegranate--bt-82 {
  border-top: 82px #f24822 solid !important;
}
.pomegranate--br-82 {
  border-right: 82px #f24822 solid !important;
}
.pomegranate--bl-82 {
  border-left: 82px #f24822 solid !important;
}
.pomegranate--bb-82 {
  border-bottom: 82px #f24822 solid !important;
}
.pomegranate--by-82 {
  border-top: 82px #f24822 solid !important;
  border-bottom: 82px #f24822 solid !important;
}
.pomegranate--bx-82 {
  border-right: 82px #f24822 solid !important;
  border-left: 82px #f24822 solid !important;
}
.pomegranate--ba-83 {
  border: 83px #f24822 solid !important;
}
.pomegranate--bt-83 {
  border-top: 83px #f24822 solid !important;
}
.pomegranate--br-83 {
  border-right: 83px #f24822 solid !important;
}
.pomegranate--bl-83 {
  border-left: 83px #f24822 solid !important;
}
.pomegranate--bb-83 {
  border-bottom: 83px #f24822 solid !important;
}
.pomegranate--by-83 {
  border-top: 83px #f24822 solid !important;
  border-bottom: 83px #f24822 solid !important;
}
.pomegranate--bx-83 {
  border-right: 83px #f24822 solid !important;
  border-left: 83px #f24822 solid !important;
}
.pomegranate--ba-84 {
  border: 84px #f24822 solid !important;
}
.pomegranate--bt-84 {
  border-top: 84px #f24822 solid !important;
}
.pomegranate--br-84 {
  border-right: 84px #f24822 solid !important;
}
.pomegranate--bl-84 {
  border-left: 84px #f24822 solid !important;
}
.pomegranate--bb-84 {
  border-bottom: 84px #f24822 solid !important;
}
.pomegranate--by-84 {
  border-top: 84px #f24822 solid !important;
  border-bottom: 84px #f24822 solid !important;
}
.pomegranate--bx-84 {
  border-right: 84px #f24822 solid !important;
  border-left: 84px #f24822 solid !important;
}
.pomegranate--ba-85 {
  border: 85px #f24822 solid !important;
}
.pomegranate--bt-85 {
  border-top: 85px #f24822 solid !important;
}
.pomegranate--br-85 {
  border-right: 85px #f24822 solid !important;
}
.pomegranate--bl-85 {
  border-left: 85px #f24822 solid !important;
}
.pomegranate--bb-85 {
  border-bottom: 85px #f24822 solid !important;
}
.pomegranate--by-85 {
  border-top: 85px #f24822 solid !important;
  border-bottom: 85px #f24822 solid !important;
}
.pomegranate--bx-85 {
  border-right: 85px #f24822 solid !important;
  border-left: 85px #f24822 solid !important;
}
.pomegranate--ba-86 {
  border: 86px #f24822 solid !important;
}
.pomegranate--bt-86 {
  border-top: 86px #f24822 solid !important;
}
.pomegranate--br-86 {
  border-right: 86px #f24822 solid !important;
}
.pomegranate--bl-86 {
  border-left: 86px #f24822 solid !important;
}
.pomegranate--bb-86 {
  border-bottom: 86px #f24822 solid !important;
}
.pomegranate--by-86 {
  border-top: 86px #f24822 solid !important;
  border-bottom: 86px #f24822 solid !important;
}
.pomegranate--bx-86 {
  border-right: 86px #f24822 solid !important;
  border-left: 86px #f24822 solid !important;
}
.pomegranate--ba-87 {
  border: 87px #f24822 solid !important;
}
.pomegranate--bt-87 {
  border-top: 87px #f24822 solid !important;
}
.pomegranate--br-87 {
  border-right: 87px #f24822 solid !important;
}
.pomegranate--bl-87 {
  border-left: 87px #f24822 solid !important;
}
.pomegranate--bb-87 {
  border-bottom: 87px #f24822 solid !important;
}
.pomegranate--by-87 {
  border-top: 87px #f24822 solid !important;
  border-bottom: 87px #f24822 solid !important;
}
.pomegranate--bx-87 {
  border-right: 87px #f24822 solid !important;
  border-left: 87px #f24822 solid !important;
}
.pomegranate--ba-88 {
  border: 88px #f24822 solid !important;
}
.pomegranate--bt-88 {
  border-top: 88px #f24822 solid !important;
}
.pomegranate--br-88 {
  border-right: 88px #f24822 solid !important;
}
.pomegranate--bl-88 {
  border-left: 88px #f24822 solid !important;
}
.pomegranate--bb-88 {
  border-bottom: 88px #f24822 solid !important;
}
.pomegranate--by-88 {
  border-top: 88px #f24822 solid !important;
  border-bottom: 88px #f24822 solid !important;
}
.pomegranate--bx-88 {
  border-right: 88px #f24822 solid !important;
  border-left: 88px #f24822 solid !important;
}
.pomegranate--ba-89 {
  border: 89px #f24822 solid !important;
}
.pomegranate--bt-89 {
  border-top: 89px #f24822 solid !important;
}
.pomegranate--br-89 {
  border-right: 89px #f24822 solid !important;
}
.pomegranate--bl-89 {
  border-left: 89px #f24822 solid !important;
}
.pomegranate--bb-89 {
  border-bottom: 89px #f24822 solid !important;
}
.pomegranate--by-89 {
  border-top: 89px #f24822 solid !important;
  border-bottom: 89px #f24822 solid !important;
}
.pomegranate--bx-89 {
  border-right: 89px #f24822 solid !important;
  border-left: 89px #f24822 solid !important;
}
.pomegranate--ba-90 {
  border: 90px #f24822 solid !important;
}
.pomegranate--bt-90 {
  border-top: 90px #f24822 solid !important;
}
.pomegranate--br-90 {
  border-right: 90px #f24822 solid !important;
}
.pomegranate--bl-90 {
  border-left: 90px #f24822 solid !important;
}
.pomegranate--bb-90 {
  border-bottom: 90px #f24822 solid !important;
}
.pomegranate--by-90 {
  border-top: 90px #f24822 solid !important;
  border-bottom: 90px #f24822 solid !important;
}
.pomegranate--bx-90 {
  border-right: 90px #f24822 solid !important;
  border-left: 90px #f24822 solid !important;
}
.pomegranate--ba-91 {
  border: 91px #f24822 solid !important;
}
.pomegranate--bt-91 {
  border-top: 91px #f24822 solid !important;
}
.pomegranate--br-91 {
  border-right: 91px #f24822 solid !important;
}
.pomegranate--bl-91 {
  border-left: 91px #f24822 solid !important;
}
.pomegranate--bb-91 {
  border-bottom: 91px #f24822 solid !important;
}
.pomegranate--by-91 {
  border-top: 91px #f24822 solid !important;
  border-bottom: 91px #f24822 solid !important;
}
.pomegranate--bx-91 {
  border-right: 91px #f24822 solid !important;
  border-left: 91px #f24822 solid !important;
}
.pomegranate--ba-92 {
  border: 92px #f24822 solid !important;
}
.pomegranate--bt-92 {
  border-top: 92px #f24822 solid !important;
}
.pomegranate--br-92 {
  border-right: 92px #f24822 solid !important;
}
.pomegranate--bl-92 {
  border-left: 92px #f24822 solid !important;
}
.pomegranate--bb-92 {
  border-bottom: 92px #f24822 solid !important;
}
.pomegranate--by-92 {
  border-top: 92px #f24822 solid !important;
  border-bottom: 92px #f24822 solid !important;
}
.pomegranate--bx-92 {
  border-right: 92px #f24822 solid !important;
  border-left: 92px #f24822 solid !important;
}
.pomegranate--ba-93 {
  border: 93px #f24822 solid !important;
}
.pomegranate--bt-93 {
  border-top: 93px #f24822 solid !important;
}
.pomegranate--br-93 {
  border-right: 93px #f24822 solid !important;
}
.pomegranate--bl-93 {
  border-left: 93px #f24822 solid !important;
}
.pomegranate--bb-93 {
  border-bottom: 93px #f24822 solid !important;
}
.pomegranate--by-93 {
  border-top: 93px #f24822 solid !important;
  border-bottom: 93px #f24822 solid !important;
}
.pomegranate--bx-93 {
  border-right: 93px #f24822 solid !important;
  border-left: 93px #f24822 solid !important;
}
.pomegranate--ba-94 {
  border: 94px #f24822 solid !important;
}
.pomegranate--bt-94 {
  border-top: 94px #f24822 solid !important;
}
.pomegranate--br-94 {
  border-right: 94px #f24822 solid !important;
}
.pomegranate--bl-94 {
  border-left: 94px #f24822 solid !important;
}
.pomegranate--bb-94 {
  border-bottom: 94px #f24822 solid !important;
}
.pomegranate--by-94 {
  border-top: 94px #f24822 solid !important;
  border-bottom: 94px #f24822 solid !important;
}
.pomegranate--bx-94 {
  border-right: 94px #f24822 solid !important;
  border-left: 94px #f24822 solid !important;
}
.pomegranate--ba-95 {
  border: 95px #f24822 solid !important;
}
.pomegranate--bt-95 {
  border-top: 95px #f24822 solid !important;
}
.pomegranate--br-95 {
  border-right: 95px #f24822 solid !important;
}
.pomegranate--bl-95 {
  border-left: 95px #f24822 solid !important;
}
.pomegranate--bb-95 {
  border-bottom: 95px #f24822 solid !important;
}
.pomegranate--by-95 {
  border-top: 95px #f24822 solid !important;
  border-bottom: 95px #f24822 solid !important;
}
.pomegranate--bx-95 {
  border-right: 95px #f24822 solid !important;
  border-left: 95px #f24822 solid !important;
}
.pomegranate--ba-96 {
  border: 96px #f24822 solid !important;
}
.pomegranate--bt-96 {
  border-top: 96px #f24822 solid !important;
}
.pomegranate--br-96 {
  border-right: 96px #f24822 solid !important;
}
.pomegranate--bl-96 {
  border-left: 96px #f24822 solid !important;
}
.pomegranate--bb-96 {
  border-bottom: 96px #f24822 solid !important;
}
.pomegranate--by-96 {
  border-top: 96px #f24822 solid !important;
  border-bottom: 96px #f24822 solid !important;
}
.pomegranate--bx-96 {
  border-right: 96px #f24822 solid !important;
  border-left: 96px #f24822 solid !important;
}
.pomegranate--ba-97 {
  border: 97px #f24822 solid !important;
}
.pomegranate--bt-97 {
  border-top: 97px #f24822 solid !important;
}
.pomegranate--br-97 {
  border-right: 97px #f24822 solid !important;
}
.pomegranate--bl-97 {
  border-left: 97px #f24822 solid !important;
}
.pomegranate--bb-97 {
  border-bottom: 97px #f24822 solid !important;
}
.pomegranate--by-97 {
  border-top: 97px #f24822 solid !important;
  border-bottom: 97px #f24822 solid !important;
}
.pomegranate--bx-97 {
  border-right: 97px #f24822 solid !important;
  border-left: 97px #f24822 solid !important;
}
.pomegranate--ba-98 {
  border: 98px #f24822 solid !important;
}
.pomegranate--bt-98 {
  border-top: 98px #f24822 solid !important;
}
.pomegranate--br-98 {
  border-right: 98px #f24822 solid !important;
}
.pomegranate--bl-98 {
  border-left: 98px #f24822 solid !important;
}
.pomegranate--bb-98 {
  border-bottom: 98px #f24822 solid !important;
}
.pomegranate--by-98 {
  border-top: 98px #f24822 solid !important;
  border-bottom: 98px #f24822 solid !important;
}
.pomegranate--bx-98 {
  border-right: 98px #f24822 solid !important;
  border-left: 98px #f24822 solid !important;
}
.pomegranate--ba-99 {
  border: 99px #f24822 solid !important;
}
.pomegranate--bt-99 {
  border-top: 99px #f24822 solid !important;
}
.pomegranate--br-99 {
  border-right: 99px #f24822 solid !important;
}
.pomegranate--bl-99 {
  border-left: 99px #f24822 solid !important;
}
.pomegranate--bb-99 {
  border-bottom: 99px #f24822 solid !important;
}
.pomegranate--by-99 {
  border-top: 99px #f24822 solid !important;
  border-bottom: 99px #f24822 solid !important;
}
.pomegranate--bx-99 {
  border-right: 99px #f24822 solid !important;
  border-left: 99px #f24822 solid !important;
}
.pomegranate--ba-100 {
  border: 100px #f24822 solid !important;
}
.pomegranate--bt-100 {
  border-top: 100px #f24822 solid !important;
}
.pomegranate--br-100 {
  border-right: 100px #f24822 solid !important;
}
.pomegranate--bl-100 {
  border-left: 100px #f24822 solid !important;
}
.pomegranate--bb-100 {
  border-bottom: 100px #f24822 solid !important;
}
.pomegranate--by-100 {
  border-top: 100px #f24822 solid !important;
  border-bottom: 100px #f24822 solid !important;
}
.pomegranate--bx-100 {
  border-right: 100px #f24822 solid !important;
  border-left: 100px #f24822 solid !important;
}
.yellow--ba-1 {
  border: 1px #ff0 solid !important;
}
.yellow--bt-1 {
  border-top: 1px #ff0 solid !important;
}
.yellow--br-1 {
  border-right: 1px #ff0 solid !important;
}
.yellow--bl-1 {
  border-left: 1px #ff0 solid !important;
}
.yellow--bb-1 {
  border-bottom: 1px #ff0 solid !important;
}
.yellow--by-1 {
  border-top: 1px #ff0 solid !important;
  border-bottom: 1px #ff0 solid !important;
}
.yellow--bx-1 {
  border-right: 1px #ff0 solid !important;
  border-left: 1px #ff0 solid !important;
}
.yellow--ba-2 {
  border: 2px #ff0 solid !important;
}
.yellow--bt-2 {
  border-top: 2px #ff0 solid !important;
}
.yellow--br-2 {
  border-right: 2px #ff0 solid !important;
}
.yellow--bl-2 {
  border-left: 2px #ff0 solid !important;
}
.yellow--bb-2 {
  border-bottom: 2px #ff0 solid !important;
}
.yellow--by-2 {
  border-top: 2px #ff0 solid !important;
  border-bottom: 2px #ff0 solid !important;
}
.yellow--bx-2 {
  border-right: 2px #ff0 solid !important;
  border-left: 2px #ff0 solid !important;
}
.yellow--ba-3 {
  border: 3px #ff0 solid !important;
}
.yellow--bt-3 {
  border-top: 3px #ff0 solid !important;
}
.yellow--br-3 {
  border-right: 3px #ff0 solid !important;
}
.yellow--bl-3 {
  border-left: 3px #ff0 solid !important;
}
.yellow--bb-3 {
  border-bottom: 3px #ff0 solid !important;
}
.yellow--by-3 {
  border-top: 3px #ff0 solid !important;
  border-bottom: 3px #ff0 solid !important;
}
.yellow--bx-3 {
  border-right: 3px #ff0 solid !important;
  border-left: 3px #ff0 solid !important;
}
.yellow--ba-4 {
  border: 4px #ff0 solid !important;
}
.yellow--bt-4 {
  border-top: 4px #ff0 solid !important;
}
.yellow--br-4 {
  border-right: 4px #ff0 solid !important;
}
.yellow--bl-4 {
  border-left: 4px #ff0 solid !important;
}
.yellow--bb-4 {
  border-bottom: 4px #ff0 solid !important;
}
.yellow--by-4 {
  border-top: 4px #ff0 solid !important;
  border-bottom: 4px #ff0 solid !important;
}
.yellow--bx-4 {
  border-right: 4px #ff0 solid !important;
  border-left: 4px #ff0 solid !important;
}
.yellow--ba-5 {
  border: 5px #ff0 solid !important;
}
.yellow--bt-5 {
  border-top: 5px #ff0 solid !important;
}
.yellow--br-5 {
  border-right: 5px #ff0 solid !important;
}
.yellow--bl-5 {
  border-left: 5px #ff0 solid !important;
}
.yellow--bb-5 {
  border-bottom: 5px #ff0 solid !important;
}
.yellow--by-5 {
  border-top: 5px #ff0 solid !important;
  border-bottom: 5px #ff0 solid !important;
}
.yellow--bx-5 {
  border-right: 5px #ff0 solid !important;
  border-left: 5px #ff0 solid !important;
}
.yellow--ba-6 {
  border: 6px #ff0 solid !important;
}
.yellow--bt-6 {
  border-top: 6px #ff0 solid !important;
}
.yellow--br-6 {
  border-right: 6px #ff0 solid !important;
}
.yellow--bl-6 {
  border-left: 6px #ff0 solid !important;
}
.yellow--bb-6 {
  border-bottom: 6px #ff0 solid !important;
}
.yellow--by-6 {
  border-top: 6px #ff0 solid !important;
  border-bottom: 6px #ff0 solid !important;
}
.yellow--bx-6 {
  border-right: 6px #ff0 solid !important;
  border-left: 6px #ff0 solid !important;
}
.yellow--ba-7 {
  border: 7px #ff0 solid !important;
}
.yellow--bt-7 {
  border-top: 7px #ff0 solid !important;
}
.yellow--br-7 {
  border-right: 7px #ff0 solid !important;
}
.yellow--bl-7 {
  border-left: 7px #ff0 solid !important;
}
.yellow--bb-7 {
  border-bottom: 7px #ff0 solid !important;
}
.yellow--by-7 {
  border-top: 7px #ff0 solid !important;
  border-bottom: 7px #ff0 solid !important;
}
.yellow--bx-7 {
  border-right: 7px #ff0 solid !important;
  border-left: 7px #ff0 solid !important;
}
.yellow--ba-8 {
  border: 8px #ff0 solid !important;
}
.yellow--bt-8 {
  border-top: 8px #ff0 solid !important;
}
.yellow--br-8 {
  border-right: 8px #ff0 solid !important;
}
.yellow--bl-8 {
  border-left: 8px #ff0 solid !important;
}
.yellow--bb-8 {
  border-bottom: 8px #ff0 solid !important;
}
.yellow--by-8 {
  border-top: 8px #ff0 solid !important;
  border-bottom: 8px #ff0 solid !important;
}
.yellow--bx-8 {
  border-right: 8px #ff0 solid !important;
  border-left: 8px #ff0 solid !important;
}
.yellow--ba-9 {
  border: 9px #ff0 solid !important;
}
.yellow--bt-9 {
  border-top: 9px #ff0 solid !important;
}
.yellow--br-9 {
  border-right: 9px #ff0 solid !important;
}
.yellow--bl-9 {
  border-left: 9px #ff0 solid !important;
}
.yellow--bb-9 {
  border-bottom: 9px #ff0 solid !important;
}
.yellow--by-9 {
  border-top: 9px #ff0 solid !important;
  border-bottom: 9px #ff0 solid !important;
}
.yellow--bx-9 {
  border-right: 9px #ff0 solid !important;
  border-left: 9px #ff0 solid !important;
}
.yellow--ba-10 {
  border: 10px #ff0 solid !important;
}
.yellow--bt-10 {
  border-top: 10px #ff0 solid !important;
}
.yellow--br-10 {
  border-right: 10px #ff0 solid !important;
}
.yellow--bl-10 {
  border-left: 10px #ff0 solid !important;
}
.yellow--bb-10 {
  border-bottom: 10px #ff0 solid !important;
}
.yellow--by-10 {
  border-top: 10px #ff0 solid !important;
  border-bottom: 10px #ff0 solid !important;
}
.yellow--bx-10 {
  border-right: 10px #ff0 solid !important;
  border-left: 10px #ff0 solid !important;
}
.yellow--ba-11 {
  border: 11px #ff0 solid !important;
}
.yellow--bt-11 {
  border-top: 11px #ff0 solid !important;
}
.yellow--br-11 {
  border-right: 11px #ff0 solid !important;
}
.yellow--bl-11 {
  border-left: 11px #ff0 solid !important;
}
.yellow--bb-11 {
  border-bottom: 11px #ff0 solid !important;
}
.yellow--by-11 {
  border-top: 11px #ff0 solid !important;
  border-bottom: 11px #ff0 solid !important;
}
.yellow--bx-11 {
  border-right: 11px #ff0 solid !important;
  border-left: 11px #ff0 solid !important;
}
.yellow--ba-12 {
  border: 12px #ff0 solid !important;
}
.yellow--bt-12 {
  border-top: 12px #ff0 solid !important;
}
.yellow--br-12 {
  border-right: 12px #ff0 solid !important;
}
.yellow--bl-12 {
  border-left: 12px #ff0 solid !important;
}
.yellow--bb-12 {
  border-bottom: 12px #ff0 solid !important;
}
.yellow--by-12 {
  border-top: 12px #ff0 solid !important;
  border-bottom: 12px #ff0 solid !important;
}
.yellow--bx-12 {
  border-right: 12px #ff0 solid !important;
  border-left: 12px #ff0 solid !important;
}
.yellow--ba-13 {
  border: 13px #ff0 solid !important;
}
.yellow--bt-13 {
  border-top: 13px #ff0 solid !important;
}
.yellow--br-13 {
  border-right: 13px #ff0 solid !important;
}
.yellow--bl-13 {
  border-left: 13px #ff0 solid !important;
}
.yellow--bb-13 {
  border-bottom: 13px #ff0 solid !important;
}
.yellow--by-13 {
  border-top: 13px #ff0 solid !important;
  border-bottom: 13px #ff0 solid !important;
}
.yellow--bx-13 {
  border-right: 13px #ff0 solid !important;
  border-left: 13px #ff0 solid !important;
}
.yellow--ba-14 {
  border: 14px #ff0 solid !important;
}
.yellow--bt-14 {
  border-top: 14px #ff0 solid !important;
}
.yellow--br-14 {
  border-right: 14px #ff0 solid !important;
}
.yellow--bl-14 {
  border-left: 14px #ff0 solid !important;
}
.yellow--bb-14 {
  border-bottom: 14px #ff0 solid !important;
}
.yellow--by-14 {
  border-top: 14px #ff0 solid !important;
  border-bottom: 14px #ff0 solid !important;
}
.yellow--bx-14 {
  border-right: 14px #ff0 solid !important;
  border-left: 14px #ff0 solid !important;
}
.yellow--ba-15 {
  border: 15px #ff0 solid !important;
}
.yellow--bt-15 {
  border-top: 15px #ff0 solid !important;
}
.yellow--br-15 {
  border-right: 15px #ff0 solid !important;
}
.yellow--bl-15 {
  border-left: 15px #ff0 solid !important;
}
.yellow--bb-15 {
  border-bottom: 15px #ff0 solid !important;
}
.yellow--by-15 {
  border-top: 15px #ff0 solid !important;
  border-bottom: 15px #ff0 solid !important;
}
.yellow--bx-15 {
  border-right: 15px #ff0 solid !important;
  border-left: 15px #ff0 solid !important;
}
.yellow--ba-16 {
  border: 16px #ff0 solid !important;
}
.yellow--bt-16 {
  border-top: 16px #ff0 solid !important;
}
.yellow--br-16 {
  border-right: 16px #ff0 solid !important;
}
.yellow--bl-16 {
  border-left: 16px #ff0 solid !important;
}
.yellow--bb-16 {
  border-bottom: 16px #ff0 solid !important;
}
.yellow--by-16 {
  border-top: 16px #ff0 solid !important;
  border-bottom: 16px #ff0 solid !important;
}
.yellow--bx-16 {
  border-right: 16px #ff0 solid !important;
  border-left: 16px #ff0 solid !important;
}
.yellow--ba-17 {
  border: 17px #ff0 solid !important;
}
.yellow--bt-17 {
  border-top: 17px #ff0 solid !important;
}
.yellow--br-17 {
  border-right: 17px #ff0 solid !important;
}
.yellow--bl-17 {
  border-left: 17px #ff0 solid !important;
}
.yellow--bb-17 {
  border-bottom: 17px #ff0 solid !important;
}
.yellow--by-17 {
  border-top: 17px #ff0 solid !important;
  border-bottom: 17px #ff0 solid !important;
}
.yellow--bx-17 {
  border-right: 17px #ff0 solid !important;
  border-left: 17px #ff0 solid !important;
}
.yellow--ba-18 {
  border: 18px #ff0 solid !important;
}
.yellow--bt-18 {
  border-top: 18px #ff0 solid !important;
}
.yellow--br-18 {
  border-right: 18px #ff0 solid !important;
}
.yellow--bl-18 {
  border-left: 18px #ff0 solid !important;
}
.yellow--bb-18 {
  border-bottom: 18px #ff0 solid !important;
}
.yellow--by-18 {
  border-top: 18px #ff0 solid !important;
  border-bottom: 18px #ff0 solid !important;
}
.yellow--bx-18 {
  border-right: 18px #ff0 solid !important;
  border-left: 18px #ff0 solid !important;
}
.yellow--ba-19 {
  border: 19px #ff0 solid !important;
}
.yellow--bt-19 {
  border-top: 19px #ff0 solid !important;
}
.yellow--br-19 {
  border-right: 19px #ff0 solid !important;
}
.yellow--bl-19 {
  border-left: 19px #ff0 solid !important;
}
.yellow--bb-19 {
  border-bottom: 19px #ff0 solid !important;
}
.yellow--by-19 {
  border-top: 19px #ff0 solid !important;
  border-bottom: 19px #ff0 solid !important;
}
.yellow--bx-19 {
  border-right: 19px #ff0 solid !important;
  border-left: 19px #ff0 solid !important;
}
.yellow--ba-20 {
  border: 20px #ff0 solid !important;
}
.yellow--bt-20 {
  border-top: 20px #ff0 solid !important;
}
.yellow--br-20 {
  border-right: 20px #ff0 solid !important;
}
.yellow--bl-20 {
  border-left: 20px #ff0 solid !important;
}
.yellow--bb-20 {
  border-bottom: 20px #ff0 solid !important;
}
.yellow--by-20 {
  border-top: 20px #ff0 solid !important;
  border-bottom: 20px #ff0 solid !important;
}
.yellow--bx-20 {
  border-right: 20px #ff0 solid !important;
  border-left: 20px #ff0 solid !important;
}
.yellow--ba-21 {
  border: 21px #ff0 solid !important;
}
.yellow--bt-21 {
  border-top: 21px #ff0 solid !important;
}
.yellow--br-21 {
  border-right: 21px #ff0 solid !important;
}
.yellow--bl-21 {
  border-left: 21px #ff0 solid !important;
}
.yellow--bb-21 {
  border-bottom: 21px #ff0 solid !important;
}
.yellow--by-21 {
  border-top: 21px #ff0 solid !important;
  border-bottom: 21px #ff0 solid !important;
}
.yellow--bx-21 {
  border-right: 21px #ff0 solid !important;
  border-left: 21px #ff0 solid !important;
}
.yellow--ba-22 {
  border: 22px #ff0 solid !important;
}
.yellow--bt-22 {
  border-top: 22px #ff0 solid !important;
}
.yellow--br-22 {
  border-right: 22px #ff0 solid !important;
}
.yellow--bl-22 {
  border-left: 22px #ff0 solid !important;
}
.yellow--bb-22 {
  border-bottom: 22px #ff0 solid !important;
}
.yellow--by-22 {
  border-top: 22px #ff0 solid !important;
  border-bottom: 22px #ff0 solid !important;
}
.yellow--bx-22 {
  border-right: 22px #ff0 solid !important;
  border-left: 22px #ff0 solid !important;
}
.yellow--ba-23 {
  border: 23px #ff0 solid !important;
}
.yellow--bt-23 {
  border-top: 23px #ff0 solid !important;
}
.yellow--br-23 {
  border-right: 23px #ff0 solid !important;
}
.yellow--bl-23 {
  border-left: 23px #ff0 solid !important;
}
.yellow--bb-23 {
  border-bottom: 23px #ff0 solid !important;
}
.yellow--by-23 {
  border-top: 23px #ff0 solid !important;
  border-bottom: 23px #ff0 solid !important;
}
.yellow--bx-23 {
  border-right: 23px #ff0 solid !important;
  border-left: 23px #ff0 solid !important;
}
.yellow--ba-24 {
  border: 24px #ff0 solid !important;
}
.yellow--bt-24 {
  border-top: 24px #ff0 solid !important;
}
.yellow--br-24 {
  border-right: 24px #ff0 solid !important;
}
.yellow--bl-24 {
  border-left: 24px #ff0 solid !important;
}
.yellow--bb-24 {
  border-bottom: 24px #ff0 solid !important;
}
.yellow--by-24 {
  border-top: 24px #ff0 solid !important;
  border-bottom: 24px #ff0 solid !important;
}
.yellow--bx-24 {
  border-right: 24px #ff0 solid !important;
  border-left: 24px #ff0 solid !important;
}
.yellow--ba-25 {
  border: 25px #ff0 solid !important;
}
.yellow--bt-25 {
  border-top: 25px #ff0 solid !important;
}
.yellow--br-25 {
  border-right: 25px #ff0 solid !important;
}
.yellow--bl-25 {
  border-left: 25px #ff0 solid !important;
}
.yellow--bb-25 {
  border-bottom: 25px #ff0 solid !important;
}
.yellow--by-25 {
  border-top: 25px #ff0 solid !important;
  border-bottom: 25px #ff0 solid !important;
}
.yellow--bx-25 {
  border-right: 25px #ff0 solid !important;
  border-left: 25px #ff0 solid !important;
}
.yellow--ba-26 {
  border: 26px #ff0 solid !important;
}
.yellow--bt-26 {
  border-top: 26px #ff0 solid !important;
}
.yellow--br-26 {
  border-right: 26px #ff0 solid !important;
}
.yellow--bl-26 {
  border-left: 26px #ff0 solid !important;
}
.yellow--bb-26 {
  border-bottom: 26px #ff0 solid !important;
}
.yellow--by-26 {
  border-top: 26px #ff0 solid !important;
  border-bottom: 26px #ff0 solid !important;
}
.yellow--bx-26 {
  border-right: 26px #ff0 solid !important;
  border-left: 26px #ff0 solid !important;
}
.yellow--ba-27 {
  border: 27px #ff0 solid !important;
}
.yellow--bt-27 {
  border-top: 27px #ff0 solid !important;
}
.yellow--br-27 {
  border-right: 27px #ff0 solid !important;
}
.yellow--bl-27 {
  border-left: 27px #ff0 solid !important;
}
.yellow--bb-27 {
  border-bottom: 27px #ff0 solid !important;
}
.yellow--by-27 {
  border-top: 27px #ff0 solid !important;
  border-bottom: 27px #ff0 solid !important;
}
.yellow--bx-27 {
  border-right: 27px #ff0 solid !important;
  border-left: 27px #ff0 solid !important;
}
.yellow--ba-28 {
  border: 28px #ff0 solid !important;
}
.yellow--bt-28 {
  border-top: 28px #ff0 solid !important;
}
.yellow--br-28 {
  border-right: 28px #ff0 solid !important;
}
.yellow--bl-28 {
  border-left: 28px #ff0 solid !important;
}
.yellow--bb-28 {
  border-bottom: 28px #ff0 solid !important;
}
.yellow--by-28 {
  border-top: 28px #ff0 solid !important;
  border-bottom: 28px #ff0 solid !important;
}
.yellow--bx-28 {
  border-right: 28px #ff0 solid !important;
  border-left: 28px #ff0 solid !important;
}
.yellow--ba-29 {
  border: 29px #ff0 solid !important;
}
.yellow--bt-29 {
  border-top: 29px #ff0 solid !important;
}
.yellow--br-29 {
  border-right: 29px #ff0 solid !important;
}
.yellow--bl-29 {
  border-left: 29px #ff0 solid !important;
}
.yellow--bb-29 {
  border-bottom: 29px #ff0 solid !important;
}
.yellow--by-29 {
  border-top: 29px #ff0 solid !important;
  border-bottom: 29px #ff0 solid !important;
}
.yellow--bx-29 {
  border-right: 29px #ff0 solid !important;
  border-left: 29px #ff0 solid !important;
}
.yellow--ba-30 {
  border: 30px #ff0 solid !important;
}
.yellow--bt-30 {
  border-top: 30px #ff0 solid !important;
}
.yellow--br-30 {
  border-right: 30px #ff0 solid !important;
}
.yellow--bl-30 {
  border-left: 30px #ff0 solid !important;
}
.yellow--bb-30 {
  border-bottom: 30px #ff0 solid !important;
}
.yellow--by-30 {
  border-top: 30px #ff0 solid !important;
  border-bottom: 30px #ff0 solid !important;
}
.yellow--bx-30 {
  border-right: 30px #ff0 solid !important;
  border-left: 30px #ff0 solid !important;
}
.yellow--ba-31 {
  border: 31px #ff0 solid !important;
}
.yellow--bt-31 {
  border-top: 31px #ff0 solid !important;
}
.yellow--br-31 {
  border-right: 31px #ff0 solid !important;
}
.yellow--bl-31 {
  border-left: 31px #ff0 solid !important;
}
.yellow--bb-31 {
  border-bottom: 31px #ff0 solid !important;
}
.yellow--by-31 {
  border-top: 31px #ff0 solid !important;
  border-bottom: 31px #ff0 solid !important;
}
.yellow--bx-31 {
  border-right: 31px #ff0 solid !important;
  border-left: 31px #ff0 solid !important;
}
.yellow--ba-32 {
  border: 32px #ff0 solid !important;
}
.yellow--bt-32 {
  border-top: 32px #ff0 solid !important;
}
.yellow--br-32 {
  border-right: 32px #ff0 solid !important;
}
.yellow--bl-32 {
  border-left: 32px #ff0 solid !important;
}
.yellow--bb-32 {
  border-bottom: 32px #ff0 solid !important;
}
.yellow--by-32 {
  border-top: 32px #ff0 solid !important;
  border-bottom: 32px #ff0 solid !important;
}
.yellow--bx-32 {
  border-right: 32px #ff0 solid !important;
  border-left: 32px #ff0 solid !important;
}
.yellow--ba-33 {
  border: 33px #ff0 solid !important;
}
.yellow--bt-33 {
  border-top: 33px #ff0 solid !important;
}
.yellow--br-33 {
  border-right: 33px #ff0 solid !important;
}
.yellow--bl-33 {
  border-left: 33px #ff0 solid !important;
}
.yellow--bb-33 {
  border-bottom: 33px #ff0 solid !important;
}
.yellow--by-33 {
  border-top: 33px #ff0 solid !important;
  border-bottom: 33px #ff0 solid !important;
}
.yellow--bx-33 {
  border-right: 33px #ff0 solid !important;
  border-left: 33px #ff0 solid !important;
}
.yellow--ba-34 {
  border: 34px #ff0 solid !important;
}
.yellow--bt-34 {
  border-top: 34px #ff0 solid !important;
}
.yellow--br-34 {
  border-right: 34px #ff0 solid !important;
}
.yellow--bl-34 {
  border-left: 34px #ff0 solid !important;
}
.yellow--bb-34 {
  border-bottom: 34px #ff0 solid !important;
}
.yellow--by-34 {
  border-top: 34px #ff0 solid !important;
  border-bottom: 34px #ff0 solid !important;
}
.yellow--bx-34 {
  border-right: 34px #ff0 solid !important;
  border-left: 34px #ff0 solid !important;
}
.yellow--ba-35 {
  border: 35px #ff0 solid !important;
}
.yellow--bt-35 {
  border-top: 35px #ff0 solid !important;
}
.yellow--br-35 {
  border-right: 35px #ff0 solid !important;
}
.yellow--bl-35 {
  border-left: 35px #ff0 solid !important;
}
.yellow--bb-35 {
  border-bottom: 35px #ff0 solid !important;
}
.yellow--by-35 {
  border-top: 35px #ff0 solid !important;
  border-bottom: 35px #ff0 solid !important;
}
.yellow--bx-35 {
  border-right: 35px #ff0 solid !important;
  border-left: 35px #ff0 solid !important;
}
.yellow--ba-36 {
  border: 36px #ff0 solid !important;
}
.yellow--bt-36 {
  border-top: 36px #ff0 solid !important;
}
.yellow--br-36 {
  border-right: 36px #ff0 solid !important;
}
.yellow--bl-36 {
  border-left: 36px #ff0 solid !important;
}
.yellow--bb-36 {
  border-bottom: 36px #ff0 solid !important;
}
.yellow--by-36 {
  border-top: 36px #ff0 solid !important;
  border-bottom: 36px #ff0 solid !important;
}
.yellow--bx-36 {
  border-right: 36px #ff0 solid !important;
  border-left: 36px #ff0 solid !important;
}
.yellow--ba-37 {
  border: 37px #ff0 solid !important;
}
.yellow--bt-37 {
  border-top: 37px #ff0 solid !important;
}
.yellow--br-37 {
  border-right: 37px #ff0 solid !important;
}
.yellow--bl-37 {
  border-left: 37px #ff0 solid !important;
}
.yellow--bb-37 {
  border-bottom: 37px #ff0 solid !important;
}
.yellow--by-37 {
  border-top: 37px #ff0 solid !important;
  border-bottom: 37px #ff0 solid !important;
}
.yellow--bx-37 {
  border-right: 37px #ff0 solid !important;
  border-left: 37px #ff0 solid !important;
}
.yellow--ba-38 {
  border: 38px #ff0 solid !important;
}
.yellow--bt-38 {
  border-top: 38px #ff0 solid !important;
}
.yellow--br-38 {
  border-right: 38px #ff0 solid !important;
}
.yellow--bl-38 {
  border-left: 38px #ff0 solid !important;
}
.yellow--bb-38 {
  border-bottom: 38px #ff0 solid !important;
}
.yellow--by-38 {
  border-top: 38px #ff0 solid !important;
  border-bottom: 38px #ff0 solid !important;
}
.yellow--bx-38 {
  border-right: 38px #ff0 solid !important;
  border-left: 38px #ff0 solid !important;
}
.yellow--ba-39 {
  border: 39px #ff0 solid !important;
}
.yellow--bt-39 {
  border-top: 39px #ff0 solid !important;
}
.yellow--br-39 {
  border-right: 39px #ff0 solid !important;
}
.yellow--bl-39 {
  border-left: 39px #ff0 solid !important;
}
.yellow--bb-39 {
  border-bottom: 39px #ff0 solid !important;
}
.yellow--by-39 {
  border-top: 39px #ff0 solid !important;
  border-bottom: 39px #ff0 solid !important;
}
.yellow--bx-39 {
  border-right: 39px #ff0 solid !important;
  border-left: 39px #ff0 solid !important;
}
.yellow--ba-40 {
  border: 40px #ff0 solid !important;
}
.yellow--bt-40 {
  border-top: 40px #ff0 solid !important;
}
.yellow--br-40 {
  border-right: 40px #ff0 solid !important;
}
.yellow--bl-40 {
  border-left: 40px #ff0 solid !important;
}
.yellow--bb-40 {
  border-bottom: 40px #ff0 solid !important;
}
.yellow--by-40 {
  border-top: 40px #ff0 solid !important;
  border-bottom: 40px #ff0 solid !important;
}
.yellow--bx-40 {
  border-right: 40px #ff0 solid !important;
  border-left: 40px #ff0 solid !important;
}
.yellow--ba-41 {
  border: 41px #ff0 solid !important;
}
.yellow--bt-41 {
  border-top: 41px #ff0 solid !important;
}
.yellow--br-41 {
  border-right: 41px #ff0 solid !important;
}
.yellow--bl-41 {
  border-left: 41px #ff0 solid !important;
}
.yellow--bb-41 {
  border-bottom: 41px #ff0 solid !important;
}
.yellow--by-41 {
  border-top: 41px #ff0 solid !important;
  border-bottom: 41px #ff0 solid !important;
}
.yellow--bx-41 {
  border-right: 41px #ff0 solid !important;
  border-left: 41px #ff0 solid !important;
}
.yellow--ba-42 {
  border: 42px #ff0 solid !important;
}
.yellow--bt-42 {
  border-top: 42px #ff0 solid !important;
}
.yellow--br-42 {
  border-right: 42px #ff0 solid !important;
}
.yellow--bl-42 {
  border-left: 42px #ff0 solid !important;
}
.yellow--bb-42 {
  border-bottom: 42px #ff0 solid !important;
}
.yellow--by-42 {
  border-top: 42px #ff0 solid !important;
  border-bottom: 42px #ff0 solid !important;
}
.yellow--bx-42 {
  border-right: 42px #ff0 solid !important;
  border-left: 42px #ff0 solid !important;
}
.yellow--ba-43 {
  border: 43px #ff0 solid !important;
}
.yellow--bt-43 {
  border-top: 43px #ff0 solid !important;
}
.yellow--br-43 {
  border-right: 43px #ff0 solid !important;
}
.yellow--bl-43 {
  border-left: 43px #ff0 solid !important;
}
.yellow--bb-43 {
  border-bottom: 43px #ff0 solid !important;
}
.yellow--by-43 {
  border-top: 43px #ff0 solid !important;
  border-bottom: 43px #ff0 solid !important;
}
.yellow--bx-43 {
  border-right: 43px #ff0 solid !important;
  border-left: 43px #ff0 solid !important;
}
.yellow--ba-44 {
  border: 44px #ff0 solid !important;
}
.yellow--bt-44 {
  border-top: 44px #ff0 solid !important;
}
.yellow--br-44 {
  border-right: 44px #ff0 solid !important;
}
.yellow--bl-44 {
  border-left: 44px #ff0 solid !important;
}
.yellow--bb-44 {
  border-bottom: 44px #ff0 solid !important;
}
.yellow--by-44 {
  border-top: 44px #ff0 solid !important;
  border-bottom: 44px #ff0 solid !important;
}
.yellow--bx-44 {
  border-right: 44px #ff0 solid !important;
  border-left: 44px #ff0 solid !important;
}
.yellow--ba-45 {
  border: 45px #ff0 solid !important;
}
.yellow--bt-45 {
  border-top: 45px #ff0 solid !important;
}
.yellow--br-45 {
  border-right: 45px #ff0 solid !important;
}
.yellow--bl-45 {
  border-left: 45px #ff0 solid !important;
}
.yellow--bb-45 {
  border-bottom: 45px #ff0 solid !important;
}
.yellow--by-45 {
  border-top: 45px #ff0 solid !important;
  border-bottom: 45px #ff0 solid !important;
}
.yellow--bx-45 {
  border-right: 45px #ff0 solid !important;
  border-left: 45px #ff0 solid !important;
}
.yellow--ba-46 {
  border: 46px #ff0 solid !important;
}
.yellow--bt-46 {
  border-top: 46px #ff0 solid !important;
}
.yellow--br-46 {
  border-right: 46px #ff0 solid !important;
}
.yellow--bl-46 {
  border-left: 46px #ff0 solid !important;
}
.yellow--bb-46 {
  border-bottom: 46px #ff0 solid !important;
}
.yellow--by-46 {
  border-top: 46px #ff0 solid !important;
  border-bottom: 46px #ff0 solid !important;
}
.yellow--bx-46 {
  border-right: 46px #ff0 solid !important;
  border-left: 46px #ff0 solid !important;
}
.yellow--ba-47 {
  border: 47px #ff0 solid !important;
}
.yellow--bt-47 {
  border-top: 47px #ff0 solid !important;
}
.yellow--br-47 {
  border-right: 47px #ff0 solid !important;
}
.yellow--bl-47 {
  border-left: 47px #ff0 solid !important;
}
.yellow--bb-47 {
  border-bottom: 47px #ff0 solid !important;
}
.yellow--by-47 {
  border-top: 47px #ff0 solid !important;
  border-bottom: 47px #ff0 solid !important;
}
.yellow--bx-47 {
  border-right: 47px #ff0 solid !important;
  border-left: 47px #ff0 solid !important;
}
.yellow--ba-48 {
  border: 48px #ff0 solid !important;
}
.yellow--bt-48 {
  border-top: 48px #ff0 solid !important;
}
.yellow--br-48 {
  border-right: 48px #ff0 solid !important;
}
.yellow--bl-48 {
  border-left: 48px #ff0 solid !important;
}
.yellow--bb-48 {
  border-bottom: 48px #ff0 solid !important;
}
.yellow--by-48 {
  border-top: 48px #ff0 solid !important;
  border-bottom: 48px #ff0 solid !important;
}
.yellow--bx-48 {
  border-right: 48px #ff0 solid !important;
  border-left: 48px #ff0 solid !important;
}
.yellow--ba-49 {
  border: 49px #ff0 solid !important;
}
.yellow--bt-49 {
  border-top: 49px #ff0 solid !important;
}
.yellow--br-49 {
  border-right: 49px #ff0 solid !important;
}
.yellow--bl-49 {
  border-left: 49px #ff0 solid !important;
}
.yellow--bb-49 {
  border-bottom: 49px #ff0 solid !important;
}
.yellow--by-49 {
  border-top: 49px #ff0 solid !important;
  border-bottom: 49px #ff0 solid !important;
}
.yellow--bx-49 {
  border-right: 49px #ff0 solid !important;
  border-left: 49px #ff0 solid !important;
}
.yellow--ba-50 {
  border: 50px #ff0 solid !important;
}
.yellow--bt-50 {
  border-top: 50px #ff0 solid !important;
}
.yellow--br-50 {
  border-right: 50px #ff0 solid !important;
}
.yellow--bl-50 {
  border-left: 50px #ff0 solid !important;
}
.yellow--bb-50 {
  border-bottom: 50px #ff0 solid !important;
}
.yellow--by-50 {
  border-top: 50px #ff0 solid !important;
  border-bottom: 50px #ff0 solid !important;
}
.yellow--bx-50 {
  border-right: 50px #ff0 solid !important;
  border-left: 50px #ff0 solid !important;
}
.yellow--ba-51 {
  border: 51px #ff0 solid !important;
}
.yellow--bt-51 {
  border-top: 51px #ff0 solid !important;
}
.yellow--br-51 {
  border-right: 51px #ff0 solid !important;
}
.yellow--bl-51 {
  border-left: 51px #ff0 solid !important;
}
.yellow--bb-51 {
  border-bottom: 51px #ff0 solid !important;
}
.yellow--by-51 {
  border-top: 51px #ff0 solid !important;
  border-bottom: 51px #ff0 solid !important;
}
.yellow--bx-51 {
  border-right: 51px #ff0 solid !important;
  border-left: 51px #ff0 solid !important;
}
.yellow--ba-52 {
  border: 52px #ff0 solid !important;
}
.yellow--bt-52 {
  border-top: 52px #ff0 solid !important;
}
.yellow--br-52 {
  border-right: 52px #ff0 solid !important;
}
.yellow--bl-52 {
  border-left: 52px #ff0 solid !important;
}
.yellow--bb-52 {
  border-bottom: 52px #ff0 solid !important;
}
.yellow--by-52 {
  border-top: 52px #ff0 solid !important;
  border-bottom: 52px #ff0 solid !important;
}
.yellow--bx-52 {
  border-right: 52px #ff0 solid !important;
  border-left: 52px #ff0 solid !important;
}
.yellow--ba-53 {
  border: 53px #ff0 solid !important;
}
.yellow--bt-53 {
  border-top: 53px #ff0 solid !important;
}
.yellow--br-53 {
  border-right: 53px #ff0 solid !important;
}
.yellow--bl-53 {
  border-left: 53px #ff0 solid !important;
}
.yellow--bb-53 {
  border-bottom: 53px #ff0 solid !important;
}
.yellow--by-53 {
  border-top: 53px #ff0 solid !important;
  border-bottom: 53px #ff0 solid !important;
}
.yellow--bx-53 {
  border-right: 53px #ff0 solid !important;
  border-left: 53px #ff0 solid !important;
}
.yellow--ba-54 {
  border: 54px #ff0 solid !important;
}
.yellow--bt-54 {
  border-top: 54px #ff0 solid !important;
}
.yellow--br-54 {
  border-right: 54px #ff0 solid !important;
}
.yellow--bl-54 {
  border-left: 54px #ff0 solid !important;
}
.yellow--bb-54 {
  border-bottom: 54px #ff0 solid !important;
}
.yellow--by-54 {
  border-top: 54px #ff0 solid !important;
  border-bottom: 54px #ff0 solid !important;
}
.yellow--bx-54 {
  border-right: 54px #ff0 solid !important;
  border-left: 54px #ff0 solid !important;
}
.yellow--ba-55 {
  border: 55px #ff0 solid !important;
}
.yellow--bt-55 {
  border-top: 55px #ff0 solid !important;
}
.yellow--br-55 {
  border-right: 55px #ff0 solid !important;
}
.yellow--bl-55 {
  border-left: 55px #ff0 solid !important;
}
.yellow--bb-55 {
  border-bottom: 55px #ff0 solid !important;
}
.yellow--by-55 {
  border-top: 55px #ff0 solid !important;
  border-bottom: 55px #ff0 solid !important;
}
.yellow--bx-55 {
  border-right: 55px #ff0 solid !important;
  border-left: 55px #ff0 solid !important;
}
.yellow--ba-56 {
  border: 56px #ff0 solid !important;
}
.yellow--bt-56 {
  border-top: 56px #ff0 solid !important;
}
.yellow--br-56 {
  border-right: 56px #ff0 solid !important;
}
.yellow--bl-56 {
  border-left: 56px #ff0 solid !important;
}
.yellow--bb-56 {
  border-bottom: 56px #ff0 solid !important;
}
.yellow--by-56 {
  border-top: 56px #ff0 solid !important;
  border-bottom: 56px #ff0 solid !important;
}
.yellow--bx-56 {
  border-right: 56px #ff0 solid !important;
  border-left: 56px #ff0 solid !important;
}
.yellow--ba-57 {
  border: 57px #ff0 solid !important;
}
.yellow--bt-57 {
  border-top: 57px #ff0 solid !important;
}
.yellow--br-57 {
  border-right: 57px #ff0 solid !important;
}
.yellow--bl-57 {
  border-left: 57px #ff0 solid !important;
}
.yellow--bb-57 {
  border-bottom: 57px #ff0 solid !important;
}
.yellow--by-57 {
  border-top: 57px #ff0 solid !important;
  border-bottom: 57px #ff0 solid !important;
}
.yellow--bx-57 {
  border-right: 57px #ff0 solid !important;
  border-left: 57px #ff0 solid !important;
}
.yellow--ba-58 {
  border: 58px #ff0 solid !important;
}
.yellow--bt-58 {
  border-top: 58px #ff0 solid !important;
}
.yellow--br-58 {
  border-right: 58px #ff0 solid !important;
}
.yellow--bl-58 {
  border-left: 58px #ff0 solid !important;
}
.yellow--bb-58 {
  border-bottom: 58px #ff0 solid !important;
}
.yellow--by-58 {
  border-top: 58px #ff0 solid !important;
  border-bottom: 58px #ff0 solid !important;
}
.yellow--bx-58 {
  border-right: 58px #ff0 solid !important;
  border-left: 58px #ff0 solid !important;
}
.yellow--ba-59 {
  border: 59px #ff0 solid !important;
}
.yellow--bt-59 {
  border-top: 59px #ff0 solid !important;
}
.yellow--br-59 {
  border-right: 59px #ff0 solid !important;
}
.yellow--bl-59 {
  border-left: 59px #ff0 solid !important;
}
.yellow--bb-59 {
  border-bottom: 59px #ff0 solid !important;
}
.yellow--by-59 {
  border-top: 59px #ff0 solid !important;
  border-bottom: 59px #ff0 solid !important;
}
.yellow--bx-59 {
  border-right: 59px #ff0 solid !important;
  border-left: 59px #ff0 solid !important;
}
.yellow--ba-60 {
  border: 60px #ff0 solid !important;
}
.yellow--bt-60 {
  border-top: 60px #ff0 solid !important;
}
.yellow--br-60 {
  border-right: 60px #ff0 solid !important;
}
.yellow--bl-60 {
  border-left: 60px #ff0 solid !important;
}
.yellow--bb-60 {
  border-bottom: 60px #ff0 solid !important;
}
.yellow--by-60 {
  border-top: 60px #ff0 solid !important;
  border-bottom: 60px #ff0 solid !important;
}
.yellow--bx-60 {
  border-right: 60px #ff0 solid !important;
  border-left: 60px #ff0 solid !important;
}
.yellow--ba-61 {
  border: 61px #ff0 solid !important;
}
.yellow--bt-61 {
  border-top: 61px #ff0 solid !important;
}
.yellow--br-61 {
  border-right: 61px #ff0 solid !important;
}
.yellow--bl-61 {
  border-left: 61px #ff0 solid !important;
}
.yellow--bb-61 {
  border-bottom: 61px #ff0 solid !important;
}
.yellow--by-61 {
  border-top: 61px #ff0 solid !important;
  border-bottom: 61px #ff0 solid !important;
}
.yellow--bx-61 {
  border-right: 61px #ff0 solid !important;
  border-left: 61px #ff0 solid !important;
}
.yellow--ba-62 {
  border: 62px #ff0 solid !important;
}
.yellow--bt-62 {
  border-top: 62px #ff0 solid !important;
}
.yellow--br-62 {
  border-right: 62px #ff0 solid !important;
}
.yellow--bl-62 {
  border-left: 62px #ff0 solid !important;
}
.yellow--bb-62 {
  border-bottom: 62px #ff0 solid !important;
}
.yellow--by-62 {
  border-top: 62px #ff0 solid !important;
  border-bottom: 62px #ff0 solid !important;
}
.yellow--bx-62 {
  border-right: 62px #ff0 solid !important;
  border-left: 62px #ff0 solid !important;
}
.yellow--ba-63 {
  border: 63px #ff0 solid !important;
}
.yellow--bt-63 {
  border-top: 63px #ff0 solid !important;
}
.yellow--br-63 {
  border-right: 63px #ff0 solid !important;
}
.yellow--bl-63 {
  border-left: 63px #ff0 solid !important;
}
.yellow--bb-63 {
  border-bottom: 63px #ff0 solid !important;
}
.yellow--by-63 {
  border-top: 63px #ff0 solid !important;
  border-bottom: 63px #ff0 solid !important;
}
.yellow--bx-63 {
  border-right: 63px #ff0 solid !important;
  border-left: 63px #ff0 solid !important;
}
.yellow--ba-64 {
  border: 64px #ff0 solid !important;
}
.yellow--bt-64 {
  border-top: 64px #ff0 solid !important;
}
.yellow--br-64 {
  border-right: 64px #ff0 solid !important;
}
.yellow--bl-64 {
  border-left: 64px #ff0 solid !important;
}
.yellow--bb-64 {
  border-bottom: 64px #ff0 solid !important;
}
.yellow--by-64 {
  border-top: 64px #ff0 solid !important;
  border-bottom: 64px #ff0 solid !important;
}
.yellow--bx-64 {
  border-right: 64px #ff0 solid !important;
  border-left: 64px #ff0 solid !important;
}
.yellow--ba-65 {
  border: 65px #ff0 solid !important;
}
.yellow--bt-65 {
  border-top: 65px #ff0 solid !important;
}
.yellow--br-65 {
  border-right: 65px #ff0 solid !important;
}
.yellow--bl-65 {
  border-left: 65px #ff0 solid !important;
}
.yellow--bb-65 {
  border-bottom: 65px #ff0 solid !important;
}
.yellow--by-65 {
  border-top: 65px #ff0 solid !important;
  border-bottom: 65px #ff0 solid !important;
}
.yellow--bx-65 {
  border-right: 65px #ff0 solid !important;
  border-left: 65px #ff0 solid !important;
}
.yellow--ba-66 {
  border: 66px #ff0 solid !important;
}
.yellow--bt-66 {
  border-top: 66px #ff0 solid !important;
}
.yellow--br-66 {
  border-right: 66px #ff0 solid !important;
}
.yellow--bl-66 {
  border-left: 66px #ff0 solid !important;
}
.yellow--bb-66 {
  border-bottom: 66px #ff0 solid !important;
}
.yellow--by-66 {
  border-top: 66px #ff0 solid !important;
  border-bottom: 66px #ff0 solid !important;
}
.yellow--bx-66 {
  border-right: 66px #ff0 solid !important;
  border-left: 66px #ff0 solid !important;
}
.yellow--ba-67 {
  border: 67px #ff0 solid !important;
}
.yellow--bt-67 {
  border-top: 67px #ff0 solid !important;
}
.yellow--br-67 {
  border-right: 67px #ff0 solid !important;
}
.yellow--bl-67 {
  border-left: 67px #ff0 solid !important;
}
.yellow--bb-67 {
  border-bottom: 67px #ff0 solid !important;
}
.yellow--by-67 {
  border-top: 67px #ff0 solid !important;
  border-bottom: 67px #ff0 solid !important;
}
.yellow--bx-67 {
  border-right: 67px #ff0 solid !important;
  border-left: 67px #ff0 solid !important;
}
.yellow--ba-68 {
  border: 68px #ff0 solid !important;
}
.yellow--bt-68 {
  border-top: 68px #ff0 solid !important;
}
.yellow--br-68 {
  border-right: 68px #ff0 solid !important;
}
.yellow--bl-68 {
  border-left: 68px #ff0 solid !important;
}
.yellow--bb-68 {
  border-bottom: 68px #ff0 solid !important;
}
.yellow--by-68 {
  border-top: 68px #ff0 solid !important;
  border-bottom: 68px #ff0 solid !important;
}
.yellow--bx-68 {
  border-right: 68px #ff0 solid !important;
  border-left: 68px #ff0 solid !important;
}
.yellow--ba-69 {
  border: 69px #ff0 solid !important;
}
.yellow--bt-69 {
  border-top: 69px #ff0 solid !important;
}
.yellow--br-69 {
  border-right: 69px #ff0 solid !important;
}
.yellow--bl-69 {
  border-left: 69px #ff0 solid !important;
}
.yellow--bb-69 {
  border-bottom: 69px #ff0 solid !important;
}
.yellow--by-69 {
  border-top: 69px #ff0 solid !important;
  border-bottom: 69px #ff0 solid !important;
}
.yellow--bx-69 {
  border-right: 69px #ff0 solid !important;
  border-left: 69px #ff0 solid !important;
}
.yellow--ba-70 {
  border: 70px #ff0 solid !important;
}
.yellow--bt-70 {
  border-top: 70px #ff0 solid !important;
}
.yellow--br-70 {
  border-right: 70px #ff0 solid !important;
}
.yellow--bl-70 {
  border-left: 70px #ff0 solid !important;
}
.yellow--bb-70 {
  border-bottom: 70px #ff0 solid !important;
}
.yellow--by-70 {
  border-top: 70px #ff0 solid !important;
  border-bottom: 70px #ff0 solid !important;
}
.yellow--bx-70 {
  border-right: 70px #ff0 solid !important;
  border-left: 70px #ff0 solid !important;
}
.yellow--ba-71 {
  border: 71px #ff0 solid !important;
}
.yellow--bt-71 {
  border-top: 71px #ff0 solid !important;
}
.yellow--br-71 {
  border-right: 71px #ff0 solid !important;
}
.yellow--bl-71 {
  border-left: 71px #ff0 solid !important;
}
.yellow--bb-71 {
  border-bottom: 71px #ff0 solid !important;
}
.yellow--by-71 {
  border-top: 71px #ff0 solid !important;
  border-bottom: 71px #ff0 solid !important;
}
.yellow--bx-71 {
  border-right: 71px #ff0 solid !important;
  border-left: 71px #ff0 solid !important;
}
.yellow--ba-72 {
  border: 72px #ff0 solid !important;
}
.yellow--bt-72 {
  border-top: 72px #ff0 solid !important;
}
.yellow--br-72 {
  border-right: 72px #ff0 solid !important;
}
.yellow--bl-72 {
  border-left: 72px #ff0 solid !important;
}
.yellow--bb-72 {
  border-bottom: 72px #ff0 solid !important;
}
.yellow--by-72 {
  border-top: 72px #ff0 solid !important;
  border-bottom: 72px #ff0 solid !important;
}
.yellow--bx-72 {
  border-right: 72px #ff0 solid !important;
  border-left: 72px #ff0 solid !important;
}
.yellow--ba-73 {
  border: 73px #ff0 solid !important;
}
.yellow--bt-73 {
  border-top: 73px #ff0 solid !important;
}
.yellow--br-73 {
  border-right: 73px #ff0 solid !important;
}
.yellow--bl-73 {
  border-left: 73px #ff0 solid !important;
}
.yellow--bb-73 {
  border-bottom: 73px #ff0 solid !important;
}
.yellow--by-73 {
  border-top: 73px #ff0 solid !important;
  border-bottom: 73px #ff0 solid !important;
}
.yellow--bx-73 {
  border-right: 73px #ff0 solid !important;
  border-left: 73px #ff0 solid !important;
}
.yellow--ba-74 {
  border: 74px #ff0 solid !important;
}
.yellow--bt-74 {
  border-top: 74px #ff0 solid !important;
}
.yellow--br-74 {
  border-right: 74px #ff0 solid !important;
}
.yellow--bl-74 {
  border-left: 74px #ff0 solid !important;
}
.yellow--bb-74 {
  border-bottom: 74px #ff0 solid !important;
}
.yellow--by-74 {
  border-top: 74px #ff0 solid !important;
  border-bottom: 74px #ff0 solid !important;
}
.yellow--bx-74 {
  border-right: 74px #ff0 solid !important;
  border-left: 74px #ff0 solid !important;
}
.yellow--ba-75 {
  border: 75px #ff0 solid !important;
}
.yellow--bt-75 {
  border-top: 75px #ff0 solid !important;
}
.yellow--br-75 {
  border-right: 75px #ff0 solid !important;
}
.yellow--bl-75 {
  border-left: 75px #ff0 solid !important;
}
.yellow--bb-75 {
  border-bottom: 75px #ff0 solid !important;
}
.yellow--by-75 {
  border-top: 75px #ff0 solid !important;
  border-bottom: 75px #ff0 solid !important;
}
.yellow--bx-75 {
  border-right: 75px #ff0 solid !important;
  border-left: 75px #ff0 solid !important;
}
.yellow--ba-76 {
  border: 76px #ff0 solid !important;
}
.yellow--bt-76 {
  border-top: 76px #ff0 solid !important;
}
.yellow--br-76 {
  border-right: 76px #ff0 solid !important;
}
.yellow--bl-76 {
  border-left: 76px #ff0 solid !important;
}
.yellow--bb-76 {
  border-bottom: 76px #ff0 solid !important;
}
.yellow--by-76 {
  border-top: 76px #ff0 solid !important;
  border-bottom: 76px #ff0 solid !important;
}
.yellow--bx-76 {
  border-right: 76px #ff0 solid !important;
  border-left: 76px #ff0 solid !important;
}
.yellow--ba-77 {
  border: 77px #ff0 solid !important;
}
.yellow--bt-77 {
  border-top: 77px #ff0 solid !important;
}
.yellow--br-77 {
  border-right: 77px #ff0 solid !important;
}
.yellow--bl-77 {
  border-left: 77px #ff0 solid !important;
}
.yellow--bb-77 {
  border-bottom: 77px #ff0 solid !important;
}
.yellow--by-77 {
  border-top: 77px #ff0 solid !important;
  border-bottom: 77px #ff0 solid !important;
}
.yellow--bx-77 {
  border-right: 77px #ff0 solid !important;
  border-left: 77px #ff0 solid !important;
}
.yellow--ba-78 {
  border: 78px #ff0 solid !important;
}
.yellow--bt-78 {
  border-top: 78px #ff0 solid !important;
}
.yellow--br-78 {
  border-right: 78px #ff0 solid !important;
}
.yellow--bl-78 {
  border-left: 78px #ff0 solid !important;
}
.yellow--bb-78 {
  border-bottom: 78px #ff0 solid !important;
}
.yellow--by-78 {
  border-top: 78px #ff0 solid !important;
  border-bottom: 78px #ff0 solid !important;
}
.yellow--bx-78 {
  border-right: 78px #ff0 solid !important;
  border-left: 78px #ff0 solid !important;
}
.yellow--ba-79 {
  border: 79px #ff0 solid !important;
}
.yellow--bt-79 {
  border-top: 79px #ff0 solid !important;
}
.yellow--br-79 {
  border-right: 79px #ff0 solid !important;
}
.yellow--bl-79 {
  border-left: 79px #ff0 solid !important;
}
.yellow--bb-79 {
  border-bottom: 79px #ff0 solid !important;
}
.yellow--by-79 {
  border-top: 79px #ff0 solid !important;
  border-bottom: 79px #ff0 solid !important;
}
.yellow--bx-79 {
  border-right: 79px #ff0 solid !important;
  border-left: 79px #ff0 solid !important;
}
.yellow--ba-80 {
  border: 80px #ff0 solid !important;
}
.yellow--bt-80 {
  border-top: 80px #ff0 solid !important;
}
.yellow--br-80 {
  border-right: 80px #ff0 solid !important;
}
.yellow--bl-80 {
  border-left: 80px #ff0 solid !important;
}
.yellow--bb-80 {
  border-bottom: 80px #ff0 solid !important;
}
.yellow--by-80 {
  border-top: 80px #ff0 solid !important;
  border-bottom: 80px #ff0 solid !important;
}
.yellow--bx-80 {
  border-right: 80px #ff0 solid !important;
  border-left: 80px #ff0 solid !important;
}
.yellow--ba-81 {
  border: 81px #ff0 solid !important;
}
.yellow--bt-81 {
  border-top: 81px #ff0 solid !important;
}
.yellow--br-81 {
  border-right: 81px #ff0 solid !important;
}
.yellow--bl-81 {
  border-left: 81px #ff0 solid !important;
}
.yellow--bb-81 {
  border-bottom: 81px #ff0 solid !important;
}
.yellow--by-81 {
  border-top: 81px #ff0 solid !important;
  border-bottom: 81px #ff0 solid !important;
}
.yellow--bx-81 {
  border-right: 81px #ff0 solid !important;
  border-left: 81px #ff0 solid !important;
}
.yellow--ba-82 {
  border: 82px #ff0 solid !important;
}
.yellow--bt-82 {
  border-top: 82px #ff0 solid !important;
}
.yellow--br-82 {
  border-right: 82px #ff0 solid !important;
}
.yellow--bl-82 {
  border-left: 82px #ff0 solid !important;
}
.yellow--bb-82 {
  border-bottom: 82px #ff0 solid !important;
}
.yellow--by-82 {
  border-top: 82px #ff0 solid !important;
  border-bottom: 82px #ff0 solid !important;
}
.yellow--bx-82 {
  border-right: 82px #ff0 solid !important;
  border-left: 82px #ff0 solid !important;
}
.yellow--ba-83 {
  border: 83px #ff0 solid !important;
}
.yellow--bt-83 {
  border-top: 83px #ff0 solid !important;
}
.yellow--br-83 {
  border-right: 83px #ff0 solid !important;
}
.yellow--bl-83 {
  border-left: 83px #ff0 solid !important;
}
.yellow--bb-83 {
  border-bottom: 83px #ff0 solid !important;
}
.yellow--by-83 {
  border-top: 83px #ff0 solid !important;
  border-bottom: 83px #ff0 solid !important;
}
.yellow--bx-83 {
  border-right: 83px #ff0 solid !important;
  border-left: 83px #ff0 solid !important;
}
.yellow--ba-84 {
  border: 84px #ff0 solid !important;
}
.yellow--bt-84 {
  border-top: 84px #ff0 solid !important;
}
.yellow--br-84 {
  border-right: 84px #ff0 solid !important;
}
.yellow--bl-84 {
  border-left: 84px #ff0 solid !important;
}
.yellow--bb-84 {
  border-bottom: 84px #ff0 solid !important;
}
.yellow--by-84 {
  border-top: 84px #ff0 solid !important;
  border-bottom: 84px #ff0 solid !important;
}
.yellow--bx-84 {
  border-right: 84px #ff0 solid !important;
  border-left: 84px #ff0 solid !important;
}
.yellow--ba-85 {
  border: 85px #ff0 solid !important;
}
.yellow--bt-85 {
  border-top: 85px #ff0 solid !important;
}
.yellow--br-85 {
  border-right: 85px #ff0 solid !important;
}
.yellow--bl-85 {
  border-left: 85px #ff0 solid !important;
}
.yellow--bb-85 {
  border-bottom: 85px #ff0 solid !important;
}
.yellow--by-85 {
  border-top: 85px #ff0 solid !important;
  border-bottom: 85px #ff0 solid !important;
}
.yellow--bx-85 {
  border-right: 85px #ff0 solid !important;
  border-left: 85px #ff0 solid !important;
}
.yellow--ba-86 {
  border: 86px #ff0 solid !important;
}
.yellow--bt-86 {
  border-top: 86px #ff0 solid !important;
}
.yellow--br-86 {
  border-right: 86px #ff0 solid !important;
}
.yellow--bl-86 {
  border-left: 86px #ff0 solid !important;
}
.yellow--bb-86 {
  border-bottom: 86px #ff0 solid !important;
}
.yellow--by-86 {
  border-top: 86px #ff0 solid !important;
  border-bottom: 86px #ff0 solid !important;
}
.yellow--bx-86 {
  border-right: 86px #ff0 solid !important;
  border-left: 86px #ff0 solid !important;
}
.yellow--ba-87 {
  border: 87px #ff0 solid !important;
}
.yellow--bt-87 {
  border-top: 87px #ff0 solid !important;
}
.yellow--br-87 {
  border-right: 87px #ff0 solid !important;
}
.yellow--bl-87 {
  border-left: 87px #ff0 solid !important;
}
.yellow--bb-87 {
  border-bottom: 87px #ff0 solid !important;
}
.yellow--by-87 {
  border-top: 87px #ff0 solid !important;
  border-bottom: 87px #ff0 solid !important;
}
.yellow--bx-87 {
  border-right: 87px #ff0 solid !important;
  border-left: 87px #ff0 solid !important;
}
.yellow--ba-88 {
  border: 88px #ff0 solid !important;
}
.yellow--bt-88 {
  border-top: 88px #ff0 solid !important;
}
.yellow--br-88 {
  border-right: 88px #ff0 solid !important;
}
.yellow--bl-88 {
  border-left: 88px #ff0 solid !important;
}
.yellow--bb-88 {
  border-bottom: 88px #ff0 solid !important;
}
.yellow--by-88 {
  border-top: 88px #ff0 solid !important;
  border-bottom: 88px #ff0 solid !important;
}
.yellow--bx-88 {
  border-right: 88px #ff0 solid !important;
  border-left: 88px #ff0 solid !important;
}
.yellow--ba-89 {
  border: 89px #ff0 solid !important;
}
.yellow--bt-89 {
  border-top: 89px #ff0 solid !important;
}
.yellow--br-89 {
  border-right: 89px #ff0 solid !important;
}
.yellow--bl-89 {
  border-left: 89px #ff0 solid !important;
}
.yellow--bb-89 {
  border-bottom: 89px #ff0 solid !important;
}
.yellow--by-89 {
  border-top: 89px #ff0 solid !important;
  border-bottom: 89px #ff0 solid !important;
}
.yellow--bx-89 {
  border-right: 89px #ff0 solid !important;
  border-left: 89px #ff0 solid !important;
}
.yellow--ba-90 {
  border: 90px #ff0 solid !important;
}
.yellow--bt-90 {
  border-top: 90px #ff0 solid !important;
}
.yellow--br-90 {
  border-right: 90px #ff0 solid !important;
}
.yellow--bl-90 {
  border-left: 90px #ff0 solid !important;
}
.yellow--bb-90 {
  border-bottom: 90px #ff0 solid !important;
}
.yellow--by-90 {
  border-top: 90px #ff0 solid !important;
  border-bottom: 90px #ff0 solid !important;
}
.yellow--bx-90 {
  border-right: 90px #ff0 solid !important;
  border-left: 90px #ff0 solid !important;
}
.yellow--ba-91 {
  border: 91px #ff0 solid !important;
}
.yellow--bt-91 {
  border-top: 91px #ff0 solid !important;
}
.yellow--br-91 {
  border-right: 91px #ff0 solid !important;
}
.yellow--bl-91 {
  border-left: 91px #ff0 solid !important;
}
.yellow--bb-91 {
  border-bottom: 91px #ff0 solid !important;
}
.yellow--by-91 {
  border-top: 91px #ff0 solid !important;
  border-bottom: 91px #ff0 solid !important;
}
.yellow--bx-91 {
  border-right: 91px #ff0 solid !important;
  border-left: 91px #ff0 solid !important;
}
.yellow--ba-92 {
  border: 92px #ff0 solid !important;
}
.yellow--bt-92 {
  border-top: 92px #ff0 solid !important;
}
.yellow--br-92 {
  border-right: 92px #ff0 solid !important;
}
.yellow--bl-92 {
  border-left: 92px #ff0 solid !important;
}
.yellow--bb-92 {
  border-bottom: 92px #ff0 solid !important;
}
.yellow--by-92 {
  border-top: 92px #ff0 solid !important;
  border-bottom: 92px #ff0 solid !important;
}
.yellow--bx-92 {
  border-right: 92px #ff0 solid !important;
  border-left: 92px #ff0 solid !important;
}
.yellow--ba-93 {
  border: 93px #ff0 solid !important;
}
.yellow--bt-93 {
  border-top: 93px #ff0 solid !important;
}
.yellow--br-93 {
  border-right: 93px #ff0 solid !important;
}
.yellow--bl-93 {
  border-left: 93px #ff0 solid !important;
}
.yellow--bb-93 {
  border-bottom: 93px #ff0 solid !important;
}
.yellow--by-93 {
  border-top: 93px #ff0 solid !important;
  border-bottom: 93px #ff0 solid !important;
}
.yellow--bx-93 {
  border-right: 93px #ff0 solid !important;
  border-left: 93px #ff0 solid !important;
}
.yellow--ba-94 {
  border: 94px #ff0 solid !important;
}
.yellow--bt-94 {
  border-top: 94px #ff0 solid !important;
}
.yellow--br-94 {
  border-right: 94px #ff0 solid !important;
}
.yellow--bl-94 {
  border-left: 94px #ff0 solid !important;
}
.yellow--bb-94 {
  border-bottom: 94px #ff0 solid !important;
}
.yellow--by-94 {
  border-top: 94px #ff0 solid !important;
  border-bottom: 94px #ff0 solid !important;
}
.yellow--bx-94 {
  border-right: 94px #ff0 solid !important;
  border-left: 94px #ff0 solid !important;
}
.yellow--ba-95 {
  border: 95px #ff0 solid !important;
}
.yellow--bt-95 {
  border-top: 95px #ff0 solid !important;
}
.yellow--br-95 {
  border-right: 95px #ff0 solid !important;
}
.yellow--bl-95 {
  border-left: 95px #ff0 solid !important;
}
.yellow--bb-95 {
  border-bottom: 95px #ff0 solid !important;
}
.yellow--by-95 {
  border-top: 95px #ff0 solid !important;
  border-bottom: 95px #ff0 solid !important;
}
.yellow--bx-95 {
  border-right: 95px #ff0 solid !important;
  border-left: 95px #ff0 solid !important;
}
.yellow--ba-96 {
  border: 96px #ff0 solid !important;
}
.yellow--bt-96 {
  border-top: 96px #ff0 solid !important;
}
.yellow--br-96 {
  border-right: 96px #ff0 solid !important;
}
.yellow--bl-96 {
  border-left: 96px #ff0 solid !important;
}
.yellow--bb-96 {
  border-bottom: 96px #ff0 solid !important;
}
.yellow--by-96 {
  border-top: 96px #ff0 solid !important;
  border-bottom: 96px #ff0 solid !important;
}
.yellow--bx-96 {
  border-right: 96px #ff0 solid !important;
  border-left: 96px #ff0 solid !important;
}
.yellow--ba-97 {
  border: 97px #ff0 solid !important;
}
.yellow--bt-97 {
  border-top: 97px #ff0 solid !important;
}
.yellow--br-97 {
  border-right: 97px #ff0 solid !important;
}
.yellow--bl-97 {
  border-left: 97px #ff0 solid !important;
}
.yellow--bb-97 {
  border-bottom: 97px #ff0 solid !important;
}
.yellow--by-97 {
  border-top: 97px #ff0 solid !important;
  border-bottom: 97px #ff0 solid !important;
}
.yellow--bx-97 {
  border-right: 97px #ff0 solid !important;
  border-left: 97px #ff0 solid !important;
}
.yellow--ba-98 {
  border: 98px #ff0 solid !important;
}
.yellow--bt-98 {
  border-top: 98px #ff0 solid !important;
}
.yellow--br-98 {
  border-right: 98px #ff0 solid !important;
}
.yellow--bl-98 {
  border-left: 98px #ff0 solid !important;
}
.yellow--bb-98 {
  border-bottom: 98px #ff0 solid !important;
}
.yellow--by-98 {
  border-top: 98px #ff0 solid !important;
  border-bottom: 98px #ff0 solid !important;
}
.yellow--bx-98 {
  border-right: 98px #ff0 solid !important;
  border-left: 98px #ff0 solid !important;
}
.yellow--ba-99 {
  border: 99px #ff0 solid !important;
}
.yellow--bt-99 {
  border-top: 99px #ff0 solid !important;
}
.yellow--br-99 {
  border-right: 99px #ff0 solid !important;
}
.yellow--bl-99 {
  border-left: 99px #ff0 solid !important;
}
.yellow--bb-99 {
  border-bottom: 99px #ff0 solid !important;
}
.yellow--by-99 {
  border-top: 99px #ff0 solid !important;
  border-bottom: 99px #ff0 solid !important;
}
.yellow--bx-99 {
  border-right: 99px #ff0 solid !important;
  border-left: 99px #ff0 solid !important;
}
.yellow--ba-100 {
  border: 100px #ff0 solid !important;
}
.yellow--bt-100 {
  border-top: 100px #ff0 solid !important;
}
.yellow--br-100 {
  border-right: 100px #ff0 solid !important;
}
.yellow--bl-100 {
  border-left: 100px #ff0 solid !important;
}
.yellow--bb-100 {
  border-bottom: 100px #ff0 solid !important;
}
.yellow--by-100 {
  border-top: 100px #ff0 solid !important;
  border-bottom: 100px #ff0 solid !important;
}
.yellow--bx-100 {
  border-right: 100px #ff0 solid !important;
  border-left: 100px #ff0 solid !important;
}
.lynch--ba-1 {
  border: 1px #5d7b92 solid !important;
}
.lynch--bt-1 {
  border-top: 1px #5d7b92 solid !important;
}
.lynch--br-1 {
  border-right: 1px #5d7b92 solid !important;
}
.lynch--bl-1 {
  border-left: 1px #5d7b92 solid !important;
}
.lynch--bb-1 {
  border-bottom: 1px #5d7b92 solid !important;
}
.lynch--by-1 {
  border-top: 1px #5d7b92 solid !important;
  border-bottom: 1px #5d7b92 solid !important;
}
.lynch--bx-1 {
  border-right: 1px #5d7b92 solid !important;
  border-left: 1px #5d7b92 solid !important;
}
.lynch--ba-2 {
  border: 2px #5d7b92 solid !important;
}
.lynch--bt-2 {
  border-top: 2px #5d7b92 solid !important;
}
.lynch--br-2 {
  border-right: 2px #5d7b92 solid !important;
}
.lynch--bl-2 {
  border-left: 2px #5d7b92 solid !important;
}
.lynch--bb-2 {
  border-bottom: 2px #5d7b92 solid !important;
}
.lynch--by-2 {
  border-top: 2px #5d7b92 solid !important;
  border-bottom: 2px #5d7b92 solid !important;
}
.lynch--bx-2 {
  border-right: 2px #5d7b92 solid !important;
  border-left: 2px #5d7b92 solid !important;
}
.lynch--ba-3 {
  border: 3px #5d7b92 solid !important;
}
.lynch--bt-3 {
  border-top: 3px #5d7b92 solid !important;
}
.lynch--br-3 {
  border-right: 3px #5d7b92 solid !important;
}
.lynch--bl-3 {
  border-left: 3px #5d7b92 solid !important;
}
.lynch--bb-3 {
  border-bottom: 3px #5d7b92 solid !important;
}
.lynch--by-3 {
  border-top: 3px #5d7b92 solid !important;
  border-bottom: 3px #5d7b92 solid !important;
}
.lynch--bx-3 {
  border-right: 3px #5d7b92 solid !important;
  border-left: 3px #5d7b92 solid !important;
}
.lynch--ba-4 {
  border: 4px #5d7b92 solid !important;
}
.lynch--bt-4 {
  border-top: 4px #5d7b92 solid !important;
}
.lynch--br-4 {
  border-right: 4px #5d7b92 solid !important;
}
.lynch--bl-4 {
  border-left: 4px #5d7b92 solid !important;
}
.lynch--bb-4 {
  border-bottom: 4px #5d7b92 solid !important;
}
.lynch--by-4 {
  border-top: 4px #5d7b92 solid !important;
  border-bottom: 4px #5d7b92 solid !important;
}
.lynch--bx-4 {
  border-right: 4px #5d7b92 solid !important;
  border-left: 4px #5d7b92 solid !important;
}
.lynch--ba-5 {
  border: 5px #5d7b92 solid !important;
}
.lynch--bt-5 {
  border-top: 5px #5d7b92 solid !important;
}
.lynch--br-5 {
  border-right: 5px #5d7b92 solid !important;
}
.lynch--bl-5 {
  border-left: 5px #5d7b92 solid !important;
}
.lynch--bb-5 {
  border-bottom: 5px #5d7b92 solid !important;
}
.lynch--by-5 {
  border-top: 5px #5d7b92 solid !important;
  border-bottom: 5px #5d7b92 solid !important;
}
.lynch--bx-5 {
  border-right: 5px #5d7b92 solid !important;
  border-left: 5px #5d7b92 solid !important;
}
.lynch--ba-6 {
  border: 6px #5d7b92 solid !important;
}
.lynch--bt-6 {
  border-top: 6px #5d7b92 solid !important;
}
.lynch--br-6 {
  border-right: 6px #5d7b92 solid !important;
}
.lynch--bl-6 {
  border-left: 6px #5d7b92 solid !important;
}
.lynch--bb-6 {
  border-bottom: 6px #5d7b92 solid !important;
}
.lynch--by-6 {
  border-top: 6px #5d7b92 solid !important;
  border-bottom: 6px #5d7b92 solid !important;
}
.lynch--bx-6 {
  border-right: 6px #5d7b92 solid !important;
  border-left: 6px #5d7b92 solid !important;
}
.lynch--ba-7 {
  border: 7px #5d7b92 solid !important;
}
.lynch--bt-7 {
  border-top: 7px #5d7b92 solid !important;
}
.lynch--br-7 {
  border-right: 7px #5d7b92 solid !important;
}
.lynch--bl-7 {
  border-left: 7px #5d7b92 solid !important;
}
.lynch--bb-7 {
  border-bottom: 7px #5d7b92 solid !important;
}
.lynch--by-7 {
  border-top: 7px #5d7b92 solid !important;
  border-bottom: 7px #5d7b92 solid !important;
}
.lynch--bx-7 {
  border-right: 7px #5d7b92 solid !important;
  border-left: 7px #5d7b92 solid !important;
}
.lynch--ba-8 {
  border: 8px #5d7b92 solid !important;
}
.lynch--bt-8 {
  border-top: 8px #5d7b92 solid !important;
}
.lynch--br-8 {
  border-right: 8px #5d7b92 solid !important;
}
.lynch--bl-8 {
  border-left: 8px #5d7b92 solid !important;
}
.lynch--bb-8 {
  border-bottom: 8px #5d7b92 solid !important;
}
.lynch--by-8 {
  border-top: 8px #5d7b92 solid !important;
  border-bottom: 8px #5d7b92 solid !important;
}
.lynch--bx-8 {
  border-right: 8px #5d7b92 solid !important;
  border-left: 8px #5d7b92 solid !important;
}
.lynch--ba-9 {
  border: 9px #5d7b92 solid !important;
}
.lynch--bt-9 {
  border-top: 9px #5d7b92 solid !important;
}
.lynch--br-9 {
  border-right: 9px #5d7b92 solid !important;
}
.lynch--bl-9 {
  border-left: 9px #5d7b92 solid !important;
}
.lynch--bb-9 {
  border-bottom: 9px #5d7b92 solid !important;
}
.lynch--by-9 {
  border-top: 9px #5d7b92 solid !important;
  border-bottom: 9px #5d7b92 solid !important;
}
.lynch--bx-9 {
  border-right: 9px #5d7b92 solid !important;
  border-left: 9px #5d7b92 solid !important;
}
.lynch--ba-10 {
  border: 10px #5d7b92 solid !important;
}
.lynch--bt-10 {
  border-top: 10px #5d7b92 solid !important;
}
.lynch--br-10 {
  border-right: 10px #5d7b92 solid !important;
}
.lynch--bl-10 {
  border-left: 10px #5d7b92 solid !important;
}
.lynch--bb-10 {
  border-bottom: 10px #5d7b92 solid !important;
}
.lynch--by-10 {
  border-top: 10px #5d7b92 solid !important;
  border-bottom: 10px #5d7b92 solid !important;
}
.lynch--bx-10 {
  border-right: 10px #5d7b92 solid !important;
  border-left: 10px #5d7b92 solid !important;
}
.lynch--ba-11 {
  border: 11px #5d7b92 solid !important;
}
.lynch--bt-11 {
  border-top: 11px #5d7b92 solid !important;
}
.lynch--br-11 {
  border-right: 11px #5d7b92 solid !important;
}
.lynch--bl-11 {
  border-left: 11px #5d7b92 solid !important;
}
.lynch--bb-11 {
  border-bottom: 11px #5d7b92 solid !important;
}
.lynch--by-11 {
  border-top: 11px #5d7b92 solid !important;
  border-bottom: 11px #5d7b92 solid !important;
}
.lynch--bx-11 {
  border-right: 11px #5d7b92 solid !important;
  border-left: 11px #5d7b92 solid !important;
}
.lynch--ba-12 {
  border: 12px #5d7b92 solid !important;
}
.lynch--bt-12 {
  border-top: 12px #5d7b92 solid !important;
}
.lynch--br-12 {
  border-right: 12px #5d7b92 solid !important;
}
.lynch--bl-12 {
  border-left: 12px #5d7b92 solid !important;
}
.lynch--bb-12 {
  border-bottom: 12px #5d7b92 solid !important;
}
.lynch--by-12 {
  border-top: 12px #5d7b92 solid !important;
  border-bottom: 12px #5d7b92 solid !important;
}
.lynch--bx-12 {
  border-right: 12px #5d7b92 solid !important;
  border-left: 12px #5d7b92 solid !important;
}
.lynch--ba-13 {
  border: 13px #5d7b92 solid !important;
}
.lynch--bt-13 {
  border-top: 13px #5d7b92 solid !important;
}
.lynch--br-13 {
  border-right: 13px #5d7b92 solid !important;
}
.lynch--bl-13 {
  border-left: 13px #5d7b92 solid !important;
}
.lynch--bb-13 {
  border-bottom: 13px #5d7b92 solid !important;
}
.lynch--by-13 {
  border-top: 13px #5d7b92 solid !important;
  border-bottom: 13px #5d7b92 solid !important;
}
.lynch--bx-13 {
  border-right: 13px #5d7b92 solid !important;
  border-left: 13px #5d7b92 solid !important;
}
.lynch--ba-14 {
  border: 14px #5d7b92 solid !important;
}
.lynch--bt-14 {
  border-top: 14px #5d7b92 solid !important;
}
.lynch--br-14 {
  border-right: 14px #5d7b92 solid !important;
}
.lynch--bl-14 {
  border-left: 14px #5d7b92 solid !important;
}
.lynch--bb-14 {
  border-bottom: 14px #5d7b92 solid !important;
}
.lynch--by-14 {
  border-top: 14px #5d7b92 solid !important;
  border-bottom: 14px #5d7b92 solid !important;
}
.lynch--bx-14 {
  border-right: 14px #5d7b92 solid !important;
  border-left: 14px #5d7b92 solid !important;
}
.lynch--ba-15 {
  border: 15px #5d7b92 solid !important;
}
.lynch--bt-15 {
  border-top: 15px #5d7b92 solid !important;
}
.lynch--br-15 {
  border-right: 15px #5d7b92 solid !important;
}
.lynch--bl-15 {
  border-left: 15px #5d7b92 solid !important;
}
.lynch--bb-15 {
  border-bottom: 15px #5d7b92 solid !important;
}
.lynch--by-15 {
  border-top: 15px #5d7b92 solid !important;
  border-bottom: 15px #5d7b92 solid !important;
}
.lynch--bx-15 {
  border-right: 15px #5d7b92 solid !important;
  border-left: 15px #5d7b92 solid !important;
}
.lynch--ba-16 {
  border: 16px #5d7b92 solid !important;
}
.lynch--bt-16 {
  border-top: 16px #5d7b92 solid !important;
}
.lynch--br-16 {
  border-right: 16px #5d7b92 solid !important;
}
.lynch--bl-16 {
  border-left: 16px #5d7b92 solid !important;
}
.lynch--bb-16 {
  border-bottom: 16px #5d7b92 solid !important;
}
.lynch--by-16 {
  border-top: 16px #5d7b92 solid !important;
  border-bottom: 16px #5d7b92 solid !important;
}
.lynch--bx-16 {
  border-right: 16px #5d7b92 solid !important;
  border-left: 16px #5d7b92 solid !important;
}
.lynch--ba-17 {
  border: 17px #5d7b92 solid !important;
}
.lynch--bt-17 {
  border-top: 17px #5d7b92 solid !important;
}
.lynch--br-17 {
  border-right: 17px #5d7b92 solid !important;
}
.lynch--bl-17 {
  border-left: 17px #5d7b92 solid !important;
}
.lynch--bb-17 {
  border-bottom: 17px #5d7b92 solid !important;
}
.lynch--by-17 {
  border-top: 17px #5d7b92 solid !important;
  border-bottom: 17px #5d7b92 solid !important;
}
.lynch--bx-17 {
  border-right: 17px #5d7b92 solid !important;
  border-left: 17px #5d7b92 solid !important;
}
.lynch--ba-18 {
  border: 18px #5d7b92 solid !important;
}
.lynch--bt-18 {
  border-top: 18px #5d7b92 solid !important;
}
.lynch--br-18 {
  border-right: 18px #5d7b92 solid !important;
}
.lynch--bl-18 {
  border-left: 18px #5d7b92 solid !important;
}
.lynch--bb-18 {
  border-bottom: 18px #5d7b92 solid !important;
}
.lynch--by-18 {
  border-top: 18px #5d7b92 solid !important;
  border-bottom: 18px #5d7b92 solid !important;
}
.lynch--bx-18 {
  border-right: 18px #5d7b92 solid !important;
  border-left: 18px #5d7b92 solid !important;
}
.lynch--ba-19 {
  border: 19px #5d7b92 solid !important;
}
.lynch--bt-19 {
  border-top: 19px #5d7b92 solid !important;
}
.lynch--br-19 {
  border-right: 19px #5d7b92 solid !important;
}
.lynch--bl-19 {
  border-left: 19px #5d7b92 solid !important;
}
.lynch--bb-19 {
  border-bottom: 19px #5d7b92 solid !important;
}
.lynch--by-19 {
  border-top: 19px #5d7b92 solid !important;
  border-bottom: 19px #5d7b92 solid !important;
}
.lynch--bx-19 {
  border-right: 19px #5d7b92 solid !important;
  border-left: 19px #5d7b92 solid !important;
}
.lynch--ba-20 {
  border: 20px #5d7b92 solid !important;
}
.lynch--bt-20 {
  border-top: 20px #5d7b92 solid !important;
}
.lynch--br-20 {
  border-right: 20px #5d7b92 solid !important;
}
.lynch--bl-20 {
  border-left: 20px #5d7b92 solid !important;
}
.lynch--bb-20 {
  border-bottom: 20px #5d7b92 solid !important;
}
.lynch--by-20 {
  border-top: 20px #5d7b92 solid !important;
  border-bottom: 20px #5d7b92 solid !important;
}
.lynch--bx-20 {
  border-right: 20px #5d7b92 solid !important;
  border-left: 20px #5d7b92 solid !important;
}
.lynch--ba-21 {
  border: 21px #5d7b92 solid !important;
}
.lynch--bt-21 {
  border-top: 21px #5d7b92 solid !important;
}
.lynch--br-21 {
  border-right: 21px #5d7b92 solid !important;
}
.lynch--bl-21 {
  border-left: 21px #5d7b92 solid !important;
}
.lynch--bb-21 {
  border-bottom: 21px #5d7b92 solid !important;
}
.lynch--by-21 {
  border-top: 21px #5d7b92 solid !important;
  border-bottom: 21px #5d7b92 solid !important;
}
.lynch--bx-21 {
  border-right: 21px #5d7b92 solid !important;
  border-left: 21px #5d7b92 solid !important;
}
.lynch--ba-22 {
  border: 22px #5d7b92 solid !important;
}
.lynch--bt-22 {
  border-top: 22px #5d7b92 solid !important;
}
.lynch--br-22 {
  border-right: 22px #5d7b92 solid !important;
}
.lynch--bl-22 {
  border-left: 22px #5d7b92 solid !important;
}
.lynch--bb-22 {
  border-bottom: 22px #5d7b92 solid !important;
}
.lynch--by-22 {
  border-top: 22px #5d7b92 solid !important;
  border-bottom: 22px #5d7b92 solid !important;
}
.lynch--bx-22 {
  border-right: 22px #5d7b92 solid !important;
  border-left: 22px #5d7b92 solid !important;
}
.lynch--ba-23 {
  border: 23px #5d7b92 solid !important;
}
.lynch--bt-23 {
  border-top: 23px #5d7b92 solid !important;
}
.lynch--br-23 {
  border-right: 23px #5d7b92 solid !important;
}
.lynch--bl-23 {
  border-left: 23px #5d7b92 solid !important;
}
.lynch--bb-23 {
  border-bottom: 23px #5d7b92 solid !important;
}
.lynch--by-23 {
  border-top: 23px #5d7b92 solid !important;
  border-bottom: 23px #5d7b92 solid !important;
}
.lynch--bx-23 {
  border-right: 23px #5d7b92 solid !important;
  border-left: 23px #5d7b92 solid !important;
}
.lynch--ba-24 {
  border: 24px #5d7b92 solid !important;
}
.lynch--bt-24 {
  border-top: 24px #5d7b92 solid !important;
}
.lynch--br-24 {
  border-right: 24px #5d7b92 solid !important;
}
.lynch--bl-24 {
  border-left: 24px #5d7b92 solid !important;
}
.lynch--bb-24 {
  border-bottom: 24px #5d7b92 solid !important;
}
.lynch--by-24 {
  border-top: 24px #5d7b92 solid !important;
  border-bottom: 24px #5d7b92 solid !important;
}
.lynch--bx-24 {
  border-right: 24px #5d7b92 solid !important;
  border-left: 24px #5d7b92 solid !important;
}
.lynch--ba-25 {
  border: 25px #5d7b92 solid !important;
}
.lynch--bt-25 {
  border-top: 25px #5d7b92 solid !important;
}
.lynch--br-25 {
  border-right: 25px #5d7b92 solid !important;
}
.lynch--bl-25 {
  border-left: 25px #5d7b92 solid !important;
}
.lynch--bb-25 {
  border-bottom: 25px #5d7b92 solid !important;
}
.lynch--by-25 {
  border-top: 25px #5d7b92 solid !important;
  border-bottom: 25px #5d7b92 solid !important;
}
.lynch--bx-25 {
  border-right: 25px #5d7b92 solid !important;
  border-left: 25px #5d7b92 solid !important;
}
.lynch--ba-26 {
  border: 26px #5d7b92 solid !important;
}
.lynch--bt-26 {
  border-top: 26px #5d7b92 solid !important;
}
.lynch--br-26 {
  border-right: 26px #5d7b92 solid !important;
}
.lynch--bl-26 {
  border-left: 26px #5d7b92 solid !important;
}
.lynch--bb-26 {
  border-bottom: 26px #5d7b92 solid !important;
}
.lynch--by-26 {
  border-top: 26px #5d7b92 solid !important;
  border-bottom: 26px #5d7b92 solid !important;
}
.lynch--bx-26 {
  border-right: 26px #5d7b92 solid !important;
  border-left: 26px #5d7b92 solid !important;
}
.lynch--ba-27 {
  border: 27px #5d7b92 solid !important;
}
.lynch--bt-27 {
  border-top: 27px #5d7b92 solid !important;
}
.lynch--br-27 {
  border-right: 27px #5d7b92 solid !important;
}
.lynch--bl-27 {
  border-left: 27px #5d7b92 solid !important;
}
.lynch--bb-27 {
  border-bottom: 27px #5d7b92 solid !important;
}
.lynch--by-27 {
  border-top: 27px #5d7b92 solid !important;
  border-bottom: 27px #5d7b92 solid !important;
}
.lynch--bx-27 {
  border-right: 27px #5d7b92 solid !important;
  border-left: 27px #5d7b92 solid !important;
}
.lynch--ba-28 {
  border: 28px #5d7b92 solid !important;
}
.lynch--bt-28 {
  border-top: 28px #5d7b92 solid !important;
}
.lynch--br-28 {
  border-right: 28px #5d7b92 solid !important;
}
.lynch--bl-28 {
  border-left: 28px #5d7b92 solid !important;
}
.lynch--bb-28 {
  border-bottom: 28px #5d7b92 solid !important;
}
.lynch--by-28 {
  border-top: 28px #5d7b92 solid !important;
  border-bottom: 28px #5d7b92 solid !important;
}
.lynch--bx-28 {
  border-right: 28px #5d7b92 solid !important;
  border-left: 28px #5d7b92 solid !important;
}
.lynch--ba-29 {
  border: 29px #5d7b92 solid !important;
}
.lynch--bt-29 {
  border-top: 29px #5d7b92 solid !important;
}
.lynch--br-29 {
  border-right: 29px #5d7b92 solid !important;
}
.lynch--bl-29 {
  border-left: 29px #5d7b92 solid !important;
}
.lynch--bb-29 {
  border-bottom: 29px #5d7b92 solid !important;
}
.lynch--by-29 {
  border-top: 29px #5d7b92 solid !important;
  border-bottom: 29px #5d7b92 solid !important;
}
.lynch--bx-29 {
  border-right: 29px #5d7b92 solid !important;
  border-left: 29px #5d7b92 solid !important;
}
.lynch--ba-30 {
  border: 30px #5d7b92 solid !important;
}
.lynch--bt-30 {
  border-top: 30px #5d7b92 solid !important;
}
.lynch--br-30 {
  border-right: 30px #5d7b92 solid !important;
}
.lynch--bl-30 {
  border-left: 30px #5d7b92 solid !important;
}
.lynch--bb-30 {
  border-bottom: 30px #5d7b92 solid !important;
}
.lynch--by-30 {
  border-top: 30px #5d7b92 solid !important;
  border-bottom: 30px #5d7b92 solid !important;
}
.lynch--bx-30 {
  border-right: 30px #5d7b92 solid !important;
  border-left: 30px #5d7b92 solid !important;
}
.lynch--ba-31 {
  border: 31px #5d7b92 solid !important;
}
.lynch--bt-31 {
  border-top: 31px #5d7b92 solid !important;
}
.lynch--br-31 {
  border-right: 31px #5d7b92 solid !important;
}
.lynch--bl-31 {
  border-left: 31px #5d7b92 solid !important;
}
.lynch--bb-31 {
  border-bottom: 31px #5d7b92 solid !important;
}
.lynch--by-31 {
  border-top: 31px #5d7b92 solid !important;
  border-bottom: 31px #5d7b92 solid !important;
}
.lynch--bx-31 {
  border-right: 31px #5d7b92 solid !important;
  border-left: 31px #5d7b92 solid !important;
}
.lynch--ba-32 {
  border: 32px #5d7b92 solid !important;
}
.lynch--bt-32 {
  border-top: 32px #5d7b92 solid !important;
}
.lynch--br-32 {
  border-right: 32px #5d7b92 solid !important;
}
.lynch--bl-32 {
  border-left: 32px #5d7b92 solid !important;
}
.lynch--bb-32 {
  border-bottom: 32px #5d7b92 solid !important;
}
.lynch--by-32 {
  border-top: 32px #5d7b92 solid !important;
  border-bottom: 32px #5d7b92 solid !important;
}
.lynch--bx-32 {
  border-right: 32px #5d7b92 solid !important;
  border-left: 32px #5d7b92 solid !important;
}
.lynch--ba-33 {
  border: 33px #5d7b92 solid !important;
}
.lynch--bt-33 {
  border-top: 33px #5d7b92 solid !important;
}
.lynch--br-33 {
  border-right: 33px #5d7b92 solid !important;
}
.lynch--bl-33 {
  border-left: 33px #5d7b92 solid !important;
}
.lynch--bb-33 {
  border-bottom: 33px #5d7b92 solid !important;
}
.lynch--by-33 {
  border-top: 33px #5d7b92 solid !important;
  border-bottom: 33px #5d7b92 solid !important;
}
.lynch--bx-33 {
  border-right: 33px #5d7b92 solid !important;
  border-left: 33px #5d7b92 solid !important;
}
.lynch--ba-34 {
  border: 34px #5d7b92 solid !important;
}
.lynch--bt-34 {
  border-top: 34px #5d7b92 solid !important;
}
.lynch--br-34 {
  border-right: 34px #5d7b92 solid !important;
}
.lynch--bl-34 {
  border-left: 34px #5d7b92 solid !important;
}
.lynch--bb-34 {
  border-bottom: 34px #5d7b92 solid !important;
}
.lynch--by-34 {
  border-top: 34px #5d7b92 solid !important;
  border-bottom: 34px #5d7b92 solid !important;
}
.lynch--bx-34 {
  border-right: 34px #5d7b92 solid !important;
  border-left: 34px #5d7b92 solid !important;
}
.lynch--ba-35 {
  border: 35px #5d7b92 solid !important;
}
.lynch--bt-35 {
  border-top: 35px #5d7b92 solid !important;
}
.lynch--br-35 {
  border-right: 35px #5d7b92 solid !important;
}
.lynch--bl-35 {
  border-left: 35px #5d7b92 solid !important;
}
.lynch--bb-35 {
  border-bottom: 35px #5d7b92 solid !important;
}
.lynch--by-35 {
  border-top: 35px #5d7b92 solid !important;
  border-bottom: 35px #5d7b92 solid !important;
}
.lynch--bx-35 {
  border-right: 35px #5d7b92 solid !important;
  border-left: 35px #5d7b92 solid !important;
}
.lynch--ba-36 {
  border: 36px #5d7b92 solid !important;
}
.lynch--bt-36 {
  border-top: 36px #5d7b92 solid !important;
}
.lynch--br-36 {
  border-right: 36px #5d7b92 solid !important;
}
.lynch--bl-36 {
  border-left: 36px #5d7b92 solid !important;
}
.lynch--bb-36 {
  border-bottom: 36px #5d7b92 solid !important;
}
.lynch--by-36 {
  border-top: 36px #5d7b92 solid !important;
  border-bottom: 36px #5d7b92 solid !important;
}
.lynch--bx-36 {
  border-right: 36px #5d7b92 solid !important;
  border-left: 36px #5d7b92 solid !important;
}
.lynch--ba-37 {
  border: 37px #5d7b92 solid !important;
}
.lynch--bt-37 {
  border-top: 37px #5d7b92 solid !important;
}
.lynch--br-37 {
  border-right: 37px #5d7b92 solid !important;
}
.lynch--bl-37 {
  border-left: 37px #5d7b92 solid !important;
}
.lynch--bb-37 {
  border-bottom: 37px #5d7b92 solid !important;
}
.lynch--by-37 {
  border-top: 37px #5d7b92 solid !important;
  border-bottom: 37px #5d7b92 solid !important;
}
.lynch--bx-37 {
  border-right: 37px #5d7b92 solid !important;
  border-left: 37px #5d7b92 solid !important;
}
.lynch--ba-38 {
  border: 38px #5d7b92 solid !important;
}
.lynch--bt-38 {
  border-top: 38px #5d7b92 solid !important;
}
.lynch--br-38 {
  border-right: 38px #5d7b92 solid !important;
}
.lynch--bl-38 {
  border-left: 38px #5d7b92 solid !important;
}
.lynch--bb-38 {
  border-bottom: 38px #5d7b92 solid !important;
}
.lynch--by-38 {
  border-top: 38px #5d7b92 solid !important;
  border-bottom: 38px #5d7b92 solid !important;
}
.lynch--bx-38 {
  border-right: 38px #5d7b92 solid !important;
  border-left: 38px #5d7b92 solid !important;
}
.lynch--ba-39 {
  border: 39px #5d7b92 solid !important;
}
.lynch--bt-39 {
  border-top: 39px #5d7b92 solid !important;
}
.lynch--br-39 {
  border-right: 39px #5d7b92 solid !important;
}
.lynch--bl-39 {
  border-left: 39px #5d7b92 solid !important;
}
.lynch--bb-39 {
  border-bottom: 39px #5d7b92 solid !important;
}
.lynch--by-39 {
  border-top: 39px #5d7b92 solid !important;
  border-bottom: 39px #5d7b92 solid !important;
}
.lynch--bx-39 {
  border-right: 39px #5d7b92 solid !important;
  border-left: 39px #5d7b92 solid !important;
}
.lynch--ba-40 {
  border: 40px #5d7b92 solid !important;
}
.lynch--bt-40 {
  border-top: 40px #5d7b92 solid !important;
}
.lynch--br-40 {
  border-right: 40px #5d7b92 solid !important;
}
.lynch--bl-40 {
  border-left: 40px #5d7b92 solid !important;
}
.lynch--bb-40 {
  border-bottom: 40px #5d7b92 solid !important;
}
.lynch--by-40 {
  border-top: 40px #5d7b92 solid !important;
  border-bottom: 40px #5d7b92 solid !important;
}
.lynch--bx-40 {
  border-right: 40px #5d7b92 solid !important;
  border-left: 40px #5d7b92 solid !important;
}
.lynch--ba-41 {
  border: 41px #5d7b92 solid !important;
}
.lynch--bt-41 {
  border-top: 41px #5d7b92 solid !important;
}
.lynch--br-41 {
  border-right: 41px #5d7b92 solid !important;
}
.lynch--bl-41 {
  border-left: 41px #5d7b92 solid !important;
}
.lynch--bb-41 {
  border-bottom: 41px #5d7b92 solid !important;
}
.lynch--by-41 {
  border-top: 41px #5d7b92 solid !important;
  border-bottom: 41px #5d7b92 solid !important;
}
.lynch--bx-41 {
  border-right: 41px #5d7b92 solid !important;
  border-left: 41px #5d7b92 solid !important;
}
.lynch--ba-42 {
  border: 42px #5d7b92 solid !important;
}
.lynch--bt-42 {
  border-top: 42px #5d7b92 solid !important;
}
.lynch--br-42 {
  border-right: 42px #5d7b92 solid !important;
}
.lynch--bl-42 {
  border-left: 42px #5d7b92 solid !important;
}
.lynch--bb-42 {
  border-bottom: 42px #5d7b92 solid !important;
}
.lynch--by-42 {
  border-top: 42px #5d7b92 solid !important;
  border-bottom: 42px #5d7b92 solid !important;
}
.lynch--bx-42 {
  border-right: 42px #5d7b92 solid !important;
  border-left: 42px #5d7b92 solid !important;
}
.lynch--ba-43 {
  border: 43px #5d7b92 solid !important;
}
.lynch--bt-43 {
  border-top: 43px #5d7b92 solid !important;
}
.lynch--br-43 {
  border-right: 43px #5d7b92 solid !important;
}
.lynch--bl-43 {
  border-left: 43px #5d7b92 solid !important;
}
.lynch--bb-43 {
  border-bottom: 43px #5d7b92 solid !important;
}
.lynch--by-43 {
  border-top: 43px #5d7b92 solid !important;
  border-bottom: 43px #5d7b92 solid !important;
}
.lynch--bx-43 {
  border-right: 43px #5d7b92 solid !important;
  border-left: 43px #5d7b92 solid !important;
}
.lynch--ba-44 {
  border: 44px #5d7b92 solid !important;
}
.lynch--bt-44 {
  border-top: 44px #5d7b92 solid !important;
}
.lynch--br-44 {
  border-right: 44px #5d7b92 solid !important;
}
.lynch--bl-44 {
  border-left: 44px #5d7b92 solid !important;
}
.lynch--bb-44 {
  border-bottom: 44px #5d7b92 solid !important;
}
.lynch--by-44 {
  border-top: 44px #5d7b92 solid !important;
  border-bottom: 44px #5d7b92 solid !important;
}
.lynch--bx-44 {
  border-right: 44px #5d7b92 solid !important;
  border-left: 44px #5d7b92 solid !important;
}
.lynch--ba-45 {
  border: 45px #5d7b92 solid !important;
}
.lynch--bt-45 {
  border-top: 45px #5d7b92 solid !important;
}
.lynch--br-45 {
  border-right: 45px #5d7b92 solid !important;
}
.lynch--bl-45 {
  border-left: 45px #5d7b92 solid !important;
}
.lynch--bb-45 {
  border-bottom: 45px #5d7b92 solid !important;
}
.lynch--by-45 {
  border-top: 45px #5d7b92 solid !important;
  border-bottom: 45px #5d7b92 solid !important;
}
.lynch--bx-45 {
  border-right: 45px #5d7b92 solid !important;
  border-left: 45px #5d7b92 solid !important;
}
.lynch--ba-46 {
  border: 46px #5d7b92 solid !important;
}
.lynch--bt-46 {
  border-top: 46px #5d7b92 solid !important;
}
.lynch--br-46 {
  border-right: 46px #5d7b92 solid !important;
}
.lynch--bl-46 {
  border-left: 46px #5d7b92 solid !important;
}
.lynch--bb-46 {
  border-bottom: 46px #5d7b92 solid !important;
}
.lynch--by-46 {
  border-top: 46px #5d7b92 solid !important;
  border-bottom: 46px #5d7b92 solid !important;
}
.lynch--bx-46 {
  border-right: 46px #5d7b92 solid !important;
  border-left: 46px #5d7b92 solid !important;
}
.lynch--ba-47 {
  border: 47px #5d7b92 solid !important;
}
.lynch--bt-47 {
  border-top: 47px #5d7b92 solid !important;
}
.lynch--br-47 {
  border-right: 47px #5d7b92 solid !important;
}
.lynch--bl-47 {
  border-left: 47px #5d7b92 solid !important;
}
.lynch--bb-47 {
  border-bottom: 47px #5d7b92 solid !important;
}
.lynch--by-47 {
  border-top: 47px #5d7b92 solid !important;
  border-bottom: 47px #5d7b92 solid !important;
}
.lynch--bx-47 {
  border-right: 47px #5d7b92 solid !important;
  border-left: 47px #5d7b92 solid !important;
}
.lynch--ba-48 {
  border: 48px #5d7b92 solid !important;
}
.lynch--bt-48 {
  border-top: 48px #5d7b92 solid !important;
}
.lynch--br-48 {
  border-right: 48px #5d7b92 solid !important;
}
.lynch--bl-48 {
  border-left: 48px #5d7b92 solid !important;
}
.lynch--bb-48 {
  border-bottom: 48px #5d7b92 solid !important;
}
.lynch--by-48 {
  border-top: 48px #5d7b92 solid !important;
  border-bottom: 48px #5d7b92 solid !important;
}
.lynch--bx-48 {
  border-right: 48px #5d7b92 solid !important;
  border-left: 48px #5d7b92 solid !important;
}
.lynch--ba-49 {
  border: 49px #5d7b92 solid !important;
}
.lynch--bt-49 {
  border-top: 49px #5d7b92 solid !important;
}
.lynch--br-49 {
  border-right: 49px #5d7b92 solid !important;
}
.lynch--bl-49 {
  border-left: 49px #5d7b92 solid !important;
}
.lynch--bb-49 {
  border-bottom: 49px #5d7b92 solid !important;
}
.lynch--by-49 {
  border-top: 49px #5d7b92 solid !important;
  border-bottom: 49px #5d7b92 solid !important;
}
.lynch--bx-49 {
  border-right: 49px #5d7b92 solid !important;
  border-left: 49px #5d7b92 solid !important;
}
.lynch--ba-50 {
  border: 50px #5d7b92 solid !important;
}
.lynch--bt-50 {
  border-top: 50px #5d7b92 solid !important;
}
.lynch--br-50 {
  border-right: 50px #5d7b92 solid !important;
}
.lynch--bl-50 {
  border-left: 50px #5d7b92 solid !important;
}
.lynch--bb-50 {
  border-bottom: 50px #5d7b92 solid !important;
}
.lynch--by-50 {
  border-top: 50px #5d7b92 solid !important;
  border-bottom: 50px #5d7b92 solid !important;
}
.lynch--bx-50 {
  border-right: 50px #5d7b92 solid !important;
  border-left: 50px #5d7b92 solid !important;
}
.lynch--ba-51 {
  border: 51px #5d7b92 solid !important;
}
.lynch--bt-51 {
  border-top: 51px #5d7b92 solid !important;
}
.lynch--br-51 {
  border-right: 51px #5d7b92 solid !important;
}
.lynch--bl-51 {
  border-left: 51px #5d7b92 solid !important;
}
.lynch--bb-51 {
  border-bottom: 51px #5d7b92 solid !important;
}
.lynch--by-51 {
  border-top: 51px #5d7b92 solid !important;
  border-bottom: 51px #5d7b92 solid !important;
}
.lynch--bx-51 {
  border-right: 51px #5d7b92 solid !important;
  border-left: 51px #5d7b92 solid !important;
}
.lynch--ba-52 {
  border: 52px #5d7b92 solid !important;
}
.lynch--bt-52 {
  border-top: 52px #5d7b92 solid !important;
}
.lynch--br-52 {
  border-right: 52px #5d7b92 solid !important;
}
.lynch--bl-52 {
  border-left: 52px #5d7b92 solid !important;
}
.lynch--bb-52 {
  border-bottom: 52px #5d7b92 solid !important;
}
.lynch--by-52 {
  border-top: 52px #5d7b92 solid !important;
  border-bottom: 52px #5d7b92 solid !important;
}
.lynch--bx-52 {
  border-right: 52px #5d7b92 solid !important;
  border-left: 52px #5d7b92 solid !important;
}
.lynch--ba-53 {
  border: 53px #5d7b92 solid !important;
}
.lynch--bt-53 {
  border-top: 53px #5d7b92 solid !important;
}
.lynch--br-53 {
  border-right: 53px #5d7b92 solid !important;
}
.lynch--bl-53 {
  border-left: 53px #5d7b92 solid !important;
}
.lynch--bb-53 {
  border-bottom: 53px #5d7b92 solid !important;
}
.lynch--by-53 {
  border-top: 53px #5d7b92 solid !important;
  border-bottom: 53px #5d7b92 solid !important;
}
.lynch--bx-53 {
  border-right: 53px #5d7b92 solid !important;
  border-left: 53px #5d7b92 solid !important;
}
.lynch--ba-54 {
  border: 54px #5d7b92 solid !important;
}
.lynch--bt-54 {
  border-top: 54px #5d7b92 solid !important;
}
.lynch--br-54 {
  border-right: 54px #5d7b92 solid !important;
}
.lynch--bl-54 {
  border-left: 54px #5d7b92 solid !important;
}
.lynch--bb-54 {
  border-bottom: 54px #5d7b92 solid !important;
}
.lynch--by-54 {
  border-top: 54px #5d7b92 solid !important;
  border-bottom: 54px #5d7b92 solid !important;
}
.lynch--bx-54 {
  border-right: 54px #5d7b92 solid !important;
  border-left: 54px #5d7b92 solid !important;
}
.lynch--ba-55 {
  border: 55px #5d7b92 solid !important;
}
.lynch--bt-55 {
  border-top: 55px #5d7b92 solid !important;
}
.lynch--br-55 {
  border-right: 55px #5d7b92 solid !important;
}
.lynch--bl-55 {
  border-left: 55px #5d7b92 solid !important;
}
.lynch--bb-55 {
  border-bottom: 55px #5d7b92 solid !important;
}
.lynch--by-55 {
  border-top: 55px #5d7b92 solid !important;
  border-bottom: 55px #5d7b92 solid !important;
}
.lynch--bx-55 {
  border-right: 55px #5d7b92 solid !important;
  border-left: 55px #5d7b92 solid !important;
}
.lynch--ba-56 {
  border: 56px #5d7b92 solid !important;
}
.lynch--bt-56 {
  border-top: 56px #5d7b92 solid !important;
}
.lynch--br-56 {
  border-right: 56px #5d7b92 solid !important;
}
.lynch--bl-56 {
  border-left: 56px #5d7b92 solid !important;
}
.lynch--bb-56 {
  border-bottom: 56px #5d7b92 solid !important;
}
.lynch--by-56 {
  border-top: 56px #5d7b92 solid !important;
  border-bottom: 56px #5d7b92 solid !important;
}
.lynch--bx-56 {
  border-right: 56px #5d7b92 solid !important;
  border-left: 56px #5d7b92 solid !important;
}
.lynch--ba-57 {
  border: 57px #5d7b92 solid !important;
}
.lynch--bt-57 {
  border-top: 57px #5d7b92 solid !important;
}
.lynch--br-57 {
  border-right: 57px #5d7b92 solid !important;
}
.lynch--bl-57 {
  border-left: 57px #5d7b92 solid !important;
}
.lynch--bb-57 {
  border-bottom: 57px #5d7b92 solid !important;
}
.lynch--by-57 {
  border-top: 57px #5d7b92 solid !important;
  border-bottom: 57px #5d7b92 solid !important;
}
.lynch--bx-57 {
  border-right: 57px #5d7b92 solid !important;
  border-left: 57px #5d7b92 solid !important;
}
.lynch--ba-58 {
  border: 58px #5d7b92 solid !important;
}
.lynch--bt-58 {
  border-top: 58px #5d7b92 solid !important;
}
.lynch--br-58 {
  border-right: 58px #5d7b92 solid !important;
}
.lynch--bl-58 {
  border-left: 58px #5d7b92 solid !important;
}
.lynch--bb-58 {
  border-bottom: 58px #5d7b92 solid !important;
}
.lynch--by-58 {
  border-top: 58px #5d7b92 solid !important;
  border-bottom: 58px #5d7b92 solid !important;
}
.lynch--bx-58 {
  border-right: 58px #5d7b92 solid !important;
  border-left: 58px #5d7b92 solid !important;
}
.lynch--ba-59 {
  border: 59px #5d7b92 solid !important;
}
.lynch--bt-59 {
  border-top: 59px #5d7b92 solid !important;
}
.lynch--br-59 {
  border-right: 59px #5d7b92 solid !important;
}
.lynch--bl-59 {
  border-left: 59px #5d7b92 solid !important;
}
.lynch--bb-59 {
  border-bottom: 59px #5d7b92 solid !important;
}
.lynch--by-59 {
  border-top: 59px #5d7b92 solid !important;
  border-bottom: 59px #5d7b92 solid !important;
}
.lynch--bx-59 {
  border-right: 59px #5d7b92 solid !important;
  border-left: 59px #5d7b92 solid !important;
}
.lynch--ba-60 {
  border: 60px #5d7b92 solid !important;
}
.lynch--bt-60 {
  border-top: 60px #5d7b92 solid !important;
}
.lynch--br-60 {
  border-right: 60px #5d7b92 solid !important;
}
.lynch--bl-60 {
  border-left: 60px #5d7b92 solid !important;
}
.lynch--bb-60 {
  border-bottom: 60px #5d7b92 solid !important;
}
.lynch--by-60 {
  border-top: 60px #5d7b92 solid !important;
  border-bottom: 60px #5d7b92 solid !important;
}
.lynch--bx-60 {
  border-right: 60px #5d7b92 solid !important;
  border-left: 60px #5d7b92 solid !important;
}
.lynch--ba-61 {
  border: 61px #5d7b92 solid !important;
}
.lynch--bt-61 {
  border-top: 61px #5d7b92 solid !important;
}
.lynch--br-61 {
  border-right: 61px #5d7b92 solid !important;
}
.lynch--bl-61 {
  border-left: 61px #5d7b92 solid !important;
}
.lynch--bb-61 {
  border-bottom: 61px #5d7b92 solid !important;
}
.lynch--by-61 {
  border-top: 61px #5d7b92 solid !important;
  border-bottom: 61px #5d7b92 solid !important;
}
.lynch--bx-61 {
  border-right: 61px #5d7b92 solid !important;
  border-left: 61px #5d7b92 solid !important;
}
.lynch--ba-62 {
  border: 62px #5d7b92 solid !important;
}
.lynch--bt-62 {
  border-top: 62px #5d7b92 solid !important;
}
.lynch--br-62 {
  border-right: 62px #5d7b92 solid !important;
}
.lynch--bl-62 {
  border-left: 62px #5d7b92 solid !important;
}
.lynch--bb-62 {
  border-bottom: 62px #5d7b92 solid !important;
}
.lynch--by-62 {
  border-top: 62px #5d7b92 solid !important;
  border-bottom: 62px #5d7b92 solid !important;
}
.lynch--bx-62 {
  border-right: 62px #5d7b92 solid !important;
  border-left: 62px #5d7b92 solid !important;
}
.lynch--ba-63 {
  border: 63px #5d7b92 solid !important;
}
.lynch--bt-63 {
  border-top: 63px #5d7b92 solid !important;
}
.lynch--br-63 {
  border-right: 63px #5d7b92 solid !important;
}
.lynch--bl-63 {
  border-left: 63px #5d7b92 solid !important;
}
.lynch--bb-63 {
  border-bottom: 63px #5d7b92 solid !important;
}
.lynch--by-63 {
  border-top: 63px #5d7b92 solid !important;
  border-bottom: 63px #5d7b92 solid !important;
}
.lynch--bx-63 {
  border-right: 63px #5d7b92 solid !important;
  border-left: 63px #5d7b92 solid !important;
}
.lynch--ba-64 {
  border: 64px #5d7b92 solid !important;
}
.lynch--bt-64 {
  border-top: 64px #5d7b92 solid !important;
}
.lynch--br-64 {
  border-right: 64px #5d7b92 solid !important;
}
.lynch--bl-64 {
  border-left: 64px #5d7b92 solid !important;
}
.lynch--bb-64 {
  border-bottom: 64px #5d7b92 solid !important;
}
.lynch--by-64 {
  border-top: 64px #5d7b92 solid !important;
  border-bottom: 64px #5d7b92 solid !important;
}
.lynch--bx-64 {
  border-right: 64px #5d7b92 solid !important;
  border-left: 64px #5d7b92 solid !important;
}
.lynch--ba-65 {
  border: 65px #5d7b92 solid !important;
}
.lynch--bt-65 {
  border-top: 65px #5d7b92 solid !important;
}
.lynch--br-65 {
  border-right: 65px #5d7b92 solid !important;
}
.lynch--bl-65 {
  border-left: 65px #5d7b92 solid !important;
}
.lynch--bb-65 {
  border-bottom: 65px #5d7b92 solid !important;
}
.lynch--by-65 {
  border-top: 65px #5d7b92 solid !important;
  border-bottom: 65px #5d7b92 solid !important;
}
.lynch--bx-65 {
  border-right: 65px #5d7b92 solid !important;
  border-left: 65px #5d7b92 solid !important;
}
.lynch--ba-66 {
  border: 66px #5d7b92 solid !important;
}
.lynch--bt-66 {
  border-top: 66px #5d7b92 solid !important;
}
.lynch--br-66 {
  border-right: 66px #5d7b92 solid !important;
}
.lynch--bl-66 {
  border-left: 66px #5d7b92 solid !important;
}
.lynch--bb-66 {
  border-bottom: 66px #5d7b92 solid !important;
}
.lynch--by-66 {
  border-top: 66px #5d7b92 solid !important;
  border-bottom: 66px #5d7b92 solid !important;
}
.lynch--bx-66 {
  border-right: 66px #5d7b92 solid !important;
  border-left: 66px #5d7b92 solid !important;
}
.lynch--ba-67 {
  border: 67px #5d7b92 solid !important;
}
.lynch--bt-67 {
  border-top: 67px #5d7b92 solid !important;
}
.lynch--br-67 {
  border-right: 67px #5d7b92 solid !important;
}
.lynch--bl-67 {
  border-left: 67px #5d7b92 solid !important;
}
.lynch--bb-67 {
  border-bottom: 67px #5d7b92 solid !important;
}
.lynch--by-67 {
  border-top: 67px #5d7b92 solid !important;
  border-bottom: 67px #5d7b92 solid !important;
}
.lynch--bx-67 {
  border-right: 67px #5d7b92 solid !important;
  border-left: 67px #5d7b92 solid !important;
}
.lynch--ba-68 {
  border: 68px #5d7b92 solid !important;
}
.lynch--bt-68 {
  border-top: 68px #5d7b92 solid !important;
}
.lynch--br-68 {
  border-right: 68px #5d7b92 solid !important;
}
.lynch--bl-68 {
  border-left: 68px #5d7b92 solid !important;
}
.lynch--bb-68 {
  border-bottom: 68px #5d7b92 solid !important;
}
.lynch--by-68 {
  border-top: 68px #5d7b92 solid !important;
  border-bottom: 68px #5d7b92 solid !important;
}
.lynch--bx-68 {
  border-right: 68px #5d7b92 solid !important;
  border-left: 68px #5d7b92 solid !important;
}
.lynch--ba-69 {
  border: 69px #5d7b92 solid !important;
}
.lynch--bt-69 {
  border-top: 69px #5d7b92 solid !important;
}
.lynch--br-69 {
  border-right: 69px #5d7b92 solid !important;
}
.lynch--bl-69 {
  border-left: 69px #5d7b92 solid !important;
}
.lynch--bb-69 {
  border-bottom: 69px #5d7b92 solid !important;
}
.lynch--by-69 {
  border-top: 69px #5d7b92 solid !important;
  border-bottom: 69px #5d7b92 solid !important;
}
.lynch--bx-69 {
  border-right: 69px #5d7b92 solid !important;
  border-left: 69px #5d7b92 solid !important;
}
.lynch--ba-70 {
  border: 70px #5d7b92 solid !important;
}
.lynch--bt-70 {
  border-top: 70px #5d7b92 solid !important;
}
.lynch--br-70 {
  border-right: 70px #5d7b92 solid !important;
}
.lynch--bl-70 {
  border-left: 70px #5d7b92 solid !important;
}
.lynch--bb-70 {
  border-bottom: 70px #5d7b92 solid !important;
}
.lynch--by-70 {
  border-top: 70px #5d7b92 solid !important;
  border-bottom: 70px #5d7b92 solid !important;
}
.lynch--bx-70 {
  border-right: 70px #5d7b92 solid !important;
  border-left: 70px #5d7b92 solid !important;
}
.lynch--ba-71 {
  border: 71px #5d7b92 solid !important;
}
.lynch--bt-71 {
  border-top: 71px #5d7b92 solid !important;
}
.lynch--br-71 {
  border-right: 71px #5d7b92 solid !important;
}
.lynch--bl-71 {
  border-left: 71px #5d7b92 solid !important;
}
.lynch--bb-71 {
  border-bottom: 71px #5d7b92 solid !important;
}
.lynch--by-71 {
  border-top: 71px #5d7b92 solid !important;
  border-bottom: 71px #5d7b92 solid !important;
}
.lynch--bx-71 {
  border-right: 71px #5d7b92 solid !important;
  border-left: 71px #5d7b92 solid !important;
}
.lynch--ba-72 {
  border: 72px #5d7b92 solid !important;
}
.lynch--bt-72 {
  border-top: 72px #5d7b92 solid !important;
}
.lynch--br-72 {
  border-right: 72px #5d7b92 solid !important;
}
.lynch--bl-72 {
  border-left: 72px #5d7b92 solid !important;
}
.lynch--bb-72 {
  border-bottom: 72px #5d7b92 solid !important;
}
.lynch--by-72 {
  border-top: 72px #5d7b92 solid !important;
  border-bottom: 72px #5d7b92 solid !important;
}
.lynch--bx-72 {
  border-right: 72px #5d7b92 solid !important;
  border-left: 72px #5d7b92 solid !important;
}
.lynch--ba-73 {
  border: 73px #5d7b92 solid !important;
}
.lynch--bt-73 {
  border-top: 73px #5d7b92 solid !important;
}
.lynch--br-73 {
  border-right: 73px #5d7b92 solid !important;
}
.lynch--bl-73 {
  border-left: 73px #5d7b92 solid !important;
}
.lynch--bb-73 {
  border-bottom: 73px #5d7b92 solid !important;
}
.lynch--by-73 {
  border-top: 73px #5d7b92 solid !important;
  border-bottom: 73px #5d7b92 solid !important;
}
.lynch--bx-73 {
  border-right: 73px #5d7b92 solid !important;
  border-left: 73px #5d7b92 solid !important;
}
.lynch--ba-74 {
  border: 74px #5d7b92 solid !important;
}
.lynch--bt-74 {
  border-top: 74px #5d7b92 solid !important;
}
.lynch--br-74 {
  border-right: 74px #5d7b92 solid !important;
}
.lynch--bl-74 {
  border-left: 74px #5d7b92 solid !important;
}
.lynch--bb-74 {
  border-bottom: 74px #5d7b92 solid !important;
}
.lynch--by-74 {
  border-top: 74px #5d7b92 solid !important;
  border-bottom: 74px #5d7b92 solid !important;
}
.lynch--bx-74 {
  border-right: 74px #5d7b92 solid !important;
  border-left: 74px #5d7b92 solid !important;
}
.lynch--ba-75 {
  border: 75px #5d7b92 solid !important;
}
.lynch--bt-75 {
  border-top: 75px #5d7b92 solid !important;
}
.lynch--br-75 {
  border-right: 75px #5d7b92 solid !important;
}
.lynch--bl-75 {
  border-left: 75px #5d7b92 solid !important;
}
.lynch--bb-75 {
  border-bottom: 75px #5d7b92 solid !important;
}
.lynch--by-75 {
  border-top: 75px #5d7b92 solid !important;
  border-bottom: 75px #5d7b92 solid !important;
}
.lynch--bx-75 {
  border-right: 75px #5d7b92 solid !important;
  border-left: 75px #5d7b92 solid !important;
}
.lynch--ba-76 {
  border: 76px #5d7b92 solid !important;
}
.lynch--bt-76 {
  border-top: 76px #5d7b92 solid !important;
}
.lynch--br-76 {
  border-right: 76px #5d7b92 solid !important;
}
.lynch--bl-76 {
  border-left: 76px #5d7b92 solid !important;
}
.lynch--bb-76 {
  border-bottom: 76px #5d7b92 solid !important;
}
.lynch--by-76 {
  border-top: 76px #5d7b92 solid !important;
  border-bottom: 76px #5d7b92 solid !important;
}
.lynch--bx-76 {
  border-right: 76px #5d7b92 solid !important;
  border-left: 76px #5d7b92 solid !important;
}
.lynch--ba-77 {
  border: 77px #5d7b92 solid !important;
}
.lynch--bt-77 {
  border-top: 77px #5d7b92 solid !important;
}
.lynch--br-77 {
  border-right: 77px #5d7b92 solid !important;
}
.lynch--bl-77 {
  border-left: 77px #5d7b92 solid !important;
}
.lynch--bb-77 {
  border-bottom: 77px #5d7b92 solid !important;
}
.lynch--by-77 {
  border-top: 77px #5d7b92 solid !important;
  border-bottom: 77px #5d7b92 solid !important;
}
.lynch--bx-77 {
  border-right: 77px #5d7b92 solid !important;
  border-left: 77px #5d7b92 solid !important;
}
.lynch--ba-78 {
  border: 78px #5d7b92 solid !important;
}
.lynch--bt-78 {
  border-top: 78px #5d7b92 solid !important;
}
.lynch--br-78 {
  border-right: 78px #5d7b92 solid !important;
}
.lynch--bl-78 {
  border-left: 78px #5d7b92 solid !important;
}
.lynch--bb-78 {
  border-bottom: 78px #5d7b92 solid !important;
}
.lynch--by-78 {
  border-top: 78px #5d7b92 solid !important;
  border-bottom: 78px #5d7b92 solid !important;
}
.lynch--bx-78 {
  border-right: 78px #5d7b92 solid !important;
  border-left: 78px #5d7b92 solid !important;
}
.lynch--ba-79 {
  border: 79px #5d7b92 solid !important;
}
.lynch--bt-79 {
  border-top: 79px #5d7b92 solid !important;
}
.lynch--br-79 {
  border-right: 79px #5d7b92 solid !important;
}
.lynch--bl-79 {
  border-left: 79px #5d7b92 solid !important;
}
.lynch--bb-79 {
  border-bottom: 79px #5d7b92 solid !important;
}
.lynch--by-79 {
  border-top: 79px #5d7b92 solid !important;
  border-bottom: 79px #5d7b92 solid !important;
}
.lynch--bx-79 {
  border-right: 79px #5d7b92 solid !important;
  border-left: 79px #5d7b92 solid !important;
}
.lynch--ba-80 {
  border: 80px #5d7b92 solid !important;
}
.lynch--bt-80 {
  border-top: 80px #5d7b92 solid !important;
}
.lynch--br-80 {
  border-right: 80px #5d7b92 solid !important;
}
.lynch--bl-80 {
  border-left: 80px #5d7b92 solid !important;
}
.lynch--bb-80 {
  border-bottom: 80px #5d7b92 solid !important;
}
.lynch--by-80 {
  border-top: 80px #5d7b92 solid !important;
  border-bottom: 80px #5d7b92 solid !important;
}
.lynch--bx-80 {
  border-right: 80px #5d7b92 solid !important;
  border-left: 80px #5d7b92 solid !important;
}
.lynch--ba-81 {
  border: 81px #5d7b92 solid !important;
}
.lynch--bt-81 {
  border-top: 81px #5d7b92 solid !important;
}
.lynch--br-81 {
  border-right: 81px #5d7b92 solid !important;
}
.lynch--bl-81 {
  border-left: 81px #5d7b92 solid !important;
}
.lynch--bb-81 {
  border-bottom: 81px #5d7b92 solid !important;
}
.lynch--by-81 {
  border-top: 81px #5d7b92 solid !important;
  border-bottom: 81px #5d7b92 solid !important;
}
.lynch--bx-81 {
  border-right: 81px #5d7b92 solid !important;
  border-left: 81px #5d7b92 solid !important;
}
.lynch--ba-82 {
  border: 82px #5d7b92 solid !important;
}
.lynch--bt-82 {
  border-top: 82px #5d7b92 solid !important;
}
.lynch--br-82 {
  border-right: 82px #5d7b92 solid !important;
}
.lynch--bl-82 {
  border-left: 82px #5d7b92 solid !important;
}
.lynch--bb-82 {
  border-bottom: 82px #5d7b92 solid !important;
}
.lynch--by-82 {
  border-top: 82px #5d7b92 solid !important;
  border-bottom: 82px #5d7b92 solid !important;
}
.lynch--bx-82 {
  border-right: 82px #5d7b92 solid !important;
  border-left: 82px #5d7b92 solid !important;
}
.lynch--ba-83 {
  border: 83px #5d7b92 solid !important;
}
.lynch--bt-83 {
  border-top: 83px #5d7b92 solid !important;
}
.lynch--br-83 {
  border-right: 83px #5d7b92 solid !important;
}
.lynch--bl-83 {
  border-left: 83px #5d7b92 solid !important;
}
.lynch--bb-83 {
  border-bottom: 83px #5d7b92 solid !important;
}
.lynch--by-83 {
  border-top: 83px #5d7b92 solid !important;
  border-bottom: 83px #5d7b92 solid !important;
}
.lynch--bx-83 {
  border-right: 83px #5d7b92 solid !important;
  border-left: 83px #5d7b92 solid !important;
}
.lynch--ba-84 {
  border: 84px #5d7b92 solid !important;
}
.lynch--bt-84 {
  border-top: 84px #5d7b92 solid !important;
}
.lynch--br-84 {
  border-right: 84px #5d7b92 solid !important;
}
.lynch--bl-84 {
  border-left: 84px #5d7b92 solid !important;
}
.lynch--bb-84 {
  border-bottom: 84px #5d7b92 solid !important;
}
.lynch--by-84 {
  border-top: 84px #5d7b92 solid !important;
  border-bottom: 84px #5d7b92 solid !important;
}
.lynch--bx-84 {
  border-right: 84px #5d7b92 solid !important;
  border-left: 84px #5d7b92 solid !important;
}
.lynch--ba-85 {
  border: 85px #5d7b92 solid !important;
}
.lynch--bt-85 {
  border-top: 85px #5d7b92 solid !important;
}
.lynch--br-85 {
  border-right: 85px #5d7b92 solid !important;
}
.lynch--bl-85 {
  border-left: 85px #5d7b92 solid !important;
}
.lynch--bb-85 {
  border-bottom: 85px #5d7b92 solid !important;
}
.lynch--by-85 {
  border-top: 85px #5d7b92 solid !important;
  border-bottom: 85px #5d7b92 solid !important;
}
.lynch--bx-85 {
  border-right: 85px #5d7b92 solid !important;
  border-left: 85px #5d7b92 solid !important;
}
.lynch--ba-86 {
  border: 86px #5d7b92 solid !important;
}
.lynch--bt-86 {
  border-top: 86px #5d7b92 solid !important;
}
.lynch--br-86 {
  border-right: 86px #5d7b92 solid !important;
}
.lynch--bl-86 {
  border-left: 86px #5d7b92 solid !important;
}
.lynch--bb-86 {
  border-bottom: 86px #5d7b92 solid !important;
}
.lynch--by-86 {
  border-top: 86px #5d7b92 solid !important;
  border-bottom: 86px #5d7b92 solid !important;
}
.lynch--bx-86 {
  border-right: 86px #5d7b92 solid !important;
  border-left: 86px #5d7b92 solid !important;
}
.lynch--ba-87 {
  border: 87px #5d7b92 solid !important;
}
.lynch--bt-87 {
  border-top: 87px #5d7b92 solid !important;
}
.lynch--br-87 {
  border-right: 87px #5d7b92 solid !important;
}
.lynch--bl-87 {
  border-left: 87px #5d7b92 solid !important;
}
.lynch--bb-87 {
  border-bottom: 87px #5d7b92 solid !important;
}
.lynch--by-87 {
  border-top: 87px #5d7b92 solid !important;
  border-bottom: 87px #5d7b92 solid !important;
}
.lynch--bx-87 {
  border-right: 87px #5d7b92 solid !important;
  border-left: 87px #5d7b92 solid !important;
}
.lynch--ba-88 {
  border: 88px #5d7b92 solid !important;
}
.lynch--bt-88 {
  border-top: 88px #5d7b92 solid !important;
}
.lynch--br-88 {
  border-right: 88px #5d7b92 solid !important;
}
.lynch--bl-88 {
  border-left: 88px #5d7b92 solid !important;
}
.lynch--bb-88 {
  border-bottom: 88px #5d7b92 solid !important;
}
.lynch--by-88 {
  border-top: 88px #5d7b92 solid !important;
  border-bottom: 88px #5d7b92 solid !important;
}
.lynch--bx-88 {
  border-right: 88px #5d7b92 solid !important;
  border-left: 88px #5d7b92 solid !important;
}
.lynch--ba-89 {
  border: 89px #5d7b92 solid !important;
}
.lynch--bt-89 {
  border-top: 89px #5d7b92 solid !important;
}
.lynch--br-89 {
  border-right: 89px #5d7b92 solid !important;
}
.lynch--bl-89 {
  border-left: 89px #5d7b92 solid !important;
}
.lynch--bb-89 {
  border-bottom: 89px #5d7b92 solid !important;
}
.lynch--by-89 {
  border-top: 89px #5d7b92 solid !important;
  border-bottom: 89px #5d7b92 solid !important;
}
.lynch--bx-89 {
  border-right: 89px #5d7b92 solid !important;
  border-left: 89px #5d7b92 solid !important;
}
.lynch--ba-90 {
  border: 90px #5d7b92 solid !important;
}
.lynch--bt-90 {
  border-top: 90px #5d7b92 solid !important;
}
.lynch--br-90 {
  border-right: 90px #5d7b92 solid !important;
}
.lynch--bl-90 {
  border-left: 90px #5d7b92 solid !important;
}
.lynch--bb-90 {
  border-bottom: 90px #5d7b92 solid !important;
}
.lynch--by-90 {
  border-top: 90px #5d7b92 solid !important;
  border-bottom: 90px #5d7b92 solid !important;
}
.lynch--bx-90 {
  border-right: 90px #5d7b92 solid !important;
  border-left: 90px #5d7b92 solid !important;
}
.lynch--ba-91 {
  border: 91px #5d7b92 solid !important;
}
.lynch--bt-91 {
  border-top: 91px #5d7b92 solid !important;
}
.lynch--br-91 {
  border-right: 91px #5d7b92 solid !important;
}
.lynch--bl-91 {
  border-left: 91px #5d7b92 solid !important;
}
.lynch--bb-91 {
  border-bottom: 91px #5d7b92 solid !important;
}
.lynch--by-91 {
  border-top: 91px #5d7b92 solid !important;
  border-bottom: 91px #5d7b92 solid !important;
}
.lynch--bx-91 {
  border-right: 91px #5d7b92 solid !important;
  border-left: 91px #5d7b92 solid !important;
}
.lynch--ba-92 {
  border: 92px #5d7b92 solid !important;
}
.lynch--bt-92 {
  border-top: 92px #5d7b92 solid !important;
}
.lynch--br-92 {
  border-right: 92px #5d7b92 solid !important;
}
.lynch--bl-92 {
  border-left: 92px #5d7b92 solid !important;
}
.lynch--bb-92 {
  border-bottom: 92px #5d7b92 solid !important;
}
.lynch--by-92 {
  border-top: 92px #5d7b92 solid !important;
  border-bottom: 92px #5d7b92 solid !important;
}
.lynch--bx-92 {
  border-right: 92px #5d7b92 solid !important;
  border-left: 92px #5d7b92 solid !important;
}
.lynch--ba-93 {
  border: 93px #5d7b92 solid !important;
}
.lynch--bt-93 {
  border-top: 93px #5d7b92 solid !important;
}
.lynch--br-93 {
  border-right: 93px #5d7b92 solid !important;
}
.lynch--bl-93 {
  border-left: 93px #5d7b92 solid !important;
}
.lynch--bb-93 {
  border-bottom: 93px #5d7b92 solid !important;
}
.lynch--by-93 {
  border-top: 93px #5d7b92 solid !important;
  border-bottom: 93px #5d7b92 solid !important;
}
.lynch--bx-93 {
  border-right: 93px #5d7b92 solid !important;
  border-left: 93px #5d7b92 solid !important;
}
.lynch--ba-94 {
  border: 94px #5d7b92 solid !important;
}
.lynch--bt-94 {
  border-top: 94px #5d7b92 solid !important;
}
.lynch--br-94 {
  border-right: 94px #5d7b92 solid !important;
}
.lynch--bl-94 {
  border-left: 94px #5d7b92 solid !important;
}
.lynch--bb-94 {
  border-bottom: 94px #5d7b92 solid !important;
}
.lynch--by-94 {
  border-top: 94px #5d7b92 solid !important;
  border-bottom: 94px #5d7b92 solid !important;
}
.lynch--bx-94 {
  border-right: 94px #5d7b92 solid !important;
  border-left: 94px #5d7b92 solid !important;
}
.lynch--ba-95 {
  border: 95px #5d7b92 solid !important;
}
.lynch--bt-95 {
  border-top: 95px #5d7b92 solid !important;
}
.lynch--br-95 {
  border-right: 95px #5d7b92 solid !important;
}
.lynch--bl-95 {
  border-left: 95px #5d7b92 solid !important;
}
.lynch--bb-95 {
  border-bottom: 95px #5d7b92 solid !important;
}
.lynch--by-95 {
  border-top: 95px #5d7b92 solid !important;
  border-bottom: 95px #5d7b92 solid !important;
}
.lynch--bx-95 {
  border-right: 95px #5d7b92 solid !important;
  border-left: 95px #5d7b92 solid !important;
}
.lynch--ba-96 {
  border: 96px #5d7b92 solid !important;
}
.lynch--bt-96 {
  border-top: 96px #5d7b92 solid !important;
}
.lynch--br-96 {
  border-right: 96px #5d7b92 solid !important;
}
.lynch--bl-96 {
  border-left: 96px #5d7b92 solid !important;
}
.lynch--bb-96 {
  border-bottom: 96px #5d7b92 solid !important;
}
.lynch--by-96 {
  border-top: 96px #5d7b92 solid !important;
  border-bottom: 96px #5d7b92 solid !important;
}
.lynch--bx-96 {
  border-right: 96px #5d7b92 solid !important;
  border-left: 96px #5d7b92 solid !important;
}
.lynch--ba-97 {
  border: 97px #5d7b92 solid !important;
}
.lynch--bt-97 {
  border-top: 97px #5d7b92 solid !important;
}
.lynch--br-97 {
  border-right: 97px #5d7b92 solid !important;
}
.lynch--bl-97 {
  border-left: 97px #5d7b92 solid !important;
}
.lynch--bb-97 {
  border-bottom: 97px #5d7b92 solid !important;
}
.lynch--by-97 {
  border-top: 97px #5d7b92 solid !important;
  border-bottom: 97px #5d7b92 solid !important;
}
.lynch--bx-97 {
  border-right: 97px #5d7b92 solid !important;
  border-left: 97px #5d7b92 solid !important;
}
.lynch--ba-98 {
  border: 98px #5d7b92 solid !important;
}
.lynch--bt-98 {
  border-top: 98px #5d7b92 solid !important;
}
.lynch--br-98 {
  border-right: 98px #5d7b92 solid !important;
}
.lynch--bl-98 {
  border-left: 98px #5d7b92 solid !important;
}
.lynch--bb-98 {
  border-bottom: 98px #5d7b92 solid !important;
}
.lynch--by-98 {
  border-top: 98px #5d7b92 solid !important;
  border-bottom: 98px #5d7b92 solid !important;
}
.lynch--bx-98 {
  border-right: 98px #5d7b92 solid !important;
  border-left: 98px #5d7b92 solid !important;
}
.lynch--ba-99 {
  border: 99px #5d7b92 solid !important;
}
.lynch--bt-99 {
  border-top: 99px #5d7b92 solid !important;
}
.lynch--br-99 {
  border-right: 99px #5d7b92 solid !important;
}
.lynch--bl-99 {
  border-left: 99px #5d7b92 solid !important;
}
.lynch--bb-99 {
  border-bottom: 99px #5d7b92 solid !important;
}
.lynch--by-99 {
  border-top: 99px #5d7b92 solid !important;
  border-bottom: 99px #5d7b92 solid !important;
}
.lynch--bx-99 {
  border-right: 99px #5d7b92 solid !important;
  border-left: 99px #5d7b92 solid !important;
}
.lynch--ba-100 {
  border: 100px #5d7b92 solid !important;
}
.lynch--bt-100 {
  border-top: 100px #5d7b92 solid !important;
}
.lynch--br-100 {
  border-right: 100px #5d7b92 solid !important;
}
.lynch--bl-100 {
  border-left: 100px #5d7b92 solid !important;
}
.lynch--bb-100 {
  border-bottom: 100px #5d7b92 solid !important;
}
.lynch--by-100 {
  border-top: 100px #5d7b92 solid !important;
  border-bottom: 100px #5d7b92 solid !important;
}
.lynch--bx-100 {
  border-right: 100px #5d7b92 solid !important;
  border-left: 100px #5d7b92 solid !important;
}
.comet--ba-1 {
  border: 1px #595d87 solid !important;
}
.comet--bt-1 {
  border-top: 1px #595d87 solid !important;
}
.comet--br-1 {
  border-right: 1px #595d87 solid !important;
}
.comet--bl-1 {
  border-left: 1px #595d87 solid !important;
}
.comet--bb-1 {
  border-bottom: 1px #595d87 solid !important;
}
.comet--by-1 {
  border-top: 1px #595d87 solid !important;
  border-bottom: 1px #595d87 solid !important;
}
.comet--bx-1 {
  border-right: 1px #595d87 solid !important;
  border-left: 1px #595d87 solid !important;
}
.comet--ba-2 {
  border: 2px #595d87 solid !important;
}
.comet--bt-2 {
  border-top: 2px #595d87 solid !important;
}
.comet--br-2 {
  border-right: 2px #595d87 solid !important;
}
.comet--bl-2 {
  border-left: 2px #595d87 solid !important;
}
.comet--bb-2 {
  border-bottom: 2px #595d87 solid !important;
}
.comet--by-2 {
  border-top: 2px #595d87 solid !important;
  border-bottom: 2px #595d87 solid !important;
}
.comet--bx-2 {
  border-right: 2px #595d87 solid !important;
  border-left: 2px #595d87 solid !important;
}
.comet--ba-3 {
  border: 3px #595d87 solid !important;
}
.comet--bt-3 {
  border-top: 3px #595d87 solid !important;
}
.comet--br-3 {
  border-right: 3px #595d87 solid !important;
}
.comet--bl-3 {
  border-left: 3px #595d87 solid !important;
}
.comet--bb-3 {
  border-bottom: 3px #595d87 solid !important;
}
.comet--by-3 {
  border-top: 3px #595d87 solid !important;
  border-bottom: 3px #595d87 solid !important;
}
.comet--bx-3 {
  border-right: 3px #595d87 solid !important;
  border-left: 3px #595d87 solid !important;
}
.comet--ba-4 {
  border: 4px #595d87 solid !important;
}
.comet--bt-4 {
  border-top: 4px #595d87 solid !important;
}
.comet--br-4 {
  border-right: 4px #595d87 solid !important;
}
.comet--bl-4 {
  border-left: 4px #595d87 solid !important;
}
.comet--bb-4 {
  border-bottom: 4px #595d87 solid !important;
}
.comet--by-4 {
  border-top: 4px #595d87 solid !important;
  border-bottom: 4px #595d87 solid !important;
}
.comet--bx-4 {
  border-right: 4px #595d87 solid !important;
  border-left: 4px #595d87 solid !important;
}
.comet--ba-5 {
  border: 5px #595d87 solid !important;
}
.comet--bt-5 {
  border-top: 5px #595d87 solid !important;
}
.comet--br-5 {
  border-right: 5px #595d87 solid !important;
}
.comet--bl-5 {
  border-left: 5px #595d87 solid !important;
}
.comet--bb-5 {
  border-bottom: 5px #595d87 solid !important;
}
.comet--by-5 {
  border-top: 5px #595d87 solid !important;
  border-bottom: 5px #595d87 solid !important;
}
.comet--bx-5 {
  border-right: 5px #595d87 solid !important;
  border-left: 5px #595d87 solid !important;
}
.comet--ba-6 {
  border: 6px #595d87 solid !important;
}
.comet--bt-6 {
  border-top: 6px #595d87 solid !important;
}
.comet--br-6 {
  border-right: 6px #595d87 solid !important;
}
.comet--bl-6 {
  border-left: 6px #595d87 solid !important;
}
.comet--bb-6 {
  border-bottom: 6px #595d87 solid !important;
}
.comet--by-6 {
  border-top: 6px #595d87 solid !important;
  border-bottom: 6px #595d87 solid !important;
}
.comet--bx-6 {
  border-right: 6px #595d87 solid !important;
  border-left: 6px #595d87 solid !important;
}
.comet--ba-7 {
  border: 7px #595d87 solid !important;
}
.comet--bt-7 {
  border-top: 7px #595d87 solid !important;
}
.comet--br-7 {
  border-right: 7px #595d87 solid !important;
}
.comet--bl-7 {
  border-left: 7px #595d87 solid !important;
}
.comet--bb-7 {
  border-bottom: 7px #595d87 solid !important;
}
.comet--by-7 {
  border-top: 7px #595d87 solid !important;
  border-bottom: 7px #595d87 solid !important;
}
.comet--bx-7 {
  border-right: 7px #595d87 solid !important;
  border-left: 7px #595d87 solid !important;
}
.comet--ba-8 {
  border: 8px #595d87 solid !important;
}
.comet--bt-8 {
  border-top: 8px #595d87 solid !important;
}
.comet--br-8 {
  border-right: 8px #595d87 solid !important;
}
.comet--bl-8 {
  border-left: 8px #595d87 solid !important;
}
.comet--bb-8 {
  border-bottom: 8px #595d87 solid !important;
}
.comet--by-8 {
  border-top: 8px #595d87 solid !important;
  border-bottom: 8px #595d87 solid !important;
}
.comet--bx-8 {
  border-right: 8px #595d87 solid !important;
  border-left: 8px #595d87 solid !important;
}
.comet--ba-9 {
  border: 9px #595d87 solid !important;
}
.comet--bt-9 {
  border-top: 9px #595d87 solid !important;
}
.comet--br-9 {
  border-right: 9px #595d87 solid !important;
}
.comet--bl-9 {
  border-left: 9px #595d87 solid !important;
}
.comet--bb-9 {
  border-bottom: 9px #595d87 solid !important;
}
.comet--by-9 {
  border-top: 9px #595d87 solid !important;
  border-bottom: 9px #595d87 solid !important;
}
.comet--bx-9 {
  border-right: 9px #595d87 solid !important;
  border-left: 9px #595d87 solid !important;
}
.comet--ba-10 {
  border: 10px #595d87 solid !important;
}
.comet--bt-10 {
  border-top: 10px #595d87 solid !important;
}
.comet--br-10 {
  border-right: 10px #595d87 solid !important;
}
.comet--bl-10 {
  border-left: 10px #595d87 solid !important;
}
.comet--bb-10 {
  border-bottom: 10px #595d87 solid !important;
}
.comet--by-10 {
  border-top: 10px #595d87 solid !important;
  border-bottom: 10px #595d87 solid !important;
}
.comet--bx-10 {
  border-right: 10px #595d87 solid !important;
  border-left: 10px #595d87 solid !important;
}
.comet--ba-11 {
  border: 11px #595d87 solid !important;
}
.comet--bt-11 {
  border-top: 11px #595d87 solid !important;
}
.comet--br-11 {
  border-right: 11px #595d87 solid !important;
}
.comet--bl-11 {
  border-left: 11px #595d87 solid !important;
}
.comet--bb-11 {
  border-bottom: 11px #595d87 solid !important;
}
.comet--by-11 {
  border-top: 11px #595d87 solid !important;
  border-bottom: 11px #595d87 solid !important;
}
.comet--bx-11 {
  border-right: 11px #595d87 solid !important;
  border-left: 11px #595d87 solid !important;
}
.comet--ba-12 {
  border: 12px #595d87 solid !important;
}
.comet--bt-12 {
  border-top: 12px #595d87 solid !important;
}
.comet--br-12 {
  border-right: 12px #595d87 solid !important;
}
.comet--bl-12 {
  border-left: 12px #595d87 solid !important;
}
.comet--bb-12 {
  border-bottom: 12px #595d87 solid !important;
}
.comet--by-12 {
  border-top: 12px #595d87 solid !important;
  border-bottom: 12px #595d87 solid !important;
}
.comet--bx-12 {
  border-right: 12px #595d87 solid !important;
  border-left: 12px #595d87 solid !important;
}
.comet--ba-13 {
  border: 13px #595d87 solid !important;
}
.comet--bt-13 {
  border-top: 13px #595d87 solid !important;
}
.comet--br-13 {
  border-right: 13px #595d87 solid !important;
}
.comet--bl-13 {
  border-left: 13px #595d87 solid !important;
}
.comet--bb-13 {
  border-bottom: 13px #595d87 solid !important;
}
.comet--by-13 {
  border-top: 13px #595d87 solid !important;
  border-bottom: 13px #595d87 solid !important;
}
.comet--bx-13 {
  border-right: 13px #595d87 solid !important;
  border-left: 13px #595d87 solid !important;
}
.comet--ba-14 {
  border: 14px #595d87 solid !important;
}
.comet--bt-14 {
  border-top: 14px #595d87 solid !important;
}
.comet--br-14 {
  border-right: 14px #595d87 solid !important;
}
.comet--bl-14 {
  border-left: 14px #595d87 solid !important;
}
.comet--bb-14 {
  border-bottom: 14px #595d87 solid !important;
}
.comet--by-14 {
  border-top: 14px #595d87 solid !important;
  border-bottom: 14px #595d87 solid !important;
}
.comet--bx-14 {
  border-right: 14px #595d87 solid !important;
  border-left: 14px #595d87 solid !important;
}
.comet--ba-15 {
  border: 15px #595d87 solid !important;
}
.comet--bt-15 {
  border-top: 15px #595d87 solid !important;
}
.comet--br-15 {
  border-right: 15px #595d87 solid !important;
}
.comet--bl-15 {
  border-left: 15px #595d87 solid !important;
}
.comet--bb-15 {
  border-bottom: 15px #595d87 solid !important;
}
.comet--by-15 {
  border-top: 15px #595d87 solid !important;
  border-bottom: 15px #595d87 solid !important;
}
.comet--bx-15 {
  border-right: 15px #595d87 solid !important;
  border-left: 15px #595d87 solid !important;
}
.comet--ba-16 {
  border: 16px #595d87 solid !important;
}
.comet--bt-16 {
  border-top: 16px #595d87 solid !important;
}
.comet--br-16 {
  border-right: 16px #595d87 solid !important;
}
.comet--bl-16 {
  border-left: 16px #595d87 solid !important;
}
.comet--bb-16 {
  border-bottom: 16px #595d87 solid !important;
}
.comet--by-16 {
  border-top: 16px #595d87 solid !important;
  border-bottom: 16px #595d87 solid !important;
}
.comet--bx-16 {
  border-right: 16px #595d87 solid !important;
  border-left: 16px #595d87 solid !important;
}
.comet--ba-17 {
  border: 17px #595d87 solid !important;
}
.comet--bt-17 {
  border-top: 17px #595d87 solid !important;
}
.comet--br-17 {
  border-right: 17px #595d87 solid !important;
}
.comet--bl-17 {
  border-left: 17px #595d87 solid !important;
}
.comet--bb-17 {
  border-bottom: 17px #595d87 solid !important;
}
.comet--by-17 {
  border-top: 17px #595d87 solid !important;
  border-bottom: 17px #595d87 solid !important;
}
.comet--bx-17 {
  border-right: 17px #595d87 solid !important;
  border-left: 17px #595d87 solid !important;
}
.comet--ba-18 {
  border: 18px #595d87 solid !important;
}
.comet--bt-18 {
  border-top: 18px #595d87 solid !important;
}
.comet--br-18 {
  border-right: 18px #595d87 solid !important;
}
.comet--bl-18 {
  border-left: 18px #595d87 solid !important;
}
.comet--bb-18 {
  border-bottom: 18px #595d87 solid !important;
}
.comet--by-18 {
  border-top: 18px #595d87 solid !important;
  border-bottom: 18px #595d87 solid !important;
}
.comet--bx-18 {
  border-right: 18px #595d87 solid !important;
  border-left: 18px #595d87 solid !important;
}
.comet--ba-19 {
  border: 19px #595d87 solid !important;
}
.comet--bt-19 {
  border-top: 19px #595d87 solid !important;
}
.comet--br-19 {
  border-right: 19px #595d87 solid !important;
}
.comet--bl-19 {
  border-left: 19px #595d87 solid !important;
}
.comet--bb-19 {
  border-bottom: 19px #595d87 solid !important;
}
.comet--by-19 {
  border-top: 19px #595d87 solid !important;
  border-bottom: 19px #595d87 solid !important;
}
.comet--bx-19 {
  border-right: 19px #595d87 solid !important;
  border-left: 19px #595d87 solid !important;
}
.comet--ba-20 {
  border: 20px #595d87 solid !important;
}
.comet--bt-20 {
  border-top: 20px #595d87 solid !important;
}
.comet--br-20 {
  border-right: 20px #595d87 solid !important;
}
.comet--bl-20 {
  border-left: 20px #595d87 solid !important;
}
.comet--bb-20 {
  border-bottom: 20px #595d87 solid !important;
}
.comet--by-20 {
  border-top: 20px #595d87 solid !important;
  border-bottom: 20px #595d87 solid !important;
}
.comet--bx-20 {
  border-right: 20px #595d87 solid !important;
  border-left: 20px #595d87 solid !important;
}
.comet--ba-21 {
  border: 21px #595d87 solid !important;
}
.comet--bt-21 {
  border-top: 21px #595d87 solid !important;
}
.comet--br-21 {
  border-right: 21px #595d87 solid !important;
}
.comet--bl-21 {
  border-left: 21px #595d87 solid !important;
}
.comet--bb-21 {
  border-bottom: 21px #595d87 solid !important;
}
.comet--by-21 {
  border-top: 21px #595d87 solid !important;
  border-bottom: 21px #595d87 solid !important;
}
.comet--bx-21 {
  border-right: 21px #595d87 solid !important;
  border-left: 21px #595d87 solid !important;
}
.comet--ba-22 {
  border: 22px #595d87 solid !important;
}
.comet--bt-22 {
  border-top: 22px #595d87 solid !important;
}
.comet--br-22 {
  border-right: 22px #595d87 solid !important;
}
.comet--bl-22 {
  border-left: 22px #595d87 solid !important;
}
.comet--bb-22 {
  border-bottom: 22px #595d87 solid !important;
}
.comet--by-22 {
  border-top: 22px #595d87 solid !important;
  border-bottom: 22px #595d87 solid !important;
}
.comet--bx-22 {
  border-right: 22px #595d87 solid !important;
  border-left: 22px #595d87 solid !important;
}
.comet--ba-23 {
  border: 23px #595d87 solid !important;
}
.comet--bt-23 {
  border-top: 23px #595d87 solid !important;
}
.comet--br-23 {
  border-right: 23px #595d87 solid !important;
}
.comet--bl-23 {
  border-left: 23px #595d87 solid !important;
}
.comet--bb-23 {
  border-bottom: 23px #595d87 solid !important;
}
.comet--by-23 {
  border-top: 23px #595d87 solid !important;
  border-bottom: 23px #595d87 solid !important;
}
.comet--bx-23 {
  border-right: 23px #595d87 solid !important;
  border-left: 23px #595d87 solid !important;
}
.comet--ba-24 {
  border: 24px #595d87 solid !important;
}
.comet--bt-24 {
  border-top: 24px #595d87 solid !important;
}
.comet--br-24 {
  border-right: 24px #595d87 solid !important;
}
.comet--bl-24 {
  border-left: 24px #595d87 solid !important;
}
.comet--bb-24 {
  border-bottom: 24px #595d87 solid !important;
}
.comet--by-24 {
  border-top: 24px #595d87 solid !important;
  border-bottom: 24px #595d87 solid !important;
}
.comet--bx-24 {
  border-right: 24px #595d87 solid !important;
  border-left: 24px #595d87 solid !important;
}
.comet--ba-25 {
  border: 25px #595d87 solid !important;
}
.comet--bt-25 {
  border-top: 25px #595d87 solid !important;
}
.comet--br-25 {
  border-right: 25px #595d87 solid !important;
}
.comet--bl-25 {
  border-left: 25px #595d87 solid !important;
}
.comet--bb-25 {
  border-bottom: 25px #595d87 solid !important;
}
.comet--by-25 {
  border-top: 25px #595d87 solid !important;
  border-bottom: 25px #595d87 solid !important;
}
.comet--bx-25 {
  border-right: 25px #595d87 solid !important;
  border-left: 25px #595d87 solid !important;
}
.comet--ba-26 {
  border: 26px #595d87 solid !important;
}
.comet--bt-26 {
  border-top: 26px #595d87 solid !important;
}
.comet--br-26 {
  border-right: 26px #595d87 solid !important;
}
.comet--bl-26 {
  border-left: 26px #595d87 solid !important;
}
.comet--bb-26 {
  border-bottom: 26px #595d87 solid !important;
}
.comet--by-26 {
  border-top: 26px #595d87 solid !important;
  border-bottom: 26px #595d87 solid !important;
}
.comet--bx-26 {
  border-right: 26px #595d87 solid !important;
  border-left: 26px #595d87 solid !important;
}
.comet--ba-27 {
  border: 27px #595d87 solid !important;
}
.comet--bt-27 {
  border-top: 27px #595d87 solid !important;
}
.comet--br-27 {
  border-right: 27px #595d87 solid !important;
}
.comet--bl-27 {
  border-left: 27px #595d87 solid !important;
}
.comet--bb-27 {
  border-bottom: 27px #595d87 solid !important;
}
.comet--by-27 {
  border-top: 27px #595d87 solid !important;
  border-bottom: 27px #595d87 solid !important;
}
.comet--bx-27 {
  border-right: 27px #595d87 solid !important;
  border-left: 27px #595d87 solid !important;
}
.comet--ba-28 {
  border: 28px #595d87 solid !important;
}
.comet--bt-28 {
  border-top: 28px #595d87 solid !important;
}
.comet--br-28 {
  border-right: 28px #595d87 solid !important;
}
.comet--bl-28 {
  border-left: 28px #595d87 solid !important;
}
.comet--bb-28 {
  border-bottom: 28px #595d87 solid !important;
}
.comet--by-28 {
  border-top: 28px #595d87 solid !important;
  border-bottom: 28px #595d87 solid !important;
}
.comet--bx-28 {
  border-right: 28px #595d87 solid !important;
  border-left: 28px #595d87 solid !important;
}
.comet--ba-29 {
  border: 29px #595d87 solid !important;
}
.comet--bt-29 {
  border-top: 29px #595d87 solid !important;
}
.comet--br-29 {
  border-right: 29px #595d87 solid !important;
}
.comet--bl-29 {
  border-left: 29px #595d87 solid !important;
}
.comet--bb-29 {
  border-bottom: 29px #595d87 solid !important;
}
.comet--by-29 {
  border-top: 29px #595d87 solid !important;
  border-bottom: 29px #595d87 solid !important;
}
.comet--bx-29 {
  border-right: 29px #595d87 solid !important;
  border-left: 29px #595d87 solid !important;
}
.comet--ba-30 {
  border: 30px #595d87 solid !important;
}
.comet--bt-30 {
  border-top: 30px #595d87 solid !important;
}
.comet--br-30 {
  border-right: 30px #595d87 solid !important;
}
.comet--bl-30 {
  border-left: 30px #595d87 solid !important;
}
.comet--bb-30 {
  border-bottom: 30px #595d87 solid !important;
}
.comet--by-30 {
  border-top: 30px #595d87 solid !important;
  border-bottom: 30px #595d87 solid !important;
}
.comet--bx-30 {
  border-right: 30px #595d87 solid !important;
  border-left: 30px #595d87 solid !important;
}
.comet--ba-31 {
  border: 31px #595d87 solid !important;
}
.comet--bt-31 {
  border-top: 31px #595d87 solid !important;
}
.comet--br-31 {
  border-right: 31px #595d87 solid !important;
}
.comet--bl-31 {
  border-left: 31px #595d87 solid !important;
}
.comet--bb-31 {
  border-bottom: 31px #595d87 solid !important;
}
.comet--by-31 {
  border-top: 31px #595d87 solid !important;
  border-bottom: 31px #595d87 solid !important;
}
.comet--bx-31 {
  border-right: 31px #595d87 solid !important;
  border-left: 31px #595d87 solid !important;
}
.comet--ba-32 {
  border: 32px #595d87 solid !important;
}
.comet--bt-32 {
  border-top: 32px #595d87 solid !important;
}
.comet--br-32 {
  border-right: 32px #595d87 solid !important;
}
.comet--bl-32 {
  border-left: 32px #595d87 solid !important;
}
.comet--bb-32 {
  border-bottom: 32px #595d87 solid !important;
}
.comet--by-32 {
  border-top: 32px #595d87 solid !important;
  border-bottom: 32px #595d87 solid !important;
}
.comet--bx-32 {
  border-right: 32px #595d87 solid !important;
  border-left: 32px #595d87 solid !important;
}
.comet--ba-33 {
  border: 33px #595d87 solid !important;
}
.comet--bt-33 {
  border-top: 33px #595d87 solid !important;
}
.comet--br-33 {
  border-right: 33px #595d87 solid !important;
}
.comet--bl-33 {
  border-left: 33px #595d87 solid !important;
}
.comet--bb-33 {
  border-bottom: 33px #595d87 solid !important;
}
.comet--by-33 {
  border-top: 33px #595d87 solid !important;
  border-bottom: 33px #595d87 solid !important;
}
.comet--bx-33 {
  border-right: 33px #595d87 solid !important;
  border-left: 33px #595d87 solid !important;
}
.comet--ba-34 {
  border: 34px #595d87 solid !important;
}
.comet--bt-34 {
  border-top: 34px #595d87 solid !important;
}
.comet--br-34 {
  border-right: 34px #595d87 solid !important;
}
.comet--bl-34 {
  border-left: 34px #595d87 solid !important;
}
.comet--bb-34 {
  border-bottom: 34px #595d87 solid !important;
}
.comet--by-34 {
  border-top: 34px #595d87 solid !important;
  border-bottom: 34px #595d87 solid !important;
}
.comet--bx-34 {
  border-right: 34px #595d87 solid !important;
  border-left: 34px #595d87 solid !important;
}
.comet--ba-35 {
  border: 35px #595d87 solid !important;
}
.comet--bt-35 {
  border-top: 35px #595d87 solid !important;
}
.comet--br-35 {
  border-right: 35px #595d87 solid !important;
}
.comet--bl-35 {
  border-left: 35px #595d87 solid !important;
}
.comet--bb-35 {
  border-bottom: 35px #595d87 solid !important;
}
.comet--by-35 {
  border-top: 35px #595d87 solid !important;
  border-bottom: 35px #595d87 solid !important;
}
.comet--bx-35 {
  border-right: 35px #595d87 solid !important;
  border-left: 35px #595d87 solid !important;
}
.comet--ba-36 {
  border: 36px #595d87 solid !important;
}
.comet--bt-36 {
  border-top: 36px #595d87 solid !important;
}
.comet--br-36 {
  border-right: 36px #595d87 solid !important;
}
.comet--bl-36 {
  border-left: 36px #595d87 solid !important;
}
.comet--bb-36 {
  border-bottom: 36px #595d87 solid !important;
}
.comet--by-36 {
  border-top: 36px #595d87 solid !important;
  border-bottom: 36px #595d87 solid !important;
}
.comet--bx-36 {
  border-right: 36px #595d87 solid !important;
  border-left: 36px #595d87 solid !important;
}
.comet--ba-37 {
  border: 37px #595d87 solid !important;
}
.comet--bt-37 {
  border-top: 37px #595d87 solid !important;
}
.comet--br-37 {
  border-right: 37px #595d87 solid !important;
}
.comet--bl-37 {
  border-left: 37px #595d87 solid !important;
}
.comet--bb-37 {
  border-bottom: 37px #595d87 solid !important;
}
.comet--by-37 {
  border-top: 37px #595d87 solid !important;
  border-bottom: 37px #595d87 solid !important;
}
.comet--bx-37 {
  border-right: 37px #595d87 solid !important;
  border-left: 37px #595d87 solid !important;
}
.comet--ba-38 {
  border: 38px #595d87 solid !important;
}
.comet--bt-38 {
  border-top: 38px #595d87 solid !important;
}
.comet--br-38 {
  border-right: 38px #595d87 solid !important;
}
.comet--bl-38 {
  border-left: 38px #595d87 solid !important;
}
.comet--bb-38 {
  border-bottom: 38px #595d87 solid !important;
}
.comet--by-38 {
  border-top: 38px #595d87 solid !important;
  border-bottom: 38px #595d87 solid !important;
}
.comet--bx-38 {
  border-right: 38px #595d87 solid !important;
  border-left: 38px #595d87 solid !important;
}
.comet--ba-39 {
  border: 39px #595d87 solid !important;
}
.comet--bt-39 {
  border-top: 39px #595d87 solid !important;
}
.comet--br-39 {
  border-right: 39px #595d87 solid !important;
}
.comet--bl-39 {
  border-left: 39px #595d87 solid !important;
}
.comet--bb-39 {
  border-bottom: 39px #595d87 solid !important;
}
.comet--by-39 {
  border-top: 39px #595d87 solid !important;
  border-bottom: 39px #595d87 solid !important;
}
.comet--bx-39 {
  border-right: 39px #595d87 solid !important;
  border-left: 39px #595d87 solid !important;
}
.comet--ba-40 {
  border: 40px #595d87 solid !important;
}
.comet--bt-40 {
  border-top: 40px #595d87 solid !important;
}
.comet--br-40 {
  border-right: 40px #595d87 solid !important;
}
.comet--bl-40 {
  border-left: 40px #595d87 solid !important;
}
.comet--bb-40 {
  border-bottom: 40px #595d87 solid !important;
}
.comet--by-40 {
  border-top: 40px #595d87 solid !important;
  border-bottom: 40px #595d87 solid !important;
}
.comet--bx-40 {
  border-right: 40px #595d87 solid !important;
  border-left: 40px #595d87 solid !important;
}
.comet--ba-41 {
  border: 41px #595d87 solid !important;
}
.comet--bt-41 {
  border-top: 41px #595d87 solid !important;
}
.comet--br-41 {
  border-right: 41px #595d87 solid !important;
}
.comet--bl-41 {
  border-left: 41px #595d87 solid !important;
}
.comet--bb-41 {
  border-bottom: 41px #595d87 solid !important;
}
.comet--by-41 {
  border-top: 41px #595d87 solid !important;
  border-bottom: 41px #595d87 solid !important;
}
.comet--bx-41 {
  border-right: 41px #595d87 solid !important;
  border-left: 41px #595d87 solid !important;
}
.comet--ba-42 {
  border: 42px #595d87 solid !important;
}
.comet--bt-42 {
  border-top: 42px #595d87 solid !important;
}
.comet--br-42 {
  border-right: 42px #595d87 solid !important;
}
.comet--bl-42 {
  border-left: 42px #595d87 solid !important;
}
.comet--bb-42 {
  border-bottom: 42px #595d87 solid !important;
}
.comet--by-42 {
  border-top: 42px #595d87 solid !important;
  border-bottom: 42px #595d87 solid !important;
}
.comet--bx-42 {
  border-right: 42px #595d87 solid !important;
  border-left: 42px #595d87 solid !important;
}
.comet--ba-43 {
  border: 43px #595d87 solid !important;
}
.comet--bt-43 {
  border-top: 43px #595d87 solid !important;
}
.comet--br-43 {
  border-right: 43px #595d87 solid !important;
}
.comet--bl-43 {
  border-left: 43px #595d87 solid !important;
}
.comet--bb-43 {
  border-bottom: 43px #595d87 solid !important;
}
.comet--by-43 {
  border-top: 43px #595d87 solid !important;
  border-bottom: 43px #595d87 solid !important;
}
.comet--bx-43 {
  border-right: 43px #595d87 solid !important;
  border-left: 43px #595d87 solid !important;
}
.comet--ba-44 {
  border: 44px #595d87 solid !important;
}
.comet--bt-44 {
  border-top: 44px #595d87 solid !important;
}
.comet--br-44 {
  border-right: 44px #595d87 solid !important;
}
.comet--bl-44 {
  border-left: 44px #595d87 solid !important;
}
.comet--bb-44 {
  border-bottom: 44px #595d87 solid !important;
}
.comet--by-44 {
  border-top: 44px #595d87 solid !important;
  border-bottom: 44px #595d87 solid !important;
}
.comet--bx-44 {
  border-right: 44px #595d87 solid !important;
  border-left: 44px #595d87 solid !important;
}
.comet--ba-45 {
  border: 45px #595d87 solid !important;
}
.comet--bt-45 {
  border-top: 45px #595d87 solid !important;
}
.comet--br-45 {
  border-right: 45px #595d87 solid !important;
}
.comet--bl-45 {
  border-left: 45px #595d87 solid !important;
}
.comet--bb-45 {
  border-bottom: 45px #595d87 solid !important;
}
.comet--by-45 {
  border-top: 45px #595d87 solid !important;
  border-bottom: 45px #595d87 solid !important;
}
.comet--bx-45 {
  border-right: 45px #595d87 solid !important;
  border-left: 45px #595d87 solid !important;
}
.comet--ba-46 {
  border: 46px #595d87 solid !important;
}
.comet--bt-46 {
  border-top: 46px #595d87 solid !important;
}
.comet--br-46 {
  border-right: 46px #595d87 solid !important;
}
.comet--bl-46 {
  border-left: 46px #595d87 solid !important;
}
.comet--bb-46 {
  border-bottom: 46px #595d87 solid !important;
}
.comet--by-46 {
  border-top: 46px #595d87 solid !important;
  border-bottom: 46px #595d87 solid !important;
}
.comet--bx-46 {
  border-right: 46px #595d87 solid !important;
  border-left: 46px #595d87 solid !important;
}
.comet--ba-47 {
  border: 47px #595d87 solid !important;
}
.comet--bt-47 {
  border-top: 47px #595d87 solid !important;
}
.comet--br-47 {
  border-right: 47px #595d87 solid !important;
}
.comet--bl-47 {
  border-left: 47px #595d87 solid !important;
}
.comet--bb-47 {
  border-bottom: 47px #595d87 solid !important;
}
.comet--by-47 {
  border-top: 47px #595d87 solid !important;
  border-bottom: 47px #595d87 solid !important;
}
.comet--bx-47 {
  border-right: 47px #595d87 solid !important;
  border-left: 47px #595d87 solid !important;
}
.comet--ba-48 {
  border: 48px #595d87 solid !important;
}
.comet--bt-48 {
  border-top: 48px #595d87 solid !important;
}
.comet--br-48 {
  border-right: 48px #595d87 solid !important;
}
.comet--bl-48 {
  border-left: 48px #595d87 solid !important;
}
.comet--bb-48 {
  border-bottom: 48px #595d87 solid !important;
}
.comet--by-48 {
  border-top: 48px #595d87 solid !important;
  border-bottom: 48px #595d87 solid !important;
}
.comet--bx-48 {
  border-right: 48px #595d87 solid !important;
  border-left: 48px #595d87 solid !important;
}
.comet--ba-49 {
  border: 49px #595d87 solid !important;
}
.comet--bt-49 {
  border-top: 49px #595d87 solid !important;
}
.comet--br-49 {
  border-right: 49px #595d87 solid !important;
}
.comet--bl-49 {
  border-left: 49px #595d87 solid !important;
}
.comet--bb-49 {
  border-bottom: 49px #595d87 solid !important;
}
.comet--by-49 {
  border-top: 49px #595d87 solid !important;
  border-bottom: 49px #595d87 solid !important;
}
.comet--bx-49 {
  border-right: 49px #595d87 solid !important;
  border-left: 49px #595d87 solid !important;
}
.comet--ba-50 {
  border: 50px #595d87 solid !important;
}
.comet--bt-50 {
  border-top: 50px #595d87 solid !important;
}
.comet--br-50 {
  border-right: 50px #595d87 solid !important;
}
.comet--bl-50 {
  border-left: 50px #595d87 solid !important;
}
.comet--bb-50 {
  border-bottom: 50px #595d87 solid !important;
}
.comet--by-50 {
  border-top: 50px #595d87 solid !important;
  border-bottom: 50px #595d87 solid !important;
}
.comet--bx-50 {
  border-right: 50px #595d87 solid !important;
  border-left: 50px #595d87 solid !important;
}
.comet--ba-51 {
  border: 51px #595d87 solid !important;
}
.comet--bt-51 {
  border-top: 51px #595d87 solid !important;
}
.comet--br-51 {
  border-right: 51px #595d87 solid !important;
}
.comet--bl-51 {
  border-left: 51px #595d87 solid !important;
}
.comet--bb-51 {
  border-bottom: 51px #595d87 solid !important;
}
.comet--by-51 {
  border-top: 51px #595d87 solid !important;
  border-bottom: 51px #595d87 solid !important;
}
.comet--bx-51 {
  border-right: 51px #595d87 solid !important;
  border-left: 51px #595d87 solid !important;
}
.comet--ba-52 {
  border: 52px #595d87 solid !important;
}
.comet--bt-52 {
  border-top: 52px #595d87 solid !important;
}
.comet--br-52 {
  border-right: 52px #595d87 solid !important;
}
.comet--bl-52 {
  border-left: 52px #595d87 solid !important;
}
.comet--bb-52 {
  border-bottom: 52px #595d87 solid !important;
}
.comet--by-52 {
  border-top: 52px #595d87 solid !important;
  border-bottom: 52px #595d87 solid !important;
}
.comet--bx-52 {
  border-right: 52px #595d87 solid !important;
  border-left: 52px #595d87 solid !important;
}
.comet--ba-53 {
  border: 53px #595d87 solid !important;
}
.comet--bt-53 {
  border-top: 53px #595d87 solid !important;
}
.comet--br-53 {
  border-right: 53px #595d87 solid !important;
}
.comet--bl-53 {
  border-left: 53px #595d87 solid !important;
}
.comet--bb-53 {
  border-bottom: 53px #595d87 solid !important;
}
.comet--by-53 {
  border-top: 53px #595d87 solid !important;
  border-bottom: 53px #595d87 solid !important;
}
.comet--bx-53 {
  border-right: 53px #595d87 solid !important;
  border-left: 53px #595d87 solid !important;
}
.comet--ba-54 {
  border: 54px #595d87 solid !important;
}
.comet--bt-54 {
  border-top: 54px #595d87 solid !important;
}
.comet--br-54 {
  border-right: 54px #595d87 solid !important;
}
.comet--bl-54 {
  border-left: 54px #595d87 solid !important;
}
.comet--bb-54 {
  border-bottom: 54px #595d87 solid !important;
}
.comet--by-54 {
  border-top: 54px #595d87 solid !important;
  border-bottom: 54px #595d87 solid !important;
}
.comet--bx-54 {
  border-right: 54px #595d87 solid !important;
  border-left: 54px #595d87 solid !important;
}
.comet--ba-55 {
  border: 55px #595d87 solid !important;
}
.comet--bt-55 {
  border-top: 55px #595d87 solid !important;
}
.comet--br-55 {
  border-right: 55px #595d87 solid !important;
}
.comet--bl-55 {
  border-left: 55px #595d87 solid !important;
}
.comet--bb-55 {
  border-bottom: 55px #595d87 solid !important;
}
.comet--by-55 {
  border-top: 55px #595d87 solid !important;
  border-bottom: 55px #595d87 solid !important;
}
.comet--bx-55 {
  border-right: 55px #595d87 solid !important;
  border-left: 55px #595d87 solid !important;
}
.comet--ba-56 {
  border: 56px #595d87 solid !important;
}
.comet--bt-56 {
  border-top: 56px #595d87 solid !important;
}
.comet--br-56 {
  border-right: 56px #595d87 solid !important;
}
.comet--bl-56 {
  border-left: 56px #595d87 solid !important;
}
.comet--bb-56 {
  border-bottom: 56px #595d87 solid !important;
}
.comet--by-56 {
  border-top: 56px #595d87 solid !important;
  border-bottom: 56px #595d87 solid !important;
}
.comet--bx-56 {
  border-right: 56px #595d87 solid !important;
  border-left: 56px #595d87 solid !important;
}
.comet--ba-57 {
  border: 57px #595d87 solid !important;
}
.comet--bt-57 {
  border-top: 57px #595d87 solid !important;
}
.comet--br-57 {
  border-right: 57px #595d87 solid !important;
}
.comet--bl-57 {
  border-left: 57px #595d87 solid !important;
}
.comet--bb-57 {
  border-bottom: 57px #595d87 solid !important;
}
.comet--by-57 {
  border-top: 57px #595d87 solid !important;
  border-bottom: 57px #595d87 solid !important;
}
.comet--bx-57 {
  border-right: 57px #595d87 solid !important;
  border-left: 57px #595d87 solid !important;
}
.comet--ba-58 {
  border: 58px #595d87 solid !important;
}
.comet--bt-58 {
  border-top: 58px #595d87 solid !important;
}
.comet--br-58 {
  border-right: 58px #595d87 solid !important;
}
.comet--bl-58 {
  border-left: 58px #595d87 solid !important;
}
.comet--bb-58 {
  border-bottom: 58px #595d87 solid !important;
}
.comet--by-58 {
  border-top: 58px #595d87 solid !important;
  border-bottom: 58px #595d87 solid !important;
}
.comet--bx-58 {
  border-right: 58px #595d87 solid !important;
  border-left: 58px #595d87 solid !important;
}
.comet--ba-59 {
  border: 59px #595d87 solid !important;
}
.comet--bt-59 {
  border-top: 59px #595d87 solid !important;
}
.comet--br-59 {
  border-right: 59px #595d87 solid !important;
}
.comet--bl-59 {
  border-left: 59px #595d87 solid !important;
}
.comet--bb-59 {
  border-bottom: 59px #595d87 solid !important;
}
.comet--by-59 {
  border-top: 59px #595d87 solid !important;
  border-bottom: 59px #595d87 solid !important;
}
.comet--bx-59 {
  border-right: 59px #595d87 solid !important;
  border-left: 59px #595d87 solid !important;
}
.comet--ba-60 {
  border: 60px #595d87 solid !important;
}
.comet--bt-60 {
  border-top: 60px #595d87 solid !important;
}
.comet--br-60 {
  border-right: 60px #595d87 solid !important;
}
.comet--bl-60 {
  border-left: 60px #595d87 solid !important;
}
.comet--bb-60 {
  border-bottom: 60px #595d87 solid !important;
}
.comet--by-60 {
  border-top: 60px #595d87 solid !important;
  border-bottom: 60px #595d87 solid !important;
}
.comet--bx-60 {
  border-right: 60px #595d87 solid !important;
  border-left: 60px #595d87 solid !important;
}
.comet--ba-61 {
  border: 61px #595d87 solid !important;
}
.comet--bt-61 {
  border-top: 61px #595d87 solid !important;
}
.comet--br-61 {
  border-right: 61px #595d87 solid !important;
}
.comet--bl-61 {
  border-left: 61px #595d87 solid !important;
}
.comet--bb-61 {
  border-bottom: 61px #595d87 solid !important;
}
.comet--by-61 {
  border-top: 61px #595d87 solid !important;
  border-bottom: 61px #595d87 solid !important;
}
.comet--bx-61 {
  border-right: 61px #595d87 solid !important;
  border-left: 61px #595d87 solid !important;
}
.comet--ba-62 {
  border: 62px #595d87 solid !important;
}
.comet--bt-62 {
  border-top: 62px #595d87 solid !important;
}
.comet--br-62 {
  border-right: 62px #595d87 solid !important;
}
.comet--bl-62 {
  border-left: 62px #595d87 solid !important;
}
.comet--bb-62 {
  border-bottom: 62px #595d87 solid !important;
}
.comet--by-62 {
  border-top: 62px #595d87 solid !important;
  border-bottom: 62px #595d87 solid !important;
}
.comet--bx-62 {
  border-right: 62px #595d87 solid !important;
  border-left: 62px #595d87 solid !important;
}
.comet--ba-63 {
  border: 63px #595d87 solid !important;
}
.comet--bt-63 {
  border-top: 63px #595d87 solid !important;
}
.comet--br-63 {
  border-right: 63px #595d87 solid !important;
}
.comet--bl-63 {
  border-left: 63px #595d87 solid !important;
}
.comet--bb-63 {
  border-bottom: 63px #595d87 solid !important;
}
.comet--by-63 {
  border-top: 63px #595d87 solid !important;
  border-bottom: 63px #595d87 solid !important;
}
.comet--bx-63 {
  border-right: 63px #595d87 solid !important;
  border-left: 63px #595d87 solid !important;
}
.comet--ba-64 {
  border: 64px #595d87 solid !important;
}
.comet--bt-64 {
  border-top: 64px #595d87 solid !important;
}
.comet--br-64 {
  border-right: 64px #595d87 solid !important;
}
.comet--bl-64 {
  border-left: 64px #595d87 solid !important;
}
.comet--bb-64 {
  border-bottom: 64px #595d87 solid !important;
}
.comet--by-64 {
  border-top: 64px #595d87 solid !important;
  border-bottom: 64px #595d87 solid !important;
}
.comet--bx-64 {
  border-right: 64px #595d87 solid !important;
  border-left: 64px #595d87 solid !important;
}
.comet--ba-65 {
  border: 65px #595d87 solid !important;
}
.comet--bt-65 {
  border-top: 65px #595d87 solid !important;
}
.comet--br-65 {
  border-right: 65px #595d87 solid !important;
}
.comet--bl-65 {
  border-left: 65px #595d87 solid !important;
}
.comet--bb-65 {
  border-bottom: 65px #595d87 solid !important;
}
.comet--by-65 {
  border-top: 65px #595d87 solid !important;
  border-bottom: 65px #595d87 solid !important;
}
.comet--bx-65 {
  border-right: 65px #595d87 solid !important;
  border-left: 65px #595d87 solid !important;
}
.comet--ba-66 {
  border: 66px #595d87 solid !important;
}
.comet--bt-66 {
  border-top: 66px #595d87 solid !important;
}
.comet--br-66 {
  border-right: 66px #595d87 solid !important;
}
.comet--bl-66 {
  border-left: 66px #595d87 solid !important;
}
.comet--bb-66 {
  border-bottom: 66px #595d87 solid !important;
}
.comet--by-66 {
  border-top: 66px #595d87 solid !important;
  border-bottom: 66px #595d87 solid !important;
}
.comet--bx-66 {
  border-right: 66px #595d87 solid !important;
  border-left: 66px #595d87 solid !important;
}
.comet--ba-67 {
  border: 67px #595d87 solid !important;
}
.comet--bt-67 {
  border-top: 67px #595d87 solid !important;
}
.comet--br-67 {
  border-right: 67px #595d87 solid !important;
}
.comet--bl-67 {
  border-left: 67px #595d87 solid !important;
}
.comet--bb-67 {
  border-bottom: 67px #595d87 solid !important;
}
.comet--by-67 {
  border-top: 67px #595d87 solid !important;
  border-bottom: 67px #595d87 solid !important;
}
.comet--bx-67 {
  border-right: 67px #595d87 solid !important;
  border-left: 67px #595d87 solid !important;
}
.comet--ba-68 {
  border: 68px #595d87 solid !important;
}
.comet--bt-68 {
  border-top: 68px #595d87 solid !important;
}
.comet--br-68 {
  border-right: 68px #595d87 solid !important;
}
.comet--bl-68 {
  border-left: 68px #595d87 solid !important;
}
.comet--bb-68 {
  border-bottom: 68px #595d87 solid !important;
}
.comet--by-68 {
  border-top: 68px #595d87 solid !important;
  border-bottom: 68px #595d87 solid !important;
}
.comet--bx-68 {
  border-right: 68px #595d87 solid !important;
  border-left: 68px #595d87 solid !important;
}
.comet--ba-69 {
  border: 69px #595d87 solid !important;
}
.comet--bt-69 {
  border-top: 69px #595d87 solid !important;
}
.comet--br-69 {
  border-right: 69px #595d87 solid !important;
}
.comet--bl-69 {
  border-left: 69px #595d87 solid !important;
}
.comet--bb-69 {
  border-bottom: 69px #595d87 solid !important;
}
.comet--by-69 {
  border-top: 69px #595d87 solid !important;
  border-bottom: 69px #595d87 solid !important;
}
.comet--bx-69 {
  border-right: 69px #595d87 solid !important;
  border-left: 69px #595d87 solid !important;
}
.comet--ba-70 {
  border: 70px #595d87 solid !important;
}
.comet--bt-70 {
  border-top: 70px #595d87 solid !important;
}
.comet--br-70 {
  border-right: 70px #595d87 solid !important;
}
.comet--bl-70 {
  border-left: 70px #595d87 solid !important;
}
.comet--bb-70 {
  border-bottom: 70px #595d87 solid !important;
}
.comet--by-70 {
  border-top: 70px #595d87 solid !important;
  border-bottom: 70px #595d87 solid !important;
}
.comet--bx-70 {
  border-right: 70px #595d87 solid !important;
  border-left: 70px #595d87 solid !important;
}
.comet--ba-71 {
  border: 71px #595d87 solid !important;
}
.comet--bt-71 {
  border-top: 71px #595d87 solid !important;
}
.comet--br-71 {
  border-right: 71px #595d87 solid !important;
}
.comet--bl-71 {
  border-left: 71px #595d87 solid !important;
}
.comet--bb-71 {
  border-bottom: 71px #595d87 solid !important;
}
.comet--by-71 {
  border-top: 71px #595d87 solid !important;
  border-bottom: 71px #595d87 solid !important;
}
.comet--bx-71 {
  border-right: 71px #595d87 solid !important;
  border-left: 71px #595d87 solid !important;
}
.comet--ba-72 {
  border: 72px #595d87 solid !important;
}
.comet--bt-72 {
  border-top: 72px #595d87 solid !important;
}
.comet--br-72 {
  border-right: 72px #595d87 solid !important;
}
.comet--bl-72 {
  border-left: 72px #595d87 solid !important;
}
.comet--bb-72 {
  border-bottom: 72px #595d87 solid !important;
}
.comet--by-72 {
  border-top: 72px #595d87 solid !important;
  border-bottom: 72px #595d87 solid !important;
}
.comet--bx-72 {
  border-right: 72px #595d87 solid !important;
  border-left: 72px #595d87 solid !important;
}
.comet--ba-73 {
  border: 73px #595d87 solid !important;
}
.comet--bt-73 {
  border-top: 73px #595d87 solid !important;
}
.comet--br-73 {
  border-right: 73px #595d87 solid !important;
}
.comet--bl-73 {
  border-left: 73px #595d87 solid !important;
}
.comet--bb-73 {
  border-bottom: 73px #595d87 solid !important;
}
.comet--by-73 {
  border-top: 73px #595d87 solid !important;
  border-bottom: 73px #595d87 solid !important;
}
.comet--bx-73 {
  border-right: 73px #595d87 solid !important;
  border-left: 73px #595d87 solid !important;
}
.comet--ba-74 {
  border: 74px #595d87 solid !important;
}
.comet--bt-74 {
  border-top: 74px #595d87 solid !important;
}
.comet--br-74 {
  border-right: 74px #595d87 solid !important;
}
.comet--bl-74 {
  border-left: 74px #595d87 solid !important;
}
.comet--bb-74 {
  border-bottom: 74px #595d87 solid !important;
}
.comet--by-74 {
  border-top: 74px #595d87 solid !important;
  border-bottom: 74px #595d87 solid !important;
}
.comet--bx-74 {
  border-right: 74px #595d87 solid !important;
  border-left: 74px #595d87 solid !important;
}
.comet--ba-75 {
  border: 75px #595d87 solid !important;
}
.comet--bt-75 {
  border-top: 75px #595d87 solid !important;
}
.comet--br-75 {
  border-right: 75px #595d87 solid !important;
}
.comet--bl-75 {
  border-left: 75px #595d87 solid !important;
}
.comet--bb-75 {
  border-bottom: 75px #595d87 solid !important;
}
.comet--by-75 {
  border-top: 75px #595d87 solid !important;
  border-bottom: 75px #595d87 solid !important;
}
.comet--bx-75 {
  border-right: 75px #595d87 solid !important;
  border-left: 75px #595d87 solid !important;
}
.comet--ba-76 {
  border: 76px #595d87 solid !important;
}
.comet--bt-76 {
  border-top: 76px #595d87 solid !important;
}
.comet--br-76 {
  border-right: 76px #595d87 solid !important;
}
.comet--bl-76 {
  border-left: 76px #595d87 solid !important;
}
.comet--bb-76 {
  border-bottom: 76px #595d87 solid !important;
}
.comet--by-76 {
  border-top: 76px #595d87 solid !important;
  border-bottom: 76px #595d87 solid !important;
}
.comet--bx-76 {
  border-right: 76px #595d87 solid !important;
  border-left: 76px #595d87 solid !important;
}
.comet--ba-77 {
  border: 77px #595d87 solid !important;
}
.comet--bt-77 {
  border-top: 77px #595d87 solid !important;
}
.comet--br-77 {
  border-right: 77px #595d87 solid !important;
}
.comet--bl-77 {
  border-left: 77px #595d87 solid !important;
}
.comet--bb-77 {
  border-bottom: 77px #595d87 solid !important;
}
.comet--by-77 {
  border-top: 77px #595d87 solid !important;
  border-bottom: 77px #595d87 solid !important;
}
.comet--bx-77 {
  border-right: 77px #595d87 solid !important;
  border-left: 77px #595d87 solid !important;
}
.comet--ba-78 {
  border: 78px #595d87 solid !important;
}
.comet--bt-78 {
  border-top: 78px #595d87 solid !important;
}
.comet--br-78 {
  border-right: 78px #595d87 solid !important;
}
.comet--bl-78 {
  border-left: 78px #595d87 solid !important;
}
.comet--bb-78 {
  border-bottom: 78px #595d87 solid !important;
}
.comet--by-78 {
  border-top: 78px #595d87 solid !important;
  border-bottom: 78px #595d87 solid !important;
}
.comet--bx-78 {
  border-right: 78px #595d87 solid !important;
  border-left: 78px #595d87 solid !important;
}
.comet--ba-79 {
  border: 79px #595d87 solid !important;
}
.comet--bt-79 {
  border-top: 79px #595d87 solid !important;
}
.comet--br-79 {
  border-right: 79px #595d87 solid !important;
}
.comet--bl-79 {
  border-left: 79px #595d87 solid !important;
}
.comet--bb-79 {
  border-bottom: 79px #595d87 solid !important;
}
.comet--by-79 {
  border-top: 79px #595d87 solid !important;
  border-bottom: 79px #595d87 solid !important;
}
.comet--bx-79 {
  border-right: 79px #595d87 solid !important;
  border-left: 79px #595d87 solid !important;
}
.comet--ba-80 {
  border: 80px #595d87 solid !important;
}
.comet--bt-80 {
  border-top: 80px #595d87 solid !important;
}
.comet--br-80 {
  border-right: 80px #595d87 solid !important;
}
.comet--bl-80 {
  border-left: 80px #595d87 solid !important;
}
.comet--bb-80 {
  border-bottom: 80px #595d87 solid !important;
}
.comet--by-80 {
  border-top: 80px #595d87 solid !important;
  border-bottom: 80px #595d87 solid !important;
}
.comet--bx-80 {
  border-right: 80px #595d87 solid !important;
  border-left: 80px #595d87 solid !important;
}
.comet--ba-81 {
  border: 81px #595d87 solid !important;
}
.comet--bt-81 {
  border-top: 81px #595d87 solid !important;
}
.comet--br-81 {
  border-right: 81px #595d87 solid !important;
}
.comet--bl-81 {
  border-left: 81px #595d87 solid !important;
}
.comet--bb-81 {
  border-bottom: 81px #595d87 solid !important;
}
.comet--by-81 {
  border-top: 81px #595d87 solid !important;
  border-bottom: 81px #595d87 solid !important;
}
.comet--bx-81 {
  border-right: 81px #595d87 solid !important;
  border-left: 81px #595d87 solid !important;
}
.comet--ba-82 {
  border: 82px #595d87 solid !important;
}
.comet--bt-82 {
  border-top: 82px #595d87 solid !important;
}
.comet--br-82 {
  border-right: 82px #595d87 solid !important;
}
.comet--bl-82 {
  border-left: 82px #595d87 solid !important;
}
.comet--bb-82 {
  border-bottom: 82px #595d87 solid !important;
}
.comet--by-82 {
  border-top: 82px #595d87 solid !important;
  border-bottom: 82px #595d87 solid !important;
}
.comet--bx-82 {
  border-right: 82px #595d87 solid !important;
  border-left: 82px #595d87 solid !important;
}
.comet--ba-83 {
  border: 83px #595d87 solid !important;
}
.comet--bt-83 {
  border-top: 83px #595d87 solid !important;
}
.comet--br-83 {
  border-right: 83px #595d87 solid !important;
}
.comet--bl-83 {
  border-left: 83px #595d87 solid !important;
}
.comet--bb-83 {
  border-bottom: 83px #595d87 solid !important;
}
.comet--by-83 {
  border-top: 83px #595d87 solid !important;
  border-bottom: 83px #595d87 solid !important;
}
.comet--bx-83 {
  border-right: 83px #595d87 solid !important;
  border-left: 83px #595d87 solid !important;
}
.comet--ba-84 {
  border: 84px #595d87 solid !important;
}
.comet--bt-84 {
  border-top: 84px #595d87 solid !important;
}
.comet--br-84 {
  border-right: 84px #595d87 solid !important;
}
.comet--bl-84 {
  border-left: 84px #595d87 solid !important;
}
.comet--bb-84 {
  border-bottom: 84px #595d87 solid !important;
}
.comet--by-84 {
  border-top: 84px #595d87 solid !important;
  border-bottom: 84px #595d87 solid !important;
}
.comet--bx-84 {
  border-right: 84px #595d87 solid !important;
  border-left: 84px #595d87 solid !important;
}
.comet--ba-85 {
  border: 85px #595d87 solid !important;
}
.comet--bt-85 {
  border-top: 85px #595d87 solid !important;
}
.comet--br-85 {
  border-right: 85px #595d87 solid !important;
}
.comet--bl-85 {
  border-left: 85px #595d87 solid !important;
}
.comet--bb-85 {
  border-bottom: 85px #595d87 solid !important;
}
.comet--by-85 {
  border-top: 85px #595d87 solid !important;
  border-bottom: 85px #595d87 solid !important;
}
.comet--bx-85 {
  border-right: 85px #595d87 solid !important;
  border-left: 85px #595d87 solid !important;
}
.comet--ba-86 {
  border: 86px #595d87 solid !important;
}
.comet--bt-86 {
  border-top: 86px #595d87 solid !important;
}
.comet--br-86 {
  border-right: 86px #595d87 solid !important;
}
.comet--bl-86 {
  border-left: 86px #595d87 solid !important;
}
.comet--bb-86 {
  border-bottom: 86px #595d87 solid !important;
}
.comet--by-86 {
  border-top: 86px #595d87 solid !important;
  border-bottom: 86px #595d87 solid !important;
}
.comet--bx-86 {
  border-right: 86px #595d87 solid !important;
  border-left: 86px #595d87 solid !important;
}
.comet--ba-87 {
  border: 87px #595d87 solid !important;
}
.comet--bt-87 {
  border-top: 87px #595d87 solid !important;
}
.comet--br-87 {
  border-right: 87px #595d87 solid !important;
}
.comet--bl-87 {
  border-left: 87px #595d87 solid !important;
}
.comet--bb-87 {
  border-bottom: 87px #595d87 solid !important;
}
.comet--by-87 {
  border-top: 87px #595d87 solid !important;
  border-bottom: 87px #595d87 solid !important;
}
.comet--bx-87 {
  border-right: 87px #595d87 solid !important;
  border-left: 87px #595d87 solid !important;
}
.comet--ba-88 {
  border: 88px #595d87 solid !important;
}
.comet--bt-88 {
  border-top: 88px #595d87 solid !important;
}
.comet--br-88 {
  border-right: 88px #595d87 solid !important;
}
.comet--bl-88 {
  border-left: 88px #595d87 solid !important;
}
.comet--bb-88 {
  border-bottom: 88px #595d87 solid !important;
}
.comet--by-88 {
  border-top: 88px #595d87 solid !important;
  border-bottom: 88px #595d87 solid !important;
}
.comet--bx-88 {
  border-right: 88px #595d87 solid !important;
  border-left: 88px #595d87 solid !important;
}
.comet--ba-89 {
  border: 89px #595d87 solid !important;
}
.comet--bt-89 {
  border-top: 89px #595d87 solid !important;
}
.comet--br-89 {
  border-right: 89px #595d87 solid !important;
}
.comet--bl-89 {
  border-left: 89px #595d87 solid !important;
}
.comet--bb-89 {
  border-bottom: 89px #595d87 solid !important;
}
.comet--by-89 {
  border-top: 89px #595d87 solid !important;
  border-bottom: 89px #595d87 solid !important;
}
.comet--bx-89 {
  border-right: 89px #595d87 solid !important;
  border-left: 89px #595d87 solid !important;
}
.comet--ba-90 {
  border: 90px #595d87 solid !important;
}
.comet--bt-90 {
  border-top: 90px #595d87 solid !important;
}
.comet--br-90 {
  border-right: 90px #595d87 solid !important;
}
.comet--bl-90 {
  border-left: 90px #595d87 solid !important;
}
.comet--bb-90 {
  border-bottom: 90px #595d87 solid !important;
}
.comet--by-90 {
  border-top: 90px #595d87 solid !important;
  border-bottom: 90px #595d87 solid !important;
}
.comet--bx-90 {
  border-right: 90px #595d87 solid !important;
  border-left: 90px #595d87 solid !important;
}
.comet--ba-91 {
  border: 91px #595d87 solid !important;
}
.comet--bt-91 {
  border-top: 91px #595d87 solid !important;
}
.comet--br-91 {
  border-right: 91px #595d87 solid !important;
}
.comet--bl-91 {
  border-left: 91px #595d87 solid !important;
}
.comet--bb-91 {
  border-bottom: 91px #595d87 solid !important;
}
.comet--by-91 {
  border-top: 91px #595d87 solid !important;
  border-bottom: 91px #595d87 solid !important;
}
.comet--bx-91 {
  border-right: 91px #595d87 solid !important;
  border-left: 91px #595d87 solid !important;
}
.comet--ba-92 {
  border: 92px #595d87 solid !important;
}
.comet--bt-92 {
  border-top: 92px #595d87 solid !important;
}
.comet--br-92 {
  border-right: 92px #595d87 solid !important;
}
.comet--bl-92 {
  border-left: 92px #595d87 solid !important;
}
.comet--bb-92 {
  border-bottom: 92px #595d87 solid !important;
}
.comet--by-92 {
  border-top: 92px #595d87 solid !important;
  border-bottom: 92px #595d87 solid !important;
}
.comet--bx-92 {
  border-right: 92px #595d87 solid !important;
  border-left: 92px #595d87 solid !important;
}
.comet--ba-93 {
  border: 93px #595d87 solid !important;
}
.comet--bt-93 {
  border-top: 93px #595d87 solid !important;
}
.comet--br-93 {
  border-right: 93px #595d87 solid !important;
}
.comet--bl-93 {
  border-left: 93px #595d87 solid !important;
}
.comet--bb-93 {
  border-bottom: 93px #595d87 solid !important;
}
.comet--by-93 {
  border-top: 93px #595d87 solid !important;
  border-bottom: 93px #595d87 solid !important;
}
.comet--bx-93 {
  border-right: 93px #595d87 solid !important;
  border-left: 93px #595d87 solid !important;
}
.comet--ba-94 {
  border: 94px #595d87 solid !important;
}
.comet--bt-94 {
  border-top: 94px #595d87 solid !important;
}
.comet--br-94 {
  border-right: 94px #595d87 solid !important;
}
.comet--bl-94 {
  border-left: 94px #595d87 solid !important;
}
.comet--bb-94 {
  border-bottom: 94px #595d87 solid !important;
}
.comet--by-94 {
  border-top: 94px #595d87 solid !important;
  border-bottom: 94px #595d87 solid !important;
}
.comet--bx-94 {
  border-right: 94px #595d87 solid !important;
  border-left: 94px #595d87 solid !important;
}
.comet--ba-95 {
  border: 95px #595d87 solid !important;
}
.comet--bt-95 {
  border-top: 95px #595d87 solid !important;
}
.comet--br-95 {
  border-right: 95px #595d87 solid !important;
}
.comet--bl-95 {
  border-left: 95px #595d87 solid !important;
}
.comet--bb-95 {
  border-bottom: 95px #595d87 solid !important;
}
.comet--by-95 {
  border-top: 95px #595d87 solid !important;
  border-bottom: 95px #595d87 solid !important;
}
.comet--bx-95 {
  border-right: 95px #595d87 solid !important;
  border-left: 95px #595d87 solid !important;
}
.comet--ba-96 {
  border: 96px #595d87 solid !important;
}
.comet--bt-96 {
  border-top: 96px #595d87 solid !important;
}
.comet--br-96 {
  border-right: 96px #595d87 solid !important;
}
.comet--bl-96 {
  border-left: 96px #595d87 solid !important;
}
.comet--bb-96 {
  border-bottom: 96px #595d87 solid !important;
}
.comet--by-96 {
  border-top: 96px #595d87 solid !important;
  border-bottom: 96px #595d87 solid !important;
}
.comet--bx-96 {
  border-right: 96px #595d87 solid !important;
  border-left: 96px #595d87 solid !important;
}
.comet--ba-97 {
  border: 97px #595d87 solid !important;
}
.comet--bt-97 {
  border-top: 97px #595d87 solid !important;
}
.comet--br-97 {
  border-right: 97px #595d87 solid !important;
}
.comet--bl-97 {
  border-left: 97px #595d87 solid !important;
}
.comet--bb-97 {
  border-bottom: 97px #595d87 solid !important;
}
.comet--by-97 {
  border-top: 97px #595d87 solid !important;
  border-bottom: 97px #595d87 solid !important;
}
.comet--bx-97 {
  border-right: 97px #595d87 solid !important;
  border-left: 97px #595d87 solid !important;
}
.comet--ba-98 {
  border: 98px #595d87 solid !important;
}
.comet--bt-98 {
  border-top: 98px #595d87 solid !important;
}
.comet--br-98 {
  border-right: 98px #595d87 solid !important;
}
.comet--bl-98 {
  border-left: 98px #595d87 solid !important;
}
.comet--bb-98 {
  border-bottom: 98px #595d87 solid !important;
}
.comet--by-98 {
  border-top: 98px #595d87 solid !important;
  border-bottom: 98px #595d87 solid !important;
}
.comet--bx-98 {
  border-right: 98px #595d87 solid !important;
  border-left: 98px #595d87 solid !important;
}
.comet--ba-99 {
  border: 99px #595d87 solid !important;
}
.comet--bt-99 {
  border-top: 99px #595d87 solid !important;
}
.comet--br-99 {
  border-right: 99px #595d87 solid !important;
}
.comet--bl-99 {
  border-left: 99px #595d87 solid !important;
}
.comet--bb-99 {
  border-bottom: 99px #595d87 solid !important;
}
.comet--by-99 {
  border-top: 99px #595d87 solid !important;
  border-bottom: 99px #595d87 solid !important;
}
.comet--bx-99 {
  border-right: 99px #595d87 solid !important;
  border-left: 99px #595d87 solid !important;
}
.comet--ba-100 {
  border: 100px #595d87 solid !important;
}
.comet--bt-100 {
  border-top: 100px #595d87 solid !important;
}
.comet--br-100 {
  border-right: 100px #595d87 solid !important;
}
.comet--bl-100 {
  border-left: 100px #595d87 solid !important;
}
.comet--bb-100 {
  border-bottom: 100px #595d87 solid !important;
}
.comet--by-100 {
  border-top: 100px #595d87 solid !important;
  border-bottom: 100px #595d87 solid !important;
}
.comet--bx-100 {
  border-right: 100px #595d87 solid !important;
  border-left: 100px #595d87 solid !important;
}
.hint-of-green--ba-1 {
  border: 1px #f2fff3 solid !important;
}
.hint-of-green--bt-1 {
  border-top: 1px #f2fff3 solid !important;
}
.hint-of-green--br-1 {
  border-right: 1px #f2fff3 solid !important;
}
.hint-of-green--bl-1 {
  border-left: 1px #f2fff3 solid !important;
}
.hint-of-green--bb-1 {
  border-bottom: 1px #f2fff3 solid !important;
}
.hint-of-green--by-1 {
  border-top: 1px #f2fff3 solid !important;
  border-bottom: 1px #f2fff3 solid !important;
}
.hint-of-green--bx-1 {
  border-right: 1px #f2fff3 solid !important;
  border-left: 1px #f2fff3 solid !important;
}
.hint-of-green--ba-2 {
  border: 2px #f2fff3 solid !important;
}
.hint-of-green--bt-2 {
  border-top: 2px #f2fff3 solid !important;
}
.hint-of-green--br-2 {
  border-right: 2px #f2fff3 solid !important;
}
.hint-of-green--bl-2 {
  border-left: 2px #f2fff3 solid !important;
}
.hint-of-green--bb-2 {
  border-bottom: 2px #f2fff3 solid !important;
}
.hint-of-green--by-2 {
  border-top: 2px #f2fff3 solid !important;
  border-bottom: 2px #f2fff3 solid !important;
}
.hint-of-green--bx-2 {
  border-right: 2px #f2fff3 solid !important;
  border-left: 2px #f2fff3 solid !important;
}
.hint-of-green--ba-3 {
  border: 3px #f2fff3 solid !important;
}
.hint-of-green--bt-3 {
  border-top: 3px #f2fff3 solid !important;
}
.hint-of-green--br-3 {
  border-right: 3px #f2fff3 solid !important;
}
.hint-of-green--bl-3 {
  border-left: 3px #f2fff3 solid !important;
}
.hint-of-green--bb-3 {
  border-bottom: 3px #f2fff3 solid !important;
}
.hint-of-green--by-3 {
  border-top: 3px #f2fff3 solid !important;
  border-bottom: 3px #f2fff3 solid !important;
}
.hint-of-green--bx-3 {
  border-right: 3px #f2fff3 solid !important;
  border-left: 3px #f2fff3 solid !important;
}
.hint-of-green--ba-4 {
  border: 4px #f2fff3 solid !important;
}
.hint-of-green--bt-4 {
  border-top: 4px #f2fff3 solid !important;
}
.hint-of-green--br-4 {
  border-right: 4px #f2fff3 solid !important;
}
.hint-of-green--bl-4 {
  border-left: 4px #f2fff3 solid !important;
}
.hint-of-green--bb-4 {
  border-bottom: 4px #f2fff3 solid !important;
}
.hint-of-green--by-4 {
  border-top: 4px #f2fff3 solid !important;
  border-bottom: 4px #f2fff3 solid !important;
}
.hint-of-green--bx-4 {
  border-right: 4px #f2fff3 solid !important;
  border-left: 4px #f2fff3 solid !important;
}
.hint-of-green--ba-5 {
  border: 5px #f2fff3 solid !important;
}
.hint-of-green--bt-5 {
  border-top: 5px #f2fff3 solid !important;
}
.hint-of-green--br-5 {
  border-right: 5px #f2fff3 solid !important;
}
.hint-of-green--bl-5 {
  border-left: 5px #f2fff3 solid !important;
}
.hint-of-green--bb-5 {
  border-bottom: 5px #f2fff3 solid !important;
}
.hint-of-green--by-5 {
  border-top: 5px #f2fff3 solid !important;
  border-bottom: 5px #f2fff3 solid !important;
}
.hint-of-green--bx-5 {
  border-right: 5px #f2fff3 solid !important;
  border-left: 5px #f2fff3 solid !important;
}
.hint-of-green--ba-6 {
  border: 6px #f2fff3 solid !important;
}
.hint-of-green--bt-6 {
  border-top: 6px #f2fff3 solid !important;
}
.hint-of-green--br-6 {
  border-right: 6px #f2fff3 solid !important;
}
.hint-of-green--bl-6 {
  border-left: 6px #f2fff3 solid !important;
}
.hint-of-green--bb-6 {
  border-bottom: 6px #f2fff3 solid !important;
}
.hint-of-green--by-6 {
  border-top: 6px #f2fff3 solid !important;
  border-bottom: 6px #f2fff3 solid !important;
}
.hint-of-green--bx-6 {
  border-right: 6px #f2fff3 solid !important;
  border-left: 6px #f2fff3 solid !important;
}
.hint-of-green--ba-7 {
  border: 7px #f2fff3 solid !important;
}
.hint-of-green--bt-7 {
  border-top: 7px #f2fff3 solid !important;
}
.hint-of-green--br-7 {
  border-right: 7px #f2fff3 solid !important;
}
.hint-of-green--bl-7 {
  border-left: 7px #f2fff3 solid !important;
}
.hint-of-green--bb-7 {
  border-bottom: 7px #f2fff3 solid !important;
}
.hint-of-green--by-7 {
  border-top: 7px #f2fff3 solid !important;
  border-bottom: 7px #f2fff3 solid !important;
}
.hint-of-green--bx-7 {
  border-right: 7px #f2fff3 solid !important;
  border-left: 7px #f2fff3 solid !important;
}
.hint-of-green--ba-8 {
  border: 8px #f2fff3 solid !important;
}
.hint-of-green--bt-8 {
  border-top: 8px #f2fff3 solid !important;
}
.hint-of-green--br-8 {
  border-right: 8px #f2fff3 solid !important;
}
.hint-of-green--bl-8 {
  border-left: 8px #f2fff3 solid !important;
}
.hint-of-green--bb-8 {
  border-bottom: 8px #f2fff3 solid !important;
}
.hint-of-green--by-8 {
  border-top: 8px #f2fff3 solid !important;
  border-bottom: 8px #f2fff3 solid !important;
}
.hint-of-green--bx-8 {
  border-right: 8px #f2fff3 solid !important;
  border-left: 8px #f2fff3 solid !important;
}
.hint-of-green--ba-9 {
  border: 9px #f2fff3 solid !important;
}
.hint-of-green--bt-9 {
  border-top: 9px #f2fff3 solid !important;
}
.hint-of-green--br-9 {
  border-right: 9px #f2fff3 solid !important;
}
.hint-of-green--bl-9 {
  border-left: 9px #f2fff3 solid !important;
}
.hint-of-green--bb-9 {
  border-bottom: 9px #f2fff3 solid !important;
}
.hint-of-green--by-9 {
  border-top: 9px #f2fff3 solid !important;
  border-bottom: 9px #f2fff3 solid !important;
}
.hint-of-green--bx-9 {
  border-right: 9px #f2fff3 solid !important;
  border-left: 9px #f2fff3 solid !important;
}
.hint-of-green--ba-10 {
  border: 10px #f2fff3 solid !important;
}
.hint-of-green--bt-10 {
  border-top: 10px #f2fff3 solid !important;
}
.hint-of-green--br-10 {
  border-right: 10px #f2fff3 solid !important;
}
.hint-of-green--bl-10 {
  border-left: 10px #f2fff3 solid !important;
}
.hint-of-green--bb-10 {
  border-bottom: 10px #f2fff3 solid !important;
}
.hint-of-green--by-10 {
  border-top: 10px #f2fff3 solid !important;
  border-bottom: 10px #f2fff3 solid !important;
}
.hint-of-green--bx-10 {
  border-right: 10px #f2fff3 solid !important;
  border-left: 10px #f2fff3 solid !important;
}
.hint-of-green--ba-11 {
  border: 11px #f2fff3 solid !important;
}
.hint-of-green--bt-11 {
  border-top: 11px #f2fff3 solid !important;
}
.hint-of-green--br-11 {
  border-right: 11px #f2fff3 solid !important;
}
.hint-of-green--bl-11 {
  border-left: 11px #f2fff3 solid !important;
}
.hint-of-green--bb-11 {
  border-bottom: 11px #f2fff3 solid !important;
}
.hint-of-green--by-11 {
  border-top: 11px #f2fff3 solid !important;
  border-bottom: 11px #f2fff3 solid !important;
}
.hint-of-green--bx-11 {
  border-right: 11px #f2fff3 solid !important;
  border-left: 11px #f2fff3 solid !important;
}
.hint-of-green--ba-12 {
  border: 12px #f2fff3 solid !important;
}
.hint-of-green--bt-12 {
  border-top: 12px #f2fff3 solid !important;
}
.hint-of-green--br-12 {
  border-right: 12px #f2fff3 solid !important;
}
.hint-of-green--bl-12 {
  border-left: 12px #f2fff3 solid !important;
}
.hint-of-green--bb-12 {
  border-bottom: 12px #f2fff3 solid !important;
}
.hint-of-green--by-12 {
  border-top: 12px #f2fff3 solid !important;
  border-bottom: 12px #f2fff3 solid !important;
}
.hint-of-green--bx-12 {
  border-right: 12px #f2fff3 solid !important;
  border-left: 12px #f2fff3 solid !important;
}
.hint-of-green--ba-13 {
  border: 13px #f2fff3 solid !important;
}
.hint-of-green--bt-13 {
  border-top: 13px #f2fff3 solid !important;
}
.hint-of-green--br-13 {
  border-right: 13px #f2fff3 solid !important;
}
.hint-of-green--bl-13 {
  border-left: 13px #f2fff3 solid !important;
}
.hint-of-green--bb-13 {
  border-bottom: 13px #f2fff3 solid !important;
}
.hint-of-green--by-13 {
  border-top: 13px #f2fff3 solid !important;
  border-bottom: 13px #f2fff3 solid !important;
}
.hint-of-green--bx-13 {
  border-right: 13px #f2fff3 solid !important;
  border-left: 13px #f2fff3 solid !important;
}
.hint-of-green--ba-14 {
  border: 14px #f2fff3 solid !important;
}
.hint-of-green--bt-14 {
  border-top: 14px #f2fff3 solid !important;
}
.hint-of-green--br-14 {
  border-right: 14px #f2fff3 solid !important;
}
.hint-of-green--bl-14 {
  border-left: 14px #f2fff3 solid !important;
}
.hint-of-green--bb-14 {
  border-bottom: 14px #f2fff3 solid !important;
}
.hint-of-green--by-14 {
  border-top: 14px #f2fff3 solid !important;
  border-bottom: 14px #f2fff3 solid !important;
}
.hint-of-green--bx-14 {
  border-right: 14px #f2fff3 solid !important;
  border-left: 14px #f2fff3 solid !important;
}
.hint-of-green--ba-15 {
  border: 15px #f2fff3 solid !important;
}
.hint-of-green--bt-15 {
  border-top: 15px #f2fff3 solid !important;
}
.hint-of-green--br-15 {
  border-right: 15px #f2fff3 solid !important;
}
.hint-of-green--bl-15 {
  border-left: 15px #f2fff3 solid !important;
}
.hint-of-green--bb-15 {
  border-bottom: 15px #f2fff3 solid !important;
}
.hint-of-green--by-15 {
  border-top: 15px #f2fff3 solid !important;
  border-bottom: 15px #f2fff3 solid !important;
}
.hint-of-green--bx-15 {
  border-right: 15px #f2fff3 solid !important;
  border-left: 15px #f2fff3 solid !important;
}
.hint-of-green--ba-16 {
  border: 16px #f2fff3 solid !important;
}
.hint-of-green--bt-16 {
  border-top: 16px #f2fff3 solid !important;
}
.hint-of-green--br-16 {
  border-right: 16px #f2fff3 solid !important;
}
.hint-of-green--bl-16 {
  border-left: 16px #f2fff3 solid !important;
}
.hint-of-green--bb-16 {
  border-bottom: 16px #f2fff3 solid !important;
}
.hint-of-green--by-16 {
  border-top: 16px #f2fff3 solid !important;
  border-bottom: 16px #f2fff3 solid !important;
}
.hint-of-green--bx-16 {
  border-right: 16px #f2fff3 solid !important;
  border-left: 16px #f2fff3 solid !important;
}
.hint-of-green--ba-17 {
  border: 17px #f2fff3 solid !important;
}
.hint-of-green--bt-17 {
  border-top: 17px #f2fff3 solid !important;
}
.hint-of-green--br-17 {
  border-right: 17px #f2fff3 solid !important;
}
.hint-of-green--bl-17 {
  border-left: 17px #f2fff3 solid !important;
}
.hint-of-green--bb-17 {
  border-bottom: 17px #f2fff3 solid !important;
}
.hint-of-green--by-17 {
  border-top: 17px #f2fff3 solid !important;
  border-bottom: 17px #f2fff3 solid !important;
}
.hint-of-green--bx-17 {
  border-right: 17px #f2fff3 solid !important;
  border-left: 17px #f2fff3 solid !important;
}
.hint-of-green--ba-18 {
  border: 18px #f2fff3 solid !important;
}
.hint-of-green--bt-18 {
  border-top: 18px #f2fff3 solid !important;
}
.hint-of-green--br-18 {
  border-right: 18px #f2fff3 solid !important;
}
.hint-of-green--bl-18 {
  border-left: 18px #f2fff3 solid !important;
}
.hint-of-green--bb-18 {
  border-bottom: 18px #f2fff3 solid !important;
}
.hint-of-green--by-18 {
  border-top: 18px #f2fff3 solid !important;
  border-bottom: 18px #f2fff3 solid !important;
}
.hint-of-green--bx-18 {
  border-right: 18px #f2fff3 solid !important;
  border-left: 18px #f2fff3 solid !important;
}
.hint-of-green--ba-19 {
  border: 19px #f2fff3 solid !important;
}
.hint-of-green--bt-19 {
  border-top: 19px #f2fff3 solid !important;
}
.hint-of-green--br-19 {
  border-right: 19px #f2fff3 solid !important;
}
.hint-of-green--bl-19 {
  border-left: 19px #f2fff3 solid !important;
}
.hint-of-green--bb-19 {
  border-bottom: 19px #f2fff3 solid !important;
}
.hint-of-green--by-19 {
  border-top: 19px #f2fff3 solid !important;
  border-bottom: 19px #f2fff3 solid !important;
}
.hint-of-green--bx-19 {
  border-right: 19px #f2fff3 solid !important;
  border-left: 19px #f2fff3 solid !important;
}
.hint-of-green--ba-20 {
  border: 20px #f2fff3 solid !important;
}
.hint-of-green--bt-20 {
  border-top: 20px #f2fff3 solid !important;
}
.hint-of-green--br-20 {
  border-right: 20px #f2fff3 solid !important;
}
.hint-of-green--bl-20 {
  border-left: 20px #f2fff3 solid !important;
}
.hint-of-green--bb-20 {
  border-bottom: 20px #f2fff3 solid !important;
}
.hint-of-green--by-20 {
  border-top: 20px #f2fff3 solid !important;
  border-bottom: 20px #f2fff3 solid !important;
}
.hint-of-green--bx-20 {
  border-right: 20px #f2fff3 solid !important;
  border-left: 20px #f2fff3 solid !important;
}
.hint-of-green--ba-21 {
  border: 21px #f2fff3 solid !important;
}
.hint-of-green--bt-21 {
  border-top: 21px #f2fff3 solid !important;
}
.hint-of-green--br-21 {
  border-right: 21px #f2fff3 solid !important;
}
.hint-of-green--bl-21 {
  border-left: 21px #f2fff3 solid !important;
}
.hint-of-green--bb-21 {
  border-bottom: 21px #f2fff3 solid !important;
}
.hint-of-green--by-21 {
  border-top: 21px #f2fff3 solid !important;
  border-bottom: 21px #f2fff3 solid !important;
}
.hint-of-green--bx-21 {
  border-right: 21px #f2fff3 solid !important;
  border-left: 21px #f2fff3 solid !important;
}
.hint-of-green--ba-22 {
  border: 22px #f2fff3 solid !important;
}
.hint-of-green--bt-22 {
  border-top: 22px #f2fff3 solid !important;
}
.hint-of-green--br-22 {
  border-right: 22px #f2fff3 solid !important;
}
.hint-of-green--bl-22 {
  border-left: 22px #f2fff3 solid !important;
}
.hint-of-green--bb-22 {
  border-bottom: 22px #f2fff3 solid !important;
}
.hint-of-green--by-22 {
  border-top: 22px #f2fff3 solid !important;
  border-bottom: 22px #f2fff3 solid !important;
}
.hint-of-green--bx-22 {
  border-right: 22px #f2fff3 solid !important;
  border-left: 22px #f2fff3 solid !important;
}
.hint-of-green--ba-23 {
  border: 23px #f2fff3 solid !important;
}
.hint-of-green--bt-23 {
  border-top: 23px #f2fff3 solid !important;
}
.hint-of-green--br-23 {
  border-right: 23px #f2fff3 solid !important;
}
.hint-of-green--bl-23 {
  border-left: 23px #f2fff3 solid !important;
}
.hint-of-green--bb-23 {
  border-bottom: 23px #f2fff3 solid !important;
}
.hint-of-green--by-23 {
  border-top: 23px #f2fff3 solid !important;
  border-bottom: 23px #f2fff3 solid !important;
}
.hint-of-green--bx-23 {
  border-right: 23px #f2fff3 solid !important;
  border-left: 23px #f2fff3 solid !important;
}
.hint-of-green--ba-24 {
  border: 24px #f2fff3 solid !important;
}
.hint-of-green--bt-24 {
  border-top: 24px #f2fff3 solid !important;
}
.hint-of-green--br-24 {
  border-right: 24px #f2fff3 solid !important;
}
.hint-of-green--bl-24 {
  border-left: 24px #f2fff3 solid !important;
}
.hint-of-green--bb-24 {
  border-bottom: 24px #f2fff3 solid !important;
}
.hint-of-green--by-24 {
  border-top: 24px #f2fff3 solid !important;
  border-bottom: 24px #f2fff3 solid !important;
}
.hint-of-green--bx-24 {
  border-right: 24px #f2fff3 solid !important;
  border-left: 24px #f2fff3 solid !important;
}
.hint-of-green--ba-25 {
  border: 25px #f2fff3 solid !important;
}
.hint-of-green--bt-25 {
  border-top: 25px #f2fff3 solid !important;
}
.hint-of-green--br-25 {
  border-right: 25px #f2fff3 solid !important;
}
.hint-of-green--bl-25 {
  border-left: 25px #f2fff3 solid !important;
}
.hint-of-green--bb-25 {
  border-bottom: 25px #f2fff3 solid !important;
}
.hint-of-green--by-25 {
  border-top: 25px #f2fff3 solid !important;
  border-bottom: 25px #f2fff3 solid !important;
}
.hint-of-green--bx-25 {
  border-right: 25px #f2fff3 solid !important;
  border-left: 25px #f2fff3 solid !important;
}
.hint-of-green--ba-26 {
  border: 26px #f2fff3 solid !important;
}
.hint-of-green--bt-26 {
  border-top: 26px #f2fff3 solid !important;
}
.hint-of-green--br-26 {
  border-right: 26px #f2fff3 solid !important;
}
.hint-of-green--bl-26 {
  border-left: 26px #f2fff3 solid !important;
}
.hint-of-green--bb-26 {
  border-bottom: 26px #f2fff3 solid !important;
}
.hint-of-green--by-26 {
  border-top: 26px #f2fff3 solid !important;
  border-bottom: 26px #f2fff3 solid !important;
}
.hint-of-green--bx-26 {
  border-right: 26px #f2fff3 solid !important;
  border-left: 26px #f2fff3 solid !important;
}
.hint-of-green--ba-27 {
  border: 27px #f2fff3 solid !important;
}
.hint-of-green--bt-27 {
  border-top: 27px #f2fff3 solid !important;
}
.hint-of-green--br-27 {
  border-right: 27px #f2fff3 solid !important;
}
.hint-of-green--bl-27 {
  border-left: 27px #f2fff3 solid !important;
}
.hint-of-green--bb-27 {
  border-bottom: 27px #f2fff3 solid !important;
}
.hint-of-green--by-27 {
  border-top: 27px #f2fff3 solid !important;
  border-bottom: 27px #f2fff3 solid !important;
}
.hint-of-green--bx-27 {
  border-right: 27px #f2fff3 solid !important;
  border-left: 27px #f2fff3 solid !important;
}
.hint-of-green--ba-28 {
  border: 28px #f2fff3 solid !important;
}
.hint-of-green--bt-28 {
  border-top: 28px #f2fff3 solid !important;
}
.hint-of-green--br-28 {
  border-right: 28px #f2fff3 solid !important;
}
.hint-of-green--bl-28 {
  border-left: 28px #f2fff3 solid !important;
}
.hint-of-green--bb-28 {
  border-bottom: 28px #f2fff3 solid !important;
}
.hint-of-green--by-28 {
  border-top: 28px #f2fff3 solid !important;
  border-bottom: 28px #f2fff3 solid !important;
}
.hint-of-green--bx-28 {
  border-right: 28px #f2fff3 solid !important;
  border-left: 28px #f2fff3 solid !important;
}
.hint-of-green--ba-29 {
  border: 29px #f2fff3 solid !important;
}
.hint-of-green--bt-29 {
  border-top: 29px #f2fff3 solid !important;
}
.hint-of-green--br-29 {
  border-right: 29px #f2fff3 solid !important;
}
.hint-of-green--bl-29 {
  border-left: 29px #f2fff3 solid !important;
}
.hint-of-green--bb-29 {
  border-bottom: 29px #f2fff3 solid !important;
}
.hint-of-green--by-29 {
  border-top: 29px #f2fff3 solid !important;
  border-bottom: 29px #f2fff3 solid !important;
}
.hint-of-green--bx-29 {
  border-right: 29px #f2fff3 solid !important;
  border-left: 29px #f2fff3 solid !important;
}
.hint-of-green--ba-30 {
  border: 30px #f2fff3 solid !important;
}
.hint-of-green--bt-30 {
  border-top: 30px #f2fff3 solid !important;
}
.hint-of-green--br-30 {
  border-right: 30px #f2fff3 solid !important;
}
.hint-of-green--bl-30 {
  border-left: 30px #f2fff3 solid !important;
}
.hint-of-green--bb-30 {
  border-bottom: 30px #f2fff3 solid !important;
}
.hint-of-green--by-30 {
  border-top: 30px #f2fff3 solid !important;
  border-bottom: 30px #f2fff3 solid !important;
}
.hint-of-green--bx-30 {
  border-right: 30px #f2fff3 solid !important;
  border-left: 30px #f2fff3 solid !important;
}
.hint-of-green--ba-31 {
  border: 31px #f2fff3 solid !important;
}
.hint-of-green--bt-31 {
  border-top: 31px #f2fff3 solid !important;
}
.hint-of-green--br-31 {
  border-right: 31px #f2fff3 solid !important;
}
.hint-of-green--bl-31 {
  border-left: 31px #f2fff3 solid !important;
}
.hint-of-green--bb-31 {
  border-bottom: 31px #f2fff3 solid !important;
}
.hint-of-green--by-31 {
  border-top: 31px #f2fff3 solid !important;
  border-bottom: 31px #f2fff3 solid !important;
}
.hint-of-green--bx-31 {
  border-right: 31px #f2fff3 solid !important;
  border-left: 31px #f2fff3 solid !important;
}
.hint-of-green--ba-32 {
  border: 32px #f2fff3 solid !important;
}
.hint-of-green--bt-32 {
  border-top: 32px #f2fff3 solid !important;
}
.hint-of-green--br-32 {
  border-right: 32px #f2fff3 solid !important;
}
.hint-of-green--bl-32 {
  border-left: 32px #f2fff3 solid !important;
}
.hint-of-green--bb-32 {
  border-bottom: 32px #f2fff3 solid !important;
}
.hint-of-green--by-32 {
  border-top: 32px #f2fff3 solid !important;
  border-bottom: 32px #f2fff3 solid !important;
}
.hint-of-green--bx-32 {
  border-right: 32px #f2fff3 solid !important;
  border-left: 32px #f2fff3 solid !important;
}
.hint-of-green--ba-33 {
  border: 33px #f2fff3 solid !important;
}
.hint-of-green--bt-33 {
  border-top: 33px #f2fff3 solid !important;
}
.hint-of-green--br-33 {
  border-right: 33px #f2fff3 solid !important;
}
.hint-of-green--bl-33 {
  border-left: 33px #f2fff3 solid !important;
}
.hint-of-green--bb-33 {
  border-bottom: 33px #f2fff3 solid !important;
}
.hint-of-green--by-33 {
  border-top: 33px #f2fff3 solid !important;
  border-bottom: 33px #f2fff3 solid !important;
}
.hint-of-green--bx-33 {
  border-right: 33px #f2fff3 solid !important;
  border-left: 33px #f2fff3 solid !important;
}
.hint-of-green--ba-34 {
  border: 34px #f2fff3 solid !important;
}
.hint-of-green--bt-34 {
  border-top: 34px #f2fff3 solid !important;
}
.hint-of-green--br-34 {
  border-right: 34px #f2fff3 solid !important;
}
.hint-of-green--bl-34 {
  border-left: 34px #f2fff3 solid !important;
}
.hint-of-green--bb-34 {
  border-bottom: 34px #f2fff3 solid !important;
}
.hint-of-green--by-34 {
  border-top: 34px #f2fff3 solid !important;
  border-bottom: 34px #f2fff3 solid !important;
}
.hint-of-green--bx-34 {
  border-right: 34px #f2fff3 solid !important;
  border-left: 34px #f2fff3 solid !important;
}
.hint-of-green--ba-35 {
  border: 35px #f2fff3 solid !important;
}
.hint-of-green--bt-35 {
  border-top: 35px #f2fff3 solid !important;
}
.hint-of-green--br-35 {
  border-right: 35px #f2fff3 solid !important;
}
.hint-of-green--bl-35 {
  border-left: 35px #f2fff3 solid !important;
}
.hint-of-green--bb-35 {
  border-bottom: 35px #f2fff3 solid !important;
}
.hint-of-green--by-35 {
  border-top: 35px #f2fff3 solid !important;
  border-bottom: 35px #f2fff3 solid !important;
}
.hint-of-green--bx-35 {
  border-right: 35px #f2fff3 solid !important;
  border-left: 35px #f2fff3 solid !important;
}
.hint-of-green--ba-36 {
  border: 36px #f2fff3 solid !important;
}
.hint-of-green--bt-36 {
  border-top: 36px #f2fff3 solid !important;
}
.hint-of-green--br-36 {
  border-right: 36px #f2fff3 solid !important;
}
.hint-of-green--bl-36 {
  border-left: 36px #f2fff3 solid !important;
}
.hint-of-green--bb-36 {
  border-bottom: 36px #f2fff3 solid !important;
}
.hint-of-green--by-36 {
  border-top: 36px #f2fff3 solid !important;
  border-bottom: 36px #f2fff3 solid !important;
}
.hint-of-green--bx-36 {
  border-right: 36px #f2fff3 solid !important;
  border-left: 36px #f2fff3 solid !important;
}
.hint-of-green--ba-37 {
  border: 37px #f2fff3 solid !important;
}
.hint-of-green--bt-37 {
  border-top: 37px #f2fff3 solid !important;
}
.hint-of-green--br-37 {
  border-right: 37px #f2fff3 solid !important;
}
.hint-of-green--bl-37 {
  border-left: 37px #f2fff3 solid !important;
}
.hint-of-green--bb-37 {
  border-bottom: 37px #f2fff3 solid !important;
}
.hint-of-green--by-37 {
  border-top: 37px #f2fff3 solid !important;
  border-bottom: 37px #f2fff3 solid !important;
}
.hint-of-green--bx-37 {
  border-right: 37px #f2fff3 solid !important;
  border-left: 37px #f2fff3 solid !important;
}
.hint-of-green--ba-38 {
  border: 38px #f2fff3 solid !important;
}
.hint-of-green--bt-38 {
  border-top: 38px #f2fff3 solid !important;
}
.hint-of-green--br-38 {
  border-right: 38px #f2fff3 solid !important;
}
.hint-of-green--bl-38 {
  border-left: 38px #f2fff3 solid !important;
}
.hint-of-green--bb-38 {
  border-bottom: 38px #f2fff3 solid !important;
}
.hint-of-green--by-38 {
  border-top: 38px #f2fff3 solid !important;
  border-bottom: 38px #f2fff3 solid !important;
}
.hint-of-green--bx-38 {
  border-right: 38px #f2fff3 solid !important;
  border-left: 38px #f2fff3 solid !important;
}
.hint-of-green--ba-39 {
  border: 39px #f2fff3 solid !important;
}
.hint-of-green--bt-39 {
  border-top: 39px #f2fff3 solid !important;
}
.hint-of-green--br-39 {
  border-right: 39px #f2fff3 solid !important;
}
.hint-of-green--bl-39 {
  border-left: 39px #f2fff3 solid !important;
}
.hint-of-green--bb-39 {
  border-bottom: 39px #f2fff3 solid !important;
}
.hint-of-green--by-39 {
  border-top: 39px #f2fff3 solid !important;
  border-bottom: 39px #f2fff3 solid !important;
}
.hint-of-green--bx-39 {
  border-right: 39px #f2fff3 solid !important;
  border-left: 39px #f2fff3 solid !important;
}
.hint-of-green--ba-40 {
  border: 40px #f2fff3 solid !important;
}
.hint-of-green--bt-40 {
  border-top: 40px #f2fff3 solid !important;
}
.hint-of-green--br-40 {
  border-right: 40px #f2fff3 solid !important;
}
.hint-of-green--bl-40 {
  border-left: 40px #f2fff3 solid !important;
}
.hint-of-green--bb-40 {
  border-bottom: 40px #f2fff3 solid !important;
}
.hint-of-green--by-40 {
  border-top: 40px #f2fff3 solid !important;
  border-bottom: 40px #f2fff3 solid !important;
}
.hint-of-green--bx-40 {
  border-right: 40px #f2fff3 solid !important;
  border-left: 40px #f2fff3 solid !important;
}
.hint-of-green--ba-41 {
  border: 41px #f2fff3 solid !important;
}
.hint-of-green--bt-41 {
  border-top: 41px #f2fff3 solid !important;
}
.hint-of-green--br-41 {
  border-right: 41px #f2fff3 solid !important;
}
.hint-of-green--bl-41 {
  border-left: 41px #f2fff3 solid !important;
}
.hint-of-green--bb-41 {
  border-bottom: 41px #f2fff3 solid !important;
}
.hint-of-green--by-41 {
  border-top: 41px #f2fff3 solid !important;
  border-bottom: 41px #f2fff3 solid !important;
}
.hint-of-green--bx-41 {
  border-right: 41px #f2fff3 solid !important;
  border-left: 41px #f2fff3 solid !important;
}
.hint-of-green--ba-42 {
  border: 42px #f2fff3 solid !important;
}
.hint-of-green--bt-42 {
  border-top: 42px #f2fff3 solid !important;
}
.hint-of-green--br-42 {
  border-right: 42px #f2fff3 solid !important;
}
.hint-of-green--bl-42 {
  border-left: 42px #f2fff3 solid !important;
}
.hint-of-green--bb-42 {
  border-bottom: 42px #f2fff3 solid !important;
}
.hint-of-green--by-42 {
  border-top: 42px #f2fff3 solid !important;
  border-bottom: 42px #f2fff3 solid !important;
}
.hint-of-green--bx-42 {
  border-right: 42px #f2fff3 solid !important;
  border-left: 42px #f2fff3 solid !important;
}
.hint-of-green--ba-43 {
  border: 43px #f2fff3 solid !important;
}
.hint-of-green--bt-43 {
  border-top: 43px #f2fff3 solid !important;
}
.hint-of-green--br-43 {
  border-right: 43px #f2fff3 solid !important;
}
.hint-of-green--bl-43 {
  border-left: 43px #f2fff3 solid !important;
}
.hint-of-green--bb-43 {
  border-bottom: 43px #f2fff3 solid !important;
}
.hint-of-green--by-43 {
  border-top: 43px #f2fff3 solid !important;
  border-bottom: 43px #f2fff3 solid !important;
}
.hint-of-green--bx-43 {
  border-right: 43px #f2fff3 solid !important;
  border-left: 43px #f2fff3 solid !important;
}
.hint-of-green--ba-44 {
  border: 44px #f2fff3 solid !important;
}
.hint-of-green--bt-44 {
  border-top: 44px #f2fff3 solid !important;
}
.hint-of-green--br-44 {
  border-right: 44px #f2fff3 solid !important;
}
.hint-of-green--bl-44 {
  border-left: 44px #f2fff3 solid !important;
}
.hint-of-green--bb-44 {
  border-bottom: 44px #f2fff3 solid !important;
}
.hint-of-green--by-44 {
  border-top: 44px #f2fff3 solid !important;
  border-bottom: 44px #f2fff3 solid !important;
}
.hint-of-green--bx-44 {
  border-right: 44px #f2fff3 solid !important;
  border-left: 44px #f2fff3 solid !important;
}
.hint-of-green--ba-45 {
  border: 45px #f2fff3 solid !important;
}
.hint-of-green--bt-45 {
  border-top: 45px #f2fff3 solid !important;
}
.hint-of-green--br-45 {
  border-right: 45px #f2fff3 solid !important;
}
.hint-of-green--bl-45 {
  border-left: 45px #f2fff3 solid !important;
}
.hint-of-green--bb-45 {
  border-bottom: 45px #f2fff3 solid !important;
}
.hint-of-green--by-45 {
  border-top: 45px #f2fff3 solid !important;
  border-bottom: 45px #f2fff3 solid !important;
}
.hint-of-green--bx-45 {
  border-right: 45px #f2fff3 solid !important;
  border-left: 45px #f2fff3 solid !important;
}
.hint-of-green--ba-46 {
  border: 46px #f2fff3 solid !important;
}
.hint-of-green--bt-46 {
  border-top: 46px #f2fff3 solid !important;
}
.hint-of-green--br-46 {
  border-right: 46px #f2fff3 solid !important;
}
.hint-of-green--bl-46 {
  border-left: 46px #f2fff3 solid !important;
}
.hint-of-green--bb-46 {
  border-bottom: 46px #f2fff3 solid !important;
}
.hint-of-green--by-46 {
  border-top: 46px #f2fff3 solid !important;
  border-bottom: 46px #f2fff3 solid !important;
}
.hint-of-green--bx-46 {
  border-right: 46px #f2fff3 solid !important;
  border-left: 46px #f2fff3 solid !important;
}
.hint-of-green--ba-47 {
  border: 47px #f2fff3 solid !important;
}
.hint-of-green--bt-47 {
  border-top: 47px #f2fff3 solid !important;
}
.hint-of-green--br-47 {
  border-right: 47px #f2fff3 solid !important;
}
.hint-of-green--bl-47 {
  border-left: 47px #f2fff3 solid !important;
}
.hint-of-green--bb-47 {
  border-bottom: 47px #f2fff3 solid !important;
}
.hint-of-green--by-47 {
  border-top: 47px #f2fff3 solid !important;
  border-bottom: 47px #f2fff3 solid !important;
}
.hint-of-green--bx-47 {
  border-right: 47px #f2fff3 solid !important;
  border-left: 47px #f2fff3 solid !important;
}
.hint-of-green--ba-48 {
  border: 48px #f2fff3 solid !important;
}
.hint-of-green--bt-48 {
  border-top: 48px #f2fff3 solid !important;
}
.hint-of-green--br-48 {
  border-right: 48px #f2fff3 solid !important;
}
.hint-of-green--bl-48 {
  border-left: 48px #f2fff3 solid !important;
}
.hint-of-green--bb-48 {
  border-bottom: 48px #f2fff3 solid !important;
}
.hint-of-green--by-48 {
  border-top: 48px #f2fff3 solid !important;
  border-bottom: 48px #f2fff3 solid !important;
}
.hint-of-green--bx-48 {
  border-right: 48px #f2fff3 solid !important;
  border-left: 48px #f2fff3 solid !important;
}
.hint-of-green--ba-49 {
  border: 49px #f2fff3 solid !important;
}
.hint-of-green--bt-49 {
  border-top: 49px #f2fff3 solid !important;
}
.hint-of-green--br-49 {
  border-right: 49px #f2fff3 solid !important;
}
.hint-of-green--bl-49 {
  border-left: 49px #f2fff3 solid !important;
}
.hint-of-green--bb-49 {
  border-bottom: 49px #f2fff3 solid !important;
}
.hint-of-green--by-49 {
  border-top: 49px #f2fff3 solid !important;
  border-bottom: 49px #f2fff3 solid !important;
}
.hint-of-green--bx-49 {
  border-right: 49px #f2fff3 solid !important;
  border-left: 49px #f2fff3 solid !important;
}
.hint-of-green--ba-50 {
  border: 50px #f2fff3 solid !important;
}
.hint-of-green--bt-50 {
  border-top: 50px #f2fff3 solid !important;
}
.hint-of-green--br-50 {
  border-right: 50px #f2fff3 solid !important;
}
.hint-of-green--bl-50 {
  border-left: 50px #f2fff3 solid !important;
}
.hint-of-green--bb-50 {
  border-bottom: 50px #f2fff3 solid !important;
}
.hint-of-green--by-50 {
  border-top: 50px #f2fff3 solid !important;
  border-bottom: 50px #f2fff3 solid !important;
}
.hint-of-green--bx-50 {
  border-right: 50px #f2fff3 solid !important;
  border-left: 50px #f2fff3 solid !important;
}
.hint-of-green--ba-51 {
  border: 51px #f2fff3 solid !important;
}
.hint-of-green--bt-51 {
  border-top: 51px #f2fff3 solid !important;
}
.hint-of-green--br-51 {
  border-right: 51px #f2fff3 solid !important;
}
.hint-of-green--bl-51 {
  border-left: 51px #f2fff3 solid !important;
}
.hint-of-green--bb-51 {
  border-bottom: 51px #f2fff3 solid !important;
}
.hint-of-green--by-51 {
  border-top: 51px #f2fff3 solid !important;
  border-bottom: 51px #f2fff3 solid !important;
}
.hint-of-green--bx-51 {
  border-right: 51px #f2fff3 solid !important;
  border-left: 51px #f2fff3 solid !important;
}
.hint-of-green--ba-52 {
  border: 52px #f2fff3 solid !important;
}
.hint-of-green--bt-52 {
  border-top: 52px #f2fff3 solid !important;
}
.hint-of-green--br-52 {
  border-right: 52px #f2fff3 solid !important;
}
.hint-of-green--bl-52 {
  border-left: 52px #f2fff3 solid !important;
}
.hint-of-green--bb-52 {
  border-bottom: 52px #f2fff3 solid !important;
}
.hint-of-green--by-52 {
  border-top: 52px #f2fff3 solid !important;
  border-bottom: 52px #f2fff3 solid !important;
}
.hint-of-green--bx-52 {
  border-right: 52px #f2fff3 solid !important;
  border-left: 52px #f2fff3 solid !important;
}
.hint-of-green--ba-53 {
  border: 53px #f2fff3 solid !important;
}
.hint-of-green--bt-53 {
  border-top: 53px #f2fff3 solid !important;
}
.hint-of-green--br-53 {
  border-right: 53px #f2fff3 solid !important;
}
.hint-of-green--bl-53 {
  border-left: 53px #f2fff3 solid !important;
}
.hint-of-green--bb-53 {
  border-bottom: 53px #f2fff3 solid !important;
}
.hint-of-green--by-53 {
  border-top: 53px #f2fff3 solid !important;
  border-bottom: 53px #f2fff3 solid !important;
}
.hint-of-green--bx-53 {
  border-right: 53px #f2fff3 solid !important;
  border-left: 53px #f2fff3 solid !important;
}
.hint-of-green--ba-54 {
  border: 54px #f2fff3 solid !important;
}
.hint-of-green--bt-54 {
  border-top: 54px #f2fff3 solid !important;
}
.hint-of-green--br-54 {
  border-right: 54px #f2fff3 solid !important;
}
.hint-of-green--bl-54 {
  border-left: 54px #f2fff3 solid !important;
}
.hint-of-green--bb-54 {
  border-bottom: 54px #f2fff3 solid !important;
}
.hint-of-green--by-54 {
  border-top: 54px #f2fff3 solid !important;
  border-bottom: 54px #f2fff3 solid !important;
}
.hint-of-green--bx-54 {
  border-right: 54px #f2fff3 solid !important;
  border-left: 54px #f2fff3 solid !important;
}
.hint-of-green--ba-55 {
  border: 55px #f2fff3 solid !important;
}
.hint-of-green--bt-55 {
  border-top: 55px #f2fff3 solid !important;
}
.hint-of-green--br-55 {
  border-right: 55px #f2fff3 solid !important;
}
.hint-of-green--bl-55 {
  border-left: 55px #f2fff3 solid !important;
}
.hint-of-green--bb-55 {
  border-bottom: 55px #f2fff3 solid !important;
}
.hint-of-green--by-55 {
  border-top: 55px #f2fff3 solid !important;
  border-bottom: 55px #f2fff3 solid !important;
}
.hint-of-green--bx-55 {
  border-right: 55px #f2fff3 solid !important;
  border-left: 55px #f2fff3 solid !important;
}
.hint-of-green--ba-56 {
  border: 56px #f2fff3 solid !important;
}
.hint-of-green--bt-56 {
  border-top: 56px #f2fff3 solid !important;
}
.hint-of-green--br-56 {
  border-right: 56px #f2fff3 solid !important;
}
.hint-of-green--bl-56 {
  border-left: 56px #f2fff3 solid !important;
}
.hint-of-green--bb-56 {
  border-bottom: 56px #f2fff3 solid !important;
}
.hint-of-green--by-56 {
  border-top: 56px #f2fff3 solid !important;
  border-bottom: 56px #f2fff3 solid !important;
}
.hint-of-green--bx-56 {
  border-right: 56px #f2fff3 solid !important;
  border-left: 56px #f2fff3 solid !important;
}
.hint-of-green--ba-57 {
  border: 57px #f2fff3 solid !important;
}
.hint-of-green--bt-57 {
  border-top: 57px #f2fff3 solid !important;
}
.hint-of-green--br-57 {
  border-right: 57px #f2fff3 solid !important;
}
.hint-of-green--bl-57 {
  border-left: 57px #f2fff3 solid !important;
}
.hint-of-green--bb-57 {
  border-bottom: 57px #f2fff3 solid !important;
}
.hint-of-green--by-57 {
  border-top: 57px #f2fff3 solid !important;
  border-bottom: 57px #f2fff3 solid !important;
}
.hint-of-green--bx-57 {
  border-right: 57px #f2fff3 solid !important;
  border-left: 57px #f2fff3 solid !important;
}
.hint-of-green--ba-58 {
  border: 58px #f2fff3 solid !important;
}
.hint-of-green--bt-58 {
  border-top: 58px #f2fff3 solid !important;
}
.hint-of-green--br-58 {
  border-right: 58px #f2fff3 solid !important;
}
.hint-of-green--bl-58 {
  border-left: 58px #f2fff3 solid !important;
}
.hint-of-green--bb-58 {
  border-bottom: 58px #f2fff3 solid !important;
}
.hint-of-green--by-58 {
  border-top: 58px #f2fff3 solid !important;
  border-bottom: 58px #f2fff3 solid !important;
}
.hint-of-green--bx-58 {
  border-right: 58px #f2fff3 solid !important;
  border-left: 58px #f2fff3 solid !important;
}
.hint-of-green--ba-59 {
  border: 59px #f2fff3 solid !important;
}
.hint-of-green--bt-59 {
  border-top: 59px #f2fff3 solid !important;
}
.hint-of-green--br-59 {
  border-right: 59px #f2fff3 solid !important;
}
.hint-of-green--bl-59 {
  border-left: 59px #f2fff3 solid !important;
}
.hint-of-green--bb-59 {
  border-bottom: 59px #f2fff3 solid !important;
}
.hint-of-green--by-59 {
  border-top: 59px #f2fff3 solid !important;
  border-bottom: 59px #f2fff3 solid !important;
}
.hint-of-green--bx-59 {
  border-right: 59px #f2fff3 solid !important;
  border-left: 59px #f2fff3 solid !important;
}
.hint-of-green--ba-60 {
  border: 60px #f2fff3 solid !important;
}
.hint-of-green--bt-60 {
  border-top: 60px #f2fff3 solid !important;
}
.hint-of-green--br-60 {
  border-right: 60px #f2fff3 solid !important;
}
.hint-of-green--bl-60 {
  border-left: 60px #f2fff3 solid !important;
}
.hint-of-green--bb-60 {
  border-bottom: 60px #f2fff3 solid !important;
}
.hint-of-green--by-60 {
  border-top: 60px #f2fff3 solid !important;
  border-bottom: 60px #f2fff3 solid !important;
}
.hint-of-green--bx-60 {
  border-right: 60px #f2fff3 solid !important;
  border-left: 60px #f2fff3 solid !important;
}
.hint-of-green--ba-61 {
  border: 61px #f2fff3 solid !important;
}
.hint-of-green--bt-61 {
  border-top: 61px #f2fff3 solid !important;
}
.hint-of-green--br-61 {
  border-right: 61px #f2fff3 solid !important;
}
.hint-of-green--bl-61 {
  border-left: 61px #f2fff3 solid !important;
}
.hint-of-green--bb-61 {
  border-bottom: 61px #f2fff3 solid !important;
}
.hint-of-green--by-61 {
  border-top: 61px #f2fff3 solid !important;
  border-bottom: 61px #f2fff3 solid !important;
}
.hint-of-green--bx-61 {
  border-right: 61px #f2fff3 solid !important;
  border-left: 61px #f2fff3 solid !important;
}
.hint-of-green--ba-62 {
  border: 62px #f2fff3 solid !important;
}
.hint-of-green--bt-62 {
  border-top: 62px #f2fff3 solid !important;
}
.hint-of-green--br-62 {
  border-right: 62px #f2fff3 solid !important;
}
.hint-of-green--bl-62 {
  border-left: 62px #f2fff3 solid !important;
}
.hint-of-green--bb-62 {
  border-bottom: 62px #f2fff3 solid !important;
}
.hint-of-green--by-62 {
  border-top: 62px #f2fff3 solid !important;
  border-bottom: 62px #f2fff3 solid !important;
}
.hint-of-green--bx-62 {
  border-right: 62px #f2fff3 solid !important;
  border-left: 62px #f2fff3 solid !important;
}
.hint-of-green--ba-63 {
  border: 63px #f2fff3 solid !important;
}
.hint-of-green--bt-63 {
  border-top: 63px #f2fff3 solid !important;
}
.hint-of-green--br-63 {
  border-right: 63px #f2fff3 solid !important;
}
.hint-of-green--bl-63 {
  border-left: 63px #f2fff3 solid !important;
}
.hint-of-green--bb-63 {
  border-bottom: 63px #f2fff3 solid !important;
}
.hint-of-green--by-63 {
  border-top: 63px #f2fff3 solid !important;
  border-bottom: 63px #f2fff3 solid !important;
}
.hint-of-green--bx-63 {
  border-right: 63px #f2fff3 solid !important;
  border-left: 63px #f2fff3 solid !important;
}
.hint-of-green--ba-64 {
  border: 64px #f2fff3 solid !important;
}
.hint-of-green--bt-64 {
  border-top: 64px #f2fff3 solid !important;
}
.hint-of-green--br-64 {
  border-right: 64px #f2fff3 solid !important;
}
.hint-of-green--bl-64 {
  border-left: 64px #f2fff3 solid !important;
}
.hint-of-green--bb-64 {
  border-bottom: 64px #f2fff3 solid !important;
}
.hint-of-green--by-64 {
  border-top: 64px #f2fff3 solid !important;
  border-bottom: 64px #f2fff3 solid !important;
}
.hint-of-green--bx-64 {
  border-right: 64px #f2fff3 solid !important;
  border-left: 64px #f2fff3 solid !important;
}
.hint-of-green--ba-65 {
  border: 65px #f2fff3 solid !important;
}
.hint-of-green--bt-65 {
  border-top: 65px #f2fff3 solid !important;
}
.hint-of-green--br-65 {
  border-right: 65px #f2fff3 solid !important;
}
.hint-of-green--bl-65 {
  border-left: 65px #f2fff3 solid !important;
}
.hint-of-green--bb-65 {
  border-bottom: 65px #f2fff3 solid !important;
}
.hint-of-green--by-65 {
  border-top: 65px #f2fff3 solid !important;
  border-bottom: 65px #f2fff3 solid !important;
}
.hint-of-green--bx-65 {
  border-right: 65px #f2fff3 solid !important;
  border-left: 65px #f2fff3 solid !important;
}
.hint-of-green--ba-66 {
  border: 66px #f2fff3 solid !important;
}
.hint-of-green--bt-66 {
  border-top: 66px #f2fff3 solid !important;
}
.hint-of-green--br-66 {
  border-right: 66px #f2fff3 solid !important;
}
.hint-of-green--bl-66 {
  border-left: 66px #f2fff3 solid !important;
}
.hint-of-green--bb-66 {
  border-bottom: 66px #f2fff3 solid !important;
}
.hint-of-green--by-66 {
  border-top: 66px #f2fff3 solid !important;
  border-bottom: 66px #f2fff3 solid !important;
}
.hint-of-green--bx-66 {
  border-right: 66px #f2fff3 solid !important;
  border-left: 66px #f2fff3 solid !important;
}
.hint-of-green--ba-67 {
  border: 67px #f2fff3 solid !important;
}
.hint-of-green--bt-67 {
  border-top: 67px #f2fff3 solid !important;
}
.hint-of-green--br-67 {
  border-right: 67px #f2fff3 solid !important;
}
.hint-of-green--bl-67 {
  border-left: 67px #f2fff3 solid !important;
}
.hint-of-green--bb-67 {
  border-bottom: 67px #f2fff3 solid !important;
}
.hint-of-green--by-67 {
  border-top: 67px #f2fff3 solid !important;
  border-bottom: 67px #f2fff3 solid !important;
}
.hint-of-green--bx-67 {
  border-right: 67px #f2fff3 solid !important;
  border-left: 67px #f2fff3 solid !important;
}
.hint-of-green--ba-68 {
  border: 68px #f2fff3 solid !important;
}
.hint-of-green--bt-68 {
  border-top: 68px #f2fff3 solid !important;
}
.hint-of-green--br-68 {
  border-right: 68px #f2fff3 solid !important;
}
.hint-of-green--bl-68 {
  border-left: 68px #f2fff3 solid !important;
}
.hint-of-green--bb-68 {
  border-bottom: 68px #f2fff3 solid !important;
}
.hint-of-green--by-68 {
  border-top: 68px #f2fff3 solid !important;
  border-bottom: 68px #f2fff3 solid !important;
}
.hint-of-green--bx-68 {
  border-right: 68px #f2fff3 solid !important;
  border-left: 68px #f2fff3 solid !important;
}
.hint-of-green--ba-69 {
  border: 69px #f2fff3 solid !important;
}
.hint-of-green--bt-69 {
  border-top: 69px #f2fff3 solid !important;
}
.hint-of-green--br-69 {
  border-right: 69px #f2fff3 solid !important;
}
.hint-of-green--bl-69 {
  border-left: 69px #f2fff3 solid !important;
}
.hint-of-green--bb-69 {
  border-bottom: 69px #f2fff3 solid !important;
}
.hint-of-green--by-69 {
  border-top: 69px #f2fff3 solid !important;
  border-bottom: 69px #f2fff3 solid !important;
}
.hint-of-green--bx-69 {
  border-right: 69px #f2fff3 solid !important;
  border-left: 69px #f2fff3 solid !important;
}
.hint-of-green--ba-70 {
  border: 70px #f2fff3 solid !important;
}
.hint-of-green--bt-70 {
  border-top: 70px #f2fff3 solid !important;
}
.hint-of-green--br-70 {
  border-right: 70px #f2fff3 solid !important;
}
.hint-of-green--bl-70 {
  border-left: 70px #f2fff3 solid !important;
}
.hint-of-green--bb-70 {
  border-bottom: 70px #f2fff3 solid !important;
}
.hint-of-green--by-70 {
  border-top: 70px #f2fff3 solid !important;
  border-bottom: 70px #f2fff3 solid !important;
}
.hint-of-green--bx-70 {
  border-right: 70px #f2fff3 solid !important;
  border-left: 70px #f2fff3 solid !important;
}
.hint-of-green--ba-71 {
  border: 71px #f2fff3 solid !important;
}
.hint-of-green--bt-71 {
  border-top: 71px #f2fff3 solid !important;
}
.hint-of-green--br-71 {
  border-right: 71px #f2fff3 solid !important;
}
.hint-of-green--bl-71 {
  border-left: 71px #f2fff3 solid !important;
}
.hint-of-green--bb-71 {
  border-bottom: 71px #f2fff3 solid !important;
}
.hint-of-green--by-71 {
  border-top: 71px #f2fff3 solid !important;
  border-bottom: 71px #f2fff3 solid !important;
}
.hint-of-green--bx-71 {
  border-right: 71px #f2fff3 solid !important;
  border-left: 71px #f2fff3 solid !important;
}
.hint-of-green--ba-72 {
  border: 72px #f2fff3 solid !important;
}
.hint-of-green--bt-72 {
  border-top: 72px #f2fff3 solid !important;
}
.hint-of-green--br-72 {
  border-right: 72px #f2fff3 solid !important;
}
.hint-of-green--bl-72 {
  border-left: 72px #f2fff3 solid !important;
}
.hint-of-green--bb-72 {
  border-bottom: 72px #f2fff3 solid !important;
}
.hint-of-green--by-72 {
  border-top: 72px #f2fff3 solid !important;
  border-bottom: 72px #f2fff3 solid !important;
}
.hint-of-green--bx-72 {
  border-right: 72px #f2fff3 solid !important;
  border-left: 72px #f2fff3 solid !important;
}
.hint-of-green--ba-73 {
  border: 73px #f2fff3 solid !important;
}
.hint-of-green--bt-73 {
  border-top: 73px #f2fff3 solid !important;
}
.hint-of-green--br-73 {
  border-right: 73px #f2fff3 solid !important;
}
.hint-of-green--bl-73 {
  border-left: 73px #f2fff3 solid !important;
}
.hint-of-green--bb-73 {
  border-bottom: 73px #f2fff3 solid !important;
}
.hint-of-green--by-73 {
  border-top: 73px #f2fff3 solid !important;
  border-bottom: 73px #f2fff3 solid !important;
}
.hint-of-green--bx-73 {
  border-right: 73px #f2fff3 solid !important;
  border-left: 73px #f2fff3 solid !important;
}
.hint-of-green--ba-74 {
  border: 74px #f2fff3 solid !important;
}
.hint-of-green--bt-74 {
  border-top: 74px #f2fff3 solid !important;
}
.hint-of-green--br-74 {
  border-right: 74px #f2fff3 solid !important;
}
.hint-of-green--bl-74 {
  border-left: 74px #f2fff3 solid !important;
}
.hint-of-green--bb-74 {
  border-bottom: 74px #f2fff3 solid !important;
}
.hint-of-green--by-74 {
  border-top: 74px #f2fff3 solid !important;
  border-bottom: 74px #f2fff3 solid !important;
}
.hint-of-green--bx-74 {
  border-right: 74px #f2fff3 solid !important;
  border-left: 74px #f2fff3 solid !important;
}
.hint-of-green--ba-75 {
  border: 75px #f2fff3 solid !important;
}
.hint-of-green--bt-75 {
  border-top: 75px #f2fff3 solid !important;
}
.hint-of-green--br-75 {
  border-right: 75px #f2fff3 solid !important;
}
.hint-of-green--bl-75 {
  border-left: 75px #f2fff3 solid !important;
}
.hint-of-green--bb-75 {
  border-bottom: 75px #f2fff3 solid !important;
}
.hint-of-green--by-75 {
  border-top: 75px #f2fff3 solid !important;
  border-bottom: 75px #f2fff3 solid !important;
}
.hint-of-green--bx-75 {
  border-right: 75px #f2fff3 solid !important;
  border-left: 75px #f2fff3 solid !important;
}
.hint-of-green--ba-76 {
  border: 76px #f2fff3 solid !important;
}
.hint-of-green--bt-76 {
  border-top: 76px #f2fff3 solid !important;
}
.hint-of-green--br-76 {
  border-right: 76px #f2fff3 solid !important;
}
.hint-of-green--bl-76 {
  border-left: 76px #f2fff3 solid !important;
}
.hint-of-green--bb-76 {
  border-bottom: 76px #f2fff3 solid !important;
}
.hint-of-green--by-76 {
  border-top: 76px #f2fff3 solid !important;
  border-bottom: 76px #f2fff3 solid !important;
}
.hint-of-green--bx-76 {
  border-right: 76px #f2fff3 solid !important;
  border-left: 76px #f2fff3 solid !important;
}
.hint-of-green--ba-77 {
  border: 77px #f2fff3 solid !important;
}
.hint-of-green--bt-77 {
  border-top: 77px #f2fff3 solid !important;
}
.hint-of-green--br-77 {
  border-right: 77px #f2fff3 solid !important;
}
.hint-of-green--bl-77 {
  border-left: 77px #f2fff3 solid !important;
}
.hint-of-green--bb-77 {
  border-bottom: 77px #f2fff3 solid !important;
}
.hint-of-green--by-77 {
  border-top: 77px #f2fff3 solid !important;
  border-bottom: 77px #f2fff3 solid !important;
}
.hint-of-green--bx-77 {
  border-right: 77px #f2fff3 solid !important;
  border-left: 77px #f2fff3 solid !important;
}
.hint-of-green--ba-78 {
  border: 78px #f2fff3 solid !important;
}
.hint-of-green--bt-78 {
  border-top: 78px #f2fff3 solid !important;
}
.hint-of-green--br-78 {
  border-right: 78px #f2fff3 solid !important;
}
.hint-of-green--bl-78 {
  border-left: 78px #f2fff3 solid !important;
}
.hint-of-green--bb-78 {
  border-bottom: 78px #f2fff3 solid !important;
}
.hint-of-green--by-78 {
  border-top: 78px #f2fff3 solid !important;
  border-bottom: 78px #f2fff3 solid !important;
}
.hint-of-green--bx-78 {
  border-right: 78px #f2fff3 solid !important;
  border-left: 78px #f2fff3 solid !important;
}
.hint-of-green--ba-79 {
  border: 79px #f2fff3 solid !important;
}
.hint-of-green--bt-79 {
  border-top: 79px #f2fff3 solid !important;
}
.hint-of-green--br-79 {
  border-right: 79px #f2fff3 solid !important;
}
.hint-of-green--bl-79 {
  border-left: 79px #f2fff3 solid !important;
}
.hint-of-green--bb-79 {
  border-bottom: 79px #f2fff3 solid !important;
}
.hint-of-green--by-79 {
  border-top: 79px #f2fff3 solid !important;
  border-bottom: 79px #f2fff3 solid !important;
}
.hint-of-green--bx-79 {
  border-right: 79px #f2fff3 solid !important;
  border-left: 79px #f2fff3 solid !important;
}
.hint-of-green--ba-80 {
  border: 80px #f2fff3 solid !important;
}
.hint-of-green--bt-80 {
  border-top: 80px #f2fff3 solid !important;
}
.hint-of-green--br-80 {
  border-right: 80px #f2fff3 solid !important;
}
.hint-of-green--bl-80 {
  border-left: 80px #f2fff3 solid !important;
}
.hint-of-green--bb-80 {
  border-bottom: 80px #f2fff3 solid !important;
}
.hint-of-green--by-80 {
  border-top: 80px #f2fff3 solid !important;
  border-bottom: 80px #f2fff3 solid !important;
}
.hint-of-green--bx-80 {
  border-right: 80px #f2fff3 solid !important;
  border-left: 80px #f2fff3 solid !important;
}
.hint-of-green--ba-81 {
  border: 81px #f2fff3 solid !important;
}
.hint-of-green--bt-81 {
  border-top: 81px #f2fff3 solid !important;
}
.hint-of-green--br-81 {
  border-right: 81px #f2fff3 solid !important;
}
.hint-of-green--bl-81 {
  border-left: 81px #f2fff3 solid !important;
}
.hint-of-green--bb-81 {
  border-bottom: 81px #f2fff3 solid !important;
}
.hint-of-green--by-81 {
  border-top: 81px #f2fff3 solid !important;
  border-bottom: 81px #f2fff3 solid !important;
}
.hint-of-green--bx-81 {
  border-right: 81px #f2fff3 solid !important;
  border-left: 81px #f2fff3 solid !important;
}
.hint-of-green--ba-82 {
  border: 82px #f2fff3 solid !important;
}
.hint-of-green--bt-82 {
  border-top: 82px #f2fff3 solid !important;
}
.hint-of-green--br-82 {
  border-right: 82px #f2fff3 solid !important;
}
.hint-of-green--bl-82 {
  border-left: 82px #f2fff3 solid !important;
}
.hint-of-green--bb-82 {
  border-bottom: 82px #f2fff3 solid !important;
}
.hint-of-green--by-82 {
  border-top: 82px #f2fff3 solid !important;
  border-bottom: 82px #f2fff3 solid !important;
}
.hint-of-green--bx-82 {
  border-right: 82px #f2fff3 solid !important;
  border-left: 82px #f2fff3 solid !important;
}
.hint-of-green--ba-83 {
  border: 83px #f2fff3 solid !important;
}
.hint-of-green--bt-83 {
  border-top: 83px #f2fff3 solid !important;
}
.hint-of-green--br-83 {
  border-right: 83px #f2fff3 solid !important;
}
.hint-of-green--bl-83 {
  border-left: 83px #f2fff3 solid !important;
}
.hint-of-green--bb-83 {
  border-bottom: 83px #f2fff3 solid !important;
}
.hint-of-green--by-83 {
  border-top: 83px #f2fff3 solid !important;
  border-bottom: 83px #f2fff3 solid !important;
}
.hint-of-green--bx-83 {
  border-right: 83px #f2fff3 solid !important;
  border-left: 83px #f2fff3 solid !important;
}
.hint-of-green--ba-84 {
  border: 84px #f2fff3 solid !important;
}
.hint-of-green--bt-84 {
  border-top: 84px #f2fff3 solid !important;
}
.hint-of-green--br-84 {
  border-right: 84px #f2fff3 solid !important;
}
.hint-of-green--bl-84 {
  border-left: 84px #f2fff3 solid !important;
}
.hint-of-green--bb-84 {
  border-bottom: 84px #f2fff3 solid !important;
}
.hint-of-green--by-84 {
  border-top: 84px #f2fff3 solid !important;
  border-bottom: 84px #f2fff3 solid !important;
}
.hint-of-green--bx-84 {
  border-right: 84px #f2fff3 solid !important;
  border-left: 84px #f2fff3 solid !important;
}
.hint-of-green--ba-85 {
  border: 85px #f2fff3 solid !important;
}
.hint-of-green--bt-85 {
  border-top: 85px #f2fff3 solid !important;
}
.hint-of-green--br-85 {
  border-right: 85px #f2fff3 solid !important;
}
.hint-of-green--bl-85 {
  border-left: 85px #f2fff3 solid !important;
}
.hint-of-green--bb-85 {
  border-bottom: 85px #f2fff3 solid !important;
}
.hint-of-green--by-85 {
  border-top: 85px #f2fff3 solid !important;
  border-bottom: 85px #f2fff3 solid !important;
}
.hint-of-green--bx-85 {
  border-right: 85px #f2fff3 solid !important;
  border-left: 85px #f2fff3 solid !important;
}
.hint-of-green--ba-86 {
  border: 86px #f2fff3 solid !important;
}
.hint-of-green--bt-86 {
  border-top: 86px #f2fff3 solid !important;
}
.hint-of-green--br-86 {
  border-right: 86px #f2fff3 solid !important;
}
.hint-of-green--bl-86 {
  border-left: 86px #f2fff3 solid !important;
}
.hint-of-green--bb-86 {
  border-bottom: 86px #f2fff3 solid !important;
}
.hint-of-green--by-86 {
  border-top: 86px #f2fff3 solid !important;
  border-bottom: 86px #f2fff3 solid !important;
}
.hint-of-green--bx-86 {
  border-right: 86px #f2fff3 solid !important;
  border-left: 86px #f2fff3 solid !important;
}
.hint-of-green--ba-87 {
  border: 87px #f2fff3 solid !important;
}
.hint-of-green--bt-87 {
  border-top: 87px #f2fff3 solid !important;
}
.hint-of-green--br-87 {
  border-right: 87px #f2fff3 solid !important;
}
.hint-of-green--bl-87 {
  border-left: 87px #f2fff3 solid !important;
}
.hint-of-green--bb-87 {
  border-bottom: 87px #f2fff3 solid !important;
}
.hint-of-green--by-87 {
  border-top: 87px #f2fff3 solid !important;
  border-bottom: 87px #f2fff3 solid !important;
}
.hint-of-green--bx-87 {
  border-right: 87px #f2fff3 solid !important;
  border-left: 87px #f2fff3 solid !important;
}
.hint-of-green--ba-88 {
  border: 88px #f2fff3 solid !important;
}
.hint-of-green--bt-88 {
  border-top: 88px #f2fff3 solid !important;
}
.hint-of-green--br-88 {
  border-right: 88px #f2fff3 solid !important;
}
.hint-of-green--bl-88 {
  border-left: 88px #f2fff3 solid !important;
}
.hint-of-green--bb-88 {
  border-bottom: 88px #f2fff3 solid !important;
}
.hint-of-green--by-88 {
  border-top: 88px #f2fff3 solid !important;
  border-bottom: 88px #f2fff3 solid !important;
}
.hint-of-green--bx-88 {
  border-right: 88px #f2fff3 solid !important;
  border-left: 88px #f2fff3 solid !important;
}
.hint-of-green--ba-89 {
  border: 89px #f2fff3 solid !important;
}
.hint-of-green--bt-89 {
  border-top: 89px #f2fff3 solid !important;
}
.hint-of-green--br-89 {
  border-right: 89px #f2fff3 solid !important;
}
.hint-of-green--bl-89 {
  border-left: 89px #f2fff3 solid !important;
}
.hint-of-green--bb-89 {
  border-bottom: 89px #f2fff3 solid !important;
}
.hint-of-green--by-89 {
  border-top: 89px #f2fff3 solid !important;
  border-bottom: 89px #f2fff3 solid !important;
}
.hint-of-green--bx-89 {
  border-right: 89px #f2fff3 solid !important;
  border-left: 89px #f2fff3 solid !important;
}
.hint-of-green--ba-90 {
  border: 90px #f2fff3 solid !important;
}
.hint-of-green--bt-90 {
  border-top: 90px #f2fff3 solid !important;
}
.hint-of-green--br-90 {
  border-right: 90px #f2fff3 solid !important;
}
.hint-of-green--bl-90 {
  border-left: 90px #f2fff3 solid !important;
}
.hint-of-green--bb-90 {
  border-bottom: 90px #f2fff3 solid !important;
}
.hint-of-green--by-90 {
  border-top: 90px #f2fff3 solid !important;
  border-bottom: 90px #f2fff3 solid !important;
}
.hint-of-green--bx-90 {
  border-right: 90px #f2fff3 solid !important;
  border-left: 90px #f2fff3 solid !important;
}
.hint-of-green--ba-91 {
  border: 91px #f2fff3 solid !important;
}
.hint-of-green--bt-91 {
  border-top: 91px #f2fff3 solid !important;
}
.hint-of-green--br-91 {
  border-right: 91px #f2fff3 solid !important;
}
.hint-of-green--bl-91 {
  border-left: 91px #f2fff3 solid !important;
}
.hint-of-green--bb-91 {
  border-bottom: 91px #f2fff3 solid !important;
}
.hint-of-green--by-91 {
  border-top: 91px #f2fff3 solid !important;
  border-bottom: 91px #f2fff3 solid !important;
}
.hint-of-green--bx-91 {
  border-right: 91px #f2fff3 solid !important;
  border-left: 91px #f2fff3 solid !important;
}
.hint-of-green--ba-92 {
  border: 92px #f2fff3 solid !important;
}
.hint-of-green--bt-92 {
  border-top: 92px #f2fff3 solid !important;
}
.hint-of-green--br-92 {
  border-right: 92px #f2fff3 solid !important;
}
.hint-of-green--bl-92 {
  border-left: 92px #f2fff3 solid !important;
}
.hint-of-green--bb-92 {
  border-bottom: 92px #f2fff3 solid !important;
}
.hint-of-green--by-92 {
  border-top: 92px #f2fff3 solid !important;
  border-bottom: 92px #f2fff3 solid !important;
}
.hint-of-green--bx-92 {
  border-right: 92px #f2fff3 solid !important;
  border-left: 92px #f2fff3 solid !important;
}
.hint-of-green--ba-93 {
  border: 93px #f2fff3 solid !important;
}
.hint-of-green--bt-93 {
  border-top: 93px #f2fff3 solid !important;
}
.hint-of-green--br-93 {
  border-right: 93px #f2fff3 solid !important;
}
.hint-of-green--bl-93 {
  border-left: 93px #f2fff3 solid !important;
}
.hint-of-green--bb-93 {
  border-bottom: 93px #f2fff3 solid !important;
}
.hint-of-green--by-93 {
  border-top: 93px #f2fff3 solid !important;
  border-bottom: 93px #f2fff3 solid !important;
}
.hint-of-green--bx-93 {
  border-right: 93px #f2fff3 solid !important;
  border-left: 93px #f2fff3 solid !important;
}
.hint-of-green--ba-94 {
  border: 94px #f2fff3 solid !important;
}
.hint-of-green--bt-94 {
  border-top: 94px #f2fff3 solid !important;
}
.hint-of-green--br-94 {
  border-right: 94px #f2fff3 solid !important;
}
.hint-of-green--bl-94 {
  border-left: 94px #f2fff3 solid !important;
}
.hint-of-green--bb-94 {
  border-bottom: 94px #f2fff3 solid !important;
}
.hint-of-green--by-94 {
  border-top: 94px #f2fff3 solid !important;
  border-bottom: 94px #f2fff3 solid !important;
}
.hint-of-green--bx-94 {
  border-right: 94px #f2fff3 solid !important;
  border-left: 94px #f2fff3 solid !important;
}
.hint-of-green--ba-95 {
  border: 95px #f2fff3 solid !important;
}
.hint-of-green--bt-95 {
  border-top: 95px #f2fff3 solid !important;
}
.hint-of-green--br-95 {
  border-right: 95px #f2fff3 solid !important;
}
.hint-of-green--bl-95 {
  border-left: 95px #f2fff3 solid !important;
}
.hint-of-green--bb-95 {
  border-bottom: 95px #f2fff3 solid !important;
}
.hint-of-green--by-95 {
  border-top: 95px #f2fff3 solid !important;
  border-bottom: 95px #f2fff3 solid !important;
}
.hint-of-green--bx-95 {
  border-right: 95px #f2fff3 solid !important;
  border-left: 95px #f2fff3 solid !important;
}
.hint-of-green--ba-96 {
  border: 96px #f2fff3 solid !important;
}
.hint-of-green--bt-96 {
  border-top: 96px #f2fff3 solid !important;
}
.hint-of-green--br-96 {
  border-right: 96px #f2fff3 solid !important;
}
.hint-of-green--bl-96 {
  border-left: 96px #f2fff3 solid !important;
}
.hint-of-green--bb-96 {
  border-bottom: 96px #f2fff3 solid !important;
}
.hint-of-green--by-96 {
  border-top: 96px #f2fff3 solid !important;
  border-bottom: 96px #f2fff3 solid !important;
}
.hint-of-green--bx-96 {
  border-right: 96px #f2fff3 solid !important;
  border-left: 96px #f2fff3 solid !important;
}
.hint-of-green--ba-97 {
  border: 97px #f2fff3 solid !important;
}
.hint-of-green--bt-97 {
  border-top: 97px #f2fff3 solid !important;
}
.hint-of-green--br-97 {
  border-right: 97px #f2fff3 solid !important;
}
.hint-of-green--bl-97 {
  border-left: 97px #f2fff3 solid !important;
}
.hint-of-green--bb-97 {
  border-bottom: 97px #f2fff3 solid !important;
}
.hint-of-green--by-97 {
  border-top: 97px #f2fff3 solid !important;
  border-bottom: 97px #f2fff3 solid !important;
}
.hint-of-green--bx-97 {
  border-right: 97px #f2fff3 solid !important;
  border-left: 97px #f2fff3 solid !important;
}
.hint-of-green--ba-98 {
  border: 98px #f2fff3 solid !important;
}
.hint-of-green--bt-98 {
  border-top: 98px #f2fff3 solid !important;
}
.hint-of-green--br-98 {
  border-right: 98px #f2fff3 solid !important;
}
.hint-of-green--bl-98 {
  border-left: 98px #f2fff3 solid !important;
}
.hint-of-green--bb-98 {
  border-bottom: 98px #f2fff3 solid !important;
}
.hint-of-green--by-98 {
  border-top: 98px #f2fff3 solid !important;
  border-bottom: 98px #f2fff3 solid !important;
}
.hint-of-green--bx-98 {
  border-right: 98px #f2fff3 solid !important;
  border-left: 98px #f2fff3 solid !important;
}
.hint-of-green--ba-99 {
  border: 99px #f2fff3 solid !important;
}
.hint-of-green--bt-99 {
  border-top: 99px #f2fff3 solid !important;
}
.hint-of-green--br-99 {
  border-right: 99px #f2fff3 solid !important;
}
.hint-of-green--bl-99 {
  border-left: 99px #f2fff3 solid !important;
}
.hint-of-green--bb-99 {
  border-bottom: 99px #f2fff3 solid !important;
}
.hint-of-green--by-99 {
  border-top: 99px #f2fff3 solid !important;
  border-bottom: 99px #f2fff3 solid !important;
}
.hint-of-green--bx-99 {
  border-right: 99px #f2fff3 solid !important;
  border-left: 99px #f2fff3 solid !important;
}
.hint-of-green--ba-100 {
  border: 100px #f2fff3 solid !important;
}
.hint-of-green--bt-100 {
  border-top: 100px #f2fff3 solid !important;
}
.hint-of-green--br-100 {
  border-right: 100px #f2fff3 solid !important;
}
.hint-of-green--bl-100 {
  border-left: 100px #f2fff3 solid !important;
}
.hint-of-green--bb-100 {
  border-bottom: 100px #f2fff3 solid !important;
}
.hint-of-green--by-100 {
  border-top: 100px #f2fff3 solid !important;
  border-bottom: 100px #f2fff3 solid !important;
}
.hint-of-green--bx-100 {
  border-right: 100px #f2fff3 solid !important;
  border-left: 100px #f2fff3 solid !important;
}
.black-squeeze--ba-1 {
  border: 1px #e3eff5 solid !important;
}
.black-squeeze--bt-1 {
  border-top: 1px #e3eff5 solid !important;
}
.black-squeeze--br-1 {
  border-right: 1px #e3eff5 solid !important;
}
.black-squeeze--bl-1 {
  border-left: 1px #e3eff5 solid !important;
}
.black-squeeze--bb-1 {
  border-bottom: 1px #e3eff5 solid !important;
}
.black-squeeze--by-1 {
  border-top: 1px #e3eff5 solid !important;
  border-bottom: 1px #e3eff5 solid !important;
}
.black-squeeze--bx-1 {
  border-right: 1px #e3eff5 solid !important;
  border-left: 1px #e3eff5 solid !important;
}
.black-squeeze--ba-2 {
  border: 2px #e3eff5 solid !important;
}
.black-squeeze--bt-2 {
  border-top: 2px #e3eff5 solid !important;
}
.black-squeeze--br-2 {
  border-right: 2px #e3eff5 solid !important;
}
.black-squeeze--bl-2 {
  border-left: 2px #e3eff5 solid !important;
}
.black-squeeze--bb-2 {
  border-bottom: 2px #e3eff5 solid !important;
}
.black-squeeze--by-2 {
  border-top: 2px #e3eff5 solid !important;
  border-bottom: 2px #e3eff5 solid !important;
}
.black-squeeze--bx-2 {
  border-right: 2px #e3eff5 solid !important;
  border-left: 2px #e3eff5 solid !important;
}
.black-squeeze--ba-3 {
  border: 3px #e3eff5 solid !important;
}
.black-squeeze--bt-3 {
  border-top: 3px #e3eff5 solid !important;
}
.black-squeeze--br-3 {
  border-right: 3px #e3eff5 solid !important;
}
.black-squeeze--bl-3 {
  border-left: 3px #e3eff5 solid !important;
}
.black-squeeze--bb-3 {
  border-bottom: 3px #e3eff5 solid !important;
}
.black-squeeze--by-3 {
  border-top: 3px #e3eff5 solid !important;
  border-bottom: 3px #e3eff5 solid !important;
}
.black-squeeze--bx-3 {
  border-right: 3px #e3eff5 solid !important;
  border-left: 3px #e3eff5 solid !important;
}
.black-squeeze--ba-4 {
  border: 4px #e3eff5 solid !important;
}
.black-squeeze--bt-4 {
  border-top: 4px #e3eff5 solid !important;
}
.black-squeeze--br-4 {
  border-right: 4px #e3eff5 solid !important;
}
.black-squeeze--bl-4 {
  border-left: 4px #e3eff5 solid !important;
}
.black-squeeze--bb-4 {
  border-bottom: 4px #e3eff5 solid !important;
}
.black-squeeze--by-4 {
  border-top: 4px #e3eff5 solid !important;
  border-bottom: 4px #e3eff5 solid !important;
}
.black-squeeze--bx-4 {
  border-right: 4px #e3eff5 solid !important;
  border-left: 4px #e3eff5 solid !important;
}
.black-squeeze--ba-5 {
  border: 5px #e3eff5 solid !important;
}
.black-squeeze--bt-5 {
  border-top: 5px #e3eff5 solid !important;
}
.black-squeeze--br-5 {
  border-right: 5px #e3eff5 solid !important;
}
.black-squeeze--bl-5 {
  border-left: 5px #e3eff5 solid !important;
}
.black-squeeze--bb-5 {
  border-bottom: 5px #e3eff5 solid !important;
}
.black-squeeze--by-5 {
  border-top: 5px #e3eff5 solid !important;
  border-bottom: 5px #e3eff5 solid !important;
}
.black-squeeze--bx-5 {
  border-right: 5px #e3eff5 solid !important;
  border-left: 5px #e3eff5 solid !important;
}
.black-squeeze--ba-6 {
  border: 6px #e3eff5 solid !important;
}
.black-squeeze--bt-6 {
  border-top: 6px #e3eff5 solid !important;
}
.black-squeeze--br-6 {
  border-right: 6px #e3eff5 solid !important;
}
.black-squeeze--bl-6 {
  border-left: 6px #e3eff5 solid !important;
}
.black-squeeze--bb-6 {
  border-bottom: 6px #e3eff5 solid !important;
}
.black-squeeze--by-6 {
  border-top: 6px #e3eff5 solid !important;
  border-bottom: 6px #e3eff5 solid !important;
}
.black-squeeze--bx-6 {
  border-right: 6px #e3eff5 solid !important;
  border-left: 6px #e3eff5 solid !important;
}
.black-squeeze--ba-7 {
  border: 7px #e3eff5 solid !important;
}
.black-squeeze--bt-7 {
  border-top: 7px #e3eff5 solid !important;
}
.black-squeeze--br-7 {
  border-right: 7px #e3eff5 solid !important;
}
.black-squeeze--bl-7 {
  border-left: 7px #e3eff5 solid !important;
}
.black-squeeze--bb-7 {
  border-bottom: 7px #e3eff5 solid !important;
}
.black-squeeze--by-7 {
  border-top: 7px #e3eff5 solid !important;
  border-bottom: 7px #e3eff5 solid !important;
}
.black-squeeze--bx-7 {
  border-right: 7px #e3eff5 solid !important;
  border-left: 7px #e3eff5 solid !important;
}
.black-squeeze--ba-8 {
  border: 8px #e3eff5 solid !important;
}
.black-squeeze--bt-8 {
  border-top: 8px #e3eff5 solid !important;
}
.black-squeeze--br-8 {
  border-right: 8px #e3eff5 solid !important;
}
.black-squeeze--bl-8 {
  border-left: 8px #e3eff5 solid !important;
}
.black-squeeze--bb-8 {
  border-bottom: 8px #e3eff5 solid !important;
}
.black-squeeze--by-8 {
  border-top: 8px #e3eff5 solid !important;
  border-bottom: 8px #e3eff5 solid !important;
}
.black-squeeze--bx-8 {
  border-right: 8px #e3eff5 solid !important;
  border-left: 8px #e3eff5 solid !important;
}
.black-squeeze--ba-9 {
  border: 9px #e3eff5 solid !important;
}
.black-squeeze--bt-9 {
  border-top: 9px #e3eff5 solid !important;
}
.black-squeeze--br-9 {
  border-right: 9px #e3eff5 solid !important;
}
.black-squeeze--bl-9 {
  border-left: 9px #e3eff5 solid !important;
}
.black-squeeze--bb-9 {
  border-bottom: 9px #e3eff5 solid !important;
}
.black-squeeze--by-9 {
  border-top: 9px #e3eff5 solid !important;
  border-bottom: 9px #e3eff5 solid !important;
}
.black-squeeze--bx-9 {
  border-right: 9px #e3eff5 solid !important;
  border-left: 9px #e3eff5 solid !important;
}
.black-squeeze--ba-10 {
  border: 10px #e3eff5 solid !important;
}
.black-squeeze--bt-10 {
  border-top: 10px #e3eff5 solid !important;
}
.black-squeeze--br-10 {
  border-right: 10px #e3eff5 solid !important;
}
.black-squeeze--bl-10 {
  border-left: 10px #e3eff5 solid !important;
}
.black-squeeze--bb-10 {
  border-bottom: 10px #e3eff5 solid !important;
}
.black-squeeze--by-10 {
  border-top: 10px #e3eff5 solid !important;
  border-bottom: 10px #e3eff5 solid !important;
}
.black-squeeze--bx-10 {
  border-right: 10px #e3eff5 solid !important;
  border-left: 10px #e3eff5 solid !important;
}
.black-squeeze--ba-11 {
  border: 11px #e3eff5 solid !important;
}
.black-squeeze--bt-11 {
  border-top: 11px #e3eff5 solid !important;
}
.black-squeeze--br-11 {
  border-right: 11px #e3eff5 solid !important;
}
.black-squeeze--bl-11 {
  border-left: 11px #e3eff5 solid !important;
}
.black-squeeze--bb-11 {
  border-bottom: 11px #e3eff5 solid !important;
}
.black-squeeze--by-11 {
  border-top: 11px #e3eff5 solid !important;
  border-bottom: 11px #e3eff5 solid !important;
}
.black-squeeze--bx-11 {
  border-right: 11px #e3eff5 solid !important;
  border-left: 11px #e3eff5 solid !important;
}
.black-squeeze--ba-12 {
  border: 12px #e3eff5 solid !important;
}
.black-squeeze--bt-12 {
  border-top: 12px #e3eff5 solid !important;
}
.black-squeeze--br-12 {
  border-right: 12px #e3eff5 solid !important;
}
.black-squeeze--bl-12 {
  border-left: 12px #e3eff5 solid !important;
}
.black-squeeze--bb-12 {
  border-bottom: 12px #e3eff5 solid !important;
}
.black-squeeze--by-12 {
  border-top: 12px #e3eff5 solid !important;
  border-bottom: 12px #e3eff5 solid !important;
}
.black-squeeze--bx-12 {
  border-right: 12px #e3eff5 solid !important;
  border-left: 12px #e3eff5 solid !important;
}
.black-squeeze--ba-13 {
  border: 13px #e3eff5 solid !important;
}
.black-squeeze--bt-13 {
  border-top: 13px #e3eff5 solid !important;
}
.black-squeeze--br-13 {
  border-right: 13px #e3eff5 solid !important;
}
.black-squeeze--bl-13 {
  border-left: 13px #e3eff5 solid !important;
}
.black-squeeze--bb-13 {
  border-bottom: 13px #e3eff5 solid !important;
}
.black-squeeze--by-13 {
  border-top: 13px #e3eff5 solid !important;
  border-bottom: 13px #e3eff5 solid !important;
}
.black-squeeze--bx-13 {
  border-right: 13px #e3eff5 solid !important;
  border-left: 13px #e3eff5 solid !important;
}
.black-squeeze--ba-14 {
  border: 14px #e3eff5 solid !important;
}
.black-squeeze--bt-14 {
  border-top: 14px #e3eff5 solid !important;
}
.black-squeeze--br-14 {
  border-right: 14px #e3eff5 solid !important;
}
.black-squeeze--bl-14 {
  border-left: 14px #e3eff5 solid !important;
}
.black-squeeze--bb-14 {
  border-bottom: 14px #e3eff5 solid !important;
}
.black-squeeze--by-14 {
  border-top: 14px #e3eff5 solid !important;
  border-bottom: 14px #e3eff5 solid !important;
}
.black-squeeze--bx-14 {
  border-right: 14px #e3eff5 solid !important;
  border-left: 14px #e3eff5 solid !important;
}
.black-squeeze--ba-15 {
  border: 15px #e3eff5 solid !important;
}
.black-squeeze--bt-15 {
  border-top: 15px #e3eff5 solid !important;
}
.black-squeeze--br-15 {
  border-right: 15px #e3eff5 solid !important;
}
.black-squeeze--bl-15 {
  border-left: 15px #e3eff5 solid !important;
}
.black-squeeze--bb-15 {
  border-bottom: 15px #e3eff5 solid !important;
}
.black-squeeze--by-15 {
  border-top: 15px #e3eff5 solid !important;
  border-bottom: 15px #e3eff5 solid !important;
}
.black-squeeze--bx-15 {
  border-right: 15px #e3eff5 solid !important;
  border-left: 15px #e3eff5 solid !important;
}
.black-squeeze--ba-16 {
  border: 16px #e3eff5 solid !important;
}
.black-squeeze--bt-16 {
  border-top: 16px #e3eff5 solid !important;
}
.black-squeeze--br-16 {
  border-right: 16px #e3eff5 solid !important;
}
.black-squeeze--bl-16 {
  border-left: 16px #e3eff5 solid !important;
}
.black-squeeze--bb-16 {
  border-bottom: 16px #e3eff5 solid !important;
}
.black-squeeze--by-16 {
  border-top: 16px #e3eff5 solid !important;
  border-bottom: 16px #e3eff5 solid !important;
}
.black-squeeze--bx-16 {
  border-right: 16px #e3eff5 solid !important;
  border-left: 16px #e3eff5 solid !important;
}
.black-squeeze--ba-17 {
  border: 17px #e3eff5 solid !important;
}
.black-squeeze--bt-17 {
  border-top: 17px #e3eff5 solid !important;
}
.black-squeeze--br-17 {
  border-right: 17px #e3eff5 solid !important;
}
.black-squeeze--bl-17 {
  border-left: 17px #e3eff5 solid !important;
}
.black-squeeze--bb-17 {
  border-bottom: 17px #e3eff5 solid !important;
}
.black-squeeze--by-17 {
  border-top: 17px #e3eff5 solid !important;
  border-bottom: 17px #e3eff5 solid !important;
}
.black-squeeze--bx-17 {
  border-right: 17px #e3eff5 solid !important;
  border-left: 17px #e3eff5 solid !important;
}
.black-squeeze--ba-18 {
  border: 18px #e3eff5 solid !important;
}
.black-squeeze--bt-18 {
  border-top: 18px #e3eff5 solid !important;
}
.black-squeeze--br-18 {
  border-right: 18px #e3eff5 solid !important;
}
.black-squeeze--bl-18 {
  border-left: 18px #e3eff5 solid !important;
}
.black-squeeze--bb-18 {
  border-bottom: 18px #e3eff5 solid !important;
}
.black-squeeze--by-18 {
  border-top: 18px #e3eff5 solid !important;
  border-bottom: 18px #e3eff5 solid !important;
}
.black-squeeze--bx-18 {
  border-right: 18px #e3eff5 solid !important;
  border-left: 18px #e3eff5 solid !important;
}
.black-squeeze--ba-19 {
  border: 19px #e3eff5 solid !important;
}
.black-squeeze--bt-19 {
  border-top: 19px #e3eff5 solid !important;
}
.black-squeeze--br-19 {
  border-right: 19px #e3eff5 solid !important;
}
.black-squeeze--bl-19 {
  border-left: 19px #e3eff5 solid !important;
}
.black-squeeze--bb-19 {
  border-bottom: 19px #e3eff5 solid !important;
}
.black-squeeze--by-19 {
  border-top: 19px #e3eff5 solid !important;
  border-bottom: 19px #e3eff5 solid !important;
}
.black-squeeze--bx-19 {
  border-right: 19px #e3eff5 solid !important;
  border-left: 19px #e3eff5 solid !important;
}
.black-squeeze--ba-20 {
  border: 20px #e3eff5 solid !important;
}
.black-squeeze--bt-20 {
  border-top: 20px #e3eff5 solid !important;
}
.black-squeeze--br-20 {
  border-right: 20px #e3eff5 solid !important;
}
.black-squeeze--bl-20 {
  border-left: 20px #e3eff5 solid !important;
}
.black-squeeze--bb-20 {
  border-bottom: 20px #e3eff5 solid !important;
}
.black-squeeze--by-20 {
  border-top: 20px #e3eff5 solid !important;
  border-bottom: 20px #e3eff5 solid !important;
}
.black-squeeze--bx-20 {
  border-right: 20px #e3eff5 solid !important;
  border-left: 20px #e3eff5 solid !important;
}
.black-squeeze--ba-21 {
  border: 21px #e3eff5 solid !important;
}
.black-squeeze--bt-21 {
  border-top: 21px #e3eff5 solid !important;
}
.black-squeeze--br-21 {
  border-right: 21px #e3eff5 solid !important;
}
.black-squeeze--bl-21 {
  border-left: 21px #e3eff5 solid !important;
}
.black-squeeze--bb-21 {
  border-bottom: 21px #e3eff5 solid !important;
}
.black-squeeze--by-21 {
  border-top: 21px #e3eff5 solid !important;
  border-bottom: 21px #e3eff5 solid !important;
}
.black-squeeze--bx-21 {
  border-right: 21px #e3eff5 solid !important;
  border-left: 21px #e3eff5 solid !important;
}
.black-squeeze--ba-22 {
  border: 22px #e3eff5 solid !important;
}
.black-squeeze--bt-22 {
  border-top: 22px #e3eff5 solid !important;
}
.black-squeeze--br-22 {
  border-right: 22px #e3eff5 solid !important;
}
.black-squeeze--bl-22 {
  border-left: 22px #e3eff5 solid !important;
}
.black-squeeze--bb-22 {
  border-bottom: 22px #e3eff5 solid !important;
}
.black-squeeze--by-22 {
  border-top: 22px #e3eff5 solid !important;
  border-bottom: 22px #e3eff5 solid !important;
}
.black-squeeze--bx-22 {
  border-right: 22px #e3eff5 solid !important;
  border-left: 22px #e3eff5 solid !important;
}
.black-squeeze--ba-23 {
  border: 23px #e3eff5 solid !important;
}
.black-squeeze--bt-23 {
  border-top: 23px #e3eff5 solid !important;
}
.black-squeeze--br-23 {
  border-right: 23px #e3eff5 solid !important;
}
.black-squeeze--bl-23 {
  border-left: 23px #e3eff5 solid !important;
}
.black-squeeze--bb-23 {
  border-bottom: 23px #e3eff5 solid !important;
}
.black-squeeze--by-23 {
  border-top: 23px #e3eff5 solid !important;
  border-bottom: 23px #e3eff5 solid !important;
}
.black-squeeze--bx-23 {
  border-right: 23px #e3eff5 solid !important;
  border-left: 23px #e3eff5 solid !important;
}
.black-squeeze--ba-24 {
  border: 24px #e3eff5 solid !important;
}
.black-squeeze--bt-24 {
  border-top: 24px #e3eff5 solid !important;
}
.black-squeeze--br-24 {
  border-right: 24px #e3eff5 solid !important;
}
.black-squeeze--bl-24 {
  border-left: 24px #e3eff5 solid !important;
}
.black-squeeze--bb-24 {
  border-bottom: 24px #e3eff5 solid !important;
}
.black-squeeze--by-24 {
  border-top: 24px #e3eff5 solid !important;
  border-bottom: 24px #e3eff5 solid !important;
}
.black-squeeze--bx-24 {
  border-right: 24px #e3eff5 solid !important;
  border-left: 24px #e3eff5 solid !important;
}
.black-squeeze--ba-25 {
  border: 25px #e3eff5 solid !important;
}
.black-squeeze--bt-25 {
  border-top: 25px #e3eff5 solid !important;
}
.black-squeeze--br-25 {
  border-right: 25px #e3eff5 solid !important;
}
.black-squeeze--bl-25 {
  border-left: 25px #e3eff5 solid !important;
}
.black-squeeze--bb-25 {
  border-bottom: 25px #e3eff5 solid !important;
}
.black-squeeze--by-25 {
  border-top: 25px #e3eff5 solid !important;
  border-bottom: 25px #e3eff5 solid !important;
}
.black-squeeze--bx-25 {
  border-right: 25px #e3eff5 solid !important;
  border-left: 25px #e3eff5 solid !important;
}
.black-squeeze--ba-26 {
  border: 26px #e3eff5 solid !important;
}
.black-squeeze--bt-26 {
  border-top: 26px #e3eff5 solid !important;
}
.black-squeeze--br-26 {
  border-right: 26px #e3eff5 solid !important;
}
.black-squeeze--bl-26 {
  border-left: 26px #e3eff5 solid !important;
}
.black-squeeze--bb-26 {
  border-bottom: 26px #e3eff5 solid !important;
}
.black-squeeze--by-26 {
  border-top: 26px #e3eff5 solid !important;
  border-bottom: 26px #e3eff5 solid !important;
}
.black-squeeze--bx-26 {
  border-right: 26px #e3eff5 solid !important;
  border-left: 26px #e3eff5 solid !important;
}
.black-squeeze--ba-27 {
  border: 27px #e3eff5 solid !important;
}
.black-squeeze--bt-27 {
  border-top: 27px #e3eff5 solid !important;
}
.black-squeeze--br-27 {
  border-right: 27px #e3eff5 solid !important;
}
.black-squeeze--bl-27 {
  border-left: 27px #e3eff5 solid !important;
}
.black-squeeze--bb-27 {
  border-bottom: 27px #e3eff5 solid !important;
}
.black-squeeze--by-27 {
  border-top: 27px #e3eff5 solid !important;
  border-bottom: 27px #e3eff5 solid !important;
}
.black-squeeze--bx-27 {
  border-right: 27px #e3eff5 solid !important;
  border-left: 27px #e3eff5 solid !important;
}
.black-squeeze--ba-28 {
  border: 28px #e3eff5 solid !important;
}
.black-squeeze--bt-28 {
  border-top: 28px #e3eff5 solid !important;
}
.black-squeeze--br-28 {
  border-right: 28px #e3eff5 solid !important;
}
.black-squeeze--bl-28 {
  border-left: 28px #e3eff5 solid !important;
}
.black-squeeze--bb-28 {
  border-bottom: 28px #e3eff5 solid !important;
}
.black-squeeze--by-28 {
  border-top: 28px #e3eff5 solid !important;
  border-bottom: 28px #e3eff5 solid !important;
}
.black-squeeze--bx-28 {
  border-right: 28px #e3eff5 solid !important;
  border-left: 28px #e3eff5 solid !important;
}
.black-squeeze--ba-29 {
  border: 29px #e3eff5 solid !important;
}
.black-squeeze--bt-29 {
  border-top: 29px #e3eff5 solid !important;
}
.black-squeeze--br-29 {
  border-right: 29px #e3eff5 solid !important;
}
.black-squeeze--bl-29 {
  border-left: 29px #e3eff5 solid !important;
}
.black-squeeze--bb-29 {
  border-bottom: 29px #e3eff5 solid !important;
}
.black-squeeze--by-29 {
  border-top: 29px #e3eff5 solid !important;
  border-bottom: 29px #e3eff5 solid !important;
}
.black-squeeze--bx-29 {
  border-right: 29px #e3eff5 solid !important;
  border-left: 29px #e3eff5 solid !important;
}
.black-squeeze--ba-30 {
  border: 30px #e3eff5 solid !important;
}
.black-squeeze--bt-30 {
  border-top: 30px #e3eff5 solid !important;
}
.black-squeeze--br-30 {
  border-right: 30px #e3eff5 solid !important;
}
.black-squeeze--bl-30 {
  border-left: 30px #e3eff5 solid !important;
}
.black-squeeze--bb-30 {
  border-bottom: 30px #e3eff5 solid !important;
}
.black-squeeze--by-30 {
  border-top: 30px #e3eff5 solid !important;
  border-bottom: 30px #e3eff5 solid !important;
}
.black-squeeze--bx-30 {
  border-right: 30px #e3eff5 solid !important;
  border-left: 30px #e3eff5 solid !important;
}
.black-squeeze--ba-31 {
  border: 31px #e3eff5 solid !important;
}
.black-squeeze--bt-31 {
  border-top: 31px #e3eff5 solid !important;
}
.black-squeeze--br-31 {
  border-right: 31px #e3eff5 solid !important;
}
.black-squeeze--bl-31 {
  border-left: 31px #e3eff5 solid !important;
}
.black-squeeze--bb-31 {
  border-bottom: 31px #e3eff5 solid !important;
}
.black-squeeze--by-31 {
  border-top: 31px #e3eff5 solid !important;
  border-bottom: 31px #e3eff5 solid !important;
}
.black-squeeze--bx-31 {
  border-right: 31px #e3eff5 solid !important;
  border-left: 31px #e3eff5 solid !important;
}
.black-squeeze--ba-32 {
  border: 32px #e3eff5 solid !important;
}
.black-squeeze--bt-32 {
  border-top: 32px #e3eff5 solid !important;
}
.black-squeeze--br-32 {
  border-right: 32px #e3eff5 solid !important;
}
.black-squeeze--bl-32 {
  border-left: 32px #e3eff5 solid !important;
}
.black-squeeze--bb-32 {
  border-bottom: 32px #e3eff5 solid !important;
}
.black-squeeze--by-32 {
  border-top: 32px #e3eff5 solid !important;
  border-bottom: 32px #e3eff5 solid !important;
}
.black-squeeze--bx-32 {
  border-right: 32px #e3eff5 solid !important;
  border-left: 32px #e3eff5 solid !important;
}
.black-squeeze--ba-33 {
  border: 33px #e3eff5 solid !important;
}
.black-squeeze--bt-33 {
  border-top: 33px #e3eff5 solid !important;
}
.black-squeeze--br-33 {
  border-right: 33px #e3eff5 solid !important;
}
.black-squeeze--bl-33 {
  border-left: 33px #e3eff5 solid !important;
}
.black-squeeze--bb-33 {
  border-bottom: 33px #e3eff5 solid !important;
}
.black-squeeze--by-33 {
  border-top: 33px #e3eff5 solid !important;
  border-bottom: 33px #e3eff5 solid !important;
}
.black-squeeze--bx-33 {
  border-right: 33px #e3eff5 solid !important;
  border-left: 33px #e3eff5 solid !important;
}
.black-squeeze--ba-34 {
  border: 34px #e3eff5 solid !important;
}
.black-squeeze--bt-34 {
  border-top: 34px #e3eff5 solid !important;
}
.black-squeeze--br-34 {
  border-right: 34px #e3eff5 solid !important;
}
.black-squeeze--bl-34 {
  border-left: 34px #e3eff5 solid !important;
}
.black-squeeze--bb-34 {
  border-bottom: 34px #e3eff5 solid !important;
}
.black-squeeze--by-34 {
  border-top: 34px #e3eff5 solid !important;
  border-bottom: 34px #e3eff5 solid !important;
}
.black-squeeze--bx-34 {
  border-right: 34px #e3eff5 solid !important;
  border-left: 34px #e3eff5 solid !important;
}
.black-squeeze--ba-35 {
  border: 35px #e3eff5 solid !important;
}
.black-squeeze--bt-35 {
  border-top: 35px #e3eff5 solid !important;
}
.black-squeeze--br-35 {
  border-right: 35px #e3eff5 solid !important;
}
.black-squeeze--bl-35 {
  border-left: 35px #e3eff5 solid !important;
}
.black-squeeze--bb-35 {
  border-bottom: 35px #e3eff5 solid !important;
}
.black-squeeze--by-35 {
  border-top: 35px #e3eff5 solid !important;
  border-bottom: 35px #e3eff5 solid !important;
}
.black-squeeze--bx-35 {
  border-right: 35px #e3eff5 solid !important;
  border-left: 35px #e3eff5 solid !important;
}
.black-squeeze--ba-36 {
  border: 36px #e3eff5 solid !important;
}
.black-squeeze--bt-36 {
  border-top: 36px #e3eff5 solid !important;
}
.black-squeeze--br-36 {
  border-right: 36px #e3eff5 solid !important;
}
.black-squeeze--bl-36 {
  border-left: 36px #e3eff5 solid !important;
}
.black-squeeze--bb-36 {
  border-bottom: 36px #e3eff5 solid !important;
}
.black-squeeze--by-36 {
  border-top: 36px #e3eff5 solid !important;
  border-bottom: 36px #e3eff5 solid !important;
}
.black-squeeze--bx-36 {
  border-right: 36px #e3eff5 solid !important;
  border-left: 36px #e3eff5 solid !important;
}
.black-squeeze--ba-37 {
  border: 37px #e3eff5 solid !important;
}
.black-squeeze--bt-37 {
  border-top: 37px #e3eff5 solid !important;
}
.black-squeeze--br-37 {
  border-right: 37px #e3eff5 solid !important;
}
.black-squeeze--bl-37 {
  border-left: 37px #e3eff5 solid !important;
}
.black-squeeze--bb-37 {
  border-bottom: 37px #e3eff5 solid !important;
}
.black-squeeze--by-37 {
  border-top: 37px #e3eff5 solid !important;
  border-bottom: 37px #e3eff5 solid !important;
}
.black-squeeze--bx-37 {
  border-right: 37px #e3eff5 solid !important;
  border-left: 37px #e3eff5 solid !important;
}
.black-squeeze--ba-38 {
  border: 38px #e3eff5 solid !important;
}
.black-squeeze--bt-38 {
  border-top: 38px #e3eff5 solid !important;
}
.black-squeeze--br-38 {
  border-right: 38px #e3eff5 solid !important;
}
.black-squeeze--bl-38 {
  border-left: 38px #e3eff5 solid !important;
}
.black-squeeze--bb-38 {
  border-bottom: 38px #e3eff5 solid !important;
}
.black-squeeze--by-38 {
  border-top: 38px #e3eff5 solid !important;
  border-bottom: 38px #e3eff5 solid !important;
}
.black-squeeze--bx-38 {
  border-right: 38px #e3eff5 solid !important;
  border-left: 38px #e3eff5 solid !important;
}
.black-squeeze--ba-39 {
  border: 39px #e3eff5 solid !important;
}
.black-squeeze--bt-39 {
  border-top: 39px #e3eff5 solid !important;
}
.black-squeeze--br-39 {
  border-right: 39px #e3eff5 solid !important;
}
.black-squeeze--bl-39 {
  border-left: 39px #e3eff5 solid !important;
}
.black-squeeze--bb-39 {
  border-bottom: 39px #e3eff5 solid !important;
}
.black-squeeze--by-39 {
  border-top: 39px #e3eff5 solid !important;
  border-bottom: 39px #e3eff5 solid !important;
}
.black-squeeze--bx-39 {
  border-right: 39px #e3eff5 solid !important;
  border-left: 39px #e3eff5 solid !important;
}
.black-squeeze--ba-40 {
  border: 40px #e3eff5 solid !important;
}
.black-squeeze--bt-40 {
  border-top: 40px #e3eff5 solid !important;
}
.black-squeeze--br-40 {
  border-right: 40px #e3eff5 solid !important;
}
.black-squeeze--bl-40 {
  border-left: 40px #e3eff5 solid !important;
}
.black-squeeze--bb-40 {
  border-bottom: 40px #e3eff5 solid !important;
}
.black-squeeze--by-40 {
  border-top: 40px #e3eff5 solid !important;
  border-bottom: 40px #e3eff5 solid !important;
}
.black-squeeze--bx-40 {
  border-right: 40px #e3eff5 solid !important;
  border-left: 40px #e3eff5 solid !important;
}
.black-squeeze--ba-41 {
  border: 41px #e3eff5 solid !important;
}
.black-squeeze--bt-41 {
  border-top: 41px #e3eff5 solid !important;
}
.black-squeeze--br-41 {
  border-right: 41px #e3eff5 solid !important;
}
.black-squeeze--bl-41 {
  border-left: 41px #e3eff5 solid !important;
}
.black-squeeze--bb-41 {
  border-bottom: 41px #e3eff5 solid !important;
}
.black-squeeze--by-41 {
  border-top: 41px #e3eff5 solid !important;
  border-bottom: 41px #e3eff5 solid !important;
}
.black-squeeze--bx-41 {
  border-right: 41px #e3eff5 solid !important;
  border-left: 41px #e3eff5 solid !important;
}
.black-squeeze--ba-42 {
  border: 42px #e3eff5 solid !important;
}
.black-squeeze--bt-42 {
  border-top: 42px #e3eff5 solid !important;
}
.black-squeeze--br-42 {
  border-right: 42px #e3eff5 solid !important;
}
.black-squeeze--bl-42 {
  border-left: 42px #e3eff5 solid !important;
}
.black-squeeze--bb-42 {
  border-bottom: 42px #e3eff5 solid !important;
}
.black-squeeze--by-42 {
  border-top: 42px #e3eff5 solid !important;
  border-bottom: 42px #e3eff5 solid !important;
}
.black-squeeze--bx-42 {
  border-right: 42px #e3eff5 solid !important;
  border-left: 42px #e3eff5 solid !important;
}
.black-squeeze--ba-43 {
  border: 43px #e3eff5 solid !important;
}
.black-squeeze--bt-43 {
  border-top: 43px #e3eff5 solid !important;
}
.black-squeeze--br-43 {
  border-right: 43px #e3eff5 solid !important;
}
.black-squeeze--bl-43 {
  border-left: 43px #e3eff5 solid !important;
}
.black-squeeze--bb-43 {
  border-bottom: 43px #e3eff5 solid !important;
}
.black-squeeze--by-43 {
  border-top: 43px #e3eff5 solid !important;
  border-bottom: 43px #e3eff5 solid !important;
}
.black-squeeze--bx-43 {
  border-right: 43px #e3eff5 solid !important;
  border-left: 43px #e3eff5 solid !important;
}
.black-squeeze--ba-44 {
  border: 44px #e3eff5 solid !important;
}
.black-squeeze--bt-44 {
  border-top: 44px #e3eff5 solid !important;
}
.black-squeeze--br-44 {
  border-right: 44px #e3eff5 solid !important;
}
.black-squeeze--bl-44 {
  border-left: 44px #e3eff5 solid !important;
}
.black-squeeze--bb-44 {
  border-bottom: 44px #e3eff5 solid !important;
}
.black-squeeze--by-44 {
  border-top: 44px #e3eff5 solid !important;
  border-bottom: 44px #e3eff5 solid !important;
}
.black-squeeze--bx-44 {
  border-right: 44px #e3eff5 solid !important;
  border-left: 44px #e3eff5 solid !important;
}
.black-squeeze--ba-45 {
  border: 45px #e3eff5 solid !important;
}
.black-squeeze--bt-45 {
  border-top: 45px #e3eff5 solid !important;
}
.black-squeeze--br-45 {
  border-right: 45px #e3eff5 solid !important;
}
.black-squeeze--bl-45 {
  border-left: 45px #e3eff5 solid !important;
}
.black-squeeze--bb-45 {
  border-bottom: 45px #e3eff5 solid !important;
}
.black-squeeze--by-45 {
  border-top: 45px #e3eff5 solid !important;
  border-bottom: 45px #e3eff5 solid !important;
}
.black-squeeze--bx-45 {
  border-right: 45px #e3eff5 solid !important;
  border-left: 45px #e3eff5 solid !important;
}
.black-squeeze--ba-46 {
  border: 46px #e3eff5 solid !important;
}
.black-squeeze--bt-46 {
  border-top: 46px #e3eff5 solid !important;
}
.black-squeeze--br-46 {
  border-right: 46px #e3eff5 solid !important;
}
.black-squeeze--bl-46 {
  border-left: 46px #e3eff5 solid !important;
}
.black-squeeze--bb-46 {
  border-bottom: 46px #e3eff5 solid !important;
}
.black-squeeze--by-46 {
  border-top: 46px #e3eff5 solid !important;
  border-bottom: 46px #e3eff5 solid !important;
}
.black-squeeze--bx-46 {
  border-right: 46px #e3eff5 solid !important;
  border-left: 46px #e3eff5 solid !important;
}
.black-squeeze--ba-47 {
  border: 47px #e3eff5 solid !important;
}
.black-squeeze--bt-47 {
  border-top: 47px #e3eff5 solid !important;
}
.black-squeeze--br-47 {
  border-right: 47px #e3eff5 solid !important;
}
.black-squeeze--bl-47 {
  border-left: 47px #e3eff5 solid !important;
}
.black-squeeze--bb-47 {
  border-bottom: 47px #e3eff5 solid !important;
}
.black-squeeze--by-47 {
  border-top: 47px #e3eff5 solid !important;
  border-bottom: 47px #e3eff5 solid !important;
}
.black-squeeze--bx-47 {
  border-right: 47px #e3eff5 solid !important;
  border-left: 47px #e3eff5 solid !important;
}
.black-squeeze--ba-48 {
  border: 48px #e3eff5 solid !important;
}
.black-squeeze--bt-48 {
  border-top: 48px #e3eff5 solid !important;
}
.black-squeeze--br-48 {
  border-right: 48px #e3eff5 solid !important;
}
.black-squeeze--bl-48 {
  border-left: 48px #e3eff5 solid !important;
}
.black-squeeze--bb-48 {
  border-bottom: 48px #e3eff5 solid !important;
}
.black-squeeze--by-48 {
  border-top: 48px #e3eff5 solid !important;
  border-bottom: 48px #e3eff5 solid !important;
}
.black-squeeze--bx-48 {
  border-right: 48px #e3eff5 solid !important;
  border-left: 48px #e3eff5 solid !important;
}
.black-squeeze--ba-49 {
  border: 49px #e3eff5 solid !important;
}
.black-squeeze--bt-49 {
  border-top: 49px #e3eff5 solid !important;
}
.black-squeeze--br-49 {
  border-right: 49px #e3eff5 solid !important;
}
.black-squeeze--bl-49 {
  border-left: 49px #e3eff5 solid !important;
}
.black-squeeze--bb-49 {
  border-bottom: 49px #e3eff5 solid !important;
}
.black-squeeze--by-49 {
  border-top: 49px #e3eff5 solid !important;
  border-bottom: 49px #e3eff5 solid !important;
}
.black-squeeze--bx-49 {
  border-right: 49px #e3eff5 solid !important;
  border-left: 49px #e3eff5 solid !important;
}
.black-squeeze--ba-50 {
  border: 50px #e3eff5 solid !important;
}
.black-squeeze--bt-50 {
  border-top: 50px #e3eff5 solid !important;
}
.black-squeeze--br-50 {
  border-right: 50px #e3eff5 solid !important;
}
.black-squeeze--bl-50 {
  border-left: 50px #e3eff5 solid !important;
}
.black-squeeze--bb-50 {
  border-bottom: 50px #e3eff5 solid !important;
}
.black-squeeze--by-50 {
  border-top: 50px #e3eff5 solid !important;
  border-bottom: 50px #e3eff5 solid !important;
}
.black-squeeze--bx-50 {
  border-right: 50px #e3eff5 solid !important;
  border-left: 50px #e3eff5 solid !important;
}
.black-squeeze--ba-51 {
  border: 51px #e3eff5 solid !important;
}
.black-squeeze--bt-51 {
  border-top: 51px #e3eff5 solid !important;
}
.black-squeeze--br-51 {
  border-right: 51px #e3eff5 solid !important;
}
.black-squeeze--bl-51 {
  border-left: 51px #e3eff5 solid !important;
}
.black-squeeze--bb-51 {
  border-bottom: 51px #e3eff5 solid !important;
}
.black-squeeze--by-51 {
  border-top: 51px #e3eff5 solid !important;
  border-bottom: 51px #e3eff5 solid !important;
}
.black-squeeze--bx-51 {
  border-right: 51px #e3eff5 solid !important;
  border-left: 51px #e3eff5 solid !important;
}
.black-squeeze--ba-52 {
  border: 52px #e3eff5 solid !important;
}
.black-squeeze--bt-52 {
  border-top: 52px #e3eff5 solid !important;
}
.black-squeeze--br-52 {
  border-right: 52px #e3eff5 solid !important;
}
.black-squeeze--bl-52 {
  border-left: 52px #e3eff5 solid !important;
}
.black-squeeze--bb-52 {
  border-bottom: 52px #e3eff5 solid !important;
}
.black-squeeze--by-52 {
  border-top: 52px #e3eff5 solid !important;
  border-bottom: 52px #e3eff5 solid !important;
}
.black-squeeze--bx-52 {
  border-right: 52px #e3eff5 solid !important;
  border-left: 52px #e3eff5 solid !important;
}
.black-squeeze--ba-53 {
  border: 53px #e3eff5 solid !important;
}
.black-squeeze--bt-53 {
  border-top: 53px #e3eff5 solid !important;
}
.black-squeeze--br-53 {
  border-right: 53px #e3eff5 solid !important;
}
.black-squeeze--bl-53 {
  border-left: 53px #e3eff5 solid !important;
}
.black-squeeze--bb-53 {
  border-bottom: 53px #e3eff5 solid !important;
}
.black-squeeze--by-53 {
  border-top: 53px #e3eff5 solid !important;
  border-bottom: 53px #e3eff5 solid !important;
}
.black-squeeze--bx-53 {
  border-right: 53px #e3eff5 solid !important;
  border-left: 53px #e3eff5 solid !important;
}
.black-squeeze--ba-54 {
  border: 54px #e3eff5 solid !important;
}
.black-squeeze--bt-54 {
  border-top: 54px #e3eff5 solid !important;
}
.black-squeeze--br-54 {
  border-right: 54px #e3eff5 solid !important;
}
.black-squeeze--bl-54 {
  border-left: 54px #e3eff5 solid !important;
}
.black-squeeze--bb-54 {
  border-bottom: 54px #e3eff5 solid !important;
}
.black-squeeze--by-54 {
  border-top: 54px #e3eff5 solid !important;
  border-bottom: 54px #e3eff5 solid !important;
}
.black-squeeze--bx-54 {
  border-right: 54px #e3eff5 solid !important;
  border-left: 54px #e3eff5 solid !important;
}
.black-squeeze--ba-55 {
  border: 55px #e3eff5 solid !important;
}
.black-squeeze--bt-55 {
  border-top: 55px #e3eff5 solid !important;
}
.black-squeeze--br-55 {
  border-right: 55px #e3eff5 solid !important;
}
.black-squeeze--bl-55 {
  border-left: 55px #e3eff5 solid !important;
}
.black-squeeze--bb-55 {
  border-bottom: 55px #e3eff5 solid !important;
}
.black-squeeze--by-55 {
  border-top: 55px #e3eff5 solid !important;
  border-bottom: 55px #e3eff5 solid !important;
}
.black-squeeze--bx-55 {
  border-right: 55px #e3eff5 solid !important;
  border-left: 55px #e3eff5 solid !important;
}
.black-squeeze--ba-56 {
  border: 56px #e3eff5 solid !important;
}
.black-squeeze--bt-56 {
  border-top: 56px #e3eff5 solid !important;
}
.black-squeeze--br-56 {
  border-right: 56px #e3eff5 solid !important;
}
.black-squeeze--bl-56 {
  border-left: 56px #e3eff5 solid !important;
}
.black-squeeze--bb-56 {
  border-bottom: 56px #e3eff5 solid !important;
}
.black-squeeze--by-56 {
  border-top: 56px #e3eff5 solid !important;
  border-bottom: 56px #e3eff5 solid !important;
}
.black-squeeze--bx-56 {
  border-right: 56px #e3eff5 solid !important;
  border-left: 56px #e3eff5 solid !important;
}
.black-squeeze--ba-57 {
  border: 57px #e3eff5 solid !important;
}
.black-squeeze--bt-57 {
  border-top: 57px #e3eff5 solid !important;
}
.black-squeeze--br-57 {
  border-right: 57px #e3eff5 solid !important;
}
.black-squeeze--bl-57 {
  border-left: 57px #e3eff5 solid !important;
}
.black-squeeze--bb-57 {
  border-bottom: 57px #e3eff5 solid !important;
}
.black-squeeze--by-57 {
  border-top: 57px #e3eff5 solid !important;
  border-bottom: 57px #e3eff5 solid !important;
}
.black-squeeze--bx-57 {
  border-right: 57px #e3eff5 solid !important;
  border-left: 57px #e3eff5 solid !important;
}
.black-squeeze--ba-58 {
  border: 58px #e3eff5 solid !important;
}
.black-squeeze--bt-58 {
  border-top: 58px #e3eff5 solid !important;
}
.black-squeeze--br-58 {
  border-right: 58px #e3eff5 solid !important;
}
.black-squeeze--bl-58 {
  border-left: 58px #e3eff5 solid !important;
}
.black-squeeze--bb-58 {
  border-bottom: 58px #e3eff5 solid !important;
}
.black-squeeze--by-58 {
  border-top: 58px #e3eff5 solid !important;
  border-bottom: 58px #e3eff5 solid !important;
}
.black-squeeze--bx-58 {
  border-right: 58px #e3eff5 solid !important;
  border-left: 58px #e3eff5 solid !important;
}
.black-squeeze--ba-59 {
  border: 59px #e3eff5 solid !important;
}
.black-squeeze--bt-59 {
  border-top: 59px #e3eff5 solid !important;
}
.black-squeeze--br-59 {
  border-right: 59px #e3eff5 solid !important;
}
.black-squeeze--bl-59 {
  border-left: 59px #e3eff5 solid !important;
}
.black-squeeze--bb-59 {
  border-bottom: 59px #e3eff5 solid !important;
}
.black-squeeze--by-59 {
  border-top: 59px #e3eff5 solid !important;
  border-bottom: 59px #e3eff5 solid !important;
}
.black-squeeze--bx-59 {
  border-right: 59px #e3eff5 solid !important;
  border-left: 59px #e3eff5 solid !important;
}
.black-squeeze--ba-60 {
  border: 60px #e3eff5 solid !important;
}
.black-squeeze--bt-60 {
  border-top: 60px #e3eff5 solid !important;
}
.black-squeeze--br-60 {
  border-right: 60px #e3eff5 solid !important;
}
.black-squeeze--bl-60 {
  border-left: 60px #e3eff5 solid !important;
}
.black-squeeze--bb-60 {
  border-bottom: 60px #e3eff5 solid !important;
}
.black-squeeze--by-60 {
  border-top: 60px #e3eff5 solid !important;
  border-bottom: 60px #e3eff5 solid !important;
}
.black-squeeze--bx-60 {
  border-right: 60px #e3eff5 solid !important;
  border-left: 60px #e3eff5 solid !important;
}
.black-squeeze--ba-61 {
  border: 61px #e3eff5 solid !important;
}
.black-squeeze--bt-61 {
  border-top: 61px #e3eff5 solid !important;
}
.black-squeeze--br-61 {
  border-right: 61px #e3eff5 solid !important;
}
.black-squeeze--bl-61 {
  border-left: 61px #e3eff5 solid !important;
}
.black-squeeze--bb-61 {
  border-bottom: 61px #e3eff5 solid !important;
}
.black-squeeze--by-61 {
  border-top: 61px #e3eff5 solid !important;
  border-bottom: 61px #e3eff5 solid !important;
}
.black-squeeze--bx-61 {
  border-right: 61px #e3eff5 solid !important;
  border-left: 61px #e3eff5 solid !important;
}
.black-squeeze--ba-62 {
  border: 62px #e3eff5 solid !important;
}
.black-squeeze--bt-62 {
  border-top: 62px #e3eff5 solid !important;
}
.black-squeeze--br-62 {
  border-right: 62px #e3eff5 solid !important;
}
.black-squeeze--bl-62 {
  border-left: 62px #e3eff5 solid !important;
}
.black-squeeze--bb-62 {
  border-bottom: 62px #e3eff5 solid !important;
}
.black-squeeze--by-62 {
  border-top: 62px #e3eff5 solid !important;
  border-bottom: 62px #e3eff5 solid !important;
}
.black-squeeze--bx-62 {
  border-right: 62px #e3eff5 solid !important;
  border-left: 62px #e3eff5 solid !important;
}
.black-squeeze--ba-63 {
  border: 63px #e3eff5 solid !important;
}
.black-squeeze--bt-63 {
  border-top: 63px #e3eff5 solid !important;
}
.black-squeeze--br-63 {
  border-right: 63px #e3eff5 solid !important;
}
.black-squeeze--bl-63 {
  border-left: 63px #e3eff5 solid !important;
}
.black-squeeze--bb-63 {
  border-bottom: 63px #e3eff5 solid !important;
}
.black-squeeze--by-63 {
  border-top: 63px #e3eff5 solid !important;
  border-bottom: 63px #e3eff5 solid !important;
}
.black-squeeze--bx-63 {
  border-right: 63px #e3eff5 solid !important;
  border-left: 63px #e3eff5 solid !important;
}
.black-squeeze--ba-64 {
  border: 64px #e3eff5 solid !important;
}
.black-squeeze--bt-64 {
  border-top: 64px #e3eff5 solid !important;
}
.black-squeeze--br-64 {
  border-right: 64px #e3eff5 solid !important;
}
.black-squeeze--bl-64 {
  border-left: 64px #e3eff5 solid !important;
}
.black-squeeze--bb-64 {
  border-bottom: 64px #e3eff5 solid !important;
}
.black-squeeze--by-64 {
  border-top: 64px #e3eff5 solid !important;
  border-bottom: 64px #e3eff5 solid !important;
}
.black-squeeze--bx-64 {
  border-right: 64px #e3eff5 solid !important;
  border-left: 64px #e3eff5 solid !important;
}
.black-squeeze--ba-65 {
  border: 65px #e3eff5 solid !important;
}
.black-squeeze--bt-65 {
  border-top: 65px #e3eff5 solid !important;
}
.black-squeeze--br-65 {
  border-right: 65px #e3eff5 solid !important;
}
.black-squeeze--bl-65 {
  border-left: 65px #e3eff5 solid !important;
}
.black-squeeze--bb-65 {
  border-bottom: 65px #e3eff5 solid !important;
}
.black-squeeze--by-65 {
  border-top: 65px #e3eff5 solid !important;
  border-bottom: 65px #e3eff5 solid !important;
}
.black-squeeze--bx-65 {
  border-right: 65px #e3eff5 solid !important;
  border-left: 65px #e3eff5 solid !important;
}
.black-squeeze--ba-66 {
  border: 66px #e3eff5 solid !important;
}
.black-squeeze--bt-66 {
  border-top: 66px #e3eff5 solid !important;
}
.black-squeeze--br-66 {
  border-right: 66px #e3eff5 solid !important;
}
.black-squeeze--bl-66 {
  border-left: 66px #e3eff5 solid !important;
}
.black-squeeze--bb-66 {
  border-bottom: 66px #e3eff5 solid !important;
}
.black-squeeze--by-66 {
  border-top: 66px #e3eff5 solid !important;
  border-bottom: 66px #e3eff5 solid !important;
}
.black-squeeze--bx-66 {
  border-right: 66px #e3eff5 solid !important;
  border-left: 66px #e3eff5 solid !important;
}
.black-squeeze--ba-67 {
  border: 67px #e3eff5 solid !important;
}
.black-squeeze--bt-67 {
  border-top: 67px #e3eff5 solid !important;
}
.black-squeeze--br-67 {
  border-right: 67px #e3eff5 solid !important;
}
.black-squeeze--bl-67 {
  border-left: 67px #e3eff5 solid !important;
}
.black-squeeze--bb-67 {
  border-bottom: 67px #e3eff5 solid !important;
}
.black-squeeze--by-67 {
  border-top: 67px #e3eff5 solid !important;
  border-bottom: 67px #e3eff5 solid !important;
}
.black-squeeze--bx-67 {
  border-right: 67px #e3eff5 solid !important;
  border-left: 67px #e3eff5 solid !important;
}
.black-squeeze--ba-68 {
  border: 68px #e3eff5 solid !important;
}
.black-squeeze--bt-68 {
  border-top: 68px #e3eff5 solid !important;
}
.black-squeeze--br-68 {
  border-right: 68px #e3eff5 solid !important;
}
.black-squeeze--bl-68 {
  border-left: 68px #e3eff5 solid !important;
}
.black-squeeze--bb-68 {
  border-bottom: 68px #e3eff5 solid !important;
}
.black-squeeze--by-68 {
  border-top: 68px #e3eff5 solid !important;
  border-bottom: 68px #e3eff5 solid !important;
}
.black-squeeze--bx-68 {
  border-right: 68px #e3eff5 solid !important;
  border-left: 68px #e3eff5 solid !important;
}
.black-squeeze--ba-69 {
  border: 69px #e3eff5 solid !important;
}
.black-squeeze--bt-69 {
  border-top: 69px #e3eff5 solid !important;
}
.black-squeeze--br-69 {
  border-right: 69px #e3eff5 solid !important;
}
.black-squeeze--bl-69 {
  border-left: 69px #e3eff5 solid !important;
}
.black-squeeze--bb-69 {
  border-bottom: 69px #e3eff5 solid !important;
}
.black-squeeze--by-69 {
  border-top: 69px #e3eff5 solid !important;
  border-bottom: 69px #e3eff5 solid !important;
}
.black-squeeze--bx-69 {
  border-right: 69px #e3eff5 solid !important;
  border-left: 69px #e3eff5 solid !important;
}
.black-squeeze--ba-70 {
  border: 70px #e3eff5 solid !important;
}
.black-squeeze--bt-70 {
  border-top: 70px #e3eff5 solid !important;
}
.black-squeeze--br-70 {
  border-right: 70px #e3eff5 solid !important;
}
.black-squeeze--bl-70 {
  border-left: 70px #e3eff5 solid !important;
}
.black-squeeze--bb-70 {
  border-bottom: 70px #e3eff5 solid !important;
}
.black-squeeze--by-70 {
  border-top: 70px #e3eff5 solid !important;
  border-bottom: 70px #e3eff5 solid !important;
}
.black-squeeze--bx-70 {
  border-right: 70px #e3eff5 solid !important;
  border-left: 70px #e3eff5 solid !important;
}
.black-squeeze--ba-71 {
  border: 71px #e3eff5 solid !important;
}
.black-squeeze--bt-71 {
  border-top: 71px #e3eff5 solid !important;
}
.black-squeeze--br-71 {
  border-right: 71px #e3eff5 solid !important;
}
.black-squeeze--bl-71 {
  border-left: 71px #e3eff5 solid !important;
}
.black-squeeze--bb-71 {
  border-bottom: 71px #e3eff5 solid !important;
}
.black-squeeze--by-71 {
  border-top: 71px #e3eff5 solid !important;
  border-bottom: 71px #e3eff5 solid !important;
}
.black-squeeze--bx-71 {
  border-right: 71px #e3eff5 solid !important;
  border-left: 71px #e3eff5 solid !important;
}
.black-squeeze--ba-72 {
  border: 72px #e3eff5 solid !important;
}
.black-squeeze--bt-72 {
  border-top: 72px #e3eff5 solid !important;
}
.black-squeeze--br-72 {
  border-right: 72px #e3eff5 solid !important;
}
.black-squeeze--bl-72 {
  border-left: 72px #e3eff5 solid !important;
}
.black-squeeze--bb-72 {
  border-bottom: 72px #e3eff5 solid !important;
}
.black-squeeze--by-72 {
  border-top: 72px #e3eff5 solid !important;
  border-bottom: 72px #e3eff5 solid !important;
}
.black-squeeze--bx-72 {
  border-right: 72px #e3eff5 solid !important;
  border-left: 72px #e3eff5 solid !important;
}
.black-squeeze--ba-73 {
  border: 73px #e3eff5 solid !important;
}
.black-squeeze--bt-73 {
  border-top: 73px #e3eff5 solid !important;
}
.black-squeeze--br-73 {
  border-right: 73px #e3eff5 solid !important;
}
.black-squeeze--bl-73 {
  border-left: 73px #e3eff5 solid !important;
}
.black-squeeze--bb-73 {
  border-bottom: 73px #e3eff5 solid !important;
}
.black-squeeze--by-73 {
  border-top: 73px #e3eff5 solid !important;
  border-bottom: 73px #e3eff5 solid !important;
}
.black-squeeze--bx-73 {
  border-right: 73px #e3eff5 solid !important;
  border-left: 73px #e3eff5 solid !important;
}
.black-squeeze--ba-74 {
  border: 74px #e3eff5 solid !important;
}
.black-squeeze--bt-74 {
  border-top: 74px #e3eff5 solid !important;
}
.black-squeeze--br-74 {
  border-right: 74px #e3eff5 solid !important;
}
.black-squeeze--bl-74 {
  border-left: 74px #e3eff5 solid !important;
}
.black-squeeze--bb-74 {
  border-bottom: 74px #e3eff5 solid !important;
}
.black-squeeze--by-74 {
  border-top: 74px #e3eff5 solid !important;
  border-bottom: 74px #e3eff5 solid !important;
}
.black-squeeze--bx-74 {
  border-right: 74px #e3eff5 solid !important;
  border-left: 74px #e3eff5 solid !important;
}
.black-squeeze--ba-75 {
  border: 75px #e3eff5 solid !important;
}
.black-squeeze--bt-75 {
  border-top: 75px #e3eff5 solid !important;
}
.black-squeeze--br-75 {
  border-right: 75px #e3eff5 solid !important;
}
.black-squeeze--bl-75 {
  border-left: 75px #e3eff5 solid !important;
}
.black-squeeze--bb-75 {
  border-bottom: 75px #e3eff5 solid !important;
}
.black-squeeze--by-75 {
  border-top: 75px #e3eff5 solid !important;
  border-bottom: 75px #e3eff5 solid !important;
}
.black-squeeze--bx-75 {
  border-right: 75px #e3eff5 solid !important;
  border-left: 75px #e3eff5 solid !important;
}
.black-squeeze--ba-76 {
  border: 76px #e3eff5 solid !important;
}
.black-squeeze--bt-76 {
  border-top: 76px #e3eff5 solid !important;
}
.black-squeeze--br-76 {
  border-right: 76px #e3eff5 solid !important;
}
.black-squeeze--bl-76 {
  border-left: 76px #e3eff5 solid !important;
}
.black-squeeze--bb-76 {
  border-bottom: 76px #e3eff5 solid !important;
}
.black-squeeze--by-76 {
  border-top: 76px #e3eff5 solid !important;
  border-bottom: 76px #e3eff5 solid !important;
}
.black-squeeze--bx-76 {
  border-right: 76px #e3eff5 solid !important;
  border-left: 76px #e3eff5 solid !important;
}
.black-squeeze--ba-77 {
  border: 77px #e3eff5 solid !important;
}
.black-squeeze--bt-77 {
  border-top: 77px #e3eff5 solid !important;
}
.black-squeeze--br-77 {
  border-right: 77px #e3eff5 solid !important;
}
.black-squeeze--bl-77 {
  border-left: 77px #e3eff5 solid !important;
}
.black-squeeze--bb-77 {
  border-bottom: 77px #e3eff5 solid !important;
}
.black-squeeze--by-77 {
  border-top: 77px #e3eff5 solid !important;
  border-bottom: 77px #e3eff5 solid !important;
}
.black-squeeze--bx-77 {
  border-right: 77px #e3eff5 solid !important;
  border-left: 77px #e3eff5 solid !important;
}
.black-squeeze--ba-78 {
  border: 78px #e3eff5 solid !important;
}
.black-squeeze--bt-78 {
  border-top: 78px #e3eff5 solid !important;
}
.black-squeeze--br-78 {
  border-right: 78px #e3eff5 solid !important;
}
.black-squeeze--bl-78 {
  border-left: 78px #e3eff5 solid !important;
}
.black-squeeze--bb-78 {
  border-bottom: 78px #e3eff5 solid !important;
}
.black-squeeze--by-78 {
  border-top: 78px #e3eff5 solid !important;
  border-bottom: 78px #e3eff5 solid !important;
}
.black-squeeze--bx-78 {
  border-right: 78px #e3eff5 solid !important;
  border-left: 78px #e3eff5 solid !important;
}
.black-squeeze--ba-79 {
  border: 79px #e3eff5 solid !important;
}
.black-squeeze--bt-79 {
  border-top: 79px #e3eff5 solid !important;
}
.black-squeeze--br-79 {
  border-right: 79px #e3eff5 solid !important;
}
.black-squeeze--bl-79 {
  border-left: 79px #e3eff5 solid !important;
}
.black-squeeze--bb-79 {
  border-bottom: 79px #e3eff5 solid !important;
}
.black-squeeze--by-79 {
  border-top: 79px #e3eff5 solid !important;
  border-bottom: 79px #e3eff5 solid !important;
}
.black-squeeze--bx-79 {
  border-right: 79px #e3eff5 solid !important;
  border-left: 79px #e3eff5 solid !important;
}
.black-squeeze--ba-80 {
  border: 80px #e3eff5 solid !important;
}
.black-squeeze--bt-80 {
  border-top: 80px #e3eff5 solid !important;
}
.black-squeeze--br-80 {
  border-right: 80px #e3eff5 solid !important;
}
.black-squeeze--bl-80 {
  border-left: 80px #e3eff5 solid !important;
}
.black-squeeze--bb-80 {
  border-bottom: 80px #e3eff5 solid !important;
}
.black-squeeze--by-80 {
  border-top: 80px #e3eff5 solid !important;
  border-bottom: 80px #e3eff5 solid !important;
}
.black-squeeze--bx-80 {
  border-right: 80px #e3eff5 solid !important;
  border-left: 80px #e3eff5 solid !important;
}
.black-squeeze--ba-81 {
  border: 81px #e3eff5 solid !important;
}
.black-squeeze--bt-81 {
  border-top: 81px #e3eff5 solid !important;
}
.black-squeeze--br-81 {
  border-right: 81px #e3eff5 solid !important;
}
.black-squeeze--bl-81 {
  border-left: 81px #e3eff5 solid !important;
}
.black-squeeze--bb-81 {
  border-bottom: 81px #e3eff5 solid !important;
}
.black-squeeze--by-81 {
  border-top: 81px #e3eff5 solid !important;
  border-bottom: 81px #e3eff5 solid !important;
}
.black-squeeze--bx-81 {
  border-right: 81px #e3eff5 solid !important;
  border-left: 81px #e3eff5 solid !important;
}
.black-squeeze--ba-82 {
  border: 82px #e3eff5 solid !important;
}
.black-squeeze--bt-82 {
  border-top: 82px #e3eff5 solid !important;
}
.black-squeeze--br-82 {
  border-right: 82px #e3eff5 solid !important;
}
.black-squeeze--bl-82 {
  border-left: 82px #e3eff5 solid !important;
}
.black-squeeze--bb-82 {
  border-bottom: 82px #e3eff5 solid !important;
}
.black-squeeze--by-82 {
  border-top: 82px #e3eff5 solid !important;
  border-bottom: 82px #e3eff5 solid !important;
}
.black-squeeze--bx-82 {
  border-right: 82px #e3eff5 solid !important;
  border-left: 82px #e3eff5 solid !important;
}
.black-squeeze--ba-83 {
  border: 83px #e3eff5 solid !important;
}
.black-squeeze--bt-83 {
  border-top: 83px #e3eff5 solid !important;
}
.black-squeeze--br-83 {
  border-right: 83px #e3eff5 solid !important;
}
.black-squeeze--bl-83 {
  border-left: 83px #e3eff5 solid !important;
}
.black-squeeze--bb-83 {
  border-bottom: 83px #e3eff5 solid !important;
}
.black-squeeze--by-83 {
  border-top: 83px #e3eff5 solid !important;
  border-bottom: 83px #e3eff5 solid !important;
}
.black-squeeze--bx-83 {
  border-right: 83px #e3eff5 solid !important;
  border-left: 83px #e3eff5 solid !important;
}
.black-squeeze--ba-84 {
  border: 84px #e3eff5 solid !important;
}
.black-squeeze--bt-84 {
  border-top: 84px #e3eff5 solid !important;
}
.black-squeeze--br-84 {
  border-right: 84px #e3eff5 solid !important;
}
.black-squeeze--bl-84 {
  border-left: 84px #e3eff5 solid !important;
}
.black-squeeze--bb-84 {
  border-bottom: 84px #e3eff5 solid !important;
}
.black-squeeze--by-84 {
  border-top: 84px #e3eff5 solid !important;
  border-bottom: 84px #e3eff5 solid !important;
}
.black-squeeze--bx-84 {
  border-right: 84px #e3eff5 solid !important;
  border-left: 84px #e3eff5 solid !important;
}
.black-squeeze--ba-85 {
  border: 85px #e3eff5 solid !important;
}
.black-squeeze--bt-85 {
  border-top: 85px #e3eff5 solid !important;
}
.black-squeeze--br-85 {
  border-right: 85px #e3eff5 solid !important;
}
.black-squeeze--bl-85 {
  border-left: 85px #e3eff5 solid !important;
}
.black-squeeze--bb-85 {
  border-bottom: 85px #e3eff5 solid !important;
}
.black-squeeze--by-85 {
  border-top: 85px #e3eff5 solid !important;
  border-bottom: 85px #e3eff5 solid !important;
}
.black-squeeze--bx-85 {
  border-right: 85px #e3eff5 solid !important;
  border-left: 85px #e3eff5 solid !important;
}
.black-squeeze--ba-86 {
  border: 86px #e3eff5 solid !important;
}
.black-squeeze--bt-86 {
  border-top: 86px #e3eff5 solid !important;
}
.black-squeeze--br-86 {
  border-right: 86px #e3eff5 solid !important;
}
.black-squeeze--bl-86 {
  border-left: 86px #e3eff5 solid !important;
}
.black-squeeze--bb-86 {
  border-bottom: 86px #e3eff5 solid !important;
}
.black-squeeze--by-86 {
  border-top: 86px #e3eff5 solid !important;
  border-bottom: 86px #e3eff5 solid !important;
}
.black-squeeze--bx-86 {
  border-right: 86px #e3eff5 solid !important;
  border-left: 86px #e3eff5 solid !important;
}
.black-squeeze--ba-87 {
  border: 87px #e3eff5 solid !important;
}
.black-squeeze--bt-87 {
  border-top: 87px #e3eff5 solid !important;
}
.black-squeeze--br-87 {
  border-right: 87px #e3eff5 solid !important;
}
.black-squeeze--bl-87 {
  border-left: 87px #e3eff5 solid !important;
}
.black-squeeze--bb-87 {
  border-bottom: 87px #e3eff5 solid !important;
}
.black-squeeze--by-87 {
  border-top: 87px #e3eff5 solid !important;
  border-bottom: 87px #e3eff5 solid !important;
}
.black-squeeze--bx-87 {
  border-right: 87px #e3eff5 solid !important;
  border-left: 87px #e3eff5 solid !important;
}
.black-squeeze--ba-88 {
  border: 88px #e3eff5 solid !important;
}
.black-squeeze--bt-88 {
  border-top: 88px #e3eff5 solid !important;
}
.black-squeeze--br-88 {
  border-right: 88px #e3eff5 solid !important;
}
.black-squeeze--bl-88 {
  border-left: 88px #e3eff5 solid !important;
}
.black-squeeze--bb-88 {
  border-bottom: 88px #e3eff5 solid !important;
}
.black-squeeze--by-88 {
  border-top: 88px #e3eff5 solid !important;
  border-bottom: 88px #e3eff5 solid !important;
}
.black-squeeze--bx-88 {
  border-right: 88px #e3eff5 solid !important;
  border-left: 88px #e3eff5 solid !important;
}
.black-squeeze--ba-89 {
  border: 89px #e3eff5 solid !important;
}
.black-squeeze--bt-89 {
  border-top: 89px #e3eff5 solid !important;
}
.black-squeeze--br-89 {
  border-right: 89px #e3eff5 solid !important;
}
.black-squeeze--bl-89 {
  border-left: 89px #e3eff5 solid !important;
}
.black-squeeze--bb-89 {
  border-bottom: 89px #e3eff5 solid !important;
}
.black-squeeze--by-89 {
  border-top: 89px #e3eff5 solid !important;
  border-bottom: 89px #e3eff5 solid !important;
}
.black-squeeze--bx-89 {
  border-right: 89px #e3eff5 solid !important;
  border-left: 89px #e3eff5 solid !important;
}
.black-squeeze--ba-90 {
  border: 90px #e3eff5 solid !important;
}
.black-squeeze--bt-90 {
  border-top: 90px #e3eff5 solid !important;
}
.black-squeeze--br-90 {
  border-right: 90px #e3eff5 solid !important;
}
.black-squeeze--bl-90 {
  border-left: 90px #e3eff5 solid !important;
}
.black-squeeze--bb-90 {
  border-bottom: 90px #e3eff5 solid !important;
}
.black-squeeze--by-90 {
  border-top: 90px #e3eff5 solid !important;
  border-bottom: 90px #e3eff5 solid !important;
}
.black-squeeze--bx-90 {
  border-right: 90px #e3eff5 solid !important;
  border-left: 90px #e3eff5 solid !important;
}
.black-squeeze--ba-91 {
  border: 91px #e3eff5 solid !important;
}
.black-squeeze--bt-91 {
  border-top: 91px #e3eff5 solid !important;
}
.black-squeeze--br-91 {
  border-right: 91px #e3eff5 solid !important;
}
.black-squeeze--bl-91 {
  border-left: 91px #e3eff5 solid !important;
}
.black-squeeze--bb-91 {
  border-bottom: 91px #e3eff5 solid !important;
}
.black-squeeze--by-91 {
  border-top: 91px #e3eff5 solid !important;
  border-bottom: 91px #e3eff5 solid !important;
}
.black-squeeze--bx-91 {
  border-right: 91px #e3eff5 solid !important;
  border-left: 91px #e3eff5 solid !important;
}
.black-squeeze--ba-92 {
  border: 92px #e3eff5 solid !important;
}
.black-squeeze--bt-92 {
  border-top: 92px #e3eff5 solid !important;
}
.black-squeeze--br-92 {
  border-right: 92px #e3eff5 solid !important;
}
.black-squeeze--bl-92 {
  border-left: 92px #e3eff5 solid !important;
}
.black-squeeze--bb-92 {
  border-bottom: 92px #e3eff5 solid !important;
}
.black-squeeze--by-92 {
  border-top: 92px #e3eff5 solid !important;
  border-bottom: 92px #e3eff5 solid !important;
}
.black-squeeze--bx-92 {
  border-right: 92px #e3eff5 solid !important;
  border-left: 92px #e3eff5 solid !important;
}
.black-squeeze--ba-93 {
  border: 93px #e3eff5 solid !important;
}
.black-squeeze--bt-93 {
  border-top: 93px #e3eff5 solid !important;
}
.black-squeeze--br-93 {
  border-right: 93px #e3eff5 solid !important;
}
.black-squeeze--bl-93 {
  border-left: 93px #e3eff5 solid !important;
}
.black-squeeze--bb-93 {
  border-bottom: 93px #e3eff5 solid !important;
}
.black-squeeze--by-93 {
  border-top: 93px #e3eff5 solid !important;
  border-bottom: 93px #e3eff5 solid !important;
}
.black-squeeze--bx-93 {
  border-right: 93px #e3eff5 solid !important;
  border-left: 93px #e3eff5 solid !important;
}
.black-squeeze--ba-94 {
  border: 94px #e3eff5 solid !important;
}
.black-squeeze--bt-94 {
  border-top: 94px #e3eff5 solid !important;
}
.black-squeeze--br-94 {
  border-right: 94px #e3eff5 solid !important;
}
.black-squeeze--bl-94 {
  border-left: 94px #e3eff5 solid !important;
}
.black-squeeze--bb-94 {
  border-bottom: 94px #e3eff5 solid !important;
}
.black-squeeze--by-94 {
  border-top: 94px #e3eff5 solid !important;
  border-bottom: 94px #e3eff5 solid !important;
}
.black-squeeze--bx-94 {
  border-right: 94px #e3eff5 solid !important;
  border-left: 94px #e3eff5 solid !important;
}
.black-squeeze--ba-95 {
  border: 95px #e3eff5 solid !important;
}
.black-squeeze--bt-95 {
  border-top: 95px #e3eff5 solid !important;
}
.black-squeeze--br-95 {
  border-right: 95px #e3eff5 solid !important;
}
.black-squeeze--bl-95 {
  border-left: 95px #e3eff5 solid !important;
}
.black-squeeze--bb-95 {
  border-bottom: 95px #e3eff5 solid !important;
}
.black-squeeze--by-95 {
  border-top: 95px #e3eff5 solid !important;
  border-bottom: 95px #e3eff5 solid !important;
}
.black-squeeze--bx-95 {
  border-right: 95px #e3eff5 solid !important;
  border-left: 95px #e3eff5 solid !important;
}
.black-squeeze--ba-96 {
  border: 96px #e3eff5 solid !important;
}
.black-squeeze--bt-96 {
  border-top: 96px #e3eff5 solid !important;
}
.black-squeeze--br-96 {
  border-right: 96px #e3eff5 solid !important;
}
.black-squeeze--bl-96 {
  border-left: 96px #e3eff5 solid !important;
}
.black-squeeze--bb-96 {
  border-bottom: 96px #e3eff5 solid !important;
}
.black-squeeze--by-96 {
  border-top: 96px #e3eff5 solid !important;
  border-bottom: 96px #e3eff5 solid !important;
}
.black-squeeze--bx-96 {
  border-right: 96px #e3eff5 solid !important;
  border-left: 96px #e3eff5 solid !important;
}
.black-squeeze--ba-97 {
  border: 97px #e3eff5 solid !important;
}
.black-squeeze--bt-97 {
  border-top: 97px #e3eff5 solid !important;
}
.black-squeeze--br-97 {
  border-right: 97px #e3eff5 solid !important;
}
.black-squeeze--bl-97 {
  border-left: 97px #e3eff5 solid !important;
}
.black-squeeze--bb-97 {
  border-bottom: 97px #e3eff5 solid !important;
}
.black-squeeze--by-97 {
  border-top: 97px #e3eff5 solid !important;
  border-bottom: 97px #e3eff5 solid !important;
}
.black-squeeze--bx-97 {
  border-right: 97px #e3eff5 solid !important;
  border-left: 97px #e3eff5 solid !important;
}
.black-squeeze--ba-98 {
  border: 98px #e3eff5 solid !important;
}
.black-squeeze--bt-98 {
  border-top: 98px #e3eff5 solid !important;
}
.black-squeeze--br-98 {
  border-right: 98px #e3eff5 solid !important;
}
.black-squeeze--bl-98 {
  border-left: 98px #e3eff5 solid !important;
}
.black-squeeze--bb-98 {
  border-bottom: 98px #e3eff5 solid !important;
}
.black-squeeze--by-98 {
  border-top: 98px #e3eff5 solid !important;
  border-bottom: 98px #e3eff5 solid !important;
}
.black-squeeze--bx-98 {
  border-right: 98px #e3eff5 solid !important;
  border-left: 98px #e3eff5 solid !important;
}
.black-squeeze--ba-99 {
  border: 99px #e3eff5 solid !important;
}
.black-squeeze--bt-99 {
  border-top: 99px #e3eff5 solid !important;
}
.black-squeeze--br-99 {
  border-right: 99px #e3eff5 solid !important;
}
.black-squeeze--bl-99 {
  border-left: 99px #e3eff5 solid !important;
}
.black-squeeze--bb-99 {
  border-bottom: 99px #e3eff5 solid !important;
}
.black-squeeze--by-99 {
  border-top: 99px #e3eff5 solid !important;
  border-bottom: 99px #e3eff5 solid !important;
}
.black-squeeze--bx-99 {
  border-right: 99px #e3eff5 solid !important;
  border-left: 99px #e3eff5 solid !important;
}
.black-squeeze--ba-100 {
  border: 100px #e3eff5 solid !important;
}
.black-squeeze--bt-100 {
  border-top: 100px #e3eff5 solid !important;
}
.black-squeeze--br-100 {
  border-right: 100px #e3eff5 solid !important;
}
.black-squeeze--bl-100 {
  border-left: 100px #e3eff5 solid !important;
}
.black-squeeze--bb-100 {
  border-bottom: 100px #e3eff5 solid !important;
}
.black-squeeze--by-100 {
  border-top: 100px #e3eff5 solid !important;
  border-bottom: 100px #e3eff5 solid !important;
}
.black-squeeze--bx-100 {
  border-right: 100px #e3eff5 solid !important;
  border-left: 100px #e3eff5 solid !important;
}
.rock-blue--ba-1 {
  border: 1px #9cb6c8 solid !important;
}
.rock-blue--bt-1 {
  border-top: 1px #9cb6c8 solid !important;
}
.rock-blue--br-1 {
  border-right: 1px #9cb6c8 solid !important;
}
.rock-blue--bl-1 {
  border-left: 1px #9cb6c8 solid !important;
}
.rock-blue--bb-1 {
  border-bottom: 1px #9cb6c8 solid !important;
}
.rock-blue--by-1 {
  border-top: 1px #9cb6c8 solid !important;
  border-bottom: 1px #9cb6c8 solid !important;
}
.rock-blue--bx-1 {
  border-right: 1px #9cb6c8 solid !important;
  border-left: 1px #9cb6c8 solid !important;
}
.rock-blue--ba-2 {
  border: 2px #9cb6c8 solid !important;
}
.rock-blue--bt-2 {
  border-top: 2px #9cb6c8 solid !important;
}
.rock-blue--br-2 {
  border-right: 2px #9cb6c8 solid !important;
}
.rock-blue--bl-2 {
  border-left: 2px #9cb6c8 solid !important;
}
.rock-blue--bb-2 {
  border-bottom: 2px #9cb6c8 solid !important;
}
.rock-blue--by-2 {
  border-top: 2px #9cb6c8 solid !important;
  border-bottom: 2px #9cb6c8 solid !important;
}
.rock-blue--bx-2 {
  border-right: 2px #9cb6c8 solid !important;
  border-left: 2px #9cb6c8 solid !important;
}
.rock-blue--ba-3 {
  border: 3px #9cb6c8 solid !important;
}
.rock-blue--bt-3 {
  border-top: 3px #9cb6c8 solid !important;
}
.rock-blue--br-3 {
  border-right: 3px #9cb6c8 solid !important;
}
.rock-blue--bl-3 {
  border-left: 3px #9cb6c8 solid !important;
}
.rock-blue--bb-3 {
  border-bottom: 3px #9cb6c8 solid !important;
}
.rock-blue--by-3 {
  border-top: 3px #9cb6c8 solid !important;
  border-bottom: 3px #9cb6c8 solid !important;
}
.rock-blue--bx-3 {
  border-right: 3px #9cb6c8 solid !important;
  border-left: 3px #9cb6c8 solid !important;
}
.rock-blue--ba-4 {
  border: 4px #9cb6c8 solid !important;
}
.rock-blue--bt-4 {
  border-top: 4px #9cb6c8 solid !important;
}
.rock-blue--br-4 {
  border-right: 4px #9cb6c8 solid !important;
}
.rock-blue--bl-4 {
  border-left: 4px #9cb6c8 solid !important;
}
.rock-blue--bb-4 {
  border-bottom: 4px #9cb6c8 solid !important;
}
.rock-blue--by-4 {
  border-top: 4px #9cb6c8 solid !important;
  border-bottom: 4px #9cb6c8 solid !important;
}
.rock-blue--bx-4 {
  border-right: 4px #9cb6c8 solid !important;
  border-left: 4px #9cb6c8 solid !important;
}
.rock-blue--ba-5 {
  border: 5px #9cb6c8 solid !important;
}
.rock-blue--bt-5 {
  border-top: 5px #9cb6c8 solid !important;
}
.rock-blue--br-5 {
  border-right: 5px #9cb6c8 solid !important;
}
.rock-blue--bl-5 {
  border-left: 5px #9cb6c8 solid !important;
}
.rock-blue--bb-5 {
  border-bottom: 5px #9cb6c8 solid !important;
}
.rock-blue--by-5 {
  border-top: 5px #9cb6c8 solid !important;
  border-bottom: 5px #9cb6c8 solid !important;
}
.rock-blue--bx-5 {
  border-right: 5px #9cb6c8 solid !important;
  border-left: 5px #9cb6c8 solid !important;
}
.rock-blue--ba-6 {
  border: 6px #9cb6c8 solid !important;
}
.rock-blue--bt-6 {
  border-top: 6px #9cb6c8 solid !important;
}
.rock-blue--br-6 {
  border-right: 6px #9cb6c8 solid !important;
}
.rock-blue--bl-6 {
  border-left: 6px #9cb6c8 solid !important;
}
.rock-blue--bb-6 {
  border-bottom: 6px #9cb6c8 solid !important;
}
.rock-blue--by-6 {
  border-top: 6px #9cb6c8 solid !important;
  border-bottom: 6px #9cb6c8 solid !important;
}
.rock-blue--bx-6 {
  border-right: 6px #9cb6c8 solid !important;
  border-left: 6px #9cb6c8 solid !important;
}
.rock-blue--ba-7 {
  border: 7px #9cb6c8 solid !important;
}
.rock-blue--bt-7 {
  border-top: 7px #9cb6c8 solid !important;
}
.rock-blue--br-7 {
  border-right: 7px #9cb6c8 solid !important;
}
.rock-blue--bl-7 {
  border-left: 7px #9cb6c8 solid !important;
}
.rock-blue--bb-7 {
  border-bottom: 7px #9cb6c8 solid !important;
}
.rock-blue--by-7 {
  border-top: 7px #9cb6c8 solid !important;
  border-bottom: 7px #9cb6c8 solid !important;
}
.rock-blue--bx-7 {
  border-right: 7px #9cb6c8 solid !important;
  border-left: 7px #9cb6c8 solid !important;
}
.rock-blue--ba-8 {
  border: 8px #9cb6c8 solid !important;
}
.rock-blue--bt-8 {
  border-top: 8px #9cb6c8 solid !important;
}
.rock-blue--br-8 {
  border-right: 8px #9cb6c8 solid !important;
}
.rock-blue--bl-8 {
  border-left: 8px #9cb6c8 solid !important;
}
.rock-blue--bb-8 {
  border-bottom: 8px #9cb6c8 solid !important;
}
.rock-blue--by-8 {
  border-top: 8px #9cb6c8 solid !important;
  border-bottom: 8px #9cb6c8 solid !important;
}
.rock-blue--bx-8 {
  border-right: 8px #9cb6c8 solid !important;
  border-left: 8px #9cb6c8 solid !important;
}
.rock-blue--ba-9 {
  border: 9px #9cb6c8 solid !important;
}
.rock-blue--bt-9 {
  border-top: 9px #9cb6c8 solid !important;
}
.rock-blue--br-9 {
  border-right: 9px #9cb6c8 solid !important;
}
.rock-blue--bl-9 {
  border-left: 9px #9cb6c8 solid !important;
}
.rock-blue--bb-9 {
  border-bottom: 9px #9cb6c8 solid !important;
}
.rock-blue--by-9 {
  border-top: 9px #9cb6c8 solid !important;
  border-bottom: 9px #9cb6c8 solid !important;
}
.rock-blue--bx-9 {
  border-right: 9px #9cb6c8 solid !important;
  border-left: 9px #9cb6c8 solid !important;
}
.rock-blue--ba-10 {
  border: 10px #9cb6c8 solid !important;
}
.rock-blue--bt-10 {
  border-top: 10px #9cb6c8 solid !important;
}
.rock-blue--br-10 {
  border-right: 10px #9cb6c8 solid !important;
}
.rock-blue--bl-10 {
  border-left: 10px #9cb6c8 solid !important;
}
.rock-blue--bb-10 {
  border-bottom: 10px #9cb6c8 solid !important;
}
.rock-blue--by-10 {
  border-top: 10px #9cb6c8 solid !important;
  border-bottom: 10px #9cb6c8 solid !important;
}
.rock-blue--bx-10 {
  border-right: 10px #9cb6c8 solid !important;
  border-left: 10px #9cb6c8 solid !important;
}
.rock-blue--ba-11 {
  border: 11px #9cb6c8 solid !important;
}
.rock-blue--bt-11 {
  border-top: 11px #9cb6c8 solid !important;
}
.rock-blue--br-11 {
  border-right: 11px #9cb6c8 solid !important;
}
.rock-blue--bl-11 {
  border-left: 11px #9cb6c8 solid !important;
}
.rock-blue--bb-11 {
  border-bottom: 11px #9cb6c8 solid !important;
}
.rock-blue--by-11 {
  border-top: 11px #9cb6c8 solid !important;
  border-bottom: 11px #9cb6c8 solid !important;
}
.rock-blue--bx-11 {
  border-right: 11px #9cb6c8 solid !important;
  border-left: 11px #9cb6c8 solid !important;
}
.rock-blue--ba-12 {
  border: 12px #9cb6c8 solid !important;
}
.rock-blue--bt-12 {
  border-top: 12px #9cb6c8 solid !important;
}
.rock-blue--br-12 {
  border-right: 12px #9cb6c8 solid !important;
}
.rock-blue--bl-12 {
  border-left: 12px #9cb6c8 solid !important;
}
.rock-blue--bb-12 {
  border-bottom: 12px #9cb6c8 solid !important;
}
.rock-blue--by-12 {
  border-top: 12px #9cb6c8 solid !important;
  border-bottom: 12px #9cb6c8 solid !important;
}
.rock-blue--bx-12 {
  border-right: 12px #9cb6c8 solid !important;
  border-left: 12px #9cb6c8 solid !important;
}
.rock-blue--ba-13 {
  border: 13px #9cb6c8 solid !important;
}
.rock-blue--bt-13 {
  border-top: 13px #9cb6c8 solid !important;
}
.rock-blue--br-13 {
  border-right: 13px #9cb6c8 solid !important;
}
.rock-blue--bl-13 {
  border-left: 13px #9cb6c8 solid !important;
}
.rock-blue--bb-13 {
  border-bottom: 13px #9cb6c8 solid !important;
}
.rock-blue--by-13 {
  border-top: 13px #9cb6c8 solid !important;
  border-bottom: 13px #9cb6c8 solid !important;
}
.rock-blue--bx-13 {
  border-right: 13px #9cb6c8 solid !important;
  border-left: 13px #9cb6c8 solid !important;
}
.rock-blue--ba-14 {
  border: 14px #9cb6c8 solid !important;
}
.rock-blue--bt-14 {
  border-top: 14px #9cb6c8 solid !important;
}
.rock-blue--br-14 {
  border-right: 14px #9cb6c8 solid !important;
}
.rock-blue--bl-14 {
  border-left: 14px #9cb6c8 solid !important;
}
.rock-blue--bb-14 {
  border-bottom: 14px #9cb6c8 solid !important;
}
.rock-blue--by-14 {
  border-top: 14px #9cb6c8 solid !important;
  border-bottom: 14px #9cb6c8 solid !important;
}
.rock-blue--bx-14 {
  border-right: 14px #9cb6c8 solid !important;
  border-left: 14px #9cb6c8 solid !important;
}
.rock-blue--ba-15 {
  border: 15px #9cb6c8 solid !important;
}
.rock-blue--bt-15 {
  border-top: 15px #9cb6c8 solid !important;
}
.rock-blue--br-15 {
  border-right: 15px #9cb6c8 solid !important;
}
.rock-blue--bl-15 {
  border-left: 15px #9cb6c8 solid !important;
}
.rock-blue--bb-15 {
  border-bottom: 15px #9cb6c8 solid !important;
}
.rock-blue--by-15 {
  border-top: 15px #9cb6c8 solid !important;
  border-bottom: 15px #9cb6c8 solid !important;
}
.rock-blue--bx-15 {
  border-right: 15px #9cb6c8 solid !important;
  border-left: 15px #9cb6c8 solid !important;
}
.rock-blue--ba-16 {
  border: 16px #9cb6c8 solid !important;
}
.rock-blue--bt-16 {
  border-top: 16px #9cb6c8 solid !important;
}
.rock-blue--br-16 {
  border-right: 16px #9cb6c8 solid !important;
}
.rock-blue--bl-16 {
  border-left: 16px #9cb6c8 solid !important;
}
.rock-blue--bb-16 {
  border-bottom: 16px #9cb6c8 solid !important;
}
.rock-blue--by-16 {
  border-top: 16px #9cb6c8 solid !important;
  border-bottom: 16px #9cb6c8 solid !important;
}
.rock-blue--bx-16 {
  border-right: 16px #9cb6c8 solid !important;
  border-left: 16px #9cb6c8 solid !important;
}
.rock-blue--ba-17 {
  border: 17px #9cb6c8 solid !important;
}
.rock-blue--bt-17 {
  border-top: 17px #9cb6c8 solid !important;
}
.rock-blue--br-17 {
  border-right: 17px #9cb6c8 solid !important;
}
.rock-blue--bl-17 {
  border-left: 17px #9cb6c8 solid !important;
}
.rock-blue--bb-17 {
  border-bottom: 17px #9cb6c8 solid !important;
}
.rock-blue--by-17 {
  border-top: 17px #9cb6c8 solid !important;
  border-bottom: 17px #9cb6c8 solid !important;
}
.rock-blue--bx-17 {
  border-right: 17px #9cb6c8 solid !important;
  border-left: 17px #9cb6c8 solid !important;
}
.rock-blue--ba-18 {
  border: 18px #9cb6c8 solid !important;
}
.rock-blue--bt-18 {
  border-top: 18px #9cb6c8 solid !important;
}
.rock-blue--br-18 {
  border-right: 18px #9cb6c8 solid !important;
}
.rock-blue--bl-18 {
  border-left: 18px #9cb6c8 solid !important;
}
.rock-blue--bb-18 {
  border-bottom: 18px #9cb6c8 solid !important;
}
.rock-blue--by-18 {
  border-top: 18px #9cb6c8 solid !important;
  border-bottom: 18px #9cb6c8 solid !important;
}
.rock-blue--bx-18 {
  border-right: 18px #9cb6c8 solid !important;
  border-left: 18px #9cb6c8 solid !important;
}
.rock-blue--ba-19 {
  border: 19px #9cb6c8 solid !important;
}
.rock-blue--bt-19 {
  border-top: 19px #9cb6c8 solid !important;
}
.rock-blue--br-19 {
  border-right: 19px #9cb6c8 solid !important;
}
.rock-blue--bl-19 {
  border-left: 19px #9cb6c8 solid !important;
}
.rock-blue--bb-19 {
  border-bottom: 19px #9cb6c8 solid !important;
}
.rock-blue--by-19 {
  border-top: 19px #9cb6c8 solid !important;
  border-bottom: 19px #9cb6c8 solid !important;
}
.rock-blue--bx-19 {
  border-right: 19px #9cb6c8 solid !important;
  border-left: 19px #9cb6c8 solid !important;
}
.rock-blue--ba-20 {
  border: 20px #9cb6c8 solid !important;
}
.rock-blue--bt-20 {
  border-top: 20px #9cb6c8 solid !important;
}
.rock-blue--br-20 {
  border-right: 20px #9cb6c8 solid !important;
}
.rock-blue--bl-20 {
  border-left: 20px #9cb6c8 solid !important;
}
.rock-blue--bb-20 {
  border-bottom: 20px #9cb6c8 solid !important;
}
.rock-blue--by-20 {
  border-top: 20px #9cb6c8 solid !important;
  border-bottom: 20px #9cb6c8 solid !important;
}
.rock-blue--bx-20 {
  border-right: 20px #9cb6c8 solid !important;
  border-left: 20px #9cb6c8 solid !important;
}
.rock-blue--ba-21 {
  border: 21px #9cb6c8 solid !important;
}
.rock-blue--bt-21 {
  border-top: 21px #9cb6c8 solid !important;
}
.rock-blue--br-21 {
  border-right: 21px #9cb6c8 solid !important;
}
.rock-blue--bl-21 {
  border-left: 21px #9cb6c8 solid !important;
}
.rock-blue--bb-21 {
  border-bottom: 21px #9cb6c8 solid !important;
}
.rock-blue--by-21 {
  border-top: 21px #9cb6c8 solid !important;
  border-bottom: 21px #9cb6c8 solid !important;
}
.rock-blue--bx-21 {
  border-right: 21px #9cb6c8 solid !important;
  border-left: 21px #9cb6c8 solid !important;
}
.rock-blue--ba-22 {
  border: 22px #9cb6c8 solid !important;
}
.rock-blue--bt-22 {
  border-top: 22px #9cb6c8 solid !important;
}
.rock-blue--br-22 {
  border-right: 22px #9cb6c8 solid !important;
}
.rock-blue--bl-22 {
  border-left: 22px #9cb6c8 solid !important;
}
.rock-blue--bb-22 {
  border-bottom: 22px #9cb6c8 solid !important;
}
.rock-blue--by-22 {
  border-top: 22px #9cb6c8 solid !important;
  border-bottom: 22px #9cb6c8 solid !important;
}
.rock-blue--bx-22 {
  border-right: 22px #9cb6c8 solid !important;
  border-left: 22px #9cb6c8 solid !important;
}
.rock-blue--ba-23 {
  border: 23px #9cb6c8 solid !important;
}
.rock-blue--bt-23 {
  border-top: 23px #9cb6c8 solid !important;
}
.rock-blue--br-23 {
  border-right: 23px #9cb6c8 solid !important;
}
.rock-blue--bl-23 {
  border-left: 23px #9cb6c8 solid !important;
}
.rock-blue--bb-23 {
  border-bottom: 23px #9cb6c8 solid !important;
}
.rock-blue--by-23 {
  border-top: 23px #9cb6c8 solid !important;
  border-bottom: 23px #9cb6c8 solid !important;
}
.rock-blue--bx-23 {
  border-right: 23px #9cb6c8 solid !important;
  border-left: 23px #9cb6c8 solid !important;
}
.rock-blue--ba-24 {
  border: 24px #9cb6c8 solid !important;
}
.rock-blue--bt-24 {
  border-top: 24px #9cb6c8 solid !important;
}
.rock-blue--br-24 {
  border-right: 24px #9cb6c8 solid !important;
}
.rock-blue--bl-24 {
  border-left: 24px #9cb6c8 solid !important;
}
.rock-blue--bb-24 {
  border-bottom: 24px #9cb6c8 solid !important;
}
.rock-blue--by-24 {
  border-top: 24px #9cb6c8 solid !important;
  border-bottom: 24px #9cb6c8 solid !important;
}
.rock-blue--bx-24 {
  border-right: 24px #9cb6c8 solid !important;
  border-left: 24px #9cb6c8 solid !important;
}
.rock-blue--ba-25 {
  border: 25px #9cb6c8 solid !important;
}
.rock-blue--bt-25 {
  border-top: 25px #9cb6c8 solid !important;
}
.rock-blue--br-25 {
  border-right: 25px #9cb6c8 solid !important;
}
.rock-blue--bl-25 {
  border-left: 25px #9cb6c8 solid !important;
}
.rock-blue--bb-25 {
  border-bottom: 25px #9cb6c8 solid !important;
}
.rock-blue--by-25 {
  border-top: 25px #9cb6c8 solid !important;
  border-bottom: 25px #9cb6c8 solid !important;
}
.rock-blue--bx-25 {
  border-right: 25px #9cb6c8 solid !important;
  border-left: 25px #9cb6c8 solid !important;
}
.rock-blue--ba-26 {
  border: 26px #9cb6c8 solid !important;
}
.rock-blue--bt-26 {
  border-top: 26px #9cb6c8 solid !important;
}
.rock-blue--br-26 {
  border-right: 26px #9cb6c8 solid !important;
}
.rock-blue--bl-26 {
  border-left: 26px #9cb6c8 solid !important;
}
.rock-blue--bb-26 {
  border-bottom: 26px #9cb6c8 solid !important;
}
.rock-blue--by-26 {
  border-top: 26px #9cb6c8 solid !important;
  border-bottom: 26px #9cb6c8 solid !important;
}
.rock-blue--bx-26 {
  border-right: 26px #9cb6c8 solid !important;
  border-left: 26px #9cb6c8 solid !important;
}
.rock-blue--ba-27 {
  border: 27px #9cb6c8 solid !important;
}
.rock-blue--bt-27 {
  border-top: 27px #9cb6c8 solid !important;
}
.rock-blue--br-27 {
  border-right: 27px #9cb6c8 solid !important;
}
.rock-blue--bl-27 {
  border-left: 27px #9cb6c8 solid !important;
}
.rock-blue--bb-27 {
  border-bottom: 27px #9cb6c8 solid !important;
}
.rock-blue--by-27 {
  border-top: 27px #9cb6c8 solid !important;
  border-bottom: 27px #9cb6c8 solid !important;
}
.rock-blue--bx-27 {
  border-right: 27px #9cb6c8 solid !important;
  border-left: 27px #9cb6c8 solid !important;
}
.rock-blue--ba-28 {
  border: 28px #9cb6c8 solid !important;
}
.rock-blue--bt-28 {
  border-top: 28px #9cb6c8 solid !important;
}
.rock-blue--br-28 {
  border-right: 28px #9cb6c8 solid !important;
}
.rock-blue--bl-28 {
  border-left: 28px #9cb6c8 solid !important;
}
.rock-blue--bb-28 {
  border-bottom: 28px #9cb6c8 solid !important;
}
.rock-blue--by-28 {
  border-top: 28px #9cb6c8 solid !important;
  border-bottom: 28px #9cb6c8 solid !important;
}
.rock-blue--bx-28 {
  border-right: 28px #9cb6c8 solid !important;
  border-left: 28px #9cb6c8 solid !important;
}
.rock-blue--ba-29 {
  border: 29px #9cb6c8 solid !important;
}
.rock-blue--bt-29 {
  border-top: 29px #9cb6c8 solid !important;
}
.rock-blue--br-29 {
  border-right: 29px #9cb6c8 solid !important;
}
.rock-blue--bl-29 {
  border-left: 29px #9cb6c8 solid !important;
}
.rock-blue--bb-29 {
  border-bottom: 29px #9cb6c8 solid !important;
}
.rock-blue--by-29 {
  border-top: 29px #9cb6c8 solid !important;
  border-bottom: 29px #9cb6c8 solid !important;
}
.rock-blue--bx-29 {
  border-right: 29px #9cb6c8 solid !important;
  border-left: 29px #9cb6c8 solid !important;
}
.rock-blue--ba-30 {
  border: 30px #9cb6c8 solid !important;
}
.rock-blue--bt-30 {
  border-top: 30px #9cb6c8 solid !important;
}
.rock-blue--br-30 {
  border-right: 30px #9cb6c8 solid !important;
}
.rock-blue--bl-30 {
  border-left: 30px #9cb6c8 solid !important;
}
.rock-blue--bb-30 {
  border-bottom: 30px #9cb6c8 solid !important;
}
.rock-blue--by-30 {
  border-top: 30px #9cb6c8 solid !important;
  border-bottom: 30px #9cb6c8 solid !important;
}
.rock-blue--bx-30 {
  border-right: 30px #9cb6c8 solid !important;
  border-left: 30px #9cb6c8 solid !important;
}
.rock-blue--ba-31 {
  border: 31px #9cb6c8 solid !important;
}
.rock-blue--bt-31 {
  border-top: 31px #9cb6c8 solid !important;
}
.rock-blue--br-31 {
  border-right: 31px #9cb6c8 solid !important;
}
.rock-blue--bl-31 {
  border-left: 31px #9cb6c8 solid !important;
}
.rock-blue--bb-31 {
  border-bottom: 31px #9cb6c8 solid !important;
}
.rock-blue--by-31 {
  border-top: 31px #9cb6c8 solid !important;
  border-bottom: 31px #9cb6c8 solid !important;
}
.rock-blue--bx-31 {
  border-right: 31px #9cb6c8 solid !important;
  border-left: 31px #9cb6c8 solid !important;
}
.rock-blue--ba-32 {
  border: 32px #9cb6c8 solid !important;
}
.rock-blue--bt-32 {
  border-top: 32px #9cb6c8 solid !important;
}
.rock-blue--br-32 {
  border-right: 32px #9cb6c8 solid !important;
}
.rock-blue--bl-32 {
  border-left: 32px #9cb6c8 solid !important;
}
.rock-blue--bb-32 {
  border-bottom: 32px #9cb6c8 solid !important;
}
.rock-blue--by-32 {
  border-top: 32px #9cb6c8 solid !important;
  border-bottom: 32px #9cb6c8 solid !important;
}
.rock-blue--bx-32 {
  border-right: 32px #9cb6c8 solid !important;
  border-left: 32px #9cb6c8 solid !important;
}
.rock-blue--ba-33 {
  border: 33px #9cb6c8 solid !important;
}
.rock-blue--bt-33 {
  border-top: 33px #9cb6c8 solid !important;
}
.rock-blue--br-33 {
  border-right: 33px #9cb6c8 solid !important;
}
.rock-blue--bl-33 {
  border-left: 33px #9cb6c8 solid !important;
}
.rock-blue--bb-33 {
  border-bottom: 33px #9cb6c8 solid !important;
}
.rock-blue--by-33 {
  border-top: 33px #9cb6c8 solid !important;
  border-bottom: 33px #9cb6c8 solid !important;
}
.rock-blue--bx-33 {
  border-right: 33px #9cb6c8 solid !important;
  border-left: 33px #9cb6c8 solid !important;
}
.rock-blue--ba-34 {
  border: 34px #9cb6c8 solid !important;
}
.rock-blue--bt-34 {
  border-top: 34px #9cb6c8 solid !important;
}
.rock-blue--br-34 {
  border-right: 34px #9cb6c8 solid !important;
}
.rock-blue--bl-34 {
  border-left: 34px #9cb6c8 solid !important;
}
.rock-blue--bb-34 {
  border-bottom: 34px #9cb6c8 solid !important;
}
.rock-blue--by-34 {
  border-top: 34px #9cb6c8 solid !important;
  border-bottom: 34px #9cb6c8 solid !important;
}
.rock-blue--bx-34 {
  border-right: 34px #9cb6c8 solid !important;
  border-left: 34px #9cb6c8 solid !important;
}
.rock-blue--ba-35 {
  border: 35px #9cb6c8 solid !important;
}
.rock-blue--bt-35 {
  border-top: 35px #9cb6c8 solid !important;
}
.rock-blue--br-35 {
  border-right: 35px #9cb6c8 solid !important;
}
.rock-blue--bl-35 {
  border-left: 35px #9cb6c8 solid !important;
}
.rock-blue--bb-35 {
  border-bottom: 35px #9cb6c8 solid !important;
}
.rock-blue--by-35 {
  border-top: 35px #9cb6c8 solid !important;
  border-bottom: 35px #9cb6c8 solid !important;
}
.rock-blue--bx-35 {
  border-right: 35px #9cb6c8 solid !important;
  border-left: 35px #9cb6c8 solid !important;
}
.rock-blue--ba-36 {
  border: 36px #9cb6c8 solid !important;
}
.rock-blue--bt-36 {
  border-top: 36px #9cb6c8 solid !important;
}
.rock-blue--br-36 {
  border-right: 36px #9cb6c8 solid !important;
}
.rock-blue--bl-36 {
  border-left: 36px #9cb6c8 solid !important;
}
.rock-blue--bb-36 {
  border-bottom: 36px #9cb6c8 solid !important;
}
.rock-blue--by-36 {
  border-top: 36px #9cb6c8 solid !important;
  border-bottom: 36px #9cb6c8 solid !important;
}
.rock-blue--bx-36 {
  border-right: 36px #9cb6c8 solid !important;
  border-left: 36px #9cb6c8 solid !important;
}
.rock-blue--ba-37 {
  border: 37px #9cb6c8 solid !important;
}
.rock-blue--bt-37 {
  border-top: 37px #9cb6c8 solid !important;
}
.rock-blue--br-37 {
  border-right: 37px #9cb6c8 solid !important;
}
.rock-blue--bl-37 {
  border-left: 37px #9cb6c8 solid !important;
}
.rock-blue--bb-37 {
  border-bottom: 37px #9cb6c8 solid !important;
}
.rock-blue--by-37 {
  border-top: 37px #9cb6c8 solid !important;
  border-bottom: 37px #9cb6c8 solid !important;
}
.rock-blue--bx-37 {
  border-right: 37px #9cb6c8 solid !important;
  border-left: 37px #9cb6c8 solid !important;
}
.rock-blue--ba-38 {
  border: 38px #9cb6c8 solid !important;
}
.rock-blue--bt-38 {
  border-top: 38px #9cb6c8 solid !important;
}
.rock-blue--br-38 {
  border-right: 38px #9cb6c8 solid !important;
}
.rock-blue--bl-38 {
  border-left: 38px #9cb6c8 solid !important;
}
.rock-blue--bb-38 {
  border-bottom: 38px #9cb6c8 solid !important;
}
.rock-blue--by-38 {
  border-top: 38px #9cb6c8 solid !important;
  border-bottom: 38px #9cb6c8 solid !important;
}
.rock-blue--bx-38 {
  border-right: 38px #9cb6c8 solid !important;
  border-left: 38px #9cb6c8 solid !important;
}
.rock-blue--ba-39 {
  border: 39px #9cb6c8 solid !important;
}
.rock-blue--bt-39 {
  border-top: 39px #9cb6c8 solid !important;
}
.rock-blue--br-39 {
  border-right: 39px #9cb6c8 solid !important;
}
.rock-blue--bl-39 {
  border-left: 39px #9cb6c8 solid !important;
}
.rock-blue--bb-39 {
  border-bottom: 39px #9cb6c8 solid !important;
}
.rock-blue--by-39 {
  border-top: 39px #9cb6c8 solid !important;
  border-bottom: 39px #9cb6c8 solid !important;
}
.rock-blue--bx-39 {
  border-right: 39px #9cb6c8 solid !important;
  border-left: 39px #9cb6c8 solid !important;
}
.rock-blue--ba-40 {
  border: 40px #9cb6c8 solid !important;
}
.rock-blue--bt-40 {
  border-top: 40px #9cb6c8 solid !important;
}
.rock-blue--br-40 {
  border-right: 40px #9cb6c8 solid !important;
}
.rock-blue--bl-40 {
  border-left: 40px #9cb6c8 solid !important;
}
.rock-blue--bb-40 {
  border-bottom: 40px #9cb6c8 solid !important;
}
.rock-blue--by-40 {
  border-top: 40px #9cb6c8 solid !important;
  border-bottom: 40px #9cb6c8 solid !important;
}
.rock-blue--bx-40 {
  border-right: 40px #9cb6c8 solid !important;
  border-left: 40px #9cb6c8 solid !important;
}
.rock-blue--ba-41 {
  border: 41px #9cb6c8 solid !important;
}
.rock-blue--bt-41 {
  border-top: 41px #9cb6c8 solid !important;
}
.rock-blue--br-41 {
  border-right: 41px #9cb6c8 solid !important;
}
.rock-blue--bl-41 {
  border-left: 41px #9cb6c8 solid !important;
}
.rock-blue--bb-41 {
  border-bottom: 41px #9cb6c8 solid !important;
}
.rock-blue--by-41 {
  border-top: 41px #9cb6c8 solid !important;
  border-bottom: 41px #9cb6c8 solid !important;
}
.rock-blue--bx-41 {
  border-right: 41px #9cb6c8 solid !important;
  border-left: 41px #9cb6c8 solid !important;
}
.rock-blue--ba-42 {
  border: 42px #9cb6c8 solid !important;
}
.rock-blue--bt-42 {
  border-top: 42px #9cb6c8 solid !important;
}
.rock-blue--br-42 {
  border-right: 42px #9cb6c8 solid !important;
}
.rock-blue--bl-42 {
  border-left: 42px #9cb6c8 solid !important;
}
.rock-blue--bb-42 {
  border-bottom: 42px #9cb6c8 solid !important;
}
.rock-blue--by-42 {
  border-top: 42px #9cb6c8 solid !important;
  border-bottom: 42px #9cb6c8 solid !important;
}
.rock-blue--bx-42 {
  border-right: 42px #9cb6c8 solid !important;
  border-left: 42px #9cb6c8 solid !important;
}
.rock-blue--ba-43 {
  border: 43px #9cb6c8 solid !important;
}
.rock-blue--bt-43 {
  border-top: 43px #9cb6c8 solid !important;
}
.rock-blue--br-43 {
  border-right: 43px #9cb6c8 solid !important;
}
.rock-blue--bl-43 {
  border-left: 43px #9cb6c8 solid !important;
}
.rock-blue--bb-43 {
  border-bottom: 43px #9cb6c8 solid !important;
}
.rock-blue--by-43 {
  border-top: 43px #9cb6c8 solid !important;
  border-bottom: 43px #9cb6c8 solid !important;
}
.rock-blue--bx-43 {
  border-right: 43px #9cb6c8 solid !important;
  border-left: 43px #9cb6c8 solid !important;
}
.rock-blue--ba-44 {
  border: 44px #9cb6c8 solid !important;
}
.rock-blue--bt-44 {
  border-top: 44px #9cb6c8 solid !important;
}
.rock-blue--br-44 {
  border-right: 44px #9cb6c8 solid !important;
}
.rock-blue--bl-44 {
  border-left: 44px #9cb6c8 solid !important;
}
.rock-blue--bb-44 {
  border-bottom: 44px #9cb6c8 solid !important;
}
.rock-blue--by-44 {
  border-top: 44px #9cb6c8 solid !important;
  border-bottom: 44px #9cb6c8 solid !important;
}
.rock-blue--bx-44 {
  border-right: 44px #9cb6c8 solid !important;
  border-left: 44px #9cb6c8 solid !important;
}
.rock-blue--ba-45 {
  border: 45px #9cb6c8 solid !important;
}
.rock-blue--bt-45 {
  border-top: 45px #9cb6c8 solid !important;
}
.rock-blue--br-45 {
  border-right: 45px #9cb6c8 solid !important;
}
.rock-blue--bl-45 {
  border-left: 45px #9cb6c8 solid !important;
}
.rock-blue--bb-45 {
  border-bottom: 45px #9cb6c8 solid !important;
}
.rock-blue--by-45 {
  border-top: 45px #9cb6c8 solid !important;
  border-bottom: 45px #9cb6c8 solid !important;
}
.rock-blue--bx-45 {
  border-right: 45px #9cb6c8 solid !important;
  border-left: 45px #9cb6c8 solid !important;
}
.rock-blue--ba-46 {
  border: 46px #9cb6c8 solid !important;
}
.rock-blue--bt-46 {
  border-top: 46px #9cb6c8 solid !important;
}
.rock-blue--br-46 {
  border-right: 46px #9cb6c8 solid !important;
}
.rock-blue--bl-46 {
  border-left: 46px #9cb6c8 solid !important;
}
.rock-blue--bb-46 {
  border-bottom: 46px #9cb6c8 solid !important;
}
.rock-blue--by-46 {
  border-top: 46px #9cb6c8 solid !important;
  border-bottom: 46px #9cb6c8 solid !important;
}
.rock-blue--bx-46 {
  border-right: 46px #9cb6c8 solid !important;
  border-left: 46px #9cb6c8 solid !important;
}
.rock-blue--ba-47 {
  border: 47px #9cb6c8 solid !important;
}
.rock-blue--bt-47 {
  border-top: 47px #9cb6c8 solid !important;
}
.rock-blue--br-47 {
  border-right: 47px #9cb6c8 solid !important;
}
.rock-blue--bl-47 {
  border-left: 47px #9cb6c8 solid !important;
}
.rock-blue--bb-47 {
  border-bottom: 47px #9cb6c8 solid !important;
}
.rock-blue--by-47 {
  border-top: 47px #9cb6c8 solid !important;
  border-bottom: 47px #9cb6c8 solid !important;
}
.rock-blue--bx-47 {
  border-right: 47px #9cb6c8 solid !important;
  border-left: 47px #9cb6c8 solid !important;
}
.rock-blue--ba-48 {
  border: 48px #9cb6c8 solid !important;
}
.rock-blue--bt-48 {
  border-top: 48px #9cb6c8 solid !important;
}
.rock-blue--br-48 {
  border-right: 48px #9cb6c8 solid !important;
}
.rock-blue--bl-48 {
  border-left: 48px #9cb6c8 solid !important;
}
.rock-blue--bb-48 {
  border-bottom: 48px #9cb6c8 solid !important;
}
.rock-blue--by-48 {
  border-top: 48px #9cb6c8 solid !important;
  border-bottom: 48px #9cb6c8 solid !important;
}
.rock-blue--bx-48 {
  border-right: 48px #9cb6c8 solid !important;
  border-left: 48px #9cb6c8 solid !important;
}
.rock-blue--ba-49 {
  border: 49px #9cb6c8 solid !important;
}
.rock-blue--bt-49 {
  border-top: 49px #9cb6c8 solid !important;
}
.rock-blue--br-49 {
  border-right: 49px #9cb6c8 solid !important;
}
.rock-blue--bl-49 {
  border-left: 49px #9cb6c8 solid !important;
}
.rock-blue--bb-49 {
  border-bottom: 49px #9cb6c8 solid !important;
}
.rock-blue--by-49 {
  border-top: 49px #9cb6c8 solid !important;
  border-bottom: 49px #9cb6c8 solid !important;
}
.rock-blue--bx-49 {
  border-right: 49px #9cb6c8 solid !important;
  border-left: 49px #9cb6c8 solid !important;
}
.rock-blue--ba-50 {
  border: 50px #9cb6c8 solid !important;
}
.rock-blue--bt-50 {
  border-top: 50px #9cb6c8 solid !important;
}
.rock-blue--br-50 {
  border-right: 50px #9cb6c8 solid !important;
}
.rock-blue--bl-50 {
  border-left: 50px #9cb6c8 solid !important;
}
.rock-blue--bb-50 {
  border-bottom: 50px #9cb6c8 solid !important;
}
.rock-blue--by-50 {
  border-top: 50px #9cb6c8 solid !important;
  border-bottom: 50px #9cb6c8 solid !important;
}
.rock-blue--bx-50 {
  border-right: 50px #9cb6c8 solid !important;
  border-left: 50px #9cb6c8 solid !important;
}
.rock-blue--ba-51 {
  border: 51px #9cb6c8 solid !important;
}
.rock-blue--bt-51 {
  border-top: 51px #9cb6c8 solid !important;
}
.rock-blue--br-51 {
  border-right: 51px #9cb6c8 solid !important;
}
.rock-blue--bl-51 {
  border-left: 51px #9cb6c8 solid !important;
}
.rock-blue--bb-51 {
  border-bottom: 51px #9cb6c8 solid !important;
}
.rock-blue--by-51 {
  border-top: 51px #9cb6c8 solid !important;
  border-bottom: 51px #9cb6c8 solid !important;
}
.rock-blue--bx-51 {
  border-right: 51px #9cb6c8 solid !important;
  border-left: 51px #9cb6c8 solid !important;
}
.rock-blue--ba-52 {
  border: 52px #9cb6c8 solid !important;
}
.rock-blue--bt-52 {
  border-top: 52px #9cb6c8 solid !important;
}
.rock-blue--br-52 {
  border-right: 52px #9cb6c8 solid !important;
}
.rock-blue--bl-52 {
  border-left: 52px #9cb6c8 solid !important;
}
.rock-blue--bb-52 {
  border-bottom: 52px #9cb6c8 solid !important;
}
.rock-blue--by-52 {
  border-top: 52px #9cb6c8 solid !important;
  border-bottom: 52px #9cb6c8 solid !important;
}
.rock-blue--bx-52 {
  border-right: 52px #9cb6c8 solid !important;
  border-left: 52px #9cb6c8 solid !important;
}
.rock-blue--ba-53 {
  border: 53px #9cb6c8 solid !important;
}
.rock-blue--bt-53 {
  border-top: 53px #9cb6c8 solid !important;
}
.rock-blue--br-53 {
  border-right: 53px #9cb6c8 solid !important;
}
.rock-blue--bl-53 {
  border-left: 53px #9cb6c8 solid !important;
}
.rock-blue--bb-53 {
  border-bottom: 53px #9cb6c8 solid !important;
}
.rock-blue--by-53 {
  border-top: 53px #9cb6c8 solid !important;
  border-bottom: 53px #9cb6c8 solid !important;
}
.rock-blue--bx-53 {
  border-right: 53px #9cb6c8 solid !important;
  border-left: 53px #9cb6c8 solid !important;
}
.rock-blue--ba-54 {
  border: 54px #9cb6c8 solid !important;
}
.rock-blue--bt-54 {
  border-top: 54px #9cb6c8 solid !important;
}
.rock-blue--br-54 {
  border-right: 54px #9cb6c8 solid !important;
}
.rock-blue--bl-54 {
  border-left: 54px #9cb6c8 solid !important;
}
.rock-blue--bb-54 {
  border-bottom: 54px #9cb6c8 solid !important;
}
.rock-blue--by-54 {
  border-top: 54px #9cb6c8 solid !important;
  border-bottom: 54px #9cb6c8 solid !important;
}
.rock-blue--bx-54 {
  border-right: 54px #9cb6c8 solid !important;
  border-left: 54px #9cb6c8 solid !important;
}
.rock-blue--ba-55 {
  border: 55px #9cb6c8 solid !important;
}
.rock-blue--bt-55 {
  border-top: 55px #9cb6c8 solid !important;
}
.rock-blue--br-55 {
  border-right: 55px #9cb6c8 solid !important;
}
.rock-blue--bl-55 {
  border-left: 55px #9cb6c8 solid !important;
}
.rock-blue--bb-55 {
  border-bottom: 55px #9cb6c8 solid !important;
}
.rock-blue--by-55 {
  border-top: 55px #9cb6c8 solid !important;
  border-bottom: 55px #9cb6c8 solid !important;
}
.rock-blue--bx-55 {
  border-right: 55px #9cb6c8 solid !important;
  border-left: 55px #9cb6c8 solid !important;
}
.rock-blue--ba-56 {
  border: 56px #9cb6c8 solid !important;
}
.rock-blue--bt-56 {
  border-top: 56px #9cb6c8 solid !important;
}
.rock-blue--br-56 {
  border-right: 56px #9cb6c8 solid !important;
}
.rock-blue--bl-56 {
  border-left: 56px #9cb6c8 solid !important;
}
.rock-blue--bb-56 {
  border-bottom: 56px #9cb6c8 solid !important;
}
.rock-blue--by-56 {
  border-top: 56px #9cb6c8 solid !important;
  border-bottom: 56px #9cb6c8 solid !important;
}
.rock-blue--bx-56 {
  border-right: 56px #9cb6c8 solid !important;
  border-left: 56px #9cb6c8 solid !important;
}
.rock-blue--ba-57 {
  border: 57px #9cb6c8 solid !important;
}
.rock-blue--bt-57 {
  border-top: 57px #9cb6c8 solid !important;
}
.rock-blue--br-57 {
  border-right: 57px #9cb6c8 solid !important;
}
.rock-blue--bl-57 {
  border-left: 57px #9cb6c8 solid !important;
}
.rock-blue--bb-57 {
  border-bottom: 57px #9cb6c8 solid !important;
}
.rock-blue--by-57 {
  border-top: 57px #9cb6c8 solid !important;
  border-bottom: 57px #9cb6c8 solid !important;
}
.rock-blue--bx-57 {
  border-right: 57px #9cb6c8 solid !important;
  border-left: 57px #9cb6c8 solid !important;
}
.rock-blue--ba-58 {
  border: 58px #9cb6c8 solid !important;
}
.rock-blue--bt-58 {
  border-top: 58px #9cb6c8 solid !important;
}
.rock-blue--br-58 {
  border-right: 58px #9cb6c8 solid !important;
}
.rock-blue--bl-58 {
  border-left: 58px #9cb6c8 solid !important;
}
.rock-blue--bb-58 {
  border-bottom: 58px #9cb6c8 solid !important;
}
.rock-blue--by-58 {
  border-top: 58px #9cb6c8 solid !important;
  border-bottom: 58px #9cb6c8 solid !important;
}
.rock-blue--bx-58 {
  border-right: 58px #9cb6c8 solid !important;
  border-left: 58px #9cb6c8 solid !important;
}
.rock-blue--ba-59 {
  border: 59px #9cb6c8 solid !important;
}
.rock-blue--bt-59 {
  border-top: 59px #9cb6c8 solid !important;
}
.rock-blue--br-59 {
  border-right: 59px #9cb6c8 solid !important;
}
.rock-blue--bl-59 {
  border-left: 59px #9cb6c8 solid !important;
}
.rock-blue--bb-59 {
  border-bottom: 59px #9cb6c8 solid !important;
}
.rock-blue--by-59 {
  border-top: 59px #9cb6c8 solid !important;
  border-bottom: 59px #9cb6c8 solid !important;
}
.rock-blue--bx-59 {
  border-right: 59px #9cb6c8 solid !important;
  border-left: 59px #9cb6c8 solid !important;
}
.rock-blue--ba-60 {
  border: 60px #9cb6c8 solid !important;
}
.rock-blue--bt-60 {
  border-top: 60px #9cb6c8 solid !important;
}
.rock-blue--br-60 {
  border-right: 60px #9cb6c8 solid !important;
}
.rock-blue--bl-60 {
  border-left: 60px #9cb6c8 solid !important;
}
.rock-blue--bb-60 {
  border-bottom: 60px #9cb6c8 solid !important;
}
.rock-blue--by-60 {
  border-top: 60px #9cb6c8 solid !important;
  border-bottom: 60px #9cb6c8 solid !important;
}
.rock-blue--bx-60 {
  border-right: 60px #9cb6c8 solid !important;
  border-left: 60px #9cb6c8 solid !important;
}
.rock-blue--ba-61 {
  border: 61px #9cb6c8 solid !important;
}
.rock-blue--bt-61 {
  border-top: 61px #9cb6c8 solid !important;
}
.rock-blue--br-61 {
  border-right: 61px #9cb6c8 solid !important;
}
.rock-blue--bl-61 {
  border-left: 61px #9cb6c8 solid !important;
}
.rock-blue--bb-61 {
  border-bottom: 61px #9cb6c8 solid !important;
}
.rock-blue--by-61 {
  border-top: 61px #9cb6c8 solid !important;
  border-bottom: 61px #9cb6c8 solid !important;
}
.rock-blue--bx-61 {
  border-right: 61px #9cb6c8 solid !important;
  border-left: 61px #9cb6c8 solid !important;
}
.rock-blue--ba-62 {
  border: 62px #9cb6c8 solid !important;
}
.rock-blue--bt-62 {
  border-top: 62px #9cb6c8 solid !important;
}
.rock-blue--br-62 {
  border-right: 62px #9cb6c8 solid !important;
}
.rock-blue--bl-62 {
  border-left: 62px #9cb6c8 solid !important;
}
.rock-blue--bb-62 {
  border-bottom: 62px #9cb6c8 solid !important;
}
.rock-blue--by-62 {
  border-top: 62px #9cb6c8 solid !important;
  border-bottom: 62px #9cb6c8 solid !important;
}
.rock-blue--bx-62 {
  border-right: 62px #9cb6c8 solid !important;
  border-left: 62px #9cb6c8 solid !important;
}
.rock-blue--ba-63 {
  border: 63px #9cb6c8 solid !important;
}
.rock-blue--bt-63 {
  border-top: 63px #9cb6c8 solid !important;
}
.rock-blue--br-63 {
  border-right: 63px #9cb6c8 solid !important;
}
.rock-blue--bl-63 {
  border-left: 63px #9cb6c8 solid !important;
}
.rock-blue--bb-63 {
  border-bottom: 63px #9cb6c8 solid !important;
}
.rock-blue--by-63 {
  border-top: 63px #9cb6c8 solid !important;
  border-bottom: 63px #9cb6c8 solid !important;
}
.rock-blue--bx-63 {
  border-right: 63px #9cb6c8 solid !important;
  border-left: 63px #9cb6c8 solid !important;
}
.rock-blue--ba-64 {
  border: 64px #9cb6c8 solid !important;
}
.rock-blue--bt-64 {
  border-top: 64px #9cb6c8 solid !important;
}
.rock-blue--br-64 {
  border-right: 64px #9cb6c8 solid !important;
}
.rock-blue--bl-64 {
  border-left: 64px #9cb6c8 solid !important;
}
.rock-blue--bb-64 {
  border-bottom: 64px #9cb6c8 solid !important;
}
.rock-blue--by-64 {
  border-top: 64px #9cb6c8 solid !important;
  border-bottom: 64px #9cb6c8 solid !important;
}
.rock-blue--bx-64 {
  border-right: 64px #9cb6c8 solid !important;
  border-left: 64px #9cb6c8 solid !important;
}
.rock-blue--ba-65 {
  border: 65px #9cb6c8 solid !important;
}
.rock-blue--bt-65 {
  border-top: 65px #9cb6c8 solid !important;
}
.rock-blue--br-65 {
  border-right: 65px #9cb6c8 solid !important;
}
.rock-blue--bl-65 {
  border-left: 65px #9cb6c8 solid !important;
}
.rock-blue--bb-65 {
  border-bottom: 65px #9cb6c8 solid !important;
}
.rock-blue--by-65 {
  border-top: 65px #9cb6c8 solid !important;
  border-bottom: 65px #9cb6c8 solid !important;
}
.rock-blue--bx-65 {
  border-right: 65px #9cb6c8 solid !important;
  border-left: 65px #9cb6c8 solid !important;
}
.rock-blue--ba-66 {
  border: 66px #9cb6c8 solid !important;
}
.rock-blue--bt-66 {
  border-top: 66px #9cb6c8 solid !important;
}
.rock-blue--br-66 {
  border-right: 66px #9cb6c8 solid !important;
}
.rock-blue--bl-66 {
  border-left: 66px #9cb6c8 solid !important;
}
.rock-blue--bb-66 {
  border-bottom: 66px #9cb6c8 solid !important;
}
.rock-blue--by-66 {
  border-top: 66px #9cb6c8 solid !important;
  border-bottom: 66px #9cb6c8 solid !important;
}
.rock-blue--bx-66 {
  border-right: 66px #9cb6c8 solid !important;
  border-left: 66px #9cb6c8 solid !important;
}
.rock-blue--ba-67 {
  border: 67px #9cb6c8 solid !important;
}
.rock-blue--bt-67 {
  border-top: 67px #9cb6c8 solid !important;
}
.rock-blue--br-67 {
  border-right: 67px #9cb6c8 solid !important;
}
.rock-blue--bl-67 {
  border-left: 67px #9cb6c8 solid !important;
}
.rock-blue--bb-67 {
  border-bottom: 67px #9cb6c8 solid !important;
}
.rock-blue--by-67 {
  border-top: 67px #9cb6c8 solid !important;
  border-bottom: 67px #9cb6c8 solid !important;
}
.rock-blue--bx-67 {
  border-right: 67px #9cb6c8 solid !important;
  border-left: 67px #9cb6c8 solid !important;
}
.rock-blue--ba-68 {
  border: 68px #9cb6c8 solid !important;
}
.rock-blue--bt-68 {
  border-top: 68px #9cb6c8 solid !important;
}
.rock-blue--br-68 {
  border-right: 68px #9cb6c8 solid !important;
}
.rock-blue--bl-68 {
  border-left: 68px #9cb6c8 solid !important;
}
.rock-blue--bb-68 {
  border-bottom: 68px #9cb6c8 solid !important;
}
.rock-blue--by-68 {
  border-top: 68px #9cb6c8 solid !important;
  border-bottom: 68px #9cb6c8 solid !important;
}
.rock-blue--bx-68 {
  border-right: 68px #9cb6c8 solid !important;
  border-left: 68px #9cb6c8 solid !important;
}
.rock-blue--ba-69 {
  border: 69px #9cb6c8 solid !important;
}
.rock-blue--bt-69 {
  border-top: 69px #9cb6c8 solid !important;
}
.rock-blue--br-69 {
  border-right: 69px #9cb6c8 solid !important;
}
.rock-blue--bl-69 {
  border-left: 69px #9cb6c8 solid !important;
}
.rock-blue--bb-69 {
  border-bottom: 69px #9cb6c8 solid !important;
}
.rock-blue--by-69 {
  border-top: 69px #9cb6c8 solid !important;
  border-bottom: 69px #9cb6c8 solid !important;
}
.rock-blue--bx-69 {
  border-right: 69px #9cb6c8 solid !important;
  border-left: 69px #9cb6c8 solid !important;
}
.rock-blue--ba-70 {
  border: 70px #9cb6c8 solid !important;
}
.rock-blue--bt-70 {
  border-top: 70px #9cb6c8 solid !important;
}
.rock-blue--br-70 {
  border-right: 70px #9cb6c8 solid !important;
}
.rock-blue--bl-70 {
  border-left: 70px #9cb6c8 solid !important;
}
.rock-blue--bb-70 {
  border-bottom: 70px #9cb6c8 solid !important;
}
.rock-blue--by-70 {
  border-top: 70px #9cb6c8 solid !important;
  border-bottom: 70px #9cb6c8 solid !important;
}
.rock-blue--bx-70 {
  border-right: 70px #9cb6c8 solid !important;
  border-left: 70px #9cb6c8 solid !important;
}
.rock-blue--ba-71 {
  border: 71px #9cb6c8 solid !important;
}
.rock-blue--bt-71 {
  border-top: 71px #9cb6c8 solid !important;
}
.rock-blue--br-71 {
  border-right: 71px #9cb6c8 solid !important;
}
.rock-blue--bl-71 {
  border-left: 71px #9cb6c8 solid !important;
}
.rock-blue--bb-71 {
  border-bottom: 71px #9cb6c8 solid !important;
}
.rock-blue--by-71 {
  border-top: 71px #9cb6c8 solid !important;
  border-bottom: 71px #9cb6c8 solid !important;
}
.rock-blue--bx-71 {
  border-right: 71px #9cb6c8 solid !important;
  border-left: 71px #9cb6c8 solid !important;
}
.rock-blue--ba-72 {
  border: 72px #9cb6c8 solid !important;
}
.rock-blue--bt-72 {
  border-top: 72px #9cb6c8 solid !important;
}
.rock-blue--br-72 {
  border-right: 72px #9cb6c8 solid !important;
}
.rock-blue--bl-72 {
  border-left: 72px #9cb6c8 solid !important;
}
.rock-blue--bb-72 {
  border-bottom: 72px #9cb6c8 solid !important;
}
.rock-blue--by-72 {
  border-top: 72px #9cb6c8 solid !important;
  border-bottom: 72px #9cb6c8 solid !important;
}
.rock-blue--bx-72 {
  border-right: 72px #9cb6c8 solid !important;
  border-left: 72px #9cb6c8 solid !important;
}
.rock-blue--ba-73 {
  border: 73px #9cb6c8 solid !important;
}
.rock-blue--bt-73 {
  border-top: 73px #9cb6c8 solid !important;
}
.rock-blue--br-73 {
  border-right: 73px #9cb6c8 solid !important;
}
.rock-blue--bl-73 {
  border-left: 73px #9cb6c8 solid !important;
}
.rock-blue--bb-73 {
  border-bottom: 73px #9cb6c8 solid !important;
}
.rock-blue--by-73 {
  border-top: 73px #9cb6c8 solid !important;
  border-bottom: 73px #9cb6c8 solid !important;
}
.rock-blue--bx-73 {
  border-right: 73px #9cb6c8 solid !important;
  border-left: 73px #9cb6c8 solid !important;
}
.rock-blue--ba-74 {
  border: 74px #9cb6c8 solid !important;
}
.rock-blue--bt-74 {
  border-top: 74px #9cb6c8 solid !important;
}
.rock-blue--br-74 {
  border-right: 74px #9cb6c8 solid !important;
}
.rock-blue--bl-74 {
  border-left: 74px #9cb6c8 solid !important;
}
.rock-blue--bb-74 {
  border-bottom: 74px #9cb6c8 solid !important;
}
.rock-blue--by-74 {
  border-top: 74px #9cb6c8 solid !important;
  border-bottom: 74px #9cb6c8 solid !important;
}
.rock-blue--bx-74 {
  border-right: 74px #9cb6c8 solid !important;
  border-left: 74px #9cb6c8 solid !important;
}
.rock-blue--ba-75 {
  border: 75px #9cb6c8 solid !important;
}
.rock-blue--bt-75 {
  border-top: 75px #9cb6c8 solid !important;
}
.rock-blue--br-75 {
  border-right: 75px #9cb6c8 solid !important;
}
.rock-blue--bl-75 {
  border-left: 75px #9cb6c8 solid !important;
}
.rock-blue--bb-75 {
  border-bottom: 75px #9cb6c8 solid !important;
}
.rock-blue--by-75 {
  border-top: 75px #9cb6c8 solid !important;
  border-bottom: 75px #9cb6c8 solid !important;
}
.rock-blue--bx-75 {
  border-right: 75px #9cb6c8 solid !important;
  border-left: 75px #9cb6c8 solid !important;
}
.rock-blue--ba-76 {
  border: 76px #9cb6c8 solid !important;
}
.rock-blue--bt-76 {
  border-top: 76px #9cb6c8 solid !important;
}
.rock-blue--br-76 {
  border-right: 76px #9cb6c8 solid !important;
}
.rock-blue--bl-76 {
  border-left: 76px #9cb6c8 solid !important;
}
.rock-blue--bb-76 {
  border-bottom: 76px #9cb6c8 solid !important;
}
.rock-blue--by-76 {
  border-top: 76px #9cb6c8 solid !important;
  border-bottom: 76px #9cb6c8 solid !important;
}
.rock-blue--bx-76 {
  border-right: 76px #9cb6c8 solid !important;
  border-left: 76px #9cb6c8 solid !important;
}
.rock-blue--ba-77 {
  border: 77px #9cb6c8 solid !important;
}
.rock-blue--bt-77 {
  border-top: 77px #9cb6c8 solid !important;
}
.rock-blue--br-77 {
  border-right: 77px #9cb6c8 solid !important;
}
.rock-blue--bl-77 {
  border-left: 77px #9cb6c8 solid !important;
}
.rock-blue--bb-77 {
  border-bottom: 77px #9cb6c8 solid !important;
}
.rock-blue--by-77 {
  border-top: 77px #9cb6c8 solid !important;
  border-bottom: 77px #9cb6c8 solid !important;
}
.rock-blue--bx-77 {
  border-right: 77px #9cb6c8 solid !important;
  border-left: 77px #9cb6c8 solid !important;
}
.rock-blue--ba-78 {
  border: 78px #9cb6c8 solid !important;
}
.rock-blue--bt-78 {
  border-top: 78px #9cb6c8 solid !important;
}
.rock-blue--br-78 {
  border-right: 78px #9cb6c8 solid !important;
}
.rock-blue--bl-78 {
  border-left: 78px #9cb6c8 solid !important;
}
.rock-blue--bb-78 {
  border-bottom: 78px #9cb6c8 solid !important;
}
.rock-blue--by-78 {
  border-top: 78px #9cb6c8 solid !important;
  border-bottom: 78px #9cb6c8 solid !important;
}
.rock-blue--bx-78 {
  border-right: 78px #9cb6c8 solid !important;
  border-left: 78px #9cb6c8 solid !important;
}
.rock-blue--ba-79 {
  border: 79px #9cb6c8 solid !important;
}
.rock-blue--bt-79 {
  border-top: 79px #9cb6c8 solid !important;
}
.rock-blue--br-79 {
  border-right: 79px #9cb6c8 solid !important;
}
.rock-blue--bl-79 {
  border-left: 79px #9cb6c8 solid !important;
}
.rock-blue--bb-79 {
  border-bottom: 79px #9cb6c8 solid !important;
}
.rock-blue--by-79 {
  border-top: 79px #9cb6c8 solid !important;
  border-bottom: 79px #9cb6c8 solid !important;
}
.rock-blue--bx-79 {
  border-right: 79px #9cb6c8 solid !important;
  border-left: 79px #9cb6c8 solid !important;
}
.rock-blue--ba-80 {
  border: 80px #9cb6c8 solid !important;
}
.rock-blue--bt-80 {
  border-top: 80px #9cb6c8 solid !important;
}
.rock-blue--br-80 {
  border-right: 80px #9cb6c8 solid !important;
}
.rock-blue--bl-80 {
  border-left: 80px #9cb6c8 solid !important;
}
.rock-blue--bb-80 {
  border-bottom: 80px #9cb6c8 solid !important;
}
.rock-blue--by-80 {
  border-top: 80px #9cb6c8 solid !important;
  border-bottom: 80px #9cb6c8 solid !important;
}
.rock-blue--bx-80 {
  border-right: 80px #9cb6c8 solid !important;
  border-left: 80px #9cb6c8 solid !important;
}
.rock-blue--ba-81 {
  border: 81px #9cb6c8 solid !important;
}
.rock-blue--bt-81 {
  border-top: 81px #9cb6c8 solid !important;
}
.rock-blue--br-81 {
  border-right: 81px #9cb6c8 solid !important;
}
.rock-blue--bl-81 {
  border-left: 81px #9cb6c8 solid !important;
}
.rock-blue--bb-81 {
  border-bottom: 81px #9cb6c8 solid !important;
}
.rock-blue--by-81 {
  border-top: 81px #9cb6c8 solid !important;
  border-bottom: 81px #9cb6c8 solid !important;
}
.rock-blue--bx-81 {
  border-right: 81px #9cb6c8 solid !important;
  border-left: 81px #9cb6c8 solid !important;
}
.rock-blue--ba-82 {
  border: 82px #9cb6c8 solid !important;
}
.rock-blue--bt-82 {
  border-top: 82px #9cb6c8 solid !important;
}
.rock-blue--br-82 {
  border-right: 82px #9cb6c8 solid !important;
}
.rock-blue--bl-82 {
  border-left: 82px #9cb6c8 solid !important;
}
.rock-blue--bb-82 {
  border-bottom: 82px #9cb6c8 solid !important;
}
.rock-blue--by-82 {
  border-top: 82px #9cb6c8 solid !important;
  border-bottom: 82px #9cb6c8 solid !important;
}
.rock-blue--bx-82 {
  border-right: 82px #9cb6c8 solid !important;
  border-left: 82px #9cb6c8 solid !important;
}
.rock-blue--ba-83 {
  border: 83px #9cb6c8 solid !important;
}
.rock-blue--bt-83 {
  border-top: 83px #9cb6c8 solid !important;
}
.rock-blue--br-83 {
  border-right: 83px #9cb6c8 solid !important;
}
.rock-blue--bl-83 {
  border-left: 83px #9cb6c8 solid !important;
}
.rock-blue--bb-83 {
  border-bottom: 83px #9cb6c8 solid !important;
}
.rock-blue--by-83 {
  border-top: 83px #9cb6c8 solid !important;
  border-bottom: 83px #9cb6c8 solid !important;
}
.rock-blue--bx-83 {
  border-right: 83px #9cb6c8 solid !important;
  border-left: 83px #9cb6c8 solid !important;
}
.rock-blue--ba-84 {
  border: 84px #9cb6c8 solid !important;
}
.rock-blue--bt-84 {
  border-top: 84px #9cb6c8 solid !important;
}
.rock-blue--br-84 {
  border-right: 84px #9cb6c8 solid !important;
}
.rock-blue--bl-84 {
  border-left: 84px #9cb6c8 solid !important;
}
.rock-blue--bb-84 {
  border-bottom: 84px #9cb6c8 solid !important;
}
.rock-blue--by-84 {
  border-top: 84px #9cb6c8 solid !important;
  border-bottom: 84px #9cb6c8 solid !important;
}
.rock-blue--bx-84 {
  border-right: 84px #9cb6c8 solid !important;
  border-left: 84px #9cb6c8 solid !important;
}
.rock-blue--ba-85 {
  border: 85px #9cb6c8 solid !important;
}
.rock-blue--bt-85 {
  border-top: 85px #9cb6c8 solid !important;
}
.rock-blue--br-85 {
  border-right: 85px #9cb6c8 solid !important;
}
.rock-blue--bl-85 {
  border-left: 85px #9cb6c8 solid !important;
}
.rock-blue--bb-85 {
  border-bottom: 85px #9cb6c8 solid !important;
}
.rock-blue--by-85 {
  border-top: 85px #9cb6c8 solid !important;
  border-bottom: 85px #9cb6c8 solid !important;
}
.rock-blue--bx-85 {
  border-right: 85px #9cb6c8 solid !important;
  border-left: 85px #9cb6c8 solid !important;
}
.rock-blue--ba-86 {
  border: 86px #9cb6c8 solid !important;
}
.rock-blue--bt-86 {
  border-top: 86px #9cb6c8 solid !important;
}
.rock-blue--br-86 {
  border-right: 86px #9cb6c8 solid !important;
}
.rock-blue--bl-86 {
  border-left: 86px #9cb6c8 solid !important;
}
.rock-blue--bb-86 {
  border-bottom: 86px #9cb6c8 solid !important;
}
.rock-blue--by-86 {
  border-top: 86px #9cb6c8 solid !important;
  border-bottom: 86px #9cb6c8 solid !important;
}
.rock-blue--bx-86 {
  border-right: 86px #9cb6c8 solid !important;
  border-left: 86px #9cb6c8 solid !important;
}
.rock-blue--ba-87 {
  border: 87px #9cb6c8 solid !important;
}
.rock-blue--bt-87 {
  border-top: 87px #9cb6c8 solid !important;
}
.rock-blue--br-87 {
  border-right: 87px #9cb6c8 solid !important;
}
.rock-blue--bl-87 {
  border-left: 87px #9cb6c8 solid !important;
}
.rock-blue--bb-87 {
  border-bottom: 87px #9cb6c8 solid !important;
}
.rock-blue--by-87 {
  border-top: 87px #9cb6c8 solid !important;
  border-bottom: 87px #9cb6c8 solid !important;
}
.rock-blue--bx-87 {
  border-right: 87px #9cb6c8 solid !important;
  border-left: 87px #9cb6c8 solid !important;
}
.rock-blue--ba-88 {
  border: 88px #9cb6c8 solid !important;
}
.rock-blue--bt-88 {
  border-top: 88px #9cb6c8 solid !important;
}
.rock-blue--br-88 {
  border-right: 88px #9cb6c8 solid !important;
}
.rock-blue--bl-88 {
  border-left: 88px #9cb6c8 solid !important;
}
.rock-blue--bb-88 {
  border-bottom: 88px #9cb6c8 solid !important;
}
.rock-blue--by-88 {
  border-top: 88px #9cb6c8 solid !important;
  border-bottom: 88px #9cb6c8 solid !important;
}
.rock-blue--bx-88 {
  border-right: 88px #9cb6c8 solid !important;
  border-left: 88px #9cb6c8 solid !important;
}
.rock-blue--ba-89 {
  border: 89px #9cb6c8 solid !important;
}
.rock-blue--bt-89 {
  border-top: 89px #9cb6c8 solid !important;
}
.rock-blue--br-89 {
  border-right: 89px #9cb6c8 solid !important;
}
.rock-blue--bl-89 {
  border-left: 89px #9cb6c8 solid !important;
}
.rock-blue--bb-89 {
  border-bottom: 89px #9cb6c8 solid !important;
}
.rock-blue--by-89 {
  border-top: 89px #9cb6c8 solid !important;
  border-bottom: 89px #9cb6c8 solid !important;
}
.rock-blue--bx-89 {
  border-right: 89px #9cb6c8 solid !important;
  border-left: 89px #9cb6c8 solid !important;
}
.rock-blue--ba-90 {
  border: 90px #9cb6c8 solid !important;
}
.rock-blue--bt-90 {
  border-top: 90px #9cb6c8 solid !important;
}
.rock-blue--br-90 {
  border-right: 90px #9cb6c8 solid !important;
}
.rock-blue--bl-90 {
  border-left: 90px #9cb6c8 solid !important;
}
.rock-blue--bb-90 {
  border-bottom: 90px #9cb6c8 solid !important;
}
.rock-blue--by-90 {
  border-top: 90px #9cb6c8 solid !important;
  border-bottom: 90px #9cb6c8 solid !important;
}
.rock-blue--bx-90 {
  border-right: 90px #9cb6c8 solid !important;
  border-left: 90px #9cb6c8 solid !important;
}
.rock-blue--ba-91 {
  border: 91px #9cb6c8 solid !important;
}
.rock-blue--bt-91 {
  border-top: 91px #9cb6c8 solid !important;
}
.rock-blue--br-91 {
  border-right: 91px #9cb6c8 solid !important;
}
.rock-blue--bl-91 {
  border-left: 91px #9cb6c8 solid !important;
}
.rock-blue--bb-91 {
  border-bottom: 91px #9cb6c8 solid !important;
}
.rock-blue--by-91 {
  border-top: 91px #9cb6c8 solid !important;
  border-bottom: 91px #9cb6c8 solid !important;
}
.rock-blue--bx-91 {
  border-right: 91px #9cb6c8 solid !important;
  border-left: 91px #9cb6c8 solid !important;
}
.rock-blue--ba-92 {
  border: 92px #9cb6c8 solid !important;
}
.rock-blue--bt-92 {
  border-top: 92px #9cb6c8 solid !important;
}
.rock-blue--br-92 {
  border-right: 92px #9cb6c8 solid !important;
}
.rock-blue--bl-92 {
  border-left: 92px #9cb6c8 solid !important;
}
.rock-blue--bb-92 {
  border-bottom: 92px #9cb6c8 solid !important;
}
.rock-blue--by-92 {
  border-top: 92px #9cb6c8 solid !important;
  border-bottom: 92px #9cb6c8 solid !important;
}
.rock-blue--bx-92 {
  border-right: 92px #9cb6c8 solid !important;
  border-left: 92px #9cb6c8 solid !important;
}
.rock-blue--ba-93 {
  border: 93px #9cb6c8 solid !important;
}
.rock-blue--bt-93 {
  border-top: 93px #9cb6c8 solid !important;
}
.rock-blue--br-93 {
  border-right: 93px #9cb6c8 solid !important;
}
.rock-blue--bl-93 {
  border-left: 93px #9cb6c8 solid !important;
}
.rock-blue--bb-93 {
  border-bottom: 93px #9cb6c8 solid !important;
}
.rock-blue--by-93 {
  border-top: 93px #9cb6c8 solid !important;
  border-bottom: 93px #9cb6c8 solid !important;
}
.rock-blue--bx-93 {
  border-right: 93px #9cb6c8 solid !important;
  border-left: 93px #9cb6c8 solid !important;
}
.rock-blue--ba-94 {
  border: 94px #9cb6c8 solid !important;
}
.rock-blue--bt-94 {
  border-top: 94px #9cb6c8 solid !important;
}
.rock-blue--br-94 {
  border-right: 94px #9cb6c8 solid !important;
}
.rock-blue--bl-94 {
  border-left: 94px #9cb6c8 solid !important;
}
.rock-blue--bb-94 {
  border-bottom: 94px #9cb6c8 solid !important;
}
.rock-blue--by-94 {
  border-top: 94px #9cb6c8 solid !important;
  border-bottom: 94px #9cb6c8 solid !important;
}
.rock-blue--bx-94 {
  border-right: 94px #9cb6c8 solid !important;
  border-left: 94px #9cb6c8 solid !important;
}
.rock-blue--ba-95 {
  border: 95px #9cb6c8 solid !important;
}
.rock-blue--bt-95 {
  border-top: 95px #9cb6c8 solid !important;
}
.rock-blue--br-95 {
  border-right: 95px #9cb6c8 solid !important;
}
.rock-blue--bl-95 {
  border-left: 95px #9cb6c8 solid !important;
}
.rock-blue--bb-95 {
  border-bottom: 95px #9cb6c8 solid !important;
}
.rock-blue--by-95 {
  border-top: 95px #9cb6c8 solid !important;
  border-bottom: 95px #9cb6c8 solid !important;
}
.rock-blue--bx-95 {
  border-right: 95px #9cb6c8 solid !important;
  border-left: 95px #9cb6c8 solid !important;
}
.rock-blue--ba-96 {
  border: 96px #9cb6c8 solid !important;
}
.rock-blue--bt-96 {
  border-top: 96px #9cb6c8 solid !important;
}
.rock-blue--br-96 {
  border-right: 96px #9cb6c8 solid !important;
}
.rock-blue--bl-96 {
  border-left: 96px #9cb6c8 solid !important;
}
.rock-blue--bb-96 {
  border-bottom: 96px #9cb6c8 solid !important;
}
.rock-blue--by-96 {
  border-top: 96px #9cb6c8 solid !important;
  border-bottom: 96px #9cb6c8 solid !important;
}
.rock-blue--bx-96 {
  border-right: 96px #9cb6c8 solid !important;
  border-left: 96px #9cb6c8 solid !important;
}
.rock-blue--ba-97 {
  border: 97px #9cb6c8 solid !important;
}
.rock-blue--bt-97 {
  border-top: 97px #9cb6c8 solid !important;
}
.rock-blue--br-97 {
  border-right: 97px #9cb6c8 solid !important;
}
.rock-blue--bl-97 {
  border-left: 97px #9cb6c8 solid !important;
}
.rock-blue--bb-97 {
  border-bottom: 97px #9cb6c8 solid !important;
}
.rock-blue--by-97 {
  border-top: 97px #9cb6c8 solid !important;
  border-bottom: 97px #9cb6c8 solid !important;
}
.rock-blue--bx-97 {
  border-right: 97px #9cb6c8 solid !important;
  border-left: 97px #9cb6c8 solid !important;
}
.rock-blue--ba-98 {
  border: 98px #9cb6c8 solid !important;
}
.rock-blue--bt-98 {
  border-top: 98px #9cb6c8 solid !important;
}
.rock-blue--br-98 {
  border-right: 98px #9cb6c8 solid !important;
}
.rock-blue--bl-98 {
  border-left: 98px #9cb6c8 solid !important;
}
.rock-blue--bb-98 {
  border-bottom: 98px #9cb6c8 solid !important;
}
.rock-blue--by-98 {
  border-top: 98px #9cb6c8 solid !important;
  border-bottom: 98px #9cb6c8 solid !important;
}
.rock-blue--bx-98 {
  border-right: 98px #9cb6c8 solid !important;
  border-left: 98px #9cb6c8 solid !important;
}
.rock-blue--ba-99 {
  border: 99px #9cb6c8 solid !important;
}
.rock-blue--bt-99 {
  border-top: 99px #9cb6c8 solid !important;
}
.rock-blue--br-99 {
  border-right: 99px #9cb6c8 solid !important;
}
.rock-blue--bl-99 {
  border-left: 99px #9cb6c8 solid !important;
}
.rock-blue--bb-99 {
  border-bottom: 99px #9cb6c8 solid !important;
}
.rock-blue--by-99 {
  border-top: 99px #9cb6c8 solid !important;
  border-bottom: 99px #9cb6c8 solid !important;
}
.rock-blue--bx-99 {
  border-right: 99px #9cb6c8 solid !important;
  border-left: 99px #9cb6c8 solid !important;
}
.rock-blue--ba-100 {
  border: 100px #9cb6c8 solid !important;
}
.rock-blue--bt-100 {
  border-top: 100px #9cb6c8 solid !important;
}
.rock-blue--br-100 {
  border-right: 100px #9cb6c8 solid !important;
}
.rock-blue--bl-100 {
  border-left: 100px #9cb6c8 solid !important;
}
.rock-blue--bb-100 {
  border-bottom: 100px #9cb6c8 solid !important;
}
.rock-blue--by-100 {
  border-top: 100px #9cb6c8 solid !important;
  border-bottom: 100px #9cb6c8 solid !important;
}
.rock-blue--bx-100 {
  border-right: 100px #9cb6c8 solid !important;
  border-left: 100px #9cb6c8 solid !important;
}
.botticelli--ba-1 {
  border: 1px #cad5e3 solid !important;
}
.botticelli--bt-1 {
  border-top: 1px #cad5e3 solid !important;
}
.botticelli--br-1 {
  border-right: 1px #cad5e3 solid !important;
}
.botticelli--bl-1 {
  border-left: 1px #cad5e3 solid !important;
}
.botticelli--bb-1 {
  border-bottom: 1px #cad5e3 solid !important;
}
.botticelli--by-1 {
  border-top: 1px #cad5e3 solid !important;
  border-bottom: 1px #cad5e3 solid !important;
}
.botticelli--bx-1 {
  border-right: 1px #cad5e3 solid !important;
  border-left: 1px #cad5e3 solid !important;
}
.botticelli--ba-2 {
  border: 2px #cad5e3 solid !important;
}
.botticelli--bt-2 {
  border-top: 2px #cad5e3 solid !important;
}
.botticelli--br-2 {
  border-right: 2px #cad5e3 solid !important;
}
.botticelli--bl-2 {
  border-left: 2px #cad5e3 solid !important;
}
.botticelli--bb-2 {
  border-bottom: 2px #cad5e3 solid !important;
}
.botticelli--by-2 {
  border-top: 2px #cad5e3 solid !important;
  border-bottom: 2px #cad5e3 solid !important;
}
.botticelli--bx-2 {
  border-right: 2px #cad5e3 solid !important;
  border-left: 2px #cad5e3 solid !important;
}
.botticelli--ba-3 {
  border: 3px #cad5e3 solid !important;
}
.botticelli--bt-3 {
  border-top: 3px #cad5e3 solid !important;
}
.botticelli--br-3 {
  border-right: 3px #cad5e3 solid !important;
}
.botticelli--bl-3 {
  border-left: 3px #cad5e3 solid !important;
}
.botticelli--bb-3 {
  border-bottom: 3px #cad5e3 solid !important;
}
.botticelli--by-3 {
  border-top: 3px #cad5e3 solid !important;
  border-bottom: 3px #cad5e3 solid !important;
}
.botticelli--bx-3 {
  border-right: 3px #cad5e3 solid !important;
  border-left: 3px #cad5e3 solid !important;
}
.botticelli--ba-4 {
  border: 4px #cad5e3 solid !important;
}
.botticelli--bt-4 {
  border-top: 4px #cad5e3 solid !important;
}
.botticelli--br-4 {
  border-right: 4px #cad5e3 solid !important;
}
.botticelli--bl-4 {
  border-left: 4px #cad5e3 solid !important;
}
.botticelli--bb-4 {
  border-bottom: 4px #cad5e3 solid !important;
}
.botticelli--by-4 {
  border-top: 4px #cad5e3 solid !important;
  border-bottom: 4px #cad5e3 solid !important;
}
.botticelli--bx-4 {
  border-right: 4px #cad5e3 solid !important;
  border-left: 4px #cad5e3 solid !important;
}
.botticelli--ba-5 {
  border: 5px #cad5e3 solid !important;
}
.botticelli--bt-5 {
  border-top: 5px #cad5e3 solid !important;
}
.botticelli--br-5 {
  border-right: 5px #cad5e3 solid !important;
}
.botticelli--bl-5 {
  border-left: 5px #cad5e3 solid !important;
}
.botticelli--bb-5 {
  border-bottom: 5px #cad5e3 solid !important;
}
.botticelli--by-5 {
  border-top: 5px #cad5e3 solid !important;
  border-bottom: 5px #cad5e3 solid !important;
}
.botticelli--bx-5 {
  border-right: 5px #cad5e3 solid !important;
  border-left: 5px #cad5e3 solid !important;
}
.botticelli--ba-6 {
  border: 6px #cad5e3 solid !important;
}
.botticelli--bt-6 {
  border-top: 6px #cad5e3 solid !important;
}
.botticelli--br-6 {
  border-right: 6px #cad5e3 solid !important;
}
.botticelli--bl-6 {
  border-left: 6px #cad5e3 solid !important;
}
.botticelli--bb-6 {
  border-bottom: 6px #cad5e3 solid !important;
}
.botticelli--by-6 {
  border-top: 6px #cad5e3 solid !important;
  border-bottom: 6px #cad5e3 solid !important;
}
.botticelli--bx-6 {
  border-right: 6px #cad5e3 solid !important;
  border-left: 6px #cad5e3 solid !important;
}
.botticelli--ba-7 {
  border: 7px #cad5e3 solid !important;
}
.botticelli--bt-7 {
  border-top: 7px #cad5e3 solid !important;
}
.botticelli--br-7 {
  border-right: 7px #cad5e3 solid !important;
}
.botticelli--bl-7 {
  border-left: 7px #cad5e3 solid !important;
}
.botticelli--bb-7 {
  border-bottom: 7px #cad5e3 solid !important;
}
.botticelli--by-7 {
  border-top: 7px #cad5e3 solid !important;
  border-bottom: 7px #cad5e3 solid !important;
}
.botticelli--bx-7 {
  border-right: 7px #cad5e3 solid !important;
  border-left: 7px #cad5e3 solid !important;
}
.botticelli--ba-8 {
  border: 8px #cad5e3 solid !important;
}
.botticelli--bt-8 {
  border-top: 8px #cad5e3 solid !important;
}
.botticelli--br-8 {
  border-right: 8px #cad5e3 solid !important;
}
.botticelli--bl-8 {
  border-left: 8px #cad5e3 solid !important;
}
.botticelli--bb-8 {
  border-bottom: 8px #cad5e3 solid !important;
}
.botticelli--by-8 {
  border-top: 8px #cad5e3 solid !important;
  border-bottom: 8px #cad5e3 solid !important;
}
.botticelli--bx-8 {
  border-right: 8px #cad5e3 solid !important;
  border-left: 8px #cad5e3 solid !important;
}
.botticelli--ba-9 {
  border: 9px #cad5e3 solid !important;
}
.botticelli--bt-9 {
  border-top: 9px #cad5e3 solid !important;
}
.botticelli--br-9 {
  border-right: 9px #cad5e3 solid !important;
}
.botticelli--bl-9 {
  border-left: 9px #cad5e3 solid !important;
}
.botticelli--bb-9 {
  border-bottom: 9px #cad5e3 solid !important;
}
.botticelli--by-9 {
  border-top: 9px #cad5e3 solid !important;
  border-bottom: 9px #cad5e3 solid !important;
}
.botticelli--bx-9 {
  border-right: 9px #cad5e3 solid !important;
  border-left: 9px #cad5e3 solid !important;
}
.botticelli--ba-10 {
  border: 10px #cad5e3 solid !important;
}
.botticelli--bt-10 {
  border-top: 10px #cad5e3 solid !important;
}
.botticelli--br-10 {
  border-right: 10px #cad5e3 solid !important;
}
.botticelli--bl-10 {
  border-left: 10px #cad5e3 solid !important;
}
.botticelli--bb-10 {
  border-bottom: 10px #cad5e3 solid !important;
}
.botticelli--by-10 {
  border-top: 10px #cad5e3 solid !important;
  border-bottom: 10px #cad5e3 solid !important;
}
.botticelli--bx-10 {
  border-right: 10px #cad5e3 solid !important;
  border-left: 10px #cad5e3 solid !important;
}
.botticelli--ba-11 {
  border: 11px #cad5e3 solid !important;
}
.botticelli--bt-11 {
  border-top: 11px #cad5e3 solid !important;
}
.botticelli--br-11 {
  border-right: 11px #cad5e3 solid !important;
}
.botticelli--bl-11 {
  border-left: 11px #cad5e3 solid !important;
}
.botticelli--bb-11 {
  border-bottom: 11px #cad5e3 solid !important;
}
.botticelli--by-11 {
  border-top: 11px #cad5e3 solid !important;
  border-bottom: 11px #cad5e3 solid !important;
}
.botticelli--bx-11 {
  border-right: 11px #cad5e3 solid !important;
  border-left: 11px #cad5e3 solid !important;
}
.botticelli--ba-12 {
  border: 12px #cad5e3 solid !important;
}
.botticelli--bt-12 {
  border-top: 12px #cad5e3 solid !important;
}
.botticelli--br-12 {
  border-right: 12px #cad5e3 solid !important;
}
.botticelli--bl-12 {
  border-left: 12px #cad5e3 solid !important;
}
.botticelli--bb-12 {
  border-bottom: 12px #cad5e3 solid !important;
}
.botticelli--by-12 {
  border-top: 12px #cad5e3 solid !important;
  border-bottom: 12px #cad5e3 solid !important;
}
.botticelli--bx-12 {
  border-right: 12px #cad5e3 solid !important;
  border-left: 12px #cad5e3 solid !important;
}
.botticelli--ba-13 {
  border: 13px #cad5e3 solid !important;
}
.botticelli--bt-13 {
  border-top: 13px #cad5e3 solid !important;
}
.botticelli--br-13 {
  border-right: 13px #cad5e3 solid !important;
}
.botticelli--bl-13 {
  border-left: 13px #cad5e3 solid !important;
}
.botticelli--bb-13 {
  border-bottom: 13px #cad5e3 solid !important;
}
.botticelli--by-13 {
  border-top: 13px #cad5e3 solid !important;
  border-bottom: 13px #cad5e3 solid !important;
}
.botticelli--bx-13 {
  border-right: 13px #cad5e3 solid !important;
  border-left: 13px #cad5e3 solid !important;
}
.botticelli--ba-14 {
  border: 14px #cad5e3 solid !important;
}
.botticelli--bt-14 {
  border-top: 14px #cad5e3 solid !important;
}
.botticelli--br-14 {
  border-right: 14px #cad5e3 solid !important;
}
.botticelli--bl-14 {
  border-left: 14px #cad5e3 solid !important;
}
.botticelli--bb-14 {
  border-bottom: 14px #cad5e3 solid !important;
}
.botticelli--by-14 {
  border-top: 14px #cad5e3 solid !important;
  border-bottom: 14px #cad5e3 solid !important;
}
.botticelli--bx-14 {
  border-right: 14px #cad5e3 solid !important;
  border-left: 14px #cad5e3 solid !important;
}
.botticelli--ba-15 {
  border: 15px #cad5e3 solid !important;
}
.botticelli--bt-15 {
  border-top: 15px #cad5e3 solid !important;
}
.botticelli--br-15 {
  border-right: 15px #cad5e3 solid !important;
}
.botticelli--bl-15 {
  border-left: 15px #cad5e3 solid !important;
}
.botticelli--bb-15 {
  border-bottom: 15px #cad5e3 solid !important;
}
.botticelli--by-15 {
  border-top: 15px #cad5e3 solid !important;
  border-bottom: 15px #cad5e3 solid !important;
}
.botticelli--bx-15 {
  border-right: 15px #cad5e3 solid !important;
  border-left: 15px #cad5e3 solid !important;
}
.botticelli--ba-16 {
  border: 16px #cad5e3 solid !important;
}
.botticelli--bt-16 {
  border-top: 16px #cad5e3 solid !important;
}
.botticelli--br-16 {
  border-right: 16px #cad5e3 solid !important;
}
.botticelli--bl-16 {
  border-left: 16px #cad5e3 solid !important;
}
.botticelli--bb-16 {
  border-bottom: 16px #cad5e3 solid !important;
}
.botticelli--by-16 {
  border-top: 16px #cad5e3 solid !important;
  border-bottom: 16px #cad5e3 solid !important;
}
.botticelli--bx-16 {
  border-right: 16px #cad5e3 solid !important;
  border-left: 16px #cad5e3 solid !important;
}
.botticelli--ba-17 {
  border: 17px #cad5e3 solid !important;
}
.botticelli--bt-17 {
  border-top: 17px #cad5e3 solid !important;
}
.botticelli--br-17 {
  border-right: 17px #cad5e3 solid !important;
}
.botticelli--bl-17 {
  border-left: 17px #cad5e3 solid !important;
}
.botticelli--bb-17 {
  border-bottom: 17px #cad5e3 solid !important;
}
.botticelli--by-17 {
  border-top: 17px #cad5e3 solid !important;
  border-bottom: 17px #cad5e3 solid !important;
}
.botticelli--bx-17 {
  border-right: 17px #cad5e3 solid !important;
  border-left: 17px #cad5e3 solid !important;
}
.botticelli--ba-18 {
  border: 18px #cad5e3 solid !important;
}
.botticelli--bt-18 {
  border-top: 18px #cad5e3 solid !important;
}
.botticelli--br-18 {
  border-right: 18px #cad5e3 solid !important;
}
.botticelli--bl-18 {
  border-left: 18px #cad5e3 solid !important;
}
.botticelli--bb-18 {
  border-bottom: 18px #cad5e3 solid !important;
}
.botticelli--by-18 {
  border-top: 18px #cad5e3 solid !important;
  border-bottom: 18px #cad5e3 solid !important;
}
.botticelli--bx-18 {
  border-right: 18px #cad5e3 solid !important;
  border-left: 18px #cad5e3 solid !important;
}
.botticelli--ba-19 {
  border: 19px #cad5e3 solid !important;
}
.botticelli--bt-19 {
  border-top: 19px #cad5e3 solid !important;
}
.botticelli--br-19 {
  border-right: 19px #cad5e3 solid !important;
}
.botticelli--bl-19 {
  border-left: 19px #cad5e3 solid !important;
}
.botticelli--bb-19 {
  border-bottom: 19px #cad5e3 solid !important;
}
.botticelli--by-19 {
  border-top: 19px #cad5e3 solid !important;
  border-bottom: 19px #cad5e3 solid !important;
}
.botticelli--bx-19 {
  border-right: 19px #cad5e3 solid !important;
  border-left: 19px #cad5e3 solid !important;
}
.botticelli--ba-20 {
  border: 20px #cad5e3 solid !important;
}
.botticelli--bt-20 {
  border-top: 20px #cad5e3 solid !important;
}
.botticelli--br-20 {
  border-right: 20px #cad5e3 solid !important;
}
.botticelli--bl-20 {
  border-left: 20px #cad5e3 solid !important;
}
.botticelli--bb-20 {
  border-bottom: 20px #cad5e3 solid !important;
}
.botticelli--by-20 {
  border-top: 20px #cad5e3 solid !important;
  border-bottom: 20px #cad5e3 solid !important;
}
.botticelli--bx-20 {
  border-right: 20px #cad5e3 solid !important;
  border-left: 20px #cad5e3 solid !important;
}
.botticelli--ba-21 {
  border: 21px #cad5e3 solid !important;
}
.botticelli--bt-21 {
  border-top: 21px #cad5e3 solid !important;
}
.botticelli--br-21 {
  border-right: 21px #cad5e3 solid !important;
}
.botticelli--bl-21 {
  border-left: 21px #cad5e3 solid !important;
}
.botticelli--bb-21 {
  border-bottom: 21px #cad5e3 solid !important;
}
.botticelli--by-21 {
  border-top: 21px #cad5e3 solid !important;
  border-bottom: 21px #cad5e3 solid !important;
}
.botticelli--bx-21 {
  border-right: 21px #cad5e3 solid !important;
  border-left: 21px #cad5e3 solid !important;
}
.botticelli--ba-22 {
  border: 22px #cad5e3 solid !important;
}
.botticelli--bt-22 {
  border-top: 22px #cad5e3 solid !important;
}
.botticelli--br-22 {
  border-right: 22px #cad5e3 solid !important;
}
.botticelli--bl-22 {
  border-left: 22px #cad5e3 solid !important;
}
.botticelli--bb-22 {
  border-bottom: 22px #cad5e3 solid !important;
}
.botticelli--by-22 {
  border-top: 22px #cad5e3 solid !important;
  border-bottom: 22px #cad5e3 solid !important;
}
.botticelli--bx-22 {
  border-right: 22px #cad5e3 solid !important;
  border-left: 22px #cad5e3 solid !important;
}
.botticelli--ba-23 {
  border: 23px #cad5e3 solid !important;
}
.botticelli--bt-23 {
  border-top: 23px #cad5e3 solid !important;
}
.botticelli--br-23 {
  border-right: 23px #cad5e3 solid !important;
}
.botticelli--bl-23 {
  border-left: 23px #cad5e3 solid !important;
}
.botticelli--bb-23 {
  border-bottom: 23px #cad5e3 solid !important;
}
.botticelli--by-23 {
  border-top: 23px #cad5e3 solid !important;
  border-bottom: 23px #cad5e3 solid !important;
}
.botticelli--bx-23 {
  border-right: 23px #cad5e3 solid !important;
  border-left: 23px #cad5e3 solid !important;
}
.botticelli--ba-24 {
  border: 24px #cad5e3 solid !important;
}
.botticelli--bt-24 {
  border-top: 24px #cad5e3 solid !important;
}
.botticelli--br-24 {
  border-right: 24px #cad5e3 solid !important;
}
.botticelli--bl-24 {
  border-left: 24px #cad5e3 solid !important;
}
.botticelli--bb-24 {
  border-bottom: 24px #cad5e3 solid !important;
}
.botticelli--by-24 {
  border-top: 24px #cad5e3 solid !important;
  border-bottom: 24px #cad5e3 solid !important;
}
.botticelli--bx-24 {
  border-right: 24px #cad5e3 solid !important;
  border-left: 24px #cad5e3 solid !important;
}
.botticelli--ba-25 {
  border: 25px #cad5e3 solid !important;
}
.botticelli--bt-25 {
  border-top: 25px #cad5e3 solid !important;
}
.botticelli--br-25 {
  border-right: 25px #cad5e3 solid !important;
}
.botticelli--bl-25 {
  border-left: 25px #cad5e3 solid !important;
}
.botticelli--bb-25 {
  border-bottom: 25px #cad5e3 solid !important;
}
.botticelli--by-25 {
  border-top: 25px #cad5e3 solid !important;
  border-bottom: 25px #cad5e3 solid !important;
}
.botticelli--bx-25 {
  border-right: 25px #cad5e3 solid !important;
  border-left: 25px #cad5e3 solid !important;
}
.botticelli--ba-26 {
  border: 26px #cad5e3 solid !important;
}
.botticelli--bt-26 {
  border-top: 26px #cad5e3 solid !important;
}
.botticelli--br-26 {
  border-right: 26px #cad5e3 solid !important;
}
.botticelli--bl-26 {
  border-left: 26px #cad5e3 solid !important;
}
.botticelli--bb-26 {
  border-bottom: 26px #cad5e3 solid !important;
}
.botticelli--by-26 {
  border-top: 26px #cad5e3 solid !important;
  border-bottom: 26px #cad5e3 solid !important;
}
.botticelli--bx-26 {
  border-right: 26px #cad5e3 solid !important;
  border-left: 26px #cad5e3 solid !important;
}
.botticelli--ba-27 {
  border: 27px #cad5e3 solid !important;
}
.botticelli--bt-27 {
  border-top: 27px #cad5e3 solid !important;
}
.botticelli--br-27 {
  border-right: 27px #cad5e3 solid !important;
}
.botticelli--bl-27 {
  border-left: 27px #cad5e3 solid !important;
}
.botticelli--bb-27 {
  border-bottom: 27px #cad5e3 solid !important;
}
.botticelli--by-27 {
  border-top: 27px #cad5e3 solid !important;
  border-bottom: 27px #cad5e3 solid !important;
}
.botticelli--bx-27 {
  border-right: 27px #cad5e3 solid !important;
  border-left: 27px #cad5e3 solid !important;
}
.botticelli--ba-28 {
  border: 28px #cad5e3 solid !important;
}
.botticelli--bt-28 {
  border-top: 28px #cad5e3 solid !important;
}
.botticelli--br-28 {
  border-right: 28px #cad5e3 solid !important;
}
.botticelli--bl-28 {
  border-left: 28px #cad5e3 solid !important;
}
.botticelli--bb-28 {
  border-bottom: 28px #cad5e3 solid !important;
}
.botticelli--by-28 {
  border-top: 28px #cad5e3 solid !important;
  border-bottom: 28px #cad5e3 solid !important;
}
.botticelli--bx-28 {
  border-right: 28px #cad5e3 solid !important;
  border-left: 28px #cad5e3 solid !important;
}
.botticelli--ba-29 {
  border: 29px #cad5e3 solid !important;
}
.botticelli--bt-29 {
  border-top: 29px #cad5e3 solid !important;
}
.botticelli--br-29 {
  border-right: 29px #cad5e3 solid !important;
}
.botticelli--bl-29 {
  border-left: 29px #cad5e3 solid !important;
}
.botticelli--bb-29 {
  border-bottom: 29px #cad5e3 solid !important;
}
.botticelli--by-29 {
  border-top: 29px #cad5e3 solid !important;
  border-bottom: 29px #cad5e3 solid !important;
}
.botticelli--bx-29 {
  border-right: 29px #cad5e3 solid !important;
  border-left: 29px #cad5e3 solid !important;
}
.botticelli--ba-30 {
  border: 30px #cad5e3 solid !important;
}
.botticelli--bt-30 {
  border-top: 30px #cad5e3 solid !important;
}
.botticelli--br-30 {
  border-right: 30px #cad5e3 solid !important;
}
.botticelli--bl-30 {
  border-left: 30px #cad5e3 solid !important;
}
.botticelli--bb-30 {
  border-bottom: 30px #cad5e3 solid !important;
}
.botticelli--by-30 {
  border-top: 30px #cad5e3 solid !important;
  border-bottom: 30px #cad5e3 solid !important;
}
.botticelli--bx-30 {
  border-right: 30px #cad5e3 solid !important;
  border-left: 30px #cad5e3 solid !important;
}
.botticelli--ba-31 {
  border: 31px #cad5e3 solid !important;
}
.botticelli--bt-31 {
  border-top: 31px #cad5e3 solid !important;
}
.botticelli--br-31 {
  border-right: 31px #cad5e3 solid !important;
}
.botticelli--bl-31 {
  border-left: 31px #cad5e3 solid !important;
}
.botticelli--bb-31 {
  border-bottom: 31px #cad5e3 solid !important;
}
.botticelli--by-31 {
  border-top: 31px #cad5e3 solid !important;
  border-bottom: 31px #cad5e3 solid !important;
}
.botticelli--bx-31 {
  border-right: 31px #cad5e3 solid !important;
  border-left: 31px #cad5e3 solid !important;
}
.botticelli--ba-32 {
  border: 32px #cad5e3 solid !important;
}
.botticelli--bt-32 {
  border-top: 32px #cad5e3 solid !important;
}
.botticelli--br-32 {
  border-right: 32px #cad5e3 solid !important;
}
.botticelli--bl-32 {
  border-left: 32px #cad5e3 solid !important;
}
.botticelli--bb-32 {
  border-bottom: 32px #cad5e3 solid !important;
}
.botticelli--by-32 {
  border-top: 32px #cad5e3 solid !important;
  border-bottom: 32px #cad5e3 solid !important;
}
.botticelli--bx-32 {
  border-right: 32px #cad5e3 solid !important;
  border-left: 32px #cad5e3 solid !important;
}
.botticelli--ba-33 {
  border: 33px #cad5e3 solid !important;
}
.botticelli--bt-33 {
  border-top: 33px #cad5e3 solid !important;
}
.botticelli--br-33 {
  border-right: 33px #cad5e3 solid !important;
}
.botticelli--bl-33 {
  border-left: 33px #cad5e3 solid !important;
}
.botticelli--bb-33 {
  border-bottom: 33px #cad5e3 solid !important;
}
.botticelli--by-33 {
  border-top: 33px #cad5e3 solid !important;
  border-bottom: 33px #cad5e3 solid !important;
}
.botticelli--bx-33 {
  border-right: 33px #cad5e3 solid !important;
  border-left: 33px #cad5e3 solid !important;
}
.botticelli--ba-34 {
  border: 34px #cad5e3 solid !important;
}
.botticelli--bt-34 {
  border-top: 34px #cad5e3 solid !important;
}
.botticelli--br-34 {
  border-right: 34px #cad5e3 solid !important;
}
.botticelli--bl-34 {
  border-left: 34px #cad5e3 solid !important;
}
.botticelli--bb-34 {
  border-bottom: 34px #cad5e3 solid !important;
}
.botticelli--by-34 {
  border-top: 34px #cad5e3 solid !important;
  border-bottom: 34px #cad5e3 solid !important;
}
.botticelli--bx-34 {
  border-right: 34px #cad5e3 solid !important;
  border-left: 34px #cad5e3 solid !important;
}
.botticelli--ba-35 {
  border: 35px #cad5e3 solid !important;
}
.botticelli--bt-35 {
  border-top: 35px #cad5e3 solid !important;
}
.botticelli--br-35 {
  border-right: 35px #cad5e3 solid !important;
}
.botticelli--bl-35 {
  border-left: 35px #cad5e3 solid !important;
}
.botticelli--bb-35 {
  border-bottom: 35px #cad5e3 solid !important;
}
.botticelli--by-35 {
  border-top: 35px #cad5e3 solid !important;
  border-bottom: 35px #cad5e3 solid !important;
}
.botticelli--bx-35 {
  border-right: 35px #cad5e3 solid !important;
  border-left: 35px #cad5e3 solid !important;
}
.botticelli--ba-36 {
  border: 36px #cad5e3 solid !important;
}
.botticelli--bt-36 {
  border-top: 36px #cad5e3 solid !important;
}
.botticelli--br-36 {
  border-right: 36px #cad5e3 solid !important;
}
.botticelli--bl-36 {
  border-left: 36px #cad5e3 solid !important;
}
.botticelli--bb-36 {
  border-bottom: 36px #cad5e3 solid !important;
}
.botticelli--by-36 {
  border-top: 36px #cad5e3 solid !important;
  border-bottom: 36px #cad5e3 solid !important;
}
.botticelli--bx-36 {
  border-right: 36px #cad5e3 solid !important;
  border-left: 36px #cad5e3 solid !important;
}
.botticelli--ba-37 {
  border: 37px #cad5e3 solid !important;
}
.botticelli--bt-37 {
  border-top: 37px #cad5e3 solid !important;
}
.botticelli--br-37 {
  border-right: 37px #cad5e3 solid !important;
}
.botticelli--bl-37 {
  border-left: 37px #cad5e3 solid !important;
}
.botticelli--bb-37 {
  border-bottom: 37px #cad5e3 solid !important;
}
.botticelli--by-37 {
  border-top: 37px #cad5e3 solid !important;
  border-bottom: 37px #cad5e3 solid !important;
}
.botticelli--bx-37 {
  border-right: 37px #cad5e3 solid !important;
  border-left: 37px #cad5e3 solid !important;
}
.botticelli--ba-38 {
  border: 38px #cad5e3 solid !important;
}
.botticelli--bt-38 {
  border-top: 38px #cad5e3 solid !important;
}
.botticelli--br-38 {
  border-right: 38px #cad5e3 solid !important;
}
.botticelli--bl-38 {
  border-left: 38px #cad5e3 solid !important;
}
.botticelli--bb-38 {
  border-bottom: 38px #cad5e3 solid !important;
}
.botticelli--by-38 {
  border-top: 38px #cad5e3 solid !important;
  border-bottom: 38px #cad5e3 solid !important;
}
.botticelli--bx-38 {
  border-right: 38px #cad5e3 solid !important;
  border-left: 38px #cad5e3 solid !important;
}
.botticelli--ba-39 {
  border: 39px #cad5e3 solid !important;
}
.botticelli--bt-39 {
  border-top: 39px #cad5e3 solid !important;
}
.botticelli--br-39 {
  border-right: 39px #cad5e3 solid !important;
}
.botticelli--bl-39 {
  border-left: 39px #cad5e3 solid !important;
}
.botticelli--bb-39 {
  border-bottom: 39px #cad5e3 solid !important;
}
.botticelli--by-39 {
  border-top: 39px #cad5e3 solid !important;
  border-bottom: 39px #cad5e3 solid !important;
}
.botticelli--bx-39 {
  border-right: 39px #cad5e3 solid !important;
  border-left: 39px #cad5e3 solid !important;
}
.botticelli--ba-40 {
  border: 40px #cad5e3 solid !important;
}
.botticelli--bt-40 {
  border-top: 40px #cad5e3 solid !important;
}
.botticelli--br-40 {
  border-right: 40px #cad5e3 solid !important;
}
.botticelli--bl-40 {
  border-left: 40px #cad5e3 solid !important;
}
.botticelli--bb-40 {
  border-bottom: 40px #cad5e3 solid !important;
}
.botticelli--by-40 {
  border-top: 40px #cad5e3 solid !important;
  border-bottom: 40px #cad5e3 solid !important;
}
.botticelli--bx-40 {
  border-right: 40px #cad5e3 solid !important;
  border-left: 40px #cad5e3 solid !important;
}
.botticelli--ba-41 {
  border: 41px #cad5e3 solid !important;
}
.botticelli--bt-41 {
  border-top: 41px #cad5e3 solid !important;
}
.botticelli--br-41 {
  border-right: 41px #cad5e3 solid !important;
}
.botticelli--bl-41 {
  border-left: 41px #cad5e3 solid !important;
}
.botticelli--bb-41 {
  border-bottom: 41px #cad5e3 solid !important;
}
.botticelli--by-41 {
  border-top: 41px #cad5e3 solid !important;
  border-bottom: 41px #cad5e3 solid !important;
}
.botticelli--bx-41 {
  border-right: 41px #cad5e3 solid !important;
  border-left: 41px #cad5e3 solid !important;
}
.botticelli--ba-42 {
  border: 42px #cad5e3 solid !important;
}
.botticelli--bt-42 {
  border-top: 42px #cad5e3 solid !important;
}
.botticelli--br-42 {
  border-right: 42px #cad5e3 solid !important;
}
.botticelli--bl-42 {
  border-left: 42px #cad5e3 solid !important;
}
.botticelli--bb-42 {
  border-bottom: 42px #cad5e3 solid !important;
}
.botticelli--by-42 {
  border-top: 42px #cad5e3 solid !important;
  border-bottom: 42px #cad5e3 solid !important;
}
.botticelli--bx-42 {
  border-right: 42px #cad5e3 solid !important;
  border-left: 42px #cad5e3 solid !important;
}
.botticelli--ba-43 {
  border: 43px #cad5e3 solid !important;
}
.botticelli--bt-43 {
  border-top: 43px #cad5e3 solid !important;
}
.botticelli--br-43 {
  border-right: 43px #cad5e3 solid !important;
}
.botticelli--bl-43 {
  border-left: 43px #cad5e3 solid !important;
}
.botticelli--bb-43 {
  border-bottom: 43px #cad5e3 solid !important;
}
.botticelli--by-43 {
  border-top: 43px #cad5e3 solid !important;
  border-bottom: 43px #cad5e3 solid !important;
}
.botticelli--bx-43 {
  border-right: 43px #cad5e3 solid !important;
  border-left: 43px #cad5e3 solid !important;
}
.botticelli--ba-44 {
  border: 44px #cad5e3 solid !important;
}
.botticelli--bt-44 {
  border-top: 44px #cad5e3 solid !important;
}
.botticelli--br-44 {
  border-right: 44px #cad5e3 solid !important;
}
.botticelli--bl-44 {
  border-left: 44px #cad5e3 solid !important;
}
.botticelli--bb-44 {
  border-bottom: 44px #cad5e3 solid !important;
}
.botticelli--by-44 {
  border-top: 44px #cad5e3 solid !important;
  border-bottom: 44px #cad5e3 solid !important;
}
.botticelli--bx-44 {
  border-right: 44px #cad5e3 solid !important;
  border-left: 44px #cad5e3 solid !important;
}
.botticelli--ba-45 {
  border: 45px #cad5e3 solid !important;
}
.botticelli--bt-45 {
  border-top: 45px #cad5e3 solid !important;
}
.botticelli--br-45 {
  border-right: 45px #cad5e3 solid !important;
}
.botticelli--bl-45 {
  border-left: 45px #cad5e3 solid !important;
}
.botticelli--bb-45 {
  border-bottom: 45px #cad5e3 solid !important;
}
.botticelli--by-45 {
  border-top: 45px #cad5e3 solid !important;
  border-bottom: 45px #cad5e3 solid !important;
}
.botticelli--bx-45 {
  border-right: 45px #cad5e3 solid !important;
  border-left: 45px #cad5e3 solid !important;
}
.botticelli--ba-46 {
  border: 46px #cad5e3 solid !important;
}
.botticelli--bt-46 {
  border-top: 46px #cad5e3 solid !important;
}
.botticelli--br-46 {
  border-right: 46px #cad5e3 solid !important;
}
.botticelli--bl-46 {
  border-left: 46px #cad5e3 solid !important;
}
.botticelli--bb-46 {
  border-bottom: 46px #cad5e3 solid !important;
}
.botticelli--by-46 {
  border-top: 46px #cad5e3 solid !important;
  border-bottom: 46px #cad5e3 solid !important;
}
.botticelli--bx-46 {
  border-right: 46px #cad5e3 solid !important;
  border-left: 46px #cad5e3 solid !important;
}
.botticelli--ba-47 {
  border: 47px #cad5e3 solid !important;
}
.botticelli--bt-47 {
  border-top: 47px #cad5e3 solid !important;
}
.botticelli--br-47 {
  border-right: 47px #cad5e3 solid !important;
}
.botticelli--bl-47 {
  border-left: 47px #cad5e3 solid !important;
}
.botticelli--bb-47 {
  border-bottom: 47px #cad5e3 solid !important;
}
.botticelli--by-47 {
  border-top: 47px #cad5e3 solid !important;
  border-bottom: 47px #cad5e3 solid !important;
}
.botticelli--bx-47 {
  border-right: 47px #cad5e3 solid !important;
  border-left: 47px #cad5e3 solid !important;
}
.botticelli--ba-48 {
  border: 48px #cad5e3 solid !important;
}
.botticelli--bt-48 {
  border-top: 48px #cad5e3 solid !important;
}
.botticelli--br-48 {
  border-right: 48px #cad5e3 solid !important;
}
.botticelli--bl-48 {
  border-left: 48px #cad5e3 solid !important;
}
.botticelli--bb-48 {
  border-bottom: 48px #cad5e3 solid !important;
}
.botticelli--by-48 {
  border-top: 48px #cad5e3 solid !important;
  border-bottom: 48px #cad5e3 solid !important;
}
.botticelli--bx-48 {
  border-right: 48px #cad5e3 solid !important;
  border-left: 48px #cad5e3 solid !important;
}
.botticelli--ba-49 {
  border: 49px #cad5e3 solid !important;
}
.botticelli--bt-49 {
  border-top: 49px #cad5e3 solid !important;
}
.botticelli--br-49 {
  border-right: 49px #cad5e3 solid !important;
}
.botticelli--bl-49 {
  border-left: 49px #cad5e3 solid !important;
}
.botticelli--bb-49 {
  border-bottom: 49px #cad5e3 solid !important;
}
.botticelli--by-49 {
  border-top: 49px #cad5e3 solid !important;
  border-bottom: 49px #cad5e3 solid !important;
}
.botticelli--bx-49 {
  border-right: 49px #cad5e3 solid !important;
  border-left: 49px #cad5e3 solid !important;
}
.botticelli--ba-50 {
  border: 50px #cad5e3 solid !important;
}
.botticelli--bt-50 {
  border-top: 50px #cad5e3 solid !important;
}
.botticelli--br-50 {
  border-right: 50px #cad5e3 solid !important;
}
.botticelli--bl-50 {
  border-left: 50px #cad5e3 solid !important;
}
.botticelli--bb-50 {
  border-bottom: 50px #cad5e3 solid !important;
}
.botticelli--by-50 {
  border-top: 50px #cad5e3 solid !important;
  border-bottom: 50px #cad5e3 solid !important;
}
.botticelli--bx-50 {
  border-right: 50px #cad5e3 solid !important;
  border-left: 50px #cad5e3 solid !important;
}
.botticelli--ba-51 {
  border: 51px #cad5e3 solid !important;
}
.botticelli--bt-51 {
  border-top: 51px #cad5e3 solid !important;
}
.botticelli--br-51 {
  border-right: 51px #cad5e3 solid !important;
}
.botticelli--bl-51 {
  border-left: 51px #cad5e3 solid !important;
}
.botticelli--bb-51 {
  border-bottom: 51px #cad5e3 solid !important;
}
.botticelli--by-51 {
  border-top: 51px #cad5e3 solid !important;
  border-bottom: 51px #cad5e3 solid !important;
}
.botticelli--bx-51 {
  border-right: 51px #cad5e3 solid !important;
  border-left: 51px #cad5e3 solid !important;
}
.botticelli--ba-52 {
  border: 52px #cad5e3 solid !important;
}
.botticelli--bt-52 {
  border-top: 52px #cad5e3 solid !important;
}
.botticelli--br-52 {
  border-right: 52px #cad5e3 solid !important;
}
.botticelli--bl-52 {
  border-left: 52px #cad5e3 solid !important;
}
.botticelli--bb-52 {
  border-bottom: 52px #cad5e3 solid !important;
}
.botticelli--by-52 {
  border-top: 52px #cad5e3 solid !important;
  border-bottom: 52px #cad5e3 solid !important;
}
.botticelli--bx-52 {
  border-right: 52px #cad5e3 solid !important;
  border-left: 52px #cad5e3 solid !important;
}
.botticelli--ba-53 {
  border: 53px #cad5e3 solid !important;
}
.botticelli--bt-53 {
  border-top: 53px #cad5e3 solid !important;
}
.botticelli--br-53 {
  border-right: 53px #cad5e3 solid !important;
}
.botticelli--bl-53 {
  border-left: 53px #cad5e3 solid !important;
}
.botticelli--bb-53 {
  border-bottom: 53px #cad5e3 solid !important;
}
.botticelli--by-53 {
  border-top: 53px #cad5e3 solid !important;
  border-bottom: 53px #cad5e3 solid !important;
}
.botticelli--bx-53 {
  border-right: 53px #cad5e3 solid !important;
  border-left: 53px #cad5e3 solid !important;
}
.botticelli--ba-54 {
  border: 54px #cad5e3 solid !important;
}
.botticelli--bt-54 {
  border-top: 54px #cad5e3 solid !important;
}
.botticelli--br-54 {
  border-right: 54px #cad5e3 solid !important;
}
.botticelli--bl-54 {
  border-left: 54px #cad5e3 solid !important;
}
.botticelli--bb-54 {
  border-bottom: 54px #cad5e3 solid !important;
}
.botticelli--by-54 {
  border-top: 54px #cad5e3 solid !important;
  border-bottom: 54px #cad5e3 solid !important;
}
.botticelli--bx-54 {
  border-right: 54px #cad5e3 solid !important;
  border-left: 54px #cad5e3 solid !important;
}
.botticelli--ba-55 {
  border: 55px #cad5e3 solid !important;
}
.botticelli--bt-55 {
  border-top: 55px #cad5e3 solid !important;
}
.botticelli--br-55 {
  border-right: 55px #cad5e3 solid !important;
}
.botticelli--bl-55 {
  border-left: 55px #cad5e3 solid !important;
}
.botticelli--bb-55 {
  border-bottom: 55px #cad5e3 solid !important;
}
.botticelli--by-55 {
  border-top: 55px #cad5e3 solid !important;
  border-bottom: 55px #cad5e3 solid !important;
}
.botticelli--bx-55 {
  border-right: 55px #cad5e3 solid !important;
  border-left: 55px #cad5e3 solid !important;
}
.botticelli--ba-56 {
  border: 56px #cad5e3 solid !important;
}
.botticelli--bt-56 {
  border-top: 56px #cad5e3 solid !important;
}
.botticelli--br-56 {
  border-right: 56px #cad5e3 solid !important;
}
.botticelli--bl-56 {
  border-left: 56px #cad5e3 solid !important;
}
.botticelli--bb-56 {
  border-bottom: 56px #cad5e3 solid !important;
}
.botticelli--by-56 {
  border-top: 56px #cad5e3 solid !important;
  border-bottom: 56px #cad5e3 solid !important;
}
.botticelli--bx-56 {
  border-right: 56px #cad5e3 solid !important;
  border-left: 56px #cad5e3 solid !important;
}
.botticelli--ba-57 {
  border: 57px #cad5e3 solid !important;
}
.botticelli--bt-57 {
  border-top: 57px #cad5e3 solid !important;
}
.botticelli--br-57 {
  border-right: 57px #cad5e3 solid !important;
}
.botticelli--bl-57 {
  border-left: 57px #cad5e3 solid !important;
}
.botticelli--bb-57 {
  border-bottom: 57px #cad5e3 solid !important;
}
.botticelli--by-57 {
  border-top: 57px #cad5e3 solid !important;
  border-bottom: 57px #cad5e3 solid !important;
}
.botticelli--bx-57 {
  border-right: 57px #cad5e3 solid !important;
  border-left: 57px #cad5e3 solid !important;
}
.botticelli--ba-58 {
  border: 58px #cad5e3 solid !important;
}
.botticelli--bt-58 {
  border-top: 58px #cad5e3 solid !important;
}
.botticelli--br-58 {
  border-right: 58px #cad5e3 solid !important;
}
.botticelli--bl-58 {
  border-left: 58px #cad5e3 solid !important;
}
.botticelli--bb-58 {
  border-bottom: 58px #cad5e3 solid !important;
}
.botticelli--by-58 {
  border-top: 58px #cad5e3 solid !important;
  border-bottom: 58px #cad5e3 solid !important;
}
.botticelli--bx-58 {
  border-right: 58px #cad5e3 solid !important;
  border-left: 58px #cad5e3 solid !important;
}
.botticelli--ba-59 {
  border: 59px #cad5e3 solid !important;
}
.botticelli--bt-59 {
  border-top: 59px #cad5e3 solid !important;
}
.botticelli--br-59 {
  border-right: 59px #cad5e3 solid !important;
}
.botticelli--bl-59 {
  border-left: 59px #cad5e3 solid !important;
}
.botticelli--bb-59 {
  border-bottom: 59px #cad5e3 solid !important;
}
.botticelli--by-59 {
  border-top: 59px #cad5e3 solid !important;
  border-bottom: 59px #cad5e3 solid !important;
}
.botticelli--bx-59 {
  border-right: 59px #cad5e3 solid !important;
  border-left: 59px #cad5e3 solid !important;
}
.botticelli--ba-60 {
  border: 60px #cad5e3 solid !important;
}
.botticelli--bt-60 {
  border-top: 60px #cad5e3 solid !important;
}
.botticelli--br-60 {
  border-right: 60px #cad5e3 solid !important;
}
.botticelli--bl-60 {
  border-left: 60px #cad5e3 solid !important;
}
.botticelli--bb-60 {
  border-bottom: 60px #cad5e3 solid !important;
}
.botticelli--by-60 {
  border-top: 60px #cad5e3 solid !important;
  border-bottom: 60px #cad5e3 solid !important;
}
.botticelli--bx-60 {
  border-right: 60px #cad5e3 solid !important;
  border-left: 60px #cad5e3 solid !important;
}
.botticelli--ba-61 {
  border: 61px #cad5e3 solid !important;
}
.botticelli--bt-61 {
  border-top: 61px #cad5e3 solid !important;
}
.botticelli--br-61 {
  border-right: 61px #cad5e3 solid !important;
}
.botticelli--bl-61 {
  border-left: 61px #cad5e3 solid !important;
}
.botticelli--bb-61 {
  border-bottom: 61px #cad5e3 solid !important;
}
.botticelli--by-61 {
  border-top: 61px #cad5e3 solid !important;
  border-bottom: 61px #cad5e3 solid !important;
}
.botticelli--bx-61 {
  border-right: 61px #cad5e3 solid !important;
  border-left: 61px #cad5e3 solid !important;
}
.botticelli--ba-62 {
  border: 62px #cad5e3 solid !important;
}
.botticelli--bt-62 {
  border-top: 62px #cad5e3 solid !important;
}
.botticelli--br-62 {
  border-right: 62px #cad5e3 solid !important;
}
.botticelli--bl-62 {
  border-left: 62px #cad5e3 solid !important;
}
.botticelli--bb-62 {
  border-bottom: 62px #cad5e3 solid !important;
}
.botticelli--by-62 {
  border-top: 62px #cad5e3 solid !important;
  border-bottom: 62px #cad5e3 solid !important;
}
.botticelli--bx-62 {
  border-right: 62px #cad5e3 solid !important;
  border-left: 62px #cad5e3 solid !important;
}
.botticelli--ba-63 {
  border: 63px #cad5e3 solid !important;
}
.botticelli--bt-63 {
  border-top: 63px #cad5e3 solid !important;
}
.botticelli--br-63 {
  border-right: 63px #cad5e3 solid !important;
}
.botticelli--bl-63 {
  border-left: 63px #cad5e3 solid !important;
}
.botticelli--bb-63 {
  border-bottom: 63px #cad5e3 solid !important;
}
.botticelli--by-63 {
  border-top: 63px #cad5e3 solid !important;
  border-bottom: 63px #cad5e3 solid !important;
}
.botticelli--bx-63 {
  border-right: 63px #cad5e3 solid !important;
  border-left: 63px #cad5e3 solid !important;
}
.botticelli--ba-64 {
  border: 64px #cad5e3 solid !important;
}
.botticelli--bt-64 {
  border-top: 64px #cad5e3 solid !important;
}
.botticelli--br-64 {
  border-right: 64px #cad5e3 solid !important;
}
.botticelli--bl-64 {
  border-left: 64px #cad5e3 solid !important;
}
.botticelli--bb-64 {
  border-bottom: 64px #cad5e3 solid !important;
}
.botticelli--by-64 {
  border-top: 64px #cad5e3 solid !important;
  border-bottom: 64px #cad5e3 solid !important;
}
.botticelli--bx-64 {
  border-right: 64px #cad5e3 solid !important;
  border-left: 64px #cad5e3 solid !important;
}
.botticelli--ba-65 {
  border: 65px #cad5e3 solid !important;
}
.botticelli--bt-65 {
  border-top: 65px #cad5e3 solid !important;
}
.botticelli--br-65 {
  border-right: 65px #cad5e3 solid !important;
}
.botticelli--bl-65 {
  border-left: 65px #cad5e3 solid !important;
}
.botticelli--bb-65 {
  border-bottom: 65px #cad5e3 solid !important;
}
.botticelli--by-65 {
  border-top: 65px #cad5e3 solid !important;
  border-bottom: 65px #cad5e3 solid !important;
}
.botticelli--bx-65 {
  border-right: 65px #cad5e3 solid !important;
  border-left: 65px #cad5e3 solid !important;
}
.botticelli--ba-66 {
  border: 66px #cad5e3 solid !important;
}
.botticelli--bt-66 {
  border-top: 66px #cad5e3 solid !important;
}
.botticelli--br-66 {
  border-right: 66px #cad5e3 solid !important;
}
.botticelli--bl-66 {
  border-left: 66px #cad5e3 solid !important;
}
.botticelli--bb-66 {
  border-bottom: 66px #cad5e3 solid !important;
}
.botticelli--by-66 {
  border-top: 66px #cad5e3 solid !important;
  border-bottom: 66px #cad5e3 solid !important;
}
.botticelli--bx-66 {
  border-right: 66px #cad5e3 solid !important;
  border-left: 66px #cad5e3 solid !important;
}
.botticelli--ba-67 {
  border: 67px #cad5e3 solid !important;
}
.botticelli--bt-67 {
  border-top: 67px #cad5e3 solid !important;
}
.botticelli--br-67 {
  border-right: 67px #cad5e3 solid !important;
}
.botticelli--bl-67 {
  border-left: 67px #cad5e3 solid !important;
}
.botticelli--bb-67 {
  border-bottom: 67px #cad5e3 solid !important;
}
.botticelli--by-67 {
  border-top: 67px #cad5e3 solid !important;
  border-bottom: 67px #cad5e3 solid !important;
}
.botticelli--bx-67 {
  border-right: 67px #cad5e3 solid !important;
  border-left: 67px #cad5e3 solid !important;
}
.botticelli--ba-68 {
  border: 68px #cad5e3 solid !important;
}
.botticelli--bt-68 {
  border-top: 68px #cad5e3 solid !important;
}
.botticelli--br-68 {
  border-right: 68px #cad5e3 solid !important;
}
.botticelli--bl-68 {
  border-left: 68px #cad5e3 solid !important;
}
.botticelli--bb-68 {
  border-bottom: 68px #cad5e3 solid !important;
}
.botticelli--by-68 {
  border-top: 68px #cad5e3 solid !important;
  border-bottom: 68px #cad5e3 solid !important;
}
.botticelli--bx-68 {
  border-right: 68px #cad5e3 solid !important;
  border-left: 68px #cad5e3 solid !important;
}
.botticelli--ba-69 {
  border: 69px #cad5e3 solid !important;
}
.botticelli--bt-69 {
  border-top: 69px #cad5e3 solid !important;
}
.botticelli--br-69 {
  border-right: 69px #cad5e3 solid !important;
}
.botticelli--bl-69 {
  border-left: 69px #cad5e3 solid !important;
}
.botticelli--bb-69 {
  border-bottom: 69px #cad5e3 solid !important;
}
.botticelli--by-69 {
  border-top: 69px #cad5e3 solid !important;
  border-bottom: 69px #cad5e3 solid !important;
}
.botticelli--bx-69 {
  border-right: 69px #cad5e3 solid !important;
  border-left: 69px #cad5e3 solid !important;
}
.botticelli--ba-70 {
  border: 70px #cad5e3 solid !important;
}
.botticelli--bt-70 {
  border-top: 70px #cad5e3 solid !important;
}
.botticelli--br-70 {
  border-right: 70px #cad5e3 solid !important;
}
.botticelli--bl-70 {
  border-left: 70px #cad5e3 solid !important;
}
.botticelli--bb-70 {
  border-bottom: 70px #cad5e3 solid !important;
}
.botticelli--by-70 {
  border-top: 70px #cad5e3 solid !important;
  border-bottom: 70px #cad5e3 solid !important;
}
.botticelli--bx-70 {
  border-right: 70px #cad5e3 solid !important;
  border-left: 70px #cad5e3 solid !important;
}
.botticelli--ba-71 {
  border: 71px #cad5e3 solid !important;
}
.botticelli--bt-71 {
  border-top: 71px #cad5e3 solid !important;
}
.botticelli--br-71 {
  border-right: 71px #cad5e3 solid !important;
}
.botticelli--bl-71 {
  border-left: 71px #cad5e3 solid !important;
}
.botticelli--bb-71 {
  border-bottom: 71px #cad5e3 solid !important;
}
.botticelli--by-71 {
  border-top: 71px #cad5e3 solid !important;
  border-bottom: 71px #cad5e3 solid !important;
}
.botticelli--bx-71 {
  border-right: 71px #cad5e3 solid !important;
  border-left: 71px #cad5e3 solid !important;
}
.botticelli--ba-72 {
  border: 72px #cad5e3 solid !important;
}
.botticelli--bt-72 {
  border-top: 72px #cad5e3 solid !important;
}
.botticelli--br-72 {
  border-right: 72px #cad5e3 solid !important;
}
.botticelli--bl-72 {
  border-left: 72px #cad5e3 solid !important;
}
.botticelli--bb-72 {
  border-bottom: 72px #cad5e3 solid !important;
}
.botticelli--by-72 {
  border-top: 72px #cad5e3 solid !important;
  border-bottom: 72px #cad5e3 solid !important;
}
.botticelli--bx-72 {
  border-right: 72px #cad5e3 solid !important;
  border-left: 72px #cad5e3 solid !important;
}
.botticelli--ba-73 {
  border: 73px #cad5e3 solid !important;
}
.botticelli--bt-73 {
  border-top: 73px #cad5e3 solid !important;
}
.botticelli--br-73 {
  border-right: 73px #cad5e3 solid !important;
}
.botticelli--bl-73 {
  border-left: 73px #cad5e3 solid !important;
}
.botticelli--bb-73 {
  border-bottom: 73px #cad5e3 solid !important;
}
.botticelli--by-73 {
  border-top: 73px #cad5e3 solid !important;
  border-bottom: 73px #cad5e3 solid !important;
}
.botticelli--bx-73 {
  border-right: 73px #cad5e3 solid !important;
  border-left: 73px #cad5e3 solid !important;
}
.botticelli--ba-74 {
  border: 74px #cad5e3 solid !important;
}
.botticelli--bt-74 {
  border-top: 74px #cad5e3 solid !important;
}
.botticelli--br-74 {
  border-right: 74px #cad5e3 solid !important;
}
.botticelli--bl-74 {
  border-left: 74px #cad5e3 solid !important;
}
.botticelli--bb-74 {
  border-bottom: 74px #cad5e3 solid !important;
}
.botticelli--by-74 {
  border-top: 74px #cad5e3 solid !important;
  border-bottom: 74px #cad5e3 solid !important;
}
.botticelli--bx-74 {
  border-right: 74px #cad5e3 solid !important;
  border-left: 74px #cad5e3 solid !important;
}
.botticelli--ba-75 {
  border: 75px #cad5e3 solid !important;
}
.botticelli--bt-75 {
  border-top: 75px #cad5e3 solid !important;
}
.botticelli--br-75 {
  border-right: 75px #cad5e3 solid !important;
}
.botticelli--bl-75 {
  border-left: 75px #cad5e3 solid !important;
}
.botticelli--bb-75 {
  border-bottom: 75px #cad5e3 solid !important;
}
.botticelli--by-75 {
  border-top: 75px #cad5e3 solid !important;
  border-bottom: 75px #cad5e3 solid !important;
}
.botticelli--bx-75 {
  border-right: 75px #cad5e3 solid !important;
  border-left: 75px #cad5e3 solid !important;
}
.botticelli--ba-76 {
  border: 76px #cad5e3 solid !important;
}
.botticelli--bt-76 {
  border-top: 76px #cad5e3 solid !important;
}
.botticelli--br-76 {
  border-right: 76px #cad5e3 solid !important;
}
.botticelli--bl-76 {
  border-left: 76px #cad5e3 solid !important;
}
.botticelli--bb-76 {
  border-bottom: 76px #cad5e3 solid !important;
}
.botticelli--by-76 {
  border-top: 76px #cad5e3 solid !important;
  border-bottom: 76px #cad5e3 solid !important;
}
.botticelli--bx-76 {
  border-right: 76px #cad5e3 solid !important;
  border-left: 76px #cad5e3 solid !important;
}
.botticelli--ba-77 {
  border: 77px #cad5e3 solid !important;
}
.botticelli--bt-77 {
  border-top: 77px #cad5e3 solid !important;
}
.botticelli--br-77 {
  border-right: 77px #cad5e3 solid !important;
}
.botticelli--bl-77 {
  border-left: 77px #cad5e3 solid !important;
}
.botticelli--bb-77 {
  border-bottom: 77px #cad5e3 solid !important;
}
.botticelli--by-77 {
  border-top: 77px #cad5e3 solid !important;
  border-bottom: 77px #cad5e3 solid !important;
}
.botticelli--bx-77 {
  border-right: 77px #cad5e3 solid !important;
  border-left: 77px #cad5e3 solid !important;
}
.botticelli--ba-78 {
  border: 78px #cad5e3 solid !important;
}
.botticelli--bt-78 {
  border-top: 78px #cad5e3 solid !important;
}
.botticelli--br-78 {
  border-right: 78px #cad5e3 solid !important;
}
.botticelli--bl-78 {
  border-left: 78px #cad5e3 solid !important;
}
.botticelli--bb-78 {
  border-bottom: 78px #cad5e3 solid !important;
}
.botticelli--by-78 {
  border-top: 78px #cad5e3 solid !important;
  border-bottom: 78px #cad5e3 solid !important;
}
.botticelli--bx-78 {
  border-right: 78px #cad5e3 solid !important;
  border-left: 78px #cad5e3 solid !important;
}
.botticelli--ba-79 {
  border: 79px #cad5e3 solid !important;
}
.botticelli--bt-79 {
  border-top: 79px #cad5e3 solid !important;
}
.botticelli--br-79 {
  border-right: 79px #cad5e3 solid !important;
}
.botticelli--bl-79 {
  border-left: 79px #cad5e3 solid !important;
}
.botticelli--bb-79 {
  border-bottom: 79px #cad5e3 solid !important;
}
.botticelli--by-79 {
  border-top: 79px #cad5e3 solid !important;
  border-bottom: 79px #cad5e3 solid !important;
}
.botticelli--bx-79 {
  border-right: 79px #cad5e3 solid !important;
  border-left: 79px #cad5e3 solid !important;
}
.botticelli--ba-80 {
  border: 80px #cad5e3 solid !important;
}
.botticelli--bt-80 {
  border-top: 80px #cad5e3 solid !important;
}
.botticelli--br-80 {
  border-right: 80px #cad5e3 solid !important;
}
.botticelli--bl-80 {
  border-left: 80px #cad5e3 solid !important;
}
.botticelli--bb-80 {
  border-bottom: 80px #cad5e3 solid !important;
}
.botticelli--by-80 {
  border-top: 80px #cad5e3 solid !important;
  border-bottom: 80px #cad5e3 solid !important;
}
.botticelli--bx-80 {
  border-right: 80px #cad5e3 solid !important;
  border-left: 80px #cad5e3 solid !important;
}
.botticelli--ba-81 {
  border: 81px #cad5e3 solid !important;
}
.botticelli--bt-81 {
  border-top: 81px #cad5e3 solid !important;
}
.botticelli--br-81 {
  border-right: 81px #cad5e3 solid !important;
}
.botticelli--bl-81 {
  border-left: 81px #cad5e3 solid !important;
}
.botticelli--bb-81 {
  border-bottom: 81px #cad5e3 solid !important;
}
.botticelli--by-81 {
  border-top: 81px #cad5e3 solid !important;
  border-bottom: 81px #cad5e3 solid !important;
}
.botticelli--bx-81 {
  border-right: 81px #cad5e3 solid !important;
  border-left: 81px #cad5e3 solid !important;
}
.botticelli--ba-82 {
  border: 82px #cad5e3 solid !important;
}
.botticelli--bt-82 {
  border-top: 82px #cad5e3 solid !important;
}
.botticelli--br-82 {
  border-right: 82px #cad5e3 solid !important;
}
.botticelli--bl-82 {
  border-left: 82px #cad5e3 solid !important;
}
.botticelli--bb-82 {
  border-bottom: 82px #cad5e3 solid !important;
}
.botticelli--by-82 {
  border-top: 82px #cad5e3 solid !important;
  border-bottom: 82px #cad5e3 solid !important;
}
.botticelli--bx-82 {
  border-right: 82px #cad5e3 solid !important;
  border-left: 82px #cad5e3 solid !important;
}
.botticelli--ba-83 {
  border: 83px #cad5e3 solid !important;
}
.botticelli--bt-83 {
  border-top: 83px #cad5e3 solid !important;
}
.botticelli--br-83 {
  border-right: 83px #cad5e3 solid !important;
}
.botticelli--bl-83 {
  border-left: 83px #cad5e3 solid !important;
}
.botticelli--bb-83 {
  border-bottom: 83px #cad5e3 solid !important;
}
.botticelli--by-83 {
  border-top: 83px #cad5e3 solid !important;
  border-bottom: 83px #cad5e3 solid !important;
}
.botticelli--bx-83 {
  border-right: 83px #cad5e3 solid !important;
  border-left: 83px #cad5e3 solid !important;
}
.botticelli--ba-84 {
  border: 84px #cad5e3 solid !important;
}
.botticelli--bt-84 {
  border-top: 84px #cad5e3 solid !important;
}
.botticelli--br-84 {
  border-right: 84px #cad5e3 solid !important;
}
.botticelli--bl-84 {
  border-left: 84px #cad5e3 solid !important;
}
.botticelli--bb-84 {
  border-bottom: 84px #cad5e3 solid !important;
}
.botticelli--by-84 {
  border-top: 84px #cad5e3 solid !important;
  border-bottom: 84px #cad5e3 solid !important;
}
.botticelli--bx-84 {
  border-right: 84px #cad5e3 solid !important;
  border-left: 84px #cad5e3 solid !important;
}
.botticelli--ba-85 {
  border: 85px #cad5e3 solid !important;
}
.botticelli--bt-85 {
  border-top: 85px #cad5e3 solid !important;
}
.botticelli--br-85 {
  border-right: 85px #cad5e3 solid !important;
}
.botticelli--bl-85 {
  border-left: 85px #cad5e3 solid !important;
}
.botticelli--bb-85 {
  border-bottom: 85px #cad5e3 solid !important;
}
.botticelli--by-85 {
  border-top: 85px #cad5e3 solid !important;
  border-bottom: 85px #cad5e3 solid !important;
}
.botticelli--bx-85 {
  border-right: 85px #cad5e3 solid !important;
  border-left: 85px #cad5e3 solid !important;
}
.botticelli--ba-86 {
  border: 86px #cad5e3 solid !important;
}
.botticelli--bt-86 {
  border-top: 86px #cad5e3 solid !important;
}
.botticelli--br-86 {
  border-right: 86px #cad5e3 solid !important;
}
.botticelli--bl-86 {
  border-left: 86px #cad5e3 solid !important;
}
.botticelli--bb-86 {
  border-bottom: 86px #cad5e3 solid !important;
}
.botticelli--by-86 {
  border-top: 86px #cad5e3 solid !important;
  border-bottom: 86px #cad5e3 solid !important;
}
.botticelli--bx-86 {
  border-right: 86px #cad5e3 solid !important;
  border-left: 86px #cad5e3 solid !important;
}
.botticelli--ba-87 {
  border: 87px #cad5e3 solid !important;
}
.botticelli--bt-87 {
  border-top: 87px #cad5e3 solid !important;
}
.botticelli--br-87 {
  border-right: 87px #cad5e3 solid !important;
}
.botticelli--bl-87 {
  border-left: 87px #cad5e3 solid !important;
}
.botticelli--bb-87 {
  border-bottom: 87px #cad5e3 solid !important;
}
.botticelli--by-87 {
  border-top: 87px #cad5e3 solid !important;
  border-bottom: 87px #cad5e3 solid !important;
}
.botticelli--bx-87 {
  border-right: 87px #cad5e3 solid !important;
  border-left: 87px #cad5e3 solid !important;
}
.botticelli--ba-88 {
  border: 88px #cad5e3 solid !important;
}
.botticelli--bt-88 {
  border-top: 88px #cad5e3 solid !important;
}
.botticelli--br-88 {
  border-right: 88px #cad5e3 solid !important;
}
.botticelli--bl-88 {
  border-left: 88px #cad5e3 solid !important;
}
.botticelli--bb-88 {
  border-bottom: 88px #cad5e3 solid !important;
}
.botticelli--by-88 {
  border-top: 88px #cad5e3 solid !important;
  border-bottom: 88px #cad5e3 solid !important;
}
.botticelli--bx-88 {
  border-right: 88px #cad5e3 solid !important;
  border-left: 88px #cad5e3 solid !important;
}
.botticelli--ba-89 {
  border: 89px #cad5e3 solid !important;
}
.botticelli--bt-89 {
  border-top: 89px #cad5e3 solid !important;
}
.botticelli--br-89 {
  border-right: 89px #cad5e3 solid !important;
}
.botticelli--bl-89 {
  border-left: 89px #cad5e3 solid !important;
}
.botticelli--bb-89 {
  border-bottom: 89px #cad5e3 solid !important;
}
.botticelli--by-89 {
  border-top: 89px #cad5e3 solid !important;
  border-bottom: 89px #cad5e3 solid !important;
}
.botticelli--bx-89 {
  border-right: 89px #cad5e3 solid !important;
  border-left: 89px #cad5e3 solid !important;
}
.botticelli--ba-90 {
  border: 90px #cad5e3 solid !important;
}
.botticelli--bt-90 {
  border-top: 90px #cad5e3 solid !important;
}
.botticelli--br-90 {
  border-right: 90px #cad5e3 solid !important;
}
.botticelli--bl-90 {
  border-left: 90px #cad5e3 solid !important;
}
.botticelli--bb-90 {
  border-bottom: 90px #cad5e3 solid !important;
}
.botticelli--by-90 {
  border-top: 90px #cad5e3 solid !important;
  border-bottom: 90px #cad5e3 solid !important;
}
.botticelli--bx-90 {
  border-right: 90px #cad5e3 solid !important;
  border-left: 90px #cad5e3 solid !important;
}
.botticelli--ba-91 {
  border: 91px #cad5e3 solid !important;
}
.botticelli--bt-91 {
  border-top: 91px #cad5e3 solid !important;
}
.botticelli--br-91 {
  border-right: 91px #cad5e3 solid !important;
}
.botticelli--bl-91 {
  border-left: 91px #cad5e3 solid !important;
}
.botticelli--bb-91 {
  border-bottom: 91px #cad5e3 solid !important;
}
.botticelli--by-91 {
  border-top: 91px #cad5e3 solid !important;
  border-bottom: 91px #cad5e3 solid !important;
}
.botticelli--bx-91 {
  border-right: 91px #cad5e3 solid !important;
  border-left: 91px #cad5e3 solid !important;
}
.botticelli--ba-92 {
  border: 92px #cad5e3 solid !important;
}
.botticelli--bt-92 {
  border-top: 92px #cad5e3 solid !important;
}
.botticelli--br-92 {
  border-right: 92px #cad5e3 solid !important;
}
.botticelli--bl-92 {
  border-left: 92px #cad5e3 solid !important;
}
.botticelli--bb-92 {
  border-bottom: 92px #cad5e3 solid !important;
}
.botticelli--by-92 {
  border-top: 92px #cad5e3 solid !important;
  border-bottom: 92px #cad5e3 solid !important;
}
.botticelli--bx-92 {
  border-right: 92px #cad5e3 solid !important;
  border-left: 92px #cad5e3 solid !important;
}
.botticelli--ba-93 {
  border: 93px #cad5e3 solid !important;
}
.botticelli--bt-93 {
  border-top: 93px #cad5e3 solid !important;
}
.botticelli--br-93 {
  border-right: 93px #cad5e3 solid !important;
}
.botticelli--bl-93 {
  border-left: 93px #cad5e3 solid !important;
}
.botticelli--bb-93 {
  border-bottom: 93px #cad5e3 solid !important;
}
.botticelli--by-93 {
  border-top: 93px #cad5e3 solid !important;
  border-bottom: 93px #cad5e3 solid !important;
}
.botticelli--bx-93 {
  border-right: 93px #cad5e3 solid !important;
  border-left: 93px #cad5e3 solid !important;
}
.botticelli--ba-94 {
  border: 94px #cad5e3 solid !important;
}
.botticelli--bt-94 {
  border-top: 94px #cad5e3 solid !important;
}
.botticelli--br-94 {
  border-right: 94px #cad5e3 solid !important;
}
.botticelli--bl-94 {
  border-left: 94px #cad5e3 solid !important;
}
.botticelli--bb-94 {
  border-bottom: 94px #cad5e3 solid !important;
}
.botticelli--by-94 {
  border-top: 94px #cad5e3 solid !important;
  border-bottom: 94px #cad5e3 solid !important;
}
.botticelli--bx-94 {
  border-right: 94px #cad5e3 solid !important;
  border-left: 94px #cad5e3 solid !important;
}
.botticelli--ba-95 {
  border: 95px #cad5e3 solid !important;
}
.botticelli--bt-95 {
  border-top: 95px #cad5e3 solid !important;
}
.botticelli--br-95 {
  border-right: 95px #cad5e3 solid !important;
}
.botticelli--bl-95 {
  border-left: 95px #cad5e3 solid !important;
}
.botticelli--bb-95 {
  border-bottom: 95px #cad5e3 solid !important;
}
.botticelli--by-95 {
  border-top: 95px #cad5e3 solid !important;
  border-bottom: 95px #cad5e3 solid !important;
}
.botticelli--bx-95 {
  border-right: 95px #cad5e3 solid !important;
  border-left: 95px #cad5e3 solid !important;
}
.botticelli--ba-96 {
  border: 96px #cad5e3 solid !important;
}
.botticelli--bt-96 {
  border-top: 96px #cad5e3 solid !important;
}
.botticelli--br-96 {
  border-right: 96px #cad5e3 solid !important;
}
.botticelli--bl-96 {
  border-left: 96px #cad5e3 solid !important;
}
.botticelli--bb-96 {
  border-bottom: 96px #cad5e3 solid !important;
}
.botticelli--by-96 {
  border-top: 96px #cad5e3 solid !important;
  border-bottom: 96px #cad5e3 solid !important;
}
.botticelli--bx-96 {
  border-right: 96px #cad5e3 solid !important;
  border-left: 96px #cad5e3 solid !important;
}
.botticelli--ba-97 {
  border: 97px #cad5e3 solid !important;
}
.botticelli--bt-97 {
  border-top: 97px #cad5e3 solid !important;
}
.botticelli--br-97 {
  border-right: 97px #cad5e3 solid !important;
}
.botticelli--bl-97 {
  border-left: 97px #cad5e3 solid !important;
}
.botticelli--bb-97 {
  border-bottom: 97px #cad5e3 solid !important;
}
.botticelli--by-97 {
  border-top: 97px #cad5e3 solid !important;
  border-bottom: 97px #cad5e3 solid !important;
}
.botticelli--bx-97 {
  border-right: 97px #cad5e3 solid !important;
  border-left: 97px #cad5e3 solid !important;
}
.botticelli--ba-98 {
  border: 98px #cad5e3 solid !important;
}
.botticelli--bt-98 {
  border-top: 98px #cad5e3 solid !important;
}
.botticelli--br-98 {
  border-right: 98px #cad5e3 solid !important;
}
.botticelli--bl-98 {
  border-left: 98px #cad5e3 solid !important;
}
.botticelli--bb-98 {
  border-bottom: 98px #cad5e3 solid !important;
}
.botticelli--by-98 {
  border-top: 98px #cad5e3 solid !important;
  border-bottom: 98px #cad5e3 solid !important;
}
.botticelli--bx-98 {
  border-right: 98px #cad5e3 solid !important;
  border-left: 98px #cad5e3 solid !important;
}
.botticelli--ba-99 {
  border: 99px #cad5e3 solid !important;
}
.botticelli--bt-99 {
  border-top: 99px #cad5e3 solid !important;
}
.botticelli--br-99 {
  border-right: 99px #cad5e3 solid !important;
}
.botticelli--bl-99 {
  border-left: 99px #cad5e3 solid !important;
}
.botticelli--bb-99 {
  border-bottom: 99px #cad5e3 solid !important;
}
.botticelli--by-99 {
  border-top: 99px #cad5e3 solid !important;
  border-bottom: 99px #cad5e3 solid !important;
}
.botticelli--bx-99 {
  border-right: 99px #cad5e3 solid !important;
  border-left: 99px #cad5e3 solid !important;
}
.botticelli--ba-100 {
  border: 100px #cad5e3 solid !important;
}
.botticelli--bt-100 {
  border-top: 100px #cad5e3 solid !important;
}
.botticelli--br-100 {
  border-right: 100px #cad5e3 solid !important;
}
.botticelli--bl-100 {
  border-left: 100px #cad5e3 solid !important;
}
.botticelli--bb-100 {
  border-bottom: 100px #cad5e3 solid !important;
}
.botticelli--by-100 {
  border-top: 100px #cad5e3 solid !important;
  border-bottom: 100px #cad5e3 solid !important;
}
.botticelli--bx-100 {
  border-right: 100px #cad5e3 solid !important;
  border-left: 100px #cad5e3 solid !important;
}
.rounded-1 {
  border-radius: 1px !important;
}
.rounded-2 {
  border-radius: 2px !important;
}
.rounded-3 {
  border-radius: 3px !important;
}
.rounded-4 {
  border-radius: 4px !important;
}
.rounded-5 {
  border-radius: 5px !important;
}
.rounded-6 {
  border-radius: 6px !important;
}
.rounded-7 {
  border-radius: 7px !important;
}
.rounded-8 {
  border-radius: 8px !important;
}
.rounded-9 {
  border-radius: 9px !important;
}
.rounded-10 {
  border-radius: 10px !important;
}
.rounded-11 {
  border-radius: 11px !important;
}
.rounded-12 {
  border-radius: 12px !important;
}
.rounded-13 {
  border-radius: 13px !important;
}
.rounded-14 {
  border-radius: 14px !important;
}
.rounded-15 {
  border-radius: 15px !important;
}
.rounded-16 {
  border-radius: 16px !important;
}
.rounded-17 {
  border-radius: 17px !important;
}
.rounded-18 {
  border-radius: 18px !important;
}
.rounded-19 {
  border-radius: 19px !important;
}
.rounded-20 {
  border-radius: 20px !important;
}
.rounded-21 {
  border-radius: 21px !important;
}
.rounded-22 {
  border-radius: 22px !important;
}
.rounded-23 {
  border-radius: 23px !important;
}
.rounded-24 {
  border-radius: 24px !important;
}
.rounded-25 {
  border-radius: 25px !important;
}
.rounded-26 {
  border-radius: 26px !important;
}
.rounded-27 {
  border-radius: 27px !important;
}
.rounded-28 {
  border-radius: 28px !important;
}
.rounded-29 {
  border-radius: 29px !important;
}
.rounded-30 {
  border-radius: 30px !important;
}
.rounded-31 {
  border-radius: 31px !important;
}
.rounded-32 {
  border-radius: 32px !important;
}
.rounded-33 {
  border-radius: 33px !important;
}
.rounded-34 {
  border-radius: 34px !important;
}
.rounded-35 {
  border-radius: 35px !important;
}
.rounded-36 {
  border-radius: 36px !important;
}
.rounded-37 {
  border-radius: 37px !important;
}
.rounded-38 {
  border-radius: 38px !important;
}
.rounded-39 {
  border-radius: 39px !important;
}
.rounded-40 {
  border-radius: 40px !important;
}
.rounded-41 {
  border-radius: 41px !important;
}
.rounded-42 {
  border-radius: 42px !important;
}
.rounded-43 {
  border-radius: 43px !important;
}
.rounded-44 {
  border-radius: 44px !important;
}
.rounded-45 {
  border-radius: 45px !important;
}
.rounded-46 {
  border-radius: 46px !important;
}
.rounded-47 {
  border-radius: 47px !important;
}
.rounded-48 {
  border-radius: 48px !important;
}
.rounded-49 {
  border-radius: 49px !important;
}
.rounded-50 {
  border-radius: 50px !important;
}
.dashed-line {
  width: 100%;
  border-top: 1px dashed #c7c7c7;
}
.v-text-field--enclosed .v-text-field__details .v-messages {
  margin-right: -12px !important;
  margin-left: -12px !important;
}
.theme--light.v-application {
  background-color: #f7f7f7 !important;
}
